Skip to content

Commit fc059d2

Browse files
authored
Merge pull request #502 from OpenPecha/featured-plan-bug
fix: progress showing when not with partner
2 parents 89354b5 + 0202ace commit fc059d2

14 files changed

Lines changed: 66 additions & 61 deletions

lib/core/l10n/app_bo.arb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -556,7 +556,7 @@
556556
"read_full_text": "ཆ་ཚང་ཀློག",
557557
"reader_source_label": "ཡོང་ཁུངས།",
558558
"reader_license_label": "ཆོག་མཆན།",
559-
"series_stats": "ཐུན་འཆར་ {planCount} · ཉིན་ {totalDays}",
559+
"series_stats": "{planCount} ལེའུ · ཉིན་ {totalDays}",
560560
"force_update_title": "གསར་བསྒྱུར་དགོས་མཁོ།",
561561
"force_update_message": "མཉེན་ཆས་ཀྱི་པར་གཞི་གསར་པ་ཞིག་ཡོད་པས། མུ་མཐུད་སྤྱོད་རོགས་གནང་བར་གསར་བསྒྱུར་མཛད་རོགས།",
562562
"force_update_button": "གསར་བསྒྱུར།",

lib/core/l10n/app_en.arb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -623,7 +623,7 @@
623623
"read_full_text": "Read full text",
624624
"reader_source_label": "Source",
625625
"reader_license_label": "License",
626-
"series_stats": "{planCount} PLANS · {totalDays} DAYS",
626+
"series_stats": "{planCount} CHAPTERS · {totalDays} DAYS",
627627
"@series_stats": {
628628
"placeholders": {
629629
"planCount": {

lib/core/l10n/app_hi.arb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -612,7 +612,7 @@
612612
"read_full_text": "पूरा पाठ पढ़ें",
613613
"reader_source_label": "स्रोत",
614614
"reader_license_label": "लाइसेंस",
615-
"series_stats": "{planCount} योजनाएँ · {totalDays} दिन",
615+
"series_stats": "{planCount} अध्याय · {totalDays} दिन",
616616
"@series_stats": {
617617
"placeholders": {
618618
"planCount": {

lib/core/l10n/app_mn.arb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -612,7 +612,7 @@
612612
"read_full_text": "Бүтэн бичвэрийг унших",
613613
"reader_source_label": "Эх сурвалж",
614614
"reader_license_label": "Лиценз",
615-
"series_stats": "{planCount} ТӨЛӨВЛӨГӨӨ · {totalDays} ӨДӨР",
615+
"series_stats": "{planCount} БҮЛЭГ · {totalDays} ӨДӨР",
616616
"@series_stats": {
617617
"placeholders": {
618618
"planCount": {

lib/core/l10n/app_ne.arb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -612,7 +612,7 @@
612612
"read_full_text": "पूरा पाठ पढ्नुहोस्",
613613
"reader_source_label": "स्रोत",
614614
"reader_license_label": "लाइसेन्स",
615-
"series_stats": "{planCount} योजना · {totalDays} दिन",
615+
"series_stats": "{planCount} अध्याय · {totalDays} दिन",
616616
"@series_stats": {
617617
"placeholders": {
618618
"planCount": {

lib/core/l10n/app_zh.arb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -556,7 +556,7 @@
556556
"read_full_text": "閱讀完整文本",
557557
"reader_source_label": "來源",
558558
"reader_license_label": "授權",
559-
"series_stats": "{planCount} 個修持計畫 · {totalDays} 天",
559+
"series_stats": "{planCount} 個章節 · {totalDays} 天",
560560
"force_update_title": "需要更新",
561561
"force_update_message": "有新版本可用,請更新後繼續使用。",
562562
"force_update_button": "立即更新",

lib/core/l10n/generated/app_localizations.dart

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2425,7 +2425,7 @@ abstract class AppLocalizations {
24252425
/// No description provided for @series_stats.
24262426
///
24272427
/// In en, this message translates to:
2428-
/// **'{planCount} PLANS · {totalDays} DAYS'**
2428+
/// **'{planCount} CHAPTERS · {totalDays} DAYS'**
24292429
String series_stats(int planCount, int totalDays);
24302430

24312431
/// No description provided for @force_update_title.

lib/core/l10n/generated/app_localizations_bo.dart

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1336,7 +1336,7 @@ class AppLocalizationsBo extends AppLocalizations {
13361336

13371337
@override
13381338
String series_stats(int planCount, int totalDays) {
1339-
return 'ཐུན་འཆར་ $planCount · ཉིན་ $totalDays';
1339+
return '$planCount ལེའུ · ཉིན་ $totalDays';
13401340
}
13411341

13421342
@override

lib/core/l10n/generated/app_localizations_en.dart

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1316,7 +1316,7 @@ class AppLocalizationsEn extends AppLocalizations {
13161316

13171317
@override
13181318
String series_stats(int planCount, int totalDays) {
1319-
return '$planCount PLANS · $totalDays DAYS';
1319+
return '$planCount CHAPTERS · $totalDays DAYS';
13201320
}
13211321

13221322
@override

lib/core/l10n/generated/app_localizations_hi.dart

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1326,7 +1326,7 @@ class AppLocalizationsHi extends AppLocalizations {
13261326

13271327
@override
13281328
String series_stats(int planCount, int totalDays) {
1329-
return '$planCount योजनाएँ · $totalDays दिन';
1329+
return '$planCount अध्याय · $totalDays दिन';
13301330
}
13311331

13321332
@override

0 commit comments

Comments
 (0)