updating 2 more dialogs

This commit is contained in:
tibbi 2022-07-28 15:25:04 +02:00
parent f896fc885a
commit 84dd596c58
50 changed files with 153 additions and 141 deletions

View file

@ -22,6 +22,7 @@ class SlideshowDialog(val activity: BaseSimpleActivity, val callback: () -> Unit
init { init {
view = activity.layoutInflater.inflate(R.layout.dialog_slideshow, null).apply { view = activity.layoutInflater.inflate(R.layout.dialog_slideshow, null).apply {
interval_hint.hint = activity.getString(R.string.seconds_raw).replaceFirstChar { it.uppercaseChar() }
interval_value.setOnClickListener { interval_value.setOnClickListener {
interval_value.selectAll() interval_value.selectAll()
} }

View file

@ -8,54 +8,56 @@
android:paddingTop="@dimen/activity_margin" android:paddingTop="@dimen/activity_margin"
android:paddingRight="@dimen/activity_margin"> android:paddingRight="@dimen/activity_margin">
<com.simplemobiletools.commons.views.MyTextView <com.simplemobiletools.commons.views.MyTextInputLayout
android:id="@+id/aspect_ratio_width_label" android:id="@+id/aspect_ratio_width_hint"
android:layout_width="100dp" android:layout_width="100dp"
android:layout_height="wrap_content" android:layout_height="wrap_content"
android:text="@string/width" />
<com.simplemobiletools.commons.views.MyEditText
android:id="@+id/aspect_ratio_width"
android:layout_width="100dp"
android:layout_height="wrap_content"
android:layout_below="@+id/aspect_ratio_width_label"
android:layout_marginBottom="@dimen/activity_margin" android:layout_marginBottom="@dimen/activity_margin"
android:inputType="number" android:hint="@string/width">
android:maxLength="6"
android:maxLines="1" <com.google.android.material.textfield.TextInputEditText
android:textCursorDrawable="@null" android:id="@+id/aspect_ratio_width"
android:textSize="@dimen/normal_text_size" /> android:layout_width="match_parent"
android:layout_height="wrap_content"
android:inputType="number"
android:maxLength="6"
android:maxLines="1"
android:textCursorDrawable="@null"
android:textSize="@dimen/bigger_text_size" />
</com.simplemobiletools.commons.views.MyTextInputLayout>
<com.simplemobiletools.commons.views.MyTextView <com.simplemobiletools.commons.views.MyTextView
android:id="@+id/aspect_ratio_colon_label" android:id="@+id/aspect_ratio_colon"
android:layout_width="wrap_content" android:layout_width="wrap_content"
android:layout_height="wrap_content" android:layout_height="wrap_content"
android:layout_alignTop="@+id/aspect_ratio_width" android:layout_alignTop="@+id/aspect_ratio_width_hint"
android:layout_alignBottom="@+id/aspect_ratio_width" android:layout_alignBottom="@+id/aspect_ratio_width_hint"
android:layout_toStartOf="@+id/aspect_ratio_height" android:layout_marginStart="20dp"
android:layout_toEndOf="@+id/aspect_ratio_width" android:layout_marginEnd="20dp"
android:layout_toEndOf="@+id/aspect_ratio_width_hint"
android:gravity="center" android:gravity="center"
android:text=":" android:text=":"
android:textStyle="bold" /> android:textStyle="bold" />
<com.simplemobiletools.commons.views.MyTextView <com.simplemobiletools.commons.views.MyTextInputLayout
android:id="@+id/aspect_ratio_height_label" android:id="@+id/aspect_ratio_height_hint"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_marginStart="50dp"
android:layout_toEndOf="@+id/aspect_ratio_width_label"
android:text="@string/height" />
<com.simplemobiletools.commons.views.MyEditText
android:id="@+id/aspect_ratio_height"
android:layout_width="100dp" android:layout_width="100dp"
android:layout_height="wrap_content" android:layout_height="wrap_content"
android:layout_below="@+id/aspect_ratio_width_label" android:layout_alignTop="@+id/aspect_ratio_width_hint"
android:layout_alignStart="@+id/aspect_ratio_height_label" android:layout_alignBottom="@+id/aspect_ratio_width_hint"
android:inputType="number" android:layout_toEndOf="@+id/aspect_ratio_colon"
android:maxLength="6" android:hint="@string/height">
android:maxLines="1"
android:textCursorDrawable="@null"
android:textSize="@dimen/normal_text_size" />
<com.google.android.material.textfield.TextInputEditText
android:id="@+id/aspect_ratio_height"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:inputType="number"
android:maxLength="6"
android:maxLines="1"
android:textCursorDrawable="@null"
android:textSize="@dimen/bigger_text_size" />
</com.simplemobiletools.commons.views.MyTextInputLayout>
</RelativeLayout> </RelativeLayout>

View file

@ -18,23 +18,32 @@
android:layout_marginTop="@dimen/medium_margin" android:layout_marginTop="@dimen/medium_margin"
android:paddingStart="@dimen/activity_margin" android:paddingStart="@dimen/activity_margin"
android:paddingTop="@dimen/bigger_margin" android:paddingTop="@dimen/bigger_margin"
android:layout_alignTop="@+id/interval_hint"
android:layout_alignBottom="@+id/interval_hint"
android:paddingBottom="@dimen/activity_margin" android:paddingBottom="@dimen/activity_margin"
android:text="@string/interval" /> android:text="@string/interval" />
<com.simplemobiletools.commons.views.MyEditText <com.simplemobiletools.commons.views.MyTextInputLayout
android:id="@+id/interval_value" android:id="@+id/interval_hint"
android:layout_width="wrap_content" android:layout_width="100dp"
android:layout_height="wrap_content" android:layout_height="wrap_content"
android:layout_alignParentEnd="true" android:layout_alignParentEnd="true"
android:layout_marginTop="@dimen/normal_margin" android:layout_marginTop="@dimen/normal_margin"
android:layout_marginEnd="@dimen/bigger_margin" android:layout_marginEnd="@dimen/activity_margin"
android:ems="5" android:hint="@string/seconds_raw">
android:gravity="end"
android:imeOptions="actionDone" <com.google.android.material.textfield.TextInputEditText
android:inputType="number" android:id="@+id/interval_value"
android:maxLength="5" android:layout_width="match_parent"
android:textCursorDrawable="@null" android:layout_height="wrap_content"
android:textSize="@dimen/normal_text_size" /> android:gravity="center"
android:imeOptions="actionDone"
android:inputType="number"
android:maxLength="5"
android:textCursorDrawable="@null"
android:textSize="@dimen/bigger_text_size" />
</com.simplemobiletools.commons.views.MyTextInputLayout>
<RelativeLayout <RelativeLayout
android:id="@+id/animation_holder" android:id="@+id/animation_holder"

View file

@ -126,7 +126,7 @@
<string name="allow_changing_aspect_ratio">السماح بتغيير نسبة الأبعاد</string> <string name="allow_changing_aspect_ratio">السماح بتغيير نسبة الأبعاد</string>
<!-- Slideshow --> <!-- Slideshow -->
<string name="slideshow">عرض الشرائح</string> <string name="slideshow">عرض الشرائح</string>
<string name="interval">الفاصل الزمني (بالثواني):</string> <string name="interval">الفاصل الزمني</string>
<string name="include_photos">تضمين الصور</string> <string name="include_photos">تضمين الصور</string>
<string name="include_videos">تضمين مقاطع الفيديو</string> <string name="include_videos">تضمين مقاطع الفيديو</string>
<string name="include_gifs">تضمين الصور المتحركة (GIF)</string> <string name="include_gifs">تضمين الصور المتحركة (GIF)</string>
@ -376,4 +376,4 @@
Haven't found some strings? There's more at Haven't found some strings? There's more at
https://github.com/SimpleMobileTools/Simple-Commons/tree/master/commons/src/main/res https://github.com/SimpleMobileTools/Simple-Commons/tree/master/commons/src/main/res
--> -->
</resources> </resources>

View file

@ -126,7 +126,7 @@
<string name="allow_changing_aspect_ratio">Allow changing the aspect ratio</string> <string name="allow_changing_aspect_ratio">Allow changing the aspect ratio</string>
<!-- Slideshow --> <!-- Slideshow -->
<string name="slideshow">Slideshow</string> <string name="slideshow">Slideshow</string>
<string name="interval">Interval (seconds):</string> <string name="interval">Interval</string>
<string name="include_photos">Include photos</string> <string name="include_photos">Include photos</string>
<string name="include_videos">Include videos</string> <string name="include_videos">Include videos</string>
<string name="include_gifs">Include GIFs</string> <string name="include_gifs">Include GIFs</string>
@ -376,4 +376,4 @@
Haven't found some strings? There's more at Haven't found some strings? There's more at
https://github.com/SimpleMobileTools/Simple-Commons/tree/master/commons/src/main/res https://github.com/SimpleMobileTools/Simple-Commons/tree/master/commons/src/main/res
--> -->
</resources> </resources>

View file

@ -139,7 +139,7 @@
<string name="simple_wallpaper">Simple Wallpaper</string> <string name="simple_wallpaper">Simple Wallpaper</string>
<string name="set_as_wallpaper">Set as Wallpaper</string> <string name="set_as_wallpaper">Set as Wallpaper</string>
<string name="set_as_wallpaper_failed">Setting as Wallpaper failed</string> <string name="set_as_wallpaper_failed">Setting as Wallpaper failed</string>
<string name="interval">Interval (seconds):</string> <string name="interval">Interval</string>
<string name="include_photos">Include photos</string> <string name="include_photos">Include photos</string>
<string name="slide">Slide</string> <string name="slide">Slide</string>
<string name="set_as_wallpaper_with">Set as wallpaper with:</string> <string name="set_as_wallpaper_with">Set as wallpaper with:</string>
@ -359,4 +359,4 @@
Haven't found some strings? There's more at Haven't found some strings? There's more at
https://github.com/SimpleMobileTools/Simple-Commons/tree/master/commons/src/main/res https://github.com/SimpleMobileTools/Simple-Commons/tree/master/commons/src/main/res
--> -->
</resources> </resources>

View file

@ -126,7 +126,7 @@
<string name="allow_changing_aspect_ratio">Разрешаване на промяна на съотношението на страните</string> <string name="allow_changing_aspect_ratio">Разрешаване на промяна на съотношението на страните</string>
<!-- Slideshow --> <!-- Slideshow -->
<string name="slideshow">Слайдшоу</string> <string name="slideshow">Слайдшоу</string>
<string name="interval">Интервал (секунди):</string> <string name="interval">Интервал</string>
<string name="include_photos">Добавяне на снимки</string> <string name="include_photos">Добавяне на снимки</string>
<string name="include_videos">Добавяне на видео</string> <string name="include_videos">Добавяне на видео</string>
<string name="include_gifs">Добавяне на GIF</string> <string name="include_gifs">Добавяне на GIF</string>
@ -375,4 +375,4 @@
Haven't found some strings? There's more at Haven't found some strings? There's more at
https://github.com/SimpleMobileTools/Simple-Commons/tree/master/commons/src/main/res https://github.com/SimpleMobileTools/Simple-Commons/tree/master/commons/src/main/res
--> -->
</resources> </resources>

View file

@ -124,7 +124,7 @@
<string name="allow_changing_aspect_ratio">Allow changing the aspect ratio</string> <string name="allow_changing_aspect_ratio">Allow changing the aspect ratio</string>
<!-- Slideshow --> <!-- Slideshow -->
<string name="slideshow">স্লাইডশো</string> <string name="slideshow">স্লাইডশো</string>
<string name="interval">বিরতি (সেকেন্ডে):</string> <string name="interval">বিরতি</string>
<string name="include_photos">ছবিগুলো যোগ করুন</string> <string name="include_photos">ছবিগুলো যোগ করুন</string>
<string name="include_videos">ভিডিওগুলো যোগ করুন</string> <string name="include_videos">ভিডিওগুলো যোগ করুন</string>
<string name="include_gifs">গিফগুলো যোগ করুন</string> <string name="include_gifs">গিফগুলো যোগ করুন</string>
@ -374,4 +374,4 @@
Haven't found some strings? There's more at Haven't found some strings? There's more at
https://github.com/SimpleMobileTools/Simple-Commons/tree/master/commons/src/main/res https://github.com/SimpleMobileTools/Simple-Commons/tree/master/commons/src/main/res
--> -->
</resources> </resources>

View file

@ -126,7 +126,7 @@
<string name="allow_changing_aspect_ratio">Permet canviar la relació d\'aspecte</string> <string name="allow_changing_aspect_ratio">Permet canviar la relació d\'aspecte</string>
<!-- Slideshow --> <!-- Slideshow -->
<string name="slideshow">Presentació de diapositives</string> <string name="slideshow">Presentació de diapositives</string>
<string name="interval">Interval (segons):</string> <string name="interval">Interval</string>
<string name="include_photos">Inclou fotos</string> <string name="include_photos">Inclou fotos</string>
<string name="include_videos">Inclou vídeos</string> <string name="include_videos">Inclou vídeos</string>
<string name="include_gifs">Inclou GIF</string> <string name="include_gifs">Inclou GIF</string>
@ -376,4 +376,4 @@
Haven't found some strings? There's more at Haven't found some strings? There's more at
https://github.com/SimpleMobileTools/Simple-Commons/tree/master/commons/src/main/res https://github.com/SimpleMobileTools/Simple-Commons/tree/master/commons/src/main/res
--> -->
</resources> </resources>

View file

@ -124,7 +124,7 @@
<string name="allow_changing_aspect_ratio">Allow changing the aspect ratio</string> <string name="allow_changing_aspect_ratio">Allow changing the aspect ratio</string>
<!-- Slideshow --> <!-- Slideshow -->
<string name="slideshow">Prezentace</string> <string name="slideshow">Prezentace</string>
<string name="interval">Interval (sekund):</string> <string name="interval">Interval</string>
<string name="include_photos">Zahrnout fotografie</string> <string name="include_photos">Zahrnout fotografie</string>
<string name="include_videos">Zahrnout videa</string> <string name="include_videos">Zahrnout videa</string>
<string name="include_gifs">Zahrnout GIFy</string> <string name="include_gifs">Zahrnout GIFy</string>
@ -374,4 +374,4 @@
Haven't found some strings? There's more at Haven't found some strings? There's more at
https://github.com/SimpleMobileTools/Simple-Commons/tree/master/commons/src/main/res https://github.com/SimpleMobileTools/Simple-Commons/tree/master/commons/src/main/res
--> -->
</resources> </resources>

View file

@ -126,7 +126,7 @@
<string name="allow_changing_aspect_ratio">Allow changing the aspect ratio</string> <string name="allow_changing_aspect_ratio">Allow changing the aspect ratio</string>
<!-- Slideshow --> <!-- Slideshow -->
<string name="slideshow">Lysbilledshow</string> <string name="slideshow">Lysbilledshow</string>
<string name="interval">Frekvens (sekunder):</string> <string name="interval">Frekvens</string>
<string name="include_photos">Inkluder billeder</string> <string name="include_photos">Inkluder billeder</string>
<string name="include_videos">Inkluder videoer</string> <string name="include_videos">Inkluder videoer</string>
<string name="include_gifs">Inkluder GIF\'er</string> <string name="include_gifs">Inkluder GIF\'er</string>
@ -376,4 +376,4 @@
Haven't found some strings? There's more at Haven't found some strings? There's more at
https://github.com/SimpleMobileTools/Simple-Commons/tree/master/commons/src/main/res https://github.com/SimpleMobileTools/Simple-Commons/tree/master/commons/src/main/res
--> -->
</resources> </resources>

View file

@ -126,7 +126,7 @@
<string name="allow_changing_aspect_ratio">Änderung des Seitenverhältnisses zulassen</string> <string name="allow_changing_aspect_ratio">Änderung des Seitenverhältnisses zulassen</string>
<!-- Slideshow --> <!-- Slideshow -->
<string name="slideshow">Diashow</string> <string name="slideshow">Diashow</string>
<string name="interval">Intervall (Sekunden):</string> <string name="interval">Intervall</string>
<string name="include_photos">Bilder verwenden</string> <string name="include_photos">Bilder verwenden</string>
<string name="include_videos">Videos verwenden</string> <string name="include_videos">Videos verwenden</string>
<string name="include_gifs">GIFs verwenden</string> <string name="include_gifs">GIFs verwenden</string>
@ -376,4 +376,4 @@
Haven't found some strings? There's more at Haven't found some strings? There's more at
https://github.com/SimpleMobileTools/Simple-Commons/tree/master/commons/src/main/res https://github.com/SimpleMobileTools/Simple-Commons/tree/master/commons/src/main/res
--> -->
</resources> </resources>

View file

@ -126,7 +126,7 @@
<string name="allow_changing_aspect_ratio">Επιτρέπει την αλλαγή Αναλογίας Διαστάσεων</string> <string name="allow_changing_aspect_ratio">Επιτρέπει την αλλαγή Αναλογίας Διαστάσεων</string>
<!-- Slideshow --> <!-- Slideshow -->
<string name="slideshow">Παρουσίαση διαφανειών</string> <string name="slideshow">Παρουσίαση διαφανειών</string>
<string name="interval">Χρόνος επανάληψης (δευτ.) :</string> <string name="interval">Χρόνος επανάληψης</string>
<string name="include_photos">Συμπερίληψη φωτογραφιών</string> <string name="include_photos">Συμπερίληψη φωτογραφιών</string>
<string name="include_videos">Συμπερίληψη βίντεο</string> <string name="include_videos">Συμπερίληψη βίντεο</string>
<string name="include_gifs">Συμπερίληψη GIFs</string>6 <string name="include_gifs">Συμπερίληψη GIFs</string>6
@ -376,4 +376,4 @@
Haven't found some strings? There's more at Haven't found some strings? There's more at
https://github.com/SimpleMobileTools/Simple-Commons/tree/master/commons/src/main/res https://github.com/SimpleMobileTools/Simple-Commons/tree/master/commons/src/main/res
--> -->
</resources> </resources>

View file

@ -126,7 +126,7 @@
<string name="allow_changing_aspect_ratio">Allow changing the aspect ratio</string> <string name="allow_changing_aspect_ratio">Allow changing the aspect ratio</string>
<!-- Slideshow --> <!-- Slideshow -->
<string name="slideshow">Slideshow</string> <string name="slideshow">Slideshow</string>
<string name="interval">Interval (seconds):</string> <string name="interval">Interval</string>
<string name="include_photos">Include photos</string> <string name="include_photos">Include photos</string>
<string name="include_videos">Include videos</string> <string name="include_videos">Include videos</string>
<string name="include_gifs">Include GIFs</string> <string name="include_gifs">Include GIFs</string>
@ -376,4 +376,4 @@
Haven't found some strings? There's more at Haven't found some strings? There's more at
https://github.com/SimpleMobileTools/Simple-Commons/tree/master/commons/src/main/res https://github.com/SimpleMobileTools/Simple-Commons/tree/master/commons/src/main/res
--> -->
</resources> </resources>

View file

@ -126,7 +126,7 @@
<string name="allow_changing_aspect_ratio">Allow changing the aspect ratio</string> <string name="allow_changing_aspect_ratio">Allow changing the aspect ratio</string>
<!-- Slideshow --> <!-- Slideshow -->
<string name="slideshow">Presentación de diapositivas</string> <string name="slideshow">Presentación de diapositivas</string>
<string name="interval">Intervalo (segundos):</string> <string name="interval">Intervalo</string>
<string name="include_photos">Incluir fotos</string> <string name="include_photos">Incluir fotos</string>
<string name="include_videos">Incluir videos</string> <string name="include_videos">Incluir videos</string>
<string name="include_gifs">Incluir GIFs</string> <string name="include_gifs">Incluir GIFs</string>
@ -376,4 +376,4 @@
Haven't found some strings? There's more at Haven't found some strings? There's more at
https://github.com/SimpleMobileTools/Simple-Commons/tree/master/commons/src/main/res https://github.com/SimpleMobileTools/Simple-Commons/tree/master/commons/src/main/res
--> -->
</resources> </resources>

View file

@ -126,7 +126,7 @@
<string name="allow_changing_aspect_ratio">Allow changing the aspect ratio</string> <string name="allow_changing_aspect_ratio">Allow changing the aspect ratio</string>
<!-- Slideshow --> <!-- Slideshow -->
<string name="slideshow">Slideshow</string> <string name="slideshow">Slideshow</string>
<string name="interval">Interval (seconds):</string> <string name="interval">Interval</string>
<string name="include_photos">Include photos</string> <string name="include_photos">Include photos</string>
<string name="include_videos">Include videos</string> <string name="include_videos">Include videos</string>
<string name="include_gifs">Include GIFs</string> <string name="include_gifs">Include GIFs</string>
@ -376,4 +376,4 @@
Haven't found some strings? There's more at Haven't found some strings? There's more at
https://github.com/SimpleMobileTools/Simple-Commons/tree/master/commons/src/main/res https://github.com/SimpleMobileTools/Simple-Commons/tree/master/commons/src/main/res
--> -->
</resources> </resources>

View file

@ -124,7 +124,7 @@
<string name="allow_changing_aspect_ratio">Allow changing the aspect ratio</string> <string name="allow_changing_aspect_ratio">Allow changing the aspect ratio</string>
<!-- Slideshow --> <!-- Slideshow -->
<string name="slideshow">Diaporama</string> <string name="slideshow">Diaporama</string>
<string name="interval">Tartea (segunduak):</string> <string name="interval">Tartea</string>
<string name="include_photos">Sartu argazkiak</string> <string name="include_photos">Sartu argazkiak</string>
<string name="include_videos">Sartu bideoak</string> <string name="include_videos">Sartu bideoak</string>
<string name="include_gifs">Sartu GIFak</string> <string name="include_gifs">Sartu GIFak</string>
@ -374,4 +374,4 @@
Haven't found some strings? There's more at Haven't found some strings? There's more at
https://github.com/SimpleMobileTools/Simple-Commons/tree/master/commons/src/main/res https://github.com/SimpleMobileTools/Simple-Commons/tree/master/commons/src/main/res
--> -->
</resources> </resources>

View file

@ -126,7 +126,7 @@
<string name="allow_changing_aspect_ratio">Allow changing the aspect ratio</string> <string name="allow_changing_aspect_ratio">Allow changing the aspect ratio</string>
<!-- Slideshow --> <!-- Slideshow -->
<string name="slideshow">Slideshow</string> <string name="slideshow">Slideshow</string>
<string name="interval">Interval (seconds):</string> <string name="interval">Interval</string>
<string name="include_photos">Include photos</string> <string name="include_photos">Include photos</string>
<string name="include_videos">Include videos</string> <string name="include_videos">Include videos</string>
<string name="include_gifs">Include GIFs</string> <string name="include_gifs">Include GIFs</string>
@ -376,4 +376,4 @@
Haven't found some strings? There's more at Haven't found some strings? There's more at
https://github.com/SimpleMobileTools/Simple-Commons/tree/master/commons/src/main/res https://github.com/SimpleMobileTools/Simple-Commons/tree/master/commons/src/main/res
--> -->
</resources> </resources>

View file

@ -126,7 +126,7 @@
<string name="allow_changing_aspect_ratio">Allow changing the aspect ratio</string> <string name="allow_changing_aspect_ratio">Allow changing the aspect ratio</string>
<!-- Slideshow --> <!-- Slideshow -->
<string name="slideshow">Diaesitys</string> <string name="slideshow">Diaesitys</string>
<string name="interval">Aikaväli (sekunteja):</string> <string name="interval">Aikaväli</string>
<string name="include_photos">Sisällytä Kuvat</string> <string name="include_photos">Sisällytä Kuvat</string>
<string name="include_videos">Sisällytä Videot</string> <string name="include_videos">Sisällytä Videot</string>
<string name="include_gifs">Sisällytä GIFit</string> <string name="include_gifs">Sisällytä GIFit</string>
@ -376,4 +376,4 @@
Haven't found some strings? There's more at Haven't found some strings? There's more at
https://github.com/SimpleMobileTools/Simple-Commons/tree/master/commons/src/main/res https://github.com/SimpleMobileTools/Simple-Commons/tree/master/commons/src/main/res
--> -->
</resources> </resources>

View file

@ -126,7 +126,7 @@
<string name="allow_changing_aspect_ratio">Autoriser la modification du rapport d\'aspect</string> <string name="allow_changing_aspect_ratio">Autoriser la modification du rapport d\'aspect</string>
<!-- Slideshow --> <!-- Slideshow -->
<string name="slideshow">Diaporama</string> <string name="slideshow">Diaporama</string>
<string name="interval">Intervalle (secondes) :</string> <string name="interval">Intervalle</string>
<string name="include_photos">Inclure les images</string> <string name="include_photos">Inclure les images</string>
<string name="include_videos">Inclure les vidéos</string> <string name="include_videos">Inclure les vidéos</string>
<string name="include_gifs">Inclure les GIF</string> <string name="include_gifs">Inclure les GIF</string>
@ -376,4 +376,4 @@
Haven't found some strings? There's more at Haven't found some strings? There's more at
https://github.com/SimpleMobileTools/Simple-Commons/tree/master/commons/src/main/res https://github.com/SimpleMobileTools/Simple-Commons/tree/master/commons/src/main/res
--> -->
</resources> </resources>

View file

@ -126,7 +126,7 @@
<string name="allow_changing_aspect_ratio">Allow changing the aspect ratio</string> <string name="allow_changing_aspect_ratio">Allow changing the aspect ratio</string>
<!-- Slideshow --> <!-- Slideshow -->
<string name="slideshow">Presentación</string> <string name="slideshow">Presentación</string>
<string name="interval">Intervalo (segundos):</string> <string name="interval">Intervalo</string>
<string name="include_photos">Incluír fotos</string> <string name="include_photos">Incluír fotos</string>
<string name="include_videos">Incluír vídeos</string> <string name="include_videos">Incluír vídeos</string>
<string name="include_gifs">Incluír GIFs</string> <string name="include_gifs">Incluír GIFs</string>
@ -376,4 +376,4 @@
Haven't found some strings? There's more at Haven't found some strings? There's more at
https://github.com/SimpleMobileTools/Simple-Commons/tree/master/commons/src/main/res https://github.com/SimpleMobileTools/Simple-Commons/tree/master/commons/src/main/res
--> -->
</resources> </resources>

View file

@ -126,7 +126,7 @@
<string name="allow_changing_aspect_ratio">Dozvoli mijenjanje omjera</string> <string name="allow_changing_aspect_ratio">Dozvoli mijenjanje omjera</string>
<!-- Slideshow --> <!-- Slideshow -->
<string name="slideshow">Dijaprojekcija</string> <string name="slideshow">Dijaprojekcija</string>
<string name="interval">Interval (sekunde):</string> <string name="interval">Interval</string>
<string name="include_photos">Dodaj slike</string> <string name="include_photos">Dodaj slike</string>
<string name="include_videos">Dodaj videa</string> <string name="include_videos">Dodaj videa</string>
<string name="include_gifs">Dodaj GIF-ove</string> <string name="include_gifs">Dodaj GIF-ove</string>
@ -376,4 +376,4 @@
Haven't found some strings? There's more at Haven't found some strings? There's more at
https://github.com/SimpleMobileTools/Simple-Commons/tree/master/commons/src/main/res https://github.com/SimpleMobileTools/Simple-Commons/tree/master/commons/src/main/res
--> -->
</resources> </resources>

View file

@ -126,7 +126,7 @@
<string name="allow_changing_aspect_ratio">Allow changing the aspect ratio</string> <string name="allow_changing_aspect_ratio">Allow changing the aspect ratio</string>
<!-- Slideshow --> <!-- Slideshow -->
<string name="slideshow">Diavetítés</string> <string name="slideshow">Diavetítés</string>
<string name="interval">Időköz (másodperc):</string> <string name="interval">Időköz</string>
<string name="include_photos">Fotók belevétele</string> <string name="include_photos">Fotók belevétele</string>
<string name="include_videos">Videók belevétele</string> <string name="include_videos">Videók belevétele</string>
<string name="include_gifs">GIF-ek belevétele</string> <string name="include_gifs">GIF-ek belevétele</string>
@ -376,4 +376,4 @@
Haven't found some strings? There's more at Haven't found some strings? There's more at
https://github.com/SimpleMobileTools/Simple-Commons/tree/master/commons/src/main/res https://github.com/SimpleMobileTools/Simple-Commons/tree/master/commons/src/main/res
--> -->
</resources> </resources>

View file

@ -126,7 +126,7 @@
<string name="allow_changing_aspect_ratio">Allow changing the aspect ratio</string> <string name="allow_changing_aspect_ratio">Allow changing the aspect ratio</string>
<!-- Slideshow --> <!-- Slideshow -->
<string name="slideshow">Slideshow</string> <string name="slideshow">Slideshow</string>
<string name="interval">Interval (detik):</string> <string name="interval">Interval</string>
<string name="include_photos">Sertakan foto</string> <string name="include_photos">Sertakan foto</string>
<string name="include_videos">Sertakan video</string> <string name="include_videos">Sertakan video</string>
<string name="include_gifs">Sertakan GIF</string> <string name="include_gifs">Sertakan GIF</string>
@ -376,4 +376,4 @@
Haven't found some strings? There's more at Haven't found some strings? There's more at
https://github.com/SimpleMobileTools/Simple-Commons/tree/master/commons/src/main/res https://github.com/SimpleMobileTools/Simple-Commons/tree/master/commons/src/main/res
--> -->
</resources> </resources>

View file

@ -126,7 +126,7 @@
<string name="allow_changing_aspect_ratio">Consenti di modificare le proporzioni</string> <string name="allow_changing_aspect_ratio">Consenti di modificare le proporzioni</string>
<!-- Slideshow --> <!-- Slideshow -->
<string name="slideshow">Presentazione</string> <string name="slideshow">Presentazione</string>
<string name="interval">Intervallo (secondi):</string> <string name="interval">Intervallo</string>
<string name="include_photos">Includi foto</string> <string name="include_photos">Includi foto</string>
<string name="include_videos">Includi video</string> <string name="include_videos">Includi video</string>
<string name="include_gifs">Includi GIF</string> <string name="include_gifs">Includi GIF</string>
@ -376,4 +376,4 @@
Haven't found some strings? There's more at Haven't found some strings? There's more at
https://github.com/SimpleMobileTools/Simple-Commons/tree/master/commons/src/main/res https://github.com/SimpleMobileTools/Simple-Commons/tree/master/commons/src/main/res
--> -->
</resources> </resources>

View file

@ -122,7 +122,7 @@
<string name="allow_changing_aspect_ratio">Allow changing the aspect ratio</string> <string name="allow_changing_aspect_ratio">Allow changing the aspect ratio</string>
<!-- Slideshow --> <!-- Slideshow -->
<string name="slideshow">מצגת</string> <string name="slideshow">מצגת</string>
<string name="interval">מרווח (שניות):</string> <string name="interval">מרווח</string>
<string name="include_photos">כלול תמונות</string> <string name="include_photos">כלול תמונות</string>
<string name="include_videos">כלול סרטונים</string> <string name="include_videos">כלול סרטונים</string>
<string name="include_gifs">‍כלול קובצי GIF</string> <string name="include_gifs">‍כלול קובצי GIF</string>
@ -372,4 +372,4 @@
Haven't found some strings? There's more at Haven't found some strings? There's more at
https://github.com/SimpleMobileTools/Simple-Commons/tree/master/commons/src/main/res https://github.com/SimpleMobileTools/Simple-Commons/tree/master/commons/src/main/res
--> -->
</resources> </resources>

View file

@ -122,7 +122,7 @@
<string name="allow_changing_aspect_ratio">Allow changing the aspect ratio</string> <string name="allow_changing_aspect_ratio">Allow changing the aspect ratio</string>
<!-- Slideshow --> <!-- Slideshow -->
<string name="slideshow">スライドショー</string> <string name="slideshow">スライドショー</string>
<string name="interval">間隔 (秒):</string> <string name="interval">間隔</string>
<string name="include_photos">写真を含める</string> <string name="include_photos">写真を含める</string>
<string name="include_videos">ビデオを含める</string> <string name="include_videos">ビデオを含める</string>
<string name="include_gifs">GIFを含める</string> <string name="include_gifs">GIFを含める</string>
@ -372,4 +372,4 @@
Haven't found some strings? There's more at Haven't found some strings? There's more at
https://github.com/SimpleMobileTools/Simple-Commons/tree/master/commons/src/main/res https://github.com/SimpleMobileTools/Simple-Commons/tree/master/commons/src/main/res
--> -->
</resources> </resources>

View file

@ -24,7 +24,7 @@
<string name="force_landscape">가로 보기</string> <string name="force_landscape">가로 보기</string>
<string name="use_default_orientation">기본 설정 사용</string> <string name="use_default_orientation">기본 설정 사용</string>
<string name="fix_date_taken">찍은 날짜 값 교정</string> <string name="fix_date_taken">찍은 날짜 값 교정</string>
<string name="fixing">교정 중...</string> <string name="fixing">교정 중</string>
<string name="dates_fixed_successfully">교정이 완료되었습니다</string> <string name="dates_fixed_successfully">교정이 완료되었습니다</string>
<string name="no_date_takens_found">No Date Taken values have been found</string> <string name="no_date_takens_found">No Date Taken values have been found</string>
<string name="share_resized">크기변경 버전 공유</string> <string name="share_resized">크기변경 버전 공유</string>
@ -126,7 +126,7 @@
<string name="allow_changing_aspect_ratio">Allow changing the aspect ratio</string> <string name="allow_changing_aspect_ratio">Allow changing the aspect ratio</string>
<!-- Slideshow --> <!-- Slideshow -->
<string name="slideshow">슬라이드 쇼</string> <string name="slideshow">슬라이드 쇼</string>
<string name="interval">간격 (초):</string> <string name="interval">간격</string>
<string name="include_photos">포함된 사진</string> <string name="include_photos">포함된 사진</string>
<string name="include_videos">포함된 동영상</string> <string name="include_videos">포함된 동영상</string>
<string name="include_gifs">포함된 GIF</string> <string name="include_gifs">포함된 GIF</string>
@ -376,4 +376,4 @@
Haven't found some strings? There's more at Haven't found some strings? There's more at
https://github.com/SimpleMobileTools/Simple-Commons/tree/master/commons/src/main/res https://github.com/SimpleMobileTools/Simple-Commons/tree/master/commons/src/main/res
--> -->
</resources> </resources>

View file

@ -122,7 +122,7 @@
<string name="allow_changing_aspect_ratio">Allow changing the aspect ratio</string> <string name="allow_changing_aspect_ratio">Allow changing the aspect ratio</string>
<!-- Slideshow --> <!-- Slideshow -->
<string name="slideshow">Skaidrių demonstracija</string> <string name="slideshow">Skaidrių demonstracija</string>
<string name="interval">Intervalas (sekundėmis):</string> <string name="interval">Intervalas</string>
<string name="include_photos">Įtraukti nuotraukas</string> <string name="include_photos">Įtraukti nuotraukas</string>
<string name="include_videos">Įtraukti vaizdo įrašus</string> <string name="include_videos">Įtraukti vaizdo įrašus</string>
<string name="include_gifs">Itraukti GIF\'us</string> <string name="include_gifs">Itraukti GIF\'us</string>
@ -373,4 +373,4 @@
Haven't found some strings? There's more at Haven't found some strings? There's more at
https://github.com/SimpleMobileTools/Simple-Commons/tree/master/commons/src/main/res https://github.com/SimpleMobileTools/Simple-Commons/tree/master/commons/src/main/res
--> -->
</resources> </resources>

View file

@ -126,7 +126,7 @@
<string name="allow_changing_aspect_ratio">Allow changing the aspect ratio</string> <string name="allow_changing_aspect_ratio">Allow changing the aspect ratio</string>
<!-- Slideshow --> <!-- Slideshow -->
<string name="slideshow">Lysbildeshow</string> <string name="slideshow">Lysbildeshow</string>
<string name="interval">Intervall (sekunder):</string> <string name="interval">Intervall</string>
<string name="include_photos">Inkluder bilder</string> <string name="include_photos">Inkluder bilder</string>
<string name="include_videos">Inkluder videoer</string> <string name="include_videos">Inkluder videoer</string>
<string name="include_gifs">Inkluder GIF-bilder</string> <string name="include_gifs">Inkluder GIF-bilder</string>
@ -376,4 +376,4 @@
Haven't found some strings? There's more at Haven't found some strings? There's more at
https://github.com/SimpleMobileTools/Simple-Commons/tree/master/commons/src/main/res https://github.com/SimpleMobileTools/Simple-Commons/tree/master/commons/src/main/res
--> -->
</resources> </resources>

View file

@ -126,7 +126,7 @@
<string name="allow_changing_aspect_ratio">Allow changing the aspect ratio</string> <string name="allow_changing_aspect_ratio">Allow changing the aspect ratio</string>
<!-- Slideshow --> <!-- Slideshow -->
<string name="slideshow">स्लाईडसो</string> <string name="slideshow">स्लाईडसो</string>
<string name="interval">Interval (seconds):</string> <string name="interval">Interval</string>
<string name="include_photos">Include photos</string> <string name="include_photos">Include photos</string>
<string name="include_videos">Include videos</string> <string name="include_videos">Include videos</string>
<string name="include_gifs">Include GIFs</string> <string name="include_gifs">Include GIFs</string>
@ -376,4 +376,4 @@
Haven't found some strings? There's more at Haven't found some strings? There's more at
https://github.com/SimpleMobileTools/Simple-Commons/tree/master/commons/src/main/res https://github.com/SimpleMobileTools/Simple-Commons/tree/master/commons/src/main/res
--> -->
</resources> </resources>

View file

@ -122,7 +122,7 @@
<string name="allow_changing_aspect_ratio">Beeldverhouding mag worden gewijzigd</string> <string name="allow_changing_aspect_ratio">Beeldverhouding mag worden gewijzigd</string>
<!-- Slideshow --> <!-- Slideshow -->
<string name="slideshow">Diavoorstelling</string> <string name="slideshow">Diavoorstelling</string>
<string name="interval">Interval (seconden):</string> <string name="interval">Interval</string>
<string name="include_photos">Afbeeldingen tonen</string> <string name="include_photos">Afbeeldingen tonen</string>
<string name="include_videos">Video\'s tonen</string> <string name="include_videos">Video\'s tonen</string>
<string name="include_gifs">GIF-bestanden tonen</string> <string name="include_gifs">GIF-bestanden tonen</string>
@ -372,4 +372,4 @@
Haven't found some strings? There's more at Haven't found some strings? There's more at
https://github.com/SimpleMobileTools/Simple-Commons/tree/master/commons/src/main/res https://github.com/SimpleMobileTools/Simple-Commons/tree/master/commons/src/main/res
--> -->
</resources> </resources>

View file

@ -126,7 +126,7 @@
<string name="allow_changing_aspect_ratio">Zezwól na zmianę proporcji</string> <string name="allow_changing_aspect_ratio">Zezwól na zmianę proporcji</string>
<!-- Slideshow --> <!-- Slideshow -->
<string name="slideshow">Pokaz slajdów</string> <string name="slideshow">Pokaz slajdów</string>
<string name="interval">Czas trwania (sekundy):</string> <string name="interval">Czas trwania</string>
<string name="include_photos">Uwzględnij obrazy</string> <string name="include_photos">Uwzględnij obrazy</string>
<string name="include_videos">Uwzględnij wideo</string> <string name="include_videos">Uwzględnij wideo</string>
<string name="include_gifs">Uwzględnij GIF-y</string> <string name="include_gifs">Uwzględnij GIF-y</string>
@ -376,4 +376,4 @@
Haven't found some strings? There's more at Haven't found some strings? There's more at
https://github.com/SimpleMobileTools/Simple-Commons/tree/master/commons/src/main/res https://github.com/SimpleMobileTools/Simple-Commons/tree/master/commons/src/main/res
--> -->
</resources> </resources>

View file

@ -126,7 +126,7 @@
<string name="allow_changing_aspect_ratio">Allow changing the aspect ratio</string> <string name="allow_changing_aspect_ratio">Allow changing the aspect ratio</string>
<!-- Slideshow --> <!-- Slideshow -->
<string name="slideshow">Apresentação</string> <string name="slideshow">Apresentação</string>
<string name="interval">Intervalo (segundos):</string> <string name="interval">Intervalo</string>
<string name="include_photos">Incluir fotos</string> <string name="include_photos">Incluir fotos</string>
<string name="include_videos">Incluir vídeos</string> <string name="include_videos">Incluir vídeos</string>
<string name="include_gifs">Incluir GIFs</string> <string name="include_gifs">Incluir GIFs</string>
@ -376,4 +376,4 @@
Haven't found some strings? There's more at Haven't found some strings? There's more at
https://github.com/SimpleMobileTools/Simple-Commons/tree/master/commons/src/main/res https://github.com/SimpleMobileTools/Simple-Commons/tree/master/commons/src/main/res
--> -->
</resources> </resources>

View file

@ -126,7 +126,7 @@
<string name="allow_changing_aspect_ratio">Permitir alterar a proporção</string> <string name="allow_changing_aspect_ratio">Permitir alterar a proporção</string>
<!-- Slideshow --> <!-- Slideshow -->
<string name="slideshow">Apresentação</string> <string name="slideshow">Apresentação</string>
<string name="interval">Intervalo (em segundos):</string> <string name="interval">Intervalo</string>
<string name="include_photos">Incluir fotos</string> <string name="include_photos">Incluir fotos</string>
<string name="include_videos">Incluir vídeos</string> <string name="include_videos">Incluir vídeos</string>
<string name="include_gifs">Incluir GIF</string> <string name="include_gifs">Incluir GIF</string>
@ -376,4 +376,4 @@
Não encontrou todas as cadeias a traduzir? Existem mais algumas em: Não encontrou todas as cadeias a traduzir? Existem mais algumas em:
https://github.com/SimpleMobileTools/Simple-Commons/tree/master/commons/src/main/res https://github.com/SimpleMobileTools/Simple-Commons/tree/master/commons/src/main/res
--> -->
</resources> </resources>

View file

@ -126,7 +126,7 @@
<string name="allow_changing_aspect_ratio">Allow changing the aspect ratio</string> <string name="allow_changing_aspect_ratio">Allow changing the aspect ratio</string>
<!-- Slideshow --> <!-- Slideshow -->
<string name="slideshow">Slideshow</string> <string name="slideshow">Slideshow</string>
<string name="interval">Interval (în secunde):</string> <string name="interval">Interval</string>
<string name="include_photos">Include fotografii</string> <string name="include_photos">Include fotografii</string>
<string name="include_videos">Include videoclipuri</string> <string name="include_videos">Include videoclipuri</string>
<string name="include_gifs">Include GIF-uri</string> <string name="include_gifs">Include GIF-uri</string>
@ -376,4 +376,4 @@
Haven't found some strings? There's more at Haven't found some strings? There's more at
https://github.com/SimpleMobileTools/Simple-Commons/tree/master/commons/src/main/res https://github.com/SimpleMobileTools/Simple-Commons/tree/master/commons/src/main/res
--> -->
</resources> </resources>

View file

@ -126,7 +126,7 @@
<string name="allow_changing_aspect_ratio">Разрешить изменять соотношение сторон</string> <string name="allow_changing_aspect_ratio">Разрешить изменять соотношение сторон</string>
<!-- Slideshow --> <!-- Slideshow -->
<string name="slideshow">Слайдшоу</string> <string name="slideshow">Слайдшоу</string>
<string name="interval">Интервал (в секундах):</string> <string name="interval">Интервал</string>
<string name="include_photos">Изображения</string> <string name="include_photos">Изображения</string>
<string name="include_videos">Видео</string> <string name="include_videos">Видео</string>
<string name="include_gifs">GIF</string> <string name="include_gifs">GIF</string>
@ -376,4 +376,4 @@
Haven't found some strings? There's more at Haven't found some strings? There's more at
https://github.com/SimpleMobileTools/Simple-Commons/tree/master/commons/src/main/res https://github.com/SimpleMobileTools/Simple-Commons/tree/master/commons/src/main/res
--> -->
</resources> </resources>

View file

@ -126,7 +126,7 @@
<string name="allow_changing_aspect_ratio">Povoliť zmenu pomeru strán</string> <string name="allow_changing_aspect_ratio">Povoliť zmenu pomeru strán</string>
<!-- Slideshow --> <!-- Slideshow -->
<string name="slideshow">Prezentácia</string> <string name="slideshow">Prezentácia</string>
<string name="interval">Interval (sekundy):</string> <string name="interval">Interval</string>
<string name="include_photos">Zahrnúť fotky</string> <string name="include_photos">Zahrnúť fotky</string>
<string name="include_videos">Zahrnúť videá</string> <string name="include_videos">Zahrnúť videá</string>
<string name="include_gifs">Zahrnúť GIFy</string> <string name="include_gifs">Zahrnúť GIFy</string>
@ -376,4 +376,4 @@
Haven't found some strings? There's more at Haven't found some strings? There's more at
https://github.com/SimpleMobileTools/Simple-Commons/tree/master/commons/src/main/res https://github.com/SimpleMobileTools/Simple-Commons/tree/master/commons/src/main/res
--> -->
</resources> </resources>

View file

@ -126,7 +126,7 @@
<string name="allow_changing_aspect_ratio">Allow changing the aspect ratio</string> <string name="allow_changing_aspect_ratio">Allow changing the aspect ratio</string>
<!-- Slideshow --> <!-- Slideshow -->
<string name="slideshow">Diaprojekcija</string> <string name="slideshow">Diaprojekcija</string>
<string name="interval">Interval (sekund):</string> <string name="interval">Interval</string>
<string name="include_photos">Vključi fotografije</string> <string name="include_photos">Vključi fotografije</string>
<string name="include_videos">Vključi videoposnetke</string> <string name="include_videos">Vključi videoposnetke</string>
<string name="include_gifs">Vključi GIFe</string> <string name="include_gifs">Vključi GIFe</string>
@ -376,4 +376,4 @@
Haven't found some strings? There's more at Haven't found some strings? There's more at
https://github.com/SimpleMobileTools/Simple-Commons/tree/master/commons/src/main/res https://github.com/SimpleMobileTools/Simple-Commons/tree/master/commons/src/main/res
--> -->
</resources> </resources>

View file

@ -126,7 +126,7 @@
<string name="allow_changing_aspect_ratio">Allow changing the aspect ratio</string> <string name="allow_changing_aspect_ratio">Allow changing the aspect ratio</string>
<!-- Slideshow --> <!-- Slideshow -->
<string name="slideshow">Слајдшоу</string> <string name="slideshow">Слајдшоу</string>
<string name="interval">Интервал (секунди):</string> <string name="interval">Интервал</string>
<string name="include_photos">Садржи слике</string> <string name="include_photos">Садржи слике</string>
<string name="include_videos">Садржи видео снимке</string> <string name="include_videos">Садржи видео снимке</string>
<string name="include_gifs">Садржи ГИФове</string> <string name="include_gifs">Садржи ГИФове</string>
@ -376,4 +376,4 @@
haven't found some strings? There's more at haven't found some strings? There's more at
https://github.com/SimpleMobileTools/Simple-Commons/tree/master/commons/src/main/res https://github.com/SimpleMobileTools/Simple-Commons/tree/master/commons/src/main/res
--> -->
</resources> </resources>

View file

@ -124,7 +124,7 @@
<string name="allow_changing_aspect_ratio">Allow changing the aspect ratio</string> <string name="allow_changing_aspect_ratio">Allow changing the aspect ratio</string>
<!-- Slideshow --> <!-- Slideshow -->
<string name="slideshow">Bildspel</string> <string name="slideshow">Bildspel</string>
<string name="interval">Intervall (sekunder):</string> <string name="interval">Intervall</string>
<string name="include_photos">Inkludera foton</string> <string name="include_photos">Inkludera foton</string>
<string name="include_videos">Inkludera videor</string> <string name="include_videos">Inkludera videor</string>
<string name="include_gifs">Inkludera GIF-bilder</string> <string name="include_gifs">Inkludera GIF-bilder</string>
@ -374,4 +374,4 @@
Haven't found some strings? There's more at Haven't found some strings? There's more at
https://github.com/SimpleMobileTools/Simple-Commons/tree/master/commons/src/main/res https://github.com/SimpleMobileTools/Simple-Commons/tree/master/commons/src/main/res
--> -->
</resources> </resources>

View file

@ -126,7 +126,7 @@
<string name="allow_changing_aspect_ratio">Allow changing the aspect ratio</string> <string name="allow_changing_aspect_ratio">Allow changing the aspect ratio</string>
<!-- Slideshow --> <!-- Slideshow -->
<string name="slideshow">வில்லைக்காட்சி</string> <string name="slideshow">வில்லைக்காட்சி</string>
<string name="interval">இடைவெளி (நொடிகள்):</string> <string name="interval">இடைவெளி</string>
<string name="include_photos">புகைப்படங்களை உள்ளடக்கு</string> <string name="include_photos">புகைப்படங்களை உள்ளடக்கு</string>
<string name="include_videos">காணொளிகளை உள்ளடக்கு</string> <string name="include_videos">காணொளிகளை உள்ளடக்கு</string>
<string name="include_gifs">GIFகளை உள்ளடக்கு</string> <string name="include_gifs">GIFகளை உள்ளடக்கு</string>
@ -376,4 +376,4 @@
Haven't found some strings? There's more at Haven't found some strings? There's more at
https://github.com/SimpleMobileTools/Simple-Commons/tree/master/commons/src/main/res https://github.com/SimpleMobileTools/Simple-Commons/tree/master/commons/src/main/res
--> -->
</resources> </resources>

View file

@ -126,7 +126,7 @@
<string name="allow_changing_aspect_ratio">Allow changing the aspect ratio</string> <string name="allow_changing_aspect_ratio">Allow changing the aspect ratio</string>
<!-- Slideshow --> <!-- Slideshow -->
<string name="slideshow">Slideshow</string> <string name="slideshow">Slideshow</string>
<string name="interval">Interval (seconds):</string> <string name="interval">Interval</string>
<string name="include_photos">Include photos</string> <string name="include_photos">Include photos</string>
<string name="include_videos">Include videos</string> <string name="include_videos">Include videos</string>
<string name="include_gifs">Include GIFs</string> <string name="include_gifs">Include GIFs</string>
@ -376,4 +376,4 @@
Haven't found some strings? There's more at Haven't found some strings? There's more at
https://github.com/SimpleMobileTools/Simple-Commons/tree/master/commons/src/main/res https://github.com/SimpleMobileTools/Simple-Commons/tree/master/commons/src/main/res
--> -->
</resources> </resources>

View file

@ -126,7 +126,7 @@
<string name="allow_changing_aspect_ratio">En boy oranını değiştirmeye izin ver</string> <string name="allow_changing_aspect_ratio">En boy oranını değiştirmeye izin ver</string>
<!-- Slideshow --> <!-- Slideshow -->
<string name="slideshow">Slayt gösterisi</string> <string name="slideshow">Slayt gösterisi</string>
<string name="interval">Süre (saniye):</string> <string name="interval">Süre</string>
<string name="include_photos">Fotoğrafları dahil et</string> <string name="include_photos">Fotoğrafları dahil et</string>
<string name="include_videos">Videoları dahil et</string> <string name="include_videos">Videoları dahil et</string>
<string name="include_gifs">GIF\'leri dahil et</string> <string name="include_gifs">GIF\'leri dahil et</string>
@ -376,4 +376,4 @@
Haven't found some strings? There's more at Haven't found some strings? There's more at
https://github.com/SimpleMobileTools/Simple-Commons/tree/master/commons/src/main/res https://github.com/SimpleMobileTools/Simple-Commons/tree/master/commons/src/main/res
--> -->
</resources> </resources>

View file

@ -126,7 +126,7 @@
<string name="allow_changing_aspect_ratio">Дозволити зміну співвідношення сторін</string> <string name="allow_changing_aspect_ratio">Дозволити зміну співвідношення сторін</string>
<!-- Slideshow --> <!-- Slideshow -->
<string name="slideshow">Слайдшоу</string> <string name="slideshow">Слайдшоу</string>
<string name="interval">Інтервал (секунди):</string> <string name="interval">Інтервал</string>
<string name="include_photos">Включити світлини</string> <string name="include_photos">Включити світлини</string>
<string name="include_videos">Включити відео</string> <string name="include_videos">Включити відео</string>
<string name="include_gifs">Включити GIF-зображення</string> <string name="include_gifs">Включити GIF-зображення</string>
@ -376,4 +376,4 @@
Haven't found some strings? There's more at Haven't found some strings? There's more at
https://github.com/SimpleMobileTools/Simple-Commons/tree/master/commons/src/main/res https://github.com/SimpleMobileTools/Simple-Commons/tree/master/commons/src/main/res
--> -->
</resources> </resources>

View file

@ -124,7 +124,7 @@
<string name="allow_changing_aspect_ratio">Allow changing the aspect ratio</string> <string name="allow_changing_aspect_ratio">Allow changing the aspect ratio</string>
<!-- Slideshow --> <!-- Slideshow -->
<string name="slideshow">Trình chiếu</string> <string name="slideshow">Trình chiếu</string>
<string name="interval">Khoảng thời gian (giây):</string> <string name="interval">Khoảng thời gian</string>
<string name="include_photos">Bao gồm hình ảnh</string> <string name="include_photos">Bao gồm hình ảnh</string>
<string name="include_videos">Bao gồm video</string> <string name="include_videos">Bao gồm video</string>
<string name="include_gifs">Bao gồm ảnh GIF</string> <string name="include_gifs">Bao gồm ảnh GIF</string>
@ -374,4 +374,4 @@
Haven't found some strings? There's more at Haven't found some strings? There's more at
https://github.com/SimpleMobileTools/Simple-Commons/tree/master/commons/src/main/res https://github.com/SimpleMobileTools/Simple-Commons/tree/master/commons/src/main/res
--> -->
</resources> </resources>

View file

@ -126,7 +126,7 @@
<string name="allow_changing_aspect_ratio">允许更改长宽比</string> <string name="allow_changing_aspect_ratio">允许更改长宽比</string>
<!-- Slideshow --> <!-- Slideshow -->
<string name="slideshow">幻灯片</string> <string name="slideshow">幻灯片</string>
<string name="interval">间隔(秒):</string> <string name="interval">间隔</string>
<string name="include_photos">包含照片</string> <string name="include_photos">包含照片</string>
<string name="include_videos">包含视频</string> <string name="include_videos">包含视频</string>
<string name="include_gifs">包含GIF</string> <string name="include_gifs">包含GIF</string>
@ -376,4 +376,4 @@
Haven't found some strings? There's more at Haven't found some strings? There's more at
https://github.com/SimpleMobileTools/Simple-Commons/tree/master/commons/src/main/res https://github.com/SimpleMobileTools/Simple-Commons/tree/master/commons/src/main/res
--> -->
</resources> </resources>

View file

@ -125,7 +125,7 @@
<string name="allow_changing_aspect_ratio">Allow changing the aspect ratio</string> <string name="allow_changing_aspect_ratio">Allow changing the aspect ratio</string>
<!-- Slideshow --> <!-- Slideshow -->
<string name="slideshow">投影片</string> <string name="slideshow">投影片</string>
<string name="interval">間隔 (秒):</string> <string name="interval">間隔</string>
<string name="include_photos">包含照片</string> <string name="include_photos">包含照片</string>
<string name="include_videos">包含影片</string> <string name="include_videos">包含影片</string>
<string name="include_gifs">包含GIF</string> <string name="include_gifs">包含GIF</string>
@ -375,4 +375,4 @@
Haven't found some strings? There's more at Haven't found some strings? There's more at
https://github.com/SimpleMobileTools/Simple-Commons/tree/master/commons/src/main/res https://github.com/SimpleMobileTools/Simple-Commons/tree/master/commons/src/main/res
--> -->
</resources> </resources>

View file

@ -126,7 +126,7 @@
<string name="allow_changing_aspect_ratio">允許變更長寬比</string> <string name="allow_changing_aspect_ratio">允許變更長寬比</string>
<!-- Slideshow --> <!-- Slideshow -->
<string name="slideshow">投影片</string> <string name="slideshow">投影片</string>
<string name="interval">間隔 (秒):</string> <string name="interval">間隔</string>
<string name="include_photos">包含照片</string> <string name="include_photos">包含照片</string>
<string name="include_videos">包含影片</string> <string name="include_videos">包含影片</string>
<string name="include_gifs">包含GIF</string> <string name="include_gifs">包含GIF</string>
@ -376,4 +376,4 @@
Haven't found some strings? There's more at Haven't found some strings? There's more at
https://github.com/SimpleMobileTools/Simple-Commons/tree/master/commons/src/main/res https://github.com/SimpleMobileTools/Simple-Commons/tree/master/commons/src/main/res
--> -->
</resources> </resources>

View file

@ -121,7 +121,7 @@
<!-- Slideshow --> <!-- Slideshow -->
<string name="slideshow">Slideshow</string> <string name="slideshow">Slideshow</string>
<string name="interval">Interval (seconds):</string> <string name="interval">Interval</string>
<string name="include_photos">Include photos</string> <string name="include_photos">Include photos</string>
<string name="include_videos">Include videos</string> <string name="include_videos">Include videos</string>
<string name="include_gifs">Include GIFs</string> <string name="include_gifs">Include GIFs</string>