Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Enable Lithuanian translation #404

Merged
merged 2 commits into from
Jan 17, 2025
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
18 changes: 17 additions & 1 deletion app/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,23 @@ android {
}

//Configure supported languages here to avoid including incomplete translations in the releases
resourceConfigurations += ['en', 'cs', 'fi', 'fr-rFR', 'de-rDE', 'hu', 'it', 'nb-rNO', 'nl', 'pt', 'pt-rBR', 'ru', 'uk', 'zh-rCN']
resourceConfigurations += [
'en',
'cs',
'de-rDE',
'fi',
'fr-rFR',
'hu',
'it',
'lt',
'nb-rNO',
'nl',
'pt',
'pt-rBR',
'ru',
'uk',
'zh-rCN'
]

//Add supported locales to a build config field for the language picker UI
buildConfigField("String", "SUPPORTED_LOCALES", "\"" + resourceConfigurations.join(",") + "\"")
Expand Down
1 change: 0 additions & 1 deletion app/src/main/res/values-lt/strings.xml
Original file line number Diff line number Diff line change
Expand Up @@ -73,7 +73,6 @@
<string name="suggested_service_hosted_by">Valdytojas:</string>
<string name="suggested_service_website">Svetainė</string>
<string name="suggested_service_terms_of_use">Naudojimosi sąlygos</string>
<string name="settings_ignore_wifi_scan_throttling">Nepaisyti „Wi-Fi“ skenavimo ribojimų</string>
<string name="wifi_scan_throttling">Belaidžių tinklų skenavimo ribojimai</string>
<string name="wifi_scan_throttling_explanation">Kad galėtumėte įjungti šią funkciją, turite įrenginio nustatymuose išjungti „Wi-Fi“ skenavimo slopinimą. Paprastai tai galima atlikti kūrėjų parinktyse</string>
<string name="settings_group_reports">Ataskaitos</string>
Expand Down
Loading