Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
A
apk
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Administrator
apk
Commits
d8c2966e
Commit
d8c2966e
authored
Mar 24, 2014
by
DrKLO
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Revert italian localization to previous release, add some new strings
parent
c125097b
Changes
7
Expand all
Show whitespace changes
Inline
Side-by-side
Showing
7 changed files
with
117 additions
and
87 deletions
+117
-87
GalleryImageViewer.java
...roj/src/main/java/org/telegram/ui/GalleryImageViewer.java
+6
-6
strings.xml
TMessagesProj/src/main/res/values-ar/strings.xml
+6
-1
strings.xml
TMessagesProj/src/main/res/values-de/strings.xml
+6
-1
strings.xml
TMessagesProj/src/main/res/values-es/strings.xml
+6
-1
strings.xml
TMessagesProj/src/main/res/values-it/strings.xml
+81
-76
strings.xml
TMessagesProj/src/main/res/values-nl/strings.xml
+6
-1
strings.xml
TMessagesProj/src/main/res/values/strings.xml
+6
-1
No files found.
TMessagesProj/src/main/java/org/telegram/ui/GalleryImageViewer.java
View file @
d8c2966e
...
@@ -374,9 +374,9 @@ public class GalleryImageViewer extends AbstractGalleryActivity implements Notif
...
@@ -374,9 +374,9 @@ public class GalleryImageViewer extends AbstractGalleryActivity implements Notif
Utilities
.
RunOnUIThread
(
new
Runnable
()
{
Utilities
.
RunOnUIThread
(
new
Runnable
()
{
@Override
@Override
public
void
run
()
{
public
void
run
()
{
getSupportActionBar
().
setTitle
(
String
.
format
(
"%d %s %d"
,
pos
,
LocaleController
.
getString
(
"Of"
,
R
.
string
.
Of
)
,
totalCount
));
getSupportActionBar
().
setTitle
(
LocaleController
.
formatString
(
"Of"
,
R
.
string
.
Of
,
pos
,
totalCount
));
if
(
title
!=
null
)
{
if
(
title
!=
null
)
{
fakeTitleView
.
setText
(
String
.
format
(
"%d %s %d"
,
pos
,
LocaleController
.
getString
(
"Of"
,
R
.
string
.
Of
)
,
totalCount
));
fakeTitleView
.
setText
(
LocaleController
.
formatString
(
"Of"
,
R
.
string
.
Of
,
pos
,
totalCount
));
fakeTitleView
.
measure
(
View
.
MeasureSpec
.
makeMeasureSpec
(
400
,
View
.
MeasureSpec
.
AT_MOST
),
View
.
MeasureSpec
.
makeMeasureSpec
(
100
,
View
.
MeasureSpec
.
AT_MOST
));
fakeTitleView
.
measure
(
View
.
MeasureSpec
.
makeMeasureSpec
(
400
,
View
.
MeasureSpec
.
AT_MOST
),
View
.
MeasureSpec
.
makeMeasureSpec
(
100
,
View
.
MeasureSpec
.
AT_MOST
));
title
.
setWidth
(
fakeTitleView
.
getMeasuredWidth
()
+
Utilities
.
dp
(
8
));
title
.
setWidth
(
fakeTitleView
.
getMeasuredWidth
()
+
Utilities
.
dp
(
8
));
title
.
setMaxWidth
(
fakeTitleView
.
getMeasuredWidth
()
+
Utilities
.
dp
(
8
));
title
.
setMaxWidth
(
fakeTitleView
.
getMeasuredWidth
()
+
Utilities
.
dp
(
8
));
...
@@ -866,9 +866,9 @@ public class GalleryImageViewer extends AbstractGalleryActivity implements Notif
...
@@ -866,9 +866,9 @@ public class GalleryImageViewer extends AbstractGalleryActivity implements Notif
Utilities
.
RunOnUIThread
(
new
Runnable
()
{
Utilities
.
RunOnUIThread
(
new
Runnable
()
{
@Override
@Override
public
void
run
()
{
public
void
run
()
{
getSupportActionBar
().
setTitle
(
String
.
format
(
"%d %s %d"
,
(
totalCount
-
imagesArr
.
size
())
+
position
+
1
,
LocaleController
.
getString
(
"Of"
,
R
.
string
.
Of
)
,
totalCount
));
getSupportActionBar
().
setTitle
(
LocaleController
.
formatString
(
"Of"
,
R
.
string
.
Of
,
(
totalCount
-
imagesArr
.
size
())
+
position
+
1
,
totalCount
));
if
(
title
!=
null
)
{
if
(
title
!=
null
)
{
fakeTitleView
.
setText
(
String
.
format
(
"%d %s %d"
,
(
totalCount
-
imagesArr
.
size
())
+
position
+
1
,
LocaleController
.
getString
(
"Of"
,
R
.
string
.
Of
)
,
totalCount
));
fakeTitleView
.
setText
(
LocaleController
.
formatString
(
"Of"
,
R
.
string
.
Of
,
(
totalCount
-
imagesArr
.
size
())
+
position
+
1
,
totalCount
));
fakeTitleView
.
measure
(
View
.
MeasureSpec
.
makeMeasureSpec
(
400
,
View
.
MeasureSpec
.
AT_MOST
),
View
.
MeasureSpec
.
makeMeasureSpec
(
100
,
View
.
MeasureSpec
.
AT_MOST
));
fakeTitleView
.
measure
(
View
.
MeasureSpec
.
makeMeasureSpec
(
400
,
View
.
MeasureSpec
.
AT_MOST
),
View
.
MeasureSpec
.
makeMeasureSpec
(
100
,
View
.
MeasureSpec
.
AT_MOST
));
title
.
setWidth
(
fakeTitleView
.
getMeasuredWidth
()
+
Utilities
.
dp
(
8
));
title
.
setWidth
(
fakeTitleView
.
getMeasuredWidth
()
+
Utilities
.
dp
(
8
));
title
.
setMaxWidth
(
fakeTitleView
.
getMeasuredWidth
()
+
Utilities
.
dp
(
8
));
title
.
setMaxWidth
(
fakeTitleView
.
getMeasuredWidth
()
+
Utilities
.
dp
(
8
));
...
@@ -885,9 +885,9 @@ public class GalleryImageViewer extends AbstractGalleryActivity implements Notif
...
@@ -885,9 +885,9 @@ public class GalleryImageViewer extends AbstractGalleryActivity implements Notif
Utilities
.
RunOnUIThread
(
new
Runnable
()
{
Utilities
.
RunOnUIThread
(
new
Runnable
()
{
@Override
@Override
public
void
run
()
{
public
void
run
()
{
getSupportActionBar
().
setTitle
(
String
.
format
(
"%d %s %d"
,
position
+
1
,
LocaleController
.
getString
(
"Of"
,
R
.
string
.
Of
)
,
imagesArrLocations
.
size
()));
getSupportActionBar
().
setTitle
(
LocaleController
.
formatString
(
"Of"
,
R
.
string
.
Of
,
position
+
1
,
imagesArrLocations
.
size
()));
if
(
title
!=
null
)
{
if
(
title
!=
null
)
{
fakeTitleView
.
setText
(
String
.
format
(
"%d %s %d"
,
position
+
1
,
LocaleController
.
getString
(
"Of"
,
R
.
string
.
Of
)
,
imagesArrLocations
.
size
()));
fakeTitleView
.
setText
(
LocaleController
.
formatString
(
"Of"
,
R
.
string
.
Of
,
position
+
1
,
imagesArrLocations
.
size
()));
fakeTitleView
.
measure
(
View
.
MeasureSpec
.
makeMeasureSpec
(
400
,
View
.
MeasureSpec
.
AT_MOST
),
View
.
MeasureSpec
.
makeMeasureSpec
(
100
,
View
.
MeasureSpec
.
AT_MOST
));
fakeTitleView
.
measure
(
View
.
MeasureSpec
.
makeMeasureSpec
(
400
,
View
.
MeasureSpec
.
AT_MOST
),
View
.
MeasureSpec
.
makeMeasureSpec
(
100
,
View
.
MeasureSpec
.
AT_MOST
));
title
.
setWidth
(
fakeTitleView
.
getMeasuredWidth
()
+
Utilities
.
dp
(
8
));
title
.
setWidth
(
fakeTitleView
.
getMeasuredWidth
()
+
Utilities
.
dp
(
8
));
title
.
setMaxWidth
(
fakeTitleView
.
getMeasuredWidth
()
+
Utilities
.
dp
(
8
));
title
.
setMaxWidth
(
fakeTitleView
.
getMeasuredWidth
()
+
Utilities
.
dp
(
8
));
...
...
TMessagesProj/src/main/res/values-ar/strings.xml
View file @
d8c2966e
...
@@ -5,6 +5,9 @@
...
@@ -5,6 +5,9 @@
<resources>
<resources>
<string
name=
"AppName"
>
Telegram
</string>
<string
name=
"AppName"
>
Telegram
</string>
<string
name=
"LanguangeName"
>
Arabic
</string>
<string
name=
"LanguangeNameInEnglish"
>
Arabic
</string>
<!--signin view-->
<!--signin view-->
<string
name=
"YourPhone"
>
رقم هاتفك المحمول
</string>
<string
name=
"YourPhone"
>
رقم هاتفك المحمول
</string>
<string
name=
"StartText"
>
يرجى التحقق من صحة رمز بلدك وإدخال رقم هاتفك المحمول
</string>
<string
name=
"StartText"
>
يرجى التحقق من صحة رمز بلدك وإدخال رقم هاتفك المحمول
</string>
...
@@ -107,6 +110,7 @@
...
@@ -107,6 +110,7 @@
<string
name=
"DeleteThisGroup"
>
حذف المجموعة
</string>
<string
name=
"DeleteThisGroup"
>
حذف المجموعة
</string>
<string
name=
"SlideToCancel"
>
قم بالسحب للإلغاء
</string>
<string
name=
"SlideToCancel"
>
قم بالسحب للإلغاء
</string>
<string
name=
"SaveToDownloads"
>
حفظ في الجهاز
</string>
<string
name=
"SaveToDownloads"
>
حفظ في الجهاز
</string>
<string
name=
"ApplyLocalizationFile"
>
Apply localization file
</string>
<!--notification-->
<!--notification-->
<string
name=
"EncryptedChatRequested"
>
تم طلب محادثة سرية
</string>
<string
name=
"EncryptedChatRequested"
>
تم طلب محادثة سرية
</string>
...
@@ -250,6 +254,7 @@
...
@@ -250,6 +254,7 @@
<string
name=
"Events"
>
الأحداث
</string>
<string
name=
"Events"
>
الأحداث
</string>
<string
name=
"ContactJoined"
>
اشترك صديق في تيليجرام
</string>
<string
name=
"ContactJoined"
>
اشترك صديق في تيليجرام
</string>
<string
name=
"Pebble"
>
PEBBLE
</string>
<string
name=
"Pebble"
>
PEBBLE
</string>
<string
name=
"Language"
>
Language
</string>
<!--media view-->
<!--media view-->
<string
name=
"NoMedia"
>
لا توجد وسائط بعد
</string>
<string
name=
"NoMedia"
>
لا توجد وسائط بعد
</string>
...
@@ -268,7 +273,7 @@
...
@@ -268,7 +273,7 @@
<!--photo gallery view-->
<!--photo gallery view-->
<string
name=
"ShowAllMedia"
>
عرض كافة الوسائط
</string>
<string
name=
"ShowAllMedia"
>
عرض كافة الوسائط
</string>
<string
name=
"SaveToGallery"
>
حفظ في الجهاز
</string>
<string
name=
"SaveToGallery"
>
حفظ في الجهاز
</string>
<string
name=
"Of"
>
من
</string>
<string
name=
"Of"
>
%1$d من %2$d
</string>
<string
name=
"Gallery"
>
الألبوم
</string>
<string
name=
"Gallery"
>
الألبوم
</string>
<!--button titles-->
<!--button titles-->
...
...
TMessagesProj/src/main/res/values-de/strings.xml
View file @
d8c2966e
...
@@ -5,6 +5,9 @@
...
@@ -5,6 +5,9 @@
<resources>
<resources>
<string
name=
"AppName"
>
Telegram
</string>
<string
name=
"AppName"
>
Telegram
</string>
<string
name=
"LanguangeName"
>
German
</string>
<string
name=
"LanguangeNameInEnglish"
>
German
</string>
<!--signin view-->
<!--signin view-->
<string
name=
"YourPhone"
>
Dein Telefon
</string>
<string
name=
"YourPhone"
>
Dein Telefon
</string>
<string
name=
"StartText"
>
Bitte bestätige deine Landesvorwahl und deine Telefonnummer.
</string>
<string
name=
"StartText"
>
Bitte bestätige deine Landesvorwahl und deine Telefonnummer.
</string>
...
@@ -107,6 +110,7 @@
...
@@ -107,6 +110,7 @@
<string
name=
"DeleteThisGroup"
>
Diese Gruppe löschen
</string>
<string
name=
"DeleteThisGroup"
>
Diese Gruppe löschen
</string>
<string
name=
"SlideToCancel"
>
WISCHEN UM ABZUBRECHEN
</string>
<string
name=
"SlideToCancel"
>
WISCHEN UM ABZUBRECHEN
</string>
<string
name=
"SaveToDownloads"
>
In Ordner Downloads speichern
</string>
<string
name=
"SaveToDownloads"
>
In Ordner Downloads speichern
</string>
<string
name=
"ApplyLocalizationFile"
>
Apply localization file
</string>
<!--notification-->
<!--notification-->
<string
name=
"EncryptedChatRequested"
>
Geheimen Chat angefordert
</string>
<string
name=
"EncryptedChatRequested"
>
Geheimen Chat angefordert
</string>
...
@@ -250,6 +254,7 @@
...
@@ -250,6 +254,7 @@
<string
name=
"Events"
>
EREIGNISSE
</string>
<string
name=
"Events"
>
EREIGNISSE
</string>
<string
name=
"ContactJoined"
>
Kontakt ist Telegram beigetreten
</string>
<string
name=
"ContactJoined"
>
Kontakt ist Telegram beigetreten
</string>
<string
name=
"Pebble"
>
PEBBLE
</string>
<string
name=
"Pebble"
>
PEBBLE
</string>
<string
name=
"Language"
>
Language
</string>
<!--media view-->
<!--media view-->
<string
name=
"NoMedia"
>
Noch keine geteilten Medien vorhanden
</string>
<string
name=
"NoMedia"
>
Noch keine geteilten Medien vorhanden
</string>
...
@@ -268,7 +273,7 @@
...
@@ -268,7 +273,7 @@
<!--photo gallery view-->
<!--photo gallery view-->
<string
name=
"ShowAllMedia"
>
Zeige alle Medien
</string>
<string
name=
"ShowAllMedia"
>
Zeige alle Medien
</string>
<string
name=
"SaveToGallery"
>
In der Galerie speichern
</string>
<string
name=
"SaveToGallery"
>
In der Galerie speichern
</string>
<string
name=
"Of"
>
von
</string>
<string
name=
"Of"
>
%1$d von %2$d
</string>
<string
name=
"Gallery"
>
Galerie
</string>
<string
name=
"Gallery"
>
Galerie
</string>
<!--button titles-->
<!--button titles-->
...
...
TMessagesProj/src/main/res/values-es/strings.xml
View file @
d8c2966e
...
@@ -5,6 +5,9 @@
...
@@ -5,6 +5,9 @@
<resources>
<resources>
<string
name=
"AppName"
>
Telegram
</string>
<string
name=
"AppName"
>
Telegram
</string>
<string
name=
"LanguangeName"
>
Spanish
</string>
<string
name=
"LanguangeNameInEnglish"
>
Spanish
</string>
<!--signin view-->
<!--signin view-->
<string
name=
"YourPhone"
>
Tu teléfono
</string>
<string
name=
"YourPhone"
>
Tu teléfono
</string>
<string
name=
"StartText"
>
Por favor, confirma tu código de país\ne introduce tu número.
</string>
<string
name=
"StartText"
>
Por favor, confirma tu código de país\ne introduce tu número.
</string>
...
@@ -107,6 +110,7 @@
...
@@ -107,6 +110,7 @@
<string
name=
"DeleteThisGroup"
>
Eliminar este grupo
</string>
<string
name=
"DeleteThisGroup"
>
Eliminar este grupo
</string>
<string
name=
"SlideToCancel"
>
DESLIZA PARA CANCELAR
</string>
<string
name=
"SlideToCancel"
>
DESLIZA PARA CANCELAR
</string>
<string
name=
"SaveToDownloads"
>
Guardar en descargas
</string>
<string
name=
"SaveToDownloads"
>
Guardar en descargas
</string>
<string
name=
"ApplyLocalizationFile"
>
Apply localization file
</string>
<!--notification-->
<!--notification-->
<string
name=
"EncryptedChatRequested"
>
Chat secreto solicitado
</string>
<string
name=
"EncryptedChatRequested"
>
Chat secreto solicitado
</string>
...
@@ -250,6 +254,7 @@
...
@@ -250,6 +254,7 @@
<string
name=
"Events"
>
EVENTOS
</string>
<string
name=
"Events"
>
EVENTOS
</string>
<string
name=
"ContactJoined"
>
Un contacto se unió a Telegram
</string>
<string
name=
"ContactJoined"
>
Un contacto se unió a Telegram
</string>
<string
name=
"Pebble"
>
PEBBLE
</string>
<string
name=
"Pebble"
>
PEBBLE
</string>
<string
name=
"Language"
>
Language
</string>
<!--media view-->
<!--media view-->
<string
name=
"NoMedia"
>
No hay fotos ni vídeos compartidos aún
</string>
<string
name=
"NoMedia"
>
No hay fotos ni vídeos compartidos aún
</string>
...
@@ -268,7 +273,7 @@
...
@@ -268,7 +273,7 @@
<!--photo gallery view-->
<!--photo gallery view-->
<string
name=
"ShowAllMedia"
>
Mostrar todas las fotos y vídeos
</string>
<string
name=
"ShowAllMedia"
>
Mostrar todas las fotos y vídeos
</string>
<string
name=
"SaveToGallery"
>
Guardar en galería
</string>
<string
name=
"SaveToGallery"
>
Guardar en galería
</string>
<string
name=
"Of"
>
de
</string>
<string
name=
"Of"
>
%1$d de %2$d
</string>
<string
name=
"Gallery"
>
Galería
</string>
<string
name=
"Gallery"
>
Galería
</string>
<!--button titles-->
<!--button titles-->
...
...
TMessagesProj/src/main/res/values-it/strings.xml
View file @
d8c2966e
This diff is collapsed.
Click to expand it.
TMessagesProj/src/main/res/values-nl/strings.xml
View file @
d8c2966e
...
@@ -5,6 +5,9 @@
...
@@ -5,6 +5,9 @@
<resources>
<resources>
<string
name=
"AppName"
>
Telegram
</string>
<string
name=
"AppName"
>
Telegram
</string>
<string
name=
"LanguangeName"
>
Dutch
</string>
<string
name=
"LanguangeNameInEnglish"
>
Dutch
</string>
<!--signin view-->
<!--signin view-->
<string
name=
"YourPhone"
>
Uw telefoon
</string>
<string
name=
"YourPhone"
>
Uw telefoon
</string>
<string
name=
"StartText"
>
Bevestig uw landcode\nen voer uw telefoonnummer in.
</string>
<string
name=
"StartText"
>
Bevestig uw landcode\nen voer uw telefoonnummer in.
</string>
...
@@ -107,6 +110,7 @@
...
@@ -107,6 +110,7 @@
<string
name=
"DeleteThisGroup"
>
Deze groep verwijderen
</string>
<string
name=
"DeleteThisGroup"
>
Deze groep verwijderen
</string>
<string
name=
"SlideToCancel"
>
SLEEP OM TE ANNULEREN
</string>
<string
name=
"SlideToCancel"
>
SLEEP OM TE ANNULEREN
</string>
<string
name=
"SaveToDownloads"
>
Opslaan in downloads
</string>
<string
name=
"SaveToDownloads"
>
Opslaan in downloads
</string>
<string
name=
"ApplyLocalizationFile"
>
Apply localization file
</string>
<!--notification-->
<!--notification-->
<string
name=
"EncryptedChatRequested"
>
Privégesprek aangevraagd
</string>
<string
name=
"EncryptedChatRequested"
>
Privégesprek aangevraagd
</string>
...
@@ -250,6 +254,7 @@
...
@@ -250,6 +254,7 @@
<string
name=
"Events"
>
GEBEURTENISSEN
</string>
<string
name=
"Events"
>
GEBEURTENISSEN
</string>
<string
name=
"ContactJoined"
>
Contact lid geworden van Telegram
</string>
<string
name=
"ContactJoined"
>
Contact lid geworden van Telegram
</string>
<string
name=
"Pebble"
>
PEBBLE
</string>
<string
name=
"Pebble"
>
PEBBLE
</string>
<string
name=
"Language"
>
Language
</string>
<!--media view-->
<!--media view-->
<string
name=
"NoMedia"
>
Nog geen media gedeeld
</string>
<string
name=
"NoMedia"
>
Nog geen media gedeeld
</string>
...
@@ -268,7 +273,7 @@
...
@@ -268,7 +273,7 @@
<!--photo gallery view-->
<!--photo gallery view-->
<string
name=
"ShowAllMedia"
>
Alle media weergeven
</string>
<string
name=
"ShowAllMedia"
>
Alle media weergeven
</string>
<string
name=
"SaveToGallery"
>
Opslaan in galerij
</string>
<string
name=
"SaveToGallery"
>
Opslaan in galerij
</string>
<string
name=
"Of"
>
van
</string>
<string
name=
"Of"
>
%1$d van %1$d
</string>
<string
name=
"Gallery"
>
Galerij
</string>
<string
name=
"Gallery"
>
Galerij
</string>
<!--button titles-->
<!--button titles-->
...
...
TMessagesProj/src/main/res/values/strings.xml
View file @
d8c2966e
...
@@ -5,6 +5,9 @@
...
@@ -5,6 +5,9 @@
<resources>
<resources>
<string
name=
"AppName"
>
Telegram
</string>
<string
name=
"AppName"
>
Telegram
</string>
<string
name=
"LanguangeName"
>
English
</string>
<string
name=
"LanguangeNameInEnglish"
>
English
</string>
<!--signin view-->
<!--signin view-->
<string
name=
"YourPhone"
>
Your phone
</string>
<string
name=
"YourPhone"
>
Your phone
</string>
<string
name=
"StartText"
>
Please confirm your country code\nand enter your phone number.
</string>
<string
name=
"StartText"
>
Please confirm your country code\nand enter your phone number.
</string>
...
@@ -107,6 +110,7 @@
...
@@ -107,6 +110,7 @@
<string
name=
"DeleteThisGroup"
>
Delete this group
</string>
<string
name=
"DeleteThisGroup"
>
Delete this group
</string>
<string
name=
"SlideToCancel"
>
SLIDE TO CANCEL
</string>
<string
name=
"SlideToCancel"
>
SLIDE TO CANCEL
</string>
<string
name=
"SaveToDownloads"
>
Save to downloads
</string>
<string
name=
"SaveToDownloads"
>
Save to downloads
</string>
<string
name=
"ApplyLocalizationFile"
>
Apply localization file
</string>
<!--notification-->
<!--notification-->
<string
name=
"EncryptedChatRequested"
>
Secret chat requested
</string>
<string
name=
"EncryptedChatRequested"
>
Secret chat requested
</string>
...
@@ -250,6 +254,7 @@
...
@@ -250,6 +254,7 @@
<string
name=
"Events"
>
EVENTS
</string>
<string
name=
"Events"
>
EVENTS
</string>
<string
name=
"ContactJoined"
>
Contact joined Telegram
</string>
<string
name=
"ContactJoined"
>
Contact joined Telegram
</string>
<string
name=
"Pebble"
>
PEBBLE
</string>
<string
name=
"Pebble"
>
PEBBLE
</string>
<string
name=
"Language"
>
Language
</string>
<!--media view-->
<!--media view-->
<string
name=
"NoMedia"
>
No shared media yet
</string>
<string
name=
"NoMedia"
>
No shared media yet
</string>
...
@@ -268,7 +273,7 @@
...
@@ -268,7 +273,7 @@
<!--photo gallery view-->
<!--photo gallery view-->
<string
name=
"ShowAllMedia"
>
Show all media
</string>
<string
name=
"ShowAllMedia"
>
Show all media
</string>
<string
name=
"SaveToGallery"
>
Save to gallery
</string>
<string
name=
"SaveToGallery"
>
Save to gallery
</string>
<string
name=
"Of"
>
of
</string>
<string
name=
"Of"
>
%1$d of %2$d
</string>
<string
name=
"Gallery"
>
Gallery
</string>
<string
name=
"Gallery"
>
Gallery
</string>
<!--button titles-->
<!--button titles-->
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment