-
Notifications
You must be signed in to change notification settings - Fork 356
feat(l10n): Add complete Bengali (bn) translation support #630
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
Changes from 5 commits
b063ecb
2647373
dd0a526
2247123
9d51ceb
ae47607
b5b2d1a
a4ab527
a49d0f3
5020e56
7bc816c
f2be019
0ee9fc8
173227c
50c8e05
b18f6c5
31894b1
a1f3b83
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -47,10 +47,23 @@ println("PROJECT_ID: $projectId") | |
| buildTypes { | ||
| signingConfigs { | ||
| create("release") { | ||
| keyAlias = keystoreProperties["keyAlias"] as String | ||
| keyPassword = keystoreProperties["keyPassword"] as String | ||
| storeFile = keystoreProperties["storeFile"]?.let { file(it) } | ||
| storePassword = keystoreProperties["storePassword"] as String | ||
| val keyAliasProp = keystoreProperties.getProperty("keyAlias") | ||
| val keyPasswordProp = keystoreProperties.getProperty("keyPassword") | ||
| val storeFileProp = keystoreProperties.getProperty("storeFile") | ||
| val storePasswordProp = keystoreProperties.getProperty("storePassword") | ||
|
|
||
| if (!keyAliasProp.isNullOrBlank()) { | ||
| keyAlias = keyAliasProp | ||
| } | ||
| if (!keyPasswordProp.isNullOrBlank()) { | ||
| keyPassword = keyPasswordProp | ||
| } | ||
| if (!storeFileProp.isNullOrBlank()) { | ||
| storeFile = file(storeFileProp) | ||
| } | ||
| if (!storePasswordProp.isNullOrBlank()) { | ||
| storePassword = storePasswordProp | ||
|
||
| } | ||
| } | ||
| } | ||
| release { | ||
|
|
||
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -60,7 +60,7 @@ | |
| <action android:name="android.intent.action.VIEW" /> | ||
| <category android:name="android.intent.category.DEFAULT" /> | ||
| <category android:name="android.intent.category.BROWSABLE" /> | ||
| <data android:scheme="appwrite-callback-${PROJECT_ID}" /> | ||
| <data android:scheme="appwrite-callback-resonate" /> | ||
|
||
| </intent-filter> | ||
| </activity> | ||
|
|
||
|
|
||
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -118,7 +118,7 @@ class LiveChapterController extends GetxController { | |
| 'payload': { | ||
| 'title': 'Live Chapter Starting!', | ||
| 'body': | ||
| "${authStateController.displayName} is starting a Live Chapter in ${storyName}: ${liveChapterData.chapterTitle}. Tune In!", | ||
| "${authStateController.displayName} is starting a Live Chapter in $storyName: ${liveChapterData.chapterTitle}. Tune In!", | ||
|
||
| }, | ||
| }); | ||
| var results = await functions.createExecution( | ||
|
|
||
Uh oh!
There was an error while loading. Please reload this page.