Skip to content

Commit

Permalink
russian strings, version bump and new release
Browse files Browse the repository at this point in the history
  • Loading branch information
thermatk committed May 16, 2017
1 parent 4e37567 commit 5355964
Show file tree
Hide file tree
Showing 5 changed files with 1,534 additions and 3 deletions.
6 changes: 6 additions & 0 deletions Changelog.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,12 @@
### v3.18.0b
- **Telegram FOSS:**
- Add OpenStreetMap attribution (#151)
- Include Russian and Czech translation xmls

### v3.18.0a
- **Telegram FOSS:**
- Fix location sharing on SDK < 23

### v3.18.0

- Telegram Calls are here: secure, crystal-clear, constantly improved by artificial intelligence. We are rolling them out in Europe today, the rest of the world will get calls within a few days.
Expand Down
4 changes: 2 additions & 2 deletions TMessagesProj/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,7 @@ android {
}
}

defaultConfig.versionCode = 958
defaultConfig.versionCode = 959

sourceSets.debug {
manifest.srcFile 'config/debug/AndroidManifest.xml'
Expand Down Expand Up @@ -137,7 +137,7 @@ android {
defaultConfig {
minSdkVersion 14
targetSdkVersion 25
versionName "3.18.0a"
versionName "3.18.0b"

externalNativeBuild {
ndkBuild {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -228,6 +228,14 @@ public LocaleController() {
sortedLanguages.add(localeInfo);
languagesDict.put(localeInfo.shortName, localeInfo);

localeInfo = new LocaleInfo();
localeInfo.name = "Русский";
localeInfo.nameEnglish = "Russian";
localeInfo.shortName = "ru";
localeInfo.pathToFile = null;
sortedLanguages.add(localeInfo);
languagesDict.put(localeInfo.shortName, localeInfo);

loadOtherLanguages();

for (LocaleInfo locale : otherLanguages) {
Expand Down
Loading

0 comments on commit 5355964

Please sign in to comment.