mirror of
				https://github.com/mihonapp/mihon.git
				synced 2025-10-29 21:37:56 +01:00 
			
		
		
		
	
							
								
								
									
										3
									
								
								i18n/.gitignore
									
									
									
									
										vendored
									
									
								
							
							
						
						
									
										3
									
								
								i18n/.gitignore
									
									
									
									
										vendored
									
									
								
							| @@ -1,5 +1,2 @@ | ||||
| # Hebrew assets are copied on build | ||||
| /src/main/res/values-iw/ | ||||
|  | ||||
| # Generated | ||||
| locales_config.xml | ||||
| @@ -1,27 +1,45 @@ | ||||
| plugins { | ||||
|     kotlin("multiplatform") | ||||
|     id("com.android.library") | ||||
|     kotlin("android") | ||||
|     id("dev.icerock.mobile.multiplatform-resources") | ||||
| } | ||||
|  | ||||
| kotlin { | ||||
|     androidTarget() | ||||
|     sourceSets { | ||||
|         val commonMain by getting { | ||||
|             dependencies { | ||||
|                 api(libs.moko.core) | ||||
|             } | ||||
|         } | ||||
|         val androidMain by getting { | ||||
|             dependsOn(commonMain) // https://github.com/icerockdev/moko-resources/issues/562 | ||||
|         } | ||||
|     } | ||||
| } | ||||
|  | ||||
| android { | ||||
|     namespace = "tachiyomi.i18n" | ||||
|  | ||||
|     sourceSets { | ||||
|         named("main") { | ||||
|             res.srcDir("src/commonMain/resources") | ||||
|         } | ||||
|     } | ||||
|  | ||||
|     lint { | ||||
|         disable.addAll(listOf("MissingTranslation", "ExtraTranslation")) | ||||
|     } | ||||
| } | ||||
|  | ||||
| multiplatformResources { | ||||
|     multiplatformResourcesPackage = "tachiyomi.i18n" | ||||
| } | ||||
|  | ||||
| tasks { | ||||
|     val localesConfigTask = registerLocalesConfigTask(project) | ||||
|  | ||||
|     // Duplicating Hebrew string assets due to some locale code issues on different devices | ||||
|     val copyHebrewStrings by registering(Copy::class) { | ||||
|         from("./src/main/res/values-he") | ||||
|         into("./src/main/res/values-iw") | ||||
|         include("**/*") | ||||
|     } | ||||
|  | ||||
|     preBuild { | ||||
|         dependsOn(copyHebrewStrings, localesConfigTask) | ||||
|         dependsOn(localesConfigTask) | ||||
|     } | ||||
| } | ||||
|   | ||||
							
								
								
									
										15
									
								
								i18n/src/commonMain/resources/MR/am/plurals.xml
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										15
									
								
								i18n/src/commonMain/resources/MR/am/plurals.xml
									
									
									
									
									
										Normal file
									
								
							| @@ -0,0 +1,15 @@ | ||||
| <?xml version="1.0" encoding="utf-8"?> | ||||
| <resources> | ||||
|     <plurals name="num_categories"> | ||||
|         <item quantity="one">%d ምድብ</item> | ||||
|         <item quantity="other">%d ምድቦች</item> | ||||
|     </plurals> | ||||
|     <plurals name="lock_after_mins"> | ||||
|         <item quantity="one">ከ 1 ደቂቃ በኋላ</item> | ||||
|         <item quantity="other">ከ %1$s ደቂቃዎች በኋላ</item> | ||||
|     </plurals> | ||||
|     <plurals name="restore_completed_message"> | ||||
|         <item quantity="one">ከ %2$s ስህተት ጋር በ %1$s ውስጥ ተከናውኗል</item> | ||||
|         <item quantity="other">ከ %2$s ስህተት ጋር በ %1$s ውስጥ ተከናውኗል</item> | ||||
|     </plurals> | ||||
| </resources> | ||||
| @@ -21,10 +21,6 @@ | ||||
|     <string name="ext_update">አዘምን</string> | ||||
|     <string name="ext_updates_pending">ዝመናዎች በመጠባበቅ ላይ ናቸው</string> | ||||
|     <string name="all">ሁሉም</string> | ||||
|     <plurals name="num_categories"> | ||||
|         <item quantity="one">%d ምድብ</item> | ||||
|         <item quantity="other">%d ምድቦች</item> | ||||
|     </plurals> | ||||
|     <string name="default_category_summary">ሁል ጊዜም ይጠይቁ</string> | ||||
|     <string name="default_category">ነባሪ ምድብ</string> | ||||
|     <string name="pref_library_update_refresh_metadata_summary">ቤተ-መጽሐፍትን ሲያዘምኑ አዲስ ሽፋን እና ዝርዝሮችን ይፈልጉ</string> | ||||
| @@ -48,10 +44,6 @@ | ||||
|     <string name="hide_notification_content">የማሳወቂያ ይዘትን ደብቅ</string> | ||||
|     <string name="secure_screen_summary">መተግበሪያዎችን ሲቀይሩ የመተግበሪያ ይዘቶችን ደብቅ እና ቅጽበታዊ ገጽ እይታዎችን ያግዳል</string> | ||||
|     <string name="secure_screen">ደህንነቱ የተጠበቀ ማያ ገጽ</string> | ||||
|     <plurals name="lock_after_mins"> | ||||
|         <item quantity="one">ከ 1 ደቂቃ በኋላ</item> | ||||
|         <item quantity="other">ከ %1$s ደቂቃዎች በኋላ</item> | ||||
|     </plurals> | ||||
|     <string name="lock_never">በጭራሽ</string> | ||||
|     <string name="lock_always">ሁል ጊዜ</string> | ||||
|     <string name="lock_when_idle">ስራ ሲፈታ ቆልፍ</string> | ||||
| @@ -287,10 +279,6 @@ | ||||
|     <string name="creating_backup">ምትኬን መፍጠር</string> | ||||
|     <string name="backup_choice">ምትኬ ለማስቀመጥ ምን ይፈልጋሉ\?</string> | ||||
|     <string name="backup_in_progress">ምትኬ ቀድሞውኑ በሂደት ላይ ነው</string> | ||||
|     <plurals name="restore_completed_message"> | ||||
|         <item quantity="one">ከ %2$s ስህተት ጋር በ %1$s ውስጥ ተከናውኗል</item> | ||||
|         <item quantity="other">ከ %2$s ስህተት ጋር በ %1$s ውስጥ ተከናውኗል</item> | ||||
|     </plurals> | ||||
|     <string name="restore_duration">%02d ደቂቃ ፣ %02d ሰከንድ</string> | ||||
|     <string name="restore_completed">እነበረበት መልስ ተጠናቅቋል</string> | ||||
|     <string name="backup_restore_missing_trackers">መከታተያዎች አልገቡም:</string> | ||||
							
								
								
									
										131
									
								
								i18n/src/commonMain/resources/MR/ar/plurals.xml
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										131
									
								
								i18n/src/commonMain/resources/MR/ar/plurals.xml
									
									
									
									
									
										Normal file
									
								
							| @@ -0,0 +1,131 @@ | ||||
| <?xml version="1.0" encoding="utf-8"?> | ||||
| <resources> | ||||
|     <plurals name="update_check_notification_ext_updates"> | ||||
|         <item quantity="zero">لايوجد تحديث للإضافة</item> | ||||
|         <item quantity="one">يتوفر تحديث لإضافة</item> | ||||
|         <item quantity="two">يتوفر تحديث لإضافتان</item> | ||||
|         <item quantity="few">يتوفر تحديث %d إضافات</item> | ||||
|         <item quantity="many">يتوفر تحديث %d إضافات</item> | ||||
|         <item quantity="other">يتوفر تحديث %d إضافات</item> | ||||
|     </plurals> | ||||
|     <plurals name="notification_chapters_multiple_and_more"> | ||||
|         <item quantity="zero">الفصول %1$s</item> | ||||
|         <item quantity="one">الفصول %1$s وفصل آخر</item> | ||||
|         <item quantity="two">الفصول %1$s و%2$d فصول أخرى</item> | ||||
|         <item quantity="few">الفصول %1$s و%2$d فصول أخرى</item> | ||||
|         <item quantity="many">الفصول %1$s و%2$d فصول أخرى</item> | ||||
|         <item quantity="other">الفصول %1$s و%2$d فصول أخرى</item> | ||||
|     </plurals> | ||||
|     <plurals name="notification_chapters_generic"> | ||||
|         <item quantity="zero">لا توجد فصول جديدة</item> | ||||
|         <item quantity="one">فصل جديد</item> | ||||
|         <item quantity="two">فصلان جديدان</item> | ||||
|         <item quantity="few">%1$d فصول جديدة</item> | ||||
|         <item quantity="many">%1$d فصول جديدة</item> | ||||
|         <item quantity="other">%1$d فصول جديدة</item> | ||||
|     </plurals> | ||||
|     <plurals name="notification_new_chapters_summary"> | ||||
|         <item quantity="zero">لا شيء</item> | ||||
|         <item quantity="one">إدخال واحد</item> | ||||
|         <item quantity="two">إدخالين</item> | ||||
|         <item quantity="few">ادخالات %d ل</item> | ||||
|         <item quantity="many">ادخالات %d ل</item> | ||||
|         <item quantity="other">ادخالات %d ل</item> | ||||
|     </plurals> | ||||
|     <plurals name="download_queue_summary"> | ||||
|         <item quantity="zero">%1$s عنصر متبقي</item> | ||||
|         <item quantity="one">عنصر واحد متبقي</item> | ||||
|         <item quantity="two">عنصران متبقيان</item> | ||||
|         <item quantity="few">%1$s عناصر متبقية</item> | ||||
|         <item quantity="many">%1$s عناصر متبقية</item> | ||||
|         <item quantity="other">%1$s عناصر متبقية</item> | ||||
|     </plurals> | ||||
|     <plurals name="lock_after_mins"> | ||||
|         <item quantity="zero">بعد أقل من دقيقة</item> | ||||
|         <item quantity="one">بعد دقيقة</item> | ||||
|         <item quantity="two">بعد دقيقتين</item> | ||||
|         <item quantity="few">بعد %1$s دقائق</item> | ||||
|         <item quantity="many">بعد %1$s دقائق</item> | ||||
|         <item quantity="other">بعد %1$s دقائق</item> | ||||
|     </plurals> | ||||
|     <plurals name="num_categories"> | ||||
|         <item quantity="zero">لا يوجد فئات</item> | ||||
|         <item quantity="one">فئة</item> | ||||
|         <item quantity="two">فئتان</item> | ||||
|         <item quantity="few">%d فئات</item> | ||||
|         <item quantity="many">%d فئات</item> | ||||
|         <item quantity="other">%d فئات</item> | ||||
|     </plurals> | ||||
|     <plurals name="restore_completed_message"> | ||||
|         <item quantity="zero">تمَّ في %1$s وبدون أخطاء</item> | ||||
|         <item quantity="one">تمَّ في %1$s وفيه خطأ</item> | ||||
|         <item quantity="two">تمَّ في %1$s وفيه خطآن</item> | ||||
|         <item quantity="few">تمَّ في %1$s وفيه %2$s أخطاء</item> | ||||
|         <item quantity="many">تمَّ في %1$s وفيه %2$s خطأً</item> | ||||
|         <item quantity="other">تمَّ في %1$s وفيه %2$s خطأ</item> | ||||
|     </plurals> | ||||
|     <plurals name="num_trackers"> | ||||
|         <item quantity="zero">لا متتبّع</item> | ||||
|         <item quantity="one">متتبّع واحد</item> | ||||
|         <item quantity="two">متتبعان</item> | ||||
|         <item quantity="few">بضعة متتبّعين (%d)</item> | ||||
|         <item quantity="many">عدّة متتبّعين (%d)</item> | ||||
|         <item quantity="other">%d متتبّعاً</item> | ||||
|     </plurals> | ||||
|     <plurals name="manga_num_chapters"> | ||||
|         <item quantity="zero">لا فصول</item> | ||||
|         <item quantity="one">فصل واحد</item> | ||||
|         <item quantity="two">فصلين</item> | ||||
|         <item quantity="few">%1$s فصول</item> | ||||
|         <item quantity="many">%1$s فصول</item> | ||||
|         <item quantity="other">%1$s فصول</item> | ||||
|     </plurals> | ||||
|     <plurals name="missing_chapters_warning"> | ||||
|         <item quantity="zero">لا يُتخطَّى أيُّ فصل</item> | ||||
|         <item quantity="one">يُتخطَّى فصل، وذلك إما لأن المصدر مفقود أو لأنه مصفًّى</item> | ||||
|         <item quantity="two">يُتخطَّى فصلان، وذلك إما لأن المصدر مفقود أو لأنهما مصفَّان</item> | ||||
|         <item quantity="few">تُتخطَّى %d فصول، وذلك إما لأن المصدر مفقود أو لأنهم مصفَّون</item> | ||||
|         <item quantity="many">يُتخطَّى %d فصلًا، وذلك إما لأن المصدر مفقود أو لأنهم مصفَّون</item> | ||||
|         <item quantity="other">يُتخطَّى %d فصل، وذلك إما لأن المصدر مفقود أو لأنهم مصفَّون</item> | ||||
|     </plurals> | ||||
|     <plurals name="relative_time"> | ||||
|         <item quantity="zero">الأمس</item> | ||||
|         <item quantity="one">منذ %1$d أيام</item> | ||||
|         <item quantity="two">منذ %1$d أيام</item> | ||||
|         <item quantity="few">منذ %1$d أيام</item> | ||||
|         <item quantity="many">منذ %1$d أيام</item> | ||||
|         <item quantity="other">منذ %1$d أيام</item> | ||||
|     </plurals> | ||||
|     <plurals name="next_unread_chapters"> | ||||
|         <item quantity="zero">لا يوجد فصل تالٍ لم يُقرأ</item> | ||||
|         <item quantity="one">الفصل غير المقروء التالي</item> | ||||
|         <item quantity="two">الفصلان غير المقروءين التاليان</item> | ||||
|         <item quantity="few">%d فصول تالية لم تُقرأ</item> | ||||
|         <item quantity="many">%d فصلًا تاليًا لم يُقرؤوا</item> | ||||
|         <item quantity="other">%d فصل تالٍ لم يُقرؤوا</item> | ||||
|     </plurals> | ||||
|     <plurals name="download_amount"> | ||||
|         <item quantity="zero">الفصل التالي</item> | ||||
|         <item quantity="one">الفصل التالي</item> | ||||
|         <item quantity="two">%d فصول تالية</item> | ||||
|         <item quantity="few">%d فصول تالية</item> | ||||
|         <item quantity="many">%d فصل تالي</item> | ||||
|         <item quantity="other">%d فصل تالي</item> | ||||
|     </plurals> | ||||
|     <plurals name="missing_chapters"> | ||||
|         <item quantity="zero">لا يوجد أيُّ فصل مفقود</item> | ||||
|         <item quantity="one">فصل واحد مفقود</item> | ||||
|         <item quantity="two">فصلان مفقودان</item> | ||||
|         <item quantity="few">%1$s فصول مفقودة</item> | ||||
|         <item quantity="many">%1$s فصلًا مفقودًا</item> | ||||
|         <item quantity="other">%1$s فصل مفقود</item> | ||||
|     </plurals> | ||||
|     <plurals name="day"> | ||||
|         <item quantity="zero">لا يوم</item> | ||||
|         <item quantity="one">يوم واحد</item> | ||||
|         <item quantity="two">يومان</item> | ||||
|         <item quantity="few">%d أيام</item> | ||||
|         <item quantity="many">%d يومًا</item> | ||||
|         <item quantity="other">%d يوم</item> | ||||
|     </plurals> | ||||
| </resources> | ||||
| @@ -347,41 +347,9 @@ | ||||
|     <string name="information_webview_outdated">يرجى تحديث تطبيق WebView لتوافق أفضل</string> | ||||
|     <string name="information_webview_required">إن وجود WebView لازم ليعمل التطبيق</string> | ||||
|     <string name="information_cloudflare_bypass_failure">فشل في تجاوز Cloudflare</string> | ||||
|     <plurals name="update_check_notification_ext_updates"> | ||||
|         <item quantity="zero">لايوجد تحديث للإضافة</item> | ||||
|         <item quantity="one">يتوفر تحديث لإضافة</item> | ||||
|         <item quantity="two">يتوفر تحديث لإضافتان</item> | ||||
|         <item quantity="few">يتوفر تحديث %d إضافات</item> | ||||
|         <item quantity="many">يتوفر تحديث %d إضافات</item> | ||||
|         <item quantity="other">يتوفر تحديث %d إضافات</item> | ||||
|     </plurals> | ||||
|     <plurals name="notification_chapters_multiple_and_more"> | ||||
|         <item quantity="zero">الفصول %1$s</item> | ||||
|         <item quantity="one">الفصول %1$s وفصل آخر</item> | ||||
|         <item quantity="two">الفصول %1$s و%2$d فصول أخرى</item> | ||||
|         <item quantity="few">الفصول %1$s و%2$d فصول أخرى</item> | ||||
|         <item quantity="many">الفصول %1$s و%2$d فصول أخرى</item> | ||||
|         <item quantity="other">الفصول %1$s و%2$d فصول أخرى</item> | ||||
|     </plurals> | ||||
|     <string name="notification_chapters_multiple">الفصول %1$s</string> | ||||
|     <string name="notification_chapters_single_and_more">الفصل %1$s و%2$d فصول أخرى</string> | ||||
|     <string name="notification_chapters_single">الفصل %1$s</string> | ||||
|     <plurals name="notification_chapters_generic"> | ||||
|         <item quantity="zero">لا توجد فصول جديدة</item> | ||||
|         <item quantity="one">فصل جديد</item> | ||||
|         <item quantity="two">فصلان جديدان</item> | ||||
|         <item quantity="few">%1$d فصول جديدة</item> | ||||
|         <item quantity="many">%1$d فصول جديدة</item> | ||||
|         <item quantity="other">%1$d فصول جديدة</item> | ||||
|     </plurals> | ||||
|     <plurals name="notification_new_chapters_summary"> | ||||
|         <item quantity="zero">لا شيء</item> | ||||
|         <item quantity="one">إدخال واحد</item> | ||||
|         <item quantity="two">إدخالين</item> | ||||
|         <item quantity="few">ادخالات %d ل</item> | ||||
|         <item quantity="many">ادخالات %d ل</item> | ||||
|         <item quantity="other">ادخالات %d ل</item> | ||||
|     </plurals> | ||||
|     <string name="notification_check_updates">جارٍ التحقق من وجود فصول جديدة</string> | ||||
|     <string name="recent_manga_time">الفصل %1$s - %2$s</string> | ||||
|     <string name="updating_library">تُحدَّث المكتبة</string> | ||||
| @@ -400,35 +368,11 @@ | ||||
|     <string name="logout">تسجيل الخروج</string> | ||||
|     <string name="logout_title">تسجيل الخروج من %1$s؟</string> | ||||
|     <string name="email">البريد الإلكتروني</string> | ||||
|     <plurals name="download_queue_summary"> | ||||
|         <item quantity="zero">%1$s عنصر متبقي</item> | ||||
|         <item quantity="one">عنصر واحد متبقي</item> | ||||
|         <item quantity="two">عنصران متبقيان</item> | ||||
|         <item quantity="few">%1$s عناصر متبقية</item> | ||||
|         <item quantity="many">%1$s عناصر متبقية</item> | ||||
|         <item quantity="other">%1$s عناصر متبقية</item> | ||||
|     </plurals> | ||||
|     <string name="downloaded_only_summary">تصفية جميع الإدخالات في مكتبتك</string> | ||||
|     <string name="pref_webtoon_side_padding">الإزاحة الجانبية</string> | ||||
|     <string name="vertical_plus_viewer">شريط طويل بين أجزائه فجوات</string> | ||||
|     <string name="gray_background">رمادي</string> | ||||
|     <string name="pref_true_color_summary">يزيد من سلاسة تدرج الالوان بالصور، ولكن قد يؤثر على الأداء</string> | ||||
|     <plurals name="lock_after_mins"> | ||||
|         <item quantity="zero">بعد أقل من دقيقة</item> | ||||
|         <item quantity="one">بعد دقيقة</item> | ||||
|         <item quantity="two">بعد دقيقتين</item> | ||||
|         <item quantity="few">بعد %1$s دقائق</item> | ||||
|         <item quantity="many">بعد %1$s دقائق</item> | ||||
|         <item quantity="other">بعد %1$s دقائق</item> | ||||
|     </plurals> | ||||
|     <plurals name="num_categories"> | ||||
|         <item quantity="zero">لا يوجد فئات</item> | ||||
|         <item quantity="one">فئة</item> | ||||
|         <item quantity="two">فئتان</item> | ||||
|         <item quantity="few">%d فئات</item> | ||||
|         <item quantity="many">%d فئات</item> | ||||
|         <item quantity="other">%d فئات</item> | ||||
|     </plurals> | ||||
|     <string name="battery_optimization_setting_activity_not_found">تعذر فتح إعدادات الجهاز</string> | ||||
|     <string name="action_migrate">نقل</string> | ||||
|     <string name="label_data">البيانات</string> | ||||
| @@ -440,14 +384,6 @@ | ||||
|     <string name="ext_unofficial">غير رسمي</string> | ||||
|     <string name="pref_library_update_refresh_metadata_summary">تحقق من وجود غلاف جديد وتفاصيل جديدة عند تحديث المكتبة</string> | ||||
|     <string name="pref_library_update_refresh_metadata">تحديث البيانات الوصفية تلقائياً</string> | ||||
|     <plurals name="restore_completed_message"> | ||||
|         <item quantity="zero">تمَّ في %1$s وبدون أخطاء</item> | ||||
|         <item quantity="one">تمَّ في %1$s وفيه خطأ</item> | ||||
|         <item quantity="two">تمَّ في %1$s وفيه خطآن</item> | ||||
|         <item quantity="few">تمَّ في %1$s وفيه %2$s أخطاء</item> | ||||
|         <item quantity="many">تمَّ في %1$s وفيه %2$s خطأً</item> | ||||
|         <item quantity="other">تمَّ في %1$s وفيه %2$s خطأ</item> | ||||
|     </plurals> | ||||
|     <string name="sort_by_upload_date">حسب تاريخ الرفع</string> | ||||
|     <string name="pref_refresh_library_covers">حدّث صور اغلفة المكتبة</string> | ||||
|     <string name="action_display_comfortable_grid">شبكة مريحة</string> | ||||
| @@ -482,35 +418,11 @@ | ||||
|     <string name="channel_progress">التقدّم</string> | ||||
|     <string name="download_insufficient_space">تعذّر تنزيل الفصول بسبب انخفاض مساحة التخزين</string> | ||||
|     <string name="loader_not_implemented_error">لم يتم العثور على المصدر</string> | ||||
|     <plurals name="num_trackers"> | ||||
|         <item quantity="zero">لا متتبّع</item> | ||||
|         <item quantity="one">متتبّع واحد</item> | ||||
|         <item quantity="two">متتبعان</item> | ||||
|         <item quantity="few">بضعة متتبّعين (%d)</item> | ||||
|         <item quantity="many">عدّة متتبّعين (%d)</item> | ||||
|         <item quantity="other">%d متتبّعاً</item> | ||||
|     </plurals> | ||||
|     <plurals name="manga_num_chapters"> | ||||
|         <item quantity="zero">لا فصول</item> | ||||
|         <item quantity="one">فصل واحد</item> | ||||
|         <item quantity="two">فصلين</item> | ||||
|         <item quantity="few">%1$s فصول</item> | ||||
|         <item quantity="many">%1$s فصول</item> | ||||
|         <item quantity="other">%1$s فصول</item> | ||||
|     </plurals> | ||||
|     <string name="unknown_status">حالة غير معروفة</string> | ||||
|     <string name="unknown_author">مؤلّف غير معروف</string> | ||||
|     <string name="no_pinned_sources">لا تمتلك أيّة مصادر مثبّتة</string> | ||||
|     <string name="action_global_search_query">إبحث عن \"%1$s\" بشكلٍ شامل</string> | ||||
|     <string name="updated_version">حُدِّث إلى الإصدار v%1$s</string> | ||||
|     <plurals name="missing_chapters_warning"> | ||||
|         <item quantity="zero">لا يُتخطَّى أيُّ فصل</item> | ||||
|         <item quantity="one">يُتخطَّى فصل، وذلك إما لأن المصدر مفقود أو لأنه مصفًّى</item> | ||||
|         <item quantity="two">يُتخطَّى فصلان، وذلك إما لأن المصدر مفقود أو لأنهما مصفَّان</item> | ||||
|         <item quantity="few">تُتخطَّى %d فصول، وذلك إما لأن المصدر مفقود أو لأنهم مصفَّون</item> | ||||
|         <item quantity="many">يُتخطَّى %d فصلًا، وذلك إما لأن المصدر مفقود أو لأنهم مصفَّون</item> | ||||
|         <item quantity="other">يُتخطَّى %d فصل، وذلك إما لأن المصدر مفقود أو لأنهم مصفَّون</item> | ||||
|     </plurals> | ||||
|     <string name="no_chapters_error">لم يُعثر على فصول</string> | ||||
|     <string name="share_page_info">%1$s: %2$s, صفحة %3$d</string> | ||||
|     <string name="chapter_settings_updated">إعدادات الفصل الإفتراضية المُحدثة</string> | ||||
| @@ -622,14 +534,6 @@ | ||||
|     <string name="confirm_lock_change">المصادقة لتأكيد التغيير</string> | ||||
|     <string name="label_default">الافتراضي</string> | ||||
|     <string name="label_background_activity">الأنشطة التي تعمل في الخلفية</string> | ||||
|     <plurals name="relative_time"> | ||||
|         <item quantity="zero">الأمس</item> | ||||
|         <item quantity="one">منذ %1$d أيام</item> | ||||
|         <item quantity="two">منذ %1$d أيام</item> | ||||
|         <item quantity="few">منذ %1$d أيام</item> | ||||
|         <item quantity="many">منذ %1$d أيام</item> | ||||
|         <item quantity="other">منذ %1$d أيام</item> | ||||
|     </plurals> | ||||
|     <string name="action_track">تتبع</string> | ||||
|     <string name="pref_inverted_colors">معكوس</string> | ||||
|     <string name="theme_tealturquoise">ازرق مخضر و فيروز</string> | ||||
| @@ -738,14 +642,6 @@ | ||||
|     <string name="error_user_agent_string_blank">سلسلة وكيل المستخدم لا يمكن أن تكون فارغة</string> | ||||
|     <string name="popular">شائع</string> | ||||
|     <string name="remove_manga">أنت على وشك أن تحذف \"%s\" من مكتبتك</string> | ||||
|     <plurals name="next_unread_chapters"> | ||||
|         <item quantity="zero">لا يوجد فصل تالٍ لم يُقرأ</item> | ||||
|         <item quantity="one">الفصل غير المقروء التالي</item> | ||||
|         <item quantity="two">الفصلان غير المقروءين التاليان</item> | ||||
|         <item quantity="few">%d فصول تالية لم تُقرأ</item> | ||||
|         <item quantity="many">%d فصلًا تاليًا لم يُقرؤوا</item> | ||||
|         <item quantity="other">%d فصل تالٍ لم يُقرؤوا</item> | ||||
|     </plurals> | ||||
|     <string name="missing_storage_permission">لم يتم منح أذن التخزين</string> | ||||
|     <string name="action_search_hint">بحث…</string> | ||||
|     <string name="skipped_reason_not_always_update">تُخُطِّيت لأن السلسلة لا تتطلب تحديثات</string> | ||||
| @@ -808,26 +704,10 @@ | ||||
|     <string name="track_error">%1$s خطأ: %2$s</string> | ||||
|     <string name="information_required_plain">*مطلوب</string> | ||||
|     <string name="action_copy_to_clipboard">نسخ إلى الحافظة</string> | ||||
|     <plurals name="download_amount"> | ||||
|         <item quantity="zero">الفصل التالي</item> | ||||
|         <item quantity="one">الفصل التالي</item> | ||||
|         <item quantity="two">%d فصول تالية</item> | ||||
|         <item quantity="few">%d فصول تالية</item> | ||||
|         <item quantity="many">%d فصل تالي</item> | ||||
|         <item quantity="other">%d فصل تالي</item> | ||||
|     </plurals> | ||||
|     <string name="pref_hide_in_library_items">إخفاء الإدخالات الموجودة بالفعل في المكتبة</string> | ||||
|     <string name="action_update_category">تحديث الفئة</string> | ||||
|     <string name="split_tall_images">افصل الصور الطويلة</string> | ||||
|     <string name="overlay_header">التراكب</string> | ||||
|     <plurals name="missing_chapters"> | ||||
|         <item quantity="zero">لا يوجد أيُّ فصل مفقود</item> | ||||
|         <item quantity="one">فصل واحد مفقود</item> | ||||
|         <item quantity="two">فصلان مفقودان</item> | ||||
|         <item quantity="few">%1$s فصول مفقودة</item> | ||||
|         <item quantity="many">%1$s فصلًا مفقودًا</item> | ||||
|         <item quantity="other">%1$s فصل مفقود</item> | ||||
|     </plurals> | ||||
|     <string name="pref_page_rotate">دوِّر الصفحات العريضة لتلائم الشاشة</string> | ||||
|     <string name="pref_page_rotate_invert">اعكس اتِّجاه الصفحات العريضة المدوَّرة</string> | ||||
|     <string name="pref_debug_info">معلومات التنقيح</string> | ||||
| @@ -847,14 +727,6 @@ | ||||
|     <string name="manga_modify_calculated_interval_title">خصِّص المدة</string> | ||||
|     <string name="skipped_reason_not_in_release_period">تُخُطِّيت بسبب عدم توقع صدور اليوم</string> | ||||
|     <string name="manga_display_modified_interval_title">عيِّن التحديث كلَّ</string> | ||||
|     <plurals name="day"> | ||||
|         <item quantity="zero">لا يوم</item> | ||||
|         <item quantity="one">يوم واحد</item> | ||||
|         <item quantity="two">يومان</item> | ||||
|         <item quantity="few">%d أيام</item> | ||||
|         <item quantity="many">%d يومًا</item> | ||||
|         <item quantity="other">%d يوم</item> | ||||
|     </plurals> | ||||
|     <string name="intervals_header">المدة</string> | ||||
|     <string name="action_sort_next_updated">التحديث المتوقع القادم</string> | ||||
|     <string name="track_delete_title">أأزيل تتبع %s؟</string> | ||||
							
								
								
									
										83
									
								
								i18n/src/commonMain/resources/MR/base/plurals.xml
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										83
									
								
								i18n/src/commonMain/resources/MR/base/plurals.xml
									
									
									
									
									
										Normal file
									
								
							| @@ -0,0 +1,83 @@ | ||||
| <?xml version="1.0" encoding="utf-8"?> | ||||
| <resources> | ||||
|     <plurals name="lock_after_mins"> | ||||
|         <item quantity="one">After %1$s minute</item> | ||||
|         <item quantity="other">After %1$s minutes</item> | ||||
|     </plurals> | ||||
|  | ||||
|     <plurals name="relative_time"> | ||||
|         <item quantity="one">Yesterday</item> | ||||
|         <item quantity="other">%1$d days ago</item> | ||||
|     </plurals> | ||||
|  | ||||
|     <plurals name="num_categories"> | ||||
|         <item quantity="one">%d category</item> | ||||
|         <item quantity="other">%d categories</item> | ||||
|     </plurals> | ||||
|  | ||||
|     <plurals name="next_unread_chapters"> | ||||
|         <item quantity="one">Next unread chapter</item> | ||||
|         <item quantity="other">Next %d unread chapters</item> | ||||
|     </plurals> | ||||
|  | ||||
|     <plurals name="restore_completed_message"> | ||||
|         <item quantity="one">Done in %1$s with %2$s error</item> | ||||
|         <item quantity="other">Done in %1$s with %2$s errors</item> | ||||
|     </plurals> | ||||
|  | ||||
|     <plurals name="download_queue_summary"> | ||||
|         <item quantity="one">%1$s remaining</item> | ||||
|         <item quantity="other">%1$s remaining</item> | ||||
|     </plurals> | ||||
|  | ||||
|     <plurals name="day"> | ||||
|         <item quantity="one">1 day</item> | ||||
|         <item quantity="other">%d days</item> | ||||
|     </plurals> | ||||
|  | ||||
|     <!-- Manga info --> | ||||
|     <plurals name="missing_chapters"> | ||||
|         <item quantity="one">Missing %1$s chapter</item> | ||||
|         <item quantity="other">Missing %1$s chapters</item> | ||||
|     </plurals> | ||||
|  | ||||
|     <plurals name="manga_num_chapters"> | ||||
|         <item quantity="one">%1$s chapter</item> | ||||
|         <item quantity="other">%1$s chapters</item> | ||||
|     </plurals> | ||||
|  | ||||
|     <plurals name="download_amount"> | ||||
|         <item quantity="one">Next chapter</item> | ||||
|         <item quantity="other">Next %d chapters</item> | ||||
|     </plurals> | ||||
|  | ||||
|     <plurals name="num_trackers"> | ||||
|         <item quantity="one">%d tracker</item> | ||||
|         <item quantity="other">%d trackers</item> | ||||
|     </plurals> | ||||
|  | ||||
|     <plurals name="missing_chapters_warning"> | ||||
|         <item quantity="one">Skipping %d chapter, either the source is missing it or it has been filtered out</item> | ||||
|         <item quantity="other">Skipping %d chapters, either the source is missing them or they have been filtered out</item> | ||||
|     </plurals> | ||||
|  | ||||
|     <plurals name="notification_new_chapters_summary"> | ||||
|         <item quantity="one">For %d entry</item> | ||||
|         <item quantity="other">For %d entries</item> | ||||
|     </plurals> | ||||
|     <plurals name="notification_chapters_generic"> | ||||
|         <item quantity="one">%1$d new chapter</item> | ||||
|         <item quantity="other">%1$d new chapters</item> | ||||
|     </plurals> | ||||
|  | ||||
|     <plurals name="notification_chapters_multiple_and_more"> | ||||
|         <item quantity="one">Chapters %1$s and 1 more</item> | ||||
|         <item quantity="other">Chapters %1$s and %2$d more</item> | ||||
|     </plurals> | ||||
|  | ||||
|     <!--Extension Updates Notifications--> | ||||
|     <plurals name="update_check_notification_ext_updates"> | ||||
|         <item quantity="one">Extension update available</item> | ||||
|         <item quantity="other">%d extension updates available</item> | ||||
|     </plurals> | ||||
| </resources> | ||||
| @@ -5,6 +5,10 @@ | ||||
|     <!-- Generic strings --> | ||||
|     <string name="on">On</string> | ||||
|     <string name="off">Off</string> | ||||
|     <string name="selected">Selected</string> | ||||
|     <string name="not_selected">Not selected</string> | ||||
|     <string name="action_menu_overflow_description">More options</string> | ||||
|     <string name="action_bar_up_description">Navigate up</string> | ||||
| 
 | ||||
|     <!-- Models --> | ||||
|     <string name="name">Name</string> | ||||
| @@ -224,10 +228,6 @@ | ||||
|     <string name="lock_when_idle">Lock when idle</string> | ||||
|     <string name="lock_always">Always</string> | ||||
|     <string name="lock_never">Never</string> | ||||
|     <plurals name="lock_after_mins"> | ||||
|         <item quantity="one">After %1$s minute</item> | ||||
|         <item quantity="other">After %1$s minutes</item> | ||||
|     </plurals> | ||||
|     <string name="hide_notification_content">Hide notification content</string> | ||||
|     <string name="secure_screen">Secure screen</string> | ||||
|     <string name="secure_screen_summary">Secure screen hides app contents when switching apps and block screenshots</string> | ||||
| @@ -237,10 +237,6 @@ | ||||
|     <string name="parental_controls_info">This does not prevent unofficial or potentially incorrectly flagged extensions from surfacing NSFW (18+) content within the app.</string> | ||||
| 
 | ||||
|     <string name="relative_time_today">Today</string> | ||||
|     <plurals name="relative_time"> | ||||
|         <item quantity="one">Yesterday</item> | ||||
|         <item quantity="other">%1$d days ago</item> | ||||
|     </plurals> | ||||
| 
 | ||||
|       <!-- Library section --> | ||||
|     <string name="pref_category_display">Display</string> | ||||
| @@ -280,10 +276,6 @@ | ||||
|     <string name="default_category">Default category</string> | ||||
|     <string name="default_category_summary">Always ask</string> | ||||
|     <string name="categorized_display_settings">Per-category settings for sort</string> | ||||
|     <plurals name="num_categories"> | ||||
|         <item quantity="one">%d category</item> | ||||
|         <item quantity="other">%d categories</item> | ||||
|     </plurals> | ||||
|     <string name="pref_library_update_categories_details">Entries in excluded categories will not be updated even if they are also in included categories.</string> | ||||
|     <string name="all">All</string> | ||||
|     <string name="none">None</string> | ||||
| @@ -459,10 +451,6 @@ | ||||
|     <string name="pref_download_new_categories_details">Entries in excluded categories will not be downloaded even if they are also in included categories.</string> | ||||
|     <string name="download_ahead">Download ahead</string> | ||||
|     <string name="auto_download_while_reading">Auto download while reading</string> | ||||
|     <plurals name="next_unread_chapters"> | ||||
|         <item quantity="one">Next unread chapter</item> | ||||
|         <item quantity="other">Next %d unread chapters</item> | ||||
|     </plurals> | ||||
|     <string name="download_ahead_info">Only works if the current chapter + the next one are already downloaded.</string> | ||||
|     <string name="save_chapter_as_cbz">Save as CBZ archive</string> | ||||
|     <string name="split_tall_images">Split tall images</string> | ||||
| @@ -499,10 +487,6 @@ | ||||
|     <string name="backup_restore_content_full">Data from the backup file will be restored.\n\nYou will need to install any missing extensions and log in to tracking services afterwards to use them.</string> | ||||
|     <string name="restore_completed">Restore completed</string> | ||||
|     <string name="restore_duration">%02d min, %02d sec</string> | ||||
|     <plurals name="restore_completed_message"> | ||||
|         <item quantity="one">Done in %1$s with %2$s error</item> | ||||
|         <item quantity="other">Done in %1$s with %2$s errors</item> | ||||
|     </plurals> | ||||
|     <string name="backup_in_progress">Backup is already in progress</string> | ||||
|     <string name="backup_choice">What do you want to backup?</string> | ||||
|     <string name="app_settings">App settings</string> | ||||
| @@ -623,10 +607,6 @@ | ||||
|     <string name="pref_incognito_mode_summary">Pauses reading history</string> | ||||
|     <string name="notification_incognito_text">Disable incognito mode</string> | ||||
|     <string name="downloaded_only_summary">Filters all entries in your library</string> | ||||
|     <plurals name="download_queue_summary"> | ||||
|         <item quantity="one">%1$s remaining</item> | ||||
|         <item quantity="other">%1$s remaining</item> | ||||
|     </plurals> | ||||
| 
 | ||||
| 
 | ||||
|     <!-- Login dialog --> | ||||
| @@ -671,16 +651,8 @@ | ||||
|     <string name="local_invalid_format">Invalid chapter format</string> | ||||
|     <string name="local_filter_order_by">Order by</string> | ||||
|     <string name="date">Date</string> | ||||
|     <plurals name="day"> | ||||
|         <item quantity="one">1 day</item> | ||||
|         <item quantity="other">%d days</item> | ||||
|     </plurals> | ||||
| 
 | ||||
|     <!-- Manga info --> | ||||
|     <plurals name="missing_chapters"> | ||||
|         <item quantity="one">Missing %1$s chapter</item> | ||||
|         <item quantity="other">Missing %1$s chapters</item> | ||||
|     </plurals> | ||||
|     <string name="ongoing">Ongoing</string> | ||||
|     <string name="unknown">Unknown</string> | ||||
|     <string name="unknown_author">Unknown author</string> | ||||
| @@ -700,10 +672,6 @@ | ||||
|     <string name="manga_removed_library">Removed from library</string> | ||||
|     <string name="manga_info_expand">More</string> | ||||
|     <string name="manga_info_collapse">Less</string> | ||||
|     <plurals name="manga_num_chapters"> | ||||
|         <item quantity="one">%1$s chapter</item> | ||||
|         <item quantity="other">%1$s chapters</item> | ||||
|     </plurals> | ||||
|     <string name="delete_downloads_for_manga">Delete downloaded chapters?</string> | ||||
|     <string name="copied_to_clipboard_plain">Copied to clipboard</string> | ||||
|     <string name="copied_to_clipboard">Copied to clipboard:\n%1$s</string> | ||||
| @@ -726,10 +694,6 @@ | ||||
|     <string name="sort_by_number">By chapter number</string> | ||||
|     <string name="sort_by_upload_date">By upload date</string> | ||||
|     <string name="manga_download">Download</string> | ||||
|     <plurals name="download_amount"> | ||||
|         <item quantity="one">Next chapter</item> | ||||
|         <item quantity="other">Next %d chapters</item> | ||||
|     </plurals> | ||||
|     <string name="download_unread">Unread</string> | ||||
|     <string name="custom_cover">Custom cover</string> | ||||
|     <string name="manga_cover">Cover</string> | ||||
| @@ -748,10 +712,6 @@ | ||||
| 
 | ||||
|     <!-- Tracking Screen --> | ||||
|     <string name="manga_tracking_tab">Tracking</string> | ||||
|     <plurals name="num_trackers"> | ||||
|         <item quantity="one">%d tracker</item> | ||||
|         <item quantity="other">%d trackers</item> | ||||
|     </plurals> | ||||
|     <string name="add_tracking">Add tracking</string> | ||||
|     <string name="unread">Unread</string> | ||||
|     <string name="reading">Reading</string> | ||||
| @@ -819,10 +779,6 @@ | ||||
|     <string name="page_list_empty_error">No pages found</string> | ||||
|     <string name="loader_not_implemented_error">Source not found</string> | ||||
|     <string name="loader_rar5_error">RARv5 format is not supported</string> | ||||
|     <plurals name="missing_chapters_warning"> | ||||
|         <item quantity="one">Skipping %d chapter, either the source is missing it or it has been filtered out</item> | ||||
|         <item quantity="other">Skipping %d chapters, either the source is missing them or they have been filtered out</item> | ||||
|     </plurals> | ||||
| 
 | ||||
|     <!-- Updates --> | ||||
|     <string name="updating_library">Updating library</string> | ||||
| @@ -887,21 +843,9 @@ | ||||
|     <string name="notification_updating_progress">Updating library… (%s)</string> | ||||
|     <string name="notification_size_warning">Large updates harm sources and may lead to slower updates and also increased battery usage. Tap to learn more.</string> | ||||
|     <string name="notification_new_chapters">New chapters found</string> | ||||
|     <plurals name="notification_new_chapters_summary"> | ||||
|         <item quantity="one">For %d entry</item> | ||||
|         <item quantity="other">For %d entries</item> | ||||
|     </plurals> | ||||
|     <plurals name="notification_chapters_generic"> | ||||
|         <item quantity="one">%1$d new chapter</item> | ||||
|         <item quantity="other">%1$d new chapters</item> | ||||
|     </plurals> | ||||
|     <string name="notification_chapters_single">Chapter %1$s</string> | ||||
|     <string name="notification_chapters_single_and_more">Chapter %1$s and %2$d more</string> | ||||
|     <string name="notification_chapters_multiple">Chapters %1$s</string> | ||||
|     <plurals name="notification_chapters_multiple_and_more"> | ||||
|         <item quantity="one">Chapters %1$s and 1 more</item> | ||||
|         <item quantity="other">Chapters %1$s and %2$d more</item> | ||||
|     </plurals> | ||||
|     <string name="notification_update_error">%1$d update(s) failed</string> | ||||
|     <string name="notification_update_skipped">%1$d update(s) skipped</string> | ||||
|     <string name="learn_more">Tap to learn more</string> | ||||
| @@ -934,12 +878,6 @@ | ||||
|     <string name="update_check_notification_update_available">New version available!</string> | ||||
|     <string name="update_check_fdroid_migration_info">A new version is available from the official releases. Tap to learn how to migrate from unofficial F-Droid releases.</string> | ||||
| 
 | ||||
|     <!--Extension Updates Notifications--> | ||||
|     <plurals name="update_check_notification_ext_updates"> | ||||
|         <item quantity="one">Extension update available</item> | ||||
|         <item quantity="other">%d extension updates available</item> | ||||
|     </plurals> | ||||
| 
 | ||||
|     <!-- Information Text --> | ||||
|     <string name="information_no_downloads">No downloads</string> | ||||
|     <string name="information_no_recent">No recent updates</string> | ||||
							
								
								
									
										21
									
								
								i18n/src/commonMain/resources/MR/be/plurals.xml
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										21
									
								
								i18n/src/commonMain/resources/MR/be/plurals.xml
									
									
									
									
									
										Normal file
									
								
							| @@ -0,0 +1,21 @@ | ||||
| <?xml version="1.0" encoding="utf-8"?> | ||||
| <resources> | ||||
|     <plurals name="num_categories"> | ||||
|         <item quantity="one">%d катэгорыя</item> | ||||
|         <item quantity="few">%d катэгорыі</item> | ||||
|         <item quantity="many">%d катэгорый</item> | ||||
|         <item quantity="other">%d катэгорый</item> | ||||
|     </plurals> | ||||
|     <plurals name="lock_after_mins"> | ||||
|         <item quantity="one">Пасля %1$s хвіліны</item> | ||||
|         <item quantity="few">Пасля %1$s хвілін</item> | ||||
|         <item quantity="many">Пасля %1$s хвілін</item> | ||||
|         <item quantity="other">Пасля %1$s хвілін</item> | ||||
|     </plurals> | ||||
|     <plurals name="relative_time"> | ||||
|         <item quantity="one">Учора</item> | ||||
|         <item quantity="few">%1$d дні таму</item> | ||||
|         <item quantity="many">%1$d дзён таму</item> | ||||
|         <item quantity="other">%1$d дзён таму</item> | ||||
|     </plurals> | ||||
| </resources> | ||||
| @@ -104,12 +104,6 @@ | ||||
|     <string name="none">Ніхто</string> | ||||
|     <string name="all">Усе</string> | ||||
|     <string name="pref_library_update_categories_details">Манга ў выключаных катэгорыях не будзе абнаўляцца, нават калі яны таксама знаходзяцца ў уключаных катэгорыях.</string> | ||||
|     <plurals name="num_categories"> | ||||
|         <item quantity="one">%d катэгорыя</item> | ||||
|         <item quantity="few">%d катэгорыі</item> | ||||
|         <item quantity="many">%d катэгорый</item> | ||||
|         <item quantity="other">%d катэгорый</item> | ||||
|     </plurals> | ||||
|     <string name="categorized_display_settings">Налады для кожнай катэгорыі для сартавання і адлюстравання</string> | ||||
|     <string name="default_category_summary">Заўсёды пытацца</string> | ||||
|     <string name="default_category">Катэгорыя па змаўчанні</string> | ||||
| @@ -137,12 +131,6 @@ | ||||
|     <string name="hide_notification_content">Схаваць змесціва апавяшчэнняў</string> | ||||
|     <string name="secure_screen_summary">Схаваць змесціва прыкладання пры пераключэнні на іншыя прыкладання і блакаваць скрыншоты</string> | ||||
|     <string name="secure_screen">Абарона экрана</string> | ||||
|     <plurals name="lock_after_mins"> | ||||
|         <item quantity="one">Пасля %1$s хвіліны</item> | ||||
|         <item quantity="few">Пасля %1$s хвілін</item> | ||||
|         <item quantity="many">Пасля %1$s хвілін</item> | ||||
|         <item quantity="other">Пасля %1$s хвілін</item> | ||||
|     </plurals> | ||||
|     <string name="lock_never">Ніколі</string> | ||||
|     <string name="lock_always">Заўсёды</string> | ||||
|     <string name="lock_when_idle">Блакаванне пры бяздзейнасці</string> | ||||
| @@ -276,12 +264,6 @@ | ||||
|     <string name="scale_type_fit_screen">Змясціць у экран</string> | ||||
|     <string name="pref_image_scale_type">Маштабаванне</string> | ||||
|     <string name="pref_inverted_colors">Колеры наадварот</string> | ||||
|     <plurals name="relative_time"> | ||||
|         <item quantity="one">Учора</item> | ||||
|         <item quantity="few">%1$d дні таму</item> | ||||
|         <item quantity="many">%1$d дзён таму</item> | ||||
|         <item quantity="other">%1$d дзён таму</item> | ||||
|     </plurals> | ||||
|     <string name="relative_time_today">Сёння</string> | ||||
|     <string name="theme_tealturquoise">Бірузовы</string> | ||||
|     <string name="pref_category_appearance">Знешнасць</string> | ||||
							
								
								
									
										55
									
								
								i18n/src/commonMain/resources/MR/bg/plurals.xml
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										55
									
								
								i18n/src/commonMain/resources/MR/bg/plurals.xml
									
									
									
									
									
										Normal file
									
								
							| @@ -0,0 +1,55 @@ | ||||
| <?xml version="1.0" encoding="utf-8"?> | ||||
| <resources> | ||||
|     <plurals name="update_check_notification_ext_updates"> | ||||
|         <item quantity="one">1 наличен ъпдейт за разширение</item> | ||||
|         <item quantity="other">%d налични ъпдейта за разширения</item> | ||||
|     </plurals> | ||||
|     <plurals name="notification_chapters_multiple_and_more"> | ||||
|         <item quantity="one">Глави %1$s и още 1</item> | ||||
|         <item quantity="other">Глави %1$s и още %2$d</item> | ||||
|     </plurals> | ||||
|     <plurals name="notification_chapters_generic"> | ||||
|         <item quantity="one">1 нова глава</item> | ||||
|         <item quantity="other">%1$d нови глави</item> | ||||
|     </plurals> | ||||
|     <plurals name="notification_new_chapters_summary"> | ||||
|         <item quantity="one">За 1 заглавие</item> | ||||
|         <item quantity="other">За %d заглавия</item> | ||||
|     </plurals> | ||||
|     <plurals name="download_queue_summary"> | ||||
|         <item quantity="one">1 оставаща</item> | ||||
|         <item quantity="other">%1$s оставащи</item> | ||||
|     </plurals> | ||||
|     <plurals name="lock_after_mins"> | ||||
|         <item quantity="one">След 1 минута</item> | ||||
|         <item quantity="other">След %1$s минути</item> | ||||
|     </plurals> | ||||
|     <plurals name="restore_completed_message"> | ||||
|         <item quantity="one">Направено за %1$s с %2$s грешка</item> | ||||
|         <item quantity="other">Направено за %1$s с %2$s грешки</item> | ||||
|     </plurals> | ||||
|     <plurals name="num_categories"> | ||||
|         <item quantity="one">%d категория</item> | ||||
|         <item quantity="other">%d категории</item> | ||||
|     </plurals> | ||||
|     <plurals name="manga_num_chapters"> | ||||
|         <item quantity="one">1 глава</item> | ||||
|         <item quantity="other">%1$s глави</item> | ||||
|     </plurals> | ||||
|     <plurals name="num_trackers"> | ||||
|         <item quantity="one">1 тракер</item> | ||||
|         <item quantity="other">%d тракери</item> | ||||
|     </plurals> | ||||
|     <plurals name="missing_chapters_warning"> | ||||
|         <item quantity="one">Има 1 липсваща глава, източникът липса или е филтриран</item> | ||||
|         <item quantity="other">Има %d липсващи глави, източникът липса или е филтриран</item> | ||||
|     </plurals> | ||||
|     <plurals name="relative_time"> | ||||
|         <item quantity="one">Вчера</item> | ||||
|         <item quantity="other">Преди %1$d дни</item> | ||||
|     </plurals> | ||||
|     <plurals name="next_unread_chapters"> | ||||
|         <item quantity="one">Следващата непрочетена глава</item> | ||||
|         <item quantity="other">Следващите %d непрочетени глави</item> | ||||
|     </plurals> | ||||
| </resources> | ||||
| @@ -1,14 +1,12 @@ | ||||
| <?xml version="1.0" encoding="utf-8"?> | ||||
| <resources> | ||||
|     <string name="name">Име</string> | ||||
|     <!-- Activities and fragments labels (toolbar title) --> | ||||
|     <string name="label_settings">Настройки</string> | ||||
|     <string name="label_download_queue">Изтегляния</string> | ||||
|     <string name="label_library">Библиотека</string> | ||||
|     <string name="label_recent_manga">История</string> | ||||
|     <string name="label_recent_updates">Нови глави</string> | ||||
|     <string name="label_backup">Запази и възстанови</string> | ||||
|     <!-- Actions --> | ||||
|     <string name="action_settings">Настройки</string> | ||||
|     <string name="action_filter">Филтрирай</string> | ||||
|     <string name="action_filter_bookmarked">Отбелязани</string> | ||||
| @@ -51,17 +49,13 @@ | ||||
|     <string name="action_save">Запази</string> | ||||
|     <string name="action_reset">Изчисти</string> | ||||
|     <string name="action_undo">Върни</string> | ||||
|     <!-- Operations --> | ||||
|     <string name="loading">Зареждане…</string> | ||||
|     <!-- Preferences --> | ||||
|     <!-- Subsections --> | ||||
|     <string name="pref_category_general">Основни настройки</string> | ||||
|     <string name="pref_category_reader">Четец</string> | ||||
|     <string name="pref_category_downloads">Изтегляния</string> | ||||
|     <string name="pref_category_tracking">Следене</string> | ||||
|     <string name="pref_category_advanced">Разширени настройки</string> | ||||
|     <string name="pref_category_about">За приложението</string> | ||||
|     <!-- General section --> | ||||
|     <string name="pref_library_columns">Манга на ред</string> | ||||
|     <string name="portrait">Портретно</string> | ||||
|     <string name="landscape">Пейзажно</string> | ||||
| @@ -76,7 +70,6 @@ | ||||
|     <string name="charging">На зарядно устройство</string> | ||||
|     <string name="pref_update_only_non_completed">Със статус \"Завършена\"</string> | ||||
|     <string name="pref_auto_update_manga_sync">Обнови прогреса след прочитане</string> | ||||
|     <!-- Reader section --> | ||||
|     <string name="pref_fullscreen">Цял екран</string> | ||||
|     <string name="pref_page_transitions">Анимирани преходи</string> | ||||
|     <string name="pref_show_page_number">Номер на страница</string> | ||||
| @@ -113,7 +106,6 @@ | ||||
|     <string name="color_filter_g_value">G</string> | ||||
|     <string name="color_filter_b_value">B</string> | ||||
|     <string name="color_filter_a_value">A</string> | ||||
|     <!-- Downloads section --> | ||||
|     <string name="pref_download_directory">Директория на изтеглянията</string> | ||||
|     <string name="pref_remove_after_marked_as_read">След маркиране като прочетено</string> | ||||
|     <string name="pref_remove_after_read">След прочитане автоматично изтрийте</string> | ||||
| @@ -125,9 +117,7 @@ | ||||
|     <string name="fourth_to_last">Четвърта предпоследна прочетена глава</string> | ||||
|     <string name="fifth_to_last">Пета предпоследна прочетена глава</string> | ||||
|     <string name="pref_download_new">Изтегляй нови глави</string> | ||||
|     <!-- Sync section --> | ||||
|     <string name="services">Услуги</string> | ||||
|     <!-- Advanced section --> | ||||
|     <string name="pref_clear_chapter_cache">Изчисти кеша на главите</string> | ||||
|     <string name="used_cache">Използвани: %1$s</string> | ||||
|     <string name="cache_deleted">Кеш изчистен. %1$d файла бяха изчистени</string> | ||||
| @@ -138,29 +128,21 @@ | ||||
|     <string name="pref_clear_database_summary">Изтрий историята на манги, които не са запазени в библиотеката</string> | ||||
|     <string name="clear_database_confirmation">Сигурни ли сте\? Прочетените глави и напредъкът на манги, които не са в библиотеката Ви, ще бъдат изгубени</string> | ||||
|     <string name="clear_database_completed">Базата данни изчистена</string> | ||||
|     <!-- About section --> | ||||
|     <string name="version">Версия</string> | ||||
|     <!-- ACRA --> | ||||
|     <string name="pref_enable_acra">Изпращай данни за сривове</string> | ||||
|     <string name="pref_acra_summary">Помага за оправянето на бъгове. Няма да се изпращат лични данни</string> | ||||
|     <!-- Login dialog --> | ||||
|     <string name="login_title">Влизане в %1$s</string> | ||||
|     <string name="username">Потребителско име</string> | ||||
|     <string name="password">Парола</string> | ||||
|     <string name="login">Влез</string> | ||||
|     <string name="login_success">Влязохте</string> | ||||
|     <string name="unknown_error">Неизвестна грешка</string> | ||||
|     <!-- Library fragment --> | ||||
|     <string name="updating_category">Обновяване на категорията</string> | ||||
|     <!-- Catalogue fragment --> | ||||
|     <string name="no_more_results">Няма повече резултати</string> | ||||
|     <!-- Manga activity --> | ||||
|     <!-- Manga info fragment --> | ||||
|     <string name="ongoing">Излизаща</string> | ||||
|     <string name="unknown">Неизвестно</string> | ||||
|     <string name="licensed">Лицензирана</string> | ||||
|     <string name="remove_from_library">Премахни от библиотеката</string> | ||||
|     <!-- Manga chapters fragment --> | ||||
|     <string name="display_mode_chapter">Глава %1$s</string> | ||||
|     <string name="chapter_downloading_progress">Изтегляне (%1$d/%2$d)</string> | ||||
|     <string name="chapter_error">Грешка</string> | ||||
| @@ -171,7 +153,6 @@ | ||||
|     <string name="manga_download">Изтегли</string> | ||||
|     <string name="download_unread">Непрочетени</string> | ||||
|     <string name="confirm_delete_chapters">Сигурни ли сте, че искате да изтриете избраните глави?</string> | ||||
|     <!-- MyAnimeList fragment --> | ||||
|     <string name="manga_tracking_tab">Следене</string> | ||||
|     <string name="reading">Чета</string> | ||||
|     <string name="completed">Завършена</string> | ||||
| @@ -182,17 +163,12 @@ | ||||
|     <string name="title">Заглавие</string> | ||||
|     <string name="status">Статус</string> | ||||
|     <string name="chapters">Глави</string> | ||||
|     <!-- Category activity --> | ||||
|     <string name="error_category_exists">Категория със същото име вече съществува!</string> | ||||
|     <string name="snack_categories_deleted">Категориите бяха изтрити</string> | ||||
|     <!-- Dialog option with checkbox view --> | ||||
|     <string name="dialog_with_checkbox_remove_description">Това ще премахне датата на прочитане на главата. Сигурни ли сте?</string> | ||||
|     <string name="dialog_with_checkbox_reset">Изчисти всички дати за тази манга</string> | ||||
|     <!-- SnackBar --> | ||||
|     <string name="snack_add_to_library">Добавяне на мангата към библиотеката\?</string> | ||||
|     <!-- Image notifier --> | ||||
|     <string name="picture_saved">Изображението запазено</string> | ||||
|     <!-- Reader activity --> | ||||
|     <string name="custom_filter">Персонализиран филтър</string> | ||||
|     <string name="set_as_cover">Постави за корица</string> | ||||
|     <string name="cover_updated">Корицата обновена</string> | ||||
| @@ -200,32 +176,22 @@ | ||||
|     <string name="no_next_chapter">Не беше намерена следваща глава</string> | ||||
|     <string name="decode_image_error">Неуспешно декодиране на изображението</string> | ||||
|     <string name="confirm_set_image_as_cover">Желаете ли да използвате това изображение за корица?</string> | ||||
|     <!-- Backup fragment --> | ||||
|     <!-- Recent manga fragment --> | ||||
|     <!-- Downloads activity and service --> | ||||
|     <string name="download_queue_error">Не можахме да изтеглим главите. Може да опитате пак в секцията на изтеглянията</string> | ||||
|     <!-- Library update service notifications --> | ||||
|     <string name="notification_new_chapters">Нови глави</string> | ||||
|     <string name="notification_cover_update_failed">Грешка при обновяването на корицата</string> | ||||
|     <string name="notification_first_add_to_library">Моля, добавете мангата в библиотеката си, преди да направите това</string> | ||||
|     <!-- File Picker Titles --> | ||||
|     <string name="file_select_cover">Изберете корица</string> | ||||
|     <string name="file_select_backup">Изберете резервно копие</string> | ||||
|     <!--UpdateCheck--> | ||||
|     <string name="update_check_confirm">Изтегли</string> | ||||
|     <string name="update_check_no_new_updates">Няма налични актуализации</string> | ||||
|     <!--UpdateCheck Notifications--> | ||||
|     <string name="update_check_notification_download_in_progress">Изтегля се…</string> | ||||
|     <string name="update_check_notification_download_complete">Изтегляне завършено</string> | ||||
|     <string name="update_check_notification_download_error">Грешка при изтегляне</string> | ||||
|     <string name="update_check_notification_update_available">Има нова версия!</string> | ||||
|     <!--Content Description--> | ||||
|     <!-- Information Text --> | ||||
|     <string name="information_no_downloads">Нямате изтегляния</string> | ||||
|     <string name="information_no_recent">Нямате нови глави</string> | ||||
|     <string name="information_no_recent_manga">Не сте чели нищо наскоро</string> | ||||
|     <string name="information_empty_library">Библиотеката Ви е празна</string> | ||||
|     <!-- Download Notification --> | ||||
|     <string name="download_notifier_downloader_title">Изтегли</string> | ||||
|     <string name="download_notifier_title_error">Грешка</string> | ||||
|     <string name="download_notifier_unknown_error">Получи се неочаквана грешка при изтеглянето на главата</string> | ||||
| @@ -341,25 +307,9 @@ | ||||
|     <string name="information_webview_outdated">Моля, обновете WebView за по-добра съвместимост</string> | ||||
|     <string name="information_webview_required">WebView е необходим за Tachiyomi</string> | ||||
|     <string name="information_cloudflare_bypass_failure">Грешка при минаването през Cloudflare</string> | ||||
|     <plurals name="update_check_notification_ext_updates"> | ||||
|         <item quantity="one">1 наличен ъпдейт за разширение</item> | ||||
|         <item quantity="other">%d налични ъпдейта за разширения</item> | ||||
|     </plurals> | ||||
|     <plurals name="notification_chapters_multiple_and_more"> | ||||
|         <item quantity="one">Глави %1$s и още 1</item> | ||||
|         <item quantity="other">Глави %1$s и още %2$d</item> | ||||
|     </plurals> | ||||
|     <string name="notification_chapters_multiple">Глави %1$s</string> | ||||
|     <string name="notification_chapters_single_and_more">Глава %1$s и %2$d още</string> | ||||
|     <string name="notification_chapters_single">Глава %1$s</string> | ||||
|     <plurals name="notification_chapters_generic"> | ||||
|         <item quantity="one">1 нова глава</item> | ||||
|         <item quantity="other">%1$d нови глави</item> | ||||
|     </plurals> | ||||
|     <plurals name="notification_new_chapters_summary"> | ||||
|         <item quantity="one">За 1 заглавие</item> | ||||
|         <item quantity="other">За %d заглавия</item> | ||||
|     </plurals> | ||||
|     <string name="notification_check_updates">Проверяване за нови глави</string> | ||||
|     <string name="recent_manga_time">Гл. %1$s - %2$s</string> | ||||
|     <string name="updating_library">Обновяване на библиотеката</string> | ||||
| @@ -372,10 +322,6 @@ | ||||
|     <string name="pinned_sources">Закачени</string> | ||||
|     <string name="last_used_source">Последно използвани</string> | ||||
|     <string name="email">Имейл адрес</string> | ||||
|     <plurals name="download_queue_summary"> | ||||
|         <item quantity="one">1 оставаща</item> | ||||
|         <item quantity="other">%1$s оставащи</item> | ||||
|     </plurals> | ||||
|     <string name="downloaded_only_summary">Филтрира мангата в цялата Ви библиотека</string> | ||||
|     <string name="label_downloaded_only">Само изтеглени</string> | ||||
|     <string name="check_for_updates">Провери за ъпдейт</string> | ||||
| @@ -400,10 +346,6 @@ | ||||
|     <string name="pref_category_display">Показване</string> | ||||
|     <string name="hide_notification_content">Скривай съдържанието на уведомленията</string> | ||||
|     <string name="secure_screen_summary">Скрий съдържанието на приложението и блокирай снимките на екрана</string> | ||||
|     <plurals name="lock_after_mins"> | ||||
|         <item quantity="one">След 1 минута</item> | ||||
|         <item quantity="other">След %1$s минути</item> | ||||
|     </plurals> | ||||
|     <string name="lock_never">Никога</string> | ||||
|     <string name="lock_always">Винаги</string> | ||||
|     <string name="lock_when_idle">Заключи при неактивност</string> | ||||
| @@ -431,25 +373,13 @@ | ||||
|     <string name="pref_category_for_this_series">За тази поредица</string> | ||||
|     <string name="battery_optimization_setting_activity_not_found">Системните настройки не бяха отворени</string> | ||||
|     <string name="pref_refresh_library_covers">Обнови кориците</string> | ||||
|     <plurals name="restore_completed_message"> | ||||
|         <item quantity="one">Направено за %1$s с %2$s грешка</item> | ||||
|         <item quantity="other">Направено за %1$s с %2$s грешки</item> | ||||
|     </plurals> | ||||
|     <string name="tracking_info">Еднопосочна синхронизация на прочетените глави. Установи проследяване за отделни манги от индивидуалния бутон за проследяване.</string> | ||||
|     <string name="gray_background">Сиво</string> | ||||
|     <string name="pref_true_color_summary">Намалява бандинга, но се отразява на производителността</string> | ||||
|     <plurals name="num_categories"> | ||||
|         <item quantity="one">%d категория</item> | ||||
|         <item quantity="other">%d категории</item> | ||||
|     </plurals> | ||||
|     <string name="action_migrate">Мигрирай</string> | ||||
|     <string name="loader_not_implemented_error">Източникът не е намерен</string> | ||||
|     <string name="page_list_empty_error">Няма намерени страници</string> | ||||
|     <string name="sort_by_upload_date">По дата на качване</string> | ||||
|     <plurals name="manga_num_chapters"> | ||||
|         <item quantity="one">1 глава</item> | ||||
|         <item quantity="other">%1$s глави</item> | ||||
|     </plurals> | ||||
|     <string name="tabs_header">Раздели</string> | ||||
|     <string name="label_data">Данни</string> | ||||
|     <string name="requires_app_restart">Изисква рестартиране, за да влезе в сила</string> | ||||
| @@ -477,10 +407,6 @@ | ||||
|     <string name="channel_complete">Готово</string> | ||||
|     <string name="channel_progress">Прогрес</string> | ||||
|     <string name="download_insufficient_space">Главите не можаха да бъдат изтеглени поради недостатъчно място</string> | ||||
|     <plurals name="num_trackers"> | ||||
|         <item quantity="one">1 тракер</item> | ||||
|         <item quantity="other">%d тракери</item> | ||||
|     </plurals> | ||||
|     <string name="unknown_status">Неизвестен статус</string> | ||||
|     <string name="unknown_author">Неизвестен автор</string> | ||||
|     <string name="no_pinned_sources">Нямате отметнати източници</string> | ||||
| @@ -497,10 +423,6 @@ | ||||
|     <string name="pref_category_theme">Тема</string> | ||||
|     <string name="action_sort_date_added">Добавено на</string> | ||||
|     <string name="no_chapters_error">Не са намерени глави</string> | ||||
|     <plurals name="missing_chapters_warning"> | ||||
|         <item quantity="one">Има 1 липсваща глава, източникът липса или е филтриран</item> | ||||
|         <item quantity="other">Има %d липсващи глави, източникът липса или е филтриран</item> | ||||
|     </plurals> | ||||
|     <string name="pref_category_nsfw_content">NSFW (18+) източници</string> | ||||
|     <string name="action_desc">Низходящ</string> | ||||
|     <string name="action_asc">Възходящ</string> | ||||
| @@ -552,10 +474,6 @@ | ||||
|     <string name="pref_hide_threshold">Чувствителност за скриване на менюто при превъртане</string> | ||||
|     <string name="pref_highest">Най-висока</string> | ||||
|     <string name="unread">Непрочетена</string> | ||||
|     <plurals name="relative_time"> | ||||
|         <item quantity="one">Вчера</item> | ||||
|         <item quantity="other">Преди %1$d дни</item> | ||||
|     </plurals> | ||||
|     <string name="manga_cover">Корица</string> | ||||
|     <string name="label_warning">Предупреждение</string> | ||||
|     <string name="confirm_lock_change">Удостоверете, за да потвърдите промяната</string> | ||||
| @@ -705,10 +623,6 @@ | ||||
|     <string name="theme_lavender">Лавандула</string> | ||||
|     <string name="pref_app_language">Език на приложението</string> | ||||
|     <string name="delete_category">Изтрий категория</string> | ||||
|     <plurals name="next_unread_chapters"> | ||||
|         <item quantity="one">Следващата непрочетена глава</item> | ||||
|         <item quantity="other">Следващите %d непрочетени глави</item> | ||||
|     </plurals> | ||||
|     <string name="ext_info_age_rating">Възрастово ограничение</string> | ||||
|     <string name="wish_list">Списък с желания</string> | ||||
|     <string name="save_chapter_as_cbz">Запази като CBZ архив</string> | ||||
							
								
								
									
										55
									
								
								i18n/src/commonMain/resources/MR/bn/plurals.xml
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										55
									
								
								i18n/src/commonMain/resources/MR/bn/plurals.xml
									
									
									
									
									
										Normal file
									
								
							| @@ -0,0 +1,55 @@ | ||||
| <?xml version="1.0" encoding="utf-8"?> | ||||
| <resources> | ||||
|     <plurals name="notification_chapters_multiple_and_more"> | ||||
|         <item quantity="one">%1$s অধ্যায়সমূহ এবং ১টি আরও</item> | ||||
|         <item quantity="other">%1$s অধ্যায়সমূহ এবং %2$dটি আরও</item> | ||||
|     </plurals> | ||||
|     <plurals name="restore_completed_message"> | ||||
|         <item quantity="one">%1$s সময়ে %2$s ত্রুটি সম্পন্ন</item> | ||||
|         <item quantity="other">%1$s সময়ে %2$sটি ত্রুটি সম্পন্ন</item> | ||||
|     </plurals> | ||||
|     <plurals name="num_categories"> | ||||
|         <item quantity="one">%dটি বিভাগ</item> | ||||
|         <item quantity="other">%dটি বিভাগসমূহ</item> | ||||
|     </plurals> | ||||
|     <plurals name="lock_after_mins"> | ||||
|         <item quantity="one">১ মিনিট পর</item> | ||||
|         <item quantity="other">%1$s মিনিট পর</item> | ||||
|     </plurals> | ||||
|     <plurals name="update_check_notification_ext_updates"> | ||||
|         <item quantity="one">এক্সটেনশন হালনাগাদ উপলব্ধ</item> | ||||
|         <item quantity="other">%d এক্সটেনশন হালনাগাদ উপলব্ধ</item> | ||||
|     </plurals> | ||||
|     <plurals name="notification_chapters_generic"> | ||||
|         <item quantity="one">১টি নতুন অধ্যায়</item> | ||||
|         <item quantity="other">%1$dটি নতুন অধ্যায়</item> | ||||
|     </plurals> | ||||
|     <plurals name="notification_new_chapters_summary"> | ||||
|         <item quantity="one">১টি শিরোনামের জন্য</item> | ||||
|         <item quantity="other">%dটি শিরোনামের জন্য</item> | ||||
|     </plurals> | ||||
|     <plurals name="missing_chapters_warning"> | ||||
|         <item quantity="one">1 অধ্যায় এড়িয়ে জাছি, হয় উৎসটি অনুপস্থিত বা এটি ফিল্টার করা হয়েছে</item> | ||||
|         <item quantity="other">%d অধ্যায় কিপ করা হচ্ছে, হয় উৎসটি তাদের অনুপস্থিত অথবা সেগুলি ফিল্টার করা হয়েছে</item> | ||||
|     </plurals> | ||||
|     <plurals name="num_trackers"> | ||||
|         <item quantity="one">1টি ট্র্যাকার</item> | ||||
|         <item quantity="other">%dটি ট্র্যাকার</item> | ||||
|     </plurals> | ||||
|     <plurals name="manga_num_chapters"> | ||||
|         <item quantity="one">১টি অধ্যায়</item> | ||||
|         <item quantity="other">%1$sটি অধ্যায়</item> | ||||
|     </plurals> | ||||
|     <plurals name="download_queue_summary"> | ||||
|         <item quantity="one">১টি বাকি আছে</item> | ||||
|         <item quantity="other">%1$sটি বাকি আছে</item> | ||||
|     </plurals> | ||||
|     <plurals name="relative_time"> | ||||
|         <item quantity="one">গতকাল</item> | ||||
|         <item quantity="other">%1$d দিন আগে</item> | ||||
|     </plurals> | ||||
|     <plurals name="next_unread_chapters"> | ||||
|         <item quantity="one">পরবর্তী অপঠিত অধ্যায়</item> | ||||
|         <item quantity="other">পরবর্তী %d টি অপঠিত অধ্যায়</item> | ||||
|     </plurals> | ||||
| </resources> | ||||
| @@ -374,25 +374,9 @@ | ||||
|     <string name="ext_unofficial">অনুমোদনহীন</string> | ||||
|     <string name="ext_updates_pending">অনিষ্পন্ন হালনাগাদ</string> | ||||
|     <string name="pref_library_update_refresh_metadata_summary">সংগ্রহশালা হালনাগেদের সময় নতুন মোড়ক এবং বর্ণনা খুঁজুন</string> | ||||
|     <plurals name="notification_chapters_multiple_and_more"> | ||||
|         <item quantity="one">%1$s অধ্যায়সমূহ এবং ১টি আরও</item> | ||||
|         <item quantity="other">%1$s অধ্যায়সমূহ এবং %2$dটি আরও</item> | ||||
|     </plurals> | ||||
|     <string name="pinned_sources">গাঁথুনিকৃত</string> | ||||
|     <plurals name="restore_completed_message"> | ||||
|         <item quantity="one">%1$s সময়ে %2$s ত্রুটি সম্পন্ন</item> | ||||
|         <item quantity="other">%1$s সময়ে %2$sটি ত্রুটি সম্পন্ন</item> | ||||
|     </plurals> | ||||
|     <string name="backup_restore_missing_trackers">ট্র্যাকারগুলিতে প্রবেশ হয়নি:</string> | ||||
|     <string name="pref_show_reading_mode_summary">রিডার খোলা থাকলে বর্তমান মোড সংক্ষেপে দেখান</string> | ||||
|     <plurals name="num_categories"> | ||||
|         <item quantity="one">%dটি বিভাগ</item> | ||||
|         <item quantity="other">%dটি বিভাগসমূহ</item> | ||||
|     </plurals> | ||||
|     <plurals name="lock_after_mins"> | ||||
|         <item quantity="one">১ মিনিট পর</item> | ||||
|         <item quantity="other">%1$s মিনিট পর</item> | ||||
|     </plurals> | ||||
|     <string name="tapping_inverted_both">উভয়</string> | ||||
|     <string name="tapping_inverted_vertical">উল্লম্ব</string> | ||||
|     <string name="tapping_inverted_horizontal">অনুভূমিক</string> | ||||
| @@ -406,29 +390,13 @@ | ||||
|     <string name="information_webview_outdated">অনুগ্রহ করে উন্নততর সামঞ্জস্যতার জন্য ওয়েবভিউ অ্যাপটি হালনাগাদ করুন</string> | ||||
|     <string name="information_webview_required">টাচিয়ামির জন্য ওয়েবভিউ প্রয়োজন</string> | ||||
|     <string name="information_cloudflare_bypass_failure">ক্লাউডফ্লেয়ার বাইপাস করতে ব্যর্থ</string> | ||||
|     <plurals name="update_check_notification_ext_updates"> | ||||
|         <item quantity="one">এক্সটেনশন হালনাগাদ উপলব্ধ</item> | ||||
|         <item quantity="other">%d এক্সটেনশন হালনাগাদ উপলব্ধ</item> | ||||
|     </plurals> | ||||
|     <string name="notification_chapters_multiple">অধ্যায়গুলি %1$s</string> | ||||
|     <string name="notification_chapters_single_and_more">অধ্যায় %1$s এবং %2$d আরও</string> | ||||
|     <string name="notification_chapters_single">অধ্যায় %1$s</string> | ||||
|     <plurals name="notification_chapters_generic"> | ||||
|         <item quantity="one">১টি নতুন অধ্যায়</item> | ||||
|         <item quantity="other">%1$dটি নতুন অধ্যায়</item> | ||||
|     </plurals> | ||||
|     <plurals name="notification_new_chapters_summary"> | ||||
|         <item quantity="one">১টি শিরোনামের জন্য</item> | ||||
|         <item quantity="other">%dটি শিরোনামের জন্য</item> | ||||
|     </plurals> | ||||
|     <string name="notification_check_updates">নতুন অধ্যায়ের জন্য অনুসন্ধান করা হচ্ছে</string> | ||||
|     <string name="download_insufficient_space">কম সঞ্চয়স্থানের কারণে অধ্যায়গুলি ডাউনলোড করা যায়নি</string> | ||||
|     <string name="recent_manga_time">অঃ %1$s - %2$s</string> | ||||
|     <string name="updating_library">সংগ্রহশালার হালনাগাদ হচ্ছে</string> | ||||
|     <plurals name="missing_chapters_warning"> | ||||
|         <item quantity="one">1 অধ্যায় এড়িয়ে জাছি, হয় উৎসটি অনুপস্থিত বা এটি ফিল্টার করা হয়েছে</item> | ||||
|         <item quantity="other">%d অধ্যায় কিপ করা হচ্ছে, হয় উৎসটি তাদের অনুপস্থিত অথবা সেগুলি ফিল্টার করা হয়েছে</item> | ||||
|     </plurals> | ||||
|     <string name="loader_not_implemented_error">উৎস খুঁজে পাওয়া যায়নি</string> | ||||
|     <string name="page_list_empty_error">কোনও পৃষ্ঠা পাওয়া যায় নি</string> | ||||
|     <string name="viewer">পঠন ধরন</string> | ||||
| @@ -436,19 +404,11 @@ | ||||
|     <string name="share_page_info">%1$s: %2$s, পৃষ্ঠা %3$d</string> | ||||
|     <string name="paused">বিরতি</string> | ||||
|     <string name="add_tracking">ট্র্যাকিং যোগ করুন</string> | ||||
|     <plurals name="num_trackers"> | ||||
|         <item quantity="one">1টি ট্র্যাকার</item> | ||||
|         <item quantity="other">%dটি ট্র্যাকার</item> | ||||
|     </plurals> | ||||
|     <string name="no_chapters_error">কোনও অধ্যায় পাওয়া যায় নি</string> | ||||
|     <string name="also_set_chapter_settings_for_library">এছাড়াও আমার সংগ্রহশালার মাঙ্গাতে প্রয়োগ করুন</string> | ||||
|     <string name="chapter_settings">অধ্যায় সেটিংস</string> | ||||
|     <string name="sort_by_upload_date">আপলোডের তারিখ অনুযায়ী</string> | ||||
|     <string name="pref_refresh_library_covers">সংগ্রহশালার মাঙ্গার মোড়ক হালনাগাদ করুন</string> | ||||
|     <plurals name="manga_num_chapters"> | ||||
|         <item quantity="one">১টি অধ্যায়</item> | ||||
|         <item quantity="other">%1$sটি অধ্যায়</item> | ||||
|     </plurals> | ||||
|     <string name="unknown_status">অজানা অবস্থা</string> | ||||
|     <string name="unknown_author">অজানা লেখক</string> | ||||
|     <string name="no_pinned_sources">আপনার কোন পিন করা উৎস নেই</string> | ||||
| @@ -461,10 +421,6 @@ | ||||
|     <string name="logout_success">আপনি এখন প্রস্থান করেছেন</string> | ||||
|     <string name="logout">প্রস্থান</string> | ||||
|     <string name="logout_title">প্রস্থান করবেন %1$s থেকে\?</string> | ||||
|     <plurals name="download_queue_summary"> | ||||
|         <item quantity="one">১টি বাকি আছে</item> | ||||
|         <item quantity="other">%1$sটি বাকি আছে</item> | ||||
|     </plurals> | ||||
|     <string name="downloaded_only_summary">আপনার লাইব্রেরীর সব মাঙ্গা ফিলটার করে</string> | ||||
|     <string name="pref_incognito_mode_summary">পড়ার ইতিহাসে বিরতি দেয়</string> | ||||
|     <string name="pref_incognito_mode">ছদ্মবেশী মোড</string> | ||||
| @@ -561,10 +517,6 @@ | ||||
|     <string name="pref_library_update_categories_details">বাদ দেওয়া ক্যাটাগরিতে মঙ্গা আপডেট করা হবে না যদিও সেগুলি অন্তর্ভুক্ত ক্যাটাগরিতেও থাকে।</string> | ||||
|     <string name="categorized_display_settings">সাজানোর এবং প্রদর্শনের জন্য প্রতি শ্রেণীর সেটিংস</string> | ||||
|     <string name="restrictions">বিধিনিষেধ: %s</string> | ||||
|     <plurals name="relative_time"> | ||||
|         <item quantity="one">গতকাল</item> | ||||
|         <item quantity="other">%1$d দিন আগে</item> | ||||
|     </plurals> | ||||
|     <string name="relative_time_today">সম্প্রতি</string> | ||||
|     <string name="pref_dark_theme_pure_black">বিশুদ্ধ কালো অন্ধকার মোড</string> | ||||
|     <string name="theme_yotsuba">চার পাতা</string> | ||||
| @@ -623,10 +575,6 @@ | ||||
|     <string name="delete_category_confirmation">আপনি কি \"%s\" বিভাগটি মুছে ফেলতে চান\?</string> | ||||
|     <string name="appwidget_updates_description">সম্প্রতি আপনার হালনাগাদকৃত মাঙ্গা দেখুন</string> | ||||
|     <string name="are_you_sure">আপনি কি নিশ্চিত\?</string> | ||||
|     <plurals name="next_unread_chapters"> | ||||
|         <item quantity="one">পরবর্তী অপঠিত অধ্যায়</item> | ||||
|         <item quantity="other">পরবর্তী %d টি অপঠিত অধ্যায়</item> | ||||
|     </plurals> | ||||
|     <string name="action_sort_unread_count">অপঠিত সংখ্যা</string> | ||||
|     <string name="action_remove_everything">সবকিছু মুছুন</string> | ||||
|     <string name="action_show_manga">লেখা দেখান</string> | ||||
							
								
								
									
										67
									
								
								i18n/src/commonMain/resources/MR/ca/plurals.xml
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										67
									
								
								i18n/src/commonMain/resources/MR/ca/plurals.xml
									
									
									
									
									
										Normal file
									
								
							| @@ -0,0 +1,67 @@ | ||||
| <?xml version="1.0" encoding="utf-8"?> | ||||
| <resources> | ||||
|     <plurals name="lock_after_mins"> | ||||
|         <item quantity="one">Després d’%1$s minut</item> | ||||
|         <item quantity="other">Després de %1$s minuts</item> | ||||
|     </plurals> | ||||
|     <plurals name="notification_chapters_generic"> | ||||
|         <item quantity="one">%1$d capítol nou</item> | ||||
|         <item quantity="other">%1$d capítols nous</item> | ||||
|     </plurals> | ||||
|     <plurals name="notification_chapters_multiple_and_more"> | ||||
|         <item quantity="one">Capítols %1$s i 1 més</item> | ||||
|         <item quantity="other">Capítols %1$s i %2$d més</item> | ||||
|     </plurals> | ||||
|     <plurals name="notification_new_chapters_summary"> | ||||
|         <item quantity="one">Per a %d element</item> | ||||
|         <item quantity="other">Per a %d elements</item> | ||||
|     </plurals> | ||||
|     <plurals name="update_check_notification_ext_updates"> | ||||
|         <item quantity="one">Hi ha una actualització d’una extensió</item> | ||||
|         <item quantity="other">Hi ha actualitzacions de %d extensions</item> | ||||
|     </plurals> | ||||
|     <plurals name="download_queue_summary"> | ||||
|         <item quantity="one">En resta %1$s</item> | ||||
|         <item quantity="other">En resten %1$s</item> | ||||
|     </plurals> | ||||
|     <plurals name="restore_completed_message"> | ||||
|         <item quantity="one">Fet en %1$s amb %2$s error</item> | ||||
|         <item quantity="other">Fet en %1$s amb %2$s errors</item> | ||||
|     </plurals> | ||||
|     <plurals name="num_categories"> | ||||
|         <item quantity="one">%d categoria</item> | ||||
|         <item quantity="other">%d categories</item> | ||||
|     </plurals> | ||||
|     <plurals name="manga_num_chapters"> | ||||
|         <item quantity="one">%1$s capítol</item> | ||||
|         <item quantity="other">%1$s capítols</item> | ||||
|     </plurals> | ||||
|     <plurals name="num_trackers"> | ||||
|         <item quantity="one">%d servei de seguiment</item> | ||||
|         <item quantity="other">%d serveis de seguiment</item> | ||||
|     </plurals> | ||||
|     <plurals name="missing_chapters_warning"> | ||||
|         <item quantity="one">S’ha omès %d capítol. És possible que manqui a la font o que hagi estat filtrat</item> | ||||
|         <item quantity="other">S’han omès %d capítols. És possible que manquin a la font o que hagin estat filtrats</item> | ||||
|     </plurals> | ||||
|     <plurals name="relative_time"> | ||||
|         <item quantity="one">Ahir</item> | ||||
|         <item quantity="other">Fa %1$d dies</item> | ||||
|     </plurals> | ||||
|     <plurals name="next_unread_chapters"> | ||||
|         <item quantity="one">El següent capítol no llegit</item> | ||||
|         <item quantity="other">Els següents %d capítols no llegits</item> | ||||
|     </plurals> | ||||
|     <plurals name="download_amount"> | ||||
|         <item quantity="one">El següent capítol</item> | ||||
|         <item quantity="other">Els següents %d capítols</item> | ||||
|     </plurals> | ||||
|     <plurals name="missing_chapters"> | ||||
|         <item quantity="one">Manca %1$s capítol</item> | ||||
|         <item quantity="other">Manquen %1$s capítols</item> | ||||
|     </plurals> | ||||
|     <plurals name="day"> | ||||
|         <item quantity="one">1 dia</item> | ||||
|         <item quantity="other">%d dies</item> | ||||
|     </plurals> | ||||
| </resources> | ||||
| @@ -315,11 +315,6 @@ | ||||
|     <string name="lock_when_idle">Bloca per inactivitat</string> | ||||
|     <string name="lock_always">Sempre</string> | ||||
|     <string name="lock_never">Mai</string> | ||||
|     <plurals name="lock_after_mins"> | ||||
|         <item quantity="one">Després d’%1$s minut</item> | ||||
|         <item quantity="many">Després de %1$s minuts</item> | ||||
|         <item quantity="other">Després de %1$s minuts</item> | ||||
|     </plurals> | ||||
|     <string name="secure_screen">Mode discret</string> | ||||
|     <string name="ext_updates_pending">Actualitzacions pendents</string> | ||||
|     <string name="pref_cutout_short">Mostra el contingut a l’àrea de retall</string> | ||||
| @@ -328,19 +323,9 @@ | ||||
|     <string name="channel_new_chapters">Novetats de capítols</string> | ||||
|     <string name="secure_screen_summary">El mode discret amaga el contingut de l’aplicació en canviar entre aplicacions i bloca les captures de pantalla</string> | ||||
|     <string name="pref_category_display">Visualització</string> | ||||
|     <plurals name="notification_chapters_generic"> | ||||
|         <item quantity="one">%1$d capítol nou</item> | ||||
|         <item quantity="many">%1$d capítols nous</item> | ||||
|         <item quantity="other">%1$d capítols nous</item> | ||||
|     </plurals> | ||||
|     <string name="notification_chapters_single">Capítol %1$s</string> | ||||
|     <string name="notification_chapters_single_and_more">Capítol %1$s i %2$d més</string> | ||||
|     <string name="notification_chapters_multiple">Capítols %1$s</string> | ||||
|     <plurals name="notification_chapters_multiple_and_more"> | ||||
|         <item quantity="one">Capítols %1$s i 1 més</item> | ||||
|         <item quantity="many">Capítols %1$s i %2$d més</item> | ||||
|         <item quantity="other">Capítols %1$s i %2$d més</item> | ||||
|     </plurals> | ||||
|     <string name="hide_notification_content">Amaga el contingut de les notificacions</string> | ||||
|     <string name="notification_check_updates">S’està comprovant si hi ha capítols nous</string> | ||||
|     <string name="pref_disable_battery_optimization">Desactiva l’optimització de la bateria</string> | ||||
| @@ -348,21 +333,11 @@ | ||||
|     <string name="battery_optimization_disabled">L’optimització de la bateria ja està desactivada</string> | ||||
|     <string name="email">Adreça electrònica</string> | ||||
|     <string name="pref_always_show_chapter_transition">Mostra sempre la transició de capítol</string> | ||||
|     <plurals name="notification_new_chapters_summary"> | ||||
|         <item quantity="one">Per a %d element</item> | ||||
|         <item quantity="many">Per a %d elements</item> | ||||
|         <item quantity="other">Per a %d elements</item> | ||||
|     </plurals> | ||||
|     <string name="action_menu">Menú</string> | ||||
|     <string name="action_newest">Els més nous</string> | ||||
|     <string name="action_oldest">Els més antics</string> | ||||
|     <string name="action_move_to_top">Mou a dalt de tot</string> | ||||
|     <string name="action_move_to_bottom">Mou a sota de tot</string> | ||||
|     <plurals name="update_check_notification_ext_updates"> | ||||
|         <item quantity="one">Hi ha una actualització d’una extensió</item> | ||||
|         <item quantity="many">Hi ha actualitzacions de %d extensions</item> | ||||
|         <item quantity="other">Hi ha actualitzacions de %d extensions</item> | ||||
|     </plurals> | ||||
|     <string name="channel_ext_updates">Actualitzacions d’extensions</string> | ||||
|     <string name="updating_library">S’està actualitzant la biblioteca</string> | ||||
|     <string name="pref_category_reading">Lectura</string> | ||||
| @@ -394,26 +369,11 @@ | ||||
|     <string name="check_for_updates">Comprova si hi ha actualitzacions</string> | ||||
|     <string name="restore_duration">%02d min i %02d s</string> | ||||
|     <string name="downloaded_only_summary">Filtra tots els elements de la vostra biblioteca</string> | ||||
|     <plurals name="download_queue_summary"> | ||||
|         <item quantity="one">En resta %1$s</item> | ||||
|         <item quantity="many">En resten %1$s</item> | ||||
|         <item quantity="other">En resten %1$s</item> | ||||
|     </plurals> | ||||
|     <string name="gray_background">Gris</string> | ||||
|     <string name="viewer">Mode de lectura</string> | ||||
|     <string name="pref_category_for_this_series">Per a aquesta sèrie</string> | ||||
|     <string name="battery_optimization_setting_activity_not_found">No s’ha pogut obrir la configuració del dispositiu</string> | ||||
|     <plurals name="restore_completed_message"> | ||||
|         <item quantity="one">Fet en %1$s amb %2$s error</item> | ||||
|         <item quantity="many">Fet en %1$s amb %2$s errors</item> | ||||
|         <item quantity="other">Fet en %1$s amb %2$s errors</item> | ||||
|     </plurals> | ||||
|     <string name="pref_true_color_summary">Redueix les bandes de colors, però pot afectar el rendiment</string> | ||||
|     <plurals name="num_categories"> | ||||
|         <item quantity="one">%d categoria</item> | ||||
|         <item quantity="many">%d categories</item> | ||||
|         <item quantity="other">%d categories</item> | ||||
|     </plurals> | ||||
|     <string name="tracking_info">La sincronització és unidireccional per a actualitzar el progrés dels capítols als serveis de seguiment externs. Configureu el seguiment d’elements individuals al seu botó de seguiment.</string> | ||||
|     <string name="pref_refresh_library_covers">Refresca les portades de la biblioteca</string> | ||||
|     <string name="unofficial_extension_message">Aquesta extensió no pertany a la llista d’extensions oficials.</string> | ||||
| @@ -439,11 +399,6 @@ | ||||
|     <string name="pref_read_with_tapping_inverted">Inverteix les zones de toc</string> | ||||
|     <string name="download_insufficient_space">No s’han pogut baixar els capítols perquè hi ha poc espai d’emmagatzematge</string> | ||||
|     <string name="loader_not_implemented_error">No s’ha trobat la font</string> | ||||
|     <plurals name="manga_num_chapters"> | ||||
|         <item quantity="one">%1$s capítol</item> | ||||
|         <item quantity="many">%1$s capítols</item> | ||||
|         <item quantity="other">%1$s capítols</item> | ||||
|     </plurals> | ||||
|     <string name="unknown_status">Estat desconegut</string> | ||||
|     <string name="unknown_author">Autor desconegut</string> | ||||
|     <string name="action_global_search_query">Cerca «%1$s» globalment</string> | ||||
| @@ -458,11 +413,6 @@ | ||||
|     <string name="action_disable">Desactiva</string> | ||||
|     <string name="action_start">Inicia</string> | ||||
|     <string name="action_sort_date_added">Data d’incorporació</string> | ||||
|     <plurals name="num_trackers"> | ||||
|         <item quantity="one">%d servei de seguiment</item> | ||||
|         <item quantity="many">%d serveis de seguiment</item> | ||||
|         <item quantity="other">%d serveis de seguiment</item> | ||||
|     </plurals> | ||||
|     <string name="no_pinned_sources">No teniu cap origen fixat</string> | ||||
|     <string name="channel_complete">Completada</string> | ||||
|     <string name="channel_progress">Progrés</string> | ||||
| @@ -473,11 +423,6 @@ | ||||
|     <string name="ext_nsfw_warning">Les fonts d’aquesta extensió poden contenir contingut NSFW (+18)</string> | ||||
|     <string name="ext_nsfw_short">+18</string> | ||||
|     <string name="parental_controls_info">Això no evita que les extensions no oficials o possiblement mal etiquetades puguin mostrar contingut NSFW (+18) a l’aplicació.</string> | ||||
|     <plurals name="missing_chapters_warning"> | ||||
|         <item quantity="one">S’ha omès %d capítol. És possible que manqui a la font o que hagi estat filtrat</item> | ||||
|         <item quantity="many">S’han omès %d capítols. És possible que manquin a la font o que hagin estat filtrats</item> | ||||
|         <item quantity="other">S’han omès %d capítols. És possible que manquin a la font o que hagin estat filtrats</item> | ||||
|     </plurals> | ||||
|     <string name="no_chapters_error">No s’ha trobat cap capítol</string> | ||||
|     <string name="chapter_settings_updated">S’ha actualitzat la configuració per defecte dels capítols</string> | ||||
|     <string name="set_chapter_settings_as_default">Estableix com a per defecte</string> | ||||
| @@ -572,11 +517,6 @@ | ||||
|     <string name="pref_remove_exclude_categories">Categories excloses</string> | ||||
|     <string name="information_empty_category_dialog">Encara no teniu cap categoria.</string> | ||||
|     <string name="enhanced_services">Serveis de seguiment millorats</string> | ||||
|     <plurals name="relative_time"> | ||||
|         <item quantity="one">Ahir</item> | ||||
|         <item quantity="many">Fa %1$d dies</item> | ||||
|         <item quantity="other">Fa %1$d dies</item> | ||||
|     </plurals> | ||||
|     <string name="relative_time_today">Avui</string> | ||||
|     <string name="label_default">Per defecte</string> | ||||
|     <string name="label_warning">Advertència</string> | ||||
| @@ -702,11 +642,6 @@ | ||||
|     <string name="download_ahead_info">Només funciona si el capítol actual i el següent ja estan baixats.</string> | ||||
|     <string name="crash_screen_title">Ups!</string> | ||||
|     <string name="crash_screen_description">S’ha produït un error inesperat al %s. Us suggerim que compartiu el registre d’errors al nostre canal d’assistència al Discord.</string> | ||||
|     <plurals name="next_unread_chapters"> | ||||
|         <item quantity="one">El següent capítol no llegit</item> | ||||
|         <item quantity="many">Els següents %d capítols no llegits</item> | ||||
|         <item quantity="other">Els següents %d capítols no llegits</item> | ||||
|     </plurals> | ||||
|     <string name="missing_storage_permission">No s’han concedit permisos d’emmagatzematge</string> | ||||
|     <string name="popular">Populars</string> | ||||
|     <string name="pref_backup_summary">Còpies de seguretat automàtiques i manuals i espai d’emmagatzematge</string> | ||||
| @@ -761,11 +696,6 @@ | ||||
|     <string name="label_tracked_titles">Elements seguits</string> | ||||
|     <string name="label_mean_score">Puntuació mitjana</string> | ||||
|     <string name="information_required_plain">*obligatori</string> | ||||
|     <plurals name="download_amount"> | ||||
|         <item quantity="one">El següent capítol</item> | ||||
|         <item quantity="many">Els següents %d capítols</item> | ||||
|         <item quantity="other">Els següents %d capítols</item> | ||||
|     </plurals> | ||||
|     <string name="information_no_manga_category">La categoria és buida</string> | ||||
|     <string name="label_used">En ús</string> | ||||
|     <string name="not_applicable">N/A</string> | ||||
| @@ -785,20 +715,10 @@ | ||||
|     <string name="overlay_header">Superposició</string> | ||||
|     <string name="pref_page_rotate_invert">Inverteix l’orientació de les pàgines amples rotades</string> | ||||
|     <string name="pref_page_rotate">Rota les pàgines amples perquè s’ajustin a la pantalla</string> | ||||
|     <plurals name="missing_chapters"> | ||||
|         <item quantity="one">Manca %1$s capítol</item> | ||||
|         <item quantity="many">Manquen %1$s capítols</item> | ||||
|         <item quantity="other">Manquen %1$s capítols</item> | ||||
|     </plurals> | ||||
|     <string name="pref_debug_info">Informació de depuració</string> | ||||
|     <string name="action_set_interval">Estableix l’interval</string> | ||||
|     <string name="action_filter_interval_custom">Interval d’obtenció personalitzat</string> | ||||
|     <string name="action_sort_next_updated">Pròxima actualització prevista</string> | ||||
|     <plurals name="day"> | ||||
|         <item quantity="one">1 dia</item> | ||||
|         <item quantity="many">%d dies</item> | ||||
|         <item quantity="other">%d dies</item> | ||||
|     </plurals> | ||||
|     <string name="action_filter_interval_long">Obtén mensualment (28 dies)</string> | ||||
|     <string name="action_filter_interval_late">Endarrerit 10 o més dies</string> | ||||
|     <string name="action_filter_interval_dropped">Abandonat\? Endarrerit 20 o més dies i 2 mesos</string> | ||||
							
								
								
									
										23
									
								
								i18n/src/commonMain/resources/MR/ceb/plurals.xml
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										23
									
								
								i18n/src/commonMain/resources/MR/ceb/plurals.xml
									
									
									
									
									
										Normal file
									
								
							| @@ -0,0 +1,23 @@ | ||||
| <?xml version="1.0" encoding="utf-8"?> | ||||
| <resources> | ||||
|     <plurals name="num_categories"> | ||||
|         <item quantity="one">%d Kategoriya</item> | ||||
|         <item quantity="other">%d Mga kategoriya</item> | ||||
|     </plurals> | ||||
|     <plurals name="lock_after_mins"> | ||||
|         <item quantity="one">Human sa %1$s ka minuto</item> | ||||
|         <item quantity="other">Human sa %1$s ka minuto</item> | ||||
|     </plurals> | ||||
|     <plurals name="relative_time"> | ||||
|         <item quantity="one">Kagahapon</item> | ||||
|         <item quantity="other">%1$d ka adlaw ang milabay</item> | ||||
|     </plurals> | ||||
|     <plurals name="restore_completed_message"> | ||||
|         <item quantity="one">Nabuhat sa %1$s nga adunay %2$s nga sayup</item> | ||||
|         <item quantity="other">Nabuhat sa %1$s nga adunay %2$s nga mga sayop</item> | ||||
|     </plurals> | ||||
|     <plurals name="download_queue_summary"> | ||||
|         <item quantity="one">%1$s ang nahibilin</item> | ||||
|         <item quantity="other">%1$s ang nahibilin</item> | ||||
|     </plurals> | ||||
| </resources> | ||||
| @@ -46,10 +46,6 @@ | ||||
|     <string name="action_sort_latest_chapter">Pinakabag-o nga kapitulo</string> | ||||
|     <string name="action_filter_empty">Kuhaa ang filter</string> | ||||
|     <string name="action_sort_last_manga_update">Katapusan nga update sa manga</string> | ||||
|     <plurals name="num_categories"> | ||||
|         <item quantity="one">%d Kategoriya</item> | ||||
|         <item quantity="other">%d Mga kategoriya</item> | ||||
|     </plurals> | ||||
|     <string name="all">Tanan</string> | ||||
|     <string name="information_no_recent">Walay bag-o nga mga update</string> | ||||
|     <string name="categorized_display_settings">Matag-kategorya nga mga setting alang sa paghan-ay ug pagpakita</string> | ||||
| @@ -154,14 +150,6 @@ | ||||
|     <string name="pref_update_only_started">Wala pa kana nagsugod</string> | ||||
|     <string name="pref_library_update_refresh_metadata">Awtomatikong i-refresh ang metadata</string> | ||||
|     <string name="default_category_summary">Pangutana kanunay</string> | ||||
|     <plurals name="lock_after_mins"> | ||||
|         <item quantity="one">Human sa %1$s ka minuto</item> | ||||
|         <item quantity="other">Human sa %1$s ka minuto</item> | ||||
|     </plurals> | ||||
|     <plurals name="relative_time"> | ||||
|         <item quantity="one">Kagahapon</item> | ||||
|         <item quantity="other">%1$d ka adlaw ang milabay</item> | ||||
|     </plurals> | ||||
|     <string name="action_desc">Nagpaubos</string> | ||||
|     <string name="action_order_by_upload_date">Pinaagi sa petsa sa pag-upload</string> | ||||
|     <string name="action_order_by_chapter_number">Pinaagi sa numero sa kapitulo</string> | ||||
| @@ -388,10 +376,6 @@ | ||||
|     <string name="restore_completed">Nakompleto ang pag-uli</string> | ||||
|     <string name="creating_backup">Paghimo og backup</string> | ||||
|     <string name="backup_restore_missing_trackers">Ang mga tracker wala naka-log in:</string> | ||||
|     <plurals name="restore_completed_message"> | ||||
|         <item quantity="one">Nabuhat sa %1$s nga adunay %2$s nga sayup</item> | ||||
|         <item quantity="other">Nabuhat sa %1$s nga adunay %2$s nga mga sayop</item> | ||||
|     </plurals> | ||||
|     <string name="restoring_backup">Pag-uli sa backup</string> | ||||
|     <string name="cookies_cleared">Gilimpyohan ang mga cookies</string> | ||||
|     <string name="label_data">Data</string> | ||||
| @@ -449,10 +433,6 @@ | ||||
|     <string name="check_for_updates">Susiha ang mga update</string> | ||||
|     <string name="updated_version">Mga update sa v%1$s</string> | ||||
|     <string name="pref_enable_acra">Ipadala ang mga taho sa pagkahagsa</string> | ||||
|     <plurals name="download_queue_summary"> | ||||
|         <item quantity="one">%1$s ang nahibilin</item> | ||||
|         <item quantity="other">%1$s ang nahibilin</item> | ||||
|     </plurals> | ||||
|     <string name="logout_success">Naka-log out ka na karon</string> | ||||
|     <string name="password">Password</string> | ||||
|     <string name="login">Login</string> | ||||
							
								
								
									
										83
									
								
								i18n/src/commonMain/resources/MR/cs/plurals.xml
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										83
									
								
								i18n/src/commonMain/resources/MR/cs/plurals.xml
									
									
									
									
									
										Normal file
									
								
							| @@ -0,0 +1,83 @@ | ||||
| <?xml version="1.0" encoding="utf-8"?> | ||||
| <resources> | ||||
|     <plurals name="lock_after_mins"> | ||||
|         <item quantity="one">Po %1$s minutě</item> | ||||
|         <item quantity="few">Po %1$s minutách</item> | ||||
|         <item quantity="other">Po %1$s minutách</item> | ||||
|     </plurals> | ||||
|     <plurals name="manga_num_chapters"> | ||||
|         <item quantity="one">%1$s kapitola</item> | ||||
|         <item quantity="few">%1$s kapitoly</item> | ||||
|         <item quantity="other">%1$s kapitol</item> | ||||
|     </plurals> | ||||
|     <plurals name="download_queue_summary"> | ||||
|         <item quantity="one">%1$s zbývá</item> | ||||
|         <item quantity="few">%1$s zbývají</item> | ||||
|         <item quantity="other">%1$s zbývá</item> | ||||
|     </plurals> | ||||
|     <plurals name="restore_completed_message"> | ||||
|         <item quantity="one">Dokončeno za %1$s s %2$s chybou</item> | ||||
|         <item quantity="few">Dokončeno za %1$s s %2$s chybami</item> | ||||
|         <item quantity="other">Dokončeno za %1$s s %2$s chybami</item> | ||||
|     </plurals> | ||||
|     <plurals name="num_categories"> | ||||
|         <item quantity="one">%d kategorie</item> | ||||
|         <item quantity="few">%d kategorie</item> | ||||
|         <item quantity="other">%d kategorií</item> | ||||
|     </plurals> | ||||
|     <plurals name="update_check_notification_ext_updates"> | ||||
|         <item quantity="one">Je dostupná aktualizace rozšíření</item> | ||||
|         <item quantity="few">Jsou dostupné %d aktualizace rozšíření</item> | ||||
|         <item quantity="other">Je dostupných %d aktualizací rozšíření</item> | ||||
|     </plurals> | ||||
|     <plurals name="notification_chapters_multiple_and_more"> | ||||
|         <item quantity="one">Kapitoly %1$s a 1 další</item> | ||||
|         <item quantity="few">Kapitoly %1$s a %2$d další</item> | ||||
|         <item quantity="other">Kapitoly %1$s a %2$d dalších</item> | ||||
|     </plurals> | ||||
|     <plurals name="notification_chapters_generic"> | ||||
|         <item quantity="one">%1$d nová kapitola</item> | ||||
|         <item quantity="few">%1$d nové kapitoly</item> | ||||
|         <item quantity="other">%1$d nových kapitol</item> | ||||
|     </plurals> | ||||
|     <plurals name="notification_new_chapters_summary"> | ||||
|         <item quantity="one">Pro %d položku</item> | ||||
|         <item quantity="few">Pro %d položky</item> | ||||
|         <item quantity="other">Pro %d položek</item> | ||||
|     </plurals> | ||||
|     <plurals name="missing_chapters_warning"> | ||||
|         <item quantity="one">Přeskočena %d kapitola, buď chybí ve zdroji nebo byla vyfiltrována</item> | ||||
|         <item quantity="few">Přeskočeny %d kapitoly, buď chybí ve zdroji nebo byly vyfiltrovány</item> | ||||
|         <item quantity="other">Přeskočeno %d kapitol, buď chybí ve zdroji nebo byly vyfiltrovány</item> | ||||
|     </plurals> | ||||
|     <plurals name="num_trackers"> | ||||
|         <item quantity="one">%d sledovač</item> | ||||
|         <item quantity="few">%d sledovače</item> | ||||
|         <item quantity="other">%d sledovačů</item> | ||||
|     </plurals> | ||||
|     <plurals name="relative_time"> | ||||
|         <item quantity="one">Včera</item> | ||||
|         <item quantity="few">Před %1$d dny</item> | ||||
|         <item quantity="other">Před %1$d dny</item> | ||||
|     </plurals> | ||||
|     <plurals name="next_unread_chapters"> | ||||
|         <item quantity="one">Další nepřečtená kapitola</item> | ||||
|         <item quantity="few">Další %d nepřečtené kapitoly</item> | ||||
|         <item quantity="other">Dalších %d nepřečtených kapitol</item> | ||||
|     </plurals> | ||||
|     <plurals name="download_amount"> | ||||
|         <item quantity="one">Další kapitola</item> | ||||
|         <item quantity="few">Další %d kapitoly</item> | ||||
|         <item quantity="other">Dalších %d kapitol</item> | ||||
|     </plurals> | ||||
|     <plurals name="missing_chapters"> | ||||
|         <item quantity="one">Chybí %1$s kapitola</item> | ||||
|         <item quantity="few">Chybí %1$s kapitoly</item> | ||||
|         <item quantity="other">Chybí %1$s kapitol</item> | ||||
|     </plurals> | ||||
|     <plurals name="day"> | ||||
|         <item quantity="one">1 den</item> | ||||
|         <item quantity="few">%d dny</item> | ||||
|         <item quantity="other">%d dní</item> | ||||
|     </plurals> | ||||
| </resources> | ||||
| @@ -208,7 +208,7 @@ | ||||
|     <string name="pref_create_backup">Vytvořit zálohu</string> | ||||
|     <string name="pref_restore_backup">Obnovit zálohu</string> | ||||
|     <string name="pref_backup_directory">Místo zálohy</string> | ||||
|     <string name="pref_backup_interval">Frekvence zálohy</string> | ||||
|     <string name="pref_backup_interval">Frekvence automatických záloh</string> | ||||
|     <string name="backup_created">Záloha vytvořena</string> | ||||
|     <string name="restore_completed">Obnova dokončena</string> | ||||
|     <string name="backup_choice">Co chcete zálohovat\?</string> | ||||
| @@ -258,7 +258,7 @@ | ||||
|     <string name="fifth_to_last">Pátá předposlední přečtená kapitola</string> | ||||
|     <string name="pref_create_backup_summ">Lze použít k obnovení aktuální knihovny</string> | ||||
|     <string name="pref_restore_backup_summ">Obnovit knihovnu ze záložního souboru</string> | ||||
|     <string name="pref_backup_slots">Maximum záloh</string> | ||||
|     <string name="pref_backup_slots">Maximum automatických záloh</string> | ||||
|     <string name="login_title">Přihlásit se do %1$s</string> | ||||
|     <string name="show_title">Název zdroje</string> | ||||
|     <string name="show_chapter_number">Číslo kapitoly</string> | ||||
| @@ -307,11 +307,6 @@ | ||||
|     <string name="spen_previous_page">Předchozí stránka</string> | ||||
|     <string name="spen_next_page">Následující stránka</string> | ||||
|     <string name="hide_notification_content">Skrýt obsah oznámení</string> | ||||
|     <plurals name="lock_after_mins"> | ||||
|         <item quantity="one">Po %1$s minutě</item> | ||||
|         <item quantity="few">Po %1$s minutách</item> | ||||
|         <item quantity="other">Po %1$s minutách</item> | ||||
|     </plurals> | ||||
|     <string name="lock_never">Nikdy</string> | ||||
|     <string name="lock_always">Vždy</string> | ||||
|     <string name="lock_when_idle">Uzamknout při nečinnosti</string> | ||||
| @@ -327,11 +322,6 @@ | ||||
|     <string name="confirm_set_chapter_settings">Jsi si jistý, že chceš tato nastavení uložit jako výchozí\?</string> | ||||
|     <string name="chapter_settings">Nastavení kapitoly</string> | ||||
|     <string name="sort_by_upload_date">Podle data nahrání</string> | ||||
|     <plurals name="manga_num_chapters"> | ||||
|         <item quantity="one">%1$s kapitola</item> | ||||
|         <item quantity="few">%1$s kapitoly</item> | ||||
|         <item quantity="other">%1$s kapitol</item> | ||||
|     </plurals> | ||||
|     <string name="manga_info_collapse">Méně</string> | ||||
|     <string name="manga_info_expand">Více</string> | ||||
|     <string name="in_library">V knihovně</string> | ||||
| @@ -347,11 +337,6 @@ | ||||
|     <string name="downloaded_chapters">Stažené kapitoly</string> | ||||
|     <string name="manga_from_library">Z knihovny</string> | ||||
|     <string name="email">Emailová adresa</string> | ||||
|     <plurals name="download_queue_summary"> | ||||
|         <item quantity="one">%1$s zbývá</item> | ||||
|         <item quantity="few">%1$s zbývají</item> | ||||
|         <item quantity="other">%1$s zbývá</item> | ||||
|     </plurals> | ||||
|     <string name="pref_incognito_mode_summary">Pozastaví historii čtení</string> | ||||
|     <string name="pref_incognito_mode">Anonymní režim</string> | ||||
|     <string name="label_downloaded_only">Pouze staženo</string> | ||||
| @@ -376,11 +361,6 @@ | ||||
|     <string name="restore_in_progress">Obnovení již probíhá</string> | ||||
|     <string name="creating_backup_error">Zálohování selhalo</string> | ||||
|     <string name="backup_in_progress">Zálohování již probíhá</string> | ||||
|     <plurals name="restore_completed_message"> | ||||
|         <item quantity="one">Dokončeno za %1$s s %2$s chybou</item> | ||||
|         <item quantity="few">Dokončeno za %1$s s %2$s chybami</item> | ||||
|         <item quantity="other">Dokončeno za %1$s s %2$s chybami</item> | ||||
|     </plurals> | ||||
|     <string name="restore_duration">%02d minut, %02d sekund</string> | ||||
|     <string name="backup_restore_content_full">Data ze zálohy budou obnovena. | ||||
| \n | ||||
| @@ -406,11 +386,6 @@ | ||||
|     <string name="ext_nsfw_short">18+</string> | ||||
|     <string name="unofficial_extension_message">Toto rozšíření není z oficiálního seznamu rozšíření.</string> | ||||
|     <string name="ext_unofficial">Neoficiální</string> | ||||
|     <plurals name="num_categories"> | ||||
|         <item quantity="one">%d kategorie</item> | ||||
|         <item quantity="few">%d kategorie</item> | ||||
|         <item quantity="other">%d kategorií</item> | ||||
|     </plurals> | ||||
|     <string name="pref_library_update_refresh_metadata_summary">Kontrolovat dostupnost nových přebalů a detailů při aktualizaci knihovny</string> | ||||
|     <string name="pref_library_update_refresh_metadata">Automaticky obnovovat metadata</string> | ||||
|     <string name="parental_controls_info">Toto nastavení nemůže zamezit neoficiálním nebo špatně označeným rozšířením v zobrazování NSFW (18+) obsahu v aplikaci.</string> | ||||
| @@ -442,29 +417,9 @@ | ||||
|     <string name="information_webview_outdated">Prosím aktualizujte aplikaci WebView pro lepší kompatibilitu</string> | ||||
|     <string name="information_webview_required">Je nutné mít nainstalovanou aplikaci WebView pro správné fungování aplikace</string> | ||||
|     <string name="information_cloudflare_bypass_failure">Nastala chyba při obcházení služby Cloudflare</string> | ||||
|     <plurals name="update_check_notification_ext_updates"> | ||||
|         <item quantity="one">Je dostupná aktualizace rozšíření</item> | ||||
|         <item quantity="few">Jsou dostupné %d aktualizace rozšíření</item> | ||||
|         <item quantity="other">Je dostupných %d aktualizací rozšíření</item> | ||||
|     </plurals> | ||||
|     <plurals name="notification_chapters_multiple_and_more"> | ||||
|         <item quantity="one">Kapitoly %1$s a 1 další</item> | ||||
|         <item quantity="few">Kapitoly %1$s a %2$d další</item> | ||||
|         <item quantity="other">Kapitoly %1$s a %2$d dalších</item> | ||||
|     </plurals> | ||||
|     <string name="notification_chapters_multiple">Kapitoly %1$s</string> | ||||
|     <string name="notification_chapters_single_and_more">Kapitola %1$s a %2$d dalších</string> | ||||
|     <string name="notification_chapters_single">Kapitola %1$s</string> | ||||
|     <plurals name="notification_chapters_generic"> | ||||
|         <item quantity="one">%1$d nová kapitola</item> | ||||
|         <item quantity="few">%1$d nové kapitoly</item> | ||||
|         <item quantity="other">%1$d nových kapitol</item> | ||||
|     </plurals> | ||||
|     <plurals name="notification_new_chapters_summary"> | ||||
|         <item quantity="one">Pro %d položku</item> | ||||
|         <item quantity="few">Pro %d položky</item> | ||||
|         <item quantity="other">Pro %d položek</item> | ||||
|     </plurals> | ||||
|     <string name="notification_check_updates">Hledám nové kapitoly</string> | ||||
|     <string name="download_insufficient_space">Nelze stáhnout kapitoly kvůli nedostatku místa</string> | ||||
|     <string name="migration_help_guide">Návod k přesunu zdrojů</string> | ||||
| @@ -473,11 +428,6 @@ | ||||
|     <string name="clear_history_completed">Historie vymazána</string> | ||||
|     <string name="recent_manga_time">Kap. %1$s - %2$s</string> | ||||
|     <string name="updating_library">Aktualizuji knihovnu</string> | ||||
|     <plurals name="missing_chapters_warning"> | ||||
|         <item quantity="one">Přeskočena %d kapitola, buď chybí ve zdroji nebo byla vyfiltrována</item> | ||||
|         <item quantity="few">Přeskočeny %d kapitoly, buď chybí ve zdroji nebo byly vyfiltrovány</item> | ||||
|         <item quantity="other">Přeskočeno %d kapitol, buď chybí ve zdroji nebo byly vyfiltrovány</item> | ||||
|     </plurals> | ||||
|     <string name="loader_not_implemented_error">Zdroj nenalezen</string> | ||||
|     <string name="page_list_empty_error">Žádné stránky nenalezeny</string> | ||||
|     <string name="myanimelist_relogin">Prosím přihlašte se do MAL znovu</string> | ||||
| @@ -498,11 +448,6 @@ | ||||
|     <string name="pref_show_reading_mode">Ukazovat režim čtení</string> | ||||
|     <string name="pref_category_for_this_series">Pro tuto sérii</string> | ||||
|     <string name="share_page_info">%1$s: %2$s, strana %3$d</string> | ||||
|     <plurals name="num_trackers"> | ||||
|         <item quantity="one">%d sledovač</item> | ||||
|         <item quantity="few">%d sledovače</item> | ||||
|         <item quantity="other">%d sledovačů</item> | ||||
|     </plurals> | ||||
|     <string name="also_set_chapter_settings_for_library">Také nastavit pro všechny položky v mé knihovně</string> | ||||
|     <string name="pref_category_reading">Čtení</string> | ||||
|     <string name="pref_show_reading_mode_summary">Při otevření čtečky krátce zobrazí aktuální režim</string> | ||||
| @@ -587,11 +532,6 @@ | ||||
|     <string name="getting_started_guide">Příručka Začínáme</string> | ||||
|     <string name="pref_tablet_ui_mode">Uživatelské rozhraní tabletu</string> | ||||
|     <string name="action_track">Sledovat</string> | ||||
|     <plurals name="relative_time"> | ||||
|         <item quantity="one">Včera</item> | ||||
|         <item quantity="few">Před %1$d dny</item> | ||||
|         <item quantity="other">Před %1$d dny</item> | ||||
|     </plurals> | ||||
|     <string name="relative_time_today">Dnes</string> | ||||
|     <string name="theme_tealturquoise">Modrozelená a Tyrkysová</string> | ||||
|     <string name="pref_category_appearance">Vzhled</string> | ||||
| @@ -607,7 +547,7 @@ | ||||
|     <string name="ext_app_info">Info o Aplikaci</string> | ||||
|     <string name="pref_inverted_colors">Invertované</string> | ||||
|     <string name="label_warning">Varování</string> | ||||
|     <string name="backup_info">Kopie záloh by jste také měli uchovat na více místech. Zálohy mohou obsahovat citlivé informace včetně jakýchkoliv uložených hesel; buďte opatrní při sdílení.</string> | ||||
|     <string name="backup_info">Kopie záloh byste také měli uchovat na více místech. Zálohy mohou obsahovat citlivé informace, včetně jakýchkoliv uložených hesel; při sdílení buďte opatrní.</string> | ||||
|     <string name="action_sort_count">Celkem položek</string> | ||||
|     <string name="action_select_inverse">Vybrat obráceně</string> | ||||
|     <string name="action_display_language_badge">Jazyk</string> | ||||
| @@ -695,11 +635,6 @@ | ||||
|     <string name="error_user_agent_string_blank">Řetězec uživatelského agenta nemůže být prázdný</string> | ||||
|     <string name="theme_tidalwave">Přílivová Vlna</string> | ||||
|     <string name="download_ahead">Stáhování dopředu</string> | ||||
|     <plurals name="next_unread_chapters"> | ||||
|         <item quantity="one">Další nepřečtená kapitola</item> | ||||
|         <item quantity="few">Další %d nepřečtené kapitoly</item> | ||||
|         <item quantity="other">Dalších %d nepřečtených kapitol</item> | ||||
|     </plurals> | ||||
|     <string name="auto_download_while_reading">Automatické stahování při čtení</string> | ||||
|     <string name="download_ahead_info">Funguje pouze v případě, že aktuální kapitola + následující kapitola jsou již staženy.</string> | ||||
|     <string name="are_you_sure">Jste si jistí\?</string> | ||||
| @@ -720,7 +655,7 @@ | ||||
|     <string name="pref_advanced_summary">Výpis protokolů selhání, optimalizace baterie</string> | ||||
|     <string name="crash_screen_description">%s narazil na neočekávanou chybu. Doporučujeme vám sdílet protokoly o selhání a poté je sdílet v našem kanálu podpory na Discordu.</string> | ||||
|     <string name="crash_screen_restart_application">Restartujte aplikaci</string> | ||||
|     <string name="pref_backup_summary">Ruční a automatické zálohování</string> | ||||
|     <string name="pref_backup_summary">Ruční a automatické zálohování, místo v úložišti</string> | ||||
|     <string name="crash_screen_title">Ups!</string> | ||||
|     <string name="invalid_location">Neplatné umístění: %s</string> | ||||
|     <string name="unknown_title">Neznámý titul</string> | ||||
| @@ -769,22 +704,12 @@ | ||||
|     <string name="track_error">%1$s chyba: %2$s</string> | ||||
|     <string name="information_required_plain">*vyžadováno</string> | ||||
|     <string name="pref_hide_in_library_items">Skrýt položky, které jsou již v knihovně</string> | ||||
|     <plurals name="download_amount"> | ||||
|         <item quantity="one">Další kapitola</item> | ||||
|         <item quantity="few">Další %d kapitoly</item> | ||||
|         <item quantity="other">Dalších %d kapitol</item> | ||||
|     </plurals> | ||||
|     <string name="action_copy_to_clipboard">Zkopírovat do schránky</string> | ||||
|     <string name="action_update_category">Aktualizovat kategorii</string> | ||||
|     <string name="split_tall_images">Rozdělit vysoké obrázky</string> | ||||
|     <string name="overlay_header">Překrytí</string> | ||||
|     <string name="pref_page_rotate_invert">Překlopení orientace otočených širokých stránek</string> | ||||
|     <string name="pref_page_rotate">Otočení širokých stránek tak, aby se vešly</string> | ||||
|     <plurals name="missing_chapters"> | ||||
|         <item quantity="one">Chybí %1$s kapitola</item> | ||||
|         <item quantity="few">Chybí %1$s kapitoly</item> | ||||
|         <item quantity="other">Chybí %1$s kapitol</item> | ||||
|     </plurals> | ||||
|     <string name="pref_debug_info">Ladící informace</string> | ||||
|     <string name="pref_chapter_swipe">Přejetí po kapitole</string> | ||||
|     <string name="pref_chapter_swipe_end">Přejetí prstem doprava</string> | ||||
| @@ -801,11 +726,6 @@ | ||||
|     <string name="manga_display_modified_interval_title">Nastavit aktualizaci každých</string> | ||||
|     <string name="action_set_interval">Nastavit interval</string> | ||||
|     <string name="action_filter_interval_dropped">Opuštěný\? Pozdě 20+ a 2 měsíce</string> | ||||
|     <plurals name="day"> | ||||
|         <item quantity="one">1 den</item> | ||||
|         <item quantity="few">%d dny</item> | ||||
|         <item quantity="other">%d dní</item> | ||||
|     </plurals> | ||||
|     <string name="pref_update_only_in_release_period">Mimo očekávané období vydání</string> | ||||
|     <string name="intervals_header">Intervaly</string> | ||||
|     <string name="skipped_reason_not_in_release_period">Přeskočeno, protože dnes nebylo očekáváno žádné vydání</string> | ||||
| @@ -833,5 +753,18 @@ | ||||
|     <string name="source_settings">Nastavení zdroje</string> | ||||
|     <string name="notification_updating_progress">Aktualizace knihovny... (%s)</string> | ||||
|     <string name="action_sort_category">Seřadit kategorie</string> | ||||
|     <string name="sort_category_confirmation">Chtěli by jste seřadit kategorie abecedně\?</string> | ||||
|     <string name="sort_category_confirmation">Chtěli byste seřadit kategorie abecedně?</string> | ||||
|     <string name="action_create">Vytvořit</string> | ||||
|     <string name="relative_time_span_never">Nikdy</string> | ||||
|     <string name="pref_flash_page_summ">Snižuje vytváření artefaktů na e-ink displejích</string> | ||||
|     <string name="action_apply">Použít</string> | ||||
|     <string name="action_revert_to_default">Vrátit na výchozí</string> | ||||
|     <string name="last_auto_backup_info">Poslední automatická záloha: %s</string> | ||||
|     <string name="no_scanlators_found">Žádní překladatelé nenalezeni</string> | ||||
|     <string name="scanlator">Překladatel</string> | ||||
|     <string name="pref_flash_page">Ukázat bílo při změně stránky</string> | ||||
|     <string name="pref_storage_usage">Využití úložiště</string> | ||||
|     <string name="label_data_storage">Data a úložiště</string> | ||||
|     <string name="file_null_uri_error">Nevybrán žádný soubor</string> | ||||
|     <string name="exclude_scanlators">Vynechat překladatele</string> | ||||
| </resources> | ||||
							
								
								
									
										51
									
								
								i18n/src/commonMain/resources/MR/cv/plurals.xml
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										51
									
								
								i18n/src/commonMain/resources/MR/cv/plurals.xml
									
									
									
									
									
										Normal file
									
								
							| @@ -0,0 +1,51 @@ | ||||
| <?xml version="1.0" encoding="utf-8"?> | ||||
| <resources> | ||||
|     <plurals name="num_categories"> | ||||
|         <item quantity="one">%d пухмӑш</item> | ||||
|         <item quantity="other">%d пухмӑш</item> | ||||
|     </plurals> | ||||
|     <plurals name="lock_after_mins"> | ||||
|         <item quantity="one">1 минут хыҫҫӑн</item> | ||||
|         <item quantity="other">%1$s минут хыҫҫӑн</item> | ||||
|     </plurals> | ||||
|     <plurals name="restore_completed_message"> | ||||
|         <item quantity="one">%1$s,%2$s йӑнӑшпа тӑвӑннӑ</item> | ||||
|         <item quantity="other">%1$s, %2$s йӑнӑшпа тӑвӑннӑ</item> | ||||
|     </plurals> | ||||
|     <plurals name="update_check_notification_ext_updates"> | ||||
|         <item quantity="one">Хушма валли ҫӗнетӳ пур</item> | ||||
|         <item quantity="other">%d хушма валли ҫӗнетӳ пур</item> | ||||
|     </plurals> | ||||
|     <plurals name="notification_chapters_multiple_and_more"> | ||||
|         <item quantity="one">%1$s сыпӑкӗсем</item> | ||||
|         <item quantity="other">%1$s сыпӑкӗсем тата ытти %2$d</item> | ||||
|     </plurals> | ||||
|     <plurals name="notification_chapters_generic"> | ||||
|         <item quantity="one">1 ҫӗнӗ сыпӑк</item> | ||||
|         <item quantity="other">%1$d ҫӗнӗ сыпӑк</item> | ||||
|     </plurals> | ||||
|     <plurals name="notification_new_chapters_summary"> | ||||
|         <item quantity="one">Ҫӗнӗ сыпӑксем 1 хайлав валли тупӑннӑ</item> | ||||
|         <item quantity="other">Ҫӗнӗ сыпӑксем %d хайлав валли тупӑннӑ</item> | ||||
|     </plurals> | ||||
|     <plurals name="manga_num_chapters"> | ||||
|         <item quantity="one">1 сыпӑк</item> | ||||
|         <item quantity="other">%1$s сыпӑк</item> | ||||
|     </plurals> | ||||
|     <plurals name="download_queue_summary"> | ||||
|         <item quantity="one">1 юлчӗ</item> | ||||
|         <item quantity="other">%1$s юлчӗ</item> | ||||
|     </plurals> | ||||
|     <plurals name="num_trackers"> | ||||
|         <item quantity="one">1 сӑнану</item> | ||||
|         <item quantity="other">%d сӑнану</item> | ||||
|     </plurals> | ||||
|     <plurals name="missing_chapters_warning"> | ||||
|         <item quantity="one">1 сыпӑк ҫук</item> | ||||
|         <item quantity="other">%d сыпӑк ҫук</item> | ||||
|     </plurals> | ||||
|     <plurals name="relative_time"> | ||||
|         <item quantity="one">Ӗнер</item> | ||||
|         <item quantity="other">%1$d кун кайалла</item> | ||||
|     </plurals> | ||||
| </resources> | ||||
| @@ -36,10 +36,6 @@ | ||||
|     <string name="ext_install">Ларт</string> | ||||
|     <string name="ext_update">Ҫӗнет</string> | ||||
|     <string name="all">Пурне те</string> | ||||
|     <plurals name="num_categories"> | ||||
|         <item quantity="one">%d пухмӑш</item> | ||||
|         <item quantity="other">%d пухмӑш</item> | ||||
|     </plurals> | ||||
|     <string name="default_category_summary">Кашнинчех ыйтмалла</string> | ||||
|     <string name="charging">Петтерей тулнӑ чух</string> | ||||
|     <string name="pref_library_update_restriction">Хатӗр валли хӑй-хальлӗн ҫӗнетӳ чарӑвӗсем</string> | ||||
| @@ -52,10 +48,6 @@ | ||||
|     <string name="pref_category_library_update">Пӗтӗмӗшле ҫӗнетӳ</string> | ||||
|     <string name="pref_category_display">Кӑтарт</string> | ||||
|     <string name="secure_screen">Ыкран сыхлавӗ</string> | ||||
|     <plurals name="lock_after_mins"> | ||||
|         <item quantity="one">1 минут хыҫҫӑн</item> | ||||
|         <item quantity="other">%1$s минут хыҫҫӑн</item> | ||||
|     </plurals> | ||||
|     <string name="pref_category_security">Сыхлав тата вӑрттӑнлӑх</string> | ||||
|     <string name="pref_manage_notifications">Систерӳсене ӗнер</string> | ||||
|     <string name="pref_date_format">Ҫул-кун хармачӗ</string> | ||||
| @@ -255,10 +247,6 @@ | ||||
| \nСийенлӗ хушма упранакан кирек мӗнле шут пӗлӗмӗсене шута илме йе хӑй ирӗклӗ йума пурнӑҫлама пултарать. | ||||
| \n | ||||
| \nҪак ӗнентерӳ хутне шаннипе есӗ ҫав теветкеле йышӑнатӑн.</string> | ||||
|     <plurals name="restore_completed_message"> | ||||
|         <item quantity="one">%1$s,%2$s йӑнӑшпа тӑвӑннӑ</item> | ||||
|         <item quantity="other">%1$s, %2$s йӑнӑшпа тӑвӑннӑ</item> | ||||
|     </plurals> | ||||
|     <string name="add_tracking">Сӑнану хуш</string> | ||||
|     <string name="manga_tracking_tab">Сӑна</string> | ||||
|     <string name="custom_filter">Усӑҫ али</string> | ||||
| @@ -279,10 +267,6 @@ | ||||
|     <string name="download_notifier_unknown_error">Кӗтмен йӑнӑша пула сыпӑксене тийесе илеймест</string> | ||||
|     <string name="download_notifier_downloader_title">Тийевҫӗ</string> | ||||
|     <string name="information_webview_required">Tachiyomi валли WebView кирлӗ</string> | ||||
|     <plurals name="update_check_notification_ext_updates"> | ||||
|         <item quantity="one">Хушма валли ҫӗнетӳ пур</item> | ||||
|         <item quantity="other">%d хушма валли ҫӗнетӳ пур</item> | ||||
|     </plurals> | ||||
|     <string name="update_check_notification_download_in_progress">Тийев…</string> | ||||
|     <string name="update_check_no_new_updates">Ҫӗнетӳсем тупӑнман</string> | ||||
|     <string name="update_check_confirm">Тиесе ил</string> | ||||
| @@ -291,18 +275,6 @@ | ||||
|     <string name="notification_cover_update_failed">Хуплашкана ҫӗнетеймерӗ</string> | ||||
|     <string name="notification_chapters_single_and_more">%1$s сыпӑкӗ тата ытти %2$d</string> | ||||
|     <string name="notification_chapters_multiple">%1$s сыпӑкӗсем</string> | ||||
|     <plurals name="notification_chapters_multiple_and_more"> | ||||
|         <item quantity="one">%1$s сыпӑкӗсем</item> | ||||
|         <item quantity="other">%1$s сыпӑкӗсем тата ытти %2$d</item> | ||||
|     </plurals> | ||||
|     <plurals name="notification_chapters_generic"> | ||||
|         <item quantity="one">1 ҫӗнӗ сыпӑк</item> | ||||
|         <item quantity="other">%1$d ҫӗнӗ сыпӑк</item> | ||||
|     </plurals> | ||||
|     <plurals name="notification_new_chapters_summary"> | ||||
|         <item quantity="one">Ҫӗнӗ сыпӑксем 1 хайлав валли тупӑннӑ</item> | ||||
|         <item quantity="other">Ҫӗнӗ сыпӑксем %d хайлав валли тупӑннӑ</item> | ||||
|     </plurals> | ||||
|     <string name="notification_check_updates">Ҫӗнӗ сыпӑксен пуррине тӗрӗслени</string> | ||||
|     <string name="download_queue_error">Сыпӑксене тийесе илме пулмасть. Тийевсем пайӗнче ҫӗнӗрен хӑтланса пӑхма пултаратӑн</string> | ||||
|     <string name="copy">Ӑтавла</string> | ||||
| @@ -361,10 +333,6 @@ | ||||
|     <string name="copied_to_clipboard">Пайлашу буфере ӑтавланӑ: | ||||
| \n%1$s</string> | ||||
|     <string name="delete_downloads_for_manga">Тиенӗ сыпӑксене катертмелле-и\?</string> | ||||
|     <plurals name="manga_num_chapters"> | ||||
|         <item quantity="one">1 сыпӑк</item> | ||||
|         <item quantity="other">%1$s сыпӑк</item> | ||||
|     </plurals> | ||||
|     <string name="manga_info_collapse">Сахалрах</string> | ||||
|     <string name="manga_info_expand">Ытларах</string> | ||||
|     <string name="manga_removed_library">Вулавӑшран катерт</string> | ||||
| @@ -400,10 +368,6 @@ | ||||
|     <string name="email">Ылӑккӑтрунлӑ пуштӑ тӗлӗ</string> | ||||
|     <string name="username">Усӑҫ ячӗ</string> | ||||
|     <string name="login_title">%1$s кӗр</string> | ||||
|     <plurals name="download_queue_summary"> | ||||
|         <item quantity="one">1 юлчӗ</item> | ||||
|         <item quantity="other">%1$s юлчӗ</item> | ||||
|     </plurals> | ||||
|     <string name="downloaded_only_summary">Санӑн вулавӑшри манкка алат</string> | ||||
|     <string name="pref_enable_acra">Ӳкнисем ҫинчен тишереревсем ямалла</string> | ||||
|     <string name="check_for_updates">Ҫӗнетӳсем пуррине тӗрӗсле</string> | ||||
| @@ -449,10 +413,6 @@ | ||||
|     <string name="download_insufficient_space">Тиск ҫинче вырӑн ҫитмен пирки сыпӑксем тийенеймерӗҫ</string> | ||||
|     <string name="action_global_search_query">\"%1$s\" пур ҫӗрте шыра</string> | ||||
|     <string name="pref_category_reading_mode">Вулав тытӑмӗ</string> | ||||
|     <plurals name="num_trackers"> | ||||
|         <item quantity="one">1 сӑнану</item> | ||||
|         <item quantity="other">%d сӑнану</item> | ||||
|     </plurals> | ||||
|     <string name="no_pinned_sources">Санӑн ҫакнӑ ҫӑл куҫ ҫук</string> | ||||
|     <string name="channel_complete">Вӗҫленӗ</string> | ||||
|     <string name="channel_progress">Ӳсӗм</string> | ||||
| @@ -463,10 +423,6 @@ | ||||
|     <string name="ext_nsfw_warning">NSFW (18+) шалаш пулма пултарать</string> | ||||
|     <string name="ext_nsfw_short">18+</string> | ||||
|     <string name="parental_controls_info">Ҫакӑ апра чӑнлавлӑ мар йе тӗрӗс мар палӑртнӑ хушмасен NSFW (18+) шалашне кӑтартма чӑрмантармасть.</string> | ||||
|     <plurals name="missing_chapters_warning"> | ||||
|         <item quantity="one">1 сыпӑк ҫук</item> | ||||
|         <item quantity="other">%d сыпӑк ҫук</item> | ||||
|     </plurals> | ||||
|     <string name="no_chapters_error">Сыпӑксем ҫук</string> | ||||
|     <string name="also_set_chapter_settings_for_library">Тата манӑн вулавăшри пур манкӑ валли усӑ кур</string> | ||||
|     <string name="chapter_settings_updated">Яланхилле сыпӑк ӗнерлев ҫӗнетнӗ</string> | ||||
| @@ -575,10 +531,6 @@ | ||||
|     <string name="theme_greenapple">Симӗс пан улми</string> | ||||
|     <string name="theme_yotsuba">Йутсупа</string> | ||||
|     <string name="pref_library_update_manga_restriction">Серилӗхсене ҫӗнетнине сиктер</string> | ||||
|     <plurals name="relative_time"> | ||||
|         <item quantity="one">Ӗнер</item> | ||||
|         <item quantity="other">%1$d кун кайалла</item> | ||||
|     </plurals> | ||||
|     <string name="network_not_metered">Чараксӑр тетел урлӑ ҫеҫ</string> | ||||
|     <string name="pref_update_only_started">Серилӗхе пуҫламан</string> | ||||
|     <string name="theme_tako">Такку</string> | ||||
							
								
								
									
										19
									
								
								i18n/src/commonMain/resources/MR/da/plurals.xml
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										19
									
								
								i18n/src/commonMain/resources/MR/da/plurals.xml
									
									
									
									
									
										Normal file
									
								
							| @@ -0,0 +1,19 @@ | ||||
| <?xml version="1.0" encoding="utf-8"?> | ||||
| <resources> | ||||
|     <plurals name="relative_time"> | ||||
|         <item quantity="one">I går</item> | ||||
|         <item quantity="other">%1$d dage siden</item> | ||||
|     </plurals> | ||||
|     <plurals name="lock_after_mins"> | ||||
|         <item quantity="one">Efter %1$s minut</item> | ||||
|         <item quantity="other">Efter %1$s minutter</item> | ||||
|     </plurals> | ||||
|     <plurals name="num_categories"> | ||||
|         <item quantity="one">%d kategori</item> | ||||
|         <item quantity="other">%d kategorier</item> | ||||
|     </plurals> | ||||
|     <plurals name="next_unread_chapters"> | ||||
|         <item quantity="one">Næste ulæste kapitel</item> | ||||
|         <item quantity="other">Næste %d ulæste kapitler</item> | ||||
|     </plurals> | ||||
| </resources> | ||||
| @@ -10,7 +10,7 @@ | ||||
|     <string name="action_filter_bookmarked">Bogmærket</string> | ||||
|     <string name="action_filter_empty">Fjern filter</string> | ||||
|     <string name="action_select_inverse">Inverter valg</string> | ||||
|     <string name="action_mark_as_read">Makér som læst</string> | ||||
|     <string name="action_mark_as_read">Markér som læst</string> | ||||
|     <string name="action_mark_as_unread">Markér som ulæst</string> | ||||
|     <string name="action_mark_previous_as_read">Markér tidligere som læst</string> | ||||
|     <string name="action_download">Download</string> | ||||
| @@ -18,7 +18,7 @@ | ||||
|     <string name="action_enable_all">Aktivér alt</string> | ||||
|     <string name="action_edit">Rediger</string> | ||||
|     <string name="action_rename_category">Omdøb kategori</string> | ||||
|     <string name="action_edit_cover">Rediger cover</string> | ||||
|     <string name="action_edit_cover">Rediger omslag</string> | ||||
|     <string name="action_view_chapters">Se kapitler</string> | ||||
|     <string name="action_display_comfortable_grid">Komfortabelt grid</string> | ||||
|     <string name="action_display_cover_only_grid">Kun covers som grid</string> | ||||
| @@ -27,7 +27,7 @@ | ||||
|     <string name="label_more">Mere</string> | ||||
|     <string name="label_library">Bibliotek</string> | ||||
|     <string name="categories">Kategorier</string> | ||||
|     <string name="manga">Manga</string> | ||||
|     <string name="manga">Biblioteksposter</string> | ||||
|     <string name="chapters">Kapitler</string> | ||||
|     <string name="track">Sporing</string> | ||||
|     <string name="label_sources">Kilder</string> | ||||
| @@ -51,13 +51,13 @@ | ||||
|     <string name="action_menu">Menu</string> | ||||
|     <string name="action_sort_date_added">Dato tilføjet</string> | ||||
|     <string name="action_select_all">Vælg alt</string> | ||||
|     <string name="action_search_settings">Søge indstillinger</string> | ||||
|     <string name="action_search_settings">Søgeindstillinger</string> | ||||
|     <string name="action_update_library">Opdater bibliotek</string> | ||||
|     <string name="action_add_category">Tilføj kategori</string> | ||||
|     <string name="action_next_chapter">Næste kapitel</string> | ||||
|     <string name="action_retry">Forsøg igen</string> | ||||
|     <string name="action_display_language_badge">Sprog</string> | ||||
|     <string name="action_sort_total">Kapitler ialt</string> | ||||
|     <string name="action_sort_total">Kapitler i alt</string> | ||||
|     <string name="action_sort_latest_chapter">Seneste kapitel</string> | ||||
|     <string name="action_global_search">Global søgning</string> | ||||
|     <string name="action_delete">Slet</string> | ||||
| @@ -82,7 +82,7 @@ | ||||
|     <string name="action_display_local_badge">Lokale manga</string> | ||||
|     <string name="action_filter_tracked">Sporet</string> | ||||
|     <string name="action_move_category">Vælg kategorier</string> | ||||
|     <string name="action_display_show_tabs">Vis kategori tabs</string> | ||||
|     <string name="action_display_show_tabs">Vis kategorifaner</string> | ||||
|     <string name="confirm_lock_change">Godkend for at bekræfte ænding</string> | ||||
|     <string name="action_display_show_number_of_items">Vis antal genstande</string> | ||||
|     <string name="action_disable">Deaktivér</string> | ||||
| @@ -144,18 +144,10 @@ | ||||
|     <string name="pref_manage_notifications">Håndter notifikationer</string> | ||||
|     <string name="pref_category_security">Sikkerhed</string> | ||||
|     <string name="lock_with_biometrics">Kræv oplåsning</string> | ||||
|     <plurals name="relative_time"> | ||||
|         <item quantity="one">I går</item> | ||||
|         <item quantity="other">%1$d dage siden</item> | ||||
|     </plurals> | ||||
|     <string name="pref_category_nsfw_content">NSFW (18+) kilder</string> | ||||
|     <string name="pref_show_nsfw_source">Vis i kilder og udvidelsesliste</string> | ||||
|     <string name="parental_controls_info">Dette forhindrer ikke uofficielle eller potentielt ukorrekt markerede udvidelser fra at vise NSFW (18+) indhold i appen.</string> | ||||
|     <string name="relative_time_today">I dag</string> | ||||
|     <plurals name="lock_after_mins"> | ||||
|         <item quantity="one">Efter %1$s minut</item> | ||||
|         <item quantity="other">Efter %1$s minutter</item> | ||||
|     </plurals> | ||||
|     <string name="lock_when_idle">Lås ved inaktivitet</string> | ||||
|     <string name="lock_always">Altid</string> | ||||
|     <string name="lock_never">Aldrig</string> | ||||
| @@ -192,10 +184,6 @@ | ||||
|     <string name="action_sort_last_manga_update">Nyeste manga opdateringer</string> | ||||
|     <string name="action_sort_unread_count">Antal ulæst</string> | ||||
|     <string name="delete_category">Slet kategori</string> | ||||
|     <plurals name="num_categories"> | ||||
|         <item quantity="one">%d kategori</item> | ||||
|         <item quantity="other">%d kategorier</item> | ||||
|     </plurals> | ||||
|     <string name="exclude">Ekskluder: %s</string> | ||||
|     <string name="theme_lavender">Lavendel</string> | ||||
|     <string name="default_category_summary">Spørg altid</string> | ||||
| @@ -215,4 +203,124 @@ | ||||
|     <string name="in_library">I Biblioteket</string> | ||||
|     <string name="remove_from_library">Fjern fra biblioteket</string> | ||||
|     <string name="logout">Log af</string> | ||||
|     <string name="scale_type_fit_height">Tilpas højde</string> | ||||
|     <string name="label_stats">Statistik</string> | ||||
|     <string name="pref_fullscreen">Fuldskærmsvisning</string> | ||||
|     <string name="white_background">Hvid</string> | ||||
|     <string name="ext_pending">Ventende</string> | ||||
|     <string name="pref_library_columns_per_row">%d pr. række</string> | ||||
|     <string name="ext_installer_pref">Installationsprogram</string> | ||||
|     <string name="action_copy_to_clipboard">Kopiér til udklipsholder</string> | ||||
|     <string name="unlock_app_title">Lås op for %s</string> | ||||
|     <string name="pref_skip_filtered_chapters">Spring over filtrerede kapitler</string> | ||||
|     <string name="label_downloaded">Nedhentet</string> | ||||
|     <string name="ext_info_version">Version</string> | ||||
|     <string name="action_set_interval">Angiv interval</string> | ||||
|     <string name="delete_downloaded">Slet nedhentede</string> | ||||
|     <string name="action_apply">Anvend</string> | ||||
|     <string name="scale_type_fit_width">Tilpas bredde</string> | ||||
|     <string name="pref_reader_theme">Baggrundsfarve</string> | ||||
|     <string name="ext_info_language">Sprog</string> | ||||
|     <string name="pref_viewer_type">Standardlæsetilstand</string> | ||||
|     <string name="action_revert_to_default">Nulstil til standard</string> | ||||
|     <string name="ext_install">Installér</string> | ||||
|     <string name="on">Til</string> | ||||
|     <string name="disabled_nav">Deaktiveret</string> | ||||
|     <string name="action_search_hint">Søg…</string> | ||||
|     <string name="nav_zone_next">Næste</string> | ||||
|     <string name="action_sort_category">Sortér kategorier</string> | ||||
|     <string name="pref_skip_read_chapters">Spring over kapitler markeret som læst</string> | ||||
|     <string name="pref_downloads_summary">Automatisk nedhentning, nedhent forud</string> | ||||
|     <string name="ext_installing">Installerer</string> | ||||
|     <string name="tapping_inverted_vertical">Lodret</string> | ||||
|     <string name="action_update_category">Opdatér kategori</string> | ||||
|     <string name="ext_update_all">Opdater alle</string> | ||||
|     <string name="ext_updates_pending">Opdateringer venter</string> | ||||
|     <string name="off">Fra</string> | ||||
|     <string name="pref_backup_summary">Manuel og automatisk sikkerhedskopiering, lagerplads</string> | ||||
|     <string name="action_move_to_bottom_all_for_series">Flyt serie til bunden</string> | ||||
|     <string name="scanlator">Scanlator</string> | ||||
|     <string name="ext_update">Opdater</string> | ||||
|     <string name="tapping_inverted_both">Begge</string> | ||||
|     <string name="tapping_inverted_horizontal">Vandret</string> | ||||
|     <string name="label_data_storage">Data og lagring</string> | ||||
|     <string name="sort_category_confirmation">Vil du sortere kategorierne i alfabetisk rækkefølge?</string> | ||||
|     <string name="pref_reader_summary">Læsetilstand, skærmvisning, navigation</string> | ||||
|     <string name="nav_zone_right">Højre</string> | ||||
|     <string name="nav_zone_prev">Forrige</string> | ||||
|     <string name="ext_downloading">Henter ned</string> | ||||
|     <string name="ext_nsfw_short">18+</string> | ||||
|     <string name="ext_uninstall">Afinstallér</string> | ||||
|     <string name="action_not_now">Ikke nu</string> | ||||
|     <string name="ext_install_service_notif">Installerer udvidelse…</string> | ||||
|     <string name="pref_show_page_number">Vis sidetal</string> | ||||
|     <string name="label_started">Påbegyndt</string> | ||||
|     <string name="pref_show_reading_mode">Vis læsetilstand</string> | ||||
|     <string name="pref_update_only_in_release_period">Uden for forventet udgivelsesperiode</string> | ||||
|     <string name="ext_installed">Installeret</string> | ||||
|     <string name="action_ok">OK</string> | ||||
|     <string name="right_and_left_nav">Højre og Venstre</string> | ||||
|     <string name="scale_type_stretch">Stræk</string> | ||||
|     <string name="black_background">Sort</string> | ||||
|     <string name="automatic_background">Automatisk</string> | ||||
|     <string name="pref_appearance_summary">Tema, dato- og tidsformat</string> | ||||
|     <string name="pref_relative_format">Relative tidsstempler</string> | ||||
|     <string name="ext_obsolete">Forældet</string> | ||||
|     <string name="gray_background">Grå</string> | ||||
|     <string name="pref_relative_format_summary">\"%1$s\" i stedet for \"%2$s\"</string> | ||||
|     <string name="action_sort_next_updated">Næste forventede opdatering</string> | ||||
|     <string name="ext_unofficial">Uofficiel</string> | ||||
|     <string name="pref_browse_summary">Kilder, udvidelser, global søgning</string> | ||||
|     <string name="nav_zone_left">Venstre</string> | ||||
|     <string name="backup_created">Sikkerhedskopi oprettet</string> | ||||
|     <string name="pref_always_show_chapter_transition">Vis altid kapitelovergang</string> | ||||
|     <string name="action_create">Opret</string> | ||||
|     <string name="pref_restore_backup">Gendan sikkerhedskopi</string> | ||||
|     <string name="channel_skipped">Sprunget over</string> | ||||
|     <string name="used_cache">Brugt: %1$s</string> | ||||
|     <string name="pref_lowest">Laveste</string> | ||||
|     <string name="rotation_type">Rotation</string> | ||||
|     <string name="pref_category_delete_chapters">Slet kapitler</string> | ||||
|     <string name="pref_create_backup">Opret sikkerhedskopi</string> | ||||
|     <string name="rotation_portrait">Stående</string> | ||||
|     <string name="pref_category_reading">Læser</string> | ||||
|     <string name="channel_ext_updates">Udvidelsesopdateringer</string> | ||||
|     <string name="creating_backup_error">Sikkerhedskopiering mislykkedes</string> | ||||
|     <string name="pref_backup_directory">Placering af sikkerhedskopi</string> | ||||
|     <string name="rotation_free">Fri</string> | ||||
|     <string name="channel_errors">Fejl</string> | ||||
|     <string name="restore_completed">Gendannelse fuldført</string> | ||||
|     <string name="pref_remove_exclude_categories">Udelukkede kategorier</string> | ||||
|     <string name="fifth_to_last">Femtesidst læste kapitel</string> | ||||
|     <string name="invalid_backup_file">Ugyldig sikkerhedskopieringsfil</string> | ||||
|     <string name="channel_app_updates">Appopdateringer</string> | ||||
|     <string name="spen_next_page">Næste side</string> | ||||
|     <string name="exception_offline">Ingen internetforbindelse</string> | ||||
|     <string name="label_data">Data</string> | ||||
|     <string name="pref_category_reading_mode">Læsetilstand</string> | ||||
|     <string name="remove_manga">Du er ved at fjerne \"%s\" fra dit bibliotek</string> | ||||
|     <string name="pref_highest">Højeste</string> | ||||
|     <string name="pref_backup_slots">Maksimale antal automatiske sikkerhedskopier</string> | ||||
|     <string name="pref_low">Lav</string> | ||||
|     <string name="source_settings">Kildeindstillinger</string> | ||||
|     <string name="app_settings">App-indstillinger</string> | ||||
|     <string name="fourth_to_last">Fjerdesidst læste kapitel</string> | ||||
|     <string name="rotation_landscape">Liggende</string> | ||||
|     <string name="requires_app_restart">Kræver genstart af appen for at træde i kraft</string> | ||||
|     <string name="pref_backup_interval">Automatisk sikkerhedskopieringsfrekvens</string> | ||||
|     <string name="split_tall_images">Opdel høje billeder</string> | ||||
|     <string name="disabled">Deaktiveret</string> | ||||
|     <string name="last_read_chapter">Senest læste kapitel</string> | ||||
|     <string name="restore_duration">%02d min, %02d sek</string> | ||||
|     <string name="pref_high">Høj</string> | ||||
|     <string name="pref_restore_backup_summ">Gendan biblioteket fra sikkerhedskopi</string> | ||||
|     <string name="spen_previous_page">Forrige side</string> | ||||
|     <string name="third_to_last">Tredjesidst læste kapitel</string> | ||||
|     <string name="invalid_location">Ugyldig placering: %s</string> | ||||
|     <string name="pref_create_backup_summ">Kan bruges til at gendanne nuværende bibliotek</string> | ||||
|     <string name="exception_http">HTTP %d, tjek websiden i WebView</string> | ||||
|     <string name="second_to_last">Næstsidst læste kapitel</string> | ||||
|     <string name="creating_backup">Opretter sikkerhedskopi</string> | ||||
|     <string name="exception_unknown_host">Kunne ikke nå %s</string> | ||||
|     <string name="channel_new_chapters">Kapitelopdateringer</string> | ||||
| </resources> | ||||
							
								
								
									
										67
									
								
								i18n/src/commonMain/resources/MR/de/plurals.xml
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										67
									
								
								i18n/src/commonMain/resources/MR/de/plurals.xml
									
									
									
									
									
										Normal file
									
								
							| @@ -0,0 +1,67 @@ | ||||
| <?xml version="1.0" encoding="utf-8"?> | ||||
| <resources> | ||||
|     <plurals name="lock_after_mins"> | ||||
|         <item quantity="one">Nach %1$s Minute</item> | ||||
|         <item quantity="other">Nach %1$s Minuten</item> | ||||
|     </plurals> | ||||
|     <plurals name="notification_chapters_generic"> | ||||
|         <item quantity="one">%1$d neues Kapitel</item> | ||||
|         <item quantity="other">%1$d neue Kapitel</item> | ||||
|     </plurals> | ||||
|     <plurals name="notification_chapters_multiple_and_more"> | ||||
|         <item quantity="one">Kapitel %1$s und 1 mehr</item> | ||||
|         <item quantity="other">Kapitel %1$s und %2$d mehr</item> | ||||
|     </plurals> | ||||
|     <plurals name="notification_new_chapters_summary"> | ||||
|         <item quantity="one">Für %d Eintrag</item> | ||||
|         <item quantity="other">Für %d Einträge</item> | ||||
|     </plurals> | ||||
|     <plurals name="update_check_notification_ext_updates"> | ||||
|         <item quantity="one">Erweiterungsaktualisierung verfügbar</item> | ||||
|         <item quantity="other">%d Erweiterungsaktualisierungen verfügbar</item> | ||||
|     </plurals> | ||||
|     <plurals name="download_queue_summary"> | ||||
|         <item quantity="one">%1$s verbleibend</item> | ||||
|         <item quantity="other">%1$s verbleibend</item> | ||||
|     </plurals> | ||||
|     <plurals name="num_categories"> | ||||
|         <item quantity="one">%d Kategorie</item> | ||||
|         <item quantity="other">%d Kategorien</item> | ||||
|     </plurals> | ||||
|     <plurals name="restore_completed_message"> | ||||
|         <item quantity="one">Erledigt in %1$s mit %2$s Fehler</item> | ||||
|         <item quantity="other">Erledigt in %1$s mit %2$s Fehlern</item> | ||||
|     </plurals> | ||||
|     <plurals name="manga_num_chapters"> | ||||
|         <item quantity="one">%1$s Kapitel</item> | ||||
|         <item quantity="other">%1$s Kapitel</item> | ||||
|     </plurals> | ||||
|     <plurals name="num_trackers"> | ||||
|         <item quantity="one">%d Tracker</item> | ||||
|         <item quantity="other">%d Tracker</item> | ||||
|     </plurals> | ||||
|     <plurals name="missing_chapters_warning"> | ||||
|         <item quantity="one">%d Kapitel wird übersprungen, da die Quelle dieses entweder nicht besitzt, oder weil es rausgefiltert wurde</item> | ||||
|         <item quantity="other">%d Kapitel werden übersprungen, da die Quelle diese entweder nicht besitzt, oder weil sie rausgefiltert wurden</item> | ||||
|     </plurals> | ||||
|     <plurals name="relative_time"> | ||||
|         <item quantity="one">Gestern</item> | ||||
|         <item quantity="other">Vor %1$d Tagen</item> | ||||
|     </plurals> | ||||
|     <plurals name="next_unread_chapters"> | ||||
|         <item quantity="one">Nächstes ungelesenes Kapitel</item> | ||||
|         <item quantity="other">Nächste %d ungelesene Kapitel</item> | ||||
|     </plurals> | ||||
|     <plurals name="download_amount"> | ||||
|         <item quantity="one">Nächstes Kapitel</item> | ||||
|         <item quantity="other">Nächste %d Kapitel</item> | ||||
|     </plurals> | ||||
|     <plurals name="missing_chapters"> | ||||
|         <item quantity="one">%1$s Kapitel fehlt</item> | ||||
|         <item quantity="other">%1$s Kapitel fehlen</item> | ||||
|     </plurals> | ||||
|     <plurals name="day"> | ||||
|         <item quantity="one">1 Tag</item> | ||||
|         <item quantity="other">%d Tage</item> | ||||
|     </plurals> | ||||
| </resources> | ||||
| @@ -315,10 +315,6 @@ | ||||
|     <string name="lock_when_idle">Während Inaktivität sperren</string> | ||||
|     <string name="lock_always">Immer</string> | ||||
|     <string name="lock_never">Nie</string> | ||||
|     <plurals name="lock_after_mins"> | ||||
|         <item quantity="one">Nach %1$s Minute</item> | ||||
|         <item quantity="other">Nach %1$s Minuten</item> | ||||
|     </plurals> | ||||
|     <string name="secure_screen">Sicherer Bildschirm</string> | ||||
|     <string name="ext_updates_pending">Aktualisierungen ausstehend</string> | ||||
|     <string name="pref_cutout_short">Inhalt im Ausschnittbereich anzeigen</string> | ||||
| @@ -327,17 +323,9 @@ | ||||
|     <string name="channel_new_chapters">Kapitelaktualisierungen</string> | ||||
|     <string name="secure_screen_summary">Sicherer Bildschirm verbirgt App-Inhalte beim Wechseln von Apps und blockiert Screenshots</string> | ||||
|     <string name="pref_category_display">Anzeige</string> | ||||
|     <plurals name="notification_chapters_generic"> | ||||
|         <item quantity="one">%1$d neues Kapitel</item> | ||||
|         <item quantity="other">%1$d neue Kapitel</item> | ||||
|     </plurals> | ||||
|     <string name="notification_chapters_single">Kapitel %1$s</string> | ||||
|     <string name="notification_chapters_single_and_more">Kapitel %1$s und %2$d mehr</string> | ||||
|     <string name="notification_chapters_multiple">Kapitel %1$s</string> | ||||
|     <plurals name="notification_chapters_multiple_and_more"> | ||||
|         <item quantity="one">Kapitel %1$s und 1 mehr</item> | ||||
|         <item quantity="other">Kapitel %1$s und %2$d mehr</item> | ||||
|     </plurals> | ||||
|     <string name="hide_notification_content">Benachrichtigungsinhalt verbergen</string> | ||||
|     <string name="notification_check_updates">Überprüfe auf neue Kapitel</string> | ||||
|     <string name="pref_disable_battery_optimization">Akkuverbrauch-Optimierung deaktivieren</string> | ||||
| @@ -345,19 +333,11 @@ | ||||
|     <string name="battery_optimization_disabled">Akkuverbrauch-Optimierung ist bereits deaktiviert</string> | ||||
|     <string name="email">E-Mail-Adresse</string> | ||||
|     <string name="pref_always_show_chapter_transition">Kapitelübergang immer anzeigen</string> | ||||
|     <plurals name="notification_new_chapters_summary"> | ||||
|         <item quantity="one">Für %d Eintrag</item> | ||||
|         <item quantity="other">Für %d Einträge</item> | ||||
|     </plurals> | ||||
|     <string name="action_menu">Menü</string> | ||||
|     <string name="action_newest">Neueste</string> | ||||
|     <string name="action_oldest">Älteste</string> | ||||
|     <string name="action_move_to_top">Nach oben verschieben</string> | ||||
|     <string name="action_move_to_bottom">Nach unten verschieben</string> | ||||
|     <plurals name="update_check_notification_ext_updates"> | ||||
|         <item quantity="one">Erweiterungsaktualisierung verfügbar</item> | ||||
|         <item quantity="other">%d Erweiterungsaktualisierungen verfügbar</item> | ||||
|     </plurals> | ||||
|     <string name="channel_ext_updates">Erweiterungsaktualisierungen</string> | ||||
|     <string name="updating_library">Bibliothek wird aktualisiert</string> | ||||
|     <string name="pref_skip_filtered_chapters">Gefilterte Kapitel überspringen</string> | ||||
| @@ -389,23 +369,11 @@ | ||||
|     <string name="local_source_help_guide">Anleitung für lokale Quellen</string> | ||||
|     <string name="restore_duration">%02d min, %02d s</string> | ||||
|     <string name="downloaded_only_summary">Filtert alle Einträge in deiner Bibliothek</string> | ||||
|     <plurals name="download_queue_summary"> | ||||
|         <item quantity="one">%1$s verbleibend</item> | ||||
|         <item quantity="other">%1$s verbleibend</item> | ||||
|     </plurals> | ||||
|     <string name="gray_background">Grau</string> | ||||
|     <string name="viewer">Lesemodus</string> | ||||
|     <string name="pref_category_for_this_series">Für diese Serie</string> | ||||
|     <string name="pref_true_color_summary">Reduziert Streifenbildung, könnte aber die Leistung beeinflussen</string> | ||||
|     <plurals name="num_categories"> | ||||
|         <item quantity="one">%d Kategorie</item> | ||||
|         <item quantity="other">%d Kategorien</item> | ||||
|     </plurals> | ||||
|     <string name="battery_optimization_setting_activity_not_found">Geräteeinstellungen konnten nicht geöffnet werden</string> | ||||
|     <plurals name="restore_completed_message"> | ||||
|         <item quantity="one">Erledigt in %1$s mit %2$s Fehler</item> | ||||
|         <item quantity="other">Erledigt in %1$s mit %2$s Fehlern</item> | ||||
|     </plurals> | ||||
|     <string name="tracking_info">Einweg-Synchronisation zum Aktualisieren der Kapitelfortschritte in den externen Trackingdiensten. Richte Tracking für einzelne Einträge über deren jeweiligen Trackingbutton ein.</string> | ||||
|     <string name="pref_refresh_library_covers">Bibliothekscover aktualisieren</string> | ||||
|     <string name="unofficial_extension_message">Diese Erweiterung stammt nicht aus der offiziellen Liste.</string> | ||||
| @@ -429,10 +397,6 @@ | ||||
|     <string name="action_start">Starten</string> | ||||
|     <string name="loader_not_implemented_error">Quelle nicht gefunden</string> | ||||
|     <string name="action_disable">Deaktivieren</string> | ||||
|     <plurals name="manga_num_chapters"> | ||||
|         <item quantity="one">%1$s Kapitel</item> | ||||
|         <item quantity="other">%1$s Kapitel</item> | ||||
|     </plurals> | ||||
|     <string name="requires_app_restart">Erfordert einen Neustart der App, um wirksam zu werden</string> | ||||
|     <string name="label_network">Vernetzung</string> | ||||
|     <string name="pref_read_with_tapping_inverted">Tippzonen umkehren</string> | ||||
| @@ -449,10 +413,6 @@ | ||||
|     <string name="action_sort_date_added">Hinzufügedatum</string> | ||||
|     <string name="pref_category_reading_mode">Lesemodus</string> | ||||
|     <string name="pref_category_theme">Thema</string> | ||||
|     <plurals name="num_trackers"> | ||||
|         <item quantity="one">%d Tracker</item> | ||||
|         <item quantity="other">%d Tracker</item> | ||||
|     </plurals> | ||||
|     <string name="no_pinned_sources">Du hast keine angehefteten Quellen</string> | ||||
|     <string name="channel_complete">Abgeschlossen</string> | ||||
|     <string name="channel_progress">Fortschritt</string> | ||||
| @@ -463,10 +423,6 @@ | ||||
|     <string name="ext_nsfw_warning">Quellen dieser Erweiterung könnten NSFW/Ü18-Inhalte enthalten</string> | ||||
|     <string name="ext_nsfw_short">Ü18</string> | ||||
|     <string name="parental_controls_info">Dies verhindert nicht, dass inoffizielle oder möglicherweise falsch gekennzeichnete Erweiterungen NSFW/Ü18-Inhalte in der App anzeigen.</string> | ||||
|     <plurals name="missing_chapters_warning"> | ||||
|         <item quantity="one">%d Kapitel wird übersprungen, da die Quelle dieses entweder nicht besitzt, oder weil es rausgefiltert wurde</item> | ||||
|         <item quantity="other">%d Kapitel werden übersprungen, da die Quelle diese entweder nicht besitzt, oder weil sie rausgefiltert wurden</item> | ||||
|     </plurals> | ||||
|     <string name="no_chapters_error">Keine Kapitel gefunden</string> | ||||
|     <string name="chapter_settings_updated">Standard-Kapiteleinstellungen aktualisiert</string> | ||||
|     <string name="set_chapter_settings_as_default">Als Standard setzen</string> | ||||
| @@ -529,8 +485,8 @@ | ||||
|     <string name="clipboard_copy_error">Kopieren in die Zwischenablage fehlgeschlagen</string> | ||||
|     <string name="rotation_landscape">Querformat</string> | ||||
|     <string name="rotation_portrait">Hochformat</string> | ||||
|     <string name="pref_create_folder_per_manga_summary">Erstellt Ordner nach dem Titel der Einträge</string> | ||||
|     <string name="pref_create_folder_per_manga">Speichere Seiten in separate Ordner</string> | ||||
|     <string name="pref_create_folder_per_manga_summary">Erstellt Ordner nach den Titeln der Einträge</string> | ||||
|     <string name="pref_create_folder_per_manga">Seiten in separaten Ordnern speichern</string> | ||||
|     <string name="rotation_type">Ausrichtung</string> | ||||
|     <string name="pref_reader_actions">Aktionen</string> | ||||
|     <string name="pref_grayscale">Graustufen</string> | ||||
| @@ -576,10 +532,6 @@ | ||||
|     <string name="pref_highest">Höchste</string> | ||||
|     <string name="pref_hide_threshold">Empfindlichkeit für das Menü-Ausblenden beim Scrollen</string> | ||||
|     <string name="pref_inverted_colors">Invertiert</string> | ||||
|     <plurals name="relative_time"> | ||||
|         <item quantity="one">Gestern</item> | ||||
|         <item quantity="other">Vor %1$d Tagen</item> | ||||
|     </plurals> | ||||
|     <string name="relative_time_today">Heute</string> | ||||
|     <string name="theme_tealturquoise">Blaugrün & Türkis</string> | ||||
|     <string name="pref_category_appearance">Erscheinungsbild</string> | ||||
| @@ -684,10 +636,6 @@ | ||||
|     <string name="theme_tidalwave">Flutwelle</string> | ||||
|     <string name="download_ahead">Im Voraus herunterladen</string> | ||||
|     <string name="auto_download_while_reading">Automatisch während dem Lesen herunterladen</string> | ||||
|     <plurals name="next_unread_chapters"> | ||||
|         <item quantity="one">Nächstes ungelesenes Kapitel</item> | ||||
|         <item quantity="other">Nächste %d ungelesene Kapitel</item> | ||||
|     </plurals> | ||||
|     <string name="download_ahead_info">Funktioniert nur, wenn das aktuelle Kapitel sowie das darauf folgende bereits heruntergeladen sind.</string> | ||||
|     <string name="are_you_sure">Bist du dir sicher\?</string> | ||||
|     <string name="remove_manga">Du bist gerade dabei, „%s“ aus deiner Bibliothek zu entfernen</string> | ||||
| @@ -756,19 +704,11 @@ | ||||
|     <string name="track_error">%1$s-Fehler: %2$s</string> | ||||
|     <string name="information_required_plain">*erforderlich</string> | ||||
|     <string name="pref_hide_in_library_items">Einträge verbergen, die bereits in der Bibliothek sind</string> | ||||
|     <plurals name="download_amount"> | ||||
|         <item quantity="one">Nächstes Kapitel</item> | ||||
|         <item quantity="other">Nächste %d Kapitel</item> | ||||
|     </plurals> | ||||
|     <string name="action_copy_to_clipboard">In die Zwischenablage kopieren</string> | ||||
|     <string name="action_update_category">Kategorie aktualisieren</string> | ||||
|     <string name="split_tall_images">Hohe Bilder teilen</string> | ||||
|     <string name="overlay_header">Overlay</string> | ||||
|     <string name="pref_page_rotate">Breite Seiten drehen, damit sie passen</string> | ||||
|     <plurals name="missing_chapters"> | ||||
|         <item quantity="one">%1$s Kapitel fehlt</item> | ||||
|         <item quantity="other">%1$s Kapitel fehlen</item> | ||||
|     </plurals> | ||||
|     <string name="pref_page_rotate_invert">Ausrichtung gedrehter breiter Seiten spiegeln</string> | ||||
|     <string name="pref_debug_info">Debug-Info</string> | ||||
|     <string name="pref_chapter_swipe">Kapitelaktionen</string> | ||||
| @@ -777,10 +717,6 @@ | ||||
|     <string name="pref_double_tap_zoom">Zum Zoomen doppeltippen</string> | ||||
|     <string name="pref_library_columns_per_row">%d pro Zeile</string> | ||||
|     <string name="intervals_header">Intervalle</string> | ||||
|     <plurals name="day"> | ||||
|         <item quantity="one">1 Tag</item> | ||||
|         <item quantity="other">%d Tage</item> | ||||
|     </plurals> | ||||
|     <string name="action_filter_interval_custom">Benutzerdefiniertes Abrufintervall</string> | ||||
|     <string name="action_set_interval">Intervall einstellen</string> | ||||
|     <string name="action_filter_interval_long">Monatlich abrufen (28 Tage)</string> | ||||
| @@ -818,10 +754,18 @@ | ||||
|     <string name="notification_updating_progress">Bibliothek wird aktualisiert… (%s)</string> | ||||
|     <string name="action_sort_category">Kategorien sortieren</string> | ||||
|     <string name="sort_category_confirmation">Möchtest du die Kategorien alphabetisch sortieren\?</string> | ||||
|     <string name="file_null_uri_error">Dateiauswahl konnte keine Datei an die App zurückgeben</string> | ||||
|     <string name="file_null_uri_error">Keine Datei ausgewählt</string> | ||||
|     <string name="relative_time_span_never">Nie</string> | ||||
|     <string name="pref_flash_page_summ">Reduziert Ghosting auf E-Papier-Displays</string> | ||||
|     <string name="last_auto_backup_info">Zuletzt automatisch gesichert: %s</string> | ||||
|     <string name="pref_flash_page">Bei Umblättern weiß aufleuchten</string> | ||||
|     <string name="label_data_storage">Daten und Speicher</string> | ||||
|     <string name="action_create">Erstellen</string> | ||||
|     <string name="action_apply">Anwenden</string> | ||||
|     <string name="action_revert_to_default">Auf Standard zurücksetzen</string> | ||||
|     <string name="no_scanlators_found">Keine Scanlatoren gefunden</string> | ||||
|     <string name="scanlator">Scanlator</string> | ||||
|     <string name="pref_storage_usage">Speichernutzung</string> | ||||
|     <string name="action_sort_tracker_score">Tracker-Bewertung</string> | ||||
|     <string name="exclude_scanlators">Scanlatoren ausschließen</string> | ||||
| </resources> | ||||
							
								
								
									
										67
									
								
								i18n/src/commonMain/resources/MR/el/plurals.xml
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										67
									
								
								i18n/src/commonMain/resources/MR/el/plurals.xml
									
									
									
									
									
										Normal file
									
								
							| @@ -0,0 +1,67 @@ | ||||
| <?xml version="1.0" encoding="utf-8"?> | ||||
| <resources> | ||||
|     <plurals name="notification_chapters_generic"> | ||||
|         <item quantity="one">%1$d νέο κεφάλαιο</item> | ||||
|         <item quantity="other">%1$d νέα κεφάλαια</item> | ||||
|     </plurals> | ||||
|     <plurals name="notification_new_chapters_summary"> | ||||
|         <item quantity="one">Για %d καταχώριση</item> | ||||
|         <item quantity="other">Για %d καταχωρίσεις</item> | ||||
|     </plurals> | ||||
|     <plurals name="update_check_notification_ext_updates"> | ||||
|         <item quantity="one">Διαθέσιμη ενημέρωση επέκτασης</item> | ||||
|         <item quantity="other">%d διαθέσιμες ενημερώσεις επεκτάσεων</item> | ||||
|     </plurals> | ||||
|     <plurals name="lock_after_mins"> | ||||
|         <item quantity="one">Μετά από %1$s λεπτό</item> | ||||
|         <item quantity="other">Μετά από %1$s λεπτά</item> | ||||
|     </plurals> | ||||
|     <plurals name="notification_chapters_multiple_and_more"> | ||||
|         <item quantity="one">Κεφάλαια %1$s και 1 ακόμη</item> | ||||
|         <item quantity="other">Κεφάλαια %1$s και %2$d ακόμη</item> | ||||
|     </plurals> | ||||
|     <plurals name="download_queue_summary"> | ||||
|         <item quantity="one">%1$s που απομένει</item> | ||||
|         <item quantity="other">%1$s που απομένουν</item> | ||||
|     </plurals> | ||||
|     <plurals name="num_categories"> | ||||
|         <item quantity="one">%d κατηγορία</item> | ||||
|         <item quantity="other">%d κατηγορίες</item> | ||||
|     </plurals> | ||||
|     <plurals name="restore_completed_message"> | ||||
|         <item quantity="one">Έγινε σε %1$s με %2$s σφάλμα</item> | ||||
|         <item quantity="other">Έγινε σε %1$s με %2$s σφάλματα</item> | ||||
|     </plurals> | ||||
|     <plurals name="manga_num_chapters"> | ||||
|         <item quantity="one">%1$s κεφάλαιο</item> | ||||
|         <item quantity="other">%1$s κεφάλαια</item> | ||||
|     </plurals> | ||||
|     <plurals name="num_trackers"> | ||||
|         <item quantity="one">%d ιχνηλάτης</item> | ||||
|         <item quantity="other">%d ιχνηλάτες</item> | ||||
|     </plurals> | ||||
|     <plurals name="missing_chapters_warning"> | ||||
|         <item quantity="one">Παραλείπεται %d κεφάλαιο, είτε λείπει από την πηγή είτε έχει φιλτραριστεί</item> | ||||
|         <item quantity="other">Παραλείπονται %d κεφάλαια, είτε λείπουν από την πηγή είτε έχουν φιλτραριστεί</item> | ||||
|     </plurals> | ||||
|     <plurals name="relative_time"> | ||||
|         <item quantity="one">Εχθές</item> | ||||
|         <item quantity="other">%1$d μέρες πριν</item> | ||||
|     </plurals> | ||||
|     <plurals name="next_unread_chapters"> | ||||
|         <item quantity="one">Επόμενο αδιάβαστο κεφάλαιο</item> | ||||
|         <item quantity="other">Επόμενα %d αδιάβαστα κεφάλαια</item> | ||||
|     </plurals> | ||||
|     <plurals name="download_amount"> | ||||
|         <item quantity="one">Επόμενο κεφάλαιο</item> | ||||
|         <item quantity="other">Επόμενα %d κεφάλαια</item> | ||||
|     </plurals> | ||||
|     <plurals name="missing_chapters"> | ||||
|         <item quantity="one">Λείπει %1$s κεφάλαιο</item> | ||||
|         <item quantity="other">Λείπουν %1$s κεφάλαια</item> | ||||
|     </plurals> | ||||
|     <plurals name="day"> | ||||
|         <item quantity="one">1 ημέρα</item> | ||||
|         <item quantity="other">%d ημέρες</item> | ||||
|     </plurals> | ||||
| </resources> | ||||
| @@ -308,14 +308,6 @@ | ||||
|     <string name="notification_chapters_single_and_more">Κεφάλαιο %1$s και %2$d ακόμη</string> | ||||
|     <string name="notification_chapters_multiple">Κεφάλαια %1$s</string> | ||||
|     <string name="notification_chapters_single">Κεφάλαιο %1$s</string> | ||||
|     <plurals name="notification_chapters_generic"> | ||||
|         <item quantity="one">%1$d νέο κεφάλαιο</item> | ||||
|         <item quantity="other">%1$d νέα κεφάλαια</item> | ||||
|     </plurals> | ||||
|     <plurals name="notification_new_chapters_summary"> | ||||
|         <item quantity="one">Για %d καταχώριση</item> | ||||
|         <item quantity="other">Για %d καταχωρίσεις</item> | ||||
|     </plurals> | ||||
|     <string name="notification_check_updates">Έλεγχος για νέα κεφάλαια</string> | ||||
|     <string name="recent_manga_time">Κεφ. %1$s - %2$s</string> | ||||
|     <string name="updating_library">Ενημέρωση βιβλιοθήκης</string> | ||||
| @@ -326,10 +318,6 @@ | ||||
|     <string name="add_to_library">Προσθήκη στη βιβλιοθήκη</string> | ||||
|     <string name="local_source_help_guide">Οδηγός τοπικής πηγής</string> | ||||
|     <string name="information_cloudflare_bypass_failure">Αποτυχία παράκαμψης του Cloudflare</string> | ||||
|     <plurals name="update_check_notification_ext_updates"> | ||||
|         <item quantity="one">Διαθέσιμη ενημέρωση επέκτασης</item> | ||||
|         <item quantity="other">%d διαθέσιμες ενημερώσεις επεκτάσεων</item> | ||||
|     </plurals> | ||||
|     <string name="logout_success">Έχετε αποσυνδεθεί</string> | ||||
|     <string name="logout">Αποσύνδεση</string> | ||||
|     <string name="logout_title">Αποσύνδεση από %1$s;</string> | ||||
| @@ -357,10 +345,6 @@ | ||||
|     <string name="hide_notification_content">Απόκρυψη περιεχομένου ειδοποιήσεων</string> | ||||
|     <string name="secure_screen_summary">Η ασφαλής οθόνη αποκρύπτει τα περιεχόμενα εφαρμογών κατά την εναλλαγή εφαρμογών και εμποδίζει τα στιγμιότυπα οθόνης</string> | ||||
|     <string name="secure_screen">Ασφάλισε την οθόνη</string> | ||||
|     <plurals name="lock_after_mins"> | ||||
|         <item quantity="one">Μετά από %1$s λεπτό</item> | ||||
|         <item quantity="other">Μετά από %1$s λεπτά</item> | ||||
|     </plurals> | ||||
|     <string name="lock_never">Ποτέ</string> | ||||
|     <string name="lock_always">Πάντα</string> | ||||
|     <string name="lock_when_idle">Κλείδωμα όταν είναι αδρανής</string> | ||||
| @@ -384,28 +368,12 @@ | ||||
|     <string name="label_sources">Πηγές</string> | ||||
|     <string name="action_oldest">Παλαιότερο</string> | ||||
|     <string name="action_newest">Νεότερο</string> | ||||
|     <plurals name="notification_chapters_multiple_and_more"> | ||||
|         <item quantity="one">Κεφάλαια %1$s και 1 ακόμη</item> | ||||
|         <item quantity="other">Κεφάλαια %1$s και %2$d ακόμη</item> | ||||
|     </plurals> | ||||
|     <string name="downloaded_only_summary">Φιλτράρει όλες τις καταχωρήσεις στη βιβλιοθήκη σας</string> | ||||
|     <plurals name="download_queue_summary"> | ||||
|         <item quantity="one">%1$s που απομένει</item> | ||||
|         <item quantity="other">%1$s που απομένουν</item> | ||||
|     </plurals> | ||||
|     <string name="gray_background">Γκρι</string> | ||||
|     <string name="pref_true_color_summary">Μειώνει το banding, αλλά μπορεί να επηρεάσει την απόδοση</string> | ||||
|     <string name="viewer">Λειτουργία ανάγνωσης</string> | ||||
|     <string name="pref_category_for_this_series">Για αυτήν τη σειρά</string> | ||||
|     <plurals name="num_categories"> | ||||
|         <item quantity="one">%d κατηγορία</item> | ||||
|         <item quantity="other">%d κατηγορίες</item> | ||||
|     </plurals> | ||||
|     <string name="battery_optimization_setting_activity_not_found">Δεν ήταν δυνατό το άνοιγμα των ρυθμίσεων της συσκευής</string> | ||||
|     <plurals name="restore_completed_message"> | ||||
|         <item quantity="one">Έγινε σε %1$s με %2$s σφάλμα</item> | ||||
|         <item quantity="other">Έγινε σε %1$s με %2$s σφάλματα</item> | ||||
|     </plurals> | ||||
|     <string name="tracking_info">Μονόδρομος συγχρονισμός για ενημέρωση των υπηρεσιών εξωτερικής παρακολούθησης προόδου κεφαλαίων. Ρυθμίστε την παρακολούθηση για μεμονωμένες καταχωρήσεις από το κουμπί παρακολούθησης τους.</string> | ||||
|     <string name="pref_refresh_library_covers">Ανανέωση εξώφυλλων βιβλιοθήκης</string> | ||||
|     <string name="unofficial_extension_message">Αυτή η επέκταση δεν προέρχεται από την επίσημη λίστα.</string> | ||||
| @@ -429,10 +397,6 @@ | ||||
|     <string name="action_start">Έναρξη</string> | ||||
|     <string name="loader_not_implemented_error">Δεν βρέθηκε πηγή</string> | ||||
|     <string name="action_disable">Απενεργοποίηση</string> | ||||
|     <plurals name="manga_num_chapters"> | ||||
|         <item quantity="one">%1$s κεφάλαιο</item> | ||||
|         <item quantity="other">%1$s κεφάλαια</item> | ||||
|     </plurals> | ||||
|     <string name="requires_app_restart">Απαιτείται επανεκκίνηση της εφαρμογής για να τεθεί σε ισχύ</string> | ||||
|     <string name="label_network">Δίκτυο</string> | ||||
|     <string name="tapping_inverted_both">Και τα δυο</string> | ||||
| @@ -449,10 +413,6 @@ | ||||
|     <string name="pref_category_reading_mode">Λειτουργία ανάγνωσης</string> | ||||
|     <string name="pref_category_theme">Θέμα</string> | ||||
|     <string name="action_sort_date_added">Ημερομηνία προσθήκης</string> | ||||
|     <plurals name="num_trackers"> | ||||
|         <item quantity="one">%d ιχνηλάτης</item> | ||||
|         <item quantity="other">%d ιχνηλάτες</item> | ||||
|     </plurals> | ||||
|     <string name="no_pinned_sources">Δεν έχετε καρφιτσωμένες πηγές</string> | ||||
|     <string name="channel_complete">Ολοκληρωμένο</string> | ||||
|     <string name="channel_progress">Η λήψη ολοκληρώθηκε</string> | ||||
| @@ -463,10 +423,6 @@ | ||||
|     <string name="ext_nsfw_short">18+</string> | ||||
|     <string name="pref_remove_bookmarked_chapters">Να επιτρέπεται η διαγραφή κεφαλαίων με σελιδοδείκτη</string> | ||||
|     <string name="parental_controls_info">Αυτό δεν εμποδίζει τις ανεπίσημες ή ενδεχομένως εσφαλμένα επισημασμένες επεκτάσεις να εμφανίζουν περιεχόμενο NSFW (18+) μέσα στην εφαρμογή.</string> | ||||
|     <plurals name="missing_chapters_warning"> | ||||
|         <item quantity="one">Παραλείπεται %d κεφάλαιο, είτε λείπει από την πηγή είτε έχει φιλτραριστεί</item> | ||||
|         <item quantity="other">Παραλείπονται %d κεφάλαια, είτε λείπουν από την πηγή είτε έχουν φιλτραριστεί</item> | ||||
|     </plurals> | ||||
|     <string name="no_chapters_error">Δεν βρέθηκαν κεφάλαια</string> | ||||
|     <string name="chapter_settings_updated">Ενημερώθηκαν οι προεπιλεγμένες ρυθμίσεις κεφαλαίου</string> | ||||
|     <string name="set_chapter_settings_as_default">Ορισμός ως προεπιλογής</string> | ||||
| @@ -575,10 +531,6 @@ | ||||
|     <string name="pref_highest">Ύψιστη</string> | ||||
|     <string name="pref_high">Υψηλή</string> | ||||
|     <string name="pref_hide_threshold">Ευαισθησία για την απόκρυψη του μενού κατά την κύλιση</string> | ||||
|     <plurals name="relative_time"> | ||||
|         <item quantity="one">Εχθές</item> | ||||
|         <item quantity="other">%1$d μέρες πριν</item> | ||||
|     </plurals> | ||||
|     <string name="pref_inverted_colors">Αντεστραμμένο</string> | ||||
|     <string name="relative_time_today">Σήμερα</string> | ||||
|     <string name="theme_tealturquoise">Teal & Τιρκουάζ</string> | ||||
| @@ -684,10 +636,6 @@ | ||||
|     <string name="theme_tidalwave">Παλιρροϊκό κύμα</string> | ||||
|     <string name="download_ahead">Λήψη εκ των προτέρων</string> | ||||
|     <string name="auto_download_while_reading">Αυτόματη λήψη κατά την ανάγνωση</string> | ||||
|     <plurals name="next_unread_chapters"> | ||||
|         <item quantity="one">Επόμενο αδιάβαστο κεφάλαιο</item> | ||||
|         <item quantity="other">Επόμενα %d αδιάβαστα κεφάλαια</item> | ||||
|     </plurals> | ||||
|     <string name="download_ahead_info">Λειτουργεί μόνο εάν το τρέχον κεφάλαιο + το επόμενο έχουν ήδη ληφθεί.</string> | ||||
|     <string name="are_you_sure">Είστε σίγουροι;</string> | ||||
|     <string name="multi_lang">Πολλαπλό</string> | ||||
| @@ -755,19 +703,11 @@ | ||||
|     <string name="enhanced_services_not_installed">Διαθέσιμο αλλά η πηγή δεν έχει εγκατασταθεί: %s</string> | ||||
|     <string name="track_error">%1$s σφάλμα: %2$s</string> | ||||
|     <string name="information_required_plain">*απαιτούμενο</string> | ||||
|     <plurals name="download_amount"> | ||||
|         <item quantity="one">Επόμενο κεφάλαιο</item> | ||||
|         <item quantity="other">Επόμενα %d κεφάλαια</item> | ||||
|     </plurals> | ||||
|     <string name="pref_hide_in_library_items">Απόκρυψη καταχωρήσεων που βρίσκονται ήδη στη βιβλιοθήκη</string> | ||||
|     <string name="action_copy_to_clipboard">Αντιγραφή στο πρόχειρο</string> | ||||
|     <string name="action_update_category">Ενημέρωση κατηγορίας</string> | ||||
|     <string name="split_tall_images">Διαχωρισμός ψηλών εικόνων</string> | ||||
|     <string name="overlay_header">Επικάλυψη</string> | ||||
|     <plurals name="missing_chapters"> | ||||
|         <item quantity="one">Λείπει %1$s κεφάλαιο</item> | ||||
|         <item quantity="other">Λείπουν %1$s κεφάλαια</item> | ||||
|     </plurals> | ||||
|     <string name="pref_page_rotate">Περιστροφή πλατιών σελίδων για να χωρέσουν</string> | ||||
|     <string name="pref_page_rotate_invert">Αναστροφή του προσανατολισμού των πλατιών σελίδων που έχουν περιστραφεί</string> | ||||
|     <string name="pref_debug_info">Πληροφορίες εντοπισμού σφαλμάτων</string> | ||||
| @@ -783,10 +723,6 @@ | ||||
|     <string name="action_filter_interval_passed">Πέρασε την περίοδο ελέγχου</string> | ||||
|     <string name="pref_update_only_in_release_period">Εκτός αναμενόμενης περιόδου κυκλοφορίας</string> | ||||
|     <string name="intervals_header">Διαστήματα</string> | ||||
|     <plurals name="day"> | ||||
|         <item quantity="one">1 ημέρα</item> | ||||
|         <item quantity="other">%d ημέρες</item> | ||||
|     </plurals> | ||||
|     <string name="manga_display_interval_title">Εκτίμηση κάθε</string> | ||||
|     <string name="manga_display_modified_interval_title">Ρύθμιση για ενημέρωση κάθε</string> | ||||
|     <string name="action_filter_interval_long">Ανάκτηση μηνιαίως (28 ημέρες)</string> | ||||
							
								
								
									
										47
									
								
								i18n/src/commonMain/resources/MR/eo/plurals.xml
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										47
									
								
								i18n/src/commonMain/resources/MR/eo/plurals.xml
									
									
									
									
									
										Normal file
									
								
							| @@ -0,0 +1,47 @@ | ||||
| <?xml version="1.0" encoding="utf-8"?> | ||||
| <resources> | ||||
|     <plurals name="lock_after_mins"> | ||||
|         <item quantity="one">Post 1 minuto</item> | ||||
|         <item quantity="other">Post %1$s minutoj</item> | ||||
|     </plurals> | ||||
|     <plurals name="num_categories"> | ||||
|         <item quantity="one">%d kategorio</item> | ||||
|         <item quantity="other">%d kategorioj</item> | ||||
|     </plurals> | ||||
|     <plurals name="manga_num_chapters"> | ||||
|         <item quantity="one">1 ĉapitro</item> | ||||
|         <item quantity="other">%1$s ĉapitroj</item> | ||||
|     </plurals> | ||||
|     <plurals name="notification_chapters_multiple_and_more"> | ||||
|         <item quantity="one">Ĉapitroj %1$s kaj 1 pli</item> | ||||
|         <item quantity="other">Ĉapitroj %1$s kaj %2$d pli</item> | ||||
|     </plurals> | ||||
|     <plurals name="notification_chapters_generic"> | ||||
|         <item quantity="one">1 nova ĉapitro</item> | ||||
|         <item quantity="other">%1$d novaj ĉapitroj</item> | ||||
|     </plurals> | ||||
|     <plurals name="notification_new_chapters_summary"> | ||||
|         <item quantity="one">Por 1 titolo</item> | ||||
|         <item quantity="other">Por %d titoloj</item> | ||||
|     </plurals> | ||||
|     <plurals name="missing_chapters_warning"> | ||||
|         <item quantity="one">Mankas 1 ĉapitron</item> | ||||
|         <item quantity="other">Mankas %d ĉapitrojn</item> | ||||
|     </plurals> | ||||
|     <plurals name="num_trackers"> | ||||
|         <item quantity="one">1 ŝanĝspurilo</item> | ||||
|         <item quantity="other">%d ŝanĝspuriloj</item> | ||||
|     </plurals> | ||||
|     <plurals name="download_queue_summary"> | ||||
|         <item quantity="one">1 restas</item> | ||||
|         <item quantity="other">%1$s restas</item> | ||||
|     </plurals> | ||||
|     <plurals name="restore_completed_message"> | ||||
|         <item quantity="one">Farita en %1$s kun %2$s eraro</item> | ||||
|         <item quantity="other">Farita en %1$s kun %2$s eraroj</item> | ||||
|     </plurals> | ||||
|     <plurals name="relative_time"> | ||||
|         <item quantity="one">Hieraŭ</item> | ||||
|         <item quantity="other">Antaŭ %1$d tagoj</item> | ||||
|     </plurals> | ||||
| </resources> | ||||
| @@ -54,10 +54,6 @@ | ||||
|     <string name="information_empty_library">Via biblioteko malplenas</string> | ||||
|     <string name="information_no_recent_manga">Neniu legita laste</string> | ||||
|     <string name="hide_notification_content">Kaŝi enhavon de sciigoj</string> | ||||
|     <plurals name="lock_after_mins"> | ||||
|         <item quantity="one">Post 1 minuto</item> | ||||
|         <item quantity="other">Post %1$s minutoj</item> | ||||
|     </plurals> | ||||
|     <string name="lock_never">Neniam</string> | ||||
|     <string name="lock_always">Ĉiam</string> | ||||
|     <string name="pref_category_security">Sekureco</string> | ||||
| @@ -106,10 +102,6 @@ | ||||
|     <string name="exclude">Ekskluzivi: %s</string> | ||||
|     <string name="include">Inkluzivi: %s</string> | ||||
|     <string name="none">Nenio</string> | ||||
|     <plurals name="num_categories"> | ||||
|         <item quantity="one">%d kategorio</item> | ||||
|         <item quantity="other">%d kategorioj</item> | ||||
|     </plurals> | ||||
|     <string name="default_category_summary">Ĉiam demandi</string> | ||||
|     <string name="default_category">Defaŭlta kategorio</string> | ||||
|     <string name="update_weekly">Ĉiusemajne</string> | ||||
| @@ -136,10 +128,6 @@ | ||||
|     <string name="nav_zone_next">Sekv\'</string> | ||||
|     <string name="nav_zone_prev">Antaŭ\'</string> | ||||
|     <string name="browse">Foliumi</string> | ||||
|     <plurals name="manga_num_chapters"> | ||||
|         <item quantity="one">1 ĉapitro</item> | ||||
|         <item quantity="other">%1$s ĉapitroj</item> | ||||
|     </plurals> | ||||
|     <string name="downloaded_chapters">Elŝutitaj ĉapitroj</string> | ||||
|     <string name="in_library">En biblioteko</string> | ||||
|     <string name="manga_added_library">Aldonita al biblioteko</string> | ||||
| @@ -231,21 +219,9 @@ | ||||
|     <string name="update_check_no_new_updates">Neniu nova ĝisdatigo disponebla</string> | ||||
|     <string name="update_check_confirm">Elŝuti</string> | ||||
|     <string name="file_select_backup">Elekti savkopian dosieron</string> | ||||
|     <plurals name="notification_chapters_multiple_and_more"> | ||||
|         <item quantity="one">Ĉapitroj %1$s kaj 1 pli</item> | ||||
|         <item quantity="other">Ĉapitroj %1$s kaj %2$d pli</item> | ||||
|     </plurals> | ||||
|     <string name="notification_chapters_multiple">Ĉapitroj %1$s</string> | ||||
|     <string name="notification_chapters_single_and_more">Ĉapitro %1$s kaj %2$d pli</string> | ||||
|     <string name="notification_chapters_single">Ĉapitro %1$s</string> | ||||
|     <plurals name="notification_chapters_generic"> | ||||
|         <item quantity="one">1 nova ĉapitro</item> | ||||
|         <item quantity="other">%1$d novaj ĉapitroj</item> | ||||
|     </plurals> | ||||
|     <plurals name="notification_new_chapters_summary"> | ||||
|         <item quantity="one">Por 1 titolo</item> | ||||
|         <item quantity="other">Por %d titoloj</item> | ||||
|     </plurals> | ||||
|     <string name="notification_new_chapters">Novaj ĉapitroj trovitaj</string> | ||||
|     <string name="copy">Kopii</string> | ||||
|     <string name="migrate">Migri</string> | ||||
| @@ -254,10 +230,6 @@ | ||||
|     <string name="pref_clear_history">Viŝi historion</string> | ||||
|     <string name="recent_manga_time">Ĉap. %1$s - %2$s</string> | ||||
|     <string name="updating_library">Ĝisdatigas bibliotekon</string> | ||||
|     <plurals name="missing_chapters_warning"> | ||||
|         <item quantity="one">Mankas 1 ĉapitron</item> | ||||
|         <item quantity="other">Mankas %d ĉapitrojn</item> | ||||
|     </plurals> | ||||
|     <string name="loader_not_implemented_error">Fonto ne trovita</string> | ||||
|     <string name="page_list_empty_error">Neniu paĝo trovita</string> | ||||
|     <string name="transition_no_previous">Ne estas antaŭa ĉapitro</string> | ||||
| @@ -283,10 +255,6 @@ | ||||
|     <string name="completed">Finitaj</string> | ||||
|     <string name="reading">Legata</string> | ||||
|     <string name="add_tracking">Aldoni ŝanospuron</string> | ||||
|     <plurals name="num_trackers"> | ||||
|         <item quantity="one">1 ŝanĝspurilo</item> | ||||
|         <item quantity="other">%d ŝanĝspuriloj</item> | ||||
|     </plurals> | ||||
|     <string name="manga_tracking_tab">Ŝanĝspurado</string> | ||||
|     <string name="no_chapters_error">Neniu ĉapitro trovita</string> | ||||
|     <string name="set_chapter_settings_as_default">Agordi kiel defaŭlta</string> | ||||
| @@ -335,10 +303,6 @@ | ||||
|     <string name="login_success">Ensalutita</string> | ||||
|     <string name="login">Ensaluti</string> | ||||
|     <string name="login_title">Ensaluti al %1$s</string> | ||||
|     <plurals name="download_queue_summary"> | ||||
|         <item quantity="one">1 restas</item> | ||||
|         <item quantity="other">%1$s restas</item> | ||||
|     </plurals> | ||||
|     <string name="label_downloaded_only">Nur elŝutitaj</string> | ||||
|     <string name="updated_version">Ĝisdatigita al v%1$s</string> | ||||
|     <string name="licenses">Malfermitkodaj permesiloj</string> | ||||
| @@ -358,10 +322,6 @@ | ||||
|     <string name="creating_backup_error">Kreado de savkopio fiaskis</string> | ||||
|     <string name="creating_backup">Kreas savkopion</string> | ||||
|     <string name="backup_choice">Kion vi volas savkopii\?</string> | ||||
|     <plurals name="restore_completed_message"> | ||||
|         <item quantity="one">Farita en %1$s kun %2$s eraro</item> | ||||
|         <item quantity="other">Farita en %1$s kun %2$s eraroj</item> | ||||
|     </plurals> | ||||
|     <string name="restore_duration">%02d min, %02d sek</string> | ||||
|     <string name="backup_restore_missing_sources">Mankantaj fontoj:</string> | ||||
|     <string name="pref_category_auto_download">Aŭtomata elŝuto</string> | ||||
| @@ -383,10 +343,6 @@ | ||||
|     <string name="off">Malŝaltita</string> | ||||
|     <string name="on">Ŝaltita</string> | ||||
|     <string name="pref_library_columns">Elementoj vice</string> | ||||
|     <plurals name="relative_time"> | ||||
|         <item quantity="one">Hieraŭ</item> | ||||
|         <item quantity="other">Antaŭ %1$d tagoj</item> | ||||
|     </plurals> | ||||
|     <string name="relative_time_today">Hodiaŭ</string> | ||||
|     <string name="theme_yinyang">Jino kaj Jango</string> | ||||
|     <string name="theme_greenapple">Verda pomo</string> | ||||
							
								
								
									
										83
									
								
								i18n/src/commonMain/resources/MR/es/plurals.xml
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										83
									
								
								i18n/src/commonMain/resources/MR/es/plurals.xml
									
									
									
									
									
										Normal file
									
								
							| @@ -0,0 +1,83 @@ | ||||
| <?xml version="1.0" encoding="utf-8"?> | ||||
| <resources> | ||||
|     <plurals name="lock_after_mins"> | ||||
|         <item quantity="one">Tras %1$s minuto</item> | ||||
|         <item quantity="many">Tras %1$s minutos</item> | ||||
|         <item quantity="other">Tras %1$s minutos</item> | ||||
|     </plurals> | ||||
|     <plurals name="notification_chapters_generic"> | ||||
|         <item quantity="one">%1$d nuevo capítulo</item> | ||||
|         <item quantity="many">%1$d nuevos capítulos</item> | ||||
|         <item quantity="other">%1$d nuevos capítulos</item> | ||||
|     </plurals> | ||||
|     <plurals name="notification_chapters_multiple_and_more"> | ||||
|         <item quantity="one">Capítulos %1$s y 1 más</item> | ||||
|         <item quantity="many">Capítulos %1$s y %2$d más</item> | ||||
|         <item quantity="other">Capítulos %1$s y %2$d más</item> | ||||
|     </plurals> | ||||
|     <plurals name="notification_new_chapters_summary"> | ||||
|         <item quantity="one">Para %d título</item> | ||||
|         <item quantity="many">Para %d títulos</item> | ||||
|         <item quantity="other">Para %d títulos</item> | ||||
|     </plurals> | ||||
|     <plurals name="update_check_notification_ext_updates"> | ||||
|         <item quantity="one">Actualización de extensión disponible</item> | ||||
|         <item quantity="many">%d actualizaciones de extensiones disponibles</item> | ||||
|         <item quantity="other">%d actualizaciones de extensiones disponibles</item> | ||||
|     </plurals> | ||||
|     <plurals name="download_queue_summary"> | ||||
|         <item quantity="one">Queda %1$s</item> | ||||
|         <item quantity="many">Quedan %1$s</item> | ||||
|         <item quantity="other">Quedan %1$s</item> | ||||
|     </plurals> | ||||
|     <plurals name="num_categories"> | ||||
|         <item quantity="one">%d categoría</item> | ||||
|         <item quantity="many">%d categorías</item> | ||||
|         <item quantity="other">%d categorías</item> | ||||
|     </plurals> | ||||
|     <plurals name="restore_completed_message"> | ||||
|         <item quantity="one">Completada en %1$s con %2$s error</item> | ||||
|         <item quantity="many">Completada en %1$s con %2$s errores</item> | ||||
|         <item quantity="other">Completada en %1$s con %2$s errores</item> | ||||
|     </plurals> | ||||
|     <plurals name="manga_num_chapters"> | ||||
|         <item quantity="one">%1$s capítulo</item> | ||||
|         <item quantity="many">%1$s capítulos</item> | ||||
|         <item quantity="other">%1$s capítulos</item> | ||||
|     </plurals> | ||||
|     <plurals name="num_trackers"> | ||||
|         <item quantity="one">%d servicio de seguimiento</item> | ||||
|         <item quantity="many">%d servicios de seguimiento</item> | ||||
|         <item quantity="other">%d servicios de seguimiento</item> | ||||
|     </plurals> | ||||
|     <plurals name="missing_chapters_warning"> | ||||
|         <item quantity="one">Se omite %d capítulo, o bien falta en la fuente o ha sido filtrado</item> | ||||
|         <item quantity="many">Se omiten %d capítulos, o bien faltan en la fuente o han sido filtrados</item> | ||||
|         <item quantity="other">Se omiten %d capítulos, o bien faltan en la fuente o han sido filtrados</item> | ||||
|     </plurals> | ||||
|     <plurals name="relative_time"> | ||||
|         <item quantity="one">Ayer</item> | ||||
|         <item quantity="many">Hace %1$d días</item> | ||||
|         <item quantity="other">Hace %1$d días</item> | ||||
|     </plurals> | ||||
|     <plurals name="next_unread_chapters"> | ||||
|         <item quantity="one">El siguiente capítulo sin leer</item> | ||||
|         <item quantity="many">Los siguientes %d capítulos sin leer</item> | ||||
|         <item quantity="other">Los siguientes %d capítulos sin leer</item> | ||||
|     </plurals> | ||||
|     <plurals name="download_amount"> | ||||
|         <item quantity="one">El siguiente capítulo</item> | ||||
|         <item quantity="many">Los siguientes %d capítulos</item> | ||||
|         <item quantity="other">Los siguientes %d capítulos</item> | ||||
|     </plurals> | ||||
|     <plurals name="missing_chapters"> | ||||
|         <item quantity="one">Falta %1$s capítulo</item> | ||||
|         <item quantity="many">Faltan %1$s capítulos</item> | ||||
|         <item quantity="other">Faltan %1$s capítulos</item> | ||||
|     </plurals> | ||||
|     <plurals name="day"> | ||||
|         <item quantity="one">Un día</item> | ||||
|         <item quantity="many">%d días</item> | ||||
|         <item quantity="other">%d días</item> | ||||
|     </plurals> | ||||
| </resources> | ||||
| @@ -1,14 +1,12 @@ | ||||
| <?xml version="1.0" encoding="utf-8"?> | ||||
| <resources> | ||||
|     <string name="name">Nombre</string> | ||||
|     <!-- Activities and fragments labels (toolbar title) --> | ||||
|     <string name="label_settings">Ajustes</string> | ||||
|     <string name="label_download_queue">Cola de descargas</string> | ||||
|     <string name="label_library">Biblioteca</string> | ||||
|     <string name="label_recent_manga">Historial</string> | ||||
|     <string name="label_recent_updates">Actualizaciones</string> | ||||
|     <string name="label_backup">Copia de seguridad y restauración</string> | ||||
|     <!-- Actions --> | ||||
|     <string name="action_settings">Ajustes</string> | ||||
|     <string name="action_filter">Filtrar</string> | ||||
|     <string name="action_filter_unread">Sin leer</string> | ||||
| @@ -38,17 +36,13 @@ | ||||
|     <string name="action_cancel">Cancelar</string> | ||||
|     <string name="action_sort">Ordenar</string> | ||||
|     <string name="action_install">Instalar</string> | ||||
|     <!-- Operations --> | ||||
|     <string name="loading">Cargando…</string> | ||||
|     <!-- Preferences --> | ||||
|     <!-- Subsections --> | ||||
|     <string name="pref_category_general">General</string> | ||||
|     <string name="pref_category_reader">Lector</string> | ||||
|     <string name="pref_category_downloads">Descargas</string> | ||||
|     <string name="pref_category_tracking">Seguimiento</string> | ||||
|     <string name="pref_category_advanced">Avanzado</string> | ||||
|     <string name="pref_category_about">Acerca de</string> | ||||
|     <!-- General section --> | ||||
|     <string name="pref_library_columns">Tamaño de cuadrícula</string> | ||||
|     <string name="portrait">En vertical</string> | ||||
|     <string name="landscape">En horizontal</string> | ||||
| @@ -62,7 +56,6 @@ | ||||
|     <string name="charging">Mientras se carga la batería</string> | ||||
|     <string name="pref_update_only_non_completed">Marcadas como completadas</string> | ||||
|     <string name="pref_auto_update_manga_sync">Actualizar progreso al terminar un capítulo</string> | ||||
|     <!-- Reader section --> | ||||
|     <string name="pref_fullscreen">Pantalla completa</string> | ||||
|     <string name="pref_page_transitions">Transiciones de página animadas</string> | ||||
|     <string name="pref_show_page_number">Mostrar el número de página</string> | ||||
| @@ -94,15 +87,11 @@ | ||||
|     <string name="rotation_free">Cualquier dirección</string> | ||||
|     <string name="rotation_force_portrait">Forzar en vertical</string> | ||||
|     <string name="rotation_force_landscape">Forzar en horizontal</string> | ||||
|     <!-- Downloads section --> | ||||
|     <string name="pref_download_directory">Carpeta de descarga</string> | ||||
|     <string name="pref_remove_after_marked_as_read">Borrarlos tras marcarlos como leídos de forma manual</string> | ||||
|     <string name="pref_remove_after_read">Borrar capítulos terminados de forma automática</string> | ||||
|     <string name="custom_dir">Ubicación personalizada</string> | ||||
|     <!-- Sources section --> | ||||
|     <!-- Sync section --> | ||||
|     <string name="services">Servicios de seguimiento</string> | ||||
|     <!-- Advanced section --> | ||||
|     <string name="pref_clear_chapter_cache">Vaciar la caché de capítulos</string> | ||||
|     <string name="used_cache">Usado: %1$s</string> | ||||
|     <string name="cache_deleted">Se vació la caché. Se han eliminado %1$d archivos</string> | ||||
| @@ -113,27 +102,20 @@ | ||||
|     <string name="pref_clear_database_summary">Borrar el historial de los elementos que no estén guardados en tu biblioteca</string> | ||||
|     <string name="clear_database_confirmation">¿Está seguro\? Se perderán los capítulos leídos y el progreso de las entradas que no pertenezcan a la biblioteca</string> | ||||
|     <string name="clear_database_completed">Entradas eliminadas</string> | ||||
|     <!-- About section --> | ||||
|     <string name="version">Versión</string> | ||||
|     <!-- ACRA --> | ||||
|     <string name="pref_enable_acra">Enviar informes de fallos</string> | ||||
|     <string name="pref_acra_summary">Ayuda a corregir cualquier error. No se enviará ninguna información personal</string> | ||||
|     <!-- Login dialog --> | ||||
|     <string name="login_title">Iniciar sesión en %1$s</string> | ||||
|     <string name="username">Nombre de usuario</string> | ||||
|     <string name="password">Contraseña</string> | ||||
|     <string name="login">Iniciar sesión</string> | ||||
|     <string name="login_success">Conectado</string> | ||||
|     <string name="unknown_error">Error desconocido</string> | ||||
|     <!-- Library fragment --> | ||||
|     <string name="updating_category">Actualizando categoría</string> | ||||
|     <!-- Catalogue fragment --> | ||||
|     <!-- Manga info fragment --> | ||||
|     <string name="ongoing">En publicación</string> | ||||
|     <string name="unknown">Desconocido</string> | ||||
|     <string name="licensed">Con licencia</string> | ||||
|     <string name="remove_from_library">Eliminar de biblioteca</string> | ||||
|     <!-- Manga chapters fragment --> | ||||
|     <string name="display_mode_chapter">Capítulo %1$s</string> | ||||
|     <string name="chapter_downloading_progress">Descargando (%1$d/%2$d)</string> | ||||
|     <string name="chapter_error">Error</string> | ||||
| @@ -145,7 +127,6 @@ | ||||
|     <string name="manga_download">Descargar</string> | ||||
|     <string name="download_unread">Sin leer</string> | ||||
|     <string name="confirm_delete_chapters">¿Seguro que quieres eliminar los capítulos seleccionados\?</string> | ||||
|     <!-- MyAnimeList fragment --> | ||||
|     <string name="reading">Leyendo</string> | ||||
|     <string name="completed">Completado</string> | ||||
|     <string name="dropped">Abandonado</string> | ||||
| @@ -155,38 +136,26 @@ | ||||
|     <string name="title">Título</string> | ||||
|     <string name="status">Estado</string> | ||||
|     <string name="chapters">Capítulos</string> | ||||
|     <!-- Dialog remove recently view --> | ||||
|     <string name="dialog_with_checkbox_remove_description">Esto eliminará la fecha de lectura de este capítulo. ¿Estás seguro?</string> | ||||
|     <string name="dialog_with_checkbox_reset">Reiniciar todos los capítulos de este manga</string> | ||||
|     <!-- Reader activity --> | ||||
|     <string name="chapter_progress">Pág: %1$d</string> | ||||
|     <string name="no_next_chapter">Siguiente capítulo no encontrado</string> | ||||
|     <string name="decode_image_error">No se pudo cargar la imagen</string> | ||||
|     <!-- Backup fragment --> | ||||
|     <!-- Recent manga fragment --> | ||||
|     <!-- Downloads activity and service --> | ||||
|     <string name="download_queue_error">No se pudieron descargar los capítulos. Puedes volver a intentarlo en la sección de descargas</string> | ||||
|     <!-- Library update service notifications --> | ||||
|     <string name="notification_new_chapters">Nuevos capítulos encontrados</string> | ||||
|     <string name="notification_first_add_to_library">Primero tienes que añadir el manga a tu biblioteca</string> | ||||
|     <!-- File Picker Titles --> | ||||
|     <string name="file_select_cover">Elige una imagen de portada</string> | ||||
|     <string name="file_select_backup">Elige una copia de respaldo</string> | ||||
|     <!--UpdateCheck--> | ||||
|     <string name="update_check_confirm">Descargar</string> | ||||
|     <string name="update_check_no_new_updates">No hay nuevas actualizaciones disponibles</string> | ||||
|     <!--UpdateCheck Notifications--> | ||||
|     <string name="update_check_notification_download_in_progress">Descargando…</string> | ||||
|     <string name="update_check_notification_download_complete">Toca aquí para instalar la actualización</string> | ||||
|     <string name="update_check_notification_download_error">Error de descarga</string> | ||||
|     <string name="update_check_notification_update_available">¡Nueva versión disponible!</string> | ||||
|     <!--Content Description--> | ||||
|     <!-- Information Text --> | ||||
|     <string name="information_no_downloads">No hay descargas</string> | ||||
|     <string name="information_no_recent">No hay actualizaciones recientes</string> | ||||
|     <string name="information_no_recent_manga">No has leído nada últimamente</string> | ||||
|     <string name="information_empty_library">Tu biblioteca está vacía</string> | ||||
|     <!-- Download Notification --> | ||||
|     <string name="download_notifier_title_error">Error</string> | ||||
|     <string name="download_notifier_unknown_error">No se ha podido descargar el capítulo debido a un error inesperado</string> | ||||
|     <string name="download_notifier_text_only_wifi">No estás conectado a ninguna red Wi-Fi</string> | ||||
| @@ -347,11 +316,6 @@ | ||||
|     <string name="lock_when_idle">Bloquear por inactividad</string> | ||||
|     <string name="lock_always">Siempre</string> | ||||
|     <string name="lock_never">Nunca</string> | ||||
|     <plurals name="lock_after_mins"> | ||||
|         <item quantity="one">Tras %1$s minuto</item> | ||||
|         <item quantity="many">Tras %1$s minutos</item> | ||||
|         <item quantity="other">Tras %1$s minutos</item> | ||||
|     </plurals> | ||||
|     <string name="secure_screen">Pantalla segura</string> | ||||
|     <string name="ext_updates_pending">Actualizaciones pendientes</string> | ||||
|     <string name="pref_cutout_short">Mostrar contenido en el área recortada</string> | ||||
| @@ -360,19 +324,9 @@ | ||||
|     <string name="channel_new_chapters">Nuevos capítulos</string> | ||||
|     <string name="secure_screen_summary">Pantalla segura oculta el contenido al cambiar de aplicación y bloquea las capturas de pantalla</string> | ||||
|     <string name="pref_category_display">Visualización</string> | ||||
|     <plurals name="notification_chapters_generic"> | ||||
|         <item quantity="one">%1$d nuevo capítulo</item> | ||||
|         <item quantity="many">%1$d nuevos capítulos</item> | ||||
|         <item quantity="other">%1$d nuevos capítulos</item> | ||||
|     </plurals> | ||||
|     <string name="notification_chapters_single">Capítulo %1$s</string> | ||||
|     <string name="notification_chapters_single_and_more">Capítulo %1$s y %2$d más</string> | ||||
|     <string name="notification_chapters_multiple">Capítulos %1$s</string> | ||||
|     <plurals name="notification_chapters_multiple_and_more"> | ||||
|         <item quantity="one">Capítulos %1$s y 1 más</item> | ||||
|         <item quantity="many">Capítulos %1$s y %2$d más</item> | ||||
|         <item quantity="other">Capítulos %1$s y %2$d más</item> | ||||
|     </plurals> | ||||
|     <string name="hide_notification_content">Ocultar el contenido de las notificaciones</string> | ||||
|     <string name="notification_check_updates">Buscando nuevos capítulos</string> | ||||
|     <string name="pref_disable_battery_optimization">Desactivar la optimización de batería</string> | ||||
| @@ -380,21 +334,11 @@ | ||||
|     <string name="pref_disable_battery_optimization_summary">Mejora la cadencia de las actualizaciones y las copias de respaldo que se hagan en segundo plano</string> | ||||
|     <string name="battery_optimization_disabled">La optimización de la batería ya está desactivada</string> | ||||
|     <string name="pref_always_show_chapter_transition">Hacer transición entre capítulos</string> | ||||
|     <plurals name="notification_new_chapters_summary"> | ||||
|         <item quantity="one">Para %d título</item> | ||||
|         <item quantity="many">Para %d títulos</item> | ||||
|         <item quantity="other">Para %d títulos</item> | ||||
|     </plurals> | ||||
|     <string name="action_menu">Menú</string> | ||||
|     <string name="action_newest">Lo más nuevo</string> | ||||
|     <string name="action_oldest">Lo más antiguo</string> | ||||
|     <string name="action_move_to_top">Mover al principio</string> | ||||
|     <string name="action_move_to_bottom">Mover al final</string> | ||||
|     <plurals name="update_check_notification_ext_updates"> | ||||
|         <item quantity="one">Actualización de extensión disponible</item> | ||||
|         <item quantity="many">%d actualizaciones de extensiones disponibles</item> | ||||
|         <item quantity="other">%d actualizaciones de extensiones disponibles</item> | ||||
|     </plurals> | ||||
|     <string name="updating_library">Actualizando biblioteca</string> | ||||
|     <string name="channel_ext_updates">Actualizaciones de extensiones</string> | ||||
|     <string name="pref_skip_filtered_chapters">Saltar capítulos excluidos por filtros</string> | ||||
| @@ -425,28 +369,13 @@ | ||||
|     <string name="last_used_source">Usado recientemente</string> | ||||
|     <string name="check_for_updates">Buscar actualizaciones</string> | ||||
|     <string name="local_source_help_guide">Guía de fuente local</string> | ||||
|     <plurals name="download_queue_summary"> | ||||
|         <item quantity="one">Queda %1$s</item> | ||||
|         <item quantity="many">Quedan %1$s</item> | ||||
|         <item quantity="other">Quedan %1$s</item> | ||||
|     </plurals> | ||||
|     <string name="downloaded_only_summary">Filtra todos los elementos de tu biblioteca para ver solo los que estén disponibles sin conexión</string> | ||||
|     <string name="viewer">Modo de lectura</string> | ||||
|     <string name="pref_category_for_this_series">Para esta serie</string> | ||||
|     <string name="gray_background">Gris</string> | ||||
|     <string name="pref_true_color_summary">Reduce el efecto anillado en los degradados y mejora la calidad de los grises, pero puede afectar al rendimiento</string> | ||||
|     <plurals name="num_categories"> | ||||
|         <item quantity="one">%d categoría</item> | ||||
|         <item quantity="many">%d categorías</item> | ||||
|         <item quantity="other">%d categorías</item> | ||||
|     </plurals> | ||||
|     <string name="battery_optimization_setting_activity_not_found">No se pudieron abrir los ajustes del dispositivo</string> | ||||
|     <string name="pref_refresh_library_covers">Volver a descargar las portadas en la biblioteca</string> | ||||
|     <plurals name="restore_completed_message"> | ||||
|         <item quantity="one">Completada en %1$s con %2$s error</item> | ||||
|         <item quantity="many">Completada en %1$s con %2$s errores</item> | ||||
|         <item quantity="other">Completada en %1$s con %2$s errores</item> | ||||
|     </plurals> | ||||
|     <string name="tracking_info">La sincronización de estos servicios solo funciona en un solo sentido. Cada elemento en tu biblioteca tiene un botón de seguimiento y tendrás que configurarlo a mano, uno a uno.</string> | ||||
|     <string name="unofficial_extension_message">Esta extensión no es de la lista oficial de extensiones.</string> | ||||
|     <string name="ext_unofficial">No oficial</string> | ||||
| @@ -467,11 +396,6 @@ | ||||
|     <string name="pref_show_reading_mode">Mostrar modo de lectura</string> | ||||
|     <string name="action_start">Empezar</string> | ||||
|     <string name="loader_not_implemented_error">No se ha encontrado la fuente</string> | ||||
|     <plurals name="manga_num_chapters"> | ||||
|         <item quantity="one">%1$s capítulo</item> | ||||
|         <item quantity="many">%1$s capítulos</item> | ||||
|         <item quantity="other">%1$s capítulos</item> | ||||
|     </plurals> | ||||
|     <string name="action_disable">Desactivar</string> | ||||
|     <string name="requires_app_restart">Es necesario reiniciar la aplicación para que surja efecto</string> | ||||
|     <string name="label_network">Networking</string> | ||||
| @@ -489,11 +413,6 @@ | ||||
|     <string name="pref_category_reading_mode">Modo de lectura</string> | ||||
|     <string name="pref_category_theme">Tema de colores</string> | ||||
|     <string name="action_sort_date_added">Por fecha en la biblioteca</string> | ||||
|     <plurals name="num_trackers"> | ||||
|         <item quantity="one">%d servicio de seguimiento</item> | ||||
|         <item quantity="many">%d servicios de seguimiento</item> | ||||
|         <item quantity="other">%d servicios de seguimiento</item> | ||||
|     </plurals> | ||||
|     <string name="no_pinned_sources">Todavía no has anclado ninguna fuente</string> | ||||
|     <string name="channel_complete">Terminadas</string> | ||||
|     <string name="channel_progress">En progreso</string> | ||||
| @@ -504,11 +423,6 @@ | ||||
|     <string name="ext_nsfw_warning">Puede contener contenido para adultos (+18)</string> | ||||
|     <string name="ext_nsfw_short">18+</string> | ||||
|     <string name="parental_controls_info">Esto no evita que las extensiones extraoficiales o que estén mal clasificadas muestren contenido para mayores de 18 años en la aplicación.</string> | ||||
|     <plurals name="missing_chapters_warning"> | ||||
|         <item quantity="one">Se omite %d capítulo, o bien falta en la fuente o ha sido filtrado</item> | ||||
|         <item quantity="many">Se omiten %d capítulos, o bien faltan en la fuente o han sido filtrados</item> | ||||
|         <item quantity="other">Se omiten %d capítulos, o bien faltan en la fuente o han sido filtrados</item> | ||||
|     </plurals> | ||||
|     <string name="no_chapters_error">No hay capítulos</string> | ||||
|     <string name="chapter_settings_updated">Se han actualizado los ajustes predeterminados de capítulo</string> | ||||
|     <string name="set_chapter_settings_as_default">Establecer como predeterminado</string> | ||||
| @@ -621,11 +535,6 @@ | ||||
|     <string name="pref_highest">Más alta</string> | ||||
|     <string name="pref_hide_threshold">Sensibilidad para ocultar automáticamente el menú al desplazarse</string> | ||||
|     <string name="pref_inverted_colors">Invertido</string> | ||||
|     <plurals name="relative_time"> | ||||
|         <item quantity="one">Ayer</item> | ||||
|         <item quantity="many">Hace %1$d días</item> | ||||
|         <item quantity="other">Hace %1$d días</item> | ||||
|     </plurals> | ||||
|     <string name="relative_time_today">Hoy</string> | ||||
|     <string name="theme_tealturquoise">Azul marino y turquesa</string> | ||||
|     <string name="pref_category_appearance">Apariencia</string> | ||||
| @@ -728,11 +637,6 @@ | ||||
|     <string name="download_ahead_info">Solo funciona si el capítulo actual y el que va después ya están descargados.</string> | ||||
|     <string name="download_ahead">Descargar por adelantado</string> | ||||
|     <string name="auto_download_while_reading">Descarga los capítulos siguientes mientras lees</string> | ||||
|     <plurals name="next_unread_chapters"> | ||||
|         <item quantity="one">El siguiente capítulo sin leer</item> | ||||
|         <item quantity="many">Los siguientes %d capítulos sin leer</item> | ||||
|         <item quantity="other">Los siguientes %d capítulos sin leer</item> | ||||
|     </plurals> | ||||
|     <string name="are_you_sure">¿Estás seguro\?</string> | ||||
|     <string name="updates_last_update_info">La biblioteca se actualizó: %s</string> | ||||
|     <string name="remove_manga">Estás a punto de borrar «%s» de tu biblioteca</string> | ||||
| @@ -799,21 +703,11 @@ | ||||
| \n¿Seguro que quieres continuar\?</string> | ||||
|     <string name="track_error">%1$s error: %2$s</string> | ||||
|     <string name="information_required_plain">*necesaria</string> | ||||
|     <plurals name="download_amount"> | ||||
|         <item quantity="one">El siguiente capítulo</item> | ||||
|         <item quantity="many">Los siguientes %d capítulos</item> | ||||
|         <item quantity="other">Los siguientes %d capítulos</item> | ||||
|     </plurals> | ||||
|     <string name="pref_hide_in_library_items">Saltar elementos que ya estén en la biblioteca</string> | ||||
|     <string name="action_copy_to_clipboard">Copiar al portapapeles</string> | ||||
|     <string name="action_update_category">Actualizar categoría</string> | ||||
|     <string name="split_tall_images">Dividir las imágenes altas</string> | ||||
|     <string name="overlay_header">Superposición</string> | ||||
|     <plurals name="missing_chapters"> | ||||
|         <item quantity="one">Falta %1$s capítulo</item> | ||||
|         <item quantity="many">Faltan %1$s capítulos</item> | ||||
|         <item quantity="other">Faltan %1$s capítulos</item> | ||||
|     </plurals> | ||||
|     <string name="pref_page_rotate">Girar las páginas anchas para adaptarlas a la pantalla</string> | ||||
|     <string name="pref_page_rotate_invert">Girar las páginas anchas en la dirección opuesta</string> | ||||
|     <string name="pref_debug_info">Información sobre la depuración</string> | ||||
| @@ -828,11 +722,6 @@ | ||||
|     <string name="intervals_header">Intervalos</string> | ||||
|     <string name="action_filter_interval_passed">Ha pasado el período de comprobación</string> | ||||
|     <string name="manga_display_interval_title">Estimar cada</string> | ||||
|     <plurals name="day"> | ||||
|         <item quantity="one">Un día</item> | ||||
|         <item quantity="many">%d días</item> | ||||
|         <item quantity="other">%d días</item> | ||||
|     </plurals> | ||||
|     <string name="manga_modify_calculated_interval_title">Personalizar intervalo</string> | ||||
|     <string name="action_filter_interval_dropped">¿Abandonado\? Tras más de 20 días y 2 meses</string> | ||||
|     <string name="manga_display_modified_interval_title">Forzar actualización cada</string> | ||||
							
								
								
									
										51
									
								
								i18n/src/commonMain/resources/MR/eu/plurals.xml
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										51
									
								
								i18n/src/commonMain/resources/MR/eu/plurals.xml
									
									
									
									
									
										Normal file
									
								
							| @@ -0,0 +1,51 @@ | ||||
| <?xml version="1.0" encoding="utf-8"?> | ||||
| <resources> | ||||
|     <plurals name="restore_completed_message"> | ||||
|         <item quantity="one">%1$s-n egin da errore %2$s-ekin</item> | ||||
|         <item quantity="other">%1$s-n egin da %2$s errorerekin</item> | ||||
|     </plurals> | ||||
|     <plurals name="relative_time"> | ||||
|         <item quantity="one">Atzo</item> | ||||
|         <item quantity="other">Duela %1$d egun</item> | ||||
|     </plurals> | ||||
|     <plurals name="lock_after_mins"> | ||||
|         <item quantity="one">Minutu baten ostean</item> | ||||
|         <item quantity="other">%1$s minuturen ostean</item> | ||||
|     </plurals> | ||||
|     <plurals name="missing_chapters_warning"> | ||||
|         <item quantity="one">Kapitulu bat saltatzen, iturria falta da edo iragazia izan da</item> | ||||
|         <item quantity="other">%d kapitulu saltatzen, iturria falta da edo iragaziak izan dira</item> | ||||
|     </plurals> | ||||
|     <plurals name="notification_new_chapters_summary"> | ||||
|         <item quantity="one">Titulu baterako</item> | ||||
|         <item quantity="other">%d titulurako</item> | ||||
|     </plurals> | ||||
|     <plurals name="download_queue_summary"> | ||||
|         <item quantity="one">1 geratzen da</item> | ||||
|         <item quantity="other">%1$s geratzen dira</item> | ||||
|     </plurals> | ||||
|     <plurals name="num_categories"> | ||||
|         <item quantity="one">kategoria %d</item> | ||||
|         <item quantity="other">%d kategoria</item> | ||||
|     </plurals> | ||||
|     <plurals name="manga_num_chapters"> | ||||
|         <item quantity="one">kapitulu 1</item> | ||||
|         <item quantity="other">%1$s kapitulu</item> | ||||
|     </plurals> | ||||
|     <plurals name="num_trackers"> | ||||
|         <item quantity="one">jarraitzaile 1</item> | ||||
|         <item quantity="other">%d jarraitzaile</item> | ||||
|     </plurals> | ||||
|     <plurals name="notification_chapters_generic"> | ||||
|         <item quantity="one">Kapitulu berri bat</item> | ||||
|         <item quantity="other">%1$d kapitulu berri</item> | ||||
|     </plurals> | ||||
|     <plurals name="update_check_notification_ext_updates"> | ||||
|         <item quantity="one">Luzapen baten eguneraketa eskuragarri</item> | ||||
|         <item quantity="other">%d luzapenen eguneraketak eskuragarri</item> | ||||
|     </plurals> | ||||
|     <plurals name="notification_chapters_multiple_and_more"> | ||||
|         <item quantity="one">%1$s kapituluak eta bat gehiago</item> | ||||
|         <item quantity="other">%1$s kapituluak eta %2$d gehiago</item> | ||||
|     </plurals> | ||||
| </resources> | ||||
| @@ -56,10 +56,6 @@ | ||||
|     <string name="ext_installer_shizuku_unavailable_dialog">Instalatu eta abiarazi Shizuku luzapen instalatzaile gisa erabiltzeko.</string> | ||||
|     <string name="ext_installer_shizuku_stopped">Shizuku ez dago martxan</string> | ||||
|     <string name="restore_completed">Berreskuratu egin da</string> | ||||
|     <plurals name="restore_completed_message"> | ||||
|         <item quantity="one">%1$s-n egin da errore %2$s-ekin</item> | ||||
|         <item quantity="other">%1$s-n egin da %2$s errorerekin</item> | ||||
|     </plurals> | ||||
|     <string name="cookies_cleared">Cookieak garbitu dira</string> | ||||
|     <string name="dropped">Alde batera utzia</string> | ||||
|     <string name="status">Egoera</string> | ||||
| @@ -193,10 +189,6 @@ | ||||
|     <string name="transition_no_previous">Ez dago aurreko kapitulurik</string> | ||||
|     <string name="copy">Kopiatu</string> | ||||
|     <string name="update_check_eol">Android bertsio hau jada ez da onartzen</string> | ||||
|     <plurals name="relative_time"> | ||||
|         <item quantity="one">Atzo</item> | ||||
|         <item quantity="other">Duela %1$d egun</item> | ||||
|     </plurals> | ||||
|     <string name="ext_obsolete">Zaharkitua</string> | ||||
|     <string name="ext_uninstall">Desinstalatu</string> | ||||
|     <string name="pref_show_page_number">Erakutsi orrialdearen zenbakia</string> | ||||
| @@ -264,10 +256,6 @@ | ||||
|     <string name="black_background">Beltza</string> | ||||
|     <string name="nav_zone_next">Hurrengoa</string> | ||||
|     <string name="pager_viewer">Orrikaldekatua</string> | ||||
|     <plurals name="lock_after_mins"> | ||||
|         <item quantity="one">Minutu baten ostean</item> | ||||
|         <item quantity="other">%1$s minuturen ostean</item> | ||||
|     </plurals> | ||||
|     <string name="zoom_start_automatic">Automatikoa</string> | ||||
|     <string name="pref_double_tap_anim_speed">Sakaketa bikoitzaren animazioaren abiadura</string> | ||||
|     <string name="automatic_background">Automatikoa</string> | ||||
| @@ -347,10 +335,6 @@ | ||||
|     <string name="pref_category_about">Honi buruz</string> | ||||
|     <string name="pref_category_theme">Gaia</string> | ||||
|     <string name="pref_dump_crash_logs">Sortu erroreen erregistroak</string> | ||||
|     <plurals name="missing_chapters_warning"> | ||||
|         <item quantity="one">Kapitulu bat saltatzen, iturria falta da edo iragazia izan da</item> | ||||
|         <item quantity="other">%d kapitulu saltatzen, iturria falta da edo iragaziak izan dira</item> | ||||
|     </plurals> | ||||
|     <string name="notification_chapters_single">%1$s Kapitulua</string> | ||||
|     <string name="notification_chapters_multiple">%1$s Kapituluak</string> | ||||
|     <string name="pref_keep_screen_on">Mantendu pantaila piztuta</string> | ||||
| @@ -546,10 +530,6 @@ | ||||
|     <string name="invalid_backup_file_missing_manga">Babeskopiak ez du mangarik.</string> | ||||
|     <string name="manga_tracking_tab">Jarraipena</string> | ||||
|     <string name="repeating">Berrirakurtzen</string> | ||||
|     <plurals name="notification_new_chapters_summary"> | ||||
|         <item quantity="one">Titulu baterako</item> | ||||
|         <item quantity="other">%d titulurako</item> | ||||
|     </plurals> | ||||
|     <string name="pref_show_reading_mode_summary">Erakutsi erabilitako irakurketa modua laburki irakurlea irekitzen denean</string> | ||||
|     <string name="tracking_guide">Jarraipen gida</string> | ||||
|     <string name="pref_auto_update_manga_sync">Eguneratu aurrerapena irakurri ondoren</string> | ||||
| @@ -558,39 +538,15 @@ | ||||
|     <string name="label_background_activity">Atzeko planoko ekintzak</string> | ||||
|     <string name="pref_disable_battery_optimization_summary">Liburutegiaren eguneraketak eta babeskopiak atzeko planoan egiten laguntzen du</string> | ||||
|     <string name="battery_optimization_setting_activity_not_found">Ezin izan dira gailuaren ezarpenak ireki</string> | ||||
|     <plurals name="download_queue_summary"> | ||||
|         <item quantity="one">1 geratzen da</item> | ||||
|         <item quantity="other">%1$s geratzen dira</item> | ||||
|     </plurals> | ||||
|     <string name="local_filter_order_by">Ordenatu honen arabera</string> | ||||
|     <plurals name="num_categories"> | ||||
|         <item quantity="one">kategoria %d</item> | ||||
|         <item quantity="other">%d kategoria</item> | ||||
|     </plurals> | ||||
|     <plurals name="manga_num_chapters"> | ||||
|         <item quantity="one">kapitulu 1</item> | ||||
|         <item quantity="other">%1$s kapitulu</item> | ||||
|     </plurals> | ||||
|     <string name="ext_updates_pending">Eguneraketak egiteke</string> | ||||
|     <string name="pref_cutout_short">Erakutsi edukia eremu ebakian</string> | ||||
|     <plurals name="num_trackers"> | ||||
|         <item quantity="one">jarraitzaile 1</item> | ||||
|         <item quantity="other">%d jarraitzaile</item> | ||||
|     </plurals> | ||||
|     <string name="download_queue_error">Ezin izan dira kapituluak deskargatu. Berriro saia zaitezke deskargen atalean</string> | ||||
|     <plurals name="notification_chapters_generic"> | ||||
|         <item quantity="one">Kapitulu berri bat</item> | ||||
|         <item quantity="other">%1$d kapitulu berri</item> | ||||
|     </plurals> | ||||
|     <string name="save_chapter_as_cbz">Gorde CBZ artxibo gisa</string> | ||||
|     <string name="pref_refresh_library_covers">Eguneratu liburutegiko manga azalak</string> | ||||
|     <string name="pref_tablet_ui_mode">Tablet interfazea</string> | ||||
|     <string name="share_page_info">%1$s: %2$s, %3$d orrialdea</string> | ||||
|     <string name="information_empty_category_dialog">Oraindik ez duzu kategoriarik sortu.</string> | ||||
|     <plurals name="update_check_notification_ext_updates"> | ||||
|         <item quantity="one">Luzapen baten eguneraketa eskuragarri</item> | ||||
|         <item quantity="other">%d luzapenen eguneraketak eskuragarri</item> | ||||
|     </plurals> | ||||
|     <string name="extension_api_error">Ezin izan da luzapenen zerrenda lortu</string> | ||||
|     <string name="pref_library_update_refresh_metadata_summary">Bilatu azal eta xehetasun berriak liburutegia eguneratzean</string> | ||||
|     <string name="pref_library_update_categories_details">Baztertutako kategorietako mangak ez dira eguneratuko, sarturiko kategorietan egon arren.</string> | ||||
| @@ -605,10 +561,6 @@ | ||||
|     <string name="on_hiatus">Etenaldian</string> | ||||
|     <string name="library_errors_help">Liburutegi eguneraketen akatsak nola konpondu jakiteko, ikusi %1$s</string> | ||||
|     <string name="action_display_local_badge">Manga lokala</string> | ||||
|     <plurals name="notification_chapters_multiple_and_more"> | ||||
|         <item quantity="one">%1$s kapituluak eta bat gehiago</item> | ||||
|         <item quantity="other">%1$s kapituluak eta %2$d gehiago</item> | ||||
|     </plurals> | ||||
|     <string name="notification_chapters_single_and_more">%1$s kapitulua eta %2$d gehiago</string> | ||||
|     <string name="tracking_info">Norabide bakarreko sinkronizazioa jarraipen-zerbitzuetan kapituluaren aurrerapena eguneratzeko. Konfiguratu manga bakoitzaren jarraipena haien jarraipen botoia erabilita.</string> | ||||
|     <string name="pref_show_navigation_mode">Nabigazio-diseinuaren geruza erakutsi</string> | ||||
							
								
								
									
										55
									
								
								i18n/src/commonMain/resources/MR/fa/plurals.xml
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										55
									
								
								i18n/src/commonMain/resources/MR/fa/plurals.xml
									
									
									
									
									
										Normal file
									
								
							| @@ -0,0 +1,55 @@ | ||||
| <?xml version="1.0" encoding="utf-8"?> | ||||
| <resources> | ||||
|     <plurals name="update_check_notification_ext_updates"> | ||||
|         <item quantity="one">آپدیت برای یک افرونه موجود است</item> | ||||
|         <item quantity="other">آپدیت برای %d افرونه موجود است</item> | ||||
|     </plurals> | ||||
|     <plurals name="notification_chapters_multiple_and_more"> | ||||
|         <item quantity="one">قسمت های %1$s و 1 قسمت دیگر</item> | ||||
|         <item quantity="other">قسمت های %1$s و %2$d قسمت دیگر</item> | ||||
|     </plurals> | ||||
|     <plurals name="notification_chapters_generic"> | ||||
|         <item quantity="one">1 قسمت جدید</item> | ||||
|         <item quantity="other">%1$d قسمت جدید</item> | ||||
|     </plurals> | ||||
|     <plurals name="notification_new_chapters_summary"> | ||||
|         <item quantity="one">برای ۱ مانگا</item> | ||||
|         <item quantity="other">برای %d مانگا</item> | ||||
|     </plurals> | ||||
|     <plurals name="num_categories"> | ||||
|         <item quantity="one">%d دسته</item> | ||||
|         <item quantity="other">%d دسته</item> | ||||
|     </plurals> | ||||
|     <plurals name="lock_after_mins"> | ||||
|         <item quantity="one">بعد از %1$s دقیقه</item> | ||||
|         <item quantity="other">بعد از %1$s دقیقه</item> | ||||
|     </plurals> | ||||
|     <plurals name="download_queue_summary"> | ||||
|         <item quantity="one">۱ عدد باقی مانده</item> | ||||
|         <item quantity="other">%1$s عدد باقی مانده</item> | ||||
|     </plurals> | ||||
|     <plurals name="restore_completed_message"> | ||||
|         <item quantity="one">در %1$s با %2$s خطا انجام شد</item> | ||||
|         <item quantity="other">در %1$s با %2$s خطا انجام شد</item> | ||||
|     </plurals> | ||||
|     <plurals name="num_trackers"> | ||||
|         <item quantity="one">۱ ردیاب</item> | ||||
|         <item quantity="other">%d ردیاب</item> | ||||
|     </plurals> | ||||
|     <plurals name="manga_num_chapters"> | ||||
|         <item quantity="one">1 قسمت</item> | ||||
|         <item quantity="other">%1$s قسمت</item> | ||||
|     </plurals> | ||||
|     <plurals name="missing_chapters_warning"> | ||||
|         <item quantity="one">1 قسمت جا افتاده است</item> | ||||
|         <item quantity="other">%d قسمت جا افتاده است</item> | ||||
|     </plurals> | ||||
|     <plurals name="relative_time"> | ||||
|         <item quantity="one">دیروز</item> | ||||
|         <item quantity="other">%1$d روز پیش</item> | ||||
|     </plurals> | ||||
|     <plurals name="next_unread_chapters"> | ||||
|         <item quantity="one">قسمت خوانده نشده بعدی</item> | ||||
|         <item quantity="other">%d قسمت خوانده نشده بعدی</item> | ||||
|     </plurals> | ||||
| </resources> | ||||
| @@ -1,9 +1,5 @@ | ||||
| <?xml version="1.0" encoding="utf-8"?> | ||||
| <resources> | ||||
|     <plurals name="update_check_notification_ext_updates"> | ||||
|         <item quantity="one">آپدیت برای یک افرونه موجود است</item> | ||||
|         <item quantity="other">آپدیت برای %d افرونه موجود است</item> | ||||
|     </plurals> | ||||
|     <string name="update_check_notification_update_available">نسخه جدید موجود است!</string> | ||||
|     <string name="update_check_notification_download_error">خطا در دانلود</string> | ||||
|     <string name="update_check_notification_download_complete">دانلود کامل شد</string> | ||||
| @@ -14,10 +10,6 @@ | ||||
|     <string name="file_select_cover">عکس روی جلد را انتخاب کنید</string> | ||||
|     <string name="notification_first_add_to_library">لطفا قبل این کار مانگای موردنظر را به کتابخانه اضافه کنید</string> | ||||
|     <string name="notification_cover_update_failed">آپدیت عکس روی جلد با خطا مواجه شد</string> | ||||
|     <plurals name="notification_chapters_multiple_and_more"> | ||||
|         <item quantity="one">قسمت های %1$s و 1 قسمت دیگر</item> | ||||
|         <item quantity="other">قسمت های %1$s و %2$d قسمت دیگر</item> | ||||
|     </plurals> | ||||
|     <string name="notification_chapters_multiple">قسمت های %1$s</string> | ||||
|     <string name="notification_chapters_single_and_more">قسمت %1$s و %2$d قسمت دیگر</string> | ||||
|     <string name="notification_chapters_single">قسمت %1$s</string> | ||||
| @@ -149,14 +141,6 @@ | ||||
|     <string name="pref_webtoon_side_padding">فاصله از کنار صفحه</string> | ||||
|     <string name="pref_category_reading">درحال خواندن</string> | ||||
|     <string name="pref_always_show_chapter_transition">همیشه انتقال قسمت را نشان داده شود</string> | ||||
|     <plurals name="notification_chapters_generic"> | ||||
|         <item quantity="one">1 قسمت جدید</item> | ||||
|         <item quantity="other">%1$d قسمت جدید</item> | ||||
|     </plurals> | ||||
|     <plurals name="notification_new_chapters_summary"> | ||||
|         <item quantity="one">برای ۱ مانگا</item> | ||||
|         <item quantity="other">برای %d مانگا</item> | ||||
|     </plurals> | ||||
|     <string name="pref_category_for_this_series">برای این مجموعه</string> | ||||
|     <string name="decode_image_error">بازکردن عکس با خطا مواجه شد</string> | ||||
|     <string name="plan_to_read">قصد خواندن دارم(Plan to read)</string> | ||||
| @@ -168,10 +152,6 @@ | ||||
|     <string name="pref_true_color_summary">نوار نوار بودن صفحه را کاهش میدهد، ولی ممکن است در عملکرد تاثیر بگذارد</string> | ||||
|     <string name="pref_double_tap_anim_speed">Double tap animation speed</string> | ||||
|     <string name="ext_install">نصب</string> | ||||
|     <plurals name="num_categories"> | ||||
|         <item quantity="one">%d دسته</item> | ||||
|         <item quantity="other">%d دسته</item> | ||||
|     </plurals> | ||||
|     <string name="action_bookmark">نشانک قسمت</string> | ||||
|     <string name="channel_ext_updates">آپدیت افزونهها</string> | ||||
|     <string name="channel_new_chapters">به روزرسانی قسمتها</string> | ||||
| @@ -276,10 +256,6 @@ | ||||
|     <string name="hide_notification_content">مخفی کردن اعلانها</string> | ||||
|     <string name="secure_screen_summary">\"صفحه نمایش امن\" محتویات برنامه را هنگام عوض کردن برنامهها مخفی میکند و همچنین اسکرینشات را مسدود میکند</string> | ||||
|     <string name="secure_screen">صفحه نمایش امن</string> | ||||
|     <plurals name="lock_after_mins"> | ||||
|         <item quantity="one">بعد از %1$s دقیقه</item> | ||||
|         <item quantity="other">بعد از %1$s دقیقه</item> | ||||
|     </plurals> | ||||
|     <string name="lock_never">هرگز</string> | ||||
|     <string name="lock_always">همیشه</string> | ||||
|     <string name="lock_when_idle">قفل صفحه هنگام بیکاری</string> | ||||
| @@ -348,10 +324,6 @@ | ||||
|     <string name="email">آدرس ایمیل</string> | ||||
|     <string name="username">نام کاربری</string> | ||||
|     <string name="login_title">ورود به %1$s</string> | ||||
|     <plurals name="download_queue_summary"> | ||||
|         <item quantity="one">۱ عدد باقی مانده</item> | ||||
|         <item quantity="other">%1$s عدد باقی مانده</item> | ||||
|     </plurals> | ||||
|     <string name="downloaded_only_summary">همه مانگاهای موجود در کتابخانه را فیلتر می کند</string> | ||||
|     <string name="label_downloaded_only">فقط دانلود شده ها</string> | ||||
|     <string name="pref_acra_summary">به رفع اشکالات برنامه کمک می کند. هیچ گونه داده حساسی ارسال نخواهد شد</string> | ||||
| @@ -384,10 +356,6 @@ | ||||
|     <string name="creating_backup">درحال ایجاد نسخه پشتیبان</string> | ||||
|     <string name="backup_choice">چه چیزی را می خواهید پشتیبان گیری کنید ؟</string> | ||||
|     <string name="backup_in_progress">پشتیبان گیری هنوز در حال انجام است</string> | ||||
|     <plurals name="restore_completed_message"> | ||||
|         <item quantity="one">در %1$s با %2$s خطا انجام شد</item> | ||||
|         <item quantity="other">در %1$s با %2$s خطا انجام شد</item> | ||||
|     </plurals> | ||||
|     <string name="restore_duration">%02d دقیقه, %02d ثانیه</string> | ||||
|     <string name="restore_completed">بازیابی کامل شد</string> | ||||
|     <string name="backup_restore_missing_sources">منابع ناموجود:</string> | ||||
| @@ -432,14 +400,6 @@ | ||||
|     <string name="channel_progress">پیشرفت</string> | ||||
|     <string name="download_insufficient_space">به دلیل فضای کم دیسک امکان دانلود قسمت ها وجود ندارد</string> | ||||
|     <string name="loader_not_implemented_error">منبع یافت نشد</string> | ||||
|     <plurals name="num_trackers"> | ||||
|         <item quantity="one">۱ ردیاب</item> | ||||
|         <item quantity="other">%d ردیاب</item> | ||||
|     </plurals> | ||||
|     <plurals name="manga_num_chapters"> | ||||
|         <item quantity="one">1 قسمت</item> | ||||
|         <item quantity="other">%1$s قسمت</item> | ||||
|     </plurals> | ||||
|     <string name="unknown_status">وضعیت ناشناخته</string> | ||||
|     <string name="unknown_author">نویسنده ناشناخته</string> | ||||
|     <string name="no_pinned_sources">شما هیچ منبع پینشدهای ندارید</string> | ||||
| @@ -482,10 +442,6 @@ | ||||
|     <string name="myanimelist_relogin">لطفا دوباره به MAL وارد شوید</string> | ||||
|     <string name="chapter_settings">تنظیمات قسمت ها</string> | ||||
|     <string name="file_picker_error">هیچ نرم افزار انتخاب فایلی یافت نشد</string> | ||||
|     <plurals name="missing_chapters_warning"> | ||||
|         <item quantity="one">1 قسمت جا افتاده است</item> | ||||
|         <item quantity="other">%d قسمت جا افتاده است</item> | ||||
|     </plurals> | ||||
|     <string name="migration_help_guide">راهنمای تعویض منبع</string> | ||||
|     <string name="pref_clear_history">پاک کردن سابقه</string> | ||||
|     <string name="pref_show_nsfw_source">نمایش در لیست منابع و افزونهها</string> | ||||
| @@ -547,10 +503,6 @@ | ||||
|     <string name="network_not_metered">فقط روی شبکهی نامحدود</string> | ||||
|     <string name="pref_update_only_started">که شروع نشدهاند</string> | ||||
|     <string name="restrictions">محدودیتها: %s</string> | ||||
|     <plurals name="relative_time"> | ||||
|         <item quantity="one">دیروز</item> | ||||
|         <item quantity="other">%1$d روز پیش</item> | ||||
|     </plurals> | ||||
|     <string name="pref_update_only_completely_read">با قسمت(های) خواندهنشده</string> | ||||
|     <string name="pref_library_update_manga_restriction">از بهروزرسانی ورودیها صرفنظر کنید</string> | ||||
|     <string name="relative_time_today">امروز</string> | ||||
| @@ -634,10 +586,6 @@ | ||||
|     <string name="action_not_now">الان نه</string> | ||||
|     <string name="action_display_show_continue_reading_button">نمایش دکمه ادامه خواندن</string> | ||||
|     <string name="split_tall_images_summary">بهبود کارکرد ابزار خواندن</string> | ||||
|     <plurals name="next_unread_chapters"> | ||||
|         <item quantity="one">قسمت خوانده نشده بعدی</item> | ||||
|         <item quantity="other">%d قسمت خوانده نشده بعدی</item> | ||||
|     </plurals> | ||||
|     <string name="download_ahead_info">اگر قسمت فعلی و بعدی دانلود شده باشند، تنها برای ورودیهای کتابخانه کار میکند</string> | ||||
|     <string name="missing_storage_permission">اجازه دسترسی به حافظه داده نشده.</string> | ||||
|     <string name="backup_restore_content_full">داده ها از فایل پشتیبان برگردانده میشوند. | ||||
							
								
								
									
										55
									
								
								i18n/src/commonMain/resources/MR/fi/plurals.xml
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										55
									
								
								i18n/src/commonMain/resources/MR/fi/plurals.xml
									
									
									
									
									
										Normal file
									
								
							| @@ -0,0 +1,55 @@ | ||||
| <?xml version="1.0" encoding="utf-8"?> | ||||
| <resources> | ||||
|     <plurals name="lock_after_mins"> | ||||
|         <item quantity="one">Minuutin jälkeen</item> | ||||
|         <item quantity="other">%1$s minuutin jälkeen</item> | ||||
|     </plurals> | ||||
|     <plurals name="notification_chapters_generic"> | ||||
|         <item quantity="one">1 uusi luku</item> | ||||
|         <item quantity="other">%1$d uutta lukua</item> | ||||
|     </plurals> | ||||
|     <plurals name="notification_chapters_multiple_and_more"> | ||||
|         <item quantity="one">Luku %1$s ja 1 lisää</item> | ||||
|         <item quantity="other">Luvut %1$s ja %2$d lisää</item> | ||||
|     </plurals> | ||||
|     <plurals name="notification_new_chapters_summary"> | ||||
|         <item quantity="one">Yhdelle sarjalle</item> | ||||
|         <item quantity="other">%d sarjalle</item> | ||||
|     </plurals> | ||||
|     <plurals name="update_check_notification_ext_updates"> | ||||
|         <item quantity="one">Laajennuspäivitys saatavilla</item> | ||||
|         <item quantity="other">%d laajennuspäivitystä saatavilla</item> | ||||
|     </plurals> | ||||
|     <plurals name="download_queue_summary"> | ||||
|         <item quantity="one">1 jäljellä</item> | ||||
|         <item quantity="other">%1$s jäljellä</item> | ||||
|     </plurals> | ||||
|     <plurals name="num_categories"> | ||||
|         <item quantity="one">%d kategoria</item> | ||||
|         <item quantity="other">%d kategoriaa</item> | ||||
|     </plurals> | ||||
|     <plurals name="restore_completed_message"> | ||||
|         <item quantity="one">Valmistui %1$s virheitä löytyi %2$s</item> | ||||
|         <item quantity="other">Valmistui %1$s virheitä löytyi %2$s</item> | ||||
|     </plurals> | ||||
|     <plurals name="manga_num_chapters"> | ||||
|         <item quantity="one">1 luku</item> | ||||
|         <item quantity="other">%1$s lukua</item> | ||||
|     </plurals> | ||||
|     <plurals name="num_trackers"> | ||||
|         <item quantity="one">1 seurantapalvelin</item> | ||||
|         <item quantity="other">%d seurantapalvelinta</item> | ||||
|     </plurals> | ||||
|     <plurals name="missing_chapters_warning"> | ||||
|         <item quantity="one">1 puuttuva luku</item> | ||||
|         <item quantity="other">%d puuttuvaa lukua</item> | ||||
|     </plurals> | ||||
|     <plurals name="relative_time"> | ||||
|         <item quantity="one">Eilen</item> | ||||
|         <item quantity="other">%1$d päivää sitten</item> | ||||
|     </plurals> | ||||
|     <plurals name="next_unread_chapters"> | ||||
|         <item quantity="one">Seuraava lukematon luku</item> | ||||
|         <item quantity="other">Seuraavat %d lukematonta lukua</item> | ||||
|     </plurals> | ||||
| </resources> | ||||
| @@ -314,26 +314,14 @@ | ||||
|     <string name="lock_with_biometrics">Vaadi lukituksen avaaminen</string> | ||||
|     <string name="lock_always">Aina</string> | ||||
|     <string name="lock_never">Ei koskaan</string> | ||||
|     <plurals name="lock_after_mins"> | ||||
|         <item quantity="one">Minuutin jälkeen</item> | ||||
|         <item quantity="other">%1$s minuutin jälkeen</item> | ||||
|     </plurals> | ||||
|     <string name="information_cloudflare_bypass_failure">Cloudflaren ohittaminen epäonnistui</string> | ||||
|     <string name="channel_new_chapters">Lukujen päivitykset</string> | ||||
|     <string name="pref_category_display">Näyttö</string> | ||||
|     <string name="ext_updates_pending">Päivitettävät</string> | ||||
|     <string name="information_webview_outdated">Päivitä WebView-sovellus yhteensopivuuden parantamiseksi</string> | ||||
|     <plurals name="notification_chapters_generic"> | ||||
|         <item quantity="one">1 uusi luku</item> | ||||
|         <item quantity="other">%1$d uutta lukua</item> | ||||
|     </plurals> | ||||
|     <string name="notification_chapters_single">Luku %1$s</string> | ||||
|     <string name="notification_chapters_single_and_more">Luku %1$s ja %2$d lisää</string> | ||||
|     <string name="notification_chapters_multiple">Luvut %1$s</string> | ||||
|     <plurals name="notification_chapters_multiple_and_more"> | ||||
|         <item quantity="one">Luku %1$s ja 1 lisää</item> | ||||
|         <item quantity="other">Luvut %1$s ja %2$d lisää</item> | ||||
|     </plurals> | ||||
|     <string name="hide_notification_content">Piilota ilmoitusten sisältö</string> | ||||
|     <string name="notification_check_updates">Etsitään uusia lukuja</string> | ||||
|     <string name="lock_when_idle">Lukitse käyttämättömänä</string> | ||||
| @@ -345,19 +333,11 @@ | ||||
|     <string name="email">Sähköpostiosoite</string> | ||||
|     <string name="pref_cutout_short">Näytä sisältö leikkausalueella</string> | ||||
|     <string name="pref_always_show_chapter_transition">Näytä aina luvun vaihdos</string> | ||||
|     <plurals name="notification_new_chapters_summary"> | ||||
|         <item quantity="one">Yhdelle sarjalle</item> | ||||
|         <item quantity="other">%d sarjalle</item> | ||||
|     </plurals> | ||||
|     <string name="action_menu">Valikko</string> | ||||
|     <string name="action_newest">Uusin</string> | ||||
|     <string name="action_oldest">Vanhin</string> | ||||
|     <string name="action_move_to_top">Siirrä alkuun</string> | ||||
|     <string name="action_move_to_bottom">Siirrä loppuun</string> | ||||
|     <plurals name="update_check_notification_ext_updates"> | ||||
|         <item quantity="one">Laajennuspäivitys saatavilla</item> | ||||
|         <item quantity="other">%d laajennuspäivitystä saatavilla</item> | ||||
|     </plurals> | ||||
|     <string name="channel_ext_updates">Laajennuspäivitykset</string> | ||||
|     <string name="restoring_backup_canceled">Palautus peruttu</string> | ||||
|     <string name="restoring_backup_error">Varmuuskopion palautus epäonnistui</string> | ||||
| @@ -389,20 +369,8 @@ | ||||
|     <string name="local_source_help_guide">Paikallinen lähdeopas</string> | ||||
|     <string name="restore_duration">%02d min, %02d sek</string> | ||||
|     <string name="downloaded_only_summary">Suodattaa kaikki sarjat kirjastossasi</string> | ||||
|     <plurals name="download_queue_summary"> | ||||
|         <item quantity="one">1 jäljellä</item> | ||||
|         <item quantity="other">%1$s jäljellä</item> | ||||
|     </plurals> | ||||
|     <string name="gray_background">Harmaa</string> | ||||
|     <string name="pref_category_for_this_series">Tälle sarjalle</string> | ||||
|     <plurals name="num_categories"> | ||||
|         <item quantity="one">%d kategoria</item> | ||||
|         <item quantity="other">%d kategoriaa</item> | ||||
|     </plurals> | ||||
|     <plurals name="restore_completed_message"> | ||||
|         <item quantity="one">Valmistui %1$s virheitä löytyi %2$s</item> | ||||
|         <item quantity="other">Valmistui %1$s virheitä löytyi %2$s</item> | ||||
|     </plurals> | ||||
|     <string name="pref_true_color_summary">Vähentää juovia, mutta vaikuttaa suorituskykyyn</string> | ||||
|     <string name="viewer">Lukutila</string> | ||||
|     <string name="battery_optimization_setting_activity_not_found">Laiteasetuksia ei voitu avata</string> | ||||
| @@ -429,10 +397,6 @@ | ||||
|     <string name="action_start">Aloita</string> | ||||
|     <string name="loader_not_implemented_error">Lähdettä ei löytynyt</string> | ||||
|     <string name="action_disable">Poista käytöstä</string> | ||||
|     <plurals name="manga_num_chapters"> | ||||
|         <item quantity="one">1 luku</item> | ||||
|         <item quantity="other">%1$s lukua</item> | ||||
|     </plurals> | ||||
|     <string name="requires_app_restart">Edellyttää sovelluksen käynnisstämisen uudelleen</string> | ||||
|     <string name="label_network">Verkko</string> | ||||
|     <string name="tapping_inverted_both">Molemmat</string> | ||||
| @@ -449,10 +413,6 @@ | ||||
|     <string name="pref_category_reading_mode">Lukutila</string> | ||||
|     <string name="pref_category_theme">Teema</string> | ||||
|     <string name="action_sort_date_added">Lisäyspäivämäärä</string> | ||||
|     <plurals name="num_trackers"> | ||||
|         <item quantity="one">1 seurantapalvelin</item> | ||||
|         <item quantity="other">%d seurantapalvelinta</item> | ||||
|     </plurals> | ||||
|     <string name="no_pinned_sources">Sinulla ei ole kiinnitettyjä lähteitä</string> | ||||
|     <string name="channel_complete">Valmis</string> | ||||
|     <string name="channel_progress">Edistyminen</string> | ||||
| @@ -463,10 +423,6 @@ | ||||
|     <string name="ext_nsfw_warning">Voi sisältää NSFW (18+) -sisältöä</string> | ||||
|     <string name="ext_nsfw_short">18+</string> | ||||
|     <string name="parental_controls_info">Tämä ei estä epävirallisia tai mahdollisesti väärin merkittyjä laajennuksia näyttämästä NSFW 18+ sisältöä sovelluksessa.</string> | ||||
|     <plurals name="missing_chapters_warning"> | ||||
|         <item quantity="one">1 puuttuva luku</item> | ||||
|         <item quantity="other">%d puuttuvaa lukua</item> | ||||
|     </plurals> | ||||
|     <string name="no_chapters_error">Lukuja ei löytynyt</string> | ||||
|     <string name="chapter_settings_updated">Päivitetyt luvun oletusasetukset</string> | ||||
|     <string name="set_chapter_settings_as_default">Aseta oletukseksi</string> | ||||
| @@ -548,10 +504,6 @@ | ||||
|     <string name="on">Päällä</string> | ||||
|     <string name="getting_started_guide">Aloitusopas</string> | ||||
|     <string name="download_queue_size_warning">Varoitus: massalataukset voivat johtaa siihen, että lähteet muuttuvat hitaammiksi käyttää ja/tai ne estävät Tachiyomin käytön. Napauta saadaksesi lisätietoja.</string> | ||||
|     <plurals name="relative_time"> | ||||
|         <item quantity="one">Eilen</item> | ||||
|         <item quantity="other">%1$d päivää sitten</item> | ||||
|     </plurals> | ||||
|     <string name="action_show_manga">Näytä manga</string> | ||||
|     <string name="action_display_cover_only_grid">Kansikuva ruudukko</string> | ||||
|     <string name="theme_monet">Dynaaminen</string> | ||||
| @@ -597,10 +549,6 @@ | ||||
|     <string name="action_sort_unread_count">Lukemattomien määrä</string> | ||||
|     <string name="delete_category">Poista kategoria</string> | ||||
|     <string name="action_track">Jäljitä</string> | ||||
|     <plurals name="next_unread_chapters"> | ||||
|         <item quantity="one">Seuraava lukematon luku</item> | ||||
|         <item quantity="other">Seuraavat %d lukematonta lukua</item> | ||||
|     </plurals> | ||||
|     <string name="pref_low">Alhainen</string> | ||||
|     <string name="pref_remove_exclude_categories">Poissuljetut kategoriat</string> | ||||
|     <string name="pref_lowest">Alhaisin</string> | ||||
							
								
								
									
										67
									
								
								i18n/src/commonMain/resources/MR/fil/plurals.xml
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										67
									
								
								i18n/src/commonMain/resources/MR/fil/plurals.xml
									
									
									
									
									
										Normal file
									
								
							| @@ -0,0 +1,67 @@ | ||||
| <?xml version="1.0" encoding="utf-8"?> | ||||
| <resources> | ||||
|     <plurals name="lock_after_mins"> | ||||
|         <item quantity="one">Pagkatapos ng %1$s minuto</item> | ||||
|         <item quantity="other">Pagkatapos ng %1$s (na) minuto</item> | ||||
|     </plurals> | ||||
|     <plurals name="num_categories"> | ||||
|         <item quantity="one">%d kategorya</item> | ||||
|         <item quantity="other">%d (na) kategorya</item> | ||||
|     </plurals> | ||||
|     <plurals name="update_check_notification_ext_updates"> | ||||
|         <item quantity="one">Ang extension ay available upang i-update</item> | ||||
|         <item quantity="other">Ang mga %d (na) extension ay available upang i-update</item> | ||||
|     </plurals> | ||||
|     <plurals name="notification_chapters_multiple_and_more"> | ||||
|         <item quantity="one">Mga kabanata %1$s at isa pa</item> | ||||
|         <item quantity="other">Mga kabanata %1$s at %2$d pa</item> | ||||
|     </plurals> | ||||
|     <plurals name="notification_chapters_generic"> | ||||
|         <item quantity="one">%1$d bagong kabanata</item> | ||||
|         <item quantity="other">%1$d (na) bagong kabanata</item> | ||||
|     </plurals> | ||||
|     <plurals name="notification_new_chapters_summary"> | ||||
|         <item quantity="one">Para sa %d na entry</item> | ||||
|         <item quantity="other">Para sa %d na mga entry</item> | ||||
|     </plurals> | ||||
|     <plurals name="manga_num_chapters"> | ||||
|         <item quantity="one">%1$s kabanata</item> | ||||
|         <item quantity="other">%1$s (na) kabanata</item> | ||||
|     </plurals> | ||||
|     <plurals name="download_queue_summary"> | ||||
|         <item quantity="one">%1$s na lang</item> | ||||
|         <item quantity="other">%1$s pa ang nasa queue</item> | ||||
|     </plurals> | ||||
|     <plurals name="restore_completed_message"> | ||||
|         <item quantity="one">Na-restore sa loob ng %1$s na may %2$s error</item> | ||||
|         <item quantity="other">Na-restore sa loob ng %1$s na may %2$s (na) error</item> | ||||
|     </plurals> | ||||
|     <plurals name="num_trackers"> | ||||
|         <item quantity="one">%d tracker</item> | ||||
|         <item quantity="other">%d na mga tracker</item> | ||||
|     </plurals> | ||||
|     <plurals name="missing_chapters_warning"> | ||||
|         <item quantity="one">Nilaktawan ang %d na kabanata, maaaring ito ay wala sa source o na-filter ang mga ito</item> | ||||
|         <item quantity="other">Nilaktawan ang %d na mga kabanata, maaaring wala sa source o na-filter ang mga ito</item> | ||||
|     </plurals> | ||||
|     <plurals name="relative_time"> | ||||
|         <item quantity="one">Kahapon</item> | ||||
|         <item quantity="other">%1$d araw na ang makalipas</item> | ||||
|     </plurals> | ||||
|     <plurals name="next_unread_chapters"> | ||||
|         <item quantity="one">Susunod na hindi pa nababasa na kabanata</item> | ||||
|         <item quantity="other">Susunod na %d di pa nababasa na kabanata</item> | ||||
|     </plurals> | ||||
|     <plurals name="download_amount"> | ||||
|         <item quantity="one">Sunod na kabanata</item> | ||||
|         <item quantity="other">Susunod na %d kabanata</item> | ||||
|     </plurals> | ||||
|     <plurals name="missing_chapters"> | ||||
|         <item quantity="one">Nawawalang %1$s na kabanata</item> | ||||
|         <item quantity="other">Nawawalang %1$s mga kabanata</item> | ||||
|     </plurals> | ||||
|     <plurals name="day"> | ||||
|         <item quantity="one">1 araw</item> | ||||
|         <item quantity="other">%d (mga) araw</item> | ||||
|     </plurals> | ||||
| </resources> | ||||
| @@ -92,10 +92,6 @@ | ||||
|     <string name="label_settings">Mga Setting</string> | ||||
|     <string name="label_more">Higit pa</string> | ||||
|     <string name="name">Pangalan</string> | ||||
|     <plurals name="lock_after_mins"> | ||||
|         <item quantity="one">Pagkatapos ng %1$s minuto</item> | ||||
|         <item quantity="other">Pagkatapos ng %1$s (na) minuto</item> | ||||
|     </plurals> | ||||
|     <string name="lock_never">Hindi</string> | ||||
|     <string name="lock_always">Palagi</string> | ||||
|     <string name="lock_when_idle">Isara kung nakatambay</string> | ||||
| @@ -206,10 +202,6 @@ | ||||
|     <string name="ext_update">I-update</string> | ||||
|     <string name="ext_updates_pending">Nakabinbin ang mga update</string> | ||||
|     <string name="all">Lahat</string> | ||||
|     <plurals name="num_categories"> | ||||
|         <item quantity="one">%d kategorya</item> | ||||
|         <item quantity="other">%d (na) kategorya</item> | ||||
|     </plurals> | ||||
|     <string name="default_category_summary">Palaging tanungin</string> | ||||
|     <string name="default_category">Default na kategorya</string> | ||||
|     <string name="pref_library_update_refresh_metadata_summary">Maghanap ng mga bagong cover at detalye kapag nag-a-update ng Aklatan</string> | ||||
| @@ -270,10 +262,6 @@ | ||||
|     <string name="information_webview_outdated">Paki-update po ang WebView app para sa mas maayos na paggana</string> | ||||
|     <string name="information_webview_required">Kinakailangan ng app ang WebView upang gumana ito</string> | ||||
|     <string name="information_cloudflare_bypass_failure">Bigong ma-bypass ang Cloudflare</string> | ||||
|     <plurals name="update_check_notification_ext_updates"> | ||||
|         <item quantity="one">Ang extension ay available upang i-update</item> | ||||
|         <item quantity="other">Ang mga %d (na) extension ay available upang i-update</item> | ||||
|     </plurals> | ||||
|     <string name="update_check_notification_update_available">May bagong bersyon!</string> | ||||
|     <string name="update_check_notification_download_error">Nagka-error sa pag-download</string> | ||||
|     <string name="update_check_notification_download_complete">I-tap upang ma-install ang update</string> | ||||
| @@ -284,21 +272,9 @@ | ||||
|     <string name="file_select_cover">Pumili ng cover</string> | ||||
|     <string name="notification_first_add_to_library">Maaaring ilagay ang entry sa iyong library bago ito gawin</string> | ||||
|     <string name="notification_cover_update_failed">Bigong mapalitan ang cover</string> | ||||
|     <plurals name="notification_chapters_multiple_and_more"> | ||||
|         <item quantity="one">Mga kabanata %1$s at isa pa</item> | ||||
|         <item quantity="other">Mga kabanata %1$s at %2$d pa</item> | ||||
|     </plurals> | ||||
|     <string name="notification_chapters_multiple">Mga kabanata %1$s</string> | ||||
|     <string name="notification_chapters_single_and_more">Kabanata %1$s at karagdagang %2$d pa</string> | ||||
|     <string name="notification_chapters_single">Kabanata %1$s</string> | ||||
|     <plurals name="notification_chapters_generic"> | ||||
|         <item quantity="one">%1$d bagong kabanata</item> | ||||
|         <item quantity="other">%1$d (na) bagong kabanata</item> | ||||
|     </plurals> | ||||
|     <plurals name="notification_new_chapters_summary"> | ||||
|         <item quantity="one">Para sa %d na entry</item> | ||||
|         <item quantity="other">Para sa %d na mga entry</item> | ||||
|     </plurals> | ||||
|     <string name="notification_new_chapters">May mga bagong kabanata</string> | ||||
|     <string name="notification_check_updates">Naghahanap ng mga bagong kabanata</string> | ||||
|     <string name="download_insufficient_space">Di ma-download ang mga kabanata dahil sa mababang espasyo</string> | ||||
| @@ -364,10 +340,6 @@ | ||||
|     <string name="copied_to_clipboard">Kinopya sa clipboard: | ||||
| \n%1$s</string> | ||||
|     <string name="delete_downloads_for_manga">Burahin ang mga na-download na kabanata\?</string> | ||||
|     <plurals name="manga_num_chapters"> | ||||
|         <item quantity="one">%1$s kabanata</item> | ||||
|         <item quantity="other">%1$s (na) kabanata</item> | ||||
|     </plurals> | ||||
|     <string name="manga_info_expand">Palawakin</string> | ||||
|     <string name="manga_info_collapse">Bawasan</string> | ||||
|     <string name="manga_removed_library">Tinanggal sa Aklatan</string> | ||||
| @@ -403,10 +375,6 @@ | ||||
|     <string name="email">Email address</string> | ||||
|     <string name="username">Username (pangalan)</string> | ||||
|     <string name="login_title">Mag-login sa %1$s</string> | ||||
|     <plurals name="download_queue_summary"> | ||||
|         <item quantity="one">%1$s na lang</item> | ||||
|         <item quantity="other">%1$s pa ang nasa queue</item> | ||||
|     </plurals> | ||||
|     <string name="downloaded_only_summary">Pini-filter ang lahat ng mga entry sa iyong akalatan</string> | ||||
|     <string name="label_downloaded_only">Mga na-download lang</string> | ||||
|     <string name="pref_acra_summary">Nakatutulong sa pag-ayos sa mga bug. Walang sensitibong data ang ipapadala</string> | ||||
| @@ -438,10 +406,6 @@ | ||||
|     <string name="restoring_backup_error">Bigong ma-restore ang backup</string> | ||||
|     <string name="restoring_backup_canceled">Kinansela ang pag-restore</string> | ||||
|     <string name="restore_in_progress">Inire-restore na</string> | ||||
|     <plurals name="restore_completed_message"> | ||||
|         <item quantity="one">Na-restore sa loob ng %1$s na may %2$s error</item> | ||||
|         <item quantity="other">Na-restore sa loob ng %1$s na may %2$s (na) error</item> | ||||
|     </plurals> | ||||
|     <string name="restore_completed">Na-restore na</string> | ||||
|     <string name="restoring_backup">Rine-restore ang backup</string> | ||||
|     <string name="creating_backup_error">Bigong ma-backup</string> | ||||
| @@ -449,10 +413,6 @@ | ||||
|     <string name="backup_choice">Anong iba-backup mo\?</string> | ||||
|     <string name="backup_in_progress">Bina-backup na</string> | ||||
|     <string name="restore_duration">%02d (na) min, %02d (na) seg</string> | ||||
|     <plurals name="num_trackers"> | ||||
|         <item quantity="one">%d tracker</item> | ||||
|         <item quantity="other">%d na mga tracker</item> | ||||
|     </plurals> | ||||
|     <string name="no_pinned_sources">Wala kang naka-pin na source</string> | ||||
|     <string name="channel_complete">Tapos na</string> | ||||
|     <string name="channel_errors">Mga error</string> | ||||
| @@ -463,10 +423,6 @@ | ||||
|     <string name="parental_controls_info">Hindi nito naiiwasan ang pagpapakita ng mga NSFW (18+) sa mga di-opisyal o posibleng maling naka-flag na extension sa loob ng app.</string> | ||||
|     <string name="ext_nsfw_warning">Posibleng may NSFW (18+) content ang mga source mula sa extension na ito</string> | ||||
|     <string name="ext_nsfw_short">18+</string> | ||||
|     <plurals name="missing_chapters_warning"> | ||||
|         <item quantity="one">Nilaktawan ang %d na kabanata, maaaring ito ay wala sa source o na-filter ang mga ito</item> | ||||
|         <item quantity="other">Nilaktawan ang %d na mga kabanata, maaaring wala sa source o na-filter ang mga ito</item> | ||||
|     </plurals> | ||||
|     <string name="no_chapters_error">Walang nakitang kabanata</string> | ||||
|     <string name="confirm_set_chapter_settings">Gusto mo bang i-save at ipagpaubaya ang pagsasaayos na ito\?</string> | ||||
|     <string name="set_chapter_settings_as_default">Ipagpaubaya</string> | ||||
| @@ -576,10 +532,6 @@ | ||||
|     <string name="pref_highest">Pinakamataas</string> | ||||
|     <string name="pref_hide_threshold">Sensitivity para sa pagtatago ng menu sa scroll</string> | ||||
|     <string name="pref_inverted_colors">Baligtad</string> | ||||
|     <plurals name="relative_time"> | ||||
|         <item quantity="one">Kahapon</item> | ||||
|         <item quantity="other">%1$d araw na ang makalipas</item> | ||||
|     </plurals> | ||||
|     <string name="relative_time_today">Ngayon</string> | ||||
|     <string name="theme_tealturquoise">Teal at Turquoise</string> | ||||
|     <string name="pref_category_appearance">Hitsura</string> | ||||
| @@ -686,10 +638,6 @@ | ||||
|     <string name="auto_download_while_reading">Kusang mag-download habang nagbabasa</string> | ||||
|     <string name="download_ahead_info">Gumagana lamang sa kasalukuyang kabanata + ang susunod ay na-download na.</string> | ||||
|     <string name="are_you_sure">Sigurado ka ba\?</string> | ||||
|     <plurals name="next_unread_chapters"> | ||||
|         <item quantity="one">Susunod na hindi pa nababasa na kabanata</item> | ||||
|         <item quantity="other">Susunod na %d di pa nababasa na kabanata</item> | ||||
|     </plurals> | ||||
|     <string name="multi_lang">Marami</string> | ||||
|     <string name="remove_manga">Tatanggalin mo na ang \"%s\" mula sa aklatan mo</string> | ||||
|     <string name="updates_last_update_info">Huling update sa aklatan: %s</string> | ||||
| @@ -757,15 +705,7 @@ | ||||
|     <string name="seconds_short">%ds</string> | ||||
|     <string name="action_copy_to_clipboard">Kopyahin sa clipboard</string> | ||||
|     <string name="pref_hide_in_library_items">Itago ang mga entry na nasa aklatan na</string> | ||||
|     <plurals name="download_amount"> | ||||
|         <item quantity="one">Sunod na kabanata</item> | ||||
|         <item quantity="other">Susunod na %d kabanata</item> | ||||
|     </plurals> | ||||
|     <string name="action_update_category">I-update ang kategorya</string> | ||||
|     <plurals name="missing_chapters"> | ||||
|         <item quantity="one">Nawawalang %1$s na kabanata</item> | ||||
|         <item quantity="other">Nawawalang %1$s mga kabanata</item> | ||||
|     </plurals> | ||||
|     <string name="pref_page_rotate">I-rotate ang malalawak na pahina upang magkasya</string> | ||||
|     <string name="pref_page_rotate_invert">I-flip ang oryentasyon ng mga pinaikot na malalawak na pahina</string> | ||||
|     <string name="overlay_header">Nakapatong (Overlay)</string> | ||||
| @@ -783,10 +723,6 @@ | ||||
|     <string name="action_filter_interval_dropped">Itinigil\? Huli ng 20+ at 2 buwan</string> | ||||
|     <string name="action_filter_interval_passed">Lumipas ang check period</string> | ||||
|     <string name="action_filter_interval_long">Kunin kada buwan (kada ika-28 na araw)</string> | ||||
|     <plurals name="day"> | ||||
|         <item quantity="one">1 araw</item> | ||||
|         <item quantity="other">%d (mga) araw</item> | ||||
|     </plurals> | ||||
|     <string name="manga_display_interval_title">Tantyahin bawat</string> | ||||
|     <string name="manga_display_modified_interval_title">Itakdang i-update bawat</string> | ||||
|     <string name="pref_update_only_in_release_period">Sa labas ng inaasahang release period</string> | ||||
							
								
								
									
										83
									
								
								i18n/src/commonMain/resources/MR/fr/plurals.xml
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										83
									
								
								i18n/src/commonMain/resources/MR/fr/plurals.xml
									
									
									
									
									
										Normal file
									
								
							| @@ -0,0 +1,83 @@ | ||||
| <?xml version="1.0" encoding="utf-8"?> | ||||
| <resources> | ||||
|     <plurals name="lock_after_mins"> | ||||
|         <item quantity="one">Après %1$s minute</item> | ||||
|         <item quantity="many">Après %1$s minutes</item> | ||||
|         <item quantity="other">Après %1$s minutes</item> | ||||
|     </plurals> | ||||
|     <plurals name="notification_chapters_generic"> | ||||
|         <item quantity="one">%1$d nouveau chapitre</item> | ||||
|         <item quantity="many">%1$d nouveaux chapitres</item> | ||||
|         <item quantity="other">%1$d nouveaux chapitres</item> | ||||
|     </plurals> | ||||
|     <plurals name="notification_chapters_multiple_and_more"> | ||||
|         <item quantity="one">Chapitre %1$s et 1 autre</item> | ||||
|         <item quantity="many">Chapitres %1$s et %2$d autres</item> | ||||
|         <item quantity="other">Chapitres %1$s et %2$d autres</item> | ||||
|     </plurals> | ||||
|     <plurals name="notification_new_chapters_summary"> | ||||
|         <item quantity="one">Pour %d titre</item> | ||||
|         <item quantity="many">Pour %d titres</item> | ||||
|         <item quantity="other">Pour %d titres</item> | ||||
|     </plurals> | ||||
|     <plurals name="update_check_notification_ext_updates"> | ||||
|         <item quantity="one">Mise à jour d\'extension disponible</item> | ||||
|         <item quantity="many">%d mises à jour d\'extensions disponibles</item> | ||||
|         <item quantity="other">%d mises à jour d\'extensions disponibles</item> | ||||
|     </plurals> | ||||
|     <plurals name="download_queue_summary"> | ||||
|         <item quantity="one">%1$s restant</item> | ||||
|         <item quantity="many">%1$s restants</item> | ||||
|         <item quantity="other">%1$s restants</item> | ||||
|     </plurals> | ||||
|     <plurals name="num_categories"> | ||||
|         <item quantity="one">%d catégorie</item> | ||||
|         <item quantity="many">%d catégories</item> | ||||
|         <item quantity="other">%d catégories</item> | ||||
|     </plurals> | ||||
|     <plurals name="restore_completed_message"> | ||||
|         <item quantity="one">Effectuée en %1$s avec %2$s erreur</item> | ||||
|         <item quantity="many">Effectuée en %1$s avec %2$s erreurs</item> | ||||
|         <item quantity="other">Effectuée en %1$s avec %2$s erreurs</item> | ||||
|     </plurals> | ||||
|     <plurals name="manga_num_chapters"> | ||||
|         <item quantity="one">%1$s chapitre</item> | ||||
|         <item quantity="many">%1$s chapitres</item> | ||||
|         <item quantity="other">%1$s chapitres</item> | ||||
|     </plurals> | ||||
|     <plurals name="num_trackers"> | ||||
|         <item quantity="one">Suivi par %d service</item> | ||||
|         <item quantity="many">Suivi par %d services</item> | ||||
|         <item quantity="other">Suivi par %d services</item> | ||||
|     </plurals> | ||||
|     <plurals name="missing_chapters_warning"> | ||||
|         <item quantity="one">%d chapitre a été sauté, soit la source ne l\'a pas, soit il a été filtré</item> | ||||
|         <item quantity="many">%d chapitres ont été sautés, soit la source ne les a pas, soit ils ont été filtrés</item> | ||||
|         <item quantity="other">%d chapitres ont été sautés, soit la source ne les a pas, soit il ont été filtrés</item> | ||||
|     </plurals> | ||||
|     <plurals name="relative_time"> | ||||
|         <item quantity="one">Hier</item> | ||||
|         <item quantity="many">Il y a %1$d jours</item> | ||||
|         <item quantity="other">Il y a %1$d jours</item> | ||||
|     </plurals> | ||||
|     <plurals name="next_unread_chapters"> | ||||
|         <item quantity="one">Chapitre suivant non lu</item> | ||||
|         <item quantity="many">Les %d suivants non lus</item> | ||||
|         <item quantity="other">Les %d suivants non lus</item> | ||||
|     </plurals> | ||||
|     <plurals name="download_amount"> | ||||
|         <item quantity="one">Chapitre suivant</item> | ||||
|         <item quantity="many">%d chapitres suivants</item> | ||||
|         <item quantity="other">%d chapitres suivants</item> | ||||
|     </plurals> | ||||
|     <plurals name="missing_chapters"> | ||||
|         <item quantity="one">%1$s chapitre manquant</item> | ||||
|         <item quantity="many">%1$s chapitres manquants</item> | ||||
|         <item quantity="other">%1$s chapitres manquants</item> | ||||
|     </plurals> | ||||
|     <plurals name="day"> | ||||
|         <item quantity="one">1 jour</item> | ||||
|         <item quantity="many">%d jours</item> | ||||
|         <item quantity="other">%d jours</item> | ||||
|     </plurals> | ||||
| </resources> | ||||
| @@ -1,14 +1,12 @@ | ||||
| <?xml version="1.0" encoding="utf-8"?> | ||||
| <resources> | ||||
|     <string name="name">Nom</string> | ||||
|     <!-- Activities and fragments labels (toolbar title) --> | ||||
|     <string name="label_settings">Paramètres</string> | ||||
|     <string name="label_download_queue">File de téléchargement</string> | ||||
|     <string name="label_library">Bibliothèque</string> | ||||
|     <string name="label_recent_manga">Historique</string> | ||||
|     <string name="label_recent_updates">Mises à jour</string> | ||||
|     <string name="label_backup">Sauvegarder et restaurer</string> | ||||
|     <!-- Actions --> | ||||
|     <string name="action_settings">Paramètres</string> | ||||
|     <string name="action_filter">Filtre</string> | ||||
|     <string name="action_filter_bookmarked">Favori</string> | ||||
| @@ -50,17 +48,13 @@ | ||||
|     <string name="action_share">Partager</string> | ||||
|     <string name="action_save">Télécharger la page</string> | ||||
|     <string name="action_reset">Réinitialiser</string> | ||||
|     <!-- Operations --> | ||||
|     <string name="loading">Chargement…</string> | ||||
|     <!-- Preferences --> | ||||
|     <!-- Subsections --> | ||||
|     <string name="pref_category_general">Général</string> | ||||
|     <string name="pref_category_reader">Lecteur</string> | ||||
|     <string name="pref_category_downloads">Téléchargements</string> | ||||
|     <string name="pref_category_tracking">Suivi</string> | ||||
|     <string name="pref_category_advanced">Avancé</string> | ||||
|     <string name="pref_category_about">À propos</string> | ||||
|     <!-- General section --> | ||||
|     <string name="pref_library_columns">Taille de grille</string> | ||||
|     <string name="portrait">Portrait</string> | ||||
|     <string name="landscape">Paysage</string> | ||||
| @@ -75,7 +69,6 @@ | ||||
|     <string name="charging">Lors de la charge</string> | ||||
|     <string name="pref_update_only_non_completed">Ayant comme statut « Terminé »</string> | ||||
|     <string name="pref_auto_update_manga_sync">Synchroniser la progression après lecture</string> | ||||
|     <!-- Reader section --> | ||||
|     <string name="pref_fullscreen">Plein écran</string> | ||||
|     <string name="pref_page_transitions">Activer les transitions</string> | ||||
|     <string name="pref_show_page_number">Afficher le numéro des pages</string> | ||||
| @@ -112,7 +105,6 @@ | ||||
|     <string name="color_filter_g_value">V</string> | ||||
|     <string name="color_filter_b_value">B</string> | ||||
|     <string name="color_filter_a_value">O</string> | ||||
|     <!-- Downloads section --> | ||||
|     <string name="pref_download_directory">Répertoire de téléchargement</string> | ||||
|     <string name="pref_remove_after_read">Suppression automatique après lecture</string> | ||||
|     <string name="disabled">Désactivé</string> | ||||
| @@ -121,9 +113,7 @@ | ||||
|     <string name="third_to_last">Troisième chapitre avant le dernier lu</string> | ||||
|     <string name="fourth_to_last">Quatrième chapitre avant le dernier lu</string> | ||||
|     <string name="pref_download_new">Télécharger les nouveaux chapitres</string> | ||||
|     <!-- Sync section --> | ||||
|     <string name="services">Services</string> | ||||
|     <!-- Advanced section --> | ||||
|     <string name="used_cache">Utilisé : %1$s</string> | ||||
|     <string name="cache_deleted">Cache effacé. %1$d fichiers ont été supprimés</string> | ||||
|     <string name="cache_delete_error">Une erreur est survenue lors de l\'effacement du cache</string> | ||||
| @@ -132,26 +122,18 @@ | ||||
|     <string name="pref_clear_database">Effacer la base de données</string> | ||||
|     <string name="pref_clear_database_summary">Supprimer l\'historique des entrées qui ne sont pas enregistrées dans votre bibliothèque</string> | ||||
|     <string name="clear_database_completed">Entrées supprimées</string> | ||||
|     <!-- About section --> | ||||
|     <string name="version">Version</string> | ||||
|     <!-- ACRA --> | ||||
|     <string name="pref_enable_acra">Envoyer des rapports de plantage</string> | ||||
|     <string name="pref_acra_summary">Aident à corriger les bugs. Aucune donnée sensible ne sera envoyée</string> | ||||
|     <!-- Login dialog --> | ||||
|     <string name="login_title">Connexion à %1$s</string> | ||||
|     <string name="username">Nom d\'utilisateur</string> | ||||
|     <string name="password">Mot de passe</string> | ||||
|     <string name="login">Se connecter</string> | ||||
|     <string name="unknown_error">Erreur inconnue</string> | ||||
|     <!-- Library fragment --> | ||||
|     <!-- Catalogue fragment --> | ||||
|     <!-- Manga activity --> | ||||
|     <!-- Manga info fragment --> | ||||
|     <string name="ongoing">En cours</string> | ||||
|     <string name="unknown">Inconnu</string> | ||||
|     <string name="licensed">Licencié</string> | ||||
|     <string name="remove_from_library">Retirer de la bibliothèque</string> | ||||
|     <!-- Manga chapters fragment --> | ||||
|     <string name="display_mode_chapter">Chapitre %1$s</string> | ||||
|     <string name="chapter_downloading_progress">En téléchargement (%1$d/%2$d)</string> | ||||
|     <string name="chapter_error">Erreur</string> | ||||
| @@ -160,7 +142,6 @@ | ||||
|     <string name="sort_by_number">Par numéro de chapitre</string> | ||||
|     <string name="manga_download">Télécharger</string> | ||||
|     <string name="download_unread">Non lus</string> | ||||
|     <!-- MyAnimeList fragment --> | ||||
|     <string name="manga_tracking_tab">Suivi</string> | ||||
|     <string name="reading">En cours</string> | ||||
|     <string name="completed">Terminé</string> | ||||
| @@ -171,16 +152,11 @@ | ||||
|     <string name="title">Titre</string> | ||||
|     <string name="status">Statut</string> | ||||
|     <string name="chapters">Chapitres</string> | ||||
|     <!-- Category activity --> | ||||
|     <string name="error_category_exists">Une catégorie avec ce nom existe déjà !</string> | ||||
|     <!-- Dialog option with checkbox view --> | ||||
|     <string name="dialog_with_checkbox_remove_description">Ceci enlèvera la date de lecture de ce chapitre. Êtes-vous sûr(e) \?</string> | ||||
|     <string name="dialog_with_checkbox_reset">Réinitialiser tous les chapitres de ce titre</string> | ||||
|     <!-- SnackBar --> | ||||
|     <string name="snack_add_to_library">Ajouter à la bibliothèque \?</string> | ||||
|     <!-- Image notifier --> | ||||
|     <string name="picture_saved">Image sauvegardée</string> | ||||
|     <!-- Reader activity --> | ||||
|     <string name="custom_filter">Filtre personnalisé</string> | ||||
|     <string name="set_as_cover">Ajouter comme couverture</string> | ||||
|     <string name="cover_updated">Couverture mise à jour</string> | ||||
| @@ -188,32 +164,22 @@ | ||||
|     <string name="no_next_chapter">Chapitre suivant non trouvé</string> | ||||
|     <string name="decode_image_error">L\'image n\'a pas pu être chargée</string> | ||||
|     <string name="confirm_set_image_as_cover">Voulez-vous mettre cette image comme couverture ?</string> | ||||
|     <!-- Backup fragment --> | ||||
|     <!-- Recent manga fragment --> | ||||
|     <!-- Downloads activity and service --> | ||||
|     <string name="download_queue_error">Une erreur est survenue lors du téléchargement des chapitres. Vous pouvez réessayer dans la section téléchargements</string> | ||||
|     <!-- Library update service notifications --> | ||||
|     <string name="notification_new_chapters">Des nouveaux chapitres ont été trouvés</string> | ||||
|     <string name="notification_cover_update_failed">La mise à jour de la couverture a échoué</string> | ||||
|     <string name="notification_first_add_to_library">Veuillez ajouter ce titre à votre bibliothèque avant de faire cela</string> | ||||
|     <!-- File Picker Titles --> | ||||
|     <string name="file_select_cover">Sélectionner l\'image de couverture</string> | ||||
|     <string name="file_select_backup">Sélectionner fichier de sauvegarde</string> | ||||
|     <!--UpdateCheck--> | ||||
|     <string name="update_check_confirm">Télécharger</string> | ||||
|     <string name="update_check_no_new_updates">Aucune mise à jour disponible</string> | ||||
|     <!--UpdateCheck Notifications--> | ||||
|     <string name="update_check_notification_download_in_progress">Téléchargement en cours…</string> | ||||
|     <string name="update_check_notification_download_complete">Appuyer pour installer</string> | ||||
|     <string name="update_check_notification_download_error">Erreur lors du téléchargement</string> | ||||
|     <string name="update_check_notification_update_available">Mise à jour disponible !</string> | ||||
|     <!--Content Description--> | ||||
|     <!-- Information Text --> | ||||
|     <string name="information_no_downloads">Aucun téléchargement en cours</string> | ||||
|     <string name="information_no_recent">Pas de mises à jour récentes</string> | ||||
|     <string name="information_no_recent_manga">Rien de lu récemment</string> | ||||
|     <string name="information_empty_library">Votre bibliothèque est vide</string> | ||||
|     <!-- Download Notification --> | ||||
|     <string name="download_notifier_downloader_title">Téléchargement</string> | ||||
|     <string name="download_notifier_title_error">Erreur</string> | ||||
|     <string name="download_notifier_text_only_wifi">Aucune connexion disponible</string> | ||||
| @@ -349,11 +315,6 @@ | ||||
|     <string name="lock_when_idle">Verrouiller en cas d\'inactivité</string> | ||||
|     <string name="lock_always">Toujours</string> | ||||
|     <string name="lock_never">Jamais</string> | ||||
|     <plurals name="lock_after_mins"> | ||||
|         <item quantity="one">Après %1$s minute</item> | ||||
|         <item quantity="many">Après %1$s minutes</item> | ||||
|         <item quantity="other">Après %1$s minutes</item> | ||||
|     </plurals> | ||||
|     <string name="secure_screen">Mode discret</string> | ||||
|     <string name="ext_updates_pending">Mises à jour en attente</string> | ||||
|     <string name="pref_cutout_short">Utiliser la zone de l\'encoche</string> | ||||
| @@ -362,19 +323,9 @@ | ||||
|     <string name="channel_new_chapters">Mises à jour des chapitres</string> | ||||
|     <string name="secure_screen_summary">L\'écran sécurisé cache le contenu lors du changement d\'application et bloque les captures d\'écran</string> | ||||
|     <string name="pref_category_display">Affichage</string> | ||||
|     <plurals name="notification_chapters_generic"> | ||||
|         <item quantity="one">%1$d nouveau chapitre</item> | ||||
|         <item quantity="many">%1$d nouveaux chapitres</item> | ||||
|         <item quantity="other">%1$d nouveaux chapitres</item> | ||||
|     </plurals> | ||||
|     <string name="notification_chapters_single">Chapitre %1$s</string> | ||||
|     <string name="notification_chapters_single_and_more">Chapitre %1$s et %2$d autres</string> | ||||
|     <string name="notification_chapters_multiple">Chapitres %1$s</string> | ||||
|     <plurals name="notification_chapters_multiple_and_more"> | ||||
|         <item quantity="one">Chapitre %1$s et 1 autre</item> | ||||
|         <item quantity="many">Chapitres %1$s et %2$d autres</item> | ||||
|         <item quantity="other">Chapitres %1$s et %2$d autres</item> | ||||
|     </plurals> | ||||
|     <string name="hide_notification_content">Cacher le contenu des notifications</string> | ||||
|     <string name="notification_check_updates">Recherche de nouveaux chapitres</string> | ||||
|     <string name="pref_disable_battery_optimization">Désactiver la fonction d\'optimisation de la batterie</string> | ||||
| @@ -382,22 +333,12 @@ | ||||
|     <string name="battery_optimization_disabled">La fonction d\'optimisation de la batterie est déjà désactivée</string> | ||||
|     <string name="email">Adresse courriel</string> | ||||
|     <string name="pref_always_show_chapter_transition">Toujours afficher la transition entre les chapitres</string> | ||||
|     <plurals name="notification_new_chapters_summary"> | ||||
|         <item quantity="one">Pour %d titre</item> | ||||
|         <item quantity="many">Pour %d titres</item> | ||||
|         <item quantity="other">Pour %d titres</item> | ||||
|     </plurals> | ||||
|     <string name="action_menu">Menu</string> | ||||
|     <string name="action_newest">Plus récent</string> | ||||
|     <string name="action_oldest">Plus ancien</string> | ||||
|     <string name="action_move_to_top">Déplacer au début</string> | ||||
|     <string name="action_move_to_bottom">Déplacer à la fin</string> | ||||
|     <string name="channel_ext_updates">Mises à jour d\'extensions</string> | ||||
|     <plurals name="update_check_notification_ext_updates"> | ||||
|         <item quantity="one">Mise à jour d\'extension disponible</item> | ||||
|         <item quantity="many">%d mises à jour d\'extensions disponibles</item> | ||||
|         <item quantity="other">%d mises à jour d\'extensions disponibles</item> | ||||
|     </plurals> | ||||
|     <string name="updating_library">Mise à jour de la bibliothèque</string> | ||||
|     <string name="label_sources">Sources</string> | ||||
|     <string name="pref_category_reading">En cours</string> | ||||
| @@ -427,26 +368,11 @@ | ||||
|     <string name="restore_duration">%02d min, %02d s</string> | ||||
|     <string name="information_webview_required">WebView est requis pour le fonctionnement l\'application</string> | ||||
|     <string name="local_source_help_guide">Guide des sources locales</string> | ||||
|     <plurals name="download_queue_summary"> | ||||
|         <item quantity="one">%1$s restant</item> | ||||
|         <item quantity="many">%1$s restants</item> | ||||
|         <item quantity="other">%1$s restants</item> | ||||
|     </plurals> | ||||
|     <string name="downloaded_only_summary">Filtrer toutes les entrées dans la bibliothèque</string> | ||||
|     <string name="gray_background">Gris</string> | ||||
|     <string name="pref_category_for_this_series">Pour cette série</string> | ||||
|     <string name="pref_true_color_summary">Réduit les bandes de couleur, mais peut impacter les performances</string> | ||||
|     <plurals name="num_categories"> | ||||
|         <item quantity="one">%d catégorie</item> | ||||
|         <item quantity="many">%d catégories</item> | ||||
|         <item quantity="other">%d catégories</item> | ||||
|     </plurals> | ||||
|     <string name="viewer">Mode de lecture</string> | ||||
|     <plurals name="restore_completed_message"> | ||||
|         <item quantity="one">Effectuée en %1$s avec %2$s erreur</item> | ||||
|         <item quantity="many">Effectuée en %1$s avec %2$s erreurs</item> | ||||
|         <item quantity="other">Effectuée en %1$s avec %2$s erreurs</item> | ||||
|     </plurals> | ||||
|     <string name="battery_optimization_setting_activity_not_found">Impossible d\'ouvrir les paramètres de l\'appareil</string> | ||||
|     <string name="pref_refresh_library_covers">Actualiser les couvertures de la bibliothèque</string> | ||||
|     <string name="tracking_info">Synchronisation à sens unique pour mettre à jour la progression du chapitre dans les services de suivi. Configurez le suivi des entrées individuelles à partir de leur bouton de suivi.</string> | ||||
| @@ -470,11 +396,6 @@ | ||||
|     <string name="pref_show_reading_mode">Afficher le mode de lecture</string> | ||||
|     <string name="action_start">Commencer</string> | ||||
|     <string name="loader_not_implemented_error">Source non trouvée</string> | ||||
|     <plurals name="manga_num_chapters"> | ||||
|         <item quantity="one">%1$s chapitre</item> | ||||
|         <item quantity="many">%1$s chapitres</item> | ||||
|         <item quantity="other">%1$s chapitres</item> | ||||
|     </plurals> | ||||
|     <string name="action_disable">Désactiver</string> | ||||
|     <string name="requires_app_restart">Nécessite un redémarrage de l\'application pour prendre effet</string> | ||||
|     <string name="label_network">Réseau</string> | ||||
| @@ -492,11 +413,6 @@ | ||||
|     <string name="action_sort_date_added">Date ajoutée</string> | ||||
|     <string name="pref_category_reading_mode">Mode de lecture</string> | ||||
|     <string name="pref_category_theme">Thème</string> | ||||
|     <plurals name="num_trackers"> | ||||
|         <item quantity="one">Suivi par %d service</item> | ||||
|         <item quantity="many">Suivi par %d services</item> | ||||
|         <item quantity="other">Suivi par %d services</item> | ||||
|     </plurals> | ||||
|     <string name="no_pinned_sources">Vous n\'avez aucune source épinglée</string> | ||||
|     <string name="channel_complete">Compléter</string> | ||||
|     <string name="channel_progress">Progression</string> | ||||
| @@ -507,11 +423,6 @@ | ||||
|     <string name="ext_nsfw_warning">Les sources de cette extension peuvent contenir du contenu NSFW (18+)</string> | ||||
|     <string name="ext_nsfw_short">18+</string> | ||||
|     <string name="parental_controls_info">Ceci n\'empêche pas les extensions non officielles ou potentiellement mal signalées de diffuser du contenu +18 dans l\'application.</string> | ||||
|     <plurals name="missing_chapters_warning"> | ||||
|         <item quantity="one">%d chapitre a été sauté, soit la source ne l\'a pas, soit il a été filtré</item> | ||||
|         <item quantity="many">%d chapitres ont été sautés, soit la source ne les a pas, soit ils ont été filtrés</item> | ||||
|         <item quantity="other">%d chapitres ont été sautés, soit la source ne les a pas, soit il ont été filtrés</item> | ||||
|     </plurals> | ||||
|     <string name="no_chapters_error">Aucun chapitre trouvé</string> | ||||
|     <string name="confirm_set_chapter_settings">Appliquer ce paramétrage par défaut \?</string> | ||||
|     <string name="chapter_settings">Paramètres du chapitre</string> | ||||
| @@ -621,11 +532,6 @@ | ||||
|     <string name="pref_highest">Maximale</string> | ||||
|     <string name="pref_hide_threshold">Sensibilité pour masquer le menu lors du défilement</string> | ||||
|     <string name="pref_inverted_colors">Inversé</string> | ||||
|     <plurals name="relative_time"> | ||||
|         <item quantity="one">Hier</item> | ||||
|         <item quantity="many">Il y a %1$d jours</item> | ||||
|         <item quantity="other">Il y a %1$d jours</item> | ||||
|     </plurals> | ||||
|     <string name="relative_time_today">Aujourd\'hui</string> | ||||
|     <string name="theme_tealturquoise">Bleu canard et turquoise</string> | ||||
|     <string name="confirm_lock_change">Authentifiez-vous pour confirmer les changements</string> | ||||
| @@ -730,11 +636,6 @@ | ||||
|     <string name="theme_tidalwave">Raz-de-marée</string> | ||||
|     <string name="download_ahead">Téléchargement anticipé</string> | ||||
|     <string name="auto_download_while_reading">Téléchargement anticipé pendant la lecture</string> | ||||
|     <plurals name="next_unread_chapters"> | ||||
|         <item quantity="one">Chapitre suivant non lu</item> | ||||
|         <item quantity="many">Les %d suivants non lus</item> | ||||
|         <item quantity="other">Les %d suivants non lus</item> | ||||
|     </plurals> | ||||
|     <string name="download_ahead_info">Fonctionne seulement si le chapitre actuel et le suivant sont déjà téléchargés.</string> | ||||
|     <string name="are_you_sure">Êtes-vous sûr(e) \?</string> | ||||
|     <string name="popular">Populaire</string> | ||||
| @@ -803,20 +704,10 @@ | ||||
|     <string name="enhanced_services_not_installed">Disponible mais la source n\'est pas installée : %s</string> | ||||
|     <string name="information_required_plain">*obligatoire</string> | ||||
|     <string name="pref_hide_in_library_items">Masquer les entrées déjà présentes dans la bibliothèque</string> | ||||
|     <plurals name="download_amount"> | ||||
|         <item quantity="one">Chapitre suivant</item> | ||||
|         <item quantity="many">%d chapitres suivants</item> | ||||
|         <item quantity="other">%d chapitres suivants</item> | ||||
|     </plurals> | ||||
|     <string name="action_copy_to_clipboard">Copier dans le presse-papier</string> | ||||
|     <string name="action_update_category">Mettre à jour la catégorie</string> | ||||
|     <string name="split_tall_images">Diviser les grandes images</string> | ||||
|     <string name="overlay_header">Superposition</string> | ||||
|     <plurals name="missing_chapters"> | ||||
|         <item quantity="one">%1$s chapitre manquant</item> | ||||
|         <item quantity="many">%1$s chapitres manquants</item> | ||||
|         <item quantity="other">%1$s chapitres manquants</item> | ||||
|     </plurals> | ||||
|     <string name="pref_page_rotate_invert">Inverser l\'orientation des pages larges retournées</string> | ||||
|     <string name="pref_page_rotate">Tourner les pages larges pour qu\'elles rentrent</string> | ||||
|     <string name="pref_debug_info">Informations de débogage</string> | ||||
| @@ -846,11 +737,6 @@ | ||||
|     <string name="has_results">A des résultats</string> | ||||
|     <string name="manga_display_interval_title">Estimer chaque</string> | ||||
|     <string name="exception_http">HTTP %d, consulter le site Web dans WebView</string> | ||||
|     <plurals name="day"> | ||||
|         <item quantity="one">1 jour</item> | ||||
|         <item quantity="many">%d jours</item> | ||||
|         <item quantity="other">%d jours</item> | ||||
|     </plurals> | ||||
|     <string name="manga_display_modified_interval_title">Configurer pour mettre à jour tous les</string> | ||||
|     <string name="manga_modify_calculated_interval_title">Personnaliser l\'intervalle</string> | ||||
|     <string name="action_move_to_bottom_all_for_series">Déplacer la série vers le bas</string> | ||||
							
								
								
									
										63
									
								
								i18n/src/commonMain/resources/MR/gl/plurals.xml
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										63
									
								
								i18n/src/commonMain/resources/MR/gl/plurals.xml
									
									
									
									
									
										Normal file
									
								
							| @@ -0,0 +1,63 @@ | ||||
| <?xml version="1.0" encoding="utf-8"?> | ||||
| <resources> | ||||
|     <plurals name="num_categories"> | ||||
|         <item quantity="one">%d categoría</item> | ||||
|         <item quantity="other">%d categorías</item> | ||||
|     </plurals> | ||||
|     <plurals name="lock_after_mins"> | ||||
|         <item quantity="one">Despois de 1 minuto</item> | ||||
|         <item quantity="other">Despois de %1$s minutos</item> | ||||
|     </plurals> | ||||
|     <plurals name="next_unread_chapters"> | ||||
|         <item quantity="one">Seguinte capítulo sen ler</item> | ||||
|         <item quantity="other">Seguintes %d capítulos sen ler</item> | ||||
|     </plurals> | ||||
|     <plurals name="download_queue_summary"> | ||||
|         <item quantity="one">Queda %1$s</item> | ||||
|         <item quantity="other">Quedan %1$s</item> | ||||
|     </plurals> | ||||
|     <plurals name="relative_time"> | ||||
|         <item quantity="one">Onte</item> | ||||
|         <item quantity="other">Fai %1$d días</item> | ||||
|     </plurals> | ||||
|     <plurals name="restore_completed_message"> | ||||
|         <item quantity="one">Feito en %1$s con %2$s erro</item> | ||||
|         <item quantity="other">Feito en %1$s con %2$s erros</item> | ||||
|     </plurals> | ||||
|     <plurals name="num_trackers"> | ||||
|         <item quantity="one">%d servizo de seguemento</item> | ||||
|         <item quantity="other">%d servizos de seguemento</item> | ||||
|     </plurals> | ||||
|     <plurals name="update_check_notification_ext_updates"> | ||||
|         <item quantity="one">Hai unha actualización dunha extensión</item> | ||||
|         <item quantity="other">Hai actualizacións de %d extensións</item> | ||||
|     </plurals> | ||||
|     <plurals name="manga_num_chapters"> | ||||
|         <item quantity="one">%1$s capítulo</item> | ||||
|         <item quantity="other">%1$s capítulos</item> | ||||
|     </plurals> | ||||
|     <plurals name="notification_chapters_multiple_and_more"> | ||||
|         <item quantity="one">Capítulos %1$s e 1 máis</item> | ||||
|         <item quantity="other">Capítulos %1$s e %2$d máis</item> | ||||
|     </plurals> | ||||
|     <plurals name="missing_chapters_warning"> | ||||
|         <item quantity="one">Saltouse %d capítulo: falta na fonte ou ignorouse</item> | ||||
|         <item quantity="other">Saltáronse %d capítulos: faltan na fonte ou ignoráronse</item> | ||||
|     </plurals> | ||||
|     <plurals name="notification_new_chapters_summary"> | ||||
|         <item quantity="one">Por %d elemento</item> | ||||
|         <item quantity="other">Por %d elementos</item> | ||||
|     </plurals> | ||||
|     <plurals name="notification_chapters_generic"> | ||||
|         <item quantity="one">%1$d capítulo novo</item> | ||||
|         <item quantity="other">%1$d capítulos novos</item> | ||||
|     </plurals> | ||||
|     <plurals name="download_amount"> | ||||
|         <item quantity="one">O seguinte capítulo</item> | ||||
|         <item quantity="other">Os seguintes %d capítulos</item> | ||||
|     </plurals> | ||||
|     <plurals name="missing_chapters"> | ||||
|         <item quantity="one">Falta %1$s capítulo</item> | ||||
|         <item quantity="other">Faltan %1$s capítulos</item> | ||||
|     </plurals> | ||||
| </resources> | ||||
| @@ -102,10 +102,6 @@ | ||||
|     <string name="ext_update">Actualizar</string> | ||||
|     <string name="ext_updates_pending">Actualizacións pendentes</string> | ||||
|     <string name="all">Todas</string> | ||||
|     <plurals name="num_categories"> | ||||
|         <item quantity="one">%d categoría</item> | ||||
|         <item quantity="other">%d categorías</item> | ||||
|     </plurals> | ||||
|     <string name="default_category_summary">Preguntar sempre</string> | ||||
|     <string name="default_category">Categoría por defecto</string> | ||||
|     <string name="pref_library_update_refresh_metadata_summary">Procurar novas portadas e detalles cando se actualice a biblioteca</string> | ||||
| @@ -129,10 +125,6 @@ | ||||
|     <string name="hide_notification_content">Esconde os contidos das notificacións</string> | ||||
|     <string name="secure_screen_summary">O modo discreto esconde os contidos da app ao cambiar de app e bloquea as capturas de pantalla</string> | ||||
|     <string name="secure_screen">Modo discreto</string> | ||||
|     <plurals name="lock_after_mins"> | ||||
|         <item quantity="one">Despois de 1 minuto</item> | ||||
|         <item quantity="other">Despois de %1$s minutos</item> | ||||
|     </plurals> | ||||
|     <string name="lock_never">Nunca</string> | ||||
|     <string name="lock_always">Sempre</string> | ||||
|     <string name="lock_when_idle">Bloquear por inactividade</string> | ||||
| @@ -299,10 +291,6 @@ | ||||
|     <string name="delete_category">Eliminar categoría</string> | ||||
|     <string name="enhanced_services_not_installed">Dispoñible, mais a fonte non se instalou: %s</string> | ||||
|     <string name="pinned_sources">Fixados</string> | ||||
|     <plurals name="next_unread_chapters"> | ||||
|         <item quantity="one">Seguinte capítulo sen ler</item> | ||||
|         <item quantity="other">Seguintes %d capítulos sen ler</item> | ||||
|     </plurals> | ||||
|     <string name="pref_library_update_show_tab_badge">Amosar o número de capítulos por ler na icona de actualizacións</string> | ||||
|     <string name="exclude">Excluír: %s</string> | ||||
|     <string name="pref_skip_dupe_chapters">Saltar os capítulos duplicados</string> | ||||
| @@ -433,10 +421,6 @@ | ||||
|     <string name="pref_read_with_tapping_inverted">Inverter as zonas de toque</string> | ||||
|     <string name="nav_zone_right">Dereita</string> | ||||
|     <string name="tracking_guide">Guía de seguemento</string> | ||||
|     <plurals name="download_queue_summary"> | ||||
|         <item quantity="one">Queda %1$s</item> | ||||
|         <item quantity="other">Quedan %1$s</item> | ||||
|     </plurals> | ||||
|     <string name="on_hiatus">En pausa</string> | ||||
|     <string name="action_order_by_chapter_number">Por número de capítulo</string> | ||||
|     <string name="action_faq_and_guides">Preguntas frecuentes e guías</string> | ||||
| @@ -503,10 +487,6 @@ | ||||
|     <string name="cancel_all_for_series">Cancelar todo para esta serie</string> | ||||
|     <string name="action_order_by_upload_date">Por data de subida</string> | ||||
|     <string name="action_show_errors">Preme para ver os detalles do erro</string> | ||||
|     <plurals name="relative_time"> | ||||
|         <item quantity="one">Onte</item> | ||||
|         <item quantity="other">Fai %1$d días</item> | ||||
|     </plurals> | ||||
|     <string name="pref_library_update_manga_restriction">Omitir actualizacións</string> | ||||
|     <string name="restrictions">Restricións: %s</string> | ||||
|     <string name="categorized_display_settings">Opcións de ordenación e visualización por categoría</string> | ||||
| @@ -524,10 +504,6 @@ | ||||
|     <string name="pref_restore_backup_summ">Restaurar a biblioteca dende unha copia de seguridade</string> | ||||
|     <string name="backup_created">Creouse a copia de seguridade</string> | ||||
|     <string name="restoring_backup_error">Fallou a restauración da copia de seguridade</string> | ||||
|     <plurals name="restore_completed_message"> | ||||
|         <item quantity="one">Feito en %1$s con %2$s erro</item> | ||||
|         <item quantity="other">Feito en %1$s con %2$s erros</item> | ||||
|     </plurals> | ||||
|     <string name="backup_restore_missing_trackers">Servizos de seguemento sen conectar:</string> | ||||
|     <string name="restoring_backup">Restaurando a copia de seguridade</string> | ||||
|     <string name="restore_in_progress">Xa se está facendo a restauración</string> | ||||
| @@ -573,10 +549,6 @@ | ||||
|     <string name="track_remove_start_date_conf_text">Isto eliminará a data de comezo seleccionada de %s</string> | ||||
|     <string name="update_check_fdroid_migration_info">Está dispoñible unha nova versión oficial. Preme para saber como migrar das versións non oficiais de F-Droid.</string> | ||||
|     <string name="spen_next_page">Páxina seguinte</string> | ||||
|     <plurals name="num_trackers"> | ||||
|         <item quantity="one">%d servizo de seguemento</item> | ||||
|         <item quantity="other">%d servizos de seguemento</item> | ||||
|     </plurals> | ||||
|     <string name="migrate">Migrar</string> | ||||
|     <string name="manga_removed_library">Eliminado da biblioteca</string> | ||||
|     <string name="manga_info_expand">Máis</string> | ||||
| @@ -627,10 +599,6 @@ | ||||
|     <string name="source_filter_empty_screen">Non se atopou ninguna fonte instalada</string> | ||||
|     <string name="download_queue_size_warning">Advertencia: As baixadas grandes poden facer que as fontes se volvan máis lentas e/ou bloqueen Tachiyomi. Preme para saber máis.</string> | ||||
|     <string name="update_check_open">Abrir no GitHub</string> | ||||
|     <plurals name="update_check_notification_ext_updates"> | ||||
|         <item quantity="one">Hai unha actualización dunha extensión</item> | ||||
|         <item quantity="other">Hai actualizacións de %d extensións</item> | ||||
|     </plurals> | ||||
|     <string name="download_notifier_downloader_title">Xestor de descargas</string> | ||||
|     <string name="download_notifier_title_error">Erro</string> | ||||
|     <string name="download_notifier_download_paused">Descargas en pausa</string> | ||||
| @@ -651,19 +619,11 @@ | ||||
|     <string name="update_check_eol">Esta versión de Android xa non ten soporte</string> | ||||
|     <string name="download_notifier_no_network">Non hai ningunha conexión de rede dispoñible</string> | ||||
|     <string name="remove_from_library">Eliminar da biblioteca</string> | ||||
|     <plurals name="manga_num_chapters"> | ||||
|         <item quantity="one">%1$s capítulo</item> | ||||
|         <item quantity="other">%1$s capítulos</item> | ||||
|     </plurals> | ||||
|     <string name="chapter_settings_updated">Actualizáronse os axustes por defecto dos capítulos</string> | ||||
|     <string name="appwidget_updates_description">Ver os elementos da biblioteca actualizados recentemente</string> | ||||
|     <string name="remove_manga">Vas eliminar \"%s\" da túa biblioteca</string> | ||||
|     <string name="no_next_chapter">Non se atopou a o capítulo seguinte</string> | ||||
|     <string name="transition_pages_loading">Cargando páxinas…</string> | ||||
|     <plurals name="notification_chapters_multiple_and_more"> | ||||
|         <item quantity="one">Capítulos %1$s e 1 máis</item> | ||||
|         <item quantity="other">Capítulos %1$s e %2$d máis</item> | ||||
|     </plurals> | ||||
|     <string name="transition_finished">Rematado:</string> | ||||
|     <string name="chapter_progress">Páxina: %1$d</string> | ||||
|     <string name="error_saving_picture">Produciuse un erro ao gardar a imaxe</string> | ||||
| @@ -723,10 +683,6 @@ | ||||
|     <string name="dialog_with_checkbox_reset">Reiniciar tódolos capítulos deste elemento</string> | ||||
|     <string name="viewer">Modo de lectura</string> | ||||
|     <string name="loader_rar5_error">O formato RARv5 non está soportado</string> | ||||
|     <plurals name="missing_chapters_warning"> | ||||
|         <item quantity="one">Saltouse %d capítulo: falta na fonte ou ignorouse</item> | ||||
|         <item quantity="other">Saltáronse %d capítulos: faltan na fonte ou ignoráronse</item> | ||||
|     </plurals> | ||||
|     <string name="updating_library">Actualizando a biblioteca</string> | ||||
|     <string name="updates_last_update_info">Última actualización da biblioteca: %s</string> | ||||
|     <string name="recent_manga_time">Cap. %1$s - %2$s</string> | ||||
| @@ -736,16 +692,8 @@ | ||||
|     <string name="seconds_short">%dseg</string> | ||||
|     <string name="label_tracked_titles">Elementos en seguimento</string> | ||||
|     <string name="label_mean_score">Puntuación media</string> | ||||
|     <plurals name="notification_new_chapters_summary"> | ||||
|         <item quantity="one">Por %d elemento</item> | ||||
|         <item quantity="other">Por %d elementos</item> | ||||
|     </plurals> | ||||
|     <string name="notification_update_skipped">Actualizacións omitidas: %1$d</string> | ||||
|     <string name="skipped_reason_not_started">Omitiuse porque non hai capítulos lidos</string> | ||||
|     <plurals name="notification_chapters_generic"> | ||||
|         <item quantity="one">%1$d capítulo novo</item> | ||||
|         <item quantity="other">%1$d capítulos novos</item> | ||||
|     </plurals> | ||||
|     <string name="notification_chapters_single_and_more">Capítulo %1$s e %2$d máis</string> | ||||
|     <string name="notification_chapters_multiple">Capítulos %1$s</string> | ||||
|     <string name="skipped_reason_not_always_update">Omitiuse porque esta serie non require actualizarse</string> | ||||
| @@ -759,14 +707,6 @@ | ||||
|     <string name="action_update_category">Actualizar categoría</string> | ||||
|     <string name="pref_hide_in_library_items">Ocultar elementos que xa estén na biblioteca</string> | ||||
|     <string name="action_copy_to_clipboard">Copiar ao portapapeis</string> | ||||
|     <plurals name="download_amount"> | ||||
|         <item quantity="one">O seguinte capítulo</item> | ||||
|         <item quantity="other">Os seguintes %d capítulos</item> | ||||
|     </plurals> | ||||
|     <plurals name="missing_chapters"> | ||||
|         <item quantity="one">Falta %1$s capítulo</item> | ||||
|         <item quantity="other">Faltan %1$s capítulos</item> | ||||
|     </plurals> | ||||
|     <string name="pref_page_rotate">Xirar as páxinas anchas para adaptalas á pantalla</string> | ||||
|     <string name="pref_page_rotate_invert">Voltear a orientación das páxinas anchas xiradas</string> | ||||
|     <string name="overlay_header">Superposición</string> | ||||
							
								
								
									
										99
									
								
								i18n/src/commonMain/resources/MR/he/plurals.xml
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										99
									
								
								i18n/src/commonMain/resources/MR/he/plurals.xml
									
									
									
									
									
										Normal file
									
								
							| @@ -0,0 +1,99 @@ | ||||
| <?xml version="1.0" encoding="utf-8"?> | ||||
| <resources> | ||||
|     <plurals name="update_check_notification_ext_updates"> | ||||
|         <item quantity="one">עדכון לתוסף זמין</item> | ||||
|         <item quantity="two">עדכונים ל-%d תוספים זמינים</item> | ||||
|         <item quantity="many">עדכונים ל-%d תוספים זמינים</item> | ||||
|         <item quantity="other">עדכונים ל-%d תוספים זמינים</item> | ||||
|     </plurals> | ||||
|     <plurals name="notification_chapters_multiple_and_more"> | ||||
|         <item quantity="one">פרקים %1$s ואחד נוסף</item> | ||||
|         <item quantity="two">פרקים %1$s ו-%2$d נוספים</item> | ||||
|         <item quantity="many">פרקים %1$s ו-%2$d נוספים</item> | ||||
|         <item quantity="other">פרקים %1$s ו-%2$d נוספים</item> | ||||
|     </plurals> | ||||
|     <plurals name="notification_chapters_generic"> | ||||
|         <item quantity="one">פרק אחד חדש</item> | ||||
|         <item quantity="two">%1$d פרקים חדשים</item> | ||||
|         <item quantity="many">%1$d פרקים חדשים</item> | ||||
|         <item quantity="other">%1$d פרקים חדשים</item> | ||||
|     </plurals> | ||||
|     <plurals name="notification_new_chapters_summary"> | ||||
|         <item quantity="one">עבור כותר אחד</item> | ||||
|         <item quantity="two">עבור %d כותרים</item> | ||||
|         <item quantity="many">עבור %d כותרים</item> | ||||
|         <item quantity="other">עבור %d כותרים</item> | ||||
|     </plurals> | ||||
|     <plurals name="lock_after_mins"> | ||||
|         <item quantity="one">לאחר דקה אחת</item> | ||||
|         <item quantity="two">לאחר שתי דקות</item> | ||||
|         <item quantity="many">לאחר %1$s דקות</item> | ||||
|         <item quantity="other">לאחר %1$s דקות</item> | ||||
|     </plurals> | ||||
|     <plurals name="num_categories"> | ||||
|         <item quantity="one">קטגורייה אחת</item> | ||||
|         <item quantity="two">שתי קטגוריות</item> | ||||
|         <item quantity="many">%d קטגוריות</item> | ||||
|         <item quantity="other">%d קטגוריות</item> | ||||
|     </plurals> | ||||
|     <plurals name="relative_time"> | ||||
|         <item quantity="one">אתמול</item> | ||||
|         <item quantity="two">לפני יומיים</item> | ||||
|         <item quantity="many">לפני %1$d ימים</item> | ||||
|         <item quantity="other">לפני %1$d ימים</item> | ||||
|     </plurals> | ||||
|     <plurals name="manga_num_chapters"> | ||||
|         <item quantity="one">פרק אחד</item> | ||||
|         <item quantity="two">שני פרקים</item> | ||||
|         <item quantity="many">%1$s פרקים</item> | ||||
|         <item quantity="other">%1$s פרקים</item> | ||||
|     </plurals> | ||||
|     <plurals name="download_queue_summary"> | ||||
|         <item quantity="one">1 נשאר</item> | ||||
|         <item quantity="two">2 נשארו</item> | ||||
|         <item quantity="many">%1$s נשארו</item> | ||||
|         <item quantity="other"/> | ||||
|     </plurals> | ||||
|     <plurals name="restore_completed_message"> | ||||
|         <item quantity="one">הושלם ב %1$s עם שגיאה אחת</item> | ||||
|         <item quantity="two">הושלם ב %1$s עם שתי שגיאות</item> | ||||
|         <item quantity="many">הושלם ב %1$s עם %2$s שגיאות</item> | ||||
|         <item quantity="other"/> | ||||
|     </plurals> | ||||
|     <plurals name="missing_chapters_warning"> | ||||
|         <item quantity="one">דולג פרק אחד, המקור חסר או שהוא סונן החוצה</item> | ||||
|         <item quantity="two">דולגו שני פרקים, המקור חסר או שהם סוננו החוצה</item> | ||||
|         <item quantity="many">דולגו %d פרקים, המקור חסר או שהם סוננו החוצה</item> | ||||
|         <item quantity="other"/> | ||||
|     </plurals> | ||||
|     <plurals name="download_amount"> | ||||
|         <item quantity="one">הפרק הבא</item> | ||||
|         <item quantity="two">שני הפרקים הבאים</item> | ||||
|         <item quantity="many">%d הפרקים הבאים</item> | ||||
|         <item quantity="other"/> | ||||
|     </plurals> | ||||
|     <plurals name="num_trackers"> | ||||
|         <item quantity="one">מעקב אחד</item> | ||||
|         <item quantity="two">שני מעקבים</item> | ||||
|         <item quantity="many">%d מעקבים</item> | ||||
|         <item quantity="other"/> | ||||
|     </plurals> | ||||
|     <plurals name="next_unread_chapters"> | ||||
|         <item quantity="one">הפרק הבא שלא נקרא</item> | ||||
|         <item quantity="two">שני הפרקים הבאים שלא נקראו</item> | ||||
|         <item quantity="many">%d הפרקים הבאים שלא נקראו</item> | ||||
|         <item quantity="other"/> | ||||
|     </plurals> | ||||
|     <plurals name="day"> | ||||
|         <item quantity="one">יום אחד</item> | ||||
|         <item quantity="two">יומיים</item> | ||||
|         <item quantity="many">%d ימים</item> | ||||
|         <item quantity="other"/> | ||||
|     </plurals> | ||||
|     <plurals name="missing_chapters"> | ||||
|         <item quantity="one">חסר פרק אחד</item> | ||||
|         <item quantity="two">חסרים שני פרקים</item> | ||||
|         <item quantity="many">חסרים %1$s פרקים</item> | ||||
|         <item quantity="other"/> | ||||
|     </plurals> | ||||
| </resources> | ||||
| @@ -13,12 +13,6 @@ | ||||
|     <string name="information_empty_category">אין לך קטגוריות. לחץ על כפתור הפלוס כדי ליצור אחד לארגון הספרייה שלך.</string> | ||||
|     <string name="information_empty_library">הספרייה שלך ריקה</string> | ||||
|     <string name="information_no_downloads">אין הורדות</string> | ||||
|     <plurals name="update_check_notification_ext_updates"> | ||||
|         <item quantity="one">עדכון לתוסף זמין</item> | ||||
|         <item quantity="two">עדכונים ל-%d תוספים זמינים</item> | ||||
|         <item quantity="many">עדכונים ל-%d תוספים זמינים</item> | ||||
|         <item quantity="other">עדכונים ל-%d תוספים זמינים</item> | ||||
|     </plurals> | ||||
|     <string name="update_check_notification_update_available">גרסה חדשה זמינה!</string> | ||||
|     <string name="update_check_notification_download_error">שגיאה בהורדה</string> | ||||
|     <string name="update_check_notification_download_complete">לחץ כדי להתקין עדכון</string> | ||||
| @@ -29,27 +23,9 @@ | ||||
|     <string name="file_select_cover">בחר תמונת כריכה</string> | ||||
|     <string name="notification_first_add_to_library">אנא הוסף את הפריט לספרייה שלך לפני שתעשה זאת</string> | ||||
|     <string name="notification_cover_update_failed">עדכון הכריכה נכשל</string> | ||||
|     <plurals name="notification_chapters_multiple_and_more"> | ||||
|         <item quantity="one">פרקים %1$s ואחד נוסף</item> | ||||
|         <item quantity="two">פרקים %1$s ו-%2$d נוספים</item> | ||||
|         <item quantity="many">פרקים %1$s ו-%2$d נוספים</item> | ||||
|         <item quantity="other">פרקים %1$s ו-%2$d נוספים</item> | ||||
|     </plurals> | ||||
|     <string name="notification_chapters_multiple">פרקים %1$s</string> | ||||
|     <string name="notification_chapters_single_and_more">פרק %1$s ו-%2$d נוספים</string> | ||||
|     <string name="notification_chapters_single">פרק %1$s</string> | ||||
|     <plurals name="notification_chapters_generic"> | ||||
|         <item quantity="one">פרק אחד חדש</item> | ||||
|         <item quantity="two">%1$d פרקים חדשים</item> | ||||
|         <item quantity="many">%1$d פרקים חדשים</item> | ||||
|         <item quantity="other">%1$d פרקים חדשים</item> | ||||
|     </plurals> | ||||
|     <plurals name="notification_new_chapters_summary"> | ||||
|         <item quantity="one">עבור כותר אחד</item> | ||||
|         <item quantity="two">עבור %d כותרים</item> | ||||
|         <item quantity="many">עבור %d כותרים</item> | ||||
|         <item quantity="other">עבור %d כותרים</item> | ||||
|     </plurals> | ||||
|     <string name="notification_new_chapters">נמצאו פרקים חדשים</string> | ||||
|     <string name="notification_check_updates">מחפש פרקים חדשים</string> | ||||
|     <string name="download_queue_error">לא ניתן להוריד פרקים. אפשר לנסות שוב בדף ההורדות</string> | ||||
| @@ -157,12 +133,6 @@ | ||||
|     <string name="portrait">מאונך</string> | ||||
|     <string name="hide_notification_content">הסתר תוכן התראות</string> | ||||
|     <string name="secure_screen_summary">מסך מאובטח מסתיר את תוכן האפליקציה בעת החלפת אפליקציות וחוסם צילומי מסך</string> | ||||
|     <plurals name="lock_after_mins"> | ||||
|         <item quantity="one">לאחר דקה אחת</item> | ||||
|         <item quantity="two">לאחר שתי דקות</item> | ||||
|         <item quantity="many">לאחר %1$s דקות</item> | ||||
|         <item quantity="other">לאחר %1$s דקות</item> | ||||
|     </plurals> | ||||
|     <string name="lock_never">לעולם לא</string> | ||||
|     <string name="lock_always">תמיד</string> | ||||
|     <string name="lock_when_idle">נעילה כאשר אינו פעיל</string> | ||||
| @@ -410,12 +380,6 @@ | ||||
|     <string name="unofficial_extension_message">ההרחבה הזאת לא נמצאת ברשימת ההרחבות הרשמיות של Tachiyomi.</string> | ||||
|     <string name="ext_nsfw_warning">עלול להכיל תוכן שלא מתאים למקום העבודה (18+)</string> | ||||
|     <string name="ext_install_service_notif">מתקין הרחבה…</string> | ||||
|     <plurals name="num_categories"> | ||||
|         <item quantity="one">קטגורייה אחת</item> | ||||
|         <item quantity="two">שתי קטגוריות</item> | ||||
|         <item quantity="many">%d קטגוריות</item> | ||||
|         <item quantity="other">%d קטגוריות</item> | ||||
|     </plurals> | ||||
|     <string name="include">כלול: %s</string> | ||||
|     <string name="pref_show_navigation_mode_summary">הראה לזמן קצר כשפותחים את מצב הקריאה</string> | ||||
|     <string name="pref_show_reading_mode">הראה מצב קריאה</string> | ||||
| @@ -424,12 +388,6 @@ | ||||
|     <string name="pref_library_update_manga_restriction">דלג על עדכוני פריטים</string> | ||||
|     <string name="extension_api_error">נכשל בקבלת רשימת ההרחבות</string> | ||||
|     <string name="action_faq_and_guides">שו\"ת ומדריכים</string> | ||||
|     <plurals name="relative_time"> | ||||
|         <item quantity="one">אתמול</item> | ||||
|         <item quantity="two">לפני יומיים</item> | ||||
|         <item quantity="many">לפני %1$d ימים</item> | ||||
|         <item quantity="other">לפני %1$d ימים</item> | ||||
|     </plurals> | ||||
|     <string name="ext_nsfw_short">18+</string> | ||||
|     <string name="none">אין</string> | ||||
|     <string name="update_72hour">כל 3 ימים</string> | ||||
| @@ -490,12 +448,6 @@ | ||||
|     <string name="unknown_status">מצב לא ידוע</string> | ||||
|     <string name="licensed">מורשה, בעל רישיון</string> | ||||
|     <string name="publishing_finished">הפרסום הסתיים</string> | ||||
|     <plurals name="manga_num_chapters"> | ||||
|         <item quantity="one">פרק אחד</item> | ||||
|         <item quantity="two">שני פרקים</item> | ||||
|         <item quantity="many">%1$s פרקים</item> | ||||
|         <item quantity="other">%1$s פרקים</item> | ||||
|     </plurals> | ||||
|     <string name="clipboard_copy_error">נכשלה ההעתקה ללוח</string> | ||||
|     <string name="sort_by_upload_date">לפי תאריך העלאה</string> | ||||
|     <string name="cover_saved">הכריכה נשמרה</string> | ||||
| @@ -533,12 +485,6 @@ | ||||
|     <string name="browse">דפדפן</string> | ||||
|     <string name="unread">לא נקרא</string> | ||||
|     <string name="reading">קריאה</string> | ||||
|     <plurals name="download_queue_summary"> | ||||
|         <item quantity="one">1 נשאר</item> | ||||
|         <item quantity="two">2 נשארו</item> | ||||
|         <item quantity="many">%1$s נשארו</item> | ||||
|         <item quantity="other"/> | ||||
|     </plurals> | ||||
|     <string name="login">התחברות</string> | ||||
|     <string name="pinned_sources">נעוץ</string> | ||||
|     <string name="restore_duration">%02d דקות, %02d שניות</string> | ||||
| @@ -558,12 +504,6 @@ | ||||
|     <string name="pref_incognito_mode_summary">עוצר את קריאת ההיסטוריה</string> | ||||
|     <string name="notification_incognito_text">ביטול מצב פרטי</string> | ||||
|     <string name="manga_download">הורדה</string> | ||||
|     <plurals name="restore_completed_message"> | ||||
|         <item quantity="one">הושלם ב %1$s עם שגיאה אחת</item> | ||||
|         <item quantity="two">הושלם ב %1$s עם שתי שגיאות</item> | ||||
|         <item quantity="many">הושלם ב %1$s עם %2$s שגיאות</item> | ||||
|         <item quantity="other"/> | ||||
|     </plurals> | ||||
|     <string name="label_network">רשת</string> | ||||
|     <string name="cancelled">בוטל/ה</string> | ||||
|     <string name="in_library">בתוך הספרייה</string> | ||||
| @@ -606,12 +546,6 @@ | ||||
|     <string name="skipped_reason_not_started">דולג בגלל שאין פרקים שנקראו</string> | ||||
|     <string name="action_close">סגור</string> | ||||
|     <string name="channel_skipped">דולגו</string> | ||||
|     <plurals name="missing_chapters_warning"> | ||||
|         <item quantity="one">דולג פרק אחד, המקור חסר או שהוא סונן החוצה</item> | ||||
|         <item quantity="two">דולגו שני פרקים, המקור חסר או שהם סוננו החוצה</item> | ||||
|         <item quantity="many">דולגו %d פרקים, המקור חסר או שהם סוננו החוצה</item> | ||||
|         <item quantity="other"/> | ||||
|     </plurals> | ||||
|     <string name="pref_true_color_summary">מפחית פסים, אך עשוי להשפיע על הביצועים</string> | ||||
|     <string name="channel_errors">שגיאות</string> | ||||
|     <string name="pref_reset_viewer_flags">אפס את הגדרות מצב הקריאה של כל סדרה בנפרד</string> | ||||
| @@ -681,12 +615,6 @@ | ||||
|     <string name="pref_advanced_summary">הורד קבצי קריסה, אופטימיזציה לסוללה</string> | ||||
|     <string name="theme_lavender">לבנדר</string> | ||||
|     <string name="pref_library_columns_per_row">%d בכל שורה</string> | ||||
|     <plurals name="download_amount"> | ||||
|         <item quantity="one">הפרק הבא</item> | ||||
|         <item quantity="two">שני הפרקים הבאים</item> | ||||
|         <item quantity="many">%d הפרקים הבאים</item> | ||||
|         <item quantity="other"/> | ||||
|     </plurals> | ||||
|     <string name="information_cloudflare_help">לחץ כאן לעזרה עם Cloudflare</string> | ||||
|     <string name="download_notifier_split_page_not_found">עמוד %d לא נמצא בעת פיצול</string> | ||||
|     <string name="appwidget_updates_description">צפה בפריטי הספריה העדכניים ביותר</string> | ||||
| @@ -701,12 +629,6 @@ | ||||
|     <string name="pref_backup_summary">מדריך וגיבויים אוטומטיים</string> | ||||
|     <string name="information_no_entries_found">לא נמצאו פריטים בקטגוריה זו</string> | ||||
|     <string name="action_ok">בסדר</string> | ||||
|     <plurals name="num_trackers"> | ||||
|         <item quantity="one">מעקב אחד</item> | ||||
|         <item quantity="two">שני מעקבים</item> | ||||
|         <item quantity="many">%d מעקבים</item> | ||||
|         <item quantity="other"/> | ||||
|     </plurals> | ||||
|     <string name="updates_last_update_info">ספריה עודכנה לאחרונה ב: %s</string> | ||||
|     <string name="pref_navigate_pan">שטח תמונה רחבה</string> | ||||
|     <string name="pref_hide_in_library_items">הסתר פריטים שכבר בספרייה</string> | ||||
| @@ -797,27 +719,9 @@ | ||||
|     <string name="download_cache_invalidated">תוקף אינדקס ההורדות בוטל</string> | ||||
|     <string name="webview_data_deleted">מידע של WebView נוקה בהצלחה</string> | ||||
|     <string name="pref_reset_viewer_flags_summary">אפס מצב קריאה ואוריינטציה לכל הסדרות</string> | ||||
|     <plurals name="next_unread_chapters"> | ||||
|         <item quantity="one">הפרק הבא שלא נקרא</item> | ||||
|         <item quantity="two">שני הפרקים הבאים שלא נקראו</item> | ||||
|         <item quantity="many">%d הפרקים הבאים שלא נקראו</item> | ||||
|         <item quantity="other"/> | ||||
|     </plurals> | ||||
|     <string name="pref_debug_info">מידע דיבוג</string> | ||||
|     <string name="licenses">רישיונות מקורות פתוחים</string> | ||||
|     <string name="popular">פופולרי</string> | ||||
|     <plurals name="day"> | ||||
|         <item quantity="one">יום אחד</item> | ||||
|         <item quantity="two">יומיים</item> | ||||
|         <item quantity="many">%d ימים</item> | ||||
|         <item quantity="other"/> | ||||
|     </plurals> | ||||
|     <plurals name="missing_chapters"> | ||||
|         <item quantity="one">חסר פרק אחד</item> | ||||
|         <item quantity="two">חסרים שני פרקים</item> | ||||
|         <item quantity="many">חסרים %1$s פרקים</item> | ||||
|         <item quantity="other"/> | ||||
|     </plurals> | ||||
|     <string name="add_tracking">הוסף מעקב</string> | ||||
|     <string name="about_dont_kill_my_app">לחלק מהיצרנים יש הגבלות אפליקציה שהורגות תהליכים ברקע. באתר הזה יש עוד מידע לגבי איך לתקן את זה.</string> | ||||
|     <string name="track_remove_finish_date_conf_text">פעולה זו תסיר את תאריך הסיום הקודם שלך מ-%s</string> | ||||
							
								
								
									
										63
									
								
								i18n/src/commonMain/resources/MR/hi/plurals.xml
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										63
									
								
								i18n/src/commonMain/resources/MR/hi/plurals.xml
									
									
									
									
									
										Normal file
									
								
							| @@ -0,0 +1,63 @@ | ||||
| <?xml version="1.0" encoding="utf-8"?> | ||||
| <resources> | ||||
|     <plurals name="lock_after_mins"> | ||||
|         <item quantity="one">%1$s मिनट के बाद</item> | ||||
|         <item quantity="other">%1$s मिनटो के बाद</item> | ||||
|     </plurals> | ||||
|     <plurals name="notification_chapters_generic"> | ||||
|         <item quantity="one">%1$d नया अध्याय</item> | ||||
|         <item quantity="other">%1$d नए अध्याय</item> | ||||
|     </plurals> | ||||
|     <plurals name="notification_chapters_multiple_and_more"> | ||||
|         <item quantity="one">अध्याय %1$s और 1 अधिक</item> | ||||
|         <item quantity="other">अध्याय %1$s और %2$d अधिक</item> | ||||
|     </plurals> | ||||
|     <plurals name="notification_new_chapters_summary"> | ||||
|         <item quantity="one">%d आइटम के लिए</item> | ||||
|         <item quantity="other">%d आइटम के लिए</item> | ||||
|     </plurals> | ||||
|     <plurals name="update_check_notification_ext_updates"> | ||||
|         <item quantity="one">एक्सटेंशन अपडेट उपलब्ध</item> | ||||
|         <item quantity="other">%d एक्सटेंशन अपडेट उपलब्ध</item> | ||||
|     </plurals> | ||||
|     <plurals name="download_queue_summary"> | ||||
|         <item quantity="one">%1$s बचा हुआ</item> | ||||
|         <item quantity="other">%1$s बचे हुए</item> | ||||
|     </plurals> | ||||
|     <plurals name="num_categories"> | ||||
|         <item quantity="one">%d श्रेणी</item> | ||||
|         <item quantity="other">%d श्रेणियाँ</item> | ||||
|     </plurals> | ||||
|     <plurals name="restore_completed_message"> | ||||
|         <item quantity="one">%1$s में %2$s त्रुटि के साथ किया गया</item> | ||||
|         <item quantity="other">%1$s में %2$s त्रुटियों के साथ किया गया</item> | ||||
|     </plurals> | ||||
|     <plurals name="manga_num_chapters"> | ||||
|         <item quantity="one">अध्याय %1$s</item> | ||||
|         <item quantity="other">%1$s अध्याय</item> | ||||
|     </plurals> | ||||
|     <plurals name="num_trackers"> | ||||
|         <item quantity="one">%d ट्रैकर</item> | ||||
|         <item quantity="other">%d ट्रैकरस</item> | ||||
|     </plurals> | ||||
|     <plurals name="missing_chapters_warning"> | ||||
|         <item quantity="one">%d अध्याय को छोड़ा जा रहा है, या तो स्रोत में यह नहीं है या इसे फ़िल्टर कर दिया गया है</item> | ||||
|         <item quantity="other">%d अध्यायों को छोड़ा जा रहा है, या तो स्रोत उन्हें याद कर रहा है या उन्हें फ़िल्टर कर दिया गया है</item> | ||||
|     </plurals> | ||||
|     <plurals name="relative_time"> | ||||
|         <item quantity="one">कल</item> | ||||
|         <item quantity="other">%1$d दिन पहले</item> | ||||
|     </plurals> | ||||
|     <plurals name="next_unread_chapters"> | ||||
|         <item quantity="one">अगला अपठित अध्याय</item> | ||||
|         <item quantity="other">अगले %d अपठित अध्याय</item> | ||||
|     </plurals> | ||||
|     <plurals name="day"> | ||||
|         <item quantity="one">1 दिन</item> | ||||
|         <item quantity="other">%d दिन</item> | ||||
|     </plurals> | ||||
|     <plurals name="download_amount"> | ||||
|         <item quantity="one">अगला अध्याय</item> | ||||
|         <item quantity="other">अगले %d अध्याय</item> | ||||
|     </plurals> | ||||
| </resources> | ||||
| @@ -315,10 +315,6 @@ | ||||
|     <string name="lock_when_idle">निष्क्रिय होने पर लॉक करें</string> | ||||
|     <string name="lock_always">हमेशा</string> | ||||
|     <string name="lock_never">कभी नहीँ</string> | ||||
|     <plurals name="lock_after_mins"> | ||||
|         <item quantity="one">%1$s मिनट के बाद</item> | ||||
|         <item quantity="other">%1$s मिनटो के बाद</item> | ||||
|     </plurals> | ||||
|     <string name="secure_screen">स्क्रीन सुरक्षित करें</string> | ||||
|     <string name="ext_updates_pending">अपडेट लंबित हैं</string> | ||||
|     <string name="pref_cutout_short">कटआउट क्षेत्र में सामग्री दिखाएं</string> | ||||
| @@ -327,17 +323,9 @@ | ||||
|     <string name="channel_new_chapters">अध्याय अद्यतन</string> | ||||
|     <string name="secure_screen_summary">सुरक्षित स्क्रीन एप्लिकेशन स्विच करते समय एप्लिकेशन सामग्री छिपाता हैं और स्क्रीनशॉट ब्लॉक करता हैं</string> | ||||
|     <string name="pref_category_display">प्रदर्शन</string> | ||||
|     <plurals name="notification_chapters_generic"> | ||||
|         <item quantity="one">%1$d नया अध्याय</item> | ||||
|         <item quantity="other">%1$d नए अध्याय</item> | ||||
|     </plurals> | ||||
|     <string name="notification_chapters_single">अध्याय %1$s</string> | ||||
|     <string name="notification_chapters_single_and_more">अध्याय %1$s और %2$d अधिक</string> | ||||
|     <string name="notification_chapters_multiple">अध्याय %1$s</string> | ||||
|     <plurals name="notification_chapters_multiple_and_more"> | ||||
|         <item quantity="one">अध्याय %1$s और 1 अधिक</item> | ||||
|         <item quantity="other">अध्याय %1$s और %2$d अधिक</item> | ||||
|     </plurals> | ||||
|     <string name="hide_notification_content">अधिसूचना सामग्री छुपाएं</string> | ||||
|     <string name="notification_check_updates">नए अध्यायों के लिए जांच</string> | ||||
|     <string name="pref_disable_battery_optimization">बैटरी अनुकूलन को अक्षम करना</string> | ||||
| @@ -345,19 +333,11 @@ | ||||
|     <string name="battery_optimization_disabled">बैटरी अनुकूलन पहले से ही अक्षम है</string> | ||||
|     <string name="email">ईमेल पता</string> | ||||
|     <string name="pref_always_show_chapter_transition">हमेशा अध्याय संक्रमण दिखाएं</string> | ||||
|     <plurals name="notification_new_chapters_summary"> | ||||
|         <item quantity="one">%d आइटम के लिए</item> | ||||
|         <item quantity="other">%d आइटम के लिए</item> | ||||
|     </plurals> | ||||
|     <string name="action_menu">मेन्यू</string> | ||||
|     <string name="action_newest">नवीनतम</string> | ||||
|     <string name="action_oldest">सबसे पुराना</string> | ||||
|     <string name="action_move_to_top">शीर्ष पर ले जाएँ</string> | ||||
|     <string name="action_move_to_bottom">नीचे की ओर ले जाएं</string> | ||||
|     <plurals name="update_check_notification_ext_updates"> | ||||
|         <item quantity="one">एक्सटेंशन अपडेट उपलब्ध</item> | ||||
|         <item quantity="other">%d एक्सटेंशन अपडेट उपलब्ध</item> | ||||
|     </plurals> | ||||
|     <string name="channel_ext_updates">एक्सटेंशन अपडेट</string> | ||||
|     <string name="updating_library">अद्यतन पुस्तकालय</string> | ||||
|     <string name="pref_category_reading">पठन</string> | ||||
| @@ -389,23 +369,11 @@ | ||||
|     <string name="local_source_help_guide">स्थानीय स्रोत गाइड</string> | ||||
|     <string name="restore_duration">%02d मिनट,%02d सेकंड</string> | ||||
|     <string name="downloaded_only_summary">आपकी पुस्तकालय में सभी आइटम को फ़िल्टर करता है</string> | ||||
|     <plurals name="download_queue_summary"> | ||||
|         <item quantity="one">%1$s बचा हुआ</item> | ||||
|         <item quantity="other">%1$s बचे हुए</item> | ||||
|     </plurals> | ||||
|     <string name="viewer">पढ़न मोड</string> | ||||
|     <string name="pref_category_for_this_series">इस श्रृंखला के लिए</string> | ||||
|     <string name="gray_background">ग्रे</string> | ||||
|     <string name="pref_true_color_summary">बैंडिंग को कम करता है, लेकिन प्रदर्शन को प्रभावित कर सकता है</string> | ||||
|     <plurals name="num_categories"> | ||||
|         <item quantity="one">%d श्रेणी</item> | ||||
|         <item quantity="other">%d श्रेणियाँ</item> | ||||
|     </plurals> | ||||
|     <string name="battery_optimization_setting_activity_not_found">डिवाइस सेटिंग नहीं खोल सका</string> | ||||
|     <plurals name="restore_completed_message"> | ||||
|         <item quantity="one">%1$s में %2$s त्रुटि के साथ किया गया</item> | ||||
|         <item quantity="other">%1$s में %2$s त्रुटियों के साथ किया गया</item> | ||||
|     </plurals> | ||||
|     <string name="tracking_info">ट्रैकिंग सेवाओं में अध्याय की प्रगति को अद्यतन करने के लिए एकतरफा सिंक। अपने ट्रैकिंग बटन से व्यक्तिगत प्रविष्टियों के लिए ट्रैकिंग सेट अप करें।</string> | ||||
|     <string name="pref_refresh_library_covers">रिफ्रेश पुस्तकालय मंगा कवर</string> | ||||
|     <string name="unofficial_extension_message">यह एक्सटेंशन आधिकारिक ताचियोमी एक्सटेंशन सूची से नहीं है।</string> | ||||
| @@ -429,10 +397,6 @@ | ||||
|     <string name="loader_not_implemented_error">स्रोत नहीं मिला</string> | ||||
|     <string name="action_disable">बंद करें</string> | ||||
|     <string name="action_start">प्रारंभ</string> | ||||
|     <plurals name="manga_num_chapters"> | ||||
|         <item quantity="one">अध्याय %1$s</item> | ||||
|         <item quantity="other">%1$s अध्याय</item> | ||||
|     </plurals> | ||||
|     <string name="label_network">नेटवर्क</string> | ||||
|     <string name="tapping_inverted_both">दोनों</string> | ||||
|     <string name="tapping_inverted_vertical">शीर्ष से असंतत</string> | ||||
| @@ -449,10 +413,6 @@ | ||||
|     <string name="pref_category_reading_mode">पढ़न मोड</string> | ||||
|     <string name="pref_category_theme">थीम</string> | ||||
|     <string name="action_sort_date_added">तारीख को जोड़ा गया</string> | ||||
|     <plurals name="num_trackers"> | ||||
|         <item quantity="one">%d ट्रैकर</item> | ||||
|         <item quantity="other">%d ट्रैकरस</item> | ||||
|     </plurals> | ||||
|     <string name="no_pinned_sources">कोई पिन किया हुआ सोर्स नही है</string> | ||||
|     <string name="channel_complete">पूर्ण</string> | ||||
|     <string name="channel_progress">प्रगती</string> | ||||
| @@ -463,10 +423,6 @@ | ||||
|     <string name="ext_nsfw_warning">इसमें NSFW (18+) सामग्री हो सकती है</string> | ||||
|     <string name="ext_nsfw_short">18+</string> | ||||
|     <string name="parental_controls_info">यह अनौपचारिक या संभावित रूप से फ़्लैग किए गए एक्सटेंशन को ऐप के भीतर NSFW (18+) सामग्री के सामने आने से नहीं रोकता है।</string> | ||||
|     <plurals name="missing_chapters_warning"> | ||||
|         <item quantity="one">%d अध्याय को छोड़ा जा रहा है, या तो स्रोत में यह नहीं है या इसे फ़िल्टर कर दिया गया है</item> | ||||
|         <item quantity="other">%d अध्यायों को छोड़ा जा रहा है, या तो स्रोत उन्हें याद कर रहा है या उन्हें फ़िल्टर कर दिया गया है</item> | ||||
|     </plurals> | ||||
|     <string name="chapter_settings_updated">अपडेट किए गए डिफ़ॉल्ट अध्याय सेटिंग्स</string> | ||||
|     <string name="no_chapters_error">कोई अध्याय नहीं मिला</string> | ||||
|     <string name="set_chapter_settings_as_default">डिफ़ॉल्ट के रूप में सेट करें</string> | ||||
| @@ -567,10 +523,6 @@ | ||||
|     <string name="restore_miui_warning">MIUI ऑप्टिमाइज़ेशन अक्षम होने पर बैकअप/पुनर्स्थापना ठीक से काम नहीं कर सकता है।</string> | ||||
|     <string name="label_background_activity">पृष्ठभूमि गतिविधि</string> | ||||
|     <string name="about_dont_kill_my_app">कुछ निर्माताओं के पास अतिरिक्त ऐप प्रतिबंध हैं जो पृष्ठभूमि सेवाओं को मारते हैं। इस वेबसाइट में इसे ठीक करने के बारे में अधिक जानकारी है।</string> | ||||
|     <plurals name="relative_time"> | ||||
|         <item quantity="one">कल</item> | ||||
|         <item quantity="other">%1$d दिन पहले</item> | ||||
|     </plurals> | ||||
|     <string name="local_invalid_format">अमान्य अध्याय प्रारूप</string> | ||||
|     <string name="local_filter_order_by">के अनुसार ऑर्डर करें</string> | ||||
|     <string name="clipboard_copy_error">क्लिपबोर्ड पर कॉपी करने में विफल</string> | ||||
| @@ -678,10 +630,6 @@ | ||||
|     <string name="pref_user_agent_string">चूक यूजर एजेंट स्ट्रिंग (User agent string)</string> | ||||
|     <string name="download_ahead">आगे डाउनलोड करें</string> | ||||
|     <string name="auto_download_while_reading">पढ़ते समय ऑटो डाउनलोड करे</string> | ||||
|     <plurals name="next_unread_chapters"> | ||||
|         <item quantity="one">अगला अपठित अध्याय</item> | ||||
|         <item quantity="other">अगले %d अपठित अध्याय</item> | ||||
|     </plurals> | ||||
|     <string name="action_remove_everything">सब कुछ हटा दें</string> | ||||
|     <string name="popular">लोकप्रिय</string> | ||||
|     <string name="theme_tidalwave">टाइडल वेव्ह</string> | ||||
| @@ -733,14 +681,6 @@ | ||||
|     <string name="download_cache_invalidated">डाउनलोड अनुक्रमणिका अमान्य</string> | ||||
|     <string name="action_ok">ठीक है</string> | ||||
|     <string name="pref_invalidate_download_cache">डाउनलोड अनुक्रमणिका अमान्य करें</string> | ||||
|     <plurals name="day"> | ||||
|         <item quantity="one">1 दिन</item> | ||||
|         <item quantity="other">%d दिन</item> | ||||
|     </plurals> | ||||
|     <plurals name="download_amount"> | ||||
|         <item quantity="one">अगला अध्याय</item> | ||||
|         <item quantity="other">अगले %d अध्याय</item> | ||||
|     </plurals> | ||||
|     <string name="copied_to_clipboard_plain">क्लिपबोर्ड पर कॉपी हो गया है</string> | ||||
|     <string name="track_delete_remote_text">%s से भी हटा दें</string> | ||||
| </resources> | ||||
							
								
								
									
										83
									
								
								i18n/src/commonMain/resources/MR/hr/plurals.xml
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										83
									
								
								i18n/src/commonMain/resources/MR/hr/plurals.xml
									
									
									
									
									
										Normal file
									
								
							| @@ -0,0 +1,83 @@ | ||||
| <?xml version="1.0" encoding="utf-8"?> | ||||
| <resources> | ||||
|     <plurals name="lock_after_mins"> | ||||
|         <item quantity="one">Nakon %1$s minute</item> | ||||
|         <item quantity="few">Nakon %1$s minute</item> | ||||
|         <item quantity="other">Nakon %1$s minuta</item> | ||||
|     </plurals> | ||||
|     <plurals name="num_categories"> | ||||
|         <item quantity="one">%d kategorija</item> | ||||
|         <item quantity="few">%d kategorije</item> | ||||
|         <item quantity="other">%d kategorija</item> | ||||
|     </plurals> | ||||
|     <plurals name="notification_chapters_multiple_and_more"> | ||||
|         <item quantity="one">Poglavlja %1$s i još jedno</item> | ||||
|         <item quantity="few">Poglavlja %1$s i još %2$d</item> | ||||
|         <item quantity="other">Poglavlja %1$s i još %2$d</item> | ||||
|     </plurals> | ||||
|     <plurals name="notification_new_chapters_summary"> | ||||
|         <item quantity="one">Za %d stavku</item> | ||||
|         <item quantity="few">Za %d stavke</item> | ||||
|         <item quantity="other">Za %d stavku</item> | ||||
|     </plurals> | ||||
|     <plurals name="download_queue_summary"> | ||||
|         <item quantity="one">%1$s preostalo</item> | ||||
|         <item quantity="few">%1$s preostala</item> | ||||
|         <item quantity="other">%1$s preostalih</item> | ||||
|     </plurals> | ||||
|     <plurals name="update_check_notification_ext_updates"> | ||||
|         <item quantity="one">Dostupna je %d nova verzija proširenja</item> | ||||
|         <item quantity="few">Dostupne su %d nove verzije proširenja</item> | ||||
|         <item quantity="other">Dostupno je %d novih verzija proširenja</item> | ||||
|     </plurals> | ||||
|     <plurals name="notification_chapters_generic"> | ||||
|         <item quantity="one">%1$d novo poglavlje</item> | ||||
|         <item quantity="few">%1$d nova poglavlja</item> | ||||
|         <item quantity="other">%1$d novih poglavlja</item> | ||||
|     </plurals> | ||||
|     <plurals name="restore_completed_message"> | ||||
|         <item quantity="one">Obavljeno u %1$s s %2$s greškom</item> | ||||
|         <item quantity="few">Obavljeno u %1$s s %2$s greške</item> | ||||
|         <item quantity="other">Obavljeno u %1$s s %2$s grešaka</item> | ||||
|     </plurals> | ||||
|     <plurals name="manga_num_chapters"> | ||||
|         <item quantity="one">%1$s poglavlje</item> | ||||
|         <item quantity="few">%1$s poglavlja</item> | ||||
|         <item quantity="other">%1$s poglavlja</item> | ||||
|     </plurals> | ||||
|     <plurals name="num_trackers"> | ||||
|         <item quantity="one">%d usluga praćenja</item> | ||||
|         <item quantity="few">%d usluge praćenja</item> | ||||
|         <item quantity="other">%d usluga praćenja</item> | ||||
|     </plurals> | ||||
|     <plurals name="missing_chapters_warning"> | ||||
|         <item quantity="one">Preskače se %d poglavlje. Ne postoji u izvoru ili je filtrirano</item> | ||||
|         <item quantity="few">Preskaču se %d poglavlja. Ne postoje u izvoru ili su filtrirana</item> | ||||
|         <item quantity="other">Preskače se %d poglavlja. Ne postoje u izvoru ili su filtrirana</item> | ||||
|     </plurals> | ||||
|     <plurals name="relative_time"> | ||||
|         <item quantity="one">Prije %1$d dan</item> | ||||
|         <item quantity="few">Prije %1$d dana</item> | ||||
|         <item quantity="other">Prije %1$d dana</item> | ||||
|     </plurals> | ||||
|     <plurals name="next_unread_chapters"> | ||||
|         <item quantity="one">Sljedeće nepročitano poglavlje</item> | ||||
|         <item quantity="few">Sljedeća %d nepročitana poglavlja</item> | ||||
|         <item quantity="other">Sljedećih %d nepročitanih poglavlja</item> | ||||
|     </plurals> | ||||
|     <plurals name="download_amount"> | ||||
|         <item quantity="one">Sljedeće poglavlje</item> | ||||
|         <item quantity="few">Sljedeća %d poglavlja</item> | ||||
|         <item quantity="other">Sljedećih %d poglavlja</item> | ||||
|     </plurals> | ||||
|     <plurals name="missing_chapters"> | ||||
|         <item quantity="one">Nedostaje %1$s poglavlje</item> | ||||
|         <item quantity="few">Nedostaju %1$s poglavlja</item> | ||||
|         <item quantity="other">Nedostaje %1$s poglavlja</item> | ||||
|     </plurals> | ||||
|     <plurals name="day"> | ||||
|         <item quantity="one">%d dan</item> | ||||
|         <item quantity="few">%d dana</item> | ||||
|         <item quantity="other">%d dana</item> | ||||
|     </plurals> | ||||
| </resources> | ||||
| @@ -1,10 +1,5 @@ | ||||
| <?xml version="1.0" encoding="utf-8"?> | ||||
| <resources> | ||||
|     <plurals name="lock_after_mins"> | ||||
|         <item quantity="one">Nakon %1$s minute</item> | ||||
|         <item quantity="few">Nakon %1$s minute</item> | ||||
|         <item quantity="other">Nakon %1$s minuta</item> | ||||
|     </plurals> | ||||
|     <string name="lock_never">Nikada</string> | ||||
|     <string name="lock_always">Uvijek</string> | ||||
|     <string name="pref_fullscreen">Cjeloekranski prikaz</string> | ||||
| @@ -27,11 +22,6 @@ | ||||
|     <string name="ext_update">Aktualiziraj</string> | ||||
|     <string name="ext_updates_pending">Aktualiziranja na čekanju</string> | ||||
|     <string name="all">Sve</string> | ||||
|     <plurals name="num_categories"> | ||||
|         <item quantity="one">%d kategorija</item> | ||||
|         <item quantity="few">%d kategorije</item> | ||||
|         <item quantity="other">%d kategorija</item> | ||||
|     </plurals> | ||||
|     <string name="default_category_summary">Uvijek pitaj</string> | ||||
|     <string name="default_category">Standardna kategorija</string> | ||||
|     <string name="pref_update_only_non_completed">Sa stanjem „Završeno“</string> | ||||
| @@ -247,19 +237,9 @@ | ||||
|     <string name="file_select_cover">Odaberi sliku naslovnice</string> | ||||
|     <string name="notification_first_add_to_library">Prije toga, dodajte stavku u biblioteku</string> | ||||
|     <string name="notification_cover_update_failed">Neuspjelo ažuriranje naslovnice</string> | ||||
|     <plurals name="notification_chapters_multiple_and_more"> | ||||
|         <item quantity="one">Poglavlja %1$s i još jedno</item> | ||||
|         <item quantity="few">Poglavlja %1$s i još %2$d</item> | ||||
|         <item quantity="other">Poglavlja %1$s i još %2$d</item> | ||||
|     </plurals> | ||||
|     <string name="notification_chapters_multiple">Poglavlja %1$s</string> | ||||
|     <string name="notification_chapters_single_and_more">Poglavlje %1$s i još %2$d</string> | ||||
|     <string name="notification_chapters_single">Poglavlje %1$s</string> | ||||
|     <plurals name="notification_new_chapters_summary"> | ||||
|         <item quantity="one">Za %d stavku</item> | ||||
|         <item quantity="few">Za %d stavke</item> | ||||
|         <item quantity="other">Za %d stavku</item> | ||||
|     </plurals> | ||||
|     <string name="notification_new_chapters">Pronađena su nova poglavlja</string> | ||||
|     <string name="notification_check_updates">Traženje novih poglavlja</string> | ||||
|     <string name="download_queue_error">Neuspjelo preuzimanje poglavlja. Pokušaj ponovo u odjeljku preuzimanja</string> | ||||
| @@ -352,11 +332,6 @@ | ||||
|     <string name="email">Adresa e-pošte</string> | ||||
|     <string name="username">Korisničko ime</string> | ||||
|     <string name="login_title">Prijavi se na %1$s</string> | ||||
|     <plurals name="download_queue_summary"> | ||||
|         <item quantity="one">%1$s preostalo</item> | ||||
|         <item quantity="few">%1$s preostala</item> | ||||
|         <item quantity="other">%1$s preostalih</item> | ||||
|     </plurals> | ||||
|     <string name="downloaded_only_summary">Filtrira sve unose u biblioteci</string> | ||||
|     <string name="label_downloaded_only">Samo preuzeto</string> | ||||
|     <string name="pref_acra_summary">Pomaže pri ispravljanju grešaka. Ne šalju se nikoji privatni podaci</string> | ||||
| @@ -388,17 +363,7 @@ | ||||
|     <string name="backup_choice">Što želiš spremiti kao sigurnosnu kopiju\?</string> | ||||
|     <string name="backup_in_progress">Spremanje sigurnosne kopije je već u tijeku</string> | ||||
|     <string name="information_cloudflare_bypass_failure">Neuspjelo zaobilaženje Cloudflare-a</string> | ||||
|     <plurals name="update_check_notification_ext_updates"> | ||||
|         <item quantity="one">Dostupna je %d nova verzija proširenja</item> | ||||
|         <item quantity="few">Dostupne su %d nove verzije proširenja</item> | ||||
|         <item quantity="other">Dostupno je %d novih verzija proširenja</item> | ||||
|     </plurals> | ||||
|     <string name="information_webview_required">Za funkcioniranje programa je potreban WebView</string> | ||||
|     <plurals name="notification_chapters_generic"> | ||||
|         <item quantity="one">%1$d novo poglavlje</item> | ||||
|         <item quantity="few">%1$d nova poglavlja</item> | ||||
|         <item quantity="other">%1$d novih poglavlja</item> | ||||
|     </plurals> | ||||
|     <string name="channel_ext_updates">Ažuriranja proširenja</string> | ||||
|     <string name="channel_new_chapters">Ažuriranja poglavlja</string> | ||||
|     <string name="channel_common">Opće</string> | ||||
| @@ -412,11 +377,6 @@ | ||||
|     <string name="pref_refresh_library_covers">Aktualiziraj naslovnice biblioteke</string> | ||||
|     <string name="sort_by_upload_date">Po datumu prijenosa</string> | ||||
|     <string name="label_data">Podaci</string> | ||||
|     <plurals name="restore_completed_message"> | ||||
|         <item quantity="one">Obavljeno u %1$s s %2$s greškom</item> | ||||
|         <item quantity="few">Obavljeno u %1$s s %2$s greške</item> | ||||
|         <item quantity="other">Obavljeno u %1$s s %2$s grešaka</item> | ||||
|     </plurals> | ||||
|     <string name="backup_restore_missing_sources">Nedostaju izvori:</string> | ||||
|     <string name="invalid_backup_file_missing_manga">Sigurnosna kopija ne sadrži unose u biblioteci.</string> | ||||
|     <string name="invalid_backup_file">Neispravna datoteka sigurnosne kopije</string> | ||||
| @@ -437,11 +397,6 @@ | ||||
|     <string name="action_start">Pokreni</string> | ||||
|     <string name="action_disable">Deaktiviraj</string> | ||||
|     <string name="loader_not_implemented_error">Izvor nije pronađen</string> | ||||
|     <plurals name="manga_num_chapters"> | ||||
|         <item quantity="one">%1$s poglavlje</item> | ||||
|         <item quantity="few">%1$s poglavlja</item> | ||||
|         <item quantity="other">%1$s poglavlja</item> | ||||
|     </plurals> | ||||
|     <string name="requires_app_restart">Zahtijeva ponovno pokretanje programa</string> | ||||
|     <string name="label_network">Umreženi rad</string> | ||||
|     <string name="tapping_inverted_both">Oboje</string> | ||||
| @@ -458,11 +413,6 @@ | ||||
|     <string name="pref_category_reading_mode">Modus čitanja</string> | ||||
|     <string name="pref_category_theme">Tema</string> | ||||
|     <string name="action_sort_date_added">Datum dodavanja</string> | ||||
|     <plurals name="num_trackers"> | ||||
|         <item quantity="one">%d usluga praćenja</item> | ||||
|         <item quantity="few">%d usluge praćenja</item> | ||||
|         <item quantity="other">%d usluga praćenja</item> | ||||
|     </plurals> | ||||
|     <string name="no_pinned_sources">Nemaš označenih izvora</string> | ||||
|     <string name="channel_complete">Gotovo</string> | ||||
|     <string name="channel_progress">Napredak</string> | ||||
| @@ -473,11 +423,6 @@ | ||||
|     <string name="ext_nsfw_short">18+</string> | ||||
|     <string name="backup_restore_missing_trackers">Usluge praćenja bez prijave:</string> | ||||
|     <string name="parental_controls_info">To ne sprečava neslužbene ili potencijalno krivo označena proširenja prikazati neprikladan sadržaj (18+) unutar aplikacije.</string> | ||||
|     <plurals name="missing_chapters_warning"> | ||||
|         <item quantity="one">Preskače se %d poglavlje. Ne postoji u izvoru ili je filtrirano</item> | ||||
|         <item quantity="few">Preskaču se %d poglavlja. Ne postoje u izvoru ili su filtrirana</item> | ||||
|         <item quantity="other">Preskače se %d poglavlja. Ne postoje u izvoru ili su filtrirana</item> | ||||
|     </plurals> | ||||
|     <string name="no_chapters_error">Nema poglavlja</string> | ||||
|     <string name="chapter_settings_updated">Standardne postavke poglavlja su aktualizirane</string> | ||||
|     <string name="share_page_info">%1$s: %2$s, %3$d. stranica</string> | ||||
| @@ -576,11 +521,6 @@ | ||||
|     <string name="theme_yotsuba">Yotsuba</string> | ||||
|     <string name="theme_yinyang">Jin i Jang</string> | ||||
|     <string name="pref_inverted_colors">Invertirano</string> | ||||
|     <plurals name="relative_time"> | ||||
|         <item quantity="one">Prije %1$d dan</item> | ||||
|         <item quantity="few">Prije %1$d dana</item> | ||||
|         <item quantity="other">Prije %1$d dana</item> | ||||
|     </plurals> | ||||
|     <string name="relative_time_today">Danas</string> | ||||
|     <string name="pref_dark_theme_pure_black">Potpuno crna tamna tema</string> | ||||
|     <string name="theme_strawberrydaiquiri">Strawberry Daiquiri</string> | ||||
| @@ -660,11 +600,6 @@ | ||||
|     <string name="download_notifier_split_page_not_found">Stranica %d nije pronađena tijekom rastavljanja</string> | ||||
|     <string name="loader_rar5_error">RARv5 format nije podržan</string> | ||||
|     <string name="download_ahead_info">Radi samo ako je trenutačno i sljedeće poglavlje već preuzeto.</string> | ||||
|     <plurals name="next_unread_chapters"> | ||||
|         <item quantity="one">Sljedeće nepročitano poglavlje</item> | ||||
|         <item quantity="few">Sljedeća %d nepročitana poglavlja</item> | ||||
|         <item quantity="other">Sljedećih %d nepročitanih poglavlja</item> | ||||
|     </plurals> | ||||
|     <string name="action_sort_last_manga_update">Zadnja provjera aktualiziranja</string> | ||||
|     <string name="network_not_metered">Samo na mrežom bez ograničenja</string> | ||||
|     <string name="action_sort_unread_count">Broj nepročitanih</string> | ||||
| @@ -770,19 +705,9 @@ | ||||
|     <string name="information_required_plain">*obavezno</string> | ||||
|     <string name="pref_hide_in_library_items">Sakrij unose koji se već nalaze u biblioteci</string> | ||||
|     <string name="action_copy_to_clipboard">Kopiraj u međuspremnik</string> | ||||
|     <plurals name="download_amount"> | ||||
|         <item quantity="one">Sljedeće poglavlje</item> | ||||
|         <item quantity="few">Sljedeća %d poglavlja</item> | ||||
|         <item quantity="other">Sljedećih %d poglavlja</item> | ||||
|     </plurals> | ||||
|     <string name="action_update_category">Aktualiziraj katogoriju</string> | ||||
|     <string name="split_tall_images">Rastavi visoke slike</string> | ||||
|     <string name="overlay_header">Oznake</string> | ||||
|     <plurals name="missing_chapters"> | ||||
|         <item quantity="one">Nedostaje %1$s poglavlje</item> | ||||
|         <item quantity="few">Nedostaju %1$s poglavlja</item> | ||||
|         <item quantity="other">Nedostaje %1$s poglavlja</item> | ||||
|     </plurals> | ||||
|     <string name="pref_page_rotate">Prilagodi prikaz širokih stranica okretanjem</string> | ||||
|     <string name="pref_page_rotate_invert">Preokreni položaj širokih stranica</string> | ||||
|     <string name="pref_debug_info">Informacije o otklanjanju grešaka</string> | ||||
| @@ -803,11 +728,6 @@ | ||||
|     <string name="intervals_header">Intervali</string> | ||||
|     <string name="track_delete_title">Ukloniti praćenje %s\?</string> | ||||
|     <string name="skipped_reason_not_in_release_period">Preskočeno, jer se danas nije očekivalo izdanje</string> | ||||
|     <plurals name="day"> | ||||
|         <item quantity="one">%d dan</item> | ||||
|         <item quantity="few">%d dana</item> | ||||
|         <item quantity="other">%d dana</item> | ||||
|     </plurals> | ||||
|     <string name="track_delete_text">Ovo će ukloniti lokalno praćenje.</string> | ||||
|     <string name="track_delete_remote_text">Također ukloni iz %s</string> | ||||
|     <string name="delete_downloaded">Izbriši preuzete</string> | ||||
							
								
								
									
										63
									
								
								i18n/src/commonMain/resources/MR/hu/plurals.xml
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										63
									
								
								i18n/src/commonMain/resources/MR/hu/plurals.xml
									
									
									
									
									
										Normal file
									
								
							| @@ -0,0 +1,63 @@ | ||||
| <?xml version="1.0" encoding="utf-8"?> | ||||
| <resources> | ||||
|     <plurals name="update_check_notification_ext_updates"> | ||||
|         <item quantity="one">Egy új bővítményfrissítés érhető el</item> | ||||
|         <item quantity="other">%d bővítményfrissítés érhető el</item> | ||||
|     </plurals> | ||||
|     <plurals name="lock_after_mins"> | ||||
|         <item quantity="one">1 perc után</item> | ||||
|         <item quantity="other">%1$s percek után</item> | ||||
|     </plurals> | ||||
|     <plurals name="num_categories"> | ||||
|         <item quantity="one">%d kategória</item> | ||||
|         <item quantity="other">%d kategóriák</item> | ||||
|     </plurals> | ||||
|     <plurals name="manga_num_chapters"> | ||||
|         <item quantity="one">1 fejezet</item> | ||||
|         <item quantity="other">%1$s fejezet</item> | ||||
|     </plurals> | ||||
|     <plurals name="notification_chapters_generic"> | ||||
|         <item quantity="one">1 új fejezet</item> | ||||
|         <item quantity="other">%1$d új fejezet</item> | ||||
|     </plurals> | ||||
|     <plurals name="relative_time"> | ||||
|         <item quantity="one">Tegnap</item> | ||||
|         <item quantity="other">%1$d napja</item> | ||||
|     </plurals> | ||||
|     <plurals name="num_trackers"> | ||||
|         <item quantity="one">%d tracker</item> | ||||
|         <item quantity="other">%d trackerek</item> | ||||
|     </plurals> | ||||
|     <plurals name="notification_new_chapters_summary"> | ||||
|         <item quantity="one">%d-nak/nek</item> | ||||
|         <item quantity="other">%d-nak/nek</item> | ||||
|     </plurals> | ||||
|     <plurals name="missing_chapters_warning"> | ||||
|         <item quantity="one">%d fejezet kihagyása, hiányzik a forrás, vagy ki lett szűrve</item> | ||||
|         <item quantity="other">%d fejezet kihagyása, hiányoznak a források, vagy ki lettek szűrve</item> | ||||
|     </plurals> | ||||
|     <plurals name="download_queue_summary"> | ||||
|         <item quantity="one">%1$s van hátra</item> | ||||
|         <item quantity="other">%1$s van hátra</item> | ||||
|     </plurals> | ||||
|     <plurals name="restore_completed_message"> | ||||
|         <item quantity="one">Befejezve %1$s alatt, %2$s hibával</item> | ||||
|         <item quantity="other">Befejezve %1$s alatt, %2$s hibával</item> | ||||
|     </plurals> | ||||
|     <plurals name="notification_chapters_multiple_and_more"> | ||||
|         <item quantity="one">%1$s fejezet és még 1</item> | ||||
|         <item quantity="other">%1$s fejezet és még %2$d</item> | ||||
|     </plurals> | ||||
|     <plurals name="next_unread_chapters"> | ||||
|         <item quantity="one">Következő olvasatlan fejezet</item> | ||||
|         <item quantity="other">Következő %d olvasatlan fejezet</item> | ||||
|     </plurals> | ||||
|     <plurals name="download_amount"> | ||||
|         <item quantity="one">Következő fejezet</item> | ||||
|         <item quantity="other">Következő %d fejezetek</item> | ||||
|     </plurals> | ||||
|     <plurals name="missing_chapters"> | ||||
|         <item quantity="one">Hiányzó %1$s fejezet</item> | ||||
|         <item quantity="other">Hiányzó %1$s fejezetek</item> | ||||
|     </plurals> | ||||
| </resources> | ||||
| @@ -159,10 +159,6 @@ | ||||
|     <string name="download_notifier_unknown_error">Egy váratlan hiba miatt nem sikerült letölteni a fejezetet</string> | ||||
|     <string name="download_notifier_title_error">Hiba</string> | ||||
|     <string name="information_webview_outdated">A jobb kompatibilitás érdekében kérlek, frissítsd a WebView alkalmazást</string> | ||||
|     <plurals name="update_check_notification_ext_updates"> | ||||
|         <item quantity="one">Egy új bővítményfrissítés érhető el</item> | ||||
|         <item quantity="other">%d bővítményfrissítés érhető el</item> | ||||
|     </plurals> | ||||
|     <string name="update_check_notification_update_available">Új verzió érhető el!</string> | ||||
|     <string name="update_check_notification_download_error">Letöltési hiba</string> | ||||
|     <string name="update_check_notification_download_complete">Érints meg a telepítéshez</string> | ||||
| @@ -177,10 +173,6 @@ | ||||
|     <string name="manga_info_collapse">Kevesebb</string> | ||||
|     <string name="hide_notification_content">Értesítés tartalmának elrejtése</string> | ||||
|     <string name="secure_screen_summary">Az alkalmazás tartalmának elrejtése az alkalmazások közötti váltáskor és a képernyőképek készítésének blokkolása</string> | ||||
|     <plurals name="lock_after_mins"> | ||||
|         <item quantity="one">1 perc után</item> | ||||
|         <item quantity="other">%1$s percek után</item> | ||||
|     </plurals> | ||||
|     <string name="lock_always">Mindig</string> | ||||
|     <string name="pref_category_security">Biztonság</string> | ||||
|     <string name="pref_manage_notifications">Értesítések kezelése</string> | ||||
| @@ -195,10 +187,6 @@ | ||||
|     <string name="ext_unofficial">Nem hivatalos</string> | ||||
|     <string name="ext_obsolete">Elavult</string> | ||||
|     <string name="ext_updates_pending">Függőben lévő frissítések</string> | ||||
|     <plurals name="num_categories"> | ||||
|         <item quantity="one">%d kategória</item> | ||||
|         <item quantity="other">%d kategóriák</item> | ||||
|     </plurals> | ||||
|     <string name="pref_library_update_refresh_metadata_summary">Új borító és részletek keresése a könyvtár frissítésekor</string> | ||||
|     <string name="pref_library_update_refresh_metadata">Metaadatokat frissítse automatikusan</string> | ||||
|     <string name="pref_category_library_update">Minden frissítése</string> | ||||
| @@ -229,10 +217,6 @@ | ||||
|     <string name="copied_to_clipboard">Vágólapra másolva: | ||||
| \n%1$s</string> | ||||
|     <string name="delete_downloads_for_manga">Törli a kijelölt fejezeteket\?</string> | ||||
|     <plurals name="manga_num_chapters"> | ||||
|         <item quantity="one">1 fejezet</item> | ||||
|         <item quantity="other">%1$s fejezet</item> | ||||
|     </plurals> | ||||
|     <string name="spen_previous_page">Előző oldal</string> | ||||
|     <string name="chapter_error">Hiba</string> | ||||
|     <string name="website">Weboldal</string> | ||||
| @@ -242,10 +226,6 @@ | ||||
|     <string name="manga_from_library">Manga a könyvtárból</string> | ||||
|     <string name="nav_zone_prev">Előző</string> | ||||
|     <string name="notification_chapters_single">%1$s. fejezet</string> | ||||
|     <plurals name="notification_chapters_generic"> | ||||
|         <item quantity="one">1 új fejezet</item> | ||||
|         <item quantity="other">%1$d új fejezet</item> | ||||
|     </plurals> | ||||
|     <string name="cover_updated">Borító frissítve</string> | ||||
|     <string name="set_as_cover">Beállítás borítóként</string> | ||||
|     <string name="custom_filter">Egyedi szűrő</string> | ||||
| @@ -336,10 +316,6 @@ | ||||
|     <string name="categorized_display_settings">Kategóriakénti beállítások rendezéshez</string> | ||||
|     <string name="theme_tako">Polip</string> | ||||
|     <string name="theme_strawberrydaiquiri">Eper koktél</string> | ||||
|     <plurals name="relative_time"> | ||||
|         <item quantity="one">Tegnap</item> | ||||
|         <item quantity="other">%1$d napja</item> | ||||
|     </plurals> | ||||
|     <string name="relative_time_today">Ma</string> | ||||
|     <string name="pref_dark_theme_pure_black">Teljesen fekete sötét mód</string> | ||||
|     <string name="theme_yotsuba">Yotsuba</string> | ||||
| @@ -439,10 +415,6 @@ | ||||
|     <string name="tracking_info">Egyirányú szinkronizálás, hogy a fejezetben való előrehaladás frissítve legyen a követési szolgáltatásokban. Állíts be követést egyéni bejegyzésekre, a követési gomb lenyomásával.</string> | ||||
|     <string name="update_72hour">3 naponta</string> | ||||
|     <string name="connected_to_wifi">Csak Wi-Fi-n keresztül</string> | ||||
|     <plurals name="num_trackers"> | ||||
|         <item quantity="one">%d tracker</item> | ||||
|         <item quantity="other">%d trackerek</item> | ||||
|     </plurals> | ||||
|     <string name="backup_info">Ajánlott az automatikus biztonsági mentése. Ezen kívül máshol is legyenek másolatok.</string> | ||||
|     <string name="empty_backup_error">Nincs könyvtári elem, amit menteni lehetne</string> | ||||
|     <string name="local_source">Helyi forrás</string> | ||||
| @@ -488,10 +460,6 @@ | ||||
|     <string name="cache_deleted">Gyorsítótár törölve: %1$d fájl lett törölve</string> | ||||
|     <string name="cache_delete_error">Hiba történt törlés közben</string> | ||||
|     <string name="clear_database_confirmation">Biztos benne\? Nem könyvtári elemek olvasott fejezetei elvesznek</string> | ||||
|     <plurals name="notification_new_chapters_summary"> | ||||
|         <item quantity="one">%d-nak/nek</item> | ||||
|         <item quantity="other">%d-nak/nek</item> | ||||
|     </plurals> | ||||
|     <string name="file_picker_error">Nem található fájl választó alkalmazás</string> | ||||
|     <string name="information_empty_category_dialog">Nincsenek még kategóriáid.</string> | ||||
|     <string name="information_cloudflare_bypass_failure">Nem sikerült megkerülni a Cloudflare-t</string> | ||||
| @@ -519,10 +487,6 @@ | ||||
|     <string name="login_title">Jelentkezz be %1$s-ba/be</string> | ||||
|     <string name="track_type">Típus</string> | ||||
|     <string name="loader_not_implemented_error">A forrás nem található</string> | ||||
|     <plurals name="missing_chapters_warning"> | ||||
|         <item quantity="one">%d fejezet kihagyása, hiányzik a forrás, vagy ki lett szűrve</item> | ||||
|         <item quantity="other">%d fejezet kihagyása, hiányoznak a források, vagy ki lettek szűrve</item> | ||||
|     </plurals> | ||||
|     <string name="action_sort_last_manga_update">Utolsó frissítés megtekintése</string> | ||||
|     <string name="action_sort_unread_count">Olvasatlanok száma</string> | ||||
|     <string name="action_show_manga">Bejegyzés mutatása</string> | ||||
| @@ -574,10 +538,6 @@ | ||||
|     <string name="pref_dump_crash_logs_summary">Feljegyzi a hibát egy fájlba, hogy meg lehessen osztani a fejlesztővel</string> | ||||
|     <string name="invalid_backup_file_missing_manga">A biztonsági mentés nem tartalmaza a bejegyzéseket.</string> | ||||
|     <string name="restoring_backup_canceled">Megszakított helyreállítás</string> | ||||
|     <plurals name="download_queue_summary"> | ||||
|         <item quantity="one">%1$s van hátra</item> | ||||
|         <item quantity="other">%1$s van hátra</item> | ||||
|     </plurals> | ||||
|     <string name="manga_download">Letöltés</string> | ||||
|     <string name="publishing_finished">Befejezett</string> | ||||
|     <string name="description_placeholder">Nincs leírás</string> | ||||
| @@ -638,10 +598,6 @@ | ||||
|     <string name="pref_restore_backup">Biztonsági mentés visszaállítása</string> | ||||
|     <string name="pref_restore_backup_summ">Könyvtár visszaállítása biztonsági mentésről</string> | ||||
|     <string name="pref_backup_interval">Biztonsági mentések gyakorisága</string> | ||||
|     <plurals name="restore_completed_message"> | ||||
|         <item quantity="one">Befejezve %1$s alatt, %2$s hibával</item> | ||||
|         <item quantity="other">Befejezve %1$s alatt, %2$s hibával</item> | ||||
|     </plurals> | ||||
|     <string name="restoring_backup">Biztonsági mentés helyreállítása</string> | ||||
|     <string name="restoring_backup_error">Nem sikerült a biztonsági mentés helyreállítása</string> | ||||
|     <string name="clear_database_completed">Elemek törölve</string> | ||||
| @@ -668,10 +624,6 @@ | ||||
|     <string name="download_notifier_split_page_not_found">%d oldal nem található felosztás közben</string> | ||||
|     <string name="download_notifier_split_page_path_not_found">Nem található az útvonal a %d-ik oldalhoz</string> | ||||
|     <string name="confirm_set_image_as_cover">Ez a kép legyen a fedlap\?</string> | ||||
|     <plurals name="notification_chapters_multiple_and_more"> | ||||
|         <item quantity="one">%1$s fejezet és még 1</item> | ||||
|         <item quantity="other">%1$s fejezet és még %2$d</item> | ||||
|     </plurals> | ||||
|     <string name="file_select_backup">Biztonsági mentési fájl kiválasztása</string> | ||||
|     <string name="pref_user_agent_string">Alap hálózati kliens szöveg</string> | ||||
|     <string name="pref_reset_user_agent_string">Alap hálózati kliens szöveg visszaállítása</string> | ||||
| @@ -710,10 +662,6 @@ | ||||
|     <string name="pref_tracking_summary">Egyirányú haladás szinkronizálás, fejlesztett szinkronizálás</string> | ||||
|     <string name="pref_backup_summary">Manuális és automatikus biztonsági mentés</string> | ||||
|     <string name="multi_lang">Több</string> | ||||
|     <plurals name="next_unread_chapters"> | ||||
|         <item quantity="one">Következő olvasatlan fejezet</item> | ||||
|         <item quantity="other">Következő %d olvasatlan fejezet</item> | ||||
|     </plurals> | ||||
|     <string name="pref_browse_summary">Források, bővítmények, globális keresés</string> | ||||
|     <string name="action_copy_to_clipboard">Másolás a vágólapra</string> | ||||
|     <string name="action_update_category">Kategória frissítése</string> | ||||
| @@ -728,18 +676,10 @@ | ||||
|     <string name="crash_screen_title">Hoppá!</string> | ||||
|     <string name="enhanced_services_not_installed">Elérhető de a forrás nincs telepítve: %s</string> | ||||
|     <string name="missing_storage_permission">Tárhely engedély nincs megadva</string> | ||||
|     <plurals name="download_amount"> | ||||
|         <item quantity="one">Következő fejezet</item> | ||||
|         <item quantity="other">Következő %d fejezetek</item> | ||||
|     </plurals> | ||||
|     <string name="label_used">Használt</string> | ||||
|     <string name="track_error">%1$s error: %2$s</string> | ||||
|     <string name="are_you_sure">Biztos vagy benne\?</string> | ||||
|     <string name="information_no_manga_category">Kategória üres</string> | ||||
|     <plurals name="missing_chapters"> | ||||
|         <item quantity="one">Hiányzó %1$s fejezet</item> | ||||
|         <item quantity="other">Hiányzó %1$s fejezetek</item> | ||||
|     </plurals> | ||||
|     <string name="track_remove_finish_date_conf_text">Ez eltávolítja az eddig kiválasztott befejezési dátumot a/az %s</string> | ||||
|     <string name="label_read_duration">Olvasási idő</string> | ||||
|     <string name="information_no_entries_found">Nem található bejegyzés ebben a kategóriában</string> | ||||
							
								
								
									
										51
									
								
								i18n/src/commonMain/resources/MR/in/plurals.xml
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										51
									
								
								i18n/src/commonMain/resources/MR/in/plurals.xml
									
									
									
									
									
										Normal file
									
								
							| @@ -0,0 +1,51 @@ | ||||
| <?xml version="1.0" encoding="utf-8"?> | ||||
| <resources> | ||||
|     <plurals name="lock_after_mins"> | ||||
|         <item quantity="other">Setelah %1$s menit</item> | ||||
|     </plurals> | ||||
|     <plurals name="notification_chapters_generic"> | ||||
|         <item quantity="other">%1$d bab baru</item> | ||||
|     </plurals> | ||||
|     <plurals name="notification_chapters_multiple_and_more"> | ||||
|         <item quantity="other">Bab %1$s dan %2$d lainnya</item> | ||||
|     </plurals> | ||||
|     <plurals name="notification_new_chapters_summary"> | ||||
|         <item quantity="other">Untuk entri %d</item> | ||||
|     </plurals> | ||||
|     <plurals name="update_check_notification_ext_updates"> | ||||
|         <item quantity="other">Terdapat %d perbaruan ekstensi</item> | ||||
|     </plurals> | ||||
|     <plurals name="download_queue_summary"> | ||||
|         <item quantity="other">%1$s lagi</item> | ||||
|     </plurals> | ||||
|     <plurals name="num_categories"> | ||||
|         <item quantity="other">%d kategori</item> | ||||
|     </plurals> | ||||
|     <plurals name="restore_completed_message"> | ||||
|         <item quantity="other">Selesai dalam %1$s dengan %2$s kesalahan</item> | ||||
|     </plurals> | ||||
|     <plurals name="manga_num_chapters"> | ||||
|         <item quantity="other">%1$s bab</item> | ||||
|     </plurals> | ||||
|     <plurals name="num_trackers"> | ||||
|         <item quantity="other">%d pelacak</item> | ||||
|     </plurals> | ||||
|     <plurals name="missing_chapters_warning"> | ||||
|         <item quantity="other">Melewati %d bab, entah sumbernya hilang atau telah difilter</item> | ||||
|     </plurals> | ||||
|     <plurals name="relative_time"> | ||||
|         <item quantity="other">%1$d hari yang lalu</item> | ||||
|     </plurals> | ||||
|     <plurals name="next_unread_chapters"> | ||||
|         <item quantity="other">Selanjutnya chapter %d yang belum dibaca</item> | ||||
|     </plurals> | ||||
|     <plurals name="download_amount"> | ||||
|         <item quantity="other">berikutnya %d chapter</item> | ||||
|     </plurals> | ||||
|     <plurals name="missing_chapters"> | ||||
|         <item quantity="other">Bab %1$s yang hilang</item> | ||||
|     </plurals> | ||||
|     <plurals name="day"> | ||||
|         <item quantity="other">%d hari</item> | ||||
|     </plurals> | ||||
| </resources> | ||||
| @@ -314,9 +314,6 @@ | ||||
|     <string name="lock_when_idle">Kunci saat diam</string> | ||||
|     <string name="lock_always">Selalu</string> | ||||
|     <string name="lock_never">Tidak pernah</string> | ||||
|     <plurals name="lock_after_mins"> | ||||
|         <item quantity="other">Setelah %1$s menit</item> | ||||
|     </plurals> | ||||
|     <string name="ext_updates_pending">Pembaruan tertunda</string> | ||||
|     <string name="pref_cutout_short">Tampilkan konten di area yang terpotong</string> | ||||
|     <string name="secure_screen_summary">Sembunyikan konten aplikasi saat berpindah aplikasi dan blokir tangkapan layar</string> | ||||
| @@ -335,26 +332,14 @@ | ||||
|     <string name="secure_screen">Amankan layar</string> | ||||
|     <string name="logout_title">Keluar dari %1$s\?</string> | ||||
|     <string name="pref_category_display">Tampilan</string> | ||||
|     <plurals name="notification_chapters_generic"> | ||||
|         <item quantity="other">%1$d bab baru</item> | ||||
|     </plurals> | ||||
|     <string name="notification_chapters_single">Bab %1$s</string> | ||||
|     <string name="notification_chapters_single_and_more">Bab %1$s dan %2$d lainnya</string> | ||||
|     <string name="notification_chapters_multiple">Bab %1$s</string> | ||||
|     <plurals name="notification_chapters_multiple_and_more"> | ||||
|         <item quantity="other">Bab %1$s dan %2$d lainnya</item> | ||||
|     </plurals> | ||||
|     <string name="pref_disable_battery_optimization_summary">Membantu pembaruan pustaka dan pencadangan di latar belakang</string> | ||||
|     <plurals name="notification_new_chapters_summary"> | ||||
|         <item quantity="other">Untuk entri %d</item> | ||||
|     </plurals> | ||||
|     <string name="label_sources">Sumber</string> | ||||
|     <string name="channel_ext_updates">Pembaruan ekstensi</string> | ||||
|     <string name="pref_category_reading">Membaca</string> | ||||
|     <string name="information_webview_required">WebView diperlukan agar aplikasi dapat berfungsi</string> | ||||
|     <plurals name="update_check_notification_ext_updates"> | ||||
|         <item quantity="other">Terdapat %d perbaruan ekstensi</item> | ||||
|     </plurals> | ||||
|     <string name="recent_manga_time">Bab %1$s - %2$s</string> | ||||
|     <string name="updating_library">Memperbarui pustaka</string> | ||||
|     <string name="add_tracking">Tambahkan pelacak</string> | ||||
| @@ -376,9 +361,6 @@ | ||||
|     <string name="vertical_plus_viewer">Strip panjang dengan celah</string> | ||||
|     <string name="local_source_help_guide">Petunjuk sumber lokal</string> | ||||
|     <string name="last_used_source">Terakhir digunakan</string> | ||||
|     <plurals name="download_queue_summary"> | ||||
|         <item quantity="other">%1$s lagi</item> | ||||
|     </plurals> | ||||
|     <string name="downloaded_only_summary">Saring semua entri di perpustakaan Anda</string> | ||||
|     <string name="check_for_updates">Periksa pembaruan</string> | ||||
|     <string name="restoring_backup_canceled">Pemulihan dibatalkan</string> | ||||
| @@ -387,16 +369,10 @@ | ||||
|     <string name="restore_duration">%02d menit, %02d detik</string> | ||||
|     <string name="viewer">Mode membaca</string> | ||||
|     <string name="pref_true_color_summary">Mengurangi banding, namun berdampak pada performa</string> | ||||
|     <plurals name="num_categories"> | ||||
|         <item quantity="other">%d kategori</item> | ||||
|     </plurals> | ||||
|     <string name="gray_background">Abu-abu</string> | ||||
|     <string name="pref_category_for_this_series">Untuk seri ini</string> | ||||
|     <string name="battery_optimization_setting_activity_not_found">Tidak dapat membuka pengaturan perangkat</string> | ||||
|     <string name="pref_refresh_library_covers">Muat ulang sampul pustaka</string> | ||||
|     <plurals name="restore_completed_message"> | ||||
|         <item quantity="other">Selesai dalam %1$s dengan %2$s kesalahan</item> | ||||
|     </plurals> | ||||
|     <string name="tracking_info">Sinkronisasi satu arah untuk memperbarui kemajuan bab di layanan pelacak eksternal. Siapkan pelacakan untuk setiap entri dari tombol pelacaknya.</string> | ||||
|     <string name="unofficial_extension_message">Ekstensi ini bukan dari daftar resmi.</string> | ||||
|     <string name="ext_unofficial">Tidak resmi</string> | ||||
| @@ -418,9 +394,6 @@ | ||||
|     <string name="pref_show_reading_mode">Tampilkan mode membaca</string> | ||||
|     <string name="action_start">Mulai</string> | ||||
|     <string name="loader_not_implemented_error">Sumber tidak ditemukan</string> | ||||
|     <plurals name="manga_num_chapters"> | ||||
|         <item quantity="other">%1$s bab</item> | ||||
|     </plurals> | ||||
|     <string name="requires_app_restart">Mulai ulang aplikasi untuk menerapkan pengaturan</string> | ||||
|     <string name="label_network">Jaringan</string> | ||||
|     <string name="action_disable">Matikan</string> | ||||
| @@ -438,9 +411,6 @@ | ||||
|     <string name="pref_category_reading_mode">Mode membaca</string> | ||||
|     <string name="pref_category_theme">Tema</string> | ||||
|     <string name="action_sort_date_added">Tanggal ditambahkan</string> | ||||
|     <plurals name="num_trackers"> | ||||
|         <item quantity="other">%d pelacak</item> | ||||
|     </plurals> | ||||
|     <string name="no_pinned_sources">Anda tidak memiliki sumber yang disematkan</string> | ||||
|     <string name="channel_complete">Lengkap</string> | ||||
|     <string name="channel_progress">Kemajuan</string> | ||||
| @@ -451,9 +421,6 @@ | ||||
|     <string name="pref_remove_bookmarked_chapters">Hapus bab yang ditandai</string> | ||||
|     <string name="pref_category_delete_chapters">Hapus bab</string> | ||||
|     <string name="parental_controls_info">Hal ini tidak mencegah ekstensi yang tidak resmi atau berpotensi salah ditandai untuk menampilkan konten NSFW (18+) di dalam aplikasi.</string> | ||||
|     <plurals name="missing_chapters_warning"> | ||||
|         <item quantity="other">Melewati %d bab, entah sumbernya hilang atau telah difilter</item> | ||||
|     </plurals> | ||||
|     <string name="no_chapters_error">Tidak ada bab yang ditemukan</string> | ||||
|     <string name="chapter_settings_updated">Pengaturan bab bawaan diperbarui</string> | ||||
|     <string name="set_chapter_settings_as_default">Tetapkan sebagai bawaan</string> | ||||
| @@ -563,9 +530,6 @@ | ||||
|     <string name="pref_high">Tinggi</string> | ||||
|     <string name="pref_highest">Tertinggi</string> | ||||
|     <string name="pref_inverted_colors">Terbalik</string> | ||||
|     <plurals name="relative_time"> | ||||
|         <item quantity="other">%1$d hari yang lalu</item> | ||||
|     </plurals> | ||||
|     <string name="relative_time_today">Hari Ini</string> | ||||
|     <string name="getting_started_guide">Panduan awal mulai</string> | ||||
|     <string name="action_track">Lacak</string> | ||||
| @@ -672,9 +636,6 @@ | ||||
|     <string name="theme_tidalwave">Gelombang pasang</string> | ||||
|     <string name="download_ahead">Unduh di depan</string> | ||||
|     <string name="auto_download_while_reading">Unduh otomatis ketika sedang membaca</string> | ||||
|     <plurals name="next_unread_chapters"> | ||||
|         <item quantity="other">Selanjutnya chapter %d yang belum dibaca</item> | ||||
|     </plurals> | ||||
|     <string name="download_ahead_info">Hanya berfungsi jika bab saat ini + bab berikutnya sudah diunduh.</string> | ||||
|     <string name="remove_manga">Kamu akan menghapus \"%s\" dari pustaka</string> | ||||
|     <string name="updates_last_update_info">Pustaka terakhir diperbarui: %s</string> | ||||
| @@ -743,27 +704,18 @@ | ||||
|     <string name="track_error">%1$seror%2$s</string> | ||||
|     <string name="information_required_plain">*dibutuhkan</string> | ||||
|     <string name="pref_hide_in_library_items">Semua catatan tersembunyi sudah ada di perpustakaan</string> | ||||
|     <plurals name="download_amount"> | ||||
|         <item quantity="other">berikutnya %d chapter</item> | ||||
|     </plurals> | ||||
|     <string name="action_copy_to_clipboard">Salin ke papan klip</string> | ||||
|     <string name="action_update_category">Perbarui kategori</string> | ||||
|     <string name="split_tall_images">Potong gambar tinggi</string> | ||||
|     <string name="overlay_header">Lapisan awal</string> | ||||
|     <string name="pref_page_rotate">Memutar halaman lebar agar pas</string> | ||||
|     <string name="pref_page_rotate_invert">Orientasi balik halaman lebar yang diputar</string> | ||||
|     <plurals name="missing_chapters"> | ||||
|         <item quantity="other">Bab %1$s yang hilang</item> | ||||
|     </plurals> | ||||
|     <string name="pref_debug_info">Info debug</string> | ||||
|     <string name="pref_chapter_swipe">Geser chapter</string> | ||||
|     <string name="pref_chapter_swipe_end">Geser kekanan</string> | ||||
|     <string name="pref_chapter_swipe_start">Geser kekiri</string> | ||||
|     <string name="pref_double_tap_zoom">Ketuk dua kali untuk memperbesar</string> | ||||
|     <string name="pref_library_columns_per_row">%d per baris</string> | ||||
|     <plurals name="day"> | ||||
|         <item quantity="other">%d hari</item> | ||||
|     </plurals> | ||||
|     <string name="action_set_interval">Tetapkan jeda waktu</string> | ||||
|     <string name="action_filter_interval_custom">Interval pengambilan disesuaikan</string> | ||||
|     <string name="action_filter_interval_long">Ambil bulanan (28 hari)</string> | ||||
							
								
								
									
										83
									
								
								i18n/src/commonMain/resources/MR/it/plurals.xml
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										83
									
								
								i18n/src/commonMain/resources/MR/it/plurals.xml
									
									
									
									
									
										Normal file
									
								
							| @@ -0,0 +1,83 @@ | ||||
| <?xml version="1.0" encoding="utf-8"?> | ||||
| <resources> | ||||
|     <plurals name="lock_after_mins"> | ||||
|         <item quantity="one">Dopo %1$s minuto</item> | ||||
|         <item quantity="many">Dopo %1$s minuti</item> | ||||
|         <item quantity="other">Dopo %1$s minuti</item> | ||||
|     </plurals> | ||||
|     <plurals name="update_check_notification_ext_updates"> | ||||
|         <item quantity="one">Aggiornamento estensione disponibile</item> | ||||
|         <item quantity="many">%d estensioni hanno aggiornamenti disponibili</item> | ||||
|         <item quantity="other">%d estensioni hanno aggiornamenti disponibili</item> | ||||
|     </plurals> | ||||
|     <plurals name="notification_chapters_multiple_and_more"> | ||||
|         <item quantity="one">Capitoli %1$s e un altro</item> | ||||
|         <item quantity="many">Capitoli %1$s e altri %2$d</item> | ||||
|         <item quantity="other">Capitoli %1$s e altri %2$d</item> | ||||
|     </plurals> | ||||
|     <plurals name="notification_chapters_generic"> | ||||
|         <item quantity="one">%1$d nuovo capitolo</item> | ||||
|         <item quantity="many">%1$d nuovi capitoli</item> | ||||
|         <item quantity="other">%1$d nuovi capitoli</item> | ||||
|     </plurals> | ||||
|     <plurals name="notification_new_chapters_summary"> | ||||
|         <item quantity="one">Per %d voce</item> | ||||
|         <item quantity="many">Per %d voci</item> | ||||
|         <item quantity="other">Per %d voci</item> | ||||
|     </plurals> | ||||
|     <plurals name="download_queue_summary"> | ||||
|         <item quantity="one">%1$s rimanente</item> | ||||
|         <item quantity="many">%1$s rimanenti</item> | ||||
|         <item quantity="other">%1$s rimanenti</item> | ||||
|     </plurals> | ||||
|     <plurals name="restore_completed_message"> | ||||
|         <item quantity="one">Completato in %1$s con %2$s errore</item> | ||||
|         <item quantity="many">Completato in %1$s con %2$s errori</item> | ||||
|         <item quantity="other">Completato in %1$s con %2$s errori</item> | ||||
|     </plurals> | ||||
|     <plurals name="num_categories"> | ||||
|         <item quantity="one">%d categoria</item> | ||||
|         <item quantity="many">%d categorie</item> | ||||
|         <item quantity="other">%d categorie</item> | ||||
|     </plurals> | ||||
|     <plurals name="manga_num_chapters"> | ||||
|         <item quantity="one">%1$s capitolo</item> | ||||
|         <item quantity="many">%1$s capitoli</item> | ||||
|         <item quantity="other">%1$s capitoli</item> | ||||
|     </plurals> | ||||
|     <plurals name="num_trackers"> | ||||
|         <item quantity="one">%d tracker</item> | ||||
|         <item quantity="many">%d trackers</item> | ||||
|         <item quantity="other">%d trackers</item> | ||||
|     </plurals> | ||||
|     <plurals name="missing_chapters_warning"> | ||||
|         <item quantity="one">%d capitolo saltato, la fonte non ce l\'ha o è stato filtrato</item> | ||||
|         <item quantity="many">%d capitoli saltati, la fonte non li ha o sono stati filtrati</item> | ||||
|         <item quantity="other">%d capitoli saltati, la fonte non li ha o sono stati filtrati</item> | ||||
|     </plurals> | ||||
|     <plurals name="relative_time"> | ||||
|         <item quantity="one">Ieri</item> | ||||
|         <item quantity="many">%1$d giorni fa</item> | ||||
|         <item quantity="other">%1$d giorni fa</item> | ||||
|     </plurals> | ||||
|     <plurals name="next_unread_chapters"> | ||||
|         <item quantity="one">Il prossimo capitolo non letto</item> | ||||
|         <item quantity="many">I prossimi %d capitoli non letti</item> | ||||
|         <item quantity="other">I prossimi %d capitoli non letti</item> | ||||
|     </plurals> | ||||
|     <plurals name="download_amount"> | ||||
|         <item quantity="one">Prossimo capitolo</item> | ||||
|         <item quantity="many">Prossimo %d capitoli</item> | ||||
|         <item quantity="other">Prossimo %d capitoli</item> | ||||
|     </plurals> | ||||
|     <plurals name="missing_chapters"> | ||||
|         <item quantity="one">Manca %1$s capitolo</item> | ||||
|         <item quantity="many">Mancano %1$s capitoli</item> | ||||
|         <item quantity="other">Mancano %1$s capitoli</item> | ||||
|     </plurals> | ||||
|     <plurals name="day"> | ||||
|         <item quantity="one">Un giorno</item> | ||||
|         <item quantity="many">%d giorni</item> | ||||
|         <item quantity="other">%d giorni</item> | ||||
|     </plurals> | ||||
| </resources> | ||||
| @@ -1,14 +1,12 @@ | ||||
| <?xml version="1.0" encoding="utf-8"?> | ||||
| <resources> | ||||
|     <string name="name">Nome</string> | ||||
|     <!-- Activities and fragments labels (toolbar title) --> | ||||
|     <string name="label_settings">Impostazioni</string> | ||||
|     <string name="label_download_queue">Coda download</string> | ||||
|     <string name="label_library">Libreria</string> | ||||
|     <string name="label_recent_manga">Cronologia</string> | ||||
|     <string name="label_recent_updates">Novità</string> | ||||
|     <string name="label_backup">Backup e ripristino</string> | ||||
|     <!-- Actions --> | ||||
|     <string name="action_settings">Impostazioni</string> | ||||
|     <string name="action_filter">Filtro</string> | ||||
|     <string name="action_filter_bookmarked">Segnalibri</string> | ||||
| @@ -48,16 +46,12 @@ | ||||
|     <string name="action_install">Installa</string> | ||||
|     <string name="action_share">Condividi</string> | ||||
|     <string name="action_save">Salva</string> | ||||
|     <!-- Operations --> | ||||
|     <string name="loading">Caricamento…</string> | ||||
|     <!-- Preferences --> | ||||
|     <!-- Subsections --> | ||||
|     <string name="pref_category_general">Generale</string> | ||||
|     <string name="pref_category_reader">Lettore</string> | ||||
|     <string name="pref_category_downloads">Download</string> | ||||
|     <string name="pref_category_advanced">Avanzate</string> | ||||
|     <string name="pref_category_about">Info</string> | ||||
|     <!-- General section --> | ||||
|     <string name="pref_library_columns">Dimensione della griglia</string> | ||||
|     <string name="portrait">Verticale</string> | ||||
|     <string name="landscape">Orizzontale</string> | ||||
| @@ -72,7 +66,6 @@ | ||||
|     <string name="charging">Quando si carica</string> | ||||
|     <string name="pref_update_only_non_completed">Con stato «Completata»</string> | ||||
|     <string name="pref_auto_update_manga_sync">Aggiorna il tracking dopo la lettura</string> | ||||
|     <!-- Reader section --> | ||||
|     <string name="pref_fullscreen">Schermo Intero</string> | ||||
|     <string name="pref_page_transitions">Animare le transizioni di pagina</string> | ||||
|     <string name="pref_show_page_number">Mostra numero pagina</string> | ||||
| @@ -109,7 +102,6 @@ | ||||
|     <string name="color_filter_g_value">G</string> | ||||
|     <string name="color_filter_b_value">B</string> | ||||
|     <string name="color_filter_a_value">A</string> | ||||
|     <!-- Downloads section --> | ||||
|     <string name="pref_download_directory">Posizione dei download</string> | ||||
|     <string name="pref_remove_after_marked_as_read">Dopo averli contrassegnati manualmente come letti</string> | ||||
|     <string name="pref_remove_after_read">Cancella automaticamente dopo la lettura</string> | ||||
| @@ -121,9 +113,7 @@ | ||||
|     <string name="fourth_to_last">Quartultimo capitolo letto</string> | ||||
|     <string name="fifth_to_last">Quintultimo capitolo letto</string> | ||||
|     <string name="pref_download_new">Scarica nuovi capitoli</string> | ||||
|     <!-- Sync section --> | ||||
|     <string name="services">Servizi di tracking</string> | ||||
|     <!-- Advanced section --> | ||||
|     <string name="pref_clear_chapter_cache">Cancella cache capitoli</string> | ||||
|     <string name="used_cache">Usati: %1$s</string> | ||||
|     <string name="cache_deleted">Cache cancellata. %1$d file sono stati cancellati</string> | ||||
| @@ -134,28 +124,20 @@ | ||||
|     <string name="pref_clear_database_summary">Elimina la cronologia delle voci che non sono presenti nella libreria</string> | ||||
|     <string name="clear_database_confirmation">Sei sicuro\? I capitoli letti e i progressi di lettura di voci fuori dalla libreria verranno persi</string> | ||||
|     <string name="clear_database_completed">Elementi eliminati</string> | ||||
|     <!-- About section --> | ||||
|     <string name="version">Versione</string> | ||||
|     <!-- ACRA --> | ||||
|     <string name="pref_enable_acra">Invia segnalazioni crash</string> | ||||
|     <string name="pref_acra_summary">Aiuta a correggere eventuali bug. Non verranno inviati dati sensibili</string> | ||||
|     <!-- Login dialog --> | ||||
|     <string name="login_title">Accedi a %1$s</string> | ||||
|     <string name="username">Nome utente</string> | ||||
|     <string name="password">Password</string> | ||||
|     <string name="login">Accedi</string> | ||||
|     <string name="login_success">Accesso riuscito</string> | ||||
|     <string name="unknown_error">Errore sconosciuto</string> | ||||
|     <!-- Library fragment --> | ||||
|     <string name="updating_category">Aggiornamento categoria</string> | ||||
|     <!-- Catalogue fragment --> | ||||
|     <!-- Manga activity --> | ||||
|     <!-- Manga info fragment --> | ||||
|     <string name="ongoing">In corso</string> | ||||
|     <string name="unknown">Sconosciuto</string> | ||||
|     <string name="licensed">Concesso in licenza</string> | ||||
|     <string name="remove_from_library">Rimuovi dalla libreria</string> | ||||
|     <!-- Manga chapters fragment --> | ||||
|     <string name="display_mode_chapter">Capitolo %1$s</string> | ||||
|     <string name="chapter_downloading_progress">Scaricando (%1$d/%2$d)</string> | ||||
|     <string name="chapter_error">Errore</string> | ||||
| @@ -166,7 +148,6 @@ | ||||
|     <string name="manga_download">Scarica</string> | ||||
|     <string name="download_unread">Non letti</string> | ||||
|     <string name="confirm_delete_chapters">Sei sicuro di voler eliminare i capitoli selezionati\?</string> | ||||
|     <!-- MyAnimeList fragment --> | ||||
|     <string name="reading">In lettura</string> | ||||
|     <string name="completed">Completato</string> | ||||
|     <string name="dropped">Abbandonato</string> | ||||
| @@ -176,14 +157,10 @@ | ||||
|     <string name="title">Titolo</string> | ||||
|     <string name="status">Stato</string> | ||||
|     <string name="chapters">Capitoli</string> | ||||
|     <!-- Category activity --> | ||||
|     <string name="error_category_exists">Esiste già una categoria con questo nome!</string> | ||||
|     <!-- Dialog remove recently view --> | ||||
|     <string name="dialog_with_checkbox_remove_description">Questo rimuoverà la data lettura di questo capitolo. Sei sicuro\?</string> | ||||
|     <string name="dialog_with_checkbox_reset">Reimposta tutti i capitoli di questa voce</string> | ||||
|     <!-- Image notifier --> | ||||
|     <string name="picture_saved">Immagine salvata</string> | ||||
|     <!-- Reader activity --> | ||||
|     <string name="custom_filter">Filtro personalizzato</string> | ||||
|     <string name="set_as_cover">Imposta come copertina</string> | ||||
|     <string name="cover_updated">Copertina aggiornata</string> | ||||
| @@ -191,32 +168,22 @@ | ||||
|     <string name="no_next_chapter">Capitolo successivo non trovato</string> | ||||
|     <string name="decode_image_error">Non è stato possibile caricare l\'immagine</string> | ||||
|     <string name="confirm_set_image_as_cover">Usare questa immagine come copertina\?</string> | ||||
|     <!-- Backup fragment --> | ||||
|     <!-- Recent manga fragment --> | ||||
|     <!-- Downloads activity and service --> | ||||
|     <string name="download_queue_error">Impossibile scaricare i capitoli. Puoi riprovare nella sezione download</string> | ||||
|     <!-- Library update service notifications --> | ||||
|     <string name="notification_new_chapters">Nuovi capitoli trovati</string> | ||||
|     <string name="notification_cover_update_failed">Impossibile aggiornare la copertina</string> | ||||
|     <string name="notification_first_add_to_library">Prima di compiere questa azione per favore aggiungi la voce alla libreria</string> | ||||
|     <!-- File Picker Titles --> | ||||
|     <string name="file_select_cover">Seleziona immagine di copertina</string> | ||||
|     <string name="file_select_backup">Seleziona file di backup</string> | ||||
|     <!--UpdateCheck--> | ||||
|     <string name="update_check_confirm">Scarica</string> | ||||
|     <string name="update_check_no_new_updates">Non ci sono nuovi aggiornamenti disponibili</string> | ||||
|     <!--UpdateCheck Notifications--> | ||||
|     <string name="update_check_notification_download_in_progress">Download in corso…</string> | ||||
|     <string name="update_check_notification_download_complete">Tocca per installare l\'aggiornamento</string> | ||||
|     <string name="update_check_notification_download_error">Errore di scaricamento</string> | ||||
|     <string name="update_check_notification_update_available">Nuova versione disponibile!</string> | ||||
|     <!--Content Description--> | ||||
|     <!-- Information Text --> | ||||
|     <string name="information_no_downloads">Nessun download</string> | ||||
|     <string name="information_no_recent">Nessuna novità recente</string> | ||||
|     <string name="information_no_recent_manga">Nessuna lettura recente</string> | ||||
|     <string name="information_empty_library">La tua libreria è vuota</string> | ||||
|     <!-- Download Notification --> | ||||
|     <string name="download_notifier_downloader_title">Gestione Download</string> | ||||
|     <string name="download_notifier_title_error">Errore</string> | ||||
|     <string name="download_notifier_unknown_error">Impossibile scaricare il capitolo a causa di un errore imprevisto</string> | ||||
| @@ -348,11 +315,6 @@ | ||||
|     <string name="lock_when_idle">Blocca quando inattivo</string> | ||||
|     <string name="lock_always">Sempre</string> | ||||
|     <string name="lock_never">Mai</string> | ||||
|     <plurals name="lock_after_mins"> | ||||
|         <item quantity="one">Dopo %1$s minuto</item> | ||||
|         <item quantity="many">Dopo %1$s minuti</item> | ||||
|         <item quantity="other">Dopo %1$s minuti</item> | ||||
|     </plurals> | ||||
|     <string name="secure_screen">Schermo sicuro</string> | ||||
|     <string name="ext_updates_pending">Aggiornamenti in sospeso</string> | ||||
|     <string name="pref_cutout_short">Mostra il contenuto dell\'area ritagliata</string> | ||||
| @@ -362,29 +324,9 @@ | ||||
|     <string name="secure_screen_summary">Schermo sicuro nasconde i contenuti dell\'app quando cambi applicazione e blocca gli screenshot</string> | ||||
|     <string name="pref_category_display">Visualizzazione</string> | ||||
|     <string name="channel_ext_updates">Aggiornamenti estensione</string> | ||||
|     <plurals name="update_check_notification_ext_updates"> | ||||
|         <item quantity="one">Aggiornamento estensione disponibile</item> | ||||
|         <item quantity="many">%d estensioni hanno aggiornamenti disponibili</item> | ||||
|         <item quantity="other">%d estensioni hanno aggiornamenti disponibili</item> | ||||
|     </plurals> | ||||
|     <plurals name="notification_chapters_multiple_and_more"> | ||||
|         <item quantity="one">Capitoli %1$s e un altro</item> | ||||
|         <item quantity="many">Capitoli %1$s e altri %2$d</item> | ||||
|         <item quantity="other">Capitoli %1$s e altri %2$d</item> | ||||
|     </plurals> | ||||
|     <string name="notification_chapters_multiple">Capitoli %1$s</string> | ||||
|     <string name="notification_chapters_single_and_more">Capitolo %1$s e altri %2$d</string> | ||||
|     <string name="notification_chapters_single">Capitolo %1$s</string> | ||||
|     <plurals name="notification_chapters_generic"> | ||||
|         <item quantity="one">%1$d nuovo capitolo</item> | ||||
|         <item quantity="many">%1$d nuovi capitoli</item> | ||||
|         <item quantity="other">%1$d nuovi capitoli</item> | ||||
|     </plurals> | ||||
|     <plurals name="notification_new_chapters_summary"> | ||||
|         <item quantity="one">Per %d voce</item> | ||||
|         <item quantity="many">Per %d voci</item> | ||||
|         <item quantity="other">Per %d voci</item> | ||||
|     </plurals> | ||||
|     <string name="notification_check_updates">Cercando nuovi capitoli</string> | ||||
|     <string name="email">Indirizzo e-mail</string> | ||||
|     <string name="battery_optimization_disabled">Ottimizzazione batteria già disattivata</string> | ||||
| @@ -426,28 +368,13 @@ | ||||
|     <string name="pref_category_for_this_series">Per questa serie</string> | ||||
|     <string name="local_source_help_guide">Guida alle fonti locali</string> | ||||
|     <string name="last_used_source">Ultimo usato</string> | ||||
|     <plurals name="download_queue_summary"> | ||||
|         <item quantity="one">%1$s rimanente</item> | ||||
|         <item quantity="many">%1$s rimanenti</item> | ||||
|         <item quantity="other">%1$s rimanenti</item> | ||||
|     </plurals> | ||||
|     <string name="downloaded_only_summary">Filtra tutte le voci nella tua libreria</string> | ||||
|     <string name="check_for_updates">Controlla aggiornamenti</string> | ||||
|     <string name="battery_optimization_setting_activity_not_found">Impossibile aprire le impostazioni del dispositivo</string> | ||||
|     <string name="pref_refresh_library_covers">Aggiorna le copertine della libreria</string> | ||||
|     <plurals name="restore_completed_message"> | ||||
|         <item quantity="one">Completato in %1$s con %2$s errore</item> | ||||
|         <item quantity="many">Completato in %1$s con %2$s errori</item> | ||||
|         <item quantity="other">Completato in %1$s con %2$s errori</item> | ||||
|     </plurals> | ||||
|     <string name="restore_duration">%02d min, %02d sec</string> | ||||
|     <string name="tracking_info">Sincronizzazione a senso unico per aggiornare l\'avanzamento dei capitoli sui servizi di tracking. Imposta il tracking per le singole voci dai loro pulsanti di tracking.</string> | ||||
|     <string name="pref_true_color_summary">Riduce il banding, ma potrebbe influire sulle prestazioni</string> | ||||
|     <plurals name="num_categories"> | ||||
|         <item quantity="one">%d categoria</item> | ||||
|         <item quantity="many">%d categorie</item> | ||||
|         <item quantity="other">%d categorie</item> | ||||
|     </plurals> | ||||
|     <string name="gray_background">Grigio</string> | ||||
|     <string name="page_list_empty_error">Nessuna pagina trovata</string> | ||||
|     <string name="sort_by_upload_date">Per data di aggiunta</string> | ||||
| @@ -471,11 +398,6 @@ | ||||
|     <string name="tapping_inverted_none">Nessuno</string> | ||||
|     <string name="pref_read_with_tapping_inverted">Inverti le zone di tocco</string> | ||||
|     <string name="loader_not_implemented_error">Fonte non trovata</string> | ||||
|     <plurals name="manga_num_chapters"> | ||||
|         <item quantity="one">%1$s capitolo</item> | ||||
|         <item quantity="many">%1$s capitoli</item> | ||||
|         <item quantity="other">%1$s capitoli</item> | ||||
|     </plurals> | ||||
|     <string name="unknown_status">Stato sconosciuto</string> | ||||
|     <string name="unknown_author">Autore sconosciuto</string> | ||||
|     <string name="updated_version">Aggiornato alla v%1$s</string> | ||||
| @@ -491,11 +413,6 @@ | ||||
|     <string name="pref_category_reading_mode">Modalità di lettura</string> | ||||
|     <string name="pref_category_theme">Tema</string> | ||||
|     <string name="action_sort_date_added">Data di aggiunta</string> | ||||
|     <plurals name="num_trackers"> | ||||
|         <item quantity="one">%d tracker</item> | ||||
|         <item quantity="many">%d trackers</item> | ||||
|         <item quantity="other">%d trackers</item> | ||||
|     </plurals> | ||||
|     <string name="channel_progress">Progresso</string> | ||||
|     <string name="channel_errors">Errori</string> | ||||
|     <string name="channel_complete">Completo</string> | ||||
| @@ -504,11 +421,6 @@ | ||||
|     <string name="pref_category_delete_chapters">Elimina capitoli</string> | ||||
|     <string name="ext_nsfw_warning">Fonti di questa estensione potrebbero contenere materiale NSFW (18+)</string> | ||||
|     <string name="ext_nsfw_short">18+</string> | ||||
|     <plurals name="missing_chapters_warning"> | ||||
|         <item quantity="one">%d capitolo saltato, la fonte non ce l\'ha o è stato filtrato</item> | ||||
|         <item quantity="many">%d capitoli saltati, la fonte non li ha o sono stati filtrati</item> | ||||
|         <item quantity="other">%d capitoli saltati, la fonte non li ha o sono stati filtrati</item> | ||||
|     </plurals> | ||||
|     <string name="backup_restore_missing_trackers">Tracker non collegati:</string> | ||||
|     <string name="no_chapters_error">Nessun capitolo trovato</string> | ||||
|     <string name="parental_controls_info">Questo non impedisce a estensioni non ufficiali oppure incorrettamente segnalate di mostrare contenuti 18+ all\'interno dell\'applicazione.</string> | ||||
| @@ -607,11 +519,6 @@ | ||||
|     <string name="pref_highest">Più alto</string> | ||||
|     <string name="pref_hide_threshold">Sensibilità per nascondere il menù allo scorrimento</string> | ||||
|     <string name="pref_inverted_colors">Inversa</string> | ||||
|     <plurals name="relative_time"> | ||||
|         <item quantity="one">Ieri</item> | ||||
|         <item quantity="many">%1$d giorni fa</item> | ||||
|         <item quantity="other">%1$d giorni fa</item> | ||||
|     </plurals> | ||||
|     <string name="relative_time_today">Oggi</string> | ||||
|     <string name="pref_dark_theme_pure_black">Modalità scura con nero puro</string> | ||||
|     <string name="theme_yotsuba">Yotsuba</string> | ||||
| @@ -728,11 +635,6 @@ | ||||
|     <string name="error_user_agent_string_blank">La sringa «user agent» non può essere vuota</string> | ||||
|     <string name="theme_tidalwave">Maremoto</string> | ||||
|     <string name="download_ahead">Scarica i prossimi</string> | ||||
|     <plurals name="next_unread_chapters"> | ||||
|         <item quantity="one">Il prossimo capitolo non letto</item> | ||||
|         <item quantity="many">I prossimi %d capitoli non letti</item> | ||||
|         <item quantity="other">I prossimi %d capitoli non letti</item> | ||||
|     </plurals> | ||||
|     <string name="auto_download_while_reading">Download automatico durante la lettura</string> | ||||
|     <string name="download_ahead_info">Funziona se il capitolo corrente e quello successivo sono già stati scaricati.</string> | ||||
|     <string name="are_you_sure">Sei sicuro\?</string> | ||||
| @@ -801,11 +703,6 @@ | ||||
| \nVuoi comunque continuare\?</string> | ||||
|     <string name="track_error">%1$s errore: %2$s</string> | ||||
|     <string name="information_required_plain">*obbligatorio</string> | ||||
|     <plurals name="download_amount"> | ||||
|         <item quantity="one">Prossimo capitolo</item> | ||||
|         <item quantity="many">Prossimo %d capitoli</item> | ||||
|         <item quantity="other">Prossimo %d capitoli</item> | ||||
|     </plurals> | ||||
|     <string name="pref_hide_in_library_items">Nascondi le voci già in libreria</string> | ||||
|     <string name="action_copy_to_clipboard">Copia negli appunti</string> | ||||
|     <string name="action_update_category">Aggiorna categoria</string> | ||||
| @@ -813,11 +710,6 @@ | ||||
|     <string name="overlay_header">Sovrimpressione</string> | ||||
|     <string name="pref_page_rotate">Ruota le pagine larghe per adattarle allo schermo</string> | ||||
|     <string name="pref_page_rotate_invert">Capovolgi l\'orientamento delle pagine larghe ruotate</string> | ||||
|     <plurals name="missing_chapters"> | ||||
|         <item quantity="one">Manca %1$s capitolo</item> | ||||
|         <item quantity="many">Mancano %1$s capitoli</item> | ||||
|         <item quantity="other">Mancano %1$s capitoli</item> | ||||
|     </plurals> | ||||
|     <string name="pref_debug_info">Informazioni di debug</string> | ||||
|     <string name="pref_chapter_swipe">Scorrimento capitolo</string> | ||||
|     <string name="pref_double_tap_zoom">Doppio tocco per ingrandire</string> | ||||
| @@ -830,11 +722,6 @@ | ||||
|     <string name="pref_update_only_in_release_period">Fuori dal periodo di rilascio previsto</string> | ||||
|     <string name="manga_modify_calculated_interval_title">Personalizza intervallo</string> | ||||
|     <string name="intervals_header">Intervalli</string> | ||||
|     <plurals name="day"> | ||||
|         <item quantity="one">Un giorno</item> | ||||
|         <item quantity="many">%d giorni</item> | ||||
|         <item quantity="other">%d giorni</item> | ||||
|     </plurals> | ||||
|     <string name="manga_display_interval_title">Stima ogni</string> | ||||
|     <string name="action_filter_interval_custom">Intervallo di recupero personalizzato</string> | ||||
|     <string name="action_filter_interval_passed">Periodo di controllo superato</string> | ||||
							
								
								
									
										51
									
								
								i18n/src/commonMain/resources/MR/ja/plurals.xml
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										51
									
								
								i18n/src/commonMain/resources/MR/ja/plurals.xml
									
									
									
									
									
										Normal file
									
								
							| @@ -0,0 +1,51 @@ | ||||
| <?xml version="1.0" encoding="utf-8"?> | ||||
| <resources> | ||||
|     <plurals name="lock_after_mins"> | ||||
|         <item quantity="other">%1$s分後</item> | ||||
|     </plurals> | ||||
|     <plurals name="notification_chapters_generic"> | ||||
|         <item quantity="other">%1$d新しい章</item> | ||||
|     </plurals> | ||||
|     <plurals name="download_queue_summary"> | ||||
|         <item quantity="other">残り%1$s件</item> | ||||
|     </plurals> | ||||
|     <plurals name="restore_completed_message"> | ||||
|         <item quantity="other">%1$sで完成済み %2$s件のエラーが発生しました</item> | ||||
|     </plurals> | ||||
|     <plurals name="num_categories"> | ||||
|         <item quantity="other">%d件のカテゴリー</item> | ||||
|     </plurals> | ||||
|     <plurals name="update_check_notification_ext_updates"> | ||||
|         <item quantity="other">%d件の拡張機能の更新が利用可能</item> | ||||
|     </plurals> | ||||
|     <plurals name="notification_chapters_multiple_and_more"> | ||||
|         <item quantity="other">第%1$s章とその他%2$d章</item> | ||||
|     </plurals> | ||||
|     <plurals name="notification_new_chapters_summary"> | ||||
|         <item quantity="other">%d件の項目</item> | ||||
|     </plurals> | ||||
|     <plurals name="manga_num_chapters"> | ||||
|         <item quantity="other">%1$s章</item> | ||||
|     </plurals> | ||||
|     <plurals name="num_trackers"> | ||||
|         <item quantity="other">%d個のトラッカー</item> | ||||
|     </plurals> | ||||
|     <plurals name="missing_chapters_warning"> | ||||
|         <item quantity="other">ソースには存在しないか、フィルターによって排除されたため、%d章がスキップされました</item> | ||||
|     </plurals> | ||||
|     <plurals name="relative_time"> | ||||
|         <item quantity="other">%1$d日前</item> | ||||
|     </plurals> | ||||
|     <plurals name="next_unread_chapters"> | ||||
|         <item quantity="other">次の未読の%d章</item> | ||||
|     </plurals> | ||||
|     <plurals name="download_amount"> | ||||
|         <item quantity="other">次の%d章</item> | ||||
|     </plurals> | ||||
|     <plurals name="missing_chapters"> | ||||
|         <item quantity="other">%1$s章が欠けています</item> | ||||
|     </plurals> | ||||
|     <plurals name="day"> | ||||
|         <item quantity="other">%d日</item> | ||||
|     </plurals> | ||||
| </resources> | ||||
| @@ -310,22 +310,13 @@ | ||||
|     <string name="lock_when_idle">タイムアウトロック</string> | ||||
|     <string name="lock_always">常時</string> | ||||
|     <string name="lock_never">しない</string> | ||||
|     <plurals name="lock_after_mins"> | ||||
|         <item quantity="other">%1$s分後</item> | ||||
|     </plurals> | ||||
|     <string name="secure_screen">セキュア画面</string> | ||||
|     <plurals name="notification_chapters_generic"> | ||||
|         <item quantity="other">%1$d新しい章</item> | ||||
|     </plurals> | ||||
|     <string name="notification_chapters_single">第%1$s章</string> | ||||
|     <string name="action_newest">最新</string> | ||||
|     <string name="label_sources">ソース</string> | ||||
|     <string name="local_source">ローカルソース</string> | ||||
|     <string name="tabs_header">タブ</string> | ||||
|     <string name="email">メールアドレス</string> | ||||
|     <plurals name="download_queue_summary"> | ||||
|         <item quantity="other">残り%1$s件</item> | ||||
|     </plurals> | ||||
|     <string name="downloaded_only_summary">ライブラリにある項目はフィルターされます</string> | ||||
|     <string name="label_downloaded_only">ダウンロード済みのみ</string> | ||||
|     <string name="check_for_updates">更新を確認</string> | ||||
| @@ -342,9 +333,6 @@ | ||||
|     <string name="restore_in_progress">既に復元中です</string> | ||||
|     <string name="creating_backup_error">バックアップできませんでした</string> | ||||
|     <string name="backup_in_progress">既にバックアップ中です</string> | ||||
|     <plurals name="restore_completed_message"> | ||||
|         <item quantity="other">%1$sで完成済み %2$s件のエラーが発生しました</item> | ||||
|     </plurals> | ||||
|     <string name="restore_duration">%02d分%02d秒</string> | ||||
|     <string name="backup_restore_missing_sources">ソースがありません:</string> | ||||
|     <string name="invalid_backup_file_missing_manga">バックアップにはライブラリの項目が含まれません。</string> | ||||
| @@ -364,9 +352,6 @@ | ||||
|     <string name="unofficial_extension_message">この拡張機能は公式リストに含まれていません。</string> | ||||
|     <string name="ext_unofficial">非公式</string> | ||||
|     <string name="ext_updates_pending">更新あり</string> | ||||
|     <plurals name="num_categories"> | ||||
|         <item quantity="other">%d件のカテゴリー</item> | ||||
|     </plurals> | ||||
|     <string name="pref_library_update_refresh_metadata_summary">ライブラリを更新時、新しい表紙と情報を確認します</string> | ||||
|     <string name="pref_library_update_refresh_metadata">メタデータを自動で更新</string> | ||||
|     <string name="pref_library_columns">グリッドの項目数</string> | ||||
| @@ -388,23 +373,14 @@ | ||||
|     <string name="channel_new_chapters">章の更新</string> | ||||
|     <string name="information_webview_outdated">WebViewアプリを更新して互換性を向上させてください</string> | ||||
|     <string name="information_webview_required">WebViewが必要です</string> | ||||
|     <plurals name="update_check_notification_ext_updates"> | ||||
|         <item quantity="other">%d件の拡張機能の更新が利用可能</item> | ||||
|     </plurals> | ||||
|     <string name="notification_check_updates">新しい章を確認中</string> | ||||
|     <string name="updating_library">ライブラリを更新中</string> | ||||
|     <string name="viewer">ビューアモード</string> | ||||
|     <string name="manga_info_collapse">詳細を非表示</string> | ||||
|     <string name="channel_ext_updates">拡張機能の更新</string> | ||||
|     <string name="information_cloudflare_bypass_failure">Cloudflareをバイパスできませんでした</string> | ||||
|     <plurals name="notification_chapters_multiple_and_more"> | ||||
|         <item quantity="other">第%1$s章とその他%2$d章</item> | ||||
|     </plurals> | ||||
|     <string name="notification_chapters_single_and_more">第%1$s章とその他%2$d章</string> | ||||
|     <string name="notification_chapters_multiple">第%1$s章</string> | ||||
|     <plurals name="notification_new_chapters_summary"> | ||||
|         <item quantity="other">%d件の項目</item> | ||||
|     </plurals> | ||||
|     <string name="recent_manga_time">第%1$s章 - %2$s</string> | ||||
|     <string name="page_list_empty_error">ページが見つかりません</string> | ||||
|     <string name="pref_category_for_this_series">このシリーズでは</string> | ||||
| @@ -419,9 +395,6 @@ | ||||
|     <string name="pref_show_reading_mode_summary">現在のビューアモードを、ビューアが立ち上がるとしばらく表示します</string> | ||||
|     <string name="pref_show_reading_mode">ビューアモードを表示</string> | ||||
|     <string name="loader_not_implemented_error">ソースが見つかりませんでした</string> | ||||
|     <plurals name="manga_num_chapters"> | ||||
|         <item quantity="other">%1$s章</item> | ||||
|     </plurals> | ||||
|     <string name="action_disable">無効化</string> | ||||
|     <string name="action_start">開始</string> | ||||
|     <string name="tapping_inverted_both">両方</string> | ||||
| @@ -439,9 +412,6 @@ | ||||
|     <string name="channel_complete">完了</string> | ||||
|     <string name="channel_progress">プログレス</string> | ||||
|     <string name="download_insufficient_space">空き領域不足のため、章をダウンロードできませんでした</string> | ||||
|     <plurals name="num_trackers"> | ||||
|         <item quantity="other">%d個のトラッカー</item> | ||||
|     </plurals> | ||||
|     <string name="no_pinned_sources">ピンソースがありません</string> | ||||
|     <string name="action_global_search_query">グローバルで「%1$s」を探す</string> | ||||
|     <string name="pref_category_theme">テーマ</string> | ||||
| @@ -453,9 +423,6 @@ | ||||
|     <string name="ext_nsfw_warning">この拡張機能のソースには成人向けのコンテンツが含まれる可能性があります</string> | ||||
|     <string name="ext_nsfw_short">成人向け</string> | ||||
|     <string name="parental_controls_info">非公式や誤ってフラグ付けされた可能性のある拡張機能の成人向けのコンテンツはこれからも表示される恐れがあります。</string> | ||||
|     <plurals name="missing_chapters_warning"> | ||||
|         <item quantity="other">ソースには存在しないか、フィルターによって排除されたため、%d章がスキップされました</item> | ||||
|     </plurals> | ||||
|     <string name="no_chapters_error">章が見つかりません</string> | ||||
|     <string name="chapter_settings_updated">デフォルトの章設定を更新しました</string> | ||||
|     <string name="share_page_info">%1$s: %2$s、第%3$dページ</string> | ||||
| @@ -562,9 +529,6 @@ | ||||
|     <string name="pref_high">高い</string> | ||||
|     <string name="pref_highest">最高</string> | ||||
|     <string name="pref_inverted_colors">反転配色</string> | ||||
|     <plurals name="relative_time"> | ||||
|         <item quantity="other">%1$d日前</item> | ||||
|     </plurals> | ||||
|     <string name="relative_time_today">今日</string> | ||||
|     <string name="help_translate">翻訳に協力</string> | ||||
|     <string name="getting_started_guide">入門ガイド</string> | ||||
| @@ -672,9 +636,6 @@ | ||||
|     <string name="theme_tidalwave">津波</string> | ||||
|     <string name="download_ahead">事前ダウンロード</string> | ||||
|     <string name="auto_download_while_reading">読書中に自動でダウンロード</string> | ||||
|     <plurals name="next_unread_chapters"> | ||||
|         <item quantity="other">次の未読の%d章</item> | ||||
|     </plurals> | ||||
|     <string name="download_ahead_info">現在のと次の章は既にダウンロード済みの場合のみ有効です</string> | ||||
|     <string name="are_you_sure">本当に実行しますか?</string> | ||||
|     <string name="multi_lang">多言語</string> | ||||
| @@ -744,17 +705,11 @@ | ||||
|     <string name="information_required_plain">*必須</string> | ||||
|     <string name="action_copy_to_clipboard">クリップボードにコピー</string> | ||||
|     <string name="pref_hide_in_library_items">ライブラリにある項目を非表示</string> | ||||
|     <plurals name="download_amount"> | ||||
|         <item quantity="other">次の%d章</item> | ||||
|     </plurals> | ||||
|     <string name="action_update_category">カテゴリを更新</string> | ||||
|     <string name="split_tall_images">長い画像を分割</string> | ||||
|     <string name="overlay_header">オーバーレイ</string> | ||||
|     <string name="pref_page_rotate">画面に合わせるように幅広いページを回転</string> | ||||
|     <string name="pref_page_rotate_invert">回転した幅広いページの向きを反転</string> | ||||
|     <plurals name="missing_chapters"> | ||||
|         <item quantity="other">%1$s章が欠けています</item> | ||||
|     </plurals> | ||||
|     <string name="pref_debug_info">デバッグ情報</string> | ||||
|     <string name="pref_chapter_swipe_start">左へスワイプ時の操作</string> | ||||
|     <string name="pref_chapter_swipe_end">右へスワイプ時の操作</string> | ||||
| @@ -767,9 +722,6 @@ | ||||
|     <string name="action_sort_next_updated">次の更新予定</string> | ||||
|     <string name="pref_update_only_in_release_period">更新予定時間外</string> | ||||
|     <string name="intervals_header">間隔</string> | ||||
|     <plurals name="day"> | ||||
|         <item quantity="other">%d日</item> | ||||
|     </plurals> | ||||
|     <string name="skipped_reason_not_in_release_period">今日、連載更新が予想されていないためスキップしました</string> | ||||
|     <string name="manga_modify_calculated_interval_title">間隔を設定</string> | ||||
|     <string name="has_results">結果あり</string> | ||||
							
								
								
									
										12
									
								
								i18n/src/commonMain/resources/MR/jv/plurals.xml
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										12
									
								
								i18n/src/commonMain/resources/MR/jv/plurals.xml
									
									
									
									
									
										Normal file
									
								
							| @@ -0,0 +1,12 @@ | ||||
| <?xml version="1.0" encoding="utf-8"?> | ||||
| <resources> | ||||
|     <plurals name="relative_time"> | ||||
|         <item quantity="other">%1$d dinten kala-wingi</item> | ||||
|     </plurals> | ||||
|     <plurals name="lock_after_mins"> | ||||
|         <item quantity="other">Sawise %1$s menit</item> | ||||
|     </plurals> | ||||
|     <plurals name="num_categories"> | ||||
|         <item quantity="other">%d kategori</item> | ||||
|     </plurals> | ||||
| </resources> | ||||
| @@ -180,18 +180,12 @@ | ||||
|     <string name="action_faq_and_guides">Takon jawab lan panduan</string> | ||||
|     <string name="parental_controls_info">Iki ora nyegah ekstensi kang ora resmi utawa salah dilabeli kanggo nampilake konten NSFW (18+) ing aplikasi.</string> | ||||
|     <string name="relative_time_today">Dinten puniki</string> | ||||
|     <plurals name="relative_time"> | ||||
|         <item quantity="other">%1$d dinten kala-wingi</item> | ||||
|     </plurals> | ||||
|     <string name="update_never">Mati</string> | ||||
|     <string name="pref_category_security">Kaamanan</string> | ||||
|     <string name="lock_always">Tansah</string> | ||||
|     <string name="pref_category_nsfw_content">Sumber NSFW (18+)</string> | ||||
|     <string name="pref_show_nsfw_source">Tampilaken ing sumber lan dhaptar ekstensi</string> | ||||
|     <string name="pref_update_only_completely_read">Karo bab durung diwaca</string> | ||||
|     <plurals name="lock_after_mins"> | ||||
|         <item quantity="other">Sawise %1$s menit</item> | ||||
|     </plurals> | ||||
|     <string name="pref_manage_notifications">Kelola notifikasi</string> | ||||
|     <string name="secure_screen_summary">Amanaken layar sembunikan konten aplikasi wektu ngaleh aplikasi lan blokir tangkapan layar</string> | ||||
|     <string name="theme_midnightdusk">Surup wengi</string> | ||||
| @@ -206,9 +200,6 @@ | ||||
|     <string name="secure_screen">Amanaken layar</string> | ||||
|     <string name="update_72hour">Saben 3 dinten</string> | ||||
|     <string name="connected_to_wifi">Namung ing Wi-Fi</string> | ||||
|     <plurals name="num_categories"> | ||||
|         <item quantity="other">%d kategori</item> | ||||
|     </plurals> | ||||
|     <string name="ext_untrusted">Ora kapracaya</string> | ||||
|     <string name="pref_update_only_started">Iku durung diwiwiti</string> | ||||
|     <string name="pref_library_update_refresh_metadata_summary">periksa sampul lan rinci anyar wektu memerbarui pustaka</string> | ||||
							
								
								
									
										39
									
								
								i18n/src/commonMain/resources/MR/ka-rGE/plurals.xml
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										39
									
								
								i18n/src/commonMain/resources/MR/ka-rGE/plurals.xml
									
									
									
									
									
										Normal file
									
								
							| @@ -0,0 +1,39 @@ | ||||
| <?xml version="1.0" encoding="utf-8"?> | ||||
| <resources> | ||||
|     <plurals name="update_check_notification_ext_updates"> | ||||
|         <item quantity="one">ნაპოვნია გაფართოების განახლება</item> | ||||
|         <item quantity="other">ნაპოვნია %d გაფართოების განახლება</item> | ||||
|     </plurals> | ||||
|     <plurals name="notification_chapters_multiple_and_more"> | ||||
|         <item quantity="one">თავები %1$s და კიდევ 1</item> | ||||
|         <item quantity="other">თავები %1$s და კიდევ %2$d</item> | ||||
|     </plurals> | ||||
|     <plurals name="notification_chapters_generic"> | ||||
|         <item quantity="one">ნაპოვნია ახალი თავი</item> | ||||
|         <item quantity="other">ნაპოვნია %1$d ახალი თავი</item> | ||||
|     </plurals> | ||||
|     <plurals name="notification_new_chapters_summary"> | ||||
|         <item quantity="one">%d ჩანაწერისთვის</item> | ||||
|         <item quantity="other">%d ჩანაწერისთვის</item> | ||||
|     </plurals> | ||||
|     <plurals name="manga_num_chapters"> | ||||
|         <item quantity="one">1 თავი</item> | ||||
|         <item quantity="other">%1$s თავი</item> | ||||
|     </plurals> | ||||
|     <plurals name="download_queue_summary"> | ||||
|         <item quantity="one">დარჩა 1</item> | ||||
|         <item quantity="other">დარჩა %1$s</item> | ||||
|     </plurals> | ||||
|     <plurals name="restore_completed_message"> | ||||
|         <item quantity="one">დასრულების დრო %1$s. %2$s შეცდომა</item> | ||||
|         <item quantity="other">დასრულების დრო %1$s. %2$s შეცდომა</item> | ||||
|     </plurals> | ||||
|     <plurals name="num_categories"> | ||||
|         <item quantity="one">%d კატეგორია</item> | ||||
|         <item quantity="other">%d კატეგორიები</item> | ||||
|     </plurals> | ||||
|     <plurals name="lock_after_mins"> | ||||
|         <item quantity="one">1 წუთის შემდეგ</item> | ||||
|         <item quantity="other">%1$s წუთის შემდეგ</item> | ||||
|     </plurals> | ||||
| </resources> | ||||
| @@ -399,52 +399,16 @@ | ||||
|     <string name="tapping_inverted_horizontal">ჰორიზონტალური</string> | ||||
|     <string name="tapping_inverted_none">არცერთი</string> | ||||
|     <string name="pref_read_with_tapping_inverted">დაჭერის ინვერსია</string> | ||||
|     <plurals name="update_check_notification_ext_updates"> | ||||
|         <item quantity="one">ნაპოვნია გაფართოების განახლება</item> | ||||
|         <item quantity="other">ნაპოვნია %d გაფართოების განახლება</item> | ||||
|     </plurals> | ||||
|     <plurals name="notification_chapters_multiple_and_more"> | ||||
|         <item quantity="one">თავები %1$s და კიდევ 1</item> | ||||
|         <item quantity="other">თავები %1$s და კიდევ %2$d</item> | ||||
|     </plurals> | ||||
|     <plurals name="notification_chapters_generic"> | ||||
|         <item quantity="one">ნაპოვნია ახალი თავი</item> | ||||
|         <item quantity="other">ნაპოვნია %1$d ახალი თავი</item> | ||||
|     </plurals> | ||||
|     <plurals name="notification_new_chapters_summary"> | ||||
|         <item quantity="one">%d ჩანაწერისთვის</item> | ||||
|         <item quantity="other">%d ჩანაწერისთვის</item> | ||||
|     </plurals> | ||||
|     <string name="download_insufficient_space">შეუძლებელია თავების გადმოწერა დისკზე ადგილის უკმარისობის გამო</string> | ||||
|     <string name="loader_not_implemented_error">წყარო ვერ მოიძებნა</string> | ||||
|     <plurals name="manga_num_chapters"> | ||||
|         <item quantity="one">1 თავი</item> | ||||
|         <item quantity="other">%1$s თავი</item> | ||||
|     </plurals> | ||||
|     <string name="unknown_status">უცნობი სტატუსი</string> | ||||
|     <string name="unknown_author">უცნობი ავტორი</string> | ||||
|     <string name="action_global_search_query">მოიძებნოს \"%1$s\"-თვის გლობალურად</string> | ||||
|     <plurals name="download_queue_summary"> | ||||
|         <item quantity="one">დარჩა 1</item> | ||||
|         <item quantity="other">დარჩა %1$s</item> | ||||
|     </plurals> | ||||
|     <string name="updated_version">განახლებულია v%1$s-მდე</string> | ||||
|     <string name="whats_new">რა არის ახალი</string> | ||||
|     <string name="requires_app_restart">ასამოქმედებლად საჭიროა აპლიკაციის გადატვირთვა</string> | ||||
|     <string name="label_network">ქსელი</string> | ||||
|     <plurals name="restore_completed_message"> | ||||
|         <item quantity="one">დასრულების დრო %1$s. %2$s შეცდომა</item> | ||||
|         <item quantity="other">დასრულების დრო %1$s. %2$s შეცდომა</item> | ||||
|     </plurals> | ||||
|     <string name="pref_category_reading_mode">კითხვის რეჟიმი</string> | ||||
|     <plurals name="num_categories"> | ||||
|         <item quantity="one">%d კატეგორია</item> | ||||
|         <item quantity="other">%d კატეგორიები</item> | ||||
|     </plurals> | ||||
|     <plurals name="lock_after_mins"> | ||||
|         <item quantity="one">1 წუთის შემდეგ</item> | ||||
|         <item quantity="other">%1$s წუთის შემდეგ</item> | ||||
|     </plurals> | ||||
|     <string name="pref_category_theme">თემა</string> | ||||
|     <string name="action_disable">გამორთვა</string> | ||||
|     <string name="action_start">დაწყება</string> | ||||
							
								
								
									
										63
									
								
								i18n/src/commonMain/resources/MR/kk/plurals.xml
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										63
									
								
								i18n/src/commonMain/resources/MR/kk/plurals.xml
									
									
									
									
									
										Normal file
									
								
							| @@ -0,0 +1,63 @@ | ||||
| <?xml version="1.0" encoding="utf-8"?> | ||||
| <resources> | ||||
|     <plurals name="relative_time"> | ||||
|         <item quantity="one">Кеше</item> | ||||
|         <item quantity="other">%1$d күн бұрын</item> | ||||
|     </plurals> | ||||
|     <plurals name="lock_after_mins"> | ||||
|         <item quantity="one">%1$s минуттан кейін</item> | ||||
|         <item quantity="other">%1$s минуттан кейін</item> | ||||
|     </plurals> | ||||
|     <plurals name="num_categories"> | ||||
|         <item quantity="one">%d санат</item> | ||||
|         <item quantity="other">%d санаттар</item> | ||||
|     </plurals> | ||||
|     <plurals name="restore_completed_message"> | ||||
|         <item quantity="one">%1$s дегеннен кейін %2$s қателікпен орындалды</item> | ||||
|         <item quantity="other">%1$s дегеннен кейін %2$s қателікпен орындалды</item> | ||||
|     </plurals> | ||||
|     <plurals name="next_unread_chapters"> | ||||
|         <item quantity="one">Келесі оқылмаған тарау</item> | ||||
|         <item quantity="other">Келесі %d оқылмаған тарау</item> | ||||
|     </plurals> | ||||
|     <plurals name="download_queue_summary"> | ||||
|         <item quantity="one">%1$s тарау қалды</item> | ||||
|         <item quantity="other">%1$s тарау қалды</item> | ||||
|     </plurals> | ||||
|     <plurals name="num_trackers"> | ||||
|         <item quantity="one">%d бақылау</item> | ||||
|         <item quantity="other">%d бақылаулар</item> | ||||
|     </plurals> | ||||
|     <plurals name="manga_num_chapters"> | ||||
|         <item quantity="one">%1$s тарау</item> | ||||
|         <item quantity="other">%1$s тарау</item> | ||||
|     </plurals> | ||||
|     <plurals name="notification_chapters_multiple_and_more"> | ||||
|         <item quantity="one">%1$s тарау және біреу</item> | ||||
|         <item quantity="other">%1$s тарау мен %2$d</item> | ||||
|     </plurals> | ||||
|     <plurals name="missing_chapters_warning"> | ||||
|         <item quantity="one">Дереккөзі жоқ немесе сүзілген %d тарау өткізіліп жіберілді</item> | ||||
|         <item quantity="other">Дереккөзі жоқ немесе сүзілген %d тарау өткізіліп жіберілді</item> | ||||
|     </plurals> | ||||
|     <plurals name="notification_chapters_generic"> | ||||
|         <item quantity="one">%1$d жаңа тарау</item> | ||||
|         <item quantity="other">%1$d жаңа тарау</item> | ||||
|     </plurals> | ||||
|     <plurals name="update_check_notification_ext_updates"> | ||||
|         <item quantity="one">Кеңейту үшін жаңарту бар</item> | ||||
|         <item quantity="other">%d кеңейту үшін жаңарту бар</item> | ||||
|     </plurals> | ||||
|     <plurals name="notification_new_chapters_summary"> | ||||
|         <item quantity="one">%d жазбасы үшін</item> | ||||
|         <item quantity="other">%d жазбасы үшін</item> | ||||
|     </plurals> | ||||
|     <plurals name="download_amount"> | ||||
|         <item quantity="one">Келесі тарау</item> | ||||
|         <item quantity="other">Келесі %d тарау</item> | ||||
|     </plurals> | ||||
|     <plurals name="missing_chapters"> | ||||
|         <item quantity="one"/> | ||||
|         <item quantity="other">Жоқ %1$s тараулары</item> | ||||
|     </plurals> | ||||
| </resources> | ||||
| @@ -39,10 +39,6 @@ | ||||
|     <string name="left_to_right_viewer">Бет (солдан оңға қарай)</string> | ||||
|     <string name="information_empty_category">Санаттарыңыз жоқ. Жаңа санат жасау үшін және кітапханаңызды ұйымдастыру үшін қосу батырмасын басыңыз.</string> | ||||
|     <string name="nav_zone_next">Келесі</string> | ||||
|     <plurals name="relative_time"> | ||||
|         <item quantity="one">Кеше</item> | ||||
|         <item quantity="other">%1$d күн бұрын</item> | ||||
|     </plurals> | ||||
|     <string name="action_sort_last_manga_update">Соңғы жаңартуды тексеру</string> | ||||
|     <string name="action_sort_unread_count">Оқылмаған тараулар</string> | ||||
|     <string name="action_display_list">Тізім</string> | ||||
| @@ -83,10 +79,6 @@ | ||||
|     <string name="connected_to_wifi">Тек Wi-Fi болғанда</string> | ||||
|     <string name="charging">Қуаттандыру кездінде</string> | ||||
|     <string name="restrictions">Шектеулер: %s</string> | ||||
|     <plurals name="lock_after_mins"> | ||||
|         <item quantity="one">%1$s минуттан кейін</item> | ||||
|         <item quantity="other">%1$s минуттан кейін</item> | ||||
|     </plurals> | ||||
|     <string name="secure_screen_summary">Қауіпсіз экран қолданбаларды ауыстырған кезде қолданба мазмұнын жасырады және скриншот жасауды бұғаттайды</string> | ||||
|     <string name="pref_category_nsfw_content">NSFW (18+) дереккөздері</string> | ||||
|     <string name="pref_show_nsfw_source">Дереккөздер мен кеңейтулер тізімінде көрсету</string> | ||||
| @@ -232,10 +224,6 @@ | ||||
|     <string name="pref_color_filter_mode">Жарықты сүзу режимі</string> | ||||
|     <string name="pref_update_only_completely_read">Оқылмаған тарау(лар)мен</string> | ||||
|     <string name="pref_update_only_non_completed">«Аяқталған» күйімен</string> | ||||
|     <plurals name="num_categories"> | ||||
|         <item quantity="one">%d санат</item> | ||||
|         <item quantity="other">%d санаттар</item> | ||||
|     </plurals> | ||||
|     <string name="pref_dual_page_invert">Қос бетті бөлуді инверттеу</string> | ||||
|     <string name="action_display_grid">Ықшам кесте</string> | ||||
|     <string name="pref_show_reading_mode_summary">Оқыма ашылғаннан кейін оқу түрін қысқаша көрсету</string> | ||||
| @@ -328,10 +316,6 @@ | ||||
|     <string name="color_filter_b_value">К</string> | ||||
|     <string name="white_background">Ақ</string> | ||||
|     <string name="restore_duration">%02d мин, %02d сек</string> | ||||
|     <plurals name="restore_completed_message"> | ||||
|         <item quantity="one">%1$s дегеннен кейін %2$s қателікпен орындалды</item> | ||||
|         <item quantity="other">%1$s дегеннен кейін %2$s қателікпен орындалды</item> | ||||
|     </plurals> | ||||
|     <string name="pref_always_show_chapter_transition">Тараулардың ауысуын әрдайым көрсету</string> | ||||
|     <string name="rotation_force_portrait">Құлыпталған портрет</string> | ||||
|     <string name="pref_high">Жоғары</string> | ||||
| @@ -376,10 +360,6 @@ | ||||
|     <string name="tapping_inverted_both">Екеуі де</string> | ||||
|     <string name="split_tall_images_summary">Оқыманың өнімділігін жақсартады</string> | ||||
|     <string name="pref_navigate_pan">Кең суретті басқанда панорамалау</string> | ||||
|     <plurals name="next_unread_chapters"> | ||||
|         <item quantity="one">Келесі оқылмаған тарау</item> | ||||
|         <item quantity="other">Келесі %d оқылмаған тарау</item> | ||||
|     </plurals> | ||||
|     <string name="l_nav">L тәріздес</string> | ||||
|     <string name="action_search_hint">Іздеу…</string> | ||||
|     <string name="pref_hide_threshold">Айналдырғандағы мәзірді жасыру сезгіштігі</string> | ||||
| @@ -444,10 +424,6 @@ | ||||
|     <string name="restoring_backup">Сақтық көшірмесін қалпына келтіру</string> | ||||
|     <string name="backup_in_progress">Сақтық көшірмесі әлдеқашан орындалуда</string> | ||||
|     <string name="pref_reset_viewer_flags_error">Оқыма баптауы қалпына келтірілмеді</string> | ||||
|     <plurals name="download_queue_summary"> | ||||
|         <item quantity="one">%1$s тарау қалды</item> | ||||
|         <item quantity="other">%1$s тарау қалды</item> | ||||
|     </plurals> | ||||
|     <string name="pref_reset_viewer_flags_success">Оқыманың барлық баптауы қалпына келді</string> | ||||
|     <string name="whats_new">Не жаңалық</string> | ||||
|     <string name="help_translate">Аудармамен көмектесу</string> | ||||
| @@ -533,24 +509,12 @@ | ||||
|     <string name="reading">Оқылуда</string> | ||||
|     <string name="no_chapters_error">Тараулар жоқ</string> | ||||
|     <string name="are_you_sure">Сенімдісіз бе\?</string> | ||||
|     <plurals name="num_trackers"> | ||||
|         <item quantity="one">%d бақылау</item> | ||||
|         <item quantity="other">%d бақылаулар</item> | ||||
|     </plurals> | ||||
|     <string name="unread">Оқылмаған</string> | ||||
|     <string name="updating_library">Кітапхана жаңаруда</string> | ||||
|     <string name="cant_open_last_read_chapter">Ақырғы оқылған тарау ашылмай тұр</string> | ||||
|     <string name="updates_last_update_info">Кітапхананың ақырғы жаңаруы: %s</string> | ||||
|     <string name="loader_not_implemented_error">Дереккөз табылмады</string> | ||||
|     <string name="loader_rar5_error">RARv5 пішімі қолжетімсіз</string> | ||||
|     <plurals name="manga_num_chapters"> | ||||
|         <item quantity="one">%1$s тарау</item> | ||||
|         <item quantity="other">%1$s тарау</item> | ||||
|     </plurals> | ||||
|     <plurals name="notification_chapters_multiple_and_more"> | ||||
|         <item quantity="one">%1$s тарау және біреу</item> | ||||
|         <item quantity="other">%1$s тарау мен %2$d</item> | ||||
|     </plurals> | ||||
|     <string name="myanimelist_relogin">MyAnimeList-ке қайтадан кіріңіз</string> | ||||
|     <string name="error_no_match">Ұқсастық табылмады</string> | ||||
|     <string name="source_unsupported">Дереккөз қолжетімсіз</string> | ||||
| @@ -564,10 +528,6 @@ | ||||
|     <string name="update_check_notification_update_available">Жаңа нұсқа қолжетімді!</string> | ||||
|     <string name="download_notifier_split_page_not_found">%d бет табылмады, бөлінгенде</string> | ||||
|     <string name="channel_complete">Аяқталды</string> | ||||
|     <plurals name="missing_chapters_warning"> | ||||
|         <item quantity="one">Дереккөзі жоқ немесе сүзілген %d тарау өткізіліп жіберілді</item> | ||||
|         <item quantity="other">Дереккөзі жоқ немесе сүзілген %d тарау өткізіліп жіберілді</item> | ||||
|     </plurals> | ||||
|     <string name="pref_reader_summary">Оқу түрі, көрсету, навигация</string> | ||||
|     <string name="pref_browse_summary">Дереккөздер, кеңейтулер, ауқымды іздеу</string> | ||||
|     <string name="pref_security_summary">Қолданбаны бұғаттау, экранды қорғау</string> | ||||
| @@ -582,10 +542,6 @@ | ||||
|     <string name="error_sharing_cover">Мұқаба жіберілмеді</string> | ||||
|     <string name="cover_saved">Мұқаба сақталды</string> | ||||
|     <string name="confirm_set_chapter_settings">Бұл баптауды әдепкі қылып сақтағыңыз келеді ме\?</string> | ||||
|     <plurals name="notification_chapters_generic"> | ||||
|         <item quantity="one">%1$d жаңа тарау</item> | ||||
|         <item quantity="other">%1$d жаңа тарау</item> | ||||
|     </plurals> | ||||
|     <string name="learn_more">Көбірек білу үшін басу</string> | ||||
|     <string name="update_check_confirm">Жүктеп алу</string> | ||||
|     <string name="channel_common">Ортақ</string> | ||||
| @@ -637,10 +593,6 @@ | ||||
|     <string name="skipped_reason_completed">Туынды аяқталған үшін өткізіп жіберілді</string> | ||||
|     <string name="update_check_open">GitHub-та ашу</string> | ||||
|     <string name="update_check_eol">Бұл Android нұсқасы қолжетімсіз</string> | ||||
|     <plurals name="update_check_notification_ext_updates"> | ||||
|         <item quantity="one">Кеңейту үшін жаңарту бар</item> | ||||
|         <item quantity="other">%d кеңейту үшін жаңарту бар</item> | ||||
|     </plurals> | ||||
|     <string name="download_notifier_unknown_error">Белгісіз қателіктің кесірінен тарау жүктеп алынбады</string> | ||||
|     <string name="download_notifier_split_page_path_not_found">Бет файлының жолы %d табылмады</string> | ||||
|     <string name="channel_skipped">Өткізуп жіберілді</string> | ||||
| @@ -689,10 +641,6 @@ | ||||
|     <string name="appwidget_unavailable_locked">Биометриялық бұғаттау қосылып тұрғанда виджет қолжетімді емес</string> | ||||
|     <string name="custom_filter">Жеке сүзгі</string> | ||||
|     <string name="notification_size_warning">Көп жаңалтулар саны дереккөздер жұмысын баяулата және батарея жұмысын өтімін көбейте алады. Көбірек білу үшін басыңыз.</string> | ||||
|     <plurals name="notification_new_chapters_summary"> | ||||
|         <item quantity="one">%d жазбасы үшін</item> | ||||
|         <item quantity="other">%d жазбасы үшін</item> | ||||
|     </plurals> | ||||
|     <string name="notification_chapters_single">%1$s-Тарау</string> | ||||
|     <string name="download_queue_size_warning">Ескерту: Көп жүктеулер саны дереккөздер жұмысын баяулата алады және/немесе Tachiyomi бұғатталына алады. Толығырақ оқу үшін басыңыз.</string> | ||||
|     <string name="notification_new_chapters">Жаңа тараулар табылды</string> | ||||
| @@ -756,10 +704,6 @@ | ||||
|     <string name="track_error">%1$s қателік: %2$s</string> | ||||
|     <string name="information_required_plain">*қажетті</string> | ||||
|     <string name="action_update_category">Санатты жаңарту</string> | ||||
|     <plurals name="download_amount"> | ||||
|         <item quantity="one">Келесі тарау</item> | ||||
|         <item quantity="other">Келесі %d тарау</item> | ||||
|     </plurals> | ||||
|     <string name="action_copy_to_clipboard">Айырбастау буферіне көшіріп алу</string> | ||||
|     <string name="pref_hide_in_library_items">Кітапханада бар туындыларды жасыру</string> | ||||
|     <string name="split_tall_images">Ұзын суреттерді бөлу</string> | ||||
| @@ -767,8 +711,4 @@ | ||||
|     <string name="pref_page_rotate">Кең беттерді сыйғызу үшін бұрыңыз</string> | ||||
|     <string name="pref_page_rotate_invert">Бұрылған кең беттерді аудару бағдары</string> | ||||
|     <string name="pref_debug_info">Дебаг туралы ақпарат</string> | ||||
|     <plurals name="missing_chapters"> | ||||
|         <item quantity="one"/> | ||||
|         <item quantity="other">Жоқ %1$s тараулары</item> | ||||
|     </plurals> | ||||
| </resources> | ||||
							
								
								
									
										9
									
								
								i18n/src/commonMain/resources/MR/km/plurals.xml
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										9
									
								
								i18n/src/commonMain/resources/MR/km/plurals.xml
									
									
									
									
									
										Normal file
									
								
							| @@ -0,0 +1,9 @@ | ||||
| <?xml version="1.0" encoding="utf-8"?> | ||||
| <resources> | ||||
|     <plurals name="relative_time"> | ||||
|         <item quantity="other">%1$d ថ្ងៃមុន</item> | ||||
|     </plurals> | ||||
|     <plurals name="next_unread_chapters"> | ||||
|         <item quantity="other">%d ភាគបន្ទាប់ដែលមិនទាន់អាន</item> | ||||
|     </plurals> | ||||
| </resources> | ||||
| @@ -142,9 +142,6 @@ | ||||
|     <string name="pref_category_nsfw_content">ប្រភពមិនល្អ(១៨+)</string> | ||||
|     <string name="pref_show_nsfw_source">បង្ហាញនៅក្នុងបញ្ចីប្រភព</string> | ||||
|     <string name="relative_time_today">ថ្ងៃនេះ</string> | ||||
|     <plurals name="relative_time"> | ||||
|         <item quantity="other">%1$d ថ្ងៃមុន</item> | ||||
|     </plurals> | ||||
|     <string name="pref_category_display">ការបង្ហាញ</string> | ||||
|     <string name="pref_library_columns">ធាតុក្នុងមួយជួ</string> | ||||
|     <string name="portrait">បញ្ឈរ</string> | ||||
| @@ -186,9 +183,6 @@ | ||||
|     <string name="getting_started_guide">មគ្គុទេសក៍</string> | ||||
|     <string name="browse">ស្វែងរក</string> | ||||
|     <string name="all">ទាំងអស់</string> | ||||
|     <plurals name="next_unread_chapters"> | ||||
|         <item quantity="other">%d ភាគបន្ទាប់ដែលមិនទាន់អាន</item> | ||||
|     </plurals> | ||||
|     <string name="update_check_notification_download_in_progress">កំពុងទាញយក…</string> | ||||
|     <string name="label_stats">ស្ថិតិ</string> | ||||
|     <string name="label_downloaded">បានទាញយក</string> | ||||
							
								
								
									
										47
									
								
								i18n/src/commonMain/resources/MR/kn/plurals.xml
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										47
									
								
								i18n/src/commonMain/resources/MR/kn/plurals.xml
									
									
									
									
									
										Normal file
									
								
							| @@ -0,0 +1,47 @@ | ||||
| <?xml version="1.0" encoding="utf-8"?> | ||||
| <resources> | ||||
|     <plurals name="lock_after_mins"> | ||||
|         <item quantity="one">1 ನಿಮಿಷದ ನಂತರ</item> | ||||
|         <item quantity="other">%1$s ನಿಮಿಷಗಳ ನಂತರ</item> | ||||
|     </plurals> | ||||
|     <plurals name="restore_completed_message"> | ||||
|         <item quantity="one">%2$s ದೋಷದೊಂದಿಗೆ %1$s ನಲ್ಲಿ ಮುಗಿದಿದೆ</item> | ||||
|         <item quantity="other">%2$s ದೋಷಗಳೊಂದಿಗೆ %1$s ನಲ್ಲಿ ಮುಗಿದಿದೆ</item> | ||||
|     </plurals> | ||||
|     <plurals name="num_categories"> | ||||
|         <item quantity="one">%d ವರ್ಗ</item> | ||||
|         <item quantity="other">%d ವರ್ಗಗಳು</item> | ||||
|     </plurals> | ||||
|     <plurals name="update_check_notification_ext_updates"> | ||||
|         <item quantity="one">ವಿಸ್ತರಣೆ ನವೀಕರಣ ಲಭ್ಯವಿದೆ</item> | ||||
|         <item quantity="other">%d ವಿಸ್ತರಣೆ ನವೀಕರಣಗಳು ಲಭ್ಯವಿದೆ</item> | ||||
|     </plurals> | ||||
|     <plurals name="notification_chapters_multiple_and_more"> | ||||
|         <item quantity="one">ಅಧ್ಯಾಯಗಳು %1$s ಮತ್ತು 1 ಹೆಚ್ಚು</item> | ||||
|         <item quantity="other">ಅಧ್ಯಾಯಗಳು %1$s ಮತ್ತು %2$d ಹೆಚ್ಚು</item> | ||||
|     </plurals> | ||||
|     <plurals name="notification_chapters_generic"> | ||||
|         <item quantity="one">1 ಹೊಸ ಅಧ್ಯಾಯ</item> | ||||
|         <item quantity="other">%1$d ಹೊಸ ಅಧ್ಯಾಯಗಳು</item> | ||||
|     </plurals> | ||||
|     <plurals name="notification_new_chapters_summary"> | ||||
|         <item quantity="one">1 ಶೀರ್ಷಿಕೆಗಾಗಿ</item> | ||||
|         <item quantity="other">%d ಶೀರ್ಷಿಕೆಗಳಿಗಾಗಿ</item> | ||||
|     </plurals> | ||||
|     <plurals name="download_queue_summary"> | ||||
|         <item quantity="one">1 ಉಳಿದಿದೆ</item> | ||||
|         <item quantity="other">%1$s ಉಳಿದಿದೆ</item> | ||||
|     </plurals> | ||||
|     <plurals name="manga_num_chapters"> | ||||
|         <item quantity="one">1 ಚಾಪ್ಟರ್</item> | ||||
|         <item quantity="other">%1$s ಚಾಪ್ಟರಗಳು</item> | ||||
|     </plurals> | ||||
|     <plurals name="num_trackers"> | ||||
|         <item quantity="one">1 ಟ್ರಾಕರ್</item> | ||||
|         <item quantity="other">%d ಟ್ರಾಕರ್ ಗಳು</item> | ||||
|     </plurals> | ||||
|     <plurals name="missing_chapters_warning"> | ||||
|         <item quantity="one">1 ಅಧ್ಯಾಯ ಕಾಣೆಯಾಗಿದೆ</item> | ||||
|         <item quantity="other">%d ಅಧ್ಯಾಯ ಕಾಣೆಯಾಗಿವೆ</item> | ||||
|     </plurals> | ||||
| </resources> | ||||
| @@ -7,10 +7,6 @@ | ||||
|     <string name="hide_notification_content">ಸೂಚನೆ ವಿಷಯವನ್ನು ಮರೆಮಾಡಿ</string> | ||||
|     <string name="secure_screen_summary">ಅಪ್ಲಿಕೇಶನ್ಗಳನ್ನು ಬದಲಾಯಿಸುವಾಗ ಮತ್ತು ಸ್ಕ್ರೀನ್ಶಾಟ್ಗಳನ್ನು ನಿರ್ಬಂಧಿಸುವಾಗ ಅಪ್ಲಿಕೇಶನ್ ವಿಷಯಗಳನ್ನು ಮರೆಮಾಡಿ</string> | ||||
|     <string name="secure_screen">ಸುರಕ್ಷಿತ ಪುಟ</string> | ||||
|     <plurals name="lock_after_mins"> | ||||
|         <item quantity="one">1 ನಿಮಿಷದ ನಂತರ</item> | ||||
|         <item quantity="other">%1$s ನಿಮಿಷಗಳ ನಂತರ</item> | ||||
|     </plurals> | ||||
|     <string name="lock_never">ಎಂದಿಗೂ ಇಲ್ಲ</string> | ||||
|     <string name="lock_always">ಯಾವಾಗಲೂ</string> | ||||
|     <string name="lock_when_idle">ನಿಷ್ಕ್ರಿಯವಾಗಿದ್ದಾಗ ಲಾಕ್ ಮಾಡಿ</string> | ||||
| @@ -116,10 +112,6 @@ | ||||
|     <string name="label_settings">ಸಂಯೋಜನೆಗಳು</string> | ||||
|     <string name="label_more">ಇನ್ನಷ್ಟು</string> | ||||
|     <string name="name">ಹೆಸರು</string> | ||||
|     <plurals name="restore_completed_message"> | ||||
|         <item quantity="one">%2$s ದೋಷದೊಂದಿಗೆ %1$s ನಲ್ಲಿ ಮುಗಿದಿದೆ</item> | ||||
|         <item quantity="other">%2$s ದೋಷಗಳೊಂದಿಗೆ %1$s ನಲ್ಲಿ ಮುಗಿದಿದೆ</item> | ||||
|     </plurals> | ||||
|     <string name="restore_duration">%02d ನಿಮಿಷ, %02d ಸೆಕೆಂಡು</string> | ||||
|     <string name="restore_completed">ಮರುಸ್ಥಾಪನೆ ಪೂರ್ಣಗೊಂಡಿದೆ</string> | ||||
|     <string name="backup_created">ಬ್ಯಾಕಪ್ ರಚಿಸಲಾಗಿದೆ</string> | ||||
| @@ -223,10 +215,6 @@ | ||||
|     <string name="ext_update">ನವೀಕರಿಸಿ</string> | ||||
|     <string name="ext_updates_pending">ಬಾಕಿ ಉಳಿದಿರುವ ನವೀಕರಣಗಳು</string> | ||||
|     <string name="all">ಎಲ್ಲಾ</string> | ||||
|     <plurals name="num_categories"> | ||||
|         <item quantity="one">%d ವರ್ಗ</item> | ||||
|         <item quantity="other">%d ವರ್ಗಗಳು</item> | ||||
|     </plurals> | ||||
|     <string name="default_category_summary">ಯಾವಾಗಲೂ ಕೇಳಿ</string> | ||||
|     <string name="default_category">ಡೀಫಾಲ್ಟ್ ವರ್ಗ</string> | ||||
|     <string name="pref_update_only_non_completed">ಚಾಲ್ತಿಯಿರುವ ಮಾಂಗಾವನ್ನು ಮಾತ್ರ ನವೀಕರಿಸಿ</string> | ||||
| @@ -252,10 +240,6 @@ | ||||
|     <string name="information_webview_outdated">ಉತ್ತಮ ಹೊಂದಾಣಿಕೆಗಾಗಿ ದಯವಿಟ್ಟು ವೆಬ್ವೀಕ್ಷಣೆ ಅಪ್ಲಿಕೇಶನ್ ಅನ್ನು ನವೀಕರಿಸಿ</string> | ||||
|     <string name="information_webview_required">ತಚಿಯೋಮಿಗೆ ವೆಬ್ವೀಕ್ಷಣೆ ಅಗತ್ಯವಿದೆ</string> | ||||
|     <string name="information_cloudflare_bypass_failure">ಕ್ಲೌಡ್ಫ್ಲೇರ್ ಅನ್ನು ಬೈಪಾಸ್ ಮಾಡಲು ವಿಫಲವಾಗಿದೆ</string> | ||||
|     <plurals name="update_check_notification_ext_updates"> | ||||
|         <item quantity="one">ವಿಸ್ತರಣೆ ನವೀಕರಣ ಲಭ್ಯವಿದೆ</item> | ||||
|         <item quantity="other">%d ವಿಸ್ತರಣೆ ನವೀಕರಣಗಳು ಲಭ್ಯವಿದೆ</item> | ||||
|     </plurals> | ||||
|     <string name="update_check_notification_update_available">ಹೊಸ ಆವೃತ್ತಿ ಲಭ್ಯವಿದೆ!</string> | ||||
|     <string name="update_check_notification_download_error">ಡೌನ್ಲೋಡ್ ದೋಷ</string> | ||||
|     <string name="update_check_notification_download_complete">ಡೌನ್ಲೋಡ್ ಪೂರ್ಣಗೊಂಡಿದೆ</string> | ||||
| @@ -266,21 +250,9 @@ | ||||
|     <string name="file_select_cover">ಕವರ್ ಇಮೇಜ್ ಆಯ್ಕೆಮಾಡಿ</string> | ||||
|     <string name="notification_first_add_to_library">ಇದನ್ನು ಮಾಡುವ ಮೊದಲು ದಯವಿಟ್ಟು ನಿಮ್ಮ ಗ್ರಂಥಾಲಯಕ್ಕೆ ಮಾಂಗಾವನ್ನು ಸೇರಿಸಿ</string> | ||||
|     <string name="notification_cover_update_failed">ಕವರ್ ನವೀಕರಿಸಲು ವಿಫಲವಾಗಿದೆ</string> | ||||
|     <plurals name="notification_chapters_multiple_and_more"> | ||||
|         <item quantity="one">ಅಧ್ಯಾಯಗಳು %1$s ಮತ್ತು 1 ಹೆಚ್ಚು</item> | ||||
|         <item quantity="other">ಅಧ್ಯಾಯಗಳು %1$s ಮತ್ತು %2$d ಹೆಚ್ಚು</item> | ||||
|     </plurals> | ||||
|     <string name="notification_chapters_multiple">ಅಧ್ಯಾಯಗಳು %1$s</string> | ||||
|     <string name="notification_chapters_single_and_more">ಅಧ್ಯಾಯ %1$s ಮತ್ತು %2$d ಹೆಚ್ಚು</string> | ||||
|     <string name="notification_chapters_single">ಅಧ್ಯಾಯ %1$s</string> | ||||
|     <plurals name="notification_chapters_generic"> | ||||
|         <item quantity="one">1 ಹೊಸ ಅಧ್ಯಾಯ</item> | ||||
|         <item quantity="other">%1$d ಹೊಸ ಅಧ್ಯಾಯಗಳು</item> | ||||
|     </plurals> | ||||
|     <plurals name="notification_new_chapters_summary"> | ||||
|         <item quantity="one">1 ಶೀರ್ಷಿಕೆಗಾಗಿ</item> | ||||
|         <item quantity="other">%d ಶೀರ್ಷಿಕೆಗಳಿಗಾಗಿ</item> | ||||
|     </plurals> | ||||
|     <string name="notification_new_chapters">ಹೊಸ ಅಧ್ಯಾಯಗಳು ಕಂಡುಬಂದಿವೆ</string> | ||||
|     <string name="notification_check_updates">ಹೊಸ ಅಧ್ಯಾಯಗಳಿಗಾಗಿ ಪರಿಶೀಲಿಸಲಾಗುತ್ತಿದೆ</string> | ||||
|     <string name="download_queue_error">ಅಧ್ಯಾಯಗಳನ್ನು ಡೌನ್ಲೋಡ್ ಮಾಡಲು ಸಾಧ್ಯವಾಗಲಿಲ್ಲ. ಡೌನ್ಲೋಡ್ಗಳ ವಿಭಾಗದಲ್ಲಿ ನೀವು ಮತ್ತೆ ಪ್ರಯತ್ನಿಸಬಹುದು</string> | ||||
| @@ -373,10 +345,6 @@ | ||||
|     <string name="email">ಇಮೇಲ್ ವಿಳಾಸ</string> | ||||
|     <string name="username">ಬಳಕೆದಾರ ಹೆಸರು</string> | ||||
|     <string name="login_title">%1$s ಗೆ ಲಾಗ್ ಇನ್ ಮಾಡಿ</string> | ||||
|     <plurals name="download_queue_summary"> | ||||
|         <item quantity="one">1 ಉಳಿದಿದೆ</item> | ||||
|         <item quantity="other">%1$s ಉಳಿದಿದೆ</item> | ||||
|     </plurals> | ||||
|     <string name="downloaded_only_summary">ನಿಮ್ಮ ಗ್ರಂಥಾಲಯದ ಎಲ್ಲಾ ಮಾಂಗಾವನ್ನು ಫಿಲ್ಟರ್ ಮಾಡುತ್ತದೆ</string> | ||||
|     <string name="label_downloaded_only">ಡೌನ್ಲೋಡ್ ಮಾಡಿದ</string> | ||||
|     <string name="pref_acra_summary">ಯಾವುದೇ ದೋಷಗಳನ್ನು ಸರಿಪಡಿಸಲು ಸಹಾಯ ಮಾಡುತ್ತದೆ. ಯಾವುದೇ ಸೂಕ್ಷ್ಮ ಡೇಟಾವನ್ನು ಕಳುಹಿಸಲಾಗುವುದಿಲ್ಲ</string> | ||||
| @@ -435,10 +403,6 @@ | ||||
|     <string name="tapping_inverted_none">ಯಾವುದು ಅಲ್ಲ</string> | ||||
|     <string name="pref_read_with_tapping_inverted">ಟ್ಯಾಪಿಂಗ ಅನ್ನು ತಿರುಗಿಸಿ</string> | ||||
|     <string name="download_insufficient_space">ಕಡಿಮೆ ಶೇಖರಣಾ ಸ್ಥಳದ ಕಾರಣ ಅಧ್ಯಾಯಗಳನ್ನು ಡೌನ್ಲೋಡ್ ಮಾಡಲು ಸಾಧ್ಯವಾಗಲಿಲ್ಲ</string> | ||||
|     <plurals name="manga_num_chapters"> | ||||
|         <item quantity="one">1 ಚಾಪ್ಟರ್</item> | ||||
|         <item quantity="other">%1$s ಚಾಪ್ಟರಗಳು</item> | ||||
|     </plurals> | ||||
|     <string name="unknown_status">ಅಜ್ಞಾತ ಸ್ಥಿತಿ</string> | ||||
|     <string name="unknown_author">ಅಜ್ಞಾತ ಲೇಖಕ</string> | ||||
|     <string name="action_global_search_query">\"%1$s\" ಅನ್ನು ಗ್ಲೋಬಲ್ ಸರ್ಚ್ ಮಾಡಿ</string> | ||||
| @@ -449,20 +413,12 @@ | ||||
|     <string name="pref_category_reading_mode">ಓದುವ ಮೊಡ್</string> | ||||
|     <string name="pref_category_theme">ಜನರಲ್ ಸೆಲೆಕ್ಷನ್</string> | ||||
|     <string name="action_sort_date_added">ಹಾಕಿದ್ದ ದಿನಾಂಕ</string> | ||||
|     <plurals name="num_trackers"> | ||||
|         <item quantity="one">1 ಟ್ರಾಕರ್</item> | ||||
|         <item quantity="other">%d ಟ್ರಾಕರ್ ಗಳು</item> | ||||
|     </plurals> | ||||
|     <string name="no_pinned_sources">ಯಾವುದೆ ಪಿನ್ ಮಾಡಿರುವ ಸೋರ್ಸ್ ಗಳು ಇಲ್ಲ</string> | ||||
|     <string name="channel_complete">ಪೂರ್ಣ</string> | ||||
|     <string name="channel_progress">ಪ್ರಗತಿ</string> | ||||
|     <string name="parental_controls_info">ಇದು ಅನಧಿಕೃತ ಮತ್ತು ತಪ್ಪಾಗಿ ಚಿಹ್ನಿಸಿದ ವಿಸ್ತರಣೆಗಳಿಂದ 18+ ಮೂಲಗಳನ್ನು ಮರೆಮಾಚಲಾಗುವುದಿಲ್ಲ.</string> | ||||
|     <string name="channel_errors">ದೋಷಗಳು</string> | ||||
|     <string name="chapter_settings_updated">ಅಧ್ಯಾಯದ ಡೀಫಾಲ್ಟ್ ಸೆಟ್ಟಿಂಗ್ಗಳನ್ನು ನವೀಕರಿಸಲಾಗಿದೆ</string> | ||||
|     <plurals name="missing_chapters_warning"> | ||||
|         <item quantity="one">1 ಅಧ್ಯಾಯ ಕಾಣೆಯಾಗಿದೆ</item> | ||||
|         <item quantity="other">%d ಅಧ್ಯಾಯ ಕಾಣೆಯಾಗಿವೆ</item> | ||||
|     </plurals> | ||||
|     <string name="share_page_info">%1$s: %2$s, ಪುಟ %3$d</string> | ||||
|     <string name="no_chapters_error">ಯಾವುದೇ ಅಧ್ಯಾಯಗಳು ಕಂಡುಬಂದಿಲ್ಲ</string> | ||||
|     <string name="set_chapter_settings_as_default">ಡೀಫಾಲ್ಟ್ ಆಗಿ ಹೊಂದಿಸಿ</string> | ||||
							
								
								
									
										51
									
								
								i18n/src/commonMain/resources/MR/ko/plurals.xml
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										51
									
								
								i18n/src/commonMain/resources/MR/ko/plurals.xml
									
									
									
									
									
										Normal file
									
								
							| @@ -0,0 +1,51 @@ | ||||
| <?xml version="1.0" encoding="utf-8"?> | ||||
| <resources> | ||||
|     <plurals name="download_queue_summary"> | ||||
|         <item quantity="other">%1$s 개 남음</item> | ||||
|     </plurals> | ||||
|     <plurals name="manga_num_chapters"> | ||||
|         <item quantity="other">총 %1$s화</item> | ||||
|     </plurals> | ||||
|     <plurals name="relative_time"> | ||||
|         <item quantity="other">%1$d일 전</item> | ||||
|     </plurals> | ||||
|     <plurals name="restore_completed_message"> | ||||
|         <item quantity="other">소요 시간: %1$s, 발생한 오류: %2$s</item> | ||||
|     </plurals> | ||||
|     <plurals name="lock_after_mins"> | ||||
|         <item quantity="other">%1$s분 후</item> | ||||
|     </plurals> | ||||
|     <plurals name="num_categories"> | ||||
|         <item quantity="other">항목 %d개</item> | ||||
|     </plurals> | ||||
|     <plurals name="num_trackers"> | ||||
|         <item quantity="other">%d개의 트래커</item> | ||||
|     </plurals> | ||||
|     <plurals name="missing_chapters_warning"> | ||||
|         <item quantity="other">소스에 존재하지 않거나 필터링되어 있는 %d개의 회차를 건너뛰었습니다</item> | ||||
|     </plurals> | ||||
|     <plurals name="update_check_notification_ext_updates"> | ||||
|         <item quantity="other">%d개의 확장 앱 업데이트가 있습니다</item> | ||||
|     </plurals> | ||||
|     <plurals name="notification_new_chapters_summary"> | ||||
|         <item quantity="other">%d개의 항목</item> | ||||
|     </plurals> | ||||
|     <plurals name="notification_chapters_generic"> | ||||
|         <item quantity="other">%1$d개의 새로운 회차</item> | ||||
|     </plurals> | ||||
|     <plurals name="notification_chapters_multiple_and_more"> | ||||
|         <item quantity="other">%1$s화와 그 외 %2$d화</item> | ||||
|     </plurals> | ||||
|     <plurals name="next_unread_chapters"> | ||||
|         <item quantity="other">읽지 않은 다음 %d 회차</item> | ||||
|     </plurals> | ||||
|     <plurals name="download_amount"> | ||||
|         <item quantity="other">다음 %d화</item> | ||||
|     </plurals> | ||||
|     <plurals name="missing_chapters"> | ||||
|         <item quantity="other">누락된 회차 %1$s개</item> | ||||
|     </plurals> | ||||
|     <plurals name="day"> | ||||
|         <item quantity="other">%d일</item> | ||||
|     </plurals> | ||||
| </resources> | ||||
| @@ -303,9 +303,6 @@ | ||||
|     <string name="logout_success">로그아웃 되었습니다</string> | ||||
|     <string name="logout">로그아웃</string> | ||||
|     <string name="logout_title">%1$s 에서 로그아웃 하시겠습니까\?</string> | ||||
|     <plurals name="download_queue_summary"> | ||||
|         <item quantity="other">%1$s 개 남음</item> | ||||
|     </plurals> | ||||
|     <string name="notification_incognito_text">시크릿 모드 끄기</string> | ||||
|     <string name="label_downloaded_only">다운로드가 완료된 항목만 표시</string> | ||||
|     <string name="pref_incognito_mode">시크릿 모드</string> | ||||
| @@ -366,9 +363,6 @@ | ||||
|     <string name="pref_cutout_short">빈 공간 채우기</string> | ||||
|     <string name="pref_always_show_chapter_transition">회차 변경 항상 표시</string> | ||||
|     <string name="unknown_author">작가 미상</string> | ||||
|     <plurals name="manga_num_chapters"> | ||||
|         <item quantity="other">총 %1$s화</item> | ||||
|     </plurals> | ||||
|     <string name="pref_category_reading_mode">읽기 모드</string> | ||||
|     <string name="whats_new">업데이트 내역</string> | ||||
|     <string name="last_used_source">마지막으로 사용</string> | ||||
| @@ -383,9 +377,6 @@ | ||||
|     <string name="pref_category_for_this_series">현재 만화에만 적용</string> | ||||
|     <string name="viewer">읽기 모드</string> | ||||
|     <string name="downloaded_only_summary">서재의 모든 항목에 적용됩니다</string> | ||||
|     <plurals name="relative_time"> | ||||
|         <item quantity="other">%1$d일 전</item> | ||||
|     </plurals> | ||||
|     <string name="pref_webtoon_side_padding">모서리 여백</string> | ||||
|     <string name="ext_app_info">앱 정보</string> | ||||
|     <string name="getting_started_guide">초기 설정 도움말</string> | ||||
| @@ -399,9 +390,6 @@ | ||||
|     <string name="pref_category_library">서재</string> | ||||
|     <string name="add_to_library">서재에 추가</string> | ||||
|     <string name="save_chapter_as_cbz">CBZ 파일로 저장</string> | ||||
|     <plurals name="restore_completed_message"> | ||||
|         <item quantity="other">소요 시간: %1$s, 발생한 오류: %2$s</item> | ||||
|     </plurals> | ||||
|     <string name="pref_library_update_manga_restriction">항목 업데이트 건너뛰기</string> | ||||
|     <string name="secure_screen_summary">화면 보안을 켜면 앱을 전환할 때 내용이 숨겨지며 스크린샷을 찍을 수 없습니다</string> | ||||
|     <string name="in_library">서재에 추가됨</string> | ||||
| @@ -413,18 +401,12 @@ | ||||
|     <string name="relative_time_today">오늘</string> | ||||
|     <string name="pref_category_library_update">전역 업데이트</string> | ||||
|     <string name="pref_category_security">보안 및 개인정보 보호</string> | ||||
|     <plurals name="lock_after_mins"> | ||||
|         <item quantity="other">%1$s분 후</item> | ||||
|     </plurals> | ||||
|     <string name="lock_always">항상</string> | ||||
|     <string name="lock_never">끄기</string> | ||||
|     <string name="lock_when_idle">자동 잠금</string> | ||||
|     <string name="hide_notification_content">알림 내용 숨기기</string> | ||||
|     <string name="pref_remove_exclude_categories">제외된 카테고리</string> | ||||
|     <string name="rotation_reverse_portrait">세로 (거꾸로 보기)</string> | ||||
|     <plurals name="num_categories"> | ||||
|         <item quantity="other">항목 %d개</item> | ||||
|     </plurals> | ||||
|     <string name="connected_to_wifi">Wi-Fi 에서만</string> | ||||
|     <string name="on">활성화</string> | ||||
|     <string name="updating_library">서재 업데이트 중</string> | ||||
| @@ -485,17 +467,11 @@ | ||||
|     <string name="manga_info_expand">상세정보 표시</string> | ||||
|     <string name="manga_info_collapse">상세정보 숨김</string> | ||||
|     <string name="clipboard_copy_error">클립보드로 복사에 실패하였습니다</string> | ||||
|     <plurals name="num_trackers"> | ||||
|         <item quantity="other">%d개의 트래커</item> | ||||
|     </plurals> | ||||
|     <string name="add_tracking">트래커 추가</string> | ||||
|     <string name="paused">일시정지</string> | ||||
|     <string name="myanimelist_relogin">MAL에 다시 로그인해 주세요</string> | ||||
|     <string name="loader_not_implemented_error">소스를 찾을 수 없습니다</string> | ||||
|     <string name="page_list_empty_error">페이지를 찾을 수 없습니다</string> | ||||
|     <plurals name="missing_chapters_warning"> | ||||
|         <item quantity="other">소스에 존재하지 않거나 필터링되어 있는 %d개의 회차를 건너뛰었습니다</item> | ||||
|     </plurals> | ||||
|     <string name="pref_clear_history">내역 삭제</string> | ||||
|     <string name="clear_history_completed">기록이 삭제되었습니다</string> | ||||
|     <string name="download_insufficient_space">저장 공간이 부족하여 회차를 다운로드 할 수 없습니다</string> | ||||
| @@ -509,9 +485,6 @@ | ||||
|     <string name="skipped_reason_completed">완결된 만화를 건너 뛰었습니다</string> | ||||
|     <string name="skipped_reason_not_started">읽지 않은 만화를 건너 뛰었습니다</string> | ||||
|     <string name="update_check_eol">이 안드로이드 버전은 더이상 지원되지 않습니다</string> | ||||
|     <plurals name="update_check_notification_ext_updates"> | ||||
|         <item quantity="other">%d개의 확장 앱 업데이트가 있습니다</item> | ||||
|     </plurals> | ||||
|     <string name="information_cloudflare_bypass_failure">Cloudflare를 통과하지 못했습니다</string> | ||||
|     <string name="information_webview_required">Tachiyomi 앱의 기능을 사용하려면 WebView가 필요합니다</string> | ||||
|     <string name="information_webview_outdated">호환성을 위해 WebView 어플리케이션을 업데이트 해 주세요</string> | ||||
| @@ -581,12 +554,6 @@ | ||||
|     <string name="local_filter_order_by">정렬</string> | ||||
|     <string name="track_started_reading_date">읽기 시작한 날짜</string> | ||||
|     <string name="track_finished_reading_date">다 읽은 날짜</string> | ||||
|     <plurals name="notification_new_chapters_summary"> | ||||
|         <item quantity="other">%d개의 항목</item> | ||||
|     </plurals> | ||||
|     <plurals name="notification_chapters_generic"> | ||||
|         <item quantity="other">%1$d개의 새로운 회차</item> | ||||
|     </plurals> | ||||
|     <string name="skipped_reason_not_caught_up">읽지 않은 회차가 있는 만화를 건너 뛰었습니다</string> | ||||
|     <string name="information_empty_category_dialog">등록된 카테고리가 없습니다.</string> | ||||
|     <string name="pref_create_folder_per_manga_summary">항목 제목에 따라 폴더 생성</string> | ||||
| @@ -620,9 +587,6 @@ | ||||
|     <string name="pref_library_update_refresh_metadata_summary">서재 업데이트 시 새로운 표지와 설명 확인</string> | ||||
|     <string name="notification_chapters_single_and_more">%1$s화와 그 외 %2$d화</string> | ||||
|     <string name="notification_chapters_multiple">%1$s화</string> | ||||
|     <plurals name="notification_chapters_multiple_and_more"> | ||||
|         <item quantity="other">%1$s화와 그 외 %2$d화</item> | ||||
|     </plurals> | ||||
|     <string name="file_picker_error">파일 선택 어플리케이션이 없습니다</string> | ||||
|     <string name="empty_backup_error">백업할 서재 항목이 없습니다</string> | ||||
|     <string name="update_check_fdroid_migration_info">새로운 공식 업데이트가 있습니다. F-Droid의 비공식 버전에서 이전을 원하시면 터치해서 방법을 확인하세요.</string> | ||||
| @@ -674,9 +638,6 @@ | ||||
|     <string name="multi_lang">다언어</string> | ||||
|     <string name="remove_manga">서재에서 \"%s\"을(를) 제거하려고 합니다</string> | ||||
|     <string name="missing_storage_permission">저장공간 사용 권한이 없음</string> | ||||
|     <plurals name="next_unread_chapters"> | ||||
|         <item quantity="other">읽지 않은 다음 %d 회차</item> | ||||
|     </plurals> | ||||
|     <string name="auto_download_while_reading">읽을 때 자동 다운로드</string> | ||||
|     <string name="updates_last_update_info">마지막 서재 업데이트: %s</string> | ||||
|     <string name="download_ahead_info">현재 회차 + 다음 회차가 이미 다운로드된 경우에만 작동됩니다.</string> | ||||
| @@ -744,26 +705,17 @@ | ||||
|     <string name="information_required_plain">*필수</string> | ||||
|     <string name="action_copy_to_clipboard">클립보드에 복사</string> | ||||
|     <string name="pref_hide_in_library_items">이미 서재에 있는 항목 숨기기</string> | ||||
|     <plurals name="download_amount"> | ||||
|         <item quantity="other">다음 %d화</item> | ||||
|     </plurals> | ||||
|     <string name="action_update_category">카테고리 업데이트</string> | ||||
|     <string name="split_tall_images">긴 이미지 분할</string> | ||||
|     <string name="overlay_header">오버레이</string> | ||||
|     <string name="pref_page_rotate">화면에 맞게 넓은 페이지 회전</string> | ||||
|     <string name="pref_page_rotate_invert">회전된 넓은 페이지의 회전 방향</string> | ||||
|     <plurals name="missing_chapters"> | ||||
|         <item quantity="other">누락된 회차 %1$s개</item> | ||||
|     </plurals> | ||||
|     <string name="pref_debug_info">디버그 정보</string> | ||||
|     <string name="pref_library_columns_per_row">행당 %d개</string> | ||||
|     <string name="pref_chapter_swipe_start">왼쪽으로 스와이프 액션</string> | ||||
|     <string name="pref_chapter_swipe_end">오른쪽으로 스와이프 액션</string> | ||||
|     <string name="pref_chapter_swipe">회차 스와이프</string> | ||||
|     <string name="pref_double_tap_zoom">두 번 탭하여 줌</string> | ||||
|     <plurals name="day"> | ||||
|         <item quantity="other">%d일</item> | ||||
|     </plurals> | ||||
|     <string name="action_set_interval">간격 설정</string> | ||||
|     <string name="action_filter_interval_custom">사용자 지정 가져오기 간격</string> | ||||
|     <string name="action_filter_interval_long">매월 가져오기 (28일)</string> | ||||
							
								
								
									
										68
									
								
								i18n/src/commonMain/resources/MR/lt/plurals.xml
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										68
									
								
								i18n/src/commonMain/resources/MR/lt/plurals.xml
									
									
									
									
									
										Normal file
									
								
							| @@ -0,0 +1,68 @@ | ||||
| <?xml version="1.0" encoding="utf-8"?> | ||||
| <resources> | ||||
|     <plurals name="relative_time"> | ||||
|         <item quantity="one">Vakar</item> | ||||
|         <item quantity="few">Prieš %1$d dienas</item> | ||||
|         <item quantity="other">Prieš %1$d dienų</item> | ||||
|     </plurals> | ||||
|     <plurals name="lock_after_mins"> | ||||
|         <item quantity="one">Po %1$s minutės</item> | ||||
|         <item quantity="few">Po %1$s minučių</item> | ||||
|         <item quantity="other">Po %1$s minučių</item> | ||||
|     </plurals> | ||||
|     <plurals name="num_categories"> | ||||
|         <item quantity="one">%d kategorija</item> | ||||
|         <item quantity="few">%d kategorijos</item> | ||||
|         <item quantity="other">%d kategorijos</item> | ||||
|     </plurals> | ||||
|     <plurals name="notification_chapters_multiple_and_more"> | ||||
|         <item quantity="one">Skyrius %1$s ir 1 daugiau</item> | ||||
|         <item quantity="few">Skyriai %1$s ir %2$d daugiau</item> | ||||
|         <item quantity="other">Skyriai %1$s ir %2$d daugiau</item> | ||||
|     </plurals> | ||||
|     <plurals name="notification_chapters_generic"> | ||||
|         <item quantity="one">%1$d naujas skyrius</item> | ||||
|         <item quantity="few">%1$d nauji skyriai</item> | ||||
|         <item quantity="other">%1$d nauji skyriai</item> | ||||
|     </plurals> | ||||
|     <plurals name="restore_completed_message"> | ||||
|         <item quantity="one">Atlikta %1$s su %2$s klaida</item> | ||||
|         <item quantity="few">Atlikta %1$s su %2$s klaidomis</item> | ||||
|         <item quantity="other">Atlikta %1$s su %2$s klaidomis</item> | ||||
|     </plurals> | ||||
|     <plurals name="notification_new_chapters_summary"> | ||||
|         <item quantity="one">%d įrašui</item> | ||||
|         <item quantity="few">%d įrašams</item> | ||||
|         <item quantity="other">%d įrašų</item> | ||||
|     </plurals> | ||||
|     <plurals name="update_check_notification_ext_updates"> | ||||
|         <item quantity="one">%d plėtinio atnaujinimas pasiekiamas</item> | ||||
|         <item quantity="few">%d plėtinių atnaujinimai pasiekiami</item> | ||||
|         <item quantity="other">%d plėtinių atnaujinimai pasiekiami</item> | ||||
|     </plurals> | ||||
|     <plurals name="manga_num_chapters"> | ||||
|         <item quantity="one">%1$s skyrius</item> | ||||
|         <item quantity="few">%1$s skyriai</item> | ||||
|         <item quantity="other">%1$s skyriai</item> | ||||
|     </plurals> | ||||
|     <plurals name="download_queue_summary"> | ||||
|         <item quantity="one">Liko vienas</item> | ||||
|         <item quantity="few">Liko %1$s</item> | ||||
|         <item quantity="other">Liko %1$s</item> | ||||
|     </plurals> | ||||
|     <plurals name="num_trackers"> | ||||
|         <item quantity="one">%d stebėjimo įrenginys</item> | ||||
|         <item quantity="few">%d stebėjimo įrenginiai</item> | ||||
|         <item quantity="other">%d stebėjimo įrenginių</item> | ||||
|     </plurals> | ||||
|     <plurals name="missing_chapters_warning"> | ||||
|         <item quantity="one">Praleidžiamas %d skyrius, arba jo nėra šaltinyje, arba jis buvo nepasirinktas</item> | ||||
|         <item quantity="few">Praleidžiami %d skyriai, arba jų nėra šaltinyje, arba jie buvo nepasirinkti</item> | ||||
|         <item quantity="other">Praleidžiamia %d skyrių, arba jų nėra šaltinyje, arba jie buvo nepasirinkti</item> | ||||
|     </plurals> | ||||
|     <plurals name="next_unread_chapters"> | ||||
|         <item quantity="one">Kitas neskaitytas skyrius</item> | ||||
|         <item quantity="few">Kiti %d neskaityti skyriai</item> | ||||
|         <item quantity="other">Kiti %d neskaitytų skyrių</item> | ||||
|     </plurals> | ||||
| </resources> | ||||
| @@ -46,11 +46,6 @@ | ||||
|     <string name="portrait">Portretas</string> | ||||
|     <string name="pref_library_columns">Elementai eilutėje</string> | ||||
|     <string name="pref_category_display">Rodinys</string> | ||||
|     <plurals name="relative_time"> | ||||
|         <item quantity="one">Vakar</item> | ||||
|         <item quantity="few">Prieš %1$d dienas</item> | ||||
|         <item quantity="other">Prieš %1$d dienų</item> | ||||
|     </plurals> | ||||
|     <string name="relative_time_today">Šiandien</string> | ||||
|     <string name="parental_controls_info">Tai nesustabdo neoficialių ar potencialiai neteisingai pažymėtų plėtinių nuo N18+ turinio rodymo programoje.</string> | ||||
|     <string name="pref_show_nsfw_source">Rodyti šaltiniuose ir plėtinių sąrašuose</string> | ||||
| @@ -58,11 +53,6 @@ | ||||
|     <string name="hide_notification_content">Slėpti pranešimo turinį</string> | ||||
|     <string name="secure_screen_summary">Slėpti programos turinį, kai įjungiama kita programa ir neleisti daryti ekrano nuotraukų</string> | ||||
|     <string name="secure_screen">Saugus užraktas</string> | ||||
|     <plurals name="lock_after_mins"> | ||||
|         <item quantity="one">Po %1$s minutės</item> | ||||
|         <item quantity="few">Po %1$s minučių</item> | ||||
|         <item quantity="other">Po %1$s minučių</item> | ||||
|     </plurals> | ||||
|     <string name="lock_never">Niekada</string> | ||||
|     <string name="lock_always">Visada</string> | ||||
|     <string name="lock_when_idle">Užrakinti kai neveiksnus</string> | ||||
| @@ -221,11 +211,6 @@ | ||||
|     <string name="none">Nėra</string> | ||||
|     <string name="all">Visi</string> | ||||
|     <string name="pref_library_update_categories_details">Įrašai, kurie yra įtraukti į neįtraukiamas kategorijas, nebus atnaujinami, net jei yra įtraukti į įtrauktąsias kategorijas.</string> | ||||
|     <plurals name="num_categories"> | ||||
|         <item quantity="one">%d kategorija</item> | ||||
|         <item quantity="few">%d kategorijos</item> | ||||
|         <item quantity="other">%d kategorijos</item> | ||||
|     </plurals> | ||||
|     <string name="update_check_notification_download_error">Atsiuntimo klaida</string> | ||||
|     <string name="update_check_notification_update_available">Nauja versija pasiekiama!</string> | ||||
|     <string name="scale_type_fit_height">Pagal aukštį talpinimas</string> | ||||
| @@ -356,11 +341,6 @@ | ||||
|     <string name="last_read_chapter">Paskiausiai skaitytas skyrius</string> | ||||
|     <string name="pref_download_new_categories_details">Įrašai neįtrauktose kategorijose nebus atsisiųsti, net jei jie taip pat yra įtraukti į kategorijas.</string> | ||||
|     <string name="learn_more">Palieskite, kad sužinotumėte daugiau</string> | ||||
|     <plurals name="notification_chapters_multiple_and_more"> | ||||
|         <item quantity="one">Skyrius %1$s ir 1 daugiau</item> | ||||
|         <item quantity="few">Skyriai %1$s ir %2$d daugiau</item> | ||||
|         <item quantity="other">Skyriai %1$s ir %2$d daugiau</item> | ||||
|     </plurals> | ||||
|     <string name="file_select_backup">Pasirinkti atsarginės kopijos failą</string> | ||||
|     <string name="transition_pages_loading">Įkeliami puslapiai…</string> | ||||
|     <string name="transition_no_next">Kito skyriaus nėra</string> | ||||
| @@ -370,11 +350,6 @@ | ||||
|     <string name="updating_library">Atnaujinama biblioteka</string> | ||||
|     <string name="information_webview_outdated">Atnaujinkite „WebView“ programą dėl geresnio suderinamumo</string> | ||||
|     <string name="notification_chapters_single">Skyrius %1$s</string> | ||||
|     <plurals name="notification_chapters_generic"> | ||||
|         <item quantity="one">%1$d naujas skyrius</item> | ||||
|         <item quantity="few">%1$d nauji skyriai</item> | ||||
|         <item quantity="other">%1$d nauji skyriai</item> | ||||
|     </plurals> | ||||
|     <string name="clear_history_completed">Istorija ištrinta</string> | ||||
|     <string name="decode_image_error">Nepavyko pakrauti paveikslėlio</string> | ||||
|     <string name="page_list_empty_error">Puslapių nerasta</string> | ||||
| @@ -476,11 +451,6 @@ | ||||
|     <string name="download_notifier_no_network">Tinklo ryšis nepasiekiamas</string> | ||||
|     <string name="download_notifier_unknown_error">Nepavyko atsisiųsti skyriaus dėl netikėtos klaidos</string> | ||||
|     <string name="appwidget_unavailable_locked">Valdiklis nepasiekiamas, kai įjungtas programėlės užraktas</string> | ||||
|     <plurals name="restore_completed_message"> | ||||
|         <item quantity="one">Atlikta %1$s su %2$s klaida</item> | ||||
|         <item quantity="few">Atlikta %1$s su %2$s klaidomis</item> | ||||
|         <item quantity="other">Atlikta %1$s su %2$s klaidomis</item> | ||||
|     </plurals> | ||||
|     <string name="appwidget_updates_description">Peržiūrėkite neseniai atnaujintus bibliotekos įrašus</string> | ||||
|     <string name="cache_deleted">Talpykla išvalyta. %1$d failai buvo ištrinti</string> | ||||
|     <string name="pref_clear_database">Išvalyti duomenų bazę</string> | ||||
| @@ -513,18 +483,8 @@ | ||||
|     <string name="pref_reset_viewer_flags">Iš naujo nustatyti kiekvienos serijos skaitytuvo nustatymus</string> | ||||
|     <string name="pref_dump_crash_logs">Išmeskite strigčių žurnalus</string> | ||||
|     <string name="download_queue_error">Nepavyko atsisiųsti skyrių. Galite pabandyti dar kartą atsisiųsti</string> | ||||
|     <plurals name="notification_new_chapters_summary"> | ||||
|         <item quantity="one">%d įrašui</item> | ||||
|         <item quantity="few">%d įrašams</item> | ||||
|         <item quantity="other">%d įrašų</item> | ||||
|     </plurals> | ||||
|     <string name="pref_user_agent_string">Numatytoji vartotojo agento eilutė</string> | ||||
|     <string name="not_installed">Neįdiegtas</string> | ||||
|     <plurals name="update_check_notification_ext_updates"> | ||||
|         <item quantity="one">%d plėtinio atnaujinimas pasiekiamas</item> | ||||
|         <item quantity="few">%d plėtinių atnaujinimai pasiekiami</item> | ||||
|         <item quantity="other">%d plėtinių atnaujinimai pasiekiami</item> | ||||
|     </plurals> | ||||
|     <string name="chapter_settings_updated">Atnaujinti numatytus skyrių nustatymus</string> | ||||
|     <string name="download_notifier_downloader_title">Parsisiuntėjas</string> | ||||
|     <string name="download_notifier_title_error">Klaida</string> | ||||
| @@ -622,11 +582,6 @@ | ||||
|     <string name="unknown_author">Nežinomas autorius</string> | ||||
|     <string name="unknown_status">Nežinoma būsena</string> | ||||
|     <string name="cancelled">Nebepublikuojamas</string> | ||||
|     <plurals name="manga_num_chapters"> | ||||
|         <item quantity="one">%1$s skyrius</item> | ||||
|         <item quantity="few">%1$s skyriai</item> | ||||
|         <item quantity="other">%1$s skyriai</item> | ||||
|     </plurals> | ||||
|     <string name="description_placeholder">Nėra aprašymo</string> | ||||
|     <string name="pref_incognito_mode">Inkognito režimas</string> | ||||
|     <string name="browse">Naršyti</string> | ||||
| @@ -656,17 +611,7 @@ | ||||
|     <string name="on_hold">Sulaikytas</string> | ||||
|     <string name="wish_list">Norimų sąrašas</string> | ||||
|     <string name="complete_list">Pilnas sąrašas</string> | ||||
|     <plurals name="download_queue_summary"> | ||||
|         <item quantity="one">Liko vienas</item> | ||||
|         <item quantity="few">Liko %1$s</item> | ||||
|         <item quantity="other">Liko %1$s</item> | ||||
|     </plurals> | ||||
|     <string name="title">Pavadinimas</string> | ||||
|     <plurals name="num_trackers"> | ||||
|         <item quantity="one">%d stebėjimo įrenginys</item> | ||||
|         <item quantity="few">%d stebėjimo įrenginiai</item> | ||||
|         <item quantity="other">%d stebėjimo įrenginių</item> | ||||
|     </plurals> | ||||
|     <string name="error_saving_picture">Klaidą išsaugojant paveikslą</string> | ||||
|     <string name="status">Būsena</string> | ||||
|     <string name="score">Rezultatas</string> | ||||
| @@ -677,11 +622,6 @@ | ||||
|     <string name="track_status">Būsena</string> | ||||
|     <string name="on_hold_list">Užlaikytų sąrašas</string> | ||||
|     <string name="unfinished_list">Nebaigtų sąrašas</string> | ||||
|     <plurals name="missing_chapters_warning"> | ||||
|         <item quantity="one">Praleidžiamas %d skyrius, arba jo nėra šaltinyje, arba jis buvo nepasirinktas</item> | ||||
|         <item quantity="few">Praleidžiami %d skyriai, arba jų nėra šaltinyje, arba jie buvo nepasirinkti</item> | ||||
|         <item quantity="other">Praleidžiamia %d skyrių, arba jų nėra šaltinyje, arba jie buvo nepasirinkti</item> | ||||
|     </plurals> | ||||
|     <string name="share_page_info">%1$s: %2$s, puslapis %3$d</string> | ||||
|     <string name="no_next_chapter">Kitas skyrius nerastas</string> | ||||
|     <string name="source_empty_screen">Šaltinis nerastas</string> | ||||
| @@ -693,11 +633,6 @@ | ||||
|     <string name="source_filter_empty_screen">Įdiegtų šaltinių nerasta</string> | ||||
|     <string name="theme_tidalwave">Potvynio banga</string> | ||||
|     <string name="action_search_hint">Ieškoti…</string> | ||||
|     <plurals name="next_unread_chapters"> | ||||
|         <item quantity="one">Kitas neskaitytas skyrius</item> | ||||
|         <item quantity="few">Kiti %d neskaityti skyriai</item> | ||||
|         <item quantity="other">Kiti %d neskaitytų skyrių</item> | ||||
|     </plurals> | ||||
|     <string name="error_user_agent_string_blank">Vartotojo agento eilutė negali būti tuščia</string> | ||||
|     <string name="update_already_running">Atnaujinimas jau vykdomas</string> | ||||
|     <string name="updates_last_update_info">Biblioteka paskutinį kartą atnaujinta: %s</string> | ||||
							
								
								
									
										83
									
								
								i18n/src/commonMain/resources/MR/lv/plurals.xml
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										83
									
								
								i18n/src/commonMain/resources/MR/lv/plurals.xml
									
									
									
									
									
										Normal file
									
								
							| @@ -0,0 +1,83 @@ | ||||
| <?xml version="1.0" encoding="utf-8"?> | ||||
| <resources> | ||||
|     <plurals name="restore_completed_message"> | ||||
|         <item quantity="zero">Pabeigts %1$s ar %2$s kļūdām</item> | ||||
|         <item quantity="one">Pabeigts %1$s ar %2$s kļūdu</item> | ||||
|         <item quantity="other">Pabeigts %1$s ar %2$s kļūdām</item> | ||||
|     </plurals> | ||||
|     <plurals name="lock_after_mins"> | ||||
|         <item quantity="zero">Pēc %1$s minūtēm</item> | ||||
|         <item quantity="one">Pēc %1$s minūtes</item> | ||||
|         <item quantity="other">Pēc %1$s minūtēm</item> | ||||
|     </plurals> | ||||
|     <plurals name="num_categories"> | ||||
|         <item quantity="zero">%d kategoriju</item> | ||||
|         <item quantity="one">%d kategorija</item> | ||||
|         <item quantity="other">%d kategorijas</item> | ||||
|     </plurals> | ||||
|     <plurals name="relative_time"> | ||||
|         <item quantity="zero">Šodien</item> | ||||
|         <item quantity="one">Vakar</item> | ||||
|         <item quantity="other">Pirms %1$d dienām</item> | ||||
|     </plurals> | ||||
|     <plurals name="download_queue_summary"> | ||||
|         <item quantity="zero">%1$s atlikušas</item> | ||||
|         <item quantity="one">%1$s atlikusi</item> | ||||
|         <item quantity="other">%1$s atlikušas</item> | ||||
|     </plurals> | ||||
|     <plurals name="num_trackers"> | ||||
|         <item quantity="zero">%d izsekotāju</item> | ||||
|         <item quantity="one">%d izsekotājs</item> | ||||
|         <item quantity="other">%d izsekotāji</item> | ||||
|     </plurals> | ||||
|     <plurals name="notification_new_chapters_summary"> | ||||
|         <item quantity="zero">Priekš %d ierakstiem</item> | ||||
|         <item quantity="one">Priekš %d ieraksta</item> | ||||
|         <item quantity="other">Priekš %d ierakstiem</item> | ||||
|     </plurals> | ||||
|     <plurals name="missing_chapters_warning"> | ||||
|         <item quantity="zero">Izlaisti %d nodaļu, vai nu to nav avotā, vai arī tie ir izfiltrēti</item> | ||||
|         <item quantity="one">Izlaists %d nodaļa, vai nu tā nav avotā, vai arī tā ir izfiltrēta</item> | ||||
|         <item quantity="other">Izlaistas %d nodaļas, vai nu tās nav avotā, vai arī tās ir izfiltrētas</item> | ||||
|     </plurals> | ||||
|     <plurals name="notification_chapters_generic"> | ||||
|         <item quantity="zero">%1$d jaunu nodaļu</item> | ||||
|         <item quantity="one">%1$d jauna nodaļa</item> | ||||
|         <item quantity="other">%1$d jaunas nodaļas</item> | ||||
|     </plurals> | ||||
|     <plurals name="manga_num_chapters"> | ||||
|         <item quantity="zero">%1$s nodaļu</item> | ||||
|         <item quantity="one">%1$s nodaļa</item> | ||||
|         <item quantity="other">%1$s nodaļas</item> | ||||
|     </plurals> | ||||
|     <plurals name="update_check_notification_ext_updates"> | ||||
|         <item quantity="zero">Pieejami %d paplašinājumi atjaunināšanai</item> | ||||
|         <item quantity="one">Pieejams %d paplašinājums atjaunināšanai</item> | ||||
|         <item quantity="other">Pieejami %d paplašinājumi atjaunināšanai</item> | ||||
|     </plurals> | ||||
|     <plurals name="notification_chapters_multiple_and_more"> | ||||
|         <item quantity="zero">Nodaļu %1$s</item> | ||||
|         <item quantity="one">Nodaļa %1$s un vēl 1</item> | ||||
|         <item quantity="other">Nodaļa %1$s un vēl %2$d</item> | ||||
|     </plurals> | ||||
|     <plurals name="missing_chapters"> | ||||
|         <item quantity="zero">Trūkst %1$s nodaļu</item> | ||||
|         <item quantity="one">Trūkst %1$s nodaļa</item> | ||||
|         <item quantity="other">Trūkst %1$s nodaļas</item> | ||||
|     </plurals> | ||||
|     <plurals name="download_amount"> | ||||
|         <item quantity="zero">Nākošā %d nodaļa</item> | ||||
|         <item quantity="one">Nākošā %d nodaļa</item> | ||||
|         <item quantity="other">Nākošās %d nodaļās</item> | ||||
|     </plurals> | ||||
|     <plurals name="next_unread_chapters"> | ||||
|         <item quantity="zero">Nākamā nelasītā nodaļa</item> | ||||
|         <item quantity="one">Nākamā nelasītā nodaļa</item> | ||||
|         <item quantity="other">Nākamās %d nelasītas nodaļas</item> | ||||
|     </plurals> | ||||
|     <plurals name="day"> | ||||
|         <item quantity="zero">%d dienas</item> | ||||
|         <item quantity="one">%d diena</item> | ||||
|         <item quantity="other">%d dienas</item> | ||||
|     </plurals> | ||||
| </resources> | ||||
| @@ -79,11 +79,6 @@ | ||||
|     <string name="creating_backup">Izveido dublējumu</string> | ||||
|     <string name="backup_choice">Ko vēlaties dublēt\?</string> | ||||
|     <string name="backup_in_progress">Dublēšana jau notiek</string> | ||||
|     <plurals name="restore_completed_message"> | ||||
|         <item quantity="zero">Pabeigts %1$s ar %2$s kļūdām</item> | ||||
|         <item quantity="one">Pabeigts %1$s ar %2$s kļūdu</item> | ||||
|         <item quantity="other">Pabeigts %1$s ar %2$s kļūdām</item> | ||||
|     </plurals> | ||||
|     <string name="restore_duration">%02d min, %02d sec</string> | ||||
|     <string name="restore_completed">Atjaunošana pabeigta</string> | ||||
|     <string name="backup_restore_missing_sources">Trūkstošie avoti:</string> | ||||
| @@ -134,11 +129,6 @@ | ||||
|     <string name="hide_notification_content">Slēpt paziņojumu saturu</string> | ||||
|     <string name="secure_screen_summary">Drošs ekrāns paslēpj saturu mainot lietotnes, un bloķē ekrānuzņēmumus</string> | ||||
|     <string name="secure_screen">Drošs ekrāns</string> | ||||
|     <plurals name="lock_after_mins"> | ||||
|         <item quantity="zero">Pēc %1$s minūtēm</item> | ||||
|         <item quantity="one">Pēc %1$s minūtes</item> | ||||
|         <item quantity="other">Pēc %1$s minūtēm</item> | ||||
|     </plurals> | ||||
|     <string name="lock_never">Nekad</string> | ||||
|     <string name="lock_always">Vienmēr</string> | ||||
|     <string name="lock_when_idle">Bloķēt, ja dīkstāvē</string> | ||||
| @@ -214,18 +204,8 @@ | ||||
|     <string name="pref_category_nsfw_content">NSFW (18+) avoti</string> | ||||
|     <string name="pref_show_nsfw_source">Rādīt avotos un paplašinājumu sarakstos</string> | ||||
|     <string name="update_never">Izslēgts</string> | ||||
|     <plurals name="num_categories"> | ||||
|         <item quantity="zero">%d kategoriju</item> | ||||
|         <item quantity="one">%d kategorija</item> | ||||
|         <item quantity="other">%d kategorijas</item> | ||||
|     </plurals> | ||||
|     <string name="action_display_language_badge">Valoda</string> | ||||
|     <string name="action_sort_chapter_fetch_date">Nodaļas ieneses datums</string> | ||||
|     <plurals name="relative_time"> | ||||
|         <item quantity="zero">Šodien</item> | ||||
|         <item quantity="one">Vakar</item> | ||||
|         <item quantity="other">Pirms %1$d dienām</item> | ||||
|     </plurals> | ||||
|     <string name="pref_library_update_manga_restriction">Izlaist ierakstu atjaunināšanu</string> | ||||
|     <string name="action_faq_and_guides">Biežāk uzdotie jautājumi un rokasgrāmatas</string> | ||||
|     <string name="action_close">Aizvērt</string> | ||||
| @@ -488,11 +468,6 @@ | ||||
|     <string name="downloaded_chapters">Lejupielādētās nodaļas</string> | ||||
|     <string name="notification_incognito_text">Izslēgt inkognito režīmu</string> | ||||
|     <string name="updating_category">Atjaunina kategoriju</string> | ||||
|     <plurals name="download_queue_summary"> | ||||
|         <item quantity="zero">%1$s atlikušas</item> | ||||
|         <item quantity="one">%1$s atlikusi</item> | ||||
|         <item quantity="other">%1$s atlikušas</item> | ||||
|     </plurals> | ||||
|     <string name="fifth_to_last">Piektā pirmspēdējā izlasītā nodaļa</string> | ||||
|     <string name="action_global_search_hint">Globālā meklēšana…</string> | ||||
|     <string name="information_cloudflare_bypass_failure">Neizdevās apiet Cloudflare</string> | ||||
| @@ -528,11 +503,6 @@ | ||||
|     <string name="unknown_status">Nezināms statuss</string> | ||||
|     <string name="publishing_finished">Publicēšana pabeigta</string> | ||||
|     <string name="manga_tracking_tab">Izsekošana</string> | ||||
|     <plurals name="num_trackers"> | ||||
|         <item quantity="zero">%d izsekotāju</item> | ||||
|         <item quantity="one">%d izsekotājs</item> | ||||
|         <item quantity="other">%d izsekotāji</item> | ||||
|     </plurals> | ||||
|     <string name="notification_cover_update_failed">Neizdevās atjaunināt vāku</string> | ||||
|     <string name="skipped_reason_completed">Izlaists, jo sērija ir pabeigta</string> | ||||
|     <string name="download_notifier_split_page_path_not_found">Nevar atrast lapas %d faila ceļu</string> | ||||
| @@ -554,11 +524,6 @@ | ||||
|     <string name="confirm_set_image_as_cover">Vai izmantot šo attēlu kā vāku\?</string> | ||||
|     <string name="pref_category_for_this_series">Priekš šīs sērijas</string> | ||||
|     <string name="dropped">Pamests</string> | ||||
|     <plurals name="notification_new_chapters_summary"> | ||||
|         <item quantity="zero">Priekš %d ierakstiem</item> | ||||
|         <item quantity="one">Priekš %d ieraksta</item> | ||||
|         <item quantity="other">Priekš %d ierakstiem</item> | ||||
|     </plurals> | ||||
|     <string name="download_queue_size_warning">Brīdinājums: liela apjoma lejupielāde var izraisīt to, ka avoti kļūst lēnāki un/vai bloķē Tachiyomi. Pieskarieties, lai uzzinātu vairāk.</string> | ||||
|     <string name="skipped_reason_not_started">Izlaists, jo neviena nodaļa nav izlasīta</string> | ||||
|     <string name="file_select_cover">Atlasiet vāka attēlu</string> | ||||
| @@ -599,21 +564,11 @@ | ||||
| \n%1$s</string> | ||||
|     <string name="error_saving_cover">Kļūda saglabājot vāku</string> | ||||
|     <string name="reading_list">Lasīšanas saraksts</string> | ||||
|     <plurals name="missing_chapters_warning"> | ||||
|         <item quantity="zero">Izlaisti %d nodaļu, vai nu to nav avotā, vai arī tie ir izfiltrēti</item> | ||||
|         <item quantity="one">Izlaists %d nodaļa, vai nu tā nav avotā, vai arī tā ir izfiltrēta</item> | ||||
|         <item quantity="other">Izlaistas %d nodaļas, vai nu tās nav avotā, vai arī tās ir izfiltrētas</item> | ||||
|     </plurals> | ||||
|     <string name="notification_chapters_multiple">Nodaļas %1$s</string> | ||||
|     <string name="notification_new_chapters">Atrastas jaunas nodaļas</string> | ||||
|     <string name="notification_chapters_single_and_more">Nodaļa %1$s un vēl %2$d</string> | ||||
|     <string name="file_picker_error">Nav atrasta failu atlases programma</string> | ||||
|     <string name="notification_first_add_to_library">Lūdzu, pievienojiet ierakstu savai bibliotēkai, pirms to darāt</string> | ||||
|     <plurals name="notification_chapters_generic"> | ||||
|         <item quantity="zero">%1$d jaunu nodaļu</item> | ||||
|         <item quantity="one">%1$d jauna nodaļa</item> | ||||
|         <item quantity="other">%1$d jaunas nodaļas</item> | ||||
|     </plurals> | ||||
|     <string name="notification_chapters_single">Nodaļa %1$s</string> | ||||
|     <string name="download_notifier_split_page_not_found">Sadalīšanas laikā netika atrasta lapa %d</string> | ||||
|     <string name="skipped_reason_not_caught_up">Izlaists, jo ir nelasītas nodaļas</string> | ||||
| @@ -630,26 +585,11 @@ | ||||
|     <string name="delete_downloads_for_manga">Vai dzēst lejupielādētās nodaļas\?</string> | ||||
|     <string name="date">Datums</string> | ||||
|     <string name="on_hiatus">Pārtraukumā</string> | ||||
|     <plurals name="manga_num_chapters"> | ||||
|         <item quantity="zero">%1$s nodaļu</item> | ||||
|         <item quantity="one">%1$s nodaļa</item> | ||||
|         <item quantity="other">%1$s nodaļas</item> | ||||
|     </plurals> | ||||
|     <plurals name="update_check_notification_ext_updates"> | ||||
|         <item quantity="zero">Pieejami %d paplašinājumi atjaunināšanai</item> | ||||
|         <item quantity="one">Pieejams %d paplašinājums atjaunināšanai</item> | ||||
|         <item quantity="other">Pieejami %d paplašinājumi atjaunināšanai</item> | ||||
|     </plurals> | ||||
|     <string name="display_mode_chapter">Nodaļa %1$s</string> | ||||
|     <string name="cover_saved">Vāks saglabāts</string> | ||||
|     <string name="clear_history_confirmation">Vai esat pārliecināts\? Visa vēsture tiks pazaudēta.</string> | ||||
|     <string name="source_empty_screen">Nav atrasts avots</string> | ||||
|     <string name="source_filter_empty_screen">Neviens instalēts avots nav atrasts</string> | ||||
|     <plurals name="notification_chapters_multiple_and_more"> | ||||
|         <item quantity="zero">Nodaļu %1$s</item> | ||||
|         <item quantity="one">Nodaļa %1$s un vēl 1</item> | ||||
|         <item quantity="other">Nodaļa %1$s un vēl %2$d</item> | ||||
|     </plurals> | ||||
|     <string name="update_check_notification_download_complete">Pieskarieties, lai instalētu atjauninājumu</string> | ||||
|     <string name="custom_cover">Pielāgots vāks</string> | ||||
|     <string name="unfinished_list">Nepabeigto saraksts</string> | ||||
| @@ -741,16 +681,6 @@ | ||||
|     <string name="hour_short">%dh</string> | ||||
|     <string name="internal_error">InternalError: Par plašāku informāciju skatiet avārijas žurnālu</string> | ||||
|     <string name="delete_category_confirmation">Vai vēlaties dzēst kategoriju \"%s\"\?</string> | ||||
|     <plurals name="missing_chapters"> | ||||
|         <item quantity="zero">Trūkst %1$s nodaļu</item> | ||||
|         <item quantity="one">Trūkst %1$s nodaļa</item> | ||||
|         <item quantity="other">Trūkst %1$s nodaļas</item> | ||||
|     </plurals> | ||||
|     <plurals name="download_amount"> | ||||
|         <item quantity="zero">Nākošā %d nodaļa</item> | ||||
|         <item quantity="one">Nākošā %d nodaļa</item> | ||||
|         <item quantity="other">Nākošās %d nodaļās</item> | ||||
|     </plurals> | ||||
|     <string name="track_error">%1$s kļūda: %2$s</string> | ||||
|     <string name="update_already_running">Atjauninājums jau darbojas</string> | ||||
|     <string name="crash_screen_description">%s radās neparedzēta kļūda. Mēs iesakām dalīties ar avārijas žurnālu mūsu atbalsta kanālā Discord lietotnē.</string> | ||||
| @@ -762,11 +692,6 @@ | ||||
|     <string name="information_no_manga_category">Kategorija ir tukša</string> | ||||
|     <string name="appwidget_updates_description">Skatiet savus nesen atjauninātos bibliotēkas ierakstus</string> | ||||
|     <string name="remove_manga">Jūs gatavojaties noņemt \"%s\" no savas bibliotēkas</string> | ||||
|     <plurals name="next_unread_chapters"> | ||||
|         <item quantity="zero">Nākamā nelasītā nodaļa</item> | ||||
|         <item quantity="one">Nākamā nelasītā nodaļa</item> | ||||
|         <item quantity="other">Nākamās %d nelasītas nodaļas</item> | ||||
|     </plurals> | ||||
|     <string name="action_not_now">Ne tagad</string> | ||||
|     <string name="action_search_hint">Meklē…</string> | ||||
|     <string name="fdroid_warning">F-Droid versijas netiek oficiāli atbalstītas. | ||||
| @@ -805,11 +730,6 @@ | ||||
|     <string name="syncing_library">Sinhronizē bibliotēku</string> | ||||
|     <string name="library_sync_complete">Bibliotēkas sinhronizācija ir pabeigta</string> | ||||
|     <string name="intervals_header">Intervāli</string> | ||||
|     <plurals name="day"> | ||||
|         <item quantity="zero">%d dienas</item> | ||||
|         <item quantity="one">%d diena</item> | ||||
|         <item quantity="other">%d dienas</item> | ||||
|     </plurals> | ||||
|     <string name="track_delete_text">Šis noņems locālo izsekošanu.</string> | ||||
|     <string name="delete_downloaded">Izdzēst lejupielādētos</string> | ||||
|     <string name="track_delete_title">Vai noņemt %s izsekošanu\?</string> | ||||
| @@ -826,4 +746,7 @@ | ||||
|     <string name="exception_http">HTTP %d, pārbaudiet vietni iekš WebView</string> | ||||
|     <string name="exception_offline">Nav interneta savienojuma</string> | ||||
|     <string name="exception_unknown_host">Nevarēja sasniegt %s</string> | ||||
|     <string name="action_sort_category">Kārtot kategorijas</string> | ||||
|     <string name="action_sort_tracker_score">Izsekošanas rezultāts</string> | ||||
|     <string name="label_data_storage">Dati un uzglabāšana</string> | ||||
| </resources> | ||||
							
								
								
									
										11
									
								
								i18n/src/commonMain/resources/MR/mr/plurals.xml
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										11
									
								
								i18n/src/commonMain/resources/MR/mr/plurals.xml
									
									
									
									
									
										Normal file
									
								
							| @@ -0,0 +1,11 @@ | ||||
| <?xml version="1.0" encoding="utf-8"?> | ||||
| <resources> | ||||
|     <plurals name="num_categories"> | ||||
|         <item quantity="one">%d श्रेणी</item> | ||||
|         <item quantity="other">%d श्रेण्या</item> | ||||
|     </plurals> | ||||
|     <plurals name="lock_after_mins"> | ||||
|         <item quantity="one">1 मिनीटानंतर</item> | ||||
|         <item quantity="other">%1$s मिनीटांनंतर</item> | ||||
|     </plurals> | ||||
| </resources> | ||||
| @@ -86,15 +86,7 @@ | ||||
|     <string name="action_select_inverse">व्यस्त निवडा</string> | ||||
|     <string name="action_global_search">जागतिक शोध</string> | ||||
|     <string name="secure_screen_summary">अॅप्स स्विच करताना अॅप मधील सामग्री लपवा व स्क्रीनशॉट अवरोधित करा</string> | ||||
|     <plurals name="num_categories"> | ||||
|         <item quantity="one">%d श्रेणी</item> | ||||
|         <item quantity="other">%d श्रेण्या</item> | ||||
|     </plurals> | ||||
|     <string name="secure_screen">स्क्रीन सुरक्षित करा</string> | ||||
|     <plurals name="lock_after_mins"> | ||||
|         <item quantity="one">1 मिनीटानंतर</item> | ||||
|         <item quantity="other">%1$s मिनीटांनंतर</item> | ||||
|     </plurals> | ||||
|     <string name="lock_never">कधीही नाही</string> | ||||
|     <string name="lock_always">नेहमी</string> | ||||
|     <string name="lock_when_idle">निष्क्रिय झाल्यावर लॉक करा</string> | ||||
							
								
								
									
										51
									
								
								i18n/src/commonMain/resources/MR/ms/plurals.xml
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										51
									
								
								i18n/src/commonMain/resources/MR/ms/plurals.xml
									
									
									
									
									
										Normal file
									
								
							| @@ -0,0 +1,51 @@ | ||||
| <?xml version="1.0" encoding="utf-8"?> | ||||
| <resources> | ||||
|     <plurals name="lock_after_mins"> | ||||
|         <item quantity="other">Selepas %1$s minit</item> | ||||
|     </plurals> | ||||
|     <plurals name="notification_chapters_generic"> | ||||
|         <item quantity="other">%1$d bab baharu</item> | ||||
|     </plurals> | ||||
|     <plurals name="notification_chapters_multiple_and_more"> | ||||
|         <item quantity="other">Bab %1$s dan %2$d lagi</item> | ||||
|     </plurals> | ||||
|     <plurals name="notification_new_chapters_summary"> | ||||
|         <item quantity="other">Untuk entri %d</item> | ||||
|     </plurals> | ||||
|     <plurals name="update_check_notification_ext_updates"> | ||||
|         <item quantity="other">%d kemas kini sambungan tersedia</item> | ||||
|     </plurals> | ||||
|     <plurals name="download_queue_summary"> | ||||
|         <item quantity="other">%1$s baki</item> | ||||
|     </plurals> | ||||
|     <plurals name="num_categories"> | ||||
|         <item quantity="other">%d kategori</item> | ||||
|     </plurals> | ||||
|     <plurals name="restore_completed_message"> | ||||
|         <item quantity="other">Selesai dalam %1$s dengan %2$s ralat</item> | ||||
|     </plurals> | ||||
|     <plurals name="manga_num_chapters"> | ||||
|         <item quantity="other">Jumlah bab: %1$s</item> | ||||
|     </plurals> | ||||
|     <plurals name="num_trackers"> | ||||
|         <item quantity="other">%d penjejak</item> | ||||
|     </plurals> | ||||
|     <plurals name="missing_chapters_warning"> | ||||
|         <item quantity="other">Melangkau %d bab, sama ada sumber tidak mempunyai bab tersebut, atau ia ditapis keluar</item> | ||||
|     </plurals> | ||||
|     <plurals name="relative_time"> | ||||
|         <item quantity="other">%1$d hari lalu</item> | ||||
|     </plurals> | ||||
|     <plurals name="next_unread_chapters"> | ||||
|         <item quantity="other">%d bab tidak dibaca seterusnya</item> | ||||
|     </plurals> | ||||
|     <plurals name="download_amount"> | ||||
|         <item quantity="other">%d bab seterusnya</item> | ||||
|     </plurals> | ||||
|     <plurals name="missing_chapters"> | ||||
|         <item quantity="other">Hilang %1$s bab</item> | ||||
|     </plurals> | ||||
|     <plurals name="day"> | ||||
|         <item quantity="other">%d hari</item> | ||||
|     </plurals> | ||||
| </resources> | ||||
| @@ -315,9 +315,6 @@ | ||||
|     <string name="lock_when_idle">Kunci apabila terbiar</string> | ||||
|     <string name="lock_always">Selalu</string> | ||||
|     <string name="lock_never">Tidak</string> | ||||
|     <plurals name="lock_after_mins"> | ||||
|         <item quantity="other">Selepas %1$s minit</item> | ||||
|     </plurals> | ||||
|     <string name="secure_screen">Skrin keselamatan</string> | ||||
|     <string name="ext_updates_pending">Kemas kini baharu</string> | ||||
|     <string name="pref_cutout_short">Tunjuk kandungan dalam kawasan bertakuk</string> | ||||
| @@ -326,15 +323,9 @@ | ||||
|     <string name="channel_new_chapters">Pengemaskinian bab</string> | ||||
|     <string name="secure_screen_summary">Skrin keselamatan menyembunyikan kandungan aplikasi apabila menukar aplikasi dan sekat tangkapan skrin</string> | ||||
|     <string name="pref_category_display">Paparan</string> | ||||
|     <plurals name="notification_chapters_generic"> | ||||
|         <item quantity="other">%1$d bab baharu</item> | ||||
|     </plurals> | ||||
|     <string name="notification_chapters_single">Bab %1$s</string> | ||||
|     <string name="notification_chapters_single_and_more">Bab %1$s dan %2$d lagi</string> | ||||
|     <string name="notification_chapters_multiple">Bab %1$s</string> | ||||
|     <plurals name="notification_chapters_multiple_and_more"> | ||||
|         <item quantity="other">Bab %1$s dan %2$d lagi</item> | ||||
|     </plurals> | ||||
|     <string name="hide_notification_content">Sembunyikan kandungan pemberitahuan</string> | ||||
|     <string name="notification_check_updates">Mencari bab baharu</string> | ||||
|     <string name="pref_disable_battery_optimization">Nyahdaya pengoptimuman bateri</string> | ||||
| @@ -342,17 +333,11 @@ | ||||
|     <string name="battery_optimization_disabled">Pengoptimuman bateri sudah dinyahdayakan</string> | ||||
|     <string name="email">Alamat e-mel</string> | ||||
|     <string name="pref_always_show_chapter_transition">Sentiasa tunjuk peralihan bab</string> | ||||
|     <plurals name="notification_new_chapters_summary"> | ||||
|         <item quantity="other">Untuk entri %d</item> | ||||
|     </plurals> | ||||
|     <string name="action_menu">Menu</string> | ||||
|     <string name="action_newest">Terbaru</string> | ||||
|     <string name="action_oldest">Terlama</string> | ||||
|     <string name="action_move_to_top">Naik ke atas</string> | ||||
|     <string name="action_move_to_bottom">Turun ke bawah</string> | ||||
|     <plurals name="update_check_notification_ext_updates"> | ||||
|         <item quantity="other">%d kemas kini sambungan tersedia</item> | ||||
|     </plurals> | ||||
|     <string name="channel_ext_updates">Kemas kini sambungan</string> | ||||
|     <string name="updating_library">Mengemas kini pustaka</string> | ||||
|     <string name="pref_category_reading">Membaca</string> | ||||
| @@ -384,20 +369,11 @@ | ||||
|     <string name="local_source_help_guide">Panduan penggunaan sumber setempat</string> | ||||
|     <string name="restore_duration">%02d minit, %02d saat</string> | ||||
|     <string name="downloaded_only_summary">Tapis semua entri di dalam pustaka anda</string> | ||||
|     <plurals name="download_queue_summary"> | ||||
|         <item quantity="other">%1$s baki</item> | ||||
|     </plurals> | ||||
|     <string name="gray_background">Kelabu</string> | ||||
|     <string name="viewer">Mod membaca</string> | ||||
|     <string name="pref_category_for_this_series">Untuk siri ini</string> | ||||
|     <string name="pref_true_color_summary">Kurangkan jalinan, tapi memberi kesan kepada prestasi</string> | ||||
|     <plurals name="num_categories"> | ||||
|         <item quantity="other">%d kategori</item> | ||||
|     </plurals> | ||||
|     <string name="battery_optimization_setting_activity_not_found">Tetapan peranti tidak dapat dibuka</string> | ||||
|     <plurals name="restore_completed_message"> | ||||
|         <item quantity="other">Selesai dalam %1$s dengan %2$s ralat</item> | ||||
|     </plurals> | ||||
|     <string name="tracking_info">Menyelaras satu hala untuk kemas kini bab kemajuan dalam sistem penjejakan. Sediakan penjejakan untuk entri individu daripada butang penjejakan mereka.</string> | ||||
|     <string name="pref_refresh_library_covers">Segar semula muka hadapan pustaka</string> | ||||
|     <string name="sort_by_upload_date">Mengikut tarikh muat naik</string> | ||||
| @@ -420,9 +396,6 @@ | ||||
|     <string name="pref_show_reading_mode">Tunjuk mod membaca</string> | ||||
|     <string name="loader_not_implemented_error">Sumber tidak dijumpai</string> | ||||
|     <string name="action_start">Mula</string> | ||||
|     <plurals name="manga_num_chapters"> | ||||
|         <item quantity="other">Jumlah bab: %1$s</item> | ||||
|     </plurals> | ||||
|     <string name="action_disable">Matikan</string> | ||||
|     <string name="requires_app_restart">Mulakan semula aplikasi diperlukan untuk berkesan</string> | ||||
|     <string name="label_network">Rangkaian</string> | ||||
| @@ -440,9 +413,6 @@ | ||||
|     <string name="action_global_search_query">Cari untuk \"%1$s\" menggunakan carian keseluruhan</string> | ||||
|     <string name="pref_category_reading_mode">Mod membaca</string> | ||||
|     <string name="pref_category_theme">Tema</string> | ||||
|     <plurals name="num_trackers"> | ||||
|         <item quantity="other">%d penjejak</item> | ||||
|     </plurals> | ||||
|     <string name="no_pinned_sources">Tiada sumber yang disematkan</string> | ||||
|     <string name="channel_progress">Kemajuan</string> | ||||
|     <string name="channel_complete">Selesai</string> | ||||
| @@ -453,9 +423,6 @@ | ||||
|     <string name="ext_nsfw_warning">Sumber daripada sambungan ini mungkin mengandungi kandungan 18+ tahun keatas</string> | ||||
|     <string name="ext_nsfw_short">18+</string> | ||||
|     <string name="parental_controls_info">Ini tidak menghalang sambungan yang tidak rasmi atau berpotensi tidak menggunakan tetapan yang betul daripada menayangkan kandungan 18+ tahun keatas dalam aplikasi.</string> | ||||
|     <plurals name="missing_chapters_warning"> | ||||
|         <item quantity="other">Melangkau %d bab, sama ada sumber tidak mempunyai bab tersebut, atau ia ditapis keluar</item> | ||||
|     </plurals> | ||||
|     <string name="no_chapters_error">Tiada bab dijumpai</string> | ||||
|     <string name="chapter_settings_updated">Tetapan bab lalai dikemas kini</string> | ||||
|     <string name="set_chapter_settings_as_default">Tetapkan sebagai lalai</string> | ||||
| @@ -565,9 +532,6 @@ | ||||
|     <string name="pref_hide_threshold">Sensitiviti menyembunyikan menu apabila skrol</string> | ||||
|     <string name="label_background_activity">Aktiviti latar belakang</string> | ||||
|     <string name="pref_inverted_colors">Songsang</string> | ||||
|     <plurals name="relative_time"> | ||||
|         <item quantity="other">%1$d hari lalu</item> | ||||
|     </plurals> | ||||
|     <string name="relative_time_today">Hari ini</string> | ||||
|     <string name="theme_tealturquoise">Teal & Turquoise</string> | ||||
|     <string name="confirm_lock_change">Sahkan untuk mengesahkan perubahan</string> | ||||
| @@ -673,9 +637,6 @@ | ||||
|     <string name="theme_tidalwave">Tidal Wave</string> | ||||
|     <string name="download_ahead">Muat turun maju</string> | ||||
|     <string name="download_ahead_info">Hanya berguna sekiranya bab sekarang + seterusnya telah dimuat turun.</string> | ||||
|     <plurals name="next_unread_chapters"> | ||||
|         <item quantity="other">%d bab tidak dibaca seterusnya</item> | ||||
|     </plurals> | ||||
|     <string name="are_you_sure">Adakah anda pasti\?</string> | ||||
|     <string name="multi_lang">Pelbagai</string> | ||||
|     <string name="updates_last_update_info">Terakhir pustaka dikemas kini: %s</string> | ||||
| @@ -742,17 +703,11 @@ | ||||
| \n | ||||
| \nAdakah anda ingin meneruskan\?</string> | ||||
|     <string name="information_required_plain">*diperlukan</string> | ||||
|     <plurals name="download_amount"> | ||||
|         <item quantity="other">%d bab seterusnya</item> | ||||
|     </plurals> | ||||
|     <string name="pref_hide_in_library_items">Sembunyikan entri yang sudah ada di dalam pustaka</string> | ||||
|     <string name="action_copy_to_clipboard">Salin ke papan keratan</string> | ||||
|     <string name="action_update_category">Kemas kini kategori</string> | ||||
|     <string name="split_tall_images">Memisah imej yang tinggi</string> | ||||
|     <string name="overlay_header">Tindanan</string> | ||||
|     <plurals name="missing_chapters"> | ||||
|         <item quantity="other">Hilang %1$s bab</item> | ||||
|     </plurals> | ||||
|     <string name="pref_page_rotate_invert">Terbalikkan orientasi muka surat lebar yang diputarkan</string> | ||||
|     <string name="pref_page_rotate">Putar muka surat lebar agar muat</string> | ||||
|     <string name="pref_debug_info">Maklumat nyahpepijat</string> | ||||
| @@ -770,9 +725,6 @@ | ||||
|     <string name="manga_display_modified_interval_title">Tetapkan untuk kemas kini setiap</string> | ||||
|     <string name="skipped_reason_not_in_release_period">Dilangkau kerana tiada keluaran yang dijangkakan hari ini</string> | ||||
|     <string name="intervals_header">Jarak masa</string> | ||||
|     <plurals name="day"> | ||||
|         <item quantity="other">%d hari</item> | ||||
|     </plurals> | ||||
|     <string name="manga_modify_calculated_interval_title">Tersuai jarak masa</string> | ||||
|     <string name="pref_update_only_in_release_period">Diluar jangkaan masa keluaran</string> | ||||
|     <string name="manga_display_interval_title">Anggaran setiap</string> | ||||
							
								
								
									
										67
									
								
								i18n/src/commonMain/resources/MR/nb-rNO/plurals.xml
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										67
									
								
								i18n/src/commonMain/resources/MR/nb-rNO/plurals.xml
									
									
									
									
									
										Normal file
									
								
							| @@ -0,0 +1,67 @@ | ||||
| <?xml version="1.0" encoding="utf-8"?> | ||||
| <resources> | ||||
|     <plurals name="lock_after_mins"> | ||||
|         <item quantity="one">Etter %1$s minutt</item> | ||||
|         <item quantity="other">Etter %1$s minutter</item> | ||||
|     </plurals> | ||||
|     <plurals name="num_categories"> | ||||
|         <item quantity="one">%d kategori</item> | ||||
|         <item quantity="other">%d kateogrier</item> | ||||
|     </plurals> | ||||
|     <plurals name="notification_chapters_generic"> | ||||
|         <item quantity="one">%1$d nytt kapittel</item> | ||||
|         <item quantity="other">%1$d nye kapitler</item> | ||||
|     </plurals> | ||||
|     <plurals name="notification_new_chapters_summary"> | ||||
|         <item quantity="one">For %d oppføring</item> | ||||
|         <item quantity="other">For %d oppføringer</item> | ||||
|     </plurals> | ||||
|     <plurals name="manga_num_chapters"> | ||||
|         <item quantity="one">%1$s kapittel</item> | ||||
|         <item quantity="other">%1$s kapitler</item> | ||||
|     </plurals> | ||||
|     <plurals name="download_queue_summary"> | ||||
|         <item quantity="one">%1$s gjenstående</item> | ||||
|         <item quantity="other">%1$s gjenstående</item> | ||||
|     </plurals> | ||||
|     <plurals name="restore_completed_message"> | ||||
|         <item quantity="one">Gjort på %1$s med %2$s feil</item> | ||||
|         <item quantity="other">Gjort på %1$s med %2$s feil</item> | ||||
|     </plurals> | ||||
|     <plurals name="num_trackers"> | ||||
|         <item quantity="one">%d tracker</item> | ||||
|         <item quantity="other">%d trackere</item> | ||||
|     </plurals> | ||||
|     <plurals name="missing_chapters_warning"> | ||||
|         <item quantity="one">Hopper over %d kapittel, enten så mangler kilden den eller så har den blitt filtrert ut</item> | ||||
|         <item quantity="other">Hopper over %d kapitler, enten så mangler kilden de eller så har de blitt filtrert ut</item> | ||||
|     </plurals> | ||||
|     <plurals name="update_check_notification_ext_updates"> | ||||
|         <item quantity="one">Utvidelsesoppdatering tilgjengelig</item> | ||||
|         <item quantity="other">%d utvidelsesoppdateringer tilgjengelige</item> | ||||
|     </plurals> | ||||
|     <plurals name="notification_chapters_multiple_and_more"> | ||||
|         <item quantity="one">Kapittel %1$s og 1 til</item> | ||||
|         <item quantity="other">Kapitler %1$s og %2$d til</item> | ||||
|     </plurals> | ||||
|     <plurals name="relative_time"> | ||||
|         <item quantity="one">I går</item> | ||||
|         <item quantity="other">%1$d dager siden</item> | ||||
|     </plurals> | ||||
|     <plurals name="next_unread_chapters"> | ||||
|         <item quantity="one">Neste uleste kapittel</item> | ||||
|         <item quantity="other">Neste %d uleste kapitler</item> | ||||
|     </plurals> | ||||
|     <plurals name="download_amount"> | ||||
|         <item quantity="one">Neste kapittel</item> | ||||
|         <item quantity="other">Neste %d kapitler</item> | ||||
|     </plurals> | ||||
|     <plurals name="missing_chapters"> | ||||
|         <item quantity="one">Mangler %1$s kapittel</item> | ||||
|         <item quantity="other">Mangler %1$s kapitler</item> | ||||
|     </plurals> | ||||
|     <plurals name="day"> | ||||
|         <item quantity="one">%d dag</item> | ||||
|         <item quantity="other">%d dager</item> | ||||
|     </plurals> | ||||
| </resources> | ||||
| @@ -314,10 +314,6 @@ | ||||
|     <string name="lock_when_idle">Lås ved lediggang</string> | ||||
|     <string name="lock_always">Alltid</string> | ||||
|     <string name="lock_never">Aldri</string> | ||||
|     <plurals name="lock_after_mins"> | ||||
|         <item quantity="one">Etter %1$s minutt</item> | ||||
|         <item quantity="other">Etter %1$s minutter</item> | ||||
|     </plurals> | ||||
|     <string name="secure_screen">Sikker skjerm</string> | ||||
|     <string name="channel_new_chapters">Kapitteloppdateringer</string> | ||||
|     <string name="notification_chapters_single">Kapittel %1$s</string> | ||||
| @@ -359,10 +355,6 @@ | ||||
|     <string name="restore_duration">%02d min, %02d sek</string> | ||||
|     <string name="backup_restore_missing_sources">Manglende kilder:</string> | ||||
|     <string name="gray_background">Grå</string> | ||||
|     <plurals name="num_categories"> | ||||
|         <item quantity="one">%d kategori</item> | ||||
|         <item quantity="other">%d kateogrier</item> | ||||
|     </plurals> | ||||
|     <string name="action_display_show_tabs">Vis kategorifaner</string> | ||||
|     <string name="action_display_comfortable_grid">Komfortabelt rutenett</string> | ||||
|     <string name="action_migrate">Flytt</string> | ||||
| @@ -371,28 +363,12 @@ | ||||
|     <string name="tapping_inverted_vertical">Loddrett</string> | ||||
|     <string name="tapping_inverted_horizontal">vannrett</string> | ||||
|     <string name="tapping_inverted_none">Ingen</string> | ||||
|     <plurals name="notification_chapters_generic"> | ||||
|         <item quantity="one">%1$d nytt kapittel</item> | ||||
|         <item quantity="other">%1$d nye kapitler</item> | ||||
|     </plurals> | ||||
|     <plurals name="notification_new_chapters_summary"> | ||||
|         <item quantity="one">For %d oppføring</item> | ||||
|         <item quantity="other">For %d oppføringer</item> | ||||
|     </plurals> | ||||
|     <string name="notification_check_updates">Søker etter nye kapitler</string> | ||||
|     <string name="loader_not_implemented_error">Kilden ikke funnet</string> | ||||
|     <string name="pref_category_for_this_series">For denne serien</string> | ||||
|     <plurals name="manga_num_chapters"> | ||||
|         <item quantity="one">%1$s kapittel</item> | ||||
|         <item quantity="other">%1$s kapitler</item> | ||||
|     </plurals> | ||||
|     <string name="unknown_status">Ukjent status</string> | ||||
|     <string name="unknown_author">Ukjent forfatter</string> | ||||
|     <string name="local_source_help_guide">Lokal kildeguide</string> | ||||
|     <plurals name="download_queue_summary"> | ||||
|         <item quantity="one">%1$s gjenstående</item> | ||||
|         <item quantity="other">%1$s gjenstående</item> | ||||
|     </plurals> | ||||
|     <string name="downloaded_only_summary">Filtrerer alle oppføringer i biblioteket ditt</string> | ||||
|     <string name="check_for_updates">Se etter oppdateringer</string> | ||||
|     <string name="battery_optimization_setting_activity_not_found">Kunne ikke åpne enhetens innstillinger</string> | ||||
| @@ -403,10 +379,6 @@ | ||||
|     <string name="label_network">Nettverk</string> | ||||
|     <string name="restoring_backup_canceled">Avbrutt gjenoppretting</string> | ||||
|     <string name="restore_in_progress">Gjenoppretting allerede underveis</string> | ||||
|     <plurals name="restore_completed_message"> | ||||
|         <item quantity="one">Gjort på %1$s med %2$s feil</item> | ||||
|         <item quantity="other">Gjort på %1$s med %2$s feil</item> | ||||
|     </plurals> | ||||
|     <string name="pref_show_reading_mode">Vis lesemodus</string> | ||||
|     <string name="unofficial_extension_message">Denne utvidelsen kommer ikke fra den offisielle listen.</string> | ||||
|     <string name="action_disable">deaktivere</string> | ||||
| @@ -441,26 +413,10 @@ | ||||
|     <string name="chapter_settings">Kapittelinnstillinger</string> | ||||
|     <string name="set_chapter_settings_as_default">Sett som standard</string> | ||||
|     <string name="no_chapters_error">Fant ingen kapitler</string> | ||||
|     <plurals name="num_trackers"> | ||||
|         <item quantity="one">%d tracker</item> | ||||
|         <item quantity="other">%d trackere</item> | ||||
|     </plurals> | ||||
|     <plurals name="missing_chapters_warning"> | ||||
|         <item quantity="one">Hopper over %d kapittel, enten så mangler kilden den eller så har den blitt filtrert ut</item> | ||||
|         <item quantity="other">Hopper over %d kapitler, enten så mangler kilden de eller så har de blitt filtrert ut</item> | ||||
|     </plurals> | ||||
|     <string name="information_webview_outdated">Oppdater WebView-programmet for bedre kompabilitet</string> | ||||
|     <string name="chapter_settings_updated">Oppdaterte standard kapittelinnstillinger</string> | ||||
|     <string name="confirm_set_chapter_settings">Er du sikker på at du vil lagre disse innstillingene som standard\?</string> | ||||
|     <string name="action_search_settings">Søkeinnstillinger</string> | ||||
|     <plurals name="update_check_notification_ext_updates"> | ||||
|         <item quantity="one">Utvidelsesoppdatering tilgjengelig</item> | ||||
|         <item quantity="other">%d utvidelsesoppdateringer tilgjengelige</item> | ||||
|     </plurals> | ||||
|     <plurals name="notification_chapters_multiple_and_more"> | ||||
|         <item quantity="one">Kapittel %1$s og 1 til</item> | ||||
|         <item quantity="other">Kapitler %1$s og %2$d til</item> | ||||
|     </plurals> | ||||
|     <string name="notification_chapters_multiple">Kapitler %1$s</string> | ||||
|     <string name="download_insufficient_space">Ikke nok lagringsplass til å laste ned kapitler</string> | ||||
|     <string name="also_set_chapter_settings_for_library">Anvend også for allle oppføringer i biblioteket</string> | ||||
| @@ -561,10 +517,6 @@ | ||||
|     <string name="off">Av</string> | ||||
|     <string name="on">På</string> | ||||
|     <string name="restrictions">Begrensninger: %s</string> | ||||
|     <plurals name="relative_time"> | ||||
|         <item quantity="one">I går</item> | ||||
|         <item quantity="other">%1$d dager siden</item> | ||||
|     </plurals> | ||||
|     <string name="relative_time_today">I dag</string> | ||||
|     <string name="theme_monet">Dynamisk</string> | ||||
|     <string name="pref_app_theme">Programdrakt</string> | ||||
| @@ -682,10 +634,6 @@ | ||||
|     <string name="auto_download_while_reading">Last ned automatisk mens du leser</string> | ||||
|     <string name="split_tall_images_summary">Forbedrer leserytelsen</string> | ||||
|     <string name="pref_reset_viewer_flags_summary">Tilbakestiller lesemodus og orientering for alle serier</string> | ||||
|     <plurals name="next_unread_chapters"> | ||||
|         <item quantity="one">Neste uleste kapittel</item> | ||||
|         <item quantity="other">Neste %d uleste kapitler</item> | ||||
|     </plurals> | ||||
|     <string name="action_sort_unread_count">Antall uleste</string> | ||||
|     <string name="delete_category_confirmation">Ønsker du å slette kategorien \"%s\"\?</string> | ||||
|     <string name="delete_category">Slett kategori</string> | ||||
| @@ -755,27 +703,15 @@ | ||||
|     <string name="pref_skip_dupe_chapters">Hopp over dupliserte kapitler</string> | ||||
|     <string name="track_error">%1$s feil: %2$s</string> | ||||
|     <string name="information_required_plain">*påkrevd</string> | ||||
|     <plurals name="download_amount"> | ||||
|         <item quantity="one">Neste kapittel</item> | ||||
|         <item quantity="other">Neste %d kapitler</item> | ||||
|     </plurals> | ||||
|     <string name="pref_hide_in_library_items">Skjul oppføringer som allerede er i biblioteket</string> | ||||
|     <string name="action_copy_to_clipboard">Kopier til utklippstavle</string> | ||||
|     <string name="action_update_category">Oppdater kategori</string> | ||||
|     <string name="split_tall_images">Del opp høye bilder</string> | ||||
|     <string name="overlay_header">Elementer</string> | ||||
|     <plurals name="missing_chapters"> | ||||
|         <item quantity="one">Mangler %1$s kapittel</item> | ||||
|         <item quantity="other">Mangler %1$s kapitler</item> | ||||
|     </plurals> | ||||
|     <string name="pref_page_rotate_invert">Vend orienteringen av roterte brede sider</string> | ||||
|     <string name="pref_page_rotate">Roter brede sider slik at de passer</string> | ||||
|     <string name="pref_debug_info">Debug info</string> | ||||
|     <string name="pref_library_columns_per_row">%d per rad</string> | ||||
|     <plurals name="day"> | ||||
|         <item quantity="one">%d dag</item> | ||||
|         <item quantity="other">%d dager</item> | ||||
|     </plurals> | ||||
|     <string name="manga_display_modified_interval_title">Sett til å oppdatere hver</string> | ||||
|     <string name="skipped_reason_not_in_release_period">Hoppet over fordi ingen utgivelse var forventet i dag</string> | ||||
|     <string name="pref_chapter_swipe">Kapittelsveip</string> | ||||
							
								
								
									
										67
									
								
								i18n/src/commonMain/resources/MR/ne/plurals.xml
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										67
									
								
								i18n/src/commonMain/resources/MR/ne/plurals.xml
									
									
									
									
									
										Normal file
									
								
							| @@ -0,0 +1,67 @@ | ||||
| <?xml version="1.0" encoding="utf-8"?> | ||||
| <resources> | ||||
|     <plurals name="relative_time"> | ||||
|         <item quantity="one">हिजो</item> | ||||
|         <item quantity="other">%1$d दिन अघि</item> | ||||
|     </plurals> | ||||
|     <plurals name="lock_after_mins"> | ||||
|         <item quantity="one">%1$s मिनेट पछि</item> | ||||
|         <item quantity="other">%1$s मिनेट पछि</item> | ||||
|     </plurals> | ||||
|     <plurals name="num_categories"> | ||||
|         <item quantity="one">%d वर्ग</item> | ||||
|         <item quantity="other">%d वर्गहरू</item> | ||||
|     </plurals> | ||||
|     <plurals name="restore_completed_message"> | ||||
|         <item quantity="one">%2$s त्रुटिको साथ %1$s मा सम्पन्न भयो</item> | ||||
|         <item quantity="other">%2$s त्रुटिहरूसँग %1$s मा सम्पन्न भयो</item> | ||||
|     </plurals> | ||||
|     <plurals name="notification_chapters_generic"> | ||||
|         <item quantity="one">%1$d नयाँ अध्याय</item> | ||||
|         <item quantity="other">%1$d नयाँ अध्यायहरू</item> | ||||
|     </plurals> | ||||
|     <plurals name="update_check_notification_ext_updates"> | ||||
|         <item quantity="one">एक्सटेन्शन अपडेट उपलब्ध छ</item> | ||||
|         <item quantity="other">%d एक्सटेन्शन अपडेटहरू उपलब्ध छन्</item> | ||||
|     </plurals> | ||||
|     <plurals name="notification_chapters_multiple_and_more"> | ||||
|         <item quantity="one">अध्याय %1$s र 1 थप</item> | ||||
|         <item quantity="other">अध्याय %1$s र %2$d थप</item> | ||||
|     </plurals> | ||||
|     <plurals name="notification_new_chapters_summary"> | ||||
|         <item quantity="one">%d इन्ट्रीको लागि</item> | ||||
|         <item quantity="other">%d इन्ट्रीहरूको लागि</item> | ||||
|     </plurals> | ||||
|     <plurals name="download_queue_summary"> | ||||
|         <item quantity="one">%1$s बाँकी</item> | ||||
|         <item quantity="other">%1$s बाँकी</item> | ||||
|     </plurals> | ||||
|     <plurals name="manga_num_chapters"> | ||||
|         <item quantity="one">%1$s अध्याय</item> | ||||
|         <item quantity="other">%1$s अध्यायहरू</item> | ||||
|     </plurals> | ||||
|     <plurals name="missing_chapters_warning"> | ||||
|         <item quantity="one">%d अध्याय छोड्दै, या त स्रोत सँग छैन वा यसलाई फिल्टर गरिएको छ</item> | ||||
|         <item quantity="other">%d अध्यायहरू छोड्दै, या त स्रोत सँग छैन वा यसलाई फिल्टर गरिएको छ</item> | ||||
|     </plurals> | ||||
|     <plurals name="num_trackers"> | ||||
|         <item quantity="one">%d ट्र्याकर</item> | ||||
|         <item quantity="other">%d ट्र्याकरहरू</item> | ||||
|     </plurals> | ||||
|     <plurals name="next_unread_chapters"> | ||||
|         <item quantity="one">अर्को नपढिएको अध्याय</item> | ||||
|         <item quantity="other">अर्को %d नपढिएका अध्यायहरू</item> | ||||
|     </plurals> | ||||
|     <plurals name="download_amount"> | ||||
|         <item quantity="one">अर्को अध्याय</item> | ||||
|         <item quantity="other">अर्को %d अध्यायहरू</item> | ||||
|     </plurals> | ||||
|     <plurals name="missing_chapters"> | ||||
|         <item quantity="one">%1$s अध्याय छुटेको छ</item> | ||||
|         <item quantity="other">%1$s अध्यायहरू छुटेका छन्</item> | ||||
|     </plurals> | ||||
|     <plurals name="day"> | ||||
|         <item quantity="one">१ दिन</item> | ||||
|         <item quantity="other">%d दिन</item> | ||||
|     </plurals> | ||||
| </resources> | ||||
| @@ -130,20 +130,12 @@ | ||||
|     <string name="landscape">ल्याण्डस्केप</string> | ||||
|     <string name="pref_library_columns">ग्रिड साइज</string> | ||||
|     <string name="pref_category_display">प्रदर्शन</string> | ||||
|     <plurals name="relative_time"> | ||||
|         <item quantity="one">हिजो</item> | ||||
|         <item quantity="other">%1$d दिन अघि</item> | ||||
|     </plurals> | ||||
|     <string name="relative_time_today">आज</string> | ||||
|     <string name="pref_show_nsfw_source">स्रोत र एक्सटेन्शन सूची मा देखाउनुहोस्</string> | ||||
|     <string name="pref_category_nsfw_content">NSFW (१८+) स्रोतहरू</string> | ||||
|     <string name="hide_notification_content">सूचना को सामग्री लुकाउनुहोस्</string> | ||||
|     <string name="secure_screen_summary">एपहरू स्विच गर्दा \"स्क्रिन सुरक्षित गर्नुहोस्\" ले एप सामग्रीहरू लुकाउँछ र स्क्रिनसटहरू रोक्छ</string> | ||||
|     <string name="secure_screen">स्क्रिन सुरक्षित गर्नुहोस्</string> | ||||
|     <plurals name="lock_after_mins"> | ||||
|         <item quantity="one">%1$s मिनेट पछि</item> | ||||
|         <item quantity="other">%1$s मिनेट पछि</item> | ||||
|     </plurals> | ||||
|     <string name="lock_never">कहिल्यै हैन</string> | ||||
|     <string name="lock_always">सधैं</string> | ||||
|     <string name="lock_when_idle">निष्क्रिय रहेमा लक होस्</string> | ||||
| @@ -246,10 +238,6 @@ | ||||
|     <string name="pref_keep_screen_on">स्क्रिन अन राख्नुहोस्</string> | ||||
|     <string name="pref_create_folder_per_manga_summary">इन्ट्रीहरूको शीर्षक अनुसार फोल्डरहरू सिर्जना गर्दछ</string> | ||||
|     <string name="action_sort_count">कुल इन्ट्रीहरू</string> | ||||
|     <plurals name="num_categories"> | ||||
|         <item quantity="one">%d वर्ग</item> | ||||
|         <item quantity="other">%d वर्गहरू</item> | ||||
|     </plurals> | ||||
|     <string name="label_warning">सावधान</string> | ||||
|     <string name="action_display_language_badge">भाषा</string> | ||||
|     <string name="parental_controls_info">यसले अनौपचारिक वा सम्भावित रूपमा गलत रूपमा फ्ल्याग गरिएका एक्सटेन्शनहरूलाई एप भित्र NSFW (१८+) सामग्री आउन बाट रोक्दैन।</string> | ||||
| @@ -317,10 +305,6 @@ | ||||
|     <string name="enhanced_tracking_info">विशिष्ट स्रोतहरूको लागि परिष्कृत सुविधाहरू प्रदान गर्दछ। तपाईंको पुस्तकालयमा थप्दा इन्ट्री स्वचालित रूपमा ट्र्याक गरिन्छ।</string> | ||||
|     <string name="action_track">ट्र्याक</string> | ||||
|     <string name="restore_completed">रिस्टोर सम्पन्न भयो</string> | ||||
|     <plurals name="restore_completed_message"> | ||||
|         <item quantity="one">%2$s त्रुटिको साथ %1$s मा सम्पन्न भयो</item> | ||||
|         <item quantity="other">%2$s त्रुटिहरूसँग %1$s मा सम्पन्न भयो</item> | ||||
|     </plurals> | ||||
|     <string name="pref_clear_cookies">कुकीहरू खाली गर्नुहोस्</string> | ||||
|     <string name="backup_choice">तपाई के ब्याकअप गर्न चाहनुहुन्छ\?</string> | ||||
|     <string name="creating_backup_error">ब्याकअप असफल भयो</string> | ||||
| @@ -346,10 +330,6 @@ | ||||
|     <string name="restoring_backup_error">ब्याकअप रिस्टोर असफल भयो</string> | ||||
|     <string name="backup_info">तपाईंले ब्याकअपको प्रतिलिपिहरू अन्य ठाउँहरूमा पनि राख्नु पर्छ। ब्याकअपहरूमा कुनै पनि भण्डारण गरिएका पासवर्डहरू सहित संवेदनशील डेटा समावेश हुन सक्छ; साझा गर्दा होसियार ।</string> | ||||
|     <string name="notification_new_chapters">नयाँ अध्यायहरू फेला पर्यो</string> | ||||
|     <plurals name="notification_chapters_generic"> | ||||
|         <item quantity="one">%1$d नयाँ अध्याय</item> | ||||
|         <item quantity="other">%1$d नयाँ अध्यायहरू</item> | ||||
|     </plurals> | ||||
|     <string name="pref_highest">सबैभन्दा उच्च</string> | ||||
|     <string name="disabled">असक्षम</string> | ||||
|     <string name="enhanced_services">परिष्कृत ट्र्याकरहरू</string> | ||||
| @@ -375,10 +355,6 @@ | ||||
|     <string name="fourth_to_last">अन्तिम पढिएको अध्याय भन्दा ३ अध्याय अघि</string> | ||||
|     <string name="pref_download_new">नयाँ अध्यायहरू डाउनलोड गर्नुहोस्</string> | ||||
|     <string name="notification_chapters_multiple">अध्यायहरू %1$s</string> | ||||
|     <plurals name="update_check_notification_ext_updates"> | ||||
|         <item quantity="one">एक्सटेन्शन अपडेट उपलब्ध छ</item> | ||||
|         <item quantity="other">%d एक्सटेन्शन अपडेटहरू उपलब्ध छन्</item> | ||||
|     </plurals> | ||||
|     <string name="download_notifier_text_only_wifi">कुनै Wi-Fi जडान उपलब्ध छैन</string> | ||||
|     <string name="download_notifier_download_paused">डाउनलोडहरू रोकियो</string> | ||||
|     <string name="download_notifier_no_network">कुनै नेटवर्क जडान उपलब्ध छैन</string> | ||||
| @@ -389,10 +365,6 @@ | ||||
|     <string name="pref_remove_exclude_categories">बहिष्कृत वर्गहरू</string> | ||||
|     <string name="fifth_to_last">अन्तिम पढिएको अध्याय भन्दा ४ अध्याय अघि</string> | ||||
|     <string name="pref_download_new_categories_details">\"बहिष्कृत\" वर्गहरूमा इन्ट्री \"समावेश गरिएका\" वर्गहरूमा भए पनि डाउनलोड गरिने छैन।</string> | ||||
|     <plurals name="notification_chapters_multiple_and_more"> | ||||
|         <item quantity="one">अध्याय %1$s र 1 थप</item> | ||||
|         <item quantity="other">अध्याय %1$s र %2$d थप</item> | ||||
|     </plurals> | ||||
|     <string name="pref_create_backup">ब्याकअप सिर्जना गर्नुहोस्</string> | ||||
|     <string name="pref_create_backup_summ">हालको पुस्तकालय रिस्टोर गर्न प्रयोग गर्न सकिन्छ</string> | ||||
|     <string name="cookies_cleared">कुकीहरू खाली गरियो</string> | ||||
| @@ -426,10 +398,6 @@ | ||||
|     <string name="pref_backup_interval">स्वचालित ब्याकअप फ्रिक्वेन्सी</string> | ||||
|     <string name="pref_backup_slots">अधिकतम स्वचालित ब्याकअपहरू</string> | ||||
|     <string name="used_cache">प्रयोग गरिएको: %1$s</string> | ||||
|     <plurals name="notification_new_chapters_summary"> | ||||
|         <item quantity="one">%d इन्ट्रीको लागि</item> | ||||
|         <item quantity="other">%d इन्ट्रीहरूको लागि</item> | ||||
|     </plurals> | ||||
|     <string name="cache_deleted">क्यास खाली गरियो। %1$d फाइलहरू हटाएका छन्</string> | ||||
|     <string name="notification_chapters_single_and_more">अध्याय %1$s र %2$d अरू</string> | ||||
|     <string name="update_check_notification_download_error">डाउनलोड त्रुटि</string> | ||||
| @@ -469,10 +437,6 @@ | ||||
|     <string name="pinned_sources">पिन गरिएको</string> | ||||
|     <string name="action_global_search_query">ग्लोबल रूपमा \"%1$s\" खोज्नुहोस्</string> | ||||
|     <string name="unknown_author">अज्ञात लेखक</string> | ||||
|     <plurals name="download_queue_summary"> | ||||
|         <item quantity="one">%1$s बाँकी</item> | ||||
|         <item quantity="other">%1$s बाँकी</item> | ||||
|     </plurals> | ||||
|     <string name="pref_clear_database">डेटाबेस खाली गर्नुहोस्</string> | ||||
|     <string name="pref_verbose_logging">वर्बोज लगिङ</string> | ||||
|     <string name="username">युजरनेम</string> | ||||
| @@ -508,10 +472,6 @@ | ||||
|     <string name="manga_info_expand">थप</string> | ||||
|     <string name="manga_info_collapse">थोरै</string> | ||||
|     <string name="display_mode_chapter">अध्याय %1$s</string> | ||||
|     <plurals name="manga_num_chapters"> | ||||
|         <item quantity="one">%1$s अध्याय</item> | ||||
|         <item quantity="other">%1$s अध्यायहरू</item> | ||||
|     </plurals> | ||||
|     <string name="show_chapter_number">अध्याय संख्या</string> | ||||
|     <string name="title">शीर्षक</string> | ||||
|     <string name="score">मूल्याङ्कन</string> | ||||
| @@ -527,10 +487,6 @@ | ||||
|     <string name="chapter_downloading_progress">डाउनलोड गर्दै (%1$d/%2$d)</string> | ||||
|     <string name="sort_by_number">अध्याय संख्या द्वारा</string> | ||||
|     <string name="sort_by_upload_date">अपलोड मिति द्वारा</string> | ||||
|     <plurals name="missing_chapters_warning"> | ||||
|         <item quantity="one">%d अध्याय छोड्दै, या त स्रोत सँग छैन वा यसलाई फिल्टर गरिएको छ</item> | ||||
|         <item quantity="other">%d अध्यायहरू छोड्दै, या त स्रोत सँग छैन वा यसलाई फिल्टर गरिएको छ</item> | ||||
|     </plurals> | ||||
|     <string name="migration_help_guide">स्रोत स्थानान्तरण गाइड</string> | ||||
|     <string name="migration_selection_prompt">स्थानान्तरण गर्नको लागि स्रोत चयन गर्नुहोस्</string> | ||||
|     <string name="error_saving_cover">आवरण सेभ गर्दा त्रुटि भयो</string> | ||||
| @@ -574,10 +530,6 @@ | ||||
|     <string name="chapter_error">त्रुटि</string> | ||||
|     <string name="show_title">स्रोत शीर्षक</string> | ||||
|     <string name="sort_by_source">स्रोत द्वारा</string> | ||||
|     <plurals name="num_trackers"> | ||||
|         <item quantity="one">%d ट्र्याकर</item> | ||||
|         <item quantity="other">%d ट्र्याकरहरू</item> | ||||
|     </plurals> | ||||
|     <string name="repeating">फेरी पढ्दै</string> | ||||
|     <string name="transition_current">हालको:</string> | ||||
|     <string name="error_no_match">कुनै मेल फेला परेन</string> | ||||
| @@ -701,10 +653,6 @@ | ||||
|     <string name="fdroid_warning">F-Droid निर्माणहरू आधिकारिक रूपमा समर्थित छैनन्। | ||||
| \nथप जान्न ट्याप गर्नुहोस्।</string> | ||||
|     <string name="crash_screen_title">उफ्!</string> | ||||
|     <plurals name="next_unread_chapters"> | ||||
|         <item quantity="one">अर्को नपढिएको अध्याय</item> | ||||
|         <item quantity="other">अर्को %d नपढिएका अध्यायहरू</item> | ||||
|     </plurals> | ||||
|     <string name="label_read_duration">पढेको अवधि</string> | ||||
|     <string name="pref_reset_viewer_flags_error">रिडर सेटिङहरू रिसेट गर्न सकिएन</string> | ||||
|     <string name="webview_data_deleted">WebView डेटा खाली गरियो</string> | ||||
| @@ -750,10 +698,6 @@ | ||||
|     <string name="pref_reset_user_agent_string">पूर्वनिर्धारित युजर एजेन्ट स्ट्रिङ रिसेट गर्नुहोस्</string> | ||||
|     <string name="seconds_short">%dसे</string> | ||||
|     <string name="minute_short">%dमि</string> | ||||
|     <plurals name="download_amount"> | ||||
|         <item quantity="one">अर्को अध्याय</item> | ||||
|         <item quantity="other">अर्को %d अध्यायहरू</item> | ||||
|     </plurals> | ||||
|     <string name="pref_hide_in_library_items">पहिले नै पुस्तकालयमा रहेका इन्ट्रीहरू लुकाउनुहोस्</string> | ||||
|     <string name="action_copy_to_clipboard">क्लिपबोर्डमा प्रतिलिपि गर्नुहोस्</string> | ||||
|     <string name="pref_invalidate_download_cache">डाउनलोड इन्डेक्स अमान्य गर्नुहोस्</string> | ||||
| @@ -766,10 +710,6 @@ | ||||
|     <string name="overlay_header">ओभरले</string> | ||||
|     <string name="pref_page_rotate">फिट गर्न चौडा पृष्ठहरू घुमाउनुहोस्</string> | ||||
|     <string name="pref_page_rotate_invert">घुमाइएका चौडा पृष्ठहरूको अभिमुखीकरण फ्लिप गर्नुहोस्</string> | ||||
|     <plurals name="missing_chapters"> | ||||
|         <item quantity="one">%1$s अध्याय छुटेको छ</item> | ||||
|         <item quantity="other">%1$s अध्यायहरू छुटेका छन्</item> | ||||
|     </plurals> | ||||
|     <string name="pref_debug_info">Debug जानकारी</string> | ||||
|     <string name="pref_chapter_swipe">अध्याय स्वाइप</string> | ||||
|     <string name="pref_chapter_swipe_end">दायाँ स्वाइप</string> | ||||
| @@ -783,10 +723,6 @@ | ||||
|     <string name="manga_modify_calculated_interval_title">अन्तराल कस्टम गर्नुहोस्</string> | ||||
|     <string name="skipped_reason_not_in_release_period">छोडियो किनभने आज कुनै रिलीज अपेक्षित थिएन</string> | ||||
|     <string name="intervals_header">अन्तरालहरू</string> | ||||
|     <plurals name="day"> | ||||
|         <item quantity="one">१ दिन</item> | ||||
|         <item quantity="other">%d दिन</item> | ||||
|     </plurals> | ||||
|     <string name="action_filter_interval_late">ढिलो १०+ जाँच</string> | ||||
|     <string name="action_filter_interval_passed">जाँच अवधि पार भयो</string> | ||||
|     <string name="action_sort_next_updated">अर्को अपेक्षित अपडेट</string> | ||||
							
								
								
									
										67
									
								
								i18n/src/commonMain/resources/MR/nl/plurals.xml
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										67
									
								
								i18n/src/commonMain/resources/MR/nl/plurals.xml
									
									
									
									
									
										Normal file
									
								
							| @@ -0,0 +1,67 @@ | ||||
| <?xml version="1.0" encoding="utf-8"?> | ||||
| <resources> | ||||
|     <plurals name="lock_after_mins"> | ||||
|         <item quantity="one">Na %1$s minuut</item> | ||||
|         <item quantity="other">Na %1$s minuten</item> | ||||
|     </plurals> | ||||
|     <plurals name="update_check_notification_ext_updates"> | ||||
|         <item quantity="one">Extensie-update beschikbaar</item> | ||||
|         <item quantity="other">%d extensie-updates beschikbaar</item> | ||||
|     </plurals> | ||||
|     <plurals name="notification_chapters_multiple_and_more"> | ||||
|         <item quantity="one">Hoofdstukken %1$s en 1 meer</item> | ||||
|         <item quantity="other">Hoofdstukken %1$s en %2$d meer</item> | ||||
|     </plurals> | ||||
|     <plurals name="notification_chapters_generic"> | ||||
|         <item quantity="one">%1$d nieuw hoofdstuk</item> | ||||
|         <item quantity="other">%1$d nieuwe hoofdstukken</item> | ||||
|     </plurals> | ||||
|     <plurals name="notification_new_chapters_summary"> | ||||
|         <item quantity="one">Voor %d titel</item> | ||||
|         <item quantity="other">Voor %d titels</item> | ||||
|     </plurals> | ||||
|     <plurals name="download_queue_summary"> | ||||
|         <item quantity="one">%1$s resterend</item> | ||||
|         <item quantity="other">%1$s resterende</item> | ||||
|     </plurals> | ||||
|     <plurals name="restore_completed_message"> | ||||
|         <item quantity="one">Voltooid in %1$s met %2$s foutmelding</item> | ||||
|         <item quantity="other">Voltooid in %1$s met %2$s foutmeldingen</item> | ||||
|     </plurals> | ||||
|     <plurals name="num_categories"> | ||||
|         <item quantity="one">%d categorie</item> | ||||
|         <item quantity="other">%d categorieën</item> | ||||
|     </plurals> | ||||
|     <plurals name="manga_num_chapters"> | ||||
|         <item quantity="one">%1$s hoofdstuk</item> | ||||
|         <item quantity="other">%1$s hoofdstukken</item> | ||||
|     </plurals> | ||||
|     <plurals name="num_trackers"> | ||||
|         <item quantity="one">%d tracker</item> | ||||
|         <item quantity="other">%d trackers</item> | ||||
|     </plurals> | ||||
|     <plurals name="missing_chapters_warning"> | ||||
|         <item quantity="one">1 hoofdstuk is overgeslagen, de bron mist 1 hoofdstuk of het is uitgefilterd</item> | ||||
|         <item quantity="other">%d hoofdstukken zijn overgeslagen, de bron mist ze of ze zijn uitgefilterd</item> | ||||
|     </plurals> | ||||
|     <plurals name="relative_time"> | ||||
|         <item quantity="one">Gisteren</item> | ||||
|         <item quantity="other">%1$d dagen geleden</item> | ||||
|     </plurals> | ||||
|     <plurals name="next_unread_chapters"> | ||||
|         <item quantity="one">Volgende ongelezen hoofdstuk</item> | ||||
|         <item quantity="other">Volgende aantal %d ongelezen hoofdstukken</item> | ||||
|     </plurals> | ||||
|     <plurals name="download_amount"> | ||||
|         <item quantity="one">Volgend hoofdstuk</item> | ||||
|         <item quantity="other">Volgende %d hoofdstukken</item> | ||||
|     </plurals> | ||||
|     <plurals name="day"> | ||||
|         <item quantity="one">1 dag</item> | ||||
|         <item quantity="other">%d dagen</item> | ||||
|     </plurals> | ||||
|     <plurals name="missing_chapters"> | ||||
|         <item quantity="one">%1$s hoofdstuk mist</item> | ||||
|         <item quantity="other">%1$s hoofdstukken missen</item> | ||||
|     </plurals> | ||||
| </resources> | ||||
| @@ -315,10 +315,6 @@ | ||||
|     <string name="lock_when_idle">Vergrendelen indien niet in gebruik</string> | ||||
|     <string name="lock_always">Altijd</string> | ||||
|     <string name="lock_never">Nooit</string> | ||||
|     <plurals name="lock_after_mins"> | ||||
|         <item quantity="one">Na %1$s minuut</item> | ||||
|         <item quantity="other">Na %1$s minuten</item> | ||||
|     </plurals> | ||||
|     <string name="secure_screen">Scherm beveiligen</string> | ||||
|     <string name="ext_updates_pending">Updates in de wachtrij</string> | ||||
|     <string name="information_cloudflare_bypass_failure">Kon Cloudflare niet omzeilen</string> | ||||
| @@ -338,25 +334,9 @@ | ||||
|     <string name="restore_in_progress">Er wordt al een back-up hersteld</string> | ||||
|     <string name="channel_ext_updates">Extensie-updates</string> | ||||
|     <string name="information_webview_required">WebView is vereist voor Tachiyomi</string> | ||||
|     <plurals name="update_check_notification_ext_updates"> | ||||
|         <item quantity="one">Extensie-update beschikbaar</item> | ||||
|         <item quantity="other">%d extensie-updates beschikbaar</item> | ||||
|     </plurals> | ||||
|     <plurals name="notification_chapters_multiple_and_more"> | ||||
|         <item quantity="one">Hoofdstukken %1$s en 1 meer</item> | ||||
|         <item quantity="other">Hoofdstukken %1$s en %2$d meer</item> | ||||
|     </plurals> | ||||
|     <string name="notification_chapters_multiple">Hoofdstukken %1$s</string> | ||||
|     <string name="notification_chapters_single_and_more">Hoofdstuk %1$s en %2$d meer</string> | ||||
|     <string name="notification_chapters_single">Hoofdstuk %1$s</string> | ||||
|     <plurals name="notification_chapters_generic"> | ||||
|         <item quantity="one">%1$d nieuw hoofdstuk</item> | ||||
|         <item quantity="other">%1$d nieuwe hoofdstukken</item> | ||||
|     </plurals> | ||||
|     <plurals name="notification_new_chapters_summary"> | ||||
|         <item quantity="one">Voor %d titel</item> | ||||
|         <item quantity="other">Voor %d titels</item> | ||||
|     </plurals> | ||||
|     <string name="notification_check_updates">Zoeken naar nieuwe hoofdstukken</string> | ||||
|     <string name="recent_manga_time">Hfst. %1$s - %2$s</string> | ||||
|     <string name="updating_library">Bibliotheek bijwerken</string> | ||||
| @@ -369,10 +349,6 @@ | ||||
|     <string name="pinned_sources">Vastgepind</string> | ||||
|     <string name="last_used_source">Laatst gebruikt</string> | ||||
|     <string name="email">E-mailadres</string> | ||||
|     <plurals name="download_queue_summary"> | ||||
|         <item quantity="one">%1$s resterend</item> | ||||
|         <item quantity="other">%1$s resterende</item> | ||||
|     </plurals> | ||||
|     <string name="downloaded_only_summary">Filtert alle items in de bibliotheek</string> | ||||
|     <string name="label_downloaded_only">Alleen gedownloade</string> | ||||
|     <string name="check_for_updates">Controleer op updates</string> | ||||
| @@ -395,17 +371,9 @@ | ||||
|     <string name="viewer">Leesmodus</string> | ||||
|     <string name="pref_category_for_this_series">Voor deze serie</string> | ||||
|     <string name="battery_optimization_setting_activity_not_found">Kon de apparaatinstellingen niet openen</string> | ||||
|     <plurals name="restore_completed_message"> | ||||
|         <item quantity="one">Voltooid in %1$s met %2$s foutmelding</item> | ||||
|         <item quantity="other">Voltooid in %1$s met %2$s foutmeldingen</item> | ||||
|     </plurals> | ||||
|     <string name="pref_webtoon_side_padding">Opvulling zijkant</string> | ||||
|     <string name="gray_background">Grijs</string> | ||||
|     <string name="pref_true_color_summary">Vermindert kleurstrepen, maar beïnvloedt de prestaties</string> | ||||
|     <plurals name="num_categories"> | ||||
|         <item quantity="one">%d categorie</item> | ||||
|         <item quantity="other">%d categorieën</item> | ||||
|     </plurals> | ||||
|     <string name="pref_refresh_library_covers">Omslagen van manga in bibliotheek bijwerken</string> | ||||
|     <string name="tracking_info">Eenzijdige synchronisatie om voortang van hoofdstukken bij te werken bij externe trackerdiensten. Stel tracking in bij individuele items via de \"Tracking\"-knop.</string> | ||||
|     <string name="unofficial_extension_message">Deze extensie behoort niet tot de officiële Tachiyomi extensielijst.</string> | ||||
| @@ -429,10 +397,6 @@ | ||||
|     <string name="action_start">Beginnen</string> | ||||
|     <string name="action_disable_all">Alles uitzetten</string> | ||||
|     <string name="action_enable_all">Alles aanzetten</string> | ||||
|     <plurals name="manga_num_chapters"> | ||||
|         <item quantity="one">%1$s hoofdstuk</item> | ||||
|         <item quantity="other">%1$s hoofdstukken</item> | ||||
|     </plurals> | ||||
|     <string name="requires_app_restart">Herstart van de app nodig om van kracht te worden</string> | ||||
|     <string name="label_network">Netwerken</string> | ||||
|     <string name="tapping_inverted_both">Beiden</string> | ||||
| @@ -449,10 +413,6 @@ | ||||
|     <string name="pref_category_reading_mode">Leesmodus</string> | ||||
|     <string name="pref_category_theme">Thema</string> | ||||
|     <string name="action_sort_date_added">Datum toegevoegd</string> | ||||
|     <plurals name="num_trackers"> | ||||
|         <item quantity="one">%d tracker</item> | ||||
|         <item quantity="other">%d trackers</item> | ||||
|     </plurals> | ||||
|     <string name="no_pinned_sources">Je hebt geen vastgepinde bronnen</string> | ||||
|     <string name="channel_complete">Voltooid</string> | ||||
|     <string name="channel_progress">Voortgang</string> | ||||
| @@ -463,10 +423,6 @@ | ||||
|     <string name="ext_nsfw_warning">Kan NSFW-inhoud (18+) bevatten</string> | ||||
|     <string name="ext_nsfw_short">18+</string> | ||||
|     <string name="parental_controls_info">Dit voorkomt niet dat onofficiële of mogelijk incorrect gemarkeerde extensies NSFW-inhoud (18+) kunnen laten zien in de app.</string> | ||||
|     <plurals name="missing_chapters_warning"> | ||||
|         <item quantity="one">1 hoofdstuk is overgeslagen, de bron mist 1 hoofdstuk of het is uitgefilterd</item> | ||||
|         <item quantity="other">%d hoofdstukken zijn overgeslagen, de bron mist ze of ze zijn uitgefilterd</item> | ||||
|     </plurals> | ||||
|     <string name="no_chapters_error">Geen hoofdstukken gevonden</string> | ||||
|     <string name="chapter_settings_updated">Standaard hoofdstukinstellingen bijgewerkt</string> | ||||
|     <string name="set_chapter_settings_as_default">Instellen als standaard</string> | ||||
| @@ -581,10 +537,6 @@ | ||||
|     <string name="pref_highest">Hoogste</string> | ||||
|     <string name="pref_hide_threshold">Sensitiviteit voor het verbergen van het menu tijdens scrollen</string> | ||||
|     <string name="pref_inverted_colors">Omgekeerd</string> | ||||
|     <plurals name="relative_time"> | ||||
|         <item quantity="one">Gisteren</item> | ||||
|         <item quantity="other">%1$d dagen geleden</item> | ||||
|     </plurals> | ||||
|     <string name="relative_time_today">Vandaag</string> | ||||
|     <string name="theme_tealturquoise">Blauwgroen & Turkoois</string> | ||||
|     <string name="pref_category_appearance">Uiterlijk</string> | ||||
| @@ -663,10 +615,6 @@ | ||||
|     <string name="action_sort_unread_count">Ongelezen aantal</string> | ||||
|     <string name="download_ahead_info">Werkt alleen bij vermeldingen in de bibliotheek en als het huidige hoofdstuk en het volgende alreeds gedownload zijn</string> | ||||
|     <string name="pref_user_agent_string">Standaard \'user-agent-string\'</string> | ||||
|     <plurals name="next_unread_chapters"> | ||||
|         <item quantity="one">Volgende ongelezen hoofdstuk</item> | ||||
|         <item quantity="other">Volgende aantal %d ongelezen hoofdstukken</item> | ||||
|     </plurals> | ||||
|     <string name="action_search_hint">Zoek…</string> | ||||
|     <string name="missing_storage_permission">Opslag bevoegdheden niet verleent</string> | ||||
|     <string name="action_display_show_continue_reading_button">Knop om lezen te hervatten weergeven</string> | ||||
| @@ -729,10 +677,6 @@ | ||||
|     <string name="source_empty_screen">Geen bron gevonden</string> | ||||
|     <string name="crash_screen_title">Oops!</string> | ||||
|     <string name="pref_tracking_summary">1-directie voortgang sync</string> | ||||
|     <plurals name="download_amount"> | ||||
|         <item quantity="one">Volgend hoofdstuk</item> | ||||
|         <item quantity="other">Volgende %d hoofdstukken</item> | ||||
|     </plurals> | ||||
|     <string name="track_remove_start_date_conf_text">Dit gaat je eerder geselcteerde startdatum %s verwijderen</string> | ||||
|     <string name="delete_downloaded">Download verwijderen</string> | ||||
|     <string name="skipped_reason_not_always_update">Overgeslagen omdat serie geen updates vereist.</string> | ||||
| @@ -762,15 +706,7 @@ | ||||
|     <string name="crash_screen_restart_application">Herstart de applicatie</string> | ||||
|     <string name="manga_modify_calculated_interval_title">Interval aanpassen</string> | ||||
|     <string name="download_cache_invalidated">Download Index geïnvalideerd</string> | ||||
|     <plurals name="day"> | ||||
|         <item quantity="one">1 dag</item> | ||||
|         <item quantity="other">%d dagen</item> | ||||
|     </plurals> | ||||
|     <string name="pref_invalidate_download_cache">Maak de downloadindex ongeldig</string> | ||||
|     <plurals name="missing_chapters"> | ||||
|         <item quantity="one">%1$s hoofdstuk mist</item> | ||||
|         <item quantity="other">%1$s hoofdstukken missen</item> | ||||
|     </plurals> | ||||
|     <string name="action_ok">OK</string> | ||||
|     <string name="pref_chapter_swipe_start">Swipe naar de linker actie</string> | ||||
|     <string name="intervals_header">Intervallen</string> | ||||
							
								
								
									
										19
									
								
								i18n/src/commonMain/resources/MR/nn/plurals.xml
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										19
									
								
								i18n/src/commonMain/resources/MR/nn/plurals.xml
									
									
									
									
									
										Normal file
									
								
							| @@ -0,0 +1,19 @@ | ||||
| <?xml version="1.0" encoding="utf-8"?> | ||||
| <resources> | ||||
|     <plurals name="lock_after_mins"> | ||||
|         <item quantity="one">Etter %1$s minutt</item> | ||||
|         <item quantity="other">Etter %1$s minuttar</item> | ||||
|     </plurals> | ||||
|     <plurals name="relative_time"> | ||||
|         <item quantity="one">I går</item> | ||||
|         <item quantity="other">%1$d dagar sidan</item> | ||||
|     </plurals> | ||||
|     <plurals name="num_categories"> | ||||
|         <item quantity="one">%d kategori</item> | ||||
|         <item quantity="other">%d kategoriar</item> | ||||
|     </plurals> | ||||
|     <plurals name="restore_completed_message"> | ||||
|         <item quantity="one">Gjort på %1$s med %2$s feil</item> | ||||
|         <item quantity="other">Gjort på %1$s med %2$s feil</item> | ||||
|     </plurals> | ||||
| </resources> | ||||
| @@ -101,16 +101,8 @@ | ||||
|     <string name="pref_category_security">Sikkerheit</string> | ||||
|     <string name="lock_always">Alltid</string> | ||||
|     <string name="lock_never">Aldri</string> | ||||
|     <plurals name="lock_after_mins"> | ||||
|         <item quantity="one">Etter %1$s minutt</item> | ||||
|         <item quantity="other">Etter %1$s minuttar</item> | ||||
|     </plurals> | ||||
|     <string name="pref_category_nsfw_content">NSFW (18+) kjeder</string> | ||||
|     <string name="relative_time_today">I dag</string> | ||||
|     <plurals name="relative_time"> | ||||
|         <item quantity="one">I går</item> | ||||
|         <item quantity="other">%1$d dagar sidan</item> | ||||
|     </plurals> | ||||
|     <string name="pref_category_display">Skjerm</string> | ||||
|     <string name="pref_library_columns">Element per rad</string> | ||||
|     <string name="pref_library_update_interval">Automatisk oppdateringar</string> | ||||
| @@ -122,10 +114,6 @@ | ||||
|     <string name="pref_library_update_refresh_metadata_summary">Sjå etter nye omslag og detaljar ved oppdatering av bibliotek</string> | ||||
|     <string name="default_category">Standard kategori</string> | ||||
|     <string name="default_category_summary">Alltid spør</string> | ||||
|     <plurals name="num_categories"> | ||||
|         <item quantity="one">%d kategori</item> | ||||
|         <item quantity="other">%d kategoriar</item> | ||||
|     </plurals> | ||||
|     <string name="pref_library_update_categories_details">Manga i utelatne kategoriar vil ikkje bli oppdatert sjølv om dei òg er i inkluderte kategoriar.</string> | ||||
|     <string name="all">Alle</string> | ||||
|     <string name="none">Ingen</string> | ||||
| @@ -209,10 +197,6 @@ | ||||
|     <string name="pref_restore_backup_summ">Gjenopprett bibliotek frå reservekopifil</string> | ||||
|     <string name="restore_completed">Gjenoppretting fullført</string> | ||||
|     <string name="restore_duration">%02d min, %02d sek</string> | ||||
|     <plurals name="restore_completed_message"> | ||||
|         <item quantity="one">Gjort på %1$s med %2$s feil</item> | ||||
|         <item quantity="other">Gjort på %1$s med %2$s feil</item> | ||||
|     </plurals> | ||||
|     <string name="backup_choice">Kva ønskjer du å ta reservekopi av\?</string> | ||||
|     <string name="creating_backup">Lagar reservekopi</string> | ||||
|     <string name="restoring_backup">Gjenoppretter reservekopi</string> | ||||
							
								
								
									
										99
									
								
								i18n/src/commonMain/resources/MR/pl/plurals.xml
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										99
									
								
								i18n/src/commonMain/resources/MR/pl/plurals.xml
									
									
									
									
									
										Normal file
									
								
							| @@ -0,0 +1,99 @@ | ||||
| <?xml version="1.0" encoding="utf-8"?> | ||||
| <resources> | ||||
|     <plurals name="lock_after_mins"> | ||||
|         <item quantity="one">Po %1$s minucie</item> | ||||
|         <item quantity="few">Po %1$s minutach</item> | ||||
|         <item quantity="many">Po %1$s minutach</item> | ||||
|         <item quantity="other">Po %1$s minutach</item> | ||||
|     </plurals> | ||||
|     <plurals name="num_categories"> | ||||
|         <item quantity="one">%d kategoria</item> | ||||
|         <item quantity="few">%d kategorie</item> | ||||
|         <item quantity="many">%d kategorii</item> | ||||
|         <item quantity="other">%d kategorii</item> | ||||
|     </plurals> | ||||
|     <plurals name="update_check_notification_ext_updates"> | ||||
|         <item quantity="one">Dostępna aktualizacja rozszerzenia</item> | ||||
|         <item quantity="few">Dostępne %d aktualizacje rozszerzeń</item> | ||||
|         <item quantity="many">Dostępne %d aktualizacji rozszerzeń</item> | ||||
|         <item quantity="other">Dostępne %d aktualizacji rozszerzeń</item> | ||||
|     </plurals> | ||||
|     <plurals name="notification_chapters_multiple_and_more"> | ||||
|         <item quantity="one">Rozdziały %1$s i jeden więcej</item> | ||||
|         <item quantity="few">Rozdziały %1$s i %2$d</item> | ||||
|         <item quantity="many">Rozdziały %1$s i %2$d</item> | ||||
|         <item quantity="other">Rozdziały %1$s i %2$d</item> | ||||
|     </plurals> | ||||
|     <plurals name="notification_chapters_generic"> | ||||
|         <item quantity="one">%1$d nowy rozdział</item> | ||||
|         <item quantity="few">%1$d nowe rozdziały</item> | ||||
|         <item quantity="many">%1$d nowych rozdziałów</item> | ||||
|         <item quantity="other">%1$d nowych rozdziałów</item> | ||||
|     </plurals> | ||||
|     <plurals name="notification_new_chapters_summary"> | ||||
|         <item quantity="one">Dla %d wpisu</item> | ||||
|         <item quantity="few">Dla %d wpisów</item> | ||||
|         <item quantity="many">Dla %d wpisów</item> | ||||
|         <item quantity="other">Dla %d wpisów</item> | ||||
|     </plurals> | ||||
|     <plurals name="download_queue_summary"> | ||||
|         <item quantity="one">Pozostał %1$s</item> | ||||
|         <item quantity="few">Pozostało %1$s</item> | ||||
|         <item quantity="many">Pozostało %1$s</item> | ||||
|         <item quantity="other">Pozostało %1$s</item> | ||||
|     </plurals> | ||||
|     <plurals name="restore_completed_message"> | ||||
|         <item quantity="one">Wykonano w %1$s z %2$s błędem</item> | ||||
|         <item quantity="few">Wykonano w %1$s z %2$s błędami</item> | ||||
|         <item quantity="many">Wykonano w %1$s z %2$s błędami</item> | ||||
|         <item quantity="other">Wykonano w %1$s z %2$s błędami</item> | ||||
|     </plurals> | ||||
|     <plurals name="manga_num_chapters"> | ||||
|         <item quantity="one">%1$s rozdział</item> | ||||
|         <item quantity="few">%1$s rozdziały</item> | ||||
|         <item quantity="many">%1$s rozdziałów</item> | ||||
|         <item quantity="other">%1$s rozdziałów</item> | ||||
|     </plurals> | ||||
|     <plurals name="missing_chapters_warning"> | ||||
|         <item quantity="one">%d brakujący rozdział</item> | ||||
|         <item quantity="few">%d brakujące rozdziały</item> | ||||
|         <item quantity="many">%d brakujących rozdziałów</item> | ||||
|         <item quantity="other">%d brakujących rozdziałów</item> | ||||
|     </plurals> | ||||
|     <plurals name="num_trackers"> | ||||
|         <item quantity="one">1 serwis śledzący</item> | ||||
|         <item quantity="few">%d serwisy śledzące</item> | ||||
|         <item quantity="many">%d serwisów śledzących</item> | ||||
|         <item quantity="other">%d serwisów śledzących</item> | ||||
|     </plurals> | ||||
|     <plurals name="relative_time"> | ||||
|         <item quantity="one">Wczoraj</item> | ||||
|         <item quantity="few">%1$d dni temu</item> | ||||
|         <item quantity="many">%1$d dni temu</item> | ||||
|         <item quantity="other">%1$d dni temu</item> | ||||
|     </plurals> | ||||
|     <plurals name="next_unread_chapters"> | ||||
|         <item quantity="one">Następny nieprzeczytany rozdział</item> | ||||
|         <item quantity="few">Następne %d nieprzeczytane rozdziały</item> | ||||
|         <item quantity="many">Następne %d nieprzeczytanych rozdziałów</item> | ||||
|         <item quantity="other">Następne %d nieprzeczytanych rozdziałów</item> | ||||
|     </plurals> | ||||
|     <plurals name="download_amount"> | ||||
|         <item quantity="one">Następny rozdział</item> | ||||
|         <item quantity="few">Następne %d rozdziały</item> | ||||
|         <item quantity="many">Następne %d rozdziałów</item> | ||||
|         <item quantity="other">Następne %d rozdziałów</item> | ||||
|     </plurals> | ||||
|     <plurals name="missing_chapters"> | ||||
|         <item quantity="one">Brakujący %1$s rozdział</item> | ||||
|         <item quantity="few">Brakujące %1$s rozdziały</item> | ||||
|         <item quantity="many">Brakuje %1$s rozdziałów</item> | ||||
|         <item quantity="other">Brakuje %1$s rozdziałów</item> | ||||
|     </plurals> | ||||
|     <plurals name="day"> | ||||
|         <item quantity="one">1 dzień</item> | ||||
|         <item quantity="few">%d dni</item> | ||||
|         <item quantity="many">%d dni</item> | ||||
|         <item quantity="other">%d dni</item> | ||||
|     </plurals> | ||||
| </resources> | ||||
| @@ -312,12 +312,6 @@ | ||||
|     <string name="information_cloudflare_bypass_failure">Nie udało się obejść Cloudflare</string> | ||||
|     <string name="label_more">Więcej</string> | ||||
|     <string name="secure_screen_summary">Ukrywa zawartość ekranu przy przełączaniu między aplikacjami i blokuj zrzuty ekranu</string> | ||||
|     <plurals name="lock_after_mins"> | ||||
|         <item quantity="one">Po %1$s minucie</item> | ||||
|         <item quantity="few">Po %1$s minutach</item> | ||||
|         <item quantity="many">Po %1$s minutach</item> | ||||
|         <item quantity="other">Po %1$s minutach</item> | ||||
|     </plurals> | ||||
|     <string name="lock_never">Nigdy</string> | ||||
|     <string name="lock_always">Zawsze</string> | ||||
|     <string name="lock_with_biometrics">Wymagaj odblokowania</string> | ||||
| @@ -358,12 +352,6 @@ | ||||
|     <string name="gray_background">Szary</string> | ||||
|     <string name="pref_true_color_summary">Ogranicza banding, ale może mieć wpływ na wydajność</string> | ||||
|     <string name="ext_updates_pending">Dostępne aktualizacje</string> | ||||
|     <plurals name="num_categories"> | ||||
|         <item quantity="one">%d kategoria</item> | ||||
|         <item quantity="few">%d kategorie</item> | ||||
|         <item quantity="many">%d kategorii</item> | ||||
|         <item quantity="other">%d kategorii</item> | ||||
|     </plurals> | ||||
|     <string name="secure_screen">Ukryj ekran</string> | ||||
|     <string name="action_unpin">Odepnij</string> | ||||
|     <string name="action_pin">Przypnij</string> | ||||
| @@ -375,41 +363,11 @@ | ||||
|     <string name="tracking_info">Przesyłanie postępu czytania do zewnętrznego serwisu. Ustaw śledzenie guzikiem \"Śledzenie\" w wybranych tytułach.</string> | ||||
|     <string name="channel_ext_updates">Aktualizacje rozszerzeń</string> | ||||
|     <string name="information_webview_required">WebView jest wymagany do poprawnego działania aplikacji</string> | ||||
|     <plurals name="update_check_notification_ext_updates"> | ||||
|         <item quantity="one">Dostępna aktualizacja rozszerzenia</item> | ||||
|         <item quantity="few">Dostępne %d aktualizacje rozszerzeń</item> | ||||
|         <item quantity="many">Dostępne %d aktualizacji rozszerzeń</item> | ||||
|         <item quantity="other">Dostępne %d aktualizacji rozszerzeń</item> | ||||
|     </plurals> | ||||
|     <plurals name="notification_chapters_multiple_and_more"> | ||||
|         <item quantity="one">Rozdziały %1$s i jeden więcej</item> | ||||
|         <item quantity="few">Rozdziały %1$s i %2$d</item> | ||||
|         <item quantity="many">Rozdziały %1$s i %2$d</item> | ||||
|         <item quantity="other">Rozdziały %1$s i %2$d</item> | ||||
|     </plurals> | ||||
|     <string name="notification_chapters_multiple">Rozdziały %1$s</string> | ||||
|     <string name="notification_chapters_single_and_more">Rozdział %1$s i %2$d więcej</string> | ||||
|     <plurals name="notification_chapters_generic"> | ||||
|         <item quantity="one">%1$d nowy rozdział</item> | ||||
|         <item quantity="few">%1$d nowe rozdziały</item> | ||||
|         <item quantity="many">%1$d nowych rozdziałów</item> | ||||
|         <item quantity="other">%1$d nowych rozdziałów</item> | ||||
|     </plurals> | ||||
|     <plurals name="notification_new_chapters_summary"> | ||||
|         <item quantity="one">Dla %d wpisu</item> | ||||
|         <item quantity="few">Dla %d wpisów</item> | ||||
|         <item quantity="many">Dla %d wpisów</item> | ||||
|         <item quantity="other">Dla %d wpisów</item> | ||||
|     </plurals> | ||||
|     <string name="notification_check_updates">Poszukiwanie nowych rozdziałów</string> | ||||
|     <string name="viewer">Tryb czytania</string> | ||||
|     <string name="local_source_help_guide">Źródła lokalne - poradnik</string> | ||||
|     <plurals name="download_queue_summary"> | ||||
|         <item quantity="one">Pozostał %1$s</item> | ||||
|         <item quantity="few">Pozostało %1$s</item> | ||||
|         <item quantity="many">Pozostało %1$s</item> | ||||
|         <item quantity="other">Pozostało %1$s</item> | ||||
|     </plurals> | ||||
|     <string name="pref_cutout_short">Pokazuj zawartość w strefie odcięcia</string> | ||||
|     <string name="action_view_chapters">Przeglądaj rozdziały</string> | ||||
|     <string name="add_tracking">Dodaj śledzenie</string> | ||||
| @@ -417,12 +375,6 @@ | ||||
|     <string name="pref_refresh_library_covers">Odśwież okładki w bibliotece</string> | ||||
|     <string name="restoring_backup_error">Przywracanie kopii zapasowej zakończone niepowodzeniem</string> | ||||
|     <string name="creating_backup_error">Tworzenie kopii zapasowej zakończone niepowodzeniem</string> | ||||
|     <plurals name="restore_completed_message"> | ||||
|         <item quantity="one">Wykonano w %1$s z %2$s błędem</item> | ||||
|         <item quantity="few">Wykonano w %1$s z %2$s błędami</item> | ||||
|         <item quantity="many">Wykonano w %1$s z %2$s błędami</item> | ||||
|         <item quantity="other">Wykonano w %1$s z %2$s błędami</item> | ||||
|     </plurals> | ||||
|     <string name="pref_category_reading">Czytane</string> | ||||
|     <string name="unofficial_extension_message">Te rozszerzenie nie jest na liście oficjalnych rozszerzeń.</string> | ||||
|     <string name="ext_unofficial">Nieoficjalne</string> | ||||
| @@ -453,12 +405,6 @@ | ||||
|     <string name="tapping_inverted_none">Brak</string> | ||||
|     <string name="pref_read_with_tapping_inverted">Odwróć strefy kliknięcia</string> | ||||
|     <string name="download_insufficient_space">Nie udało się pobrać rozdziałów z powodu braku miejsca na urządzeniu</string> | ||||
|     <plurals name="manga_num_chapters"> | ||||
|         <item quantity="one">%1$s rozdział</item> | ||||
|         <item quantity="few">%1$s rozdziały</item> | ||||
|         <item quantity="many">%1$s rozdziałów</item> | ||||
|         <item quantity="other">%1$s rozdziałów</item> | ||||
|     </plurals> | ||||
|     <string name="unknown_status">Nieznany status</string> | ||||
|     <string name="unknown_author">Nieznany autor</string> | ||||
|     <string name="action_global_search_query">Szukaj \"%1$s\" globalnie</string> | ||||
| @@ -475,19 +421,7 @@ | ||||
|     <string name="channel_progress">Postęp</string> | ||||
|     <string name="chapter_settings_updated">Zaktualizowano domyślne ustawienia rozdziałów</string> | ||||
|     <string name="migration_help_guide">Instrukcja przenoszenia źródeł</string> | ||||
|     <plurals name="missing_chapters_warning"> | ||||
|         <item quantity="one">%d brakujący rozdział</item> | ||||
|         <item quantity="few">%d brakujące rozdziały</item> | ||||
|         <item quantity="many">%d brakujących rozdziałów</item> | ||||
|         <item quantity="other">%d brakujących rozdziałów</item> | ||||
|     </plurals> | ||||
|     <string name="share_page_info">%1$s: %2$s, strona %3$d</string> | ||||
|     <plurals name="num_trackers"> | ||||
|         <item quantity="one">1 serwis śledzący</item> | ||||
|         <item quantity="few">%d serwisy śledzące</item> | ||||
|         <item quantity="many">%d serwisów śledzących</item> | ||||
|         <item quantity="other">%d serwisów śledzących</item> | ||||
|     </plurals> | ||||
|     <string name="no_chapters_error">Nie znaleziono rozdziałów</string> | ||||
|     <string name="set_chapter_settings_as_default">Ustaw jako domyślne</string> | ||||
|     <string name="also_set_chapter_settings_for_library">Dodatkowo zastosuj do wszystkich wpisów w mojej bibliotece</string> | ||||
| @@ -589,12 +523,6 @@ | ||||
|     <string name="theme_strawberrydaiquiri">Truskawkowe daiquiri</string> | ||||
|     <string name="pref_hide_threshold">Czułość ukrywania dolnego paska podczas przewijania</string> | ||||
|     <string name="theme_tako">Tako</string> | ||||
|     <plurals name="relative_time"> | ||||
|         <item quantity="one">Wczoraj</item> | ||||
|         <item quantity="few">%1$d dni temu</item> | ||||
|         <item quantity="many">%1$d dni temu</item> | ||||
|         <item quantity="other">%1$d dni temu</item> | ||||
|     </plurals> | ||||
|     <string name="label_background_activity">Aktywność w tle</string> | ||||
|     <string name="action_track">Śledź</string> | ||||
|     <string name="pref_category_appearance">Wygląd</string> | ||||
| @@ -708,12 +636,6 @@ | ||||
|     <string name="auto_download_while_reading">Pobieraj podczas czytania</string> | ||||
|     <string name="appwidget_updates_description">Zobacz ostatnio zaktualizowane wpisy</string> | ||||
|     <string name="appwidget_unavailable_locked">Widżet nie jest dostępny kiedy blokada aplikacji jest włączona</string> | ||||
|     <plurals name="next_unread_chapters"> | ||||
|         <item quantity="one">Następny nieprzeczytany rozdział</item> | ||||
|         <item quantity="few">Następne %d nieprzeczytane rozdziały</item> | ||||
|         <item quantity="many">Następne %d nieprzeczytanych rozdziałów</item> | ||||
|         <item quantity="other">Następne %d nieprzeczytanych rozdziałów</item> | ||||
|     </plurals> | ||||
|     <string name="are_you_sure">Jesteś pewien\?</string> | ||||
|     <string name="download_ahead_info">Działa tylko, jeśli aktualny i następny rozdział są już pobrane.</string> | ||||
|     <string name="multi_lang">Wielojęzyczne</string> | ||||
| @@ -783,24 +705,12 @@ | ||||
|     <string name="information_required_plain">*wymagane</string> | ||||
|     <string name="pref_hide_in_library_items">Ukryj pozycje znajdujące się już w bibliotece</string> | ||||
|     <string name="action_copy_to_clipboard">Kopiuj do schowka</string> | ||||
|     <plurals name="download_amount"> | ||||
|         <item quantity="one">Następny rozdział</item> | ||||
|         <item quantity="few">Następne %d rozdziały</item> | ||||
|         <item quantity="many">Następne %d rozdziałów</item> | ||||
|         <item quantity="other">Następne %d rozdziałów</item> | ||||
|     </plurals> | ||||
|     <string name="action_update_category">Aktualizuj kategorię</string> | ||||
|     <string name="split_tall_images">Dziel długie obrazy</string> | ||||
|     <string name="overlay_header">Nakładka</string> | ||||
|     <string name="pref_page_rotate">Dopasuj szerokie strony</string> | ||||
|     <string name="pref_page_rotate_invert">Zmień orientację obróconych obrazów</string> | ||||
|     <string name="pref_debug_info">Informacje debugowania</string> | ||||
|     <plurals name="missing_chapters"> | ||||
|         <item quantity="one">Brakujący %1$s rozdział</item> | ||||
|         <item quantity="few">Brakujące %1$s rozdziały</item> | ||||
|         <item quantity="many">Brakuje %1$s rozdziałów</item> | ||||
|         <item quantity="other">Brakuje %1$s rozdziałów</item> | ||||
|     </plurals> | ||||
|     <string name="pref_library_columns_per_row">%d na rząd</string> | ||||
|     <string name="pref_double_tap_zoom">Dotknij dwukrotnie, aby powiększyć</string> | ||||
|     <string name="pref_chapter_swipe_end">Przesuń palcem w prawo</string> | ||||
| @@ -809,12 +719,6 @@ | ||||
|     <string name="action_set_interval">Ustaw interwał</string> | ||||
|     <string name="action_sort_next_updated">Następna spodziewana aktualizacja</string> | ||||
|     <string name="manga_display_modified_interval_title">Aktualizuj co</string> | ||||
|     <plurals name="day"> | ||||
|         <item quantity="one">1 dzień</item> | ||||
|         <item quantity="few">%d dni</item> | ||||
|         <item quantity="many">%d dni</item> | ||||
|         <item quantity="other">%d dni</item> | ||||
|     </plurals> | ||||
|     <string name="syncing_library">Synchronizowanie biblioteki</string> | ||||
|     <string name="create_backup_file_error">Nie można wykonać kopi zapasowej</string> | ||||
|     <string name="intervals_header">Interwały</string> | ||||
							
								
								
									
										83
									
								
								i18n/src/commonMain/resources/MR/pt-rBR/plurals.xml
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										83
									
								
								i18n/src/commonMain/resources/MR/pt-rBR/plurals.xml
									
									
									
									
									
										Normal file
									
								
							| @@ -0,0 +1,83 @@ | ||||
| <?xml version="1.0" encoding="utf-8"?> | ||||
| <resources> | ||||
|     <plurals name="lock_after_mins"> | ||||
|         <item quantity="one">Por %1$s minuto</item> | ||||
|         <item quantity="many">Por %1$s minutos</item> | ||||
|         <item quantity="other">Por %1$s minutos</item> | ||||
|     </plurals> | ||||
|     <plurals name="notification_chapters_generic"> | ||||
|         <item quantity="one">%1$d capítulo novo</item> | ||||
|         <item quantity="many">%1$d capítulos novos</item> | ||||
|         <item quantity="other">%1$d capítulos novos</item> | ||||
|     </plurals> | ||||
|     <plurals name="notification_chapters_multiple_and_more"> | ||||
|         <item quantity="one">Capítulos %1$s e mais 1</item> | ||||
|         <item quantity="many">Capítulos %1$s e mais %2$d</item> | ||||
|         <item quantity="other">Capítulos %1$s e mais %2$d</item> | ||||
|     </plurals> | ||||
|     <plurals name="notification_new_chapters_summary"> | ||||
|         <item quantity="one">Para %d item</item> | ||||
|         <item quantity="many">Para %d itens</item> | ||||
|         <item quantity="other">Para %d itens</item> | ||||
|     </plurals> | ||||
|     <plurals name="update_check_notification_ext_updates"> | ||||
|         <item quantity="one">Atualização de extensão disponível</item> | ||||
|         <item quantity="many">%d atualizações de extensão disponíveis</item> | ||||
|         <item quantity="other">%d atualizações de extensão disponíveis</item> | ||||
|     </plurals> | ||||
|     <plurals name="download_queue_summary"> | ||||
|         <item quantity="one">%1$s restante</item> | ||||
|         <item quantity="many">%1$s restantes</item> | ||||
|         <item quantity="other">%1$s restantes</item> | ||||
|     </plurals> | ||||
|     <plurals name="num_categories"> | ||||
|         <item quantity="one">%d categoria</item> | ||||
|         <item quantity="many">%d categorias</item> | ||||
|         <item quantity="other">%d categorias</item> | ||||
|     </plurals> | ||||
|     <plurals name="restore_completed_message"> | ||||
|         <item quantity="one">Concluído em %1$s com %2$s erro</item> | ||||
|         <item quantity="many">Concluído em %1$s com %2$s erros</item> | ||||
|         <item quantity="other">Concluído em %1$s com %2$s erros</item> | ||||
|     </plurals> | ||||
|     <plurals name="manga_num_chapters"> | ||||
|         <item quantity="one">%1$s capítulo</item> | ||||
|         <item quantity="many">%1$s capítulos</item> | ||||
|         <item quantity="other">%1$s capítulos</item> | ||||
|     </plurals> | ||||
|     <plurals name="num_trackers"> | ||||
|         <item quantity="one">%d monitorador</item> | ||||
|         <item quantity="many">%d monitoradores</item> | ||||
|         <item quantity="other">%d monitoradores</item> | ||||
|     </plurals> | ||||
|     <plurals name="missing_chapters_warning"> | ||||
|         <item quantity="one">Pulando %d capítulo, ou ele está faltando na fonte, ou ele foi filtrado</item> | ||||
|         <item quantity="many">Pulando %d capítulos, ou eles estão faltando na fonte, ou eles foram filtrados</item> | ||||
|         <item quantity="other">Pulando %d capítulos, ou eles estão faltando na fonte, ou eles foram filtrados</item> | ||||
|     </plurals> | ||||
|     <plurals name="relative_time"> | ||||
|         <item quantity="one">Ontem</item> | ||||
|         <item quantity="many">%1$d dias atrás</item> | ||||
|         <item quantity="other">%1$d dias atrás</item> | ||||
|     </plurals> | ||||
|     <plurals name="next_unread_chapters"> | ||||
|         <item quantity="one">Próximo capítulo não lido</item> | ||||
|         <item quantity="many">Próximos %d capítulos não lidos</item> | ||||
|         <item quantity="other">Próximos %d capítulos não lidos</item> | ||||
|     </plurals> | ||||
|     <plurals name="download_amount"> | ||||
|         <item quantity="one">Próximo capítulo</item> | ||||
|         <item quantity="many">Próximos %d capítulos</item> | ||||
|         <item quantity="other">Próximos %d capítulos</item> | ||||
|     </plurals> | ||||
|     <plurals name="missing_chapters"> | ||||
|         <item quantity="one">Faltando %1$s capítulo</item> | ||||
|         <item quantity="many">Faltando %1$s capítulos</item> | ||||
|         <item quantity="other">Faltando %1$s capítulos</item> | ||||
|     </plurals> | ||||
|     <plurals name="day"> | ||||
|         <item quantity="one">%d dia(s)</item> | ||||
|         <item quantity="many">%d dias</item> | ||||
|         <item quantity="other">%d dias</item> | ||||
|     </plurals> | ||||
| </resources> | ||||
| @@ -315,11 +315,6 @@ | ||||
|     <string name="lock_when_idle">Bloquear quando ocioso</string> | ||||
|     <string name="lock_always">Sempre</string> | ||||
|     <string name="lock_never">Nunca</string> | ||||
|     <plurals name="lock_after_mins"> | ||||
|         <item quantity="one">Por %1$s minuto</item> | ||||
|         <item quantity="many">Por %1$s minutos</item> | ||||
|         <item quantity="other">Por %1$s minutos</item> | ||||
|     </plurals> | ||||
|     <string name="secure_screen">Tela segura</string> | ||||
|     <string name="ext_updates_pending">Atualizações pendentes</string> | ||||
|     <string name="pref_cutout_short">Mostrar conteúdo na área de recorte da tela</string> | ||||
| @@ -328,19 +323,9 @@ | ||||
|     <string name="channel_new_chapters">Atualizações de capítulos</string> | ||||
|     <string name="secure_screen_summary">A tela segura oculta os conteúdos do aplicativo durante a troca de aplicativos e impede capturas de tela</string> | ||||
|     <string name="pref_category_display">Visualização</string> | ||||
|     <plurals name="notification_chapters_generic"> | ||||
|         <item quantity="one">%1$d capítulo novo</item> | ||||
|         <item quantity="many">%1$d capítulos novos</item> | ||||
|         <item quantity="other">%1$d capítulos novos</item> | ||||
|     </plurals> | ||||
|     <string name="notification_chapters_single">Capítulo %1$s</string> | ||||
|     <string name="notification_chapters_single_and_more">Capítulo %1$s e mais %2$d</string> | ||||
|     <string name="notification_chapters_multiple">Capítulos %1$s</string> | ||||
|     <plurals name="notification_chapters_multiple_and_more"> | ||||
|         <item quantity="one">Capítulos %1$s e mais 1</item> | ||||
|         <item quantity="many">Capítulos %1$s e mais %2$d</item> | ||||
|         <item quantity="other">Capítulos %1$s e mais %2$d</item> | ||||
|     </plurals> | ||||
|     <string name="hide_notification_content">Ocultar conteúdo da notificação</string> | ||||
|     <string name="notification_check_updates">Verificando por novos capítulos</string> | ||||
|     <string name="pref_disable_battery_optimization">Desativar a otimização de bateria</string> | ||||
| @@ -348,21 +333,11 @@ | ||||
|     <string name="battery_optimization_disabled">A otimização de bateria já está desativada</string> | ||||
|     <string name="email">Endereço de email</string> | ||||
|     <string name="pref_always_show_chapter_transition">Sempre mostrar a transição entre capítulos</string> | ||||
|     <plurals name="notification_new_chapters_summary"> | ||||
|         <item quantity="one">Para %d item</item> | ||||
|         <item quantity="many">Para %d itens</item> | ||||
|         <item quantity="other">Para %d itens</item> | ||||
|     </plurals> | ||||
|     <string name="action_menu">Menu</string> | ||||
|     <string name="action_newest">Mais novos</string> | ||||
|     <string name="action_oldest">Mais antigos</string> | ||||
|     <string name="action_move_to_top">Mover para o começo</string> | ||||
|     <string name="action_move_to_bottom">Mover para o final</string> | ||||
|     <plurals name="update_check_notification_ext_updates"> | ||||
|         <item quantity="one">Atualização de extensão disponível</item> | ||||
|         <item quantity="many">%d atualizações de extensão disponíveis</item> | ||||
|         <item quantity="other">%d atualizações de extensão disponíveis</item> | ||||
|     </plurals> | ||||
|     <string name="channel_ext_updates">Atualizações de extensões</string> | ||||
|     <string name="updating_library">Atualizando a biblioteca</string> | ||||
|     <string name="pref_category_reading">Leitura</string> | ||||
| @@ -394,26 +369,11 @@ | ||||
|     <string name="local_source_help_guide">Guia sobre a fonte local</string> | ||||
|     <string name="restore_duration">%02d min e %02d seg</string> | ||||
|     <string name="downloaded_only_summary">Filtra todos os itens em sua biblioteca</string> | ||||
|     <plurals name="download_queue_summary"> | ||||
|         <item quantity="one">%1$s restante</item> | ||||
|         <item quantity="many">%1$s restantes</item> | ||||
|         <item quantity="other">%1$s restantes</item> | ||||
|     </plurals> | ||||
|     <string name="gray_background">Cinza</string> | ||||
|     <string name="viewer">Modo de leitura</string> | ||||
|     <string name="pref_category_for_this_series">Para esta série</string> | ||||
|     <string name="pref_true_color_summary">Reduz o efeito de anéis nos degradês, mas pode afetar o desempenho</string> | ||||
|     <plurals name="num_categories"> | ||||
|         <item quantity="one">%d categoria</item> | ||||
|         <item quantity="many">%d categorias</item> | ||||
|         <item quantity="other">%d categorias</item> | ||||
|     </plurals> | ||||
|     <string name="battery_optimization_setting_activity_not_found">Não foi possível abrir as configurações do dispositivo</string> | ||||
|     <plurals name="restore_completed_message"> | ||||
|         <item quantity="one">Concluído em %1$s com %2$s erro</item> | ||||
|         <item quantity="many">Concluído em %1$s com %2$s erros</item> | ||||
|         <item quantity="other">Concluído em %1$s com %2$s erros</item> | ||||
|     </plurals> | ||||
|     <string name="tracking_info">Sincronização unidirecional para atualizar o progresso dos capítulos nos serviços monitoradores externos. Configure o monitoramento para itens individuais a partir de seus botões de monitoramento.</string> | ||||
|     <string name="pref_refresh_library_covers">Atualizar as capas da biblioteca</string> | ||||
|     <string name="unofficial_extension_message">Esta extensão não é da lista oficial.</string> | ||||
| @@ -437,11 +397,6 @@ | ||||
|     <string name="action_start">Iniciar</string> | ||||
|     <string name="loader_not_implemented_error">Fonte não encontrada</string> | ||||
|     <string name="action_disable">Desativar</string> | ||||
|     <plurals name="manga_num_chapters"> | ||||
|         <item quantity="one">%1$s capítulo</item> | ||||
|         <item quantity="many">%1$s capítulos</item> | ||||
|         <item quantity="other">%1$s capítulos</item> | ||||
|     </plurals> | ||||
|     <string name="requires_app_restart">Requer o reinício do aplicativo para ter efeito</string> | ||||
|     <string name="label_network">Rede</string> | ||||
|     <string name="tapping_inverted_none">Nenhum</string> | ||||
| @@ -458,11 +413,6 @@ | ||||
|     <string name="action_global_search_query">Pesquisar por \"%1$s\" globalmente</string> | ||||
|     <string name="pref_category_reading_mode">Modo de leitura</string> | ||||
|     <string name="pref_category_theme">Tema</string> | ||||
|     <plurals name="num_trackers"> | ||||
|         <item quantity="one">%d monitorador</item> | ||||
|         <item quantity="many">%d monitoradores</item> | ||||
|         <item quantity="other">%d monitoradores</item> | ||||
|     </plurals> | ||||
|     <string name="no_pinned_sources">Você não tem fontes fixadas</string> | ||||
|     <string name="channel_progress">Andamento</string> | ||||
|     <string name="channel_complete">Concluído</string> | ||||
| @@ -473,11 +423,6 @@ | ||||
|     <string name="ext_nsfw_warning">As fontes desta extensão podem ter conteúdo NSFW (+18)</string> | ||||
|     <string name="ext_nsfw_short">+18</string> | ||||
|     <string name="parental_controls_info">Isso não impede que extensões não oficiais ou potencialmente sinalizadas de maneira incorreta apresentem conteúdo NSFW (+18) no aplicativo.</string> | ||||
|     <plurals name="missing_chapters_warning"> | ||||
|         <item quantity="one">Pulando %d capítulo, ou ele está faltando na fonte, ou ele foi filtrado</item> | ||||
|         <item quantity="many">Pulando %d capítulos, ou eles estão faltando na fonte, ou eles foram filtrados</item> | ||||
|         <item quantity="other">Pulando %d capítulos, ou eles estão faltando na fonte, ou eles foram filtrados</item> | ||||
|     </plurals> | ||||
|     <string name="no_chapters_error">Nenhum capítulo encontrado</string> | ||||
|     <string name="chapter_settings_updated">Configurações padrões de capítulo atualizadas</string> | ||||
|     <string name="set_chapter_settings_as_default">Definir como padrão</string> | ||||
| @@ -587,11 +532,6 @@ | ||||
|     <string name="pref_highest">Mais alta</string> | ||||
|     <string name="pref_hide_threshold">Sensibilidade para ocultar o menu na rolagem</string> | ||||
|     <string name="pref_inverted_colors">Invertido</string> | ||||
|     <plurals name="relative_time"> | ||||
|         <item quantity="one">Ontem</item> | ||||
|         <item quantity="many">%1$d dias atrás</item> | ||||
|         <item quantity="other">%1$d dias atrás</item> | ||||
|     </plurals> | ||||
|     <string name="relative_time_today">Hoje</string> | ||||
|     <string name="theme_tealturquoise">Azul-petróleo & Turquesa</string> | ||||
|     <string name="confirm_lock_change">Autentique-se para confirmar a mudança</string> | ||||
| @@ -697,11 +637,6 @@ | ||||
|     <string name="download_ahead">Fazer download a frente</string> | ||||
|     <string name="auto_download_while_reading">Download automático durante a leitura</string> | ||||
|     <string name="download_ahead_info">Funciona somente se o capítulo atual e próximo já estão disponíveis offline.</string> | ||||
|     <plurals name="next_unread_chapters"> | ||||
|         <item quantity="one">Próximo capítulo não lido</item> | ||||
|         <item quantity="many">Próximos %d capítulos não lidos</item> | ||||
|         <item quantity="other">Próximos %d capítulos não lidos</item> | ||||
|     </plurals> | ||||
|     <string name="are_you_sure">Você tem certeza\?</string> | ||||
|     <string name="multi_lang">Múltiplos</string> | ||||
|     <string name="updates_last_update_info">Última atualização da biblioteca: %s</string> | ||||
| @@ -768,11 +703,6 @@ | ||||
| \nVocê ainda deseja continuar\?</string> | ||||
|     <string name="track_error">Erro em %1$s: %2$s</string> | ||||
|     <string name="information_required_plain">*obrigatório</string> | ||||
|     <plurals name="download_amount"> | ||||
|         <item quantity="one">Próximo capítulo</item> | ||||
|         <item quantity="many">Próximos %d capítulos</item> | ||||
|         <item quantity="other">Próximos %d capítulos</item> | ||||
|     </plurals> | ||||
|     <string name="pref_hide_in_library_items">Ocultar títulos que já estão na biblioteca</string> | ||||
|     <string name="action_copy_to_clipboard">Copiar para a área de transferência</string> | ||||
|     <string name="action_update_category">Atualizar categoria</string> | ||||
| @@ -780,11 +710,6 @@ | ||||
|     <string name="overlay_header">Sobreposição</string> | ||||
|     <string name="pref_page_rotate">Rotacionar páginas largas para caber</string> | ||||
|     <string name="pref_page_rotate_invert">Inverter a orientação das páginas largas rotacionadas</string> | ||||
|     <plurals name="missing_chapters"> | ||||
|         <item quantity="one">Faltando %1$s capítulo</item> | ||||
|         <item quantity="many">Faltando %1$s capítulos</item> | ||||
|         <item quantity="other">Faltando %1$s capítulos</item> | ||||
|     </plurals> | ||||
|     <string name="pref_debug_info">Informações de depuração</string> | ||||
|     <string name="pref_chapter_swipe">Ações do capítulo</string> | ||||
|     <string name="pref_chapter_swipe_end">Ação de deslizar para a direita</string> | ||||
| @@ -800,11 +725,6 @@ | ||||
|     <string name="action_filter_interval_dropped">Abandonado\? Últimos 20+ e 2 meses</string> | ||||
|     <string name="action_filter_interval_passed">Intervalo de verificação aprovado</string> | ||||
|     <string name="manga_modify_calculated_interval_title">Personalizar intervalo</string> | ||||
|     <plurals name="day"> | ||||
|         <item quantity="one">%d dia(s)</item> | ||||
|         <item quantity="many">%d dias</item> | ||||
|         <item quantity="other">%d dias</item> | ||||
|     </plurals> | ||||
|     <string name="skipped_reason_not_in_release_period">Pulado porque nenhum lançamento era esperado hoje</string> | ||||
|     <string name="intervals_header">Intervalos</string> | ||||
|     <string name="manga_display_modified_interval_title">Definido para atualizar todo</string> | ||||
							
								
								
									
										83
									
								
								i18n/src/commonMain/resources/MR/pt/plurals.xml
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										83
									
								
								i18n/src/commonMain/resources/MR/pt/plurals.xml
									
									
									
									
									
										Normal file
									
								
							| @@ -0,0 +1,83 @@ | ||||
| <?xml version="1.0" encoding="utf-8"?> | ||||
| <resources> | ||||
|     <plurals name="lock_after_mins"> | ||||
|         <item quantity="one">Após %1$s minuto</item> | ||||
|         <item quantity="many">Após %1$s minutos</item> | ||||
|         <item quantity="other">Após %1$s minutos</item> | ||||
|     </plurals> | ||||
|     <plurals name="notification_chapters_multiple_and_more"> | ||||
|         <item quantity="one">Capítulos %1$s e 1 mais</item> | ||||
|         <item quantity="many">Capítulos %1$s e %2$d mais</item> | ||||
|         <item quantity="other">Capítulos %1$s e %2$d mais</item> | ||||
|     </plurals> | ||||
|     <plurals name="notification_new_chapters_summary"> | ||||
|         <item quantity="one">Para %d entrada</item> | ||||
|         <item quantity="many">Para %d entradas</item> | ||||
|         <item quantity="other">Para %d o acesso</item> | ||||
|     </plurals> | ||||
|     <plurals name="notification_chapters_generic"> | ||||
|         <item quantity="one">%1$d novo capítulo</item> | ||||
|         <item quantity="many">%1$d novos capítulos</item> | ||||
|         <item quantity="other">%1$d novos capítulos</item> | ||||
|     </plurals> | ||||
|     <plurals name="update_check_notification_ext_updates"> | ||||
|         <item quantity="one">Atualização de extensão disponível</item> | ||||
|         <item quantity="many">%d atualizações de extensão disponíveis</item> | ||||
|         <item quantity="other">%d atualizações de extensão disponíveis</item> | ||||
|     </plurals> | ||||
|     <plurals name="download_queue_summary"> | ||||
|         <item quantity="one">%1$s restante</item> | ||||
|         <item quantity="many">%1$s restantes</item> | ||||
|         <item quantity="other">%1$s restantes</item> | ||||
|     </plurals> | ||||
|     <plurals name="num_categories"> | ||||
|         <item quantity="one">%d categoria</item> | ||||
|         <item quantity="many">%d categorias</item> | ||||
|         <item quantity="other">%d categorias</item> | ||||
|     </plurals> | ||||
|     <plurals name="restore_completed_message"> | ||||
|         <item quantity="one">Concluído em %1$s com %2$s erro</item> | ||||
|         <item quantity="many">Concluído em %1$s com %2$s erros</item> | ||||
|         <item quantity="other">Concluído em %1$s com %2$s erros</item> | ||||
|     </plurals> | ||||
|     <plurals name="manga_num_chapters"> | ||||
|         <item quantity="one">%1$s capítulo</item> | ||||
|         <item quantity="many">%1$s capítulos</item> | ||||
|         <item quantity="other">%1$s capítulos</item> | ||||
|     </plurals> | ||||
|     <plurals name="num_trackers"> | ||||
|         <item quantity="one">%d rastreador</item> | ||||
|         <item quantity="many">%d rastreadores</item> | ||||
|         <item quantity="other">%d rastreadores</item> | ||||
|     </plurals> | ||||
|     <plurals name="missing_chapters_warning"> | ||||
|         <item quantity="one">Ignorando %d capítulo, ou a fonte está em falta ou foi filtrado</item> | ||||
|         <item quantity="many">Ignorando %d capítulos, ou a fonte está em falta ou foi filtrado</item> | ||||
|         <item quantity="other">Capítulos %d ignorados, ou a fonte está em falta ou foi filtrado</item> | ||||
|     </plurals> | ||||
|     <plurals name="relative_time"> | ||||
|         <item quantity="one">Ontem</item> | ||||
|         <item quantity="many">Há %1$d dias</item> | ||||
|         <item quantity="other">Há %1$d dias</item> | ||||
|     </plurals> | ||||
|     <plurals name="next_unread_chapters"> | ||||
|         <item quantity="one">Próximo capítulo não lido</item> | ||||
|         <item quantity="many">Próximos %d capítulos não lidos</item> | ||||
|         <item quantity="other">Próximos %d capítulos não lidos</item> | ||||
|     </plurals> | ||||
|     <plurals name="download_amount"> | ||||
|         <item quantity="one">Próximo capítulo</item> | ||||
|         <item quantity="many">Próximos %d capítulos</item> | ||||
|         <item quantity="other">Próximos %d capítulos</item> | ||||
|     </plurals> | ||||
|     <plurals name="missing_chapters"> | ||||
|         <item quantity="one">Falta %1$s capítulo</item> | ||||
|         <item quantity="many">Faltam %1$s capítulos</item> | ||||
|         <item quantity="other">Faltam %1$s capítulos</item> | ||||
|     </plurals> | ||||
|     <plurals name="day"> | ||||
|         <item quantity="one">Um dia</item> | ||||
|         <item quantity="many">%d dias</item> | ||||
|         <item quantity="other">%d dias</item> | ||||
|     </plurals> | ||||
| </resources> | ||||
| @@ -1,14 +1,12 @@ | ||||
| <?xml version="1.0" encoding="utf-8"?> | ||||
| <resources> | ||||
|     <string name="name">Nome</string> | ||||
|     <!-- Activities and fragments labels (toolbar title) --> | ||||
|     <string name="label_settings">Definições</string> | ||||
|     <string name="label_download_queue">Fila de Transferências</string> | ||||
|     <string name="label_library">Biblioteca</string> | ||||
|     <string name="label_recent_manga">Histórico</string> | ||||
|     <string name="label_recent_updates">Atualizações</string> | ||||
|     <string name="label_backup">Cópia de segurança e restauração</string> | ||||
|     <!-- Actions --> | ||||
|     <string name="action_settings">Definições</string> | ||||
|     <string name="action_filter">Filtro</string> | ||||
|     <string name="action_filter_unread">Não Lido</string> | ||||
| @@ -38,16 +36,12 @@ | ||||
|     <string name="action_cancel">Cancelar</string> | ||||
|     <string name="action_sort">Ordenar</string> | ||||
|     <string name="action_install">Instalar</string> | ||||
|     <!-- Operations --> | ||||
|     <string name="loading">A carregar…</string> | ||||
|     <!-- Preferences --> | ||||
|     <!-- Subsections --> | ||||
|     <string name="pref_category_general">Geral</string> | ||||
|     <string name="pref_category_reader">Leitor</string> | ||||
|     <string name="pref_category_downloads">Transferências</string> | ||||
|     <string name="pref_category_advanced">Avançado</string> | ||||
|     <string name="pref_category_about">Sobre</string> | ||||
|     <!-- General section --> | ||||
|     <string name="pref_library_columns">Tamanho da grade</string> | ||||
|     <string name="portrait">Vertical</string> | ||||
|     <string name="landscape">Horizontal</string> | ||||
| @@ -62,7 +56,6 @@ | ||||
|     <string name="charging">Ao carregar</string> | ||||
|     <string name="pref_update_only_non_completed">Com estado \'\'Terminado\'\'</string> | ||||
|     <string name="pref_auto_update_manga_sync">Atualizar progresso após a leitura</string> | ||||
|     <!-- Reader section --> | ||||
|     <string name="pref_fullscreen">Ecrã inteiro</string> | ||||
|     <string name="pref_page_transitions">Animar transições de página</string> | ||||
|     <string name="pref_show_page_number">Mostrar número de página</string> | ||||
| @@ -94,7 +87,6 @@ | ||||
|     <string name="rotation_free">Livre</string> | ||||
|     <string name="rotation_force_portrait">Vertical bloqueado</string> | ||||
|     <string name="rotation_force_landscape">Horizontal bloqueado</string> | ||||
|     <!-- Downloads section --> | ||||
|     <string name="pref_download_directory">Localização das Transferências</string> | ||||
|     <string name="pref_remove_after_marked_as_read">Após marcado como lido manualmente</string> | ||||
|     <string name="pref_remove_after_read">Eliminar automaticamente após a leitura</string> | ||||
| @@ -105,9 +97,7 @@ | ||||
|     <string name="third_to_last">Antepenúltimo capítulo lido</string> | ||||
|     <string name="fourth_to_last">Quarto capítulo lido antes do último</string> | ||||
|     <string name="fifth_to_last">Quinto capítulo lido antes do último</string> | ||||
|     <!-- Sync section --> | ||||
|     <string name="services">Serviços</string> | ||||
|     <!-- Advanced section --> | ||||
|     <string name="pref_clear_chapter_cache">Limpar a cache dos capítulos</string> | ||||
|     <string name="used_cache">Usado: %1$s</string> | ||||
|     <string name="cache_deleted">Cache limpa. %1$d ficheiros foram eliminados</string> | ||||
| @@ -118,27 +108,20 @@ | ||||
|     <string name="pref_clear_database_summary">Exclui o histórico de itens que não estão salvos nasua biblioteca</string> | ||||
|     <string name="clear_database_confirmation">Tem certeza\? Os capítulos lidos e o progresso em itens que não estão na sua biblioteca serão perdidos</string> | ||||
|     <string name="clear_database_completed">Eliminar entradas</string> | ||||
|     <!-- About section --> | ||||
|     <string name="version">Versão</string> | ||||
|     <!-- ACRA --> | ||||
|     <string name="pref_enable_acra">Enviar relatórios de erro</string> | ||||
|     <string name="pref_acra_summary">Ajuda a corrigir qualquer erro. Não serão enviados dados sensíveis</string> | ||||
|     <!-- Login dialog --> | ||||
|     <string name="login_title">Iniciar sessão em %1$s</string> | ||||
|     <string name="username">Nome de utilizador</string> | ||||
|     <string name="password">Palavra-passe</string> | ||||
|     <string name="login">Iniciar sessão</string> | ||||
|     <string name="login_success">Sessão iniciada</string> | ||||
|     <string name="unknown_error">Erro desconhecido</string> | ||||
|     <!-- Library fragment --> | ||||
|     <string name="updating_category">A atualizar categoria</string> | ||||
|     <!-- Catalogue fragment --> | ||||
|     <!-- Manga info fragment --> | ||||
|     <string name="ongoing">Em curso</string> | ||||
|     <string name="unknown">Desconhecido</string> | ||||
|     <string name="licensed">Licenciado</string> | ||||
|     <string name="remove_from_library">Remover da biblioteca</string> | ||||
|     <!-- Manga chapter fragment --> | ||||
|     <string name="display_mode_chapter">Capítulo %1$s</string> | ||||
|     <string name="chapter_downloading_progress">A Transferir (%1$d/%2$d)</string> | ||||
|     <string name="chapter_error">Erro</string> | ||||
| @@ -149,7 +132,6 @@ | ||||
|     <string name="manga_download">Transferir</string> | ||||
|     <string name="download_unread">Não lidos</string> | ||||
|     <string name="confirm_delete_chapters">Tem certeza de que deseja eliminar os capítulos selecionados\?</string> | ||||
|     <!-- MyAnimeList fragment --> | ||||
|     <string name="reading">A ler</string> | ||||
|     <string name="completed">Completo</string> | ||||
|     <string name="dropped">Abandonado</string> | ||||
| @@ -159,38 +141,26 @@ | ||||
|     <string name="title">Título</string> | ||||
|     <string name="status">Estado</string> | ||||
|     <string name="chapters">Capítulos</string> | ||||
|     <!-- Dialog remove recently view --> | ||||
|     <string name="dialog_with_checkbox_remove_description">Esta ação irá remover a data de leitura deste capítulo. Continuar?</string> | ||||
|     <string name="dialog_with_checkbox_reset">Redefinir todos os capítulos para esta entrada</string> | ||||
|     <!-- Reader activity --> | ||||
|     <string name="chapter_progress">Página: %1$d</string> | ||||
|     <string name="no_next_chapter">Capítulo seguinte não encontrado</string> | ||||
|     <string name="decode_image_error">A imagem não pôde ser carregada</string> | ||||
|     <!-- Backup fragment --> | ||||
|     <!-- Recent manga fragment --> | ||||
|     <!-- Downloads activity and service --> | ||||
|     <string name="download_queue_error">Não foi possível transferir capítulos. Poderá tentar novamente na secção das transferências</string> | ||||
|     <!-- Library update service notifications --> | ||||
|     <string name="notification_new_chapters">Novos capítulos encontrados</string> | ||||
|     <string name="notification_first_add_to_library">Por favor adicione à sua biblioteca antes de fazer isto</string> | ||||
|     <!-- File Picker Titles --> | ||||
|     <string name="file_select_cover">Selecionar imagem de capa</string> | ||||
|     <string name="file_select_backup">Selecionar ficheiro de cópia de segurança</string> | ||||
|     <!--UpdateCheck--> | ||||
|     <string name="update_check_confirm">Transferir</string> | ||||
|     <string name="update_check_no_new_updates">Sem atualizações disponíveis</string> | ||||
|     <!--UpdateCheck Notifications--> | ||||
|     <string name="update_check_notification_download_in_progress">A transferir…</string> | ||||
|     <string name="update_check_notification_download_complete">Toque para instalar a atualização</string> | ||||
|     <string name="update_check_notification_download_error">Erro na transferência</string> | ||||
|     <string name="update_check_notification_update_available">Nova versão disponível!</string> | ||||
|     <!--Content Description--> | ||||
|     <!-- Information Text --> | ||||
|     <string name="information_no_downloads">Sem transferências</string> | ||||
|     <string name="information_no_recent">Sem atualizações recentes</string> | ||||
|     <string name="information_no_recent_manga">Nada lido recentemente</string> | ||||
|     <string name="information_empty_library">A sua biblioteca está vazia</string> | ||||
|     <!-- Download Notification --> | ||||
|     <string name="download_notifier_title_error">Erro</string> | ||||
|     <string name="download_notifier_unknown_error">Não foi possível transferir o capítulo devido a um erro inesperado</string> | ||||
|     <string name="download_notifier_text_only_wifi">A ligação Wi-Fi está indisponível</string> | ||||
| @@ -345,11 +315,6 @@ | ||||
|     <string name="lock_when_idle">Bloquear quando inativo</string> | ||||
|     <string name="lock_always">Sempre</string> | ||||
|     <string name="lock_never">Nunca</string> | ||||
|     <plurals name="lock_after_mins"> | ||||
|         <item quantity="one">Após %1$s minuto</item> | ||||
|         <item quantity="many">Após %1$s minutos</item> | ||||
|         <item quantity="other">Após %1$s minutos</item> | ||||
|     </plurals> | ||||
|     <string name="secure_screen">Ecrã seguro</string> | ||||
|     <string name="ext_updates_pending">Atualizações pendentes</string> | ||||
|     <string name="pref_cutout_short">Mostrar conteúdo na área de corte</string> | ||||
| @@ -360,11 +325,6 @@ | ||||
|     <string name="pref_category_display">Visualização</string> | ||||
|     <string name="notification_chapters_single_and_more">Capítulo %1$s e %2$d mais</string> | ||||
|     <string name="notification_chapters_multiple">Capítulos %1$s</string> | ||||
|     <plurals name="notification_chapters_multiple_and_more"> | ||||
|         <item quantity="one">Capítulos %1$s e 1 mais</item> | ||||
|         <item quantity="many">Capítulos %1$s e %2$d mais</item> | ||||
|         <item quantity="other">Capítulos %1$s e %2$d mais</item> | ||||
|     </plurals> | ||||
|     <string name="hide_notification_content">Esconder conteúdo das notificações</string> | ||||
|     <string name="notification_check_updates">Verificando por novos capítulos</string> | ||||
|     <string name="pref_disable_battery_optimization">Desativar otimização de bateria</string> | ||||
| @@ -372,28 +332,13 @@ | ||||
|     <string name="battery_optimization_disabled">A otimização de bateria já está desativada</string> | ||||
|     <string name="email">Endereço de e-mail</string> | ||||
|     <string name="pref_always_show_chapter_transition">Mostrar sempre transição entre capítulos</string> | ||||
|     <plurals name="notification_new_chapters_summary"> | ||||
|         <item quantity="one">Para %d entrada</item> | ||||
|         <item quantity="many">Para %d entradas</item> | ||||
|         <item quantity="other">Para %d o acesso</item> | ||||
|     </plurals> | ||||
|     <string name="action_menu">Menu</string> | ||||
|     <string name="action_newest">Mais novos</string> | ||||
|     <string name="action_oldest">Mais antigos</string> | ||||
|     <string name="action_move_to_top">Mover para o topo</string> | ||||
|     <string name="action_move_to_bottom">Mover para o final</string> | ||||
|     <plurals name="notification_chapters_generic"> | ||||
|         <item quantity="one">%1$d novo capítulo</item> | ||||
|         <item quantity="many">%1$d novos capítulos</item> | ||||
|         <item quantity="other">%1$d novos capítulos</item> | ||||
|     </plurals> | ||||
|     <string name="notification_chapters_single">Capítulo %1$s</string> | ||||
|     <string name="channel_ext_updates">Atualizações de extensão</string> | ||||
|     <plurals name="update_check_notification_ext_updates"> | ||||
|         <item quantity="one">Atualização de extensão disponível</item> | ||||
|         <item quantity="many">%d atualizações de extensão disponíveis</item> | ||||
|         <item quantity="other">%d atualizações de extensão disponíveis</item> | ||||
|     </plurals> | ||||
|     <string name="updating_library">Atualizando biblioteca</string> | ||||
|     <string name="pinned_sources">Fixado</string> | ||||
|     <string name="pref_webtoon_side_padding">Preenchimento lateral</string> | ||||
| @@ -424,26 +369,11 @@ | ||||
|     <string name="licenses">Licenças de código aberto</string> | ||||
|     <string name="downloaded_only_summary">Filtra todos os itens nasua biblioteca</string> | ||||
|     <string name="restore_duration">%02d min, %02d seg</string> | ||||
|     <plurals name="download_queue_summary"> | ||||
|         <item quantity="one">%1$s restante</item> | ||||
|         <item quantity="many">%1$s restantes</item> | ||||
|         <item quantity="other">%1$s restantes</item> | ||||
|     </plurals> | ||||
|     <string name="gray_background">Cinza</string> | ||||
|     <string name="viewer">Modo de leitura</string> | ||||
|     <string name="pref_category_for_this_series">Para esta série</string> | ||||
|     <string name="pref_true_color_summary">Reduz bandas de cor, mas pode impactar a performance</string> | ||||
|     <plurals name="num_categories"> | ||||
|         <item quantity="one">%d categoria</item> | ||||
|         <item quantity="many">%d categorias</item> | ||||
|         <item quantity="other">%d categorias</item> | ||||
|     </plurals> | ||||
|     <string name="battery_optimization_setting_activity_not_found">Não foi possível abrir as definições do aparelho</string> | ||||
|     <plurals name="restore_completed_message"> | ||||
|         <item quantity="one">Concluído em %1$s com %2$s erro</item> | ||||
|         <item quantity="many">Concluído em %1$s com %2$s erros</item> | ||||
|         <item quantity="other">Concluído em %1$s com %2$s erros</item> | ||||
|     </plurals> | ||||
|     <string name="pref_refresh_library_covers">Atualizar capas da biblioteca</string> | ||||
|     <string name="tracking_info">Sincronização unidirecional para atualizar o progresso dos capítulos nos serviços de monitoramento. Configure o monitoramento para itens individuais a partir dos botões de monitoramento deles.</string> | ||||
|     <string name="unofficial_extension_message">Esta extensão não vem da lista oficial de extensões do Tachiyomi.</string> | ||||
| @@ -472,11 +402,6 @@ | ||||
|     <string name="tapping_inverted_none">Nenhum</string> | ||||
|     <string name="pref_read_with_tapping_inverted">Inverter zonas toque</string> | ||||
|     <string name="loader_not_implemented_error">Fonte não encontrada</string> | ||||
|     <plurals name="manga_num_chapters"> | ||||
|         <item quantity="one">%1$s capítulo</item> | ||||
|         <item quantity="many">%1$s capítulos</item> | ||||
|         <item quantity="other">%1$s capítulos</item> | ||||
|     </plurals> | ||||
|     <string name="unknown_status">Estado desconhecido</string> | ||||
|     <string name="unknown_author">Autor desconhecido</string> | ||||
|     <string name="requires_app_restart">Requer reinício da app para ter efeito</string> | ||||
| @@ -488,11 +413,6 @@ | ||||
|     <string name="pref_category_reading_mode">Modo de leitura</string> | ||||
|     <string name="pref_category_theme">Tema</string> | ||||
|     <string name="action_sort_date_added">Data de adição</string> | ||||
|     <plurals name="num_trackers"> | ||||
|         <item quantity="one">%d rastreador</item> | ||||
|         <item quantity="many">%d rastreadores</item> | ||||
|         <item quantity="other">%d rastreadores</item> | ||||
|     </plurals> | ||||
|     <string name="no_pinned_sources">Você não possui fontes fixadas</string> | ||||
|     <string name="channel_complete">Completo</string> | ||||
|     <string name="channel_progress">Progresso</string> | ||||
| @@ -503,11 +423,6 @@ | ||||
|     <string name="ext_nsfw_warning">Fontes desta extensão poderão conter conteúdo NSFW (18+)</string> | ||||
|     <string name="ext_nsfw_short">18+</string> | ||||
|     <string name="parental_controls_info">Isto não impede extensões não oficiais ou incorretamente marcadas de mostrarem conteúdo NSFW (18+) dentro da app.</string> | ||||
|     <plurals name="missing_chapters_warning"> | ||||
|         <item quantity="one">Ignorando %d capítulo, ou a fonte está em falta ou foi filtrado</item> | ||||
|         <item quantity="many">Ignorando %d capítulos, ou a fonte está em falta ou foi filtrado</item> | ||||
|         <item quantity="other">Capítulos %d ignorados, ou a fonte está em falta ou foi filtrado</item> | ||||
|     </plurals> | ||||
|     <string name="no_chapters_error">Nenhum capítulo encontrado</string> | ||||
|     <string name="chapter_settings_updated">Definições padrão de capítulo atualizadas</string> | ||||
|     <string name="confirm_set_chapter_settings">Tem certeza de que quer guardar estas definições como padrão\?</string> | ||||
| @@ -611,11 +526,6 @@ | ||||
|     <string name="enhanced_services">Serviços melhorados</string> | ||||
|     <string name="getting_started_guide">Guia de introdução</string> | ||||
|     <string name="theme_tealturquoise">Azul-petróleo e Turquesa</string> | ||||
|     <plurals name="relative_time"> | ||||
|         <item quantity="one">Ontem</item> | ||||
|         <item quantity="many">Há %1$d dias</item> | ||||
|         <item quantity="other">Há %1$d dias</item> | ||||
|     </plurals> | ||||
|     <string name="relative_time_today">Hoje</string> | ||||
|     <string name="theme_monet">Dinâmico</string> | ||||
|     <string name="label_warning">Aviso</string> | ||||
| @@ -704,11 +614,6 @@ | ||||
|     <string name="delete_category">Apagar categoria</string> | ||||
|     <string name="internal_error">InternalError: Verifique registos de falhas para mais informações</string> | ||||
|     <string name="error_user_agent_string_blank">Cadeia de agente de utilizador não pode estar em branco</string> | ||||
|     <plurals name="next_unread_chapters"> | ||||
|         <item quantity="one">Próximo capítulo não lido</item> | ||||
|         <item quantity="many">Próximos %d capítulos não lidos</item> | ||||
|         <item quantity="other">Próximos %d capítulos não lidos</item> | ||||
|     </plurals> | ||||
|     <string name="are_you_sure">Tem a certeza\?</string> | ||||
|     <string name="updates_last_update_info">Última atualização da biblioteca: %s</string> | ||||
|     <string name="appwidget_updates_description">Veja os seus itens da biblioteca atualizados recentemente</string> | ||||
| @@ -800,21 +705,11 @@ | ||||
|     <string name="information_no_entries_found">Nenhum item encontrado nesta categoria</string> | ||||
|     <string name="action_copy_to_clipboard">Copiar para a área de transferência</string> | ||||
|     <string name="pref_hide_in_library_items">Ocultar entradas existentes na biblioteca</string> | ||||
|     <plurals name="download_amount"> | ||||
|         <item quantity="one">Próximo capítulo</item> | ||||
|         <item quantity="many">Próximos %d capítulos</item> | ||||
|         <item quantity="other">Próximos %d capítulos</item> | ||||
|     </plurals> | ||||
|     <string name="action_update_category">Atualizar categoria</string> | ||||
|     <string name="split_tall_images">Dividir Imagens altas</string> | ||||
|     <string name="overlay_header">Sobreposição</string> | ||||
|     <string name="pref_page_rotate">Girar páginas largas para caber</string> | ||||
|     <string name="pref_page_rotate_invert">Virar a orientação de páginas largas giradas</string> | ||||
|     <plurals name="missing_chapters"> | ||||
|         <item quantity="one">Falta %1$s capítulo</item> | ||||
|         <item quantity="many">Faltam %1$s capítulos</item> | ||||
|         <item quantity="other">Faltam %1$s capítulos</item> | ||||
|     </plurals> | ||||
|     <string name="pref_library_columns_per_row">%d por linha</string> | ||||
|     <string name="pref_chapter_swipe_start">Ação de deslizar para a esquerda</string> | ||||
|     <string name="pref_double_tap_zoom">Toque duplo para aproximar</string> | ||||
| @@ -822,11 +717,6 @@ | ||||
|     <string name="action_filter_interval_long">Buscar mensalmente (28 dias)</string> | ||||
|     <string name="pref_update_only_in_release_period">Fora do período esperado de lançamento</string> | ||||
|     <string name="pref_debug_info">Informações de depuração</string> | ||||
|     <plurals name="day"> | ||||
|         <item quantity="one">Um dia</item> | ||||
|         <item quantity="many">%d dias</item> | ||||
|         <item quantity="other">%d dias</item> | ||||
|     </plurals> | ||||
|     <string name="manga_modify_calculated_interval_title">Customizar intervalo</string> | ||||
|     <string name="pref_chapter_swipe">Trocar de capítulo</string> | ||||
|     <string name="pref_chapter_swipe_end">Ação de deslizar para a direita</string> | ||||
							
								
								
									
										68
									
								
								i18n/src/commonMain/resources/MR/ro/plurals.xml
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										68
									
								
								i18n/src/commonMain/resources/MR/ro/plurals.xml
									
									
									
									
									
										Normal file
									
								
							| @@ -0,0 +1,68 @@ | ||||
| <?xml version="1.0" encoding="utf-8"?> | ||||
| <resources> | ||||
|     <plurals name="lock_after_mins"> | ||||
|         <item quantity="one">După %1$s minut</item> | ||||
|         <item quantity="few">După %1$s minute</item> | ||||
|         <item quantity="other">După %1$s minute</item> | ||||
|     </plurals> | ||||
|     <plurals name="notification_chapters_generic"> | ||||
|         <item quantity="one">%1$d capitol nou</item> | ||||
|         <item quantity="few">%1$d capitole noi</item> | ||||
|         <item quantity="other">%1$d capitole noi</item> | ||||
|     </plurals> | ||||
|     <plurals name="notification_chapters_multiple_and_more"> | ||||
|         <item quantity="one">Capitolele %1$s și încă unul</item> | ||||
|         <item quantity="few">Capitolele %1$s și încă %2$d în plus</item> | ||||
|         <item quantity="other">Capitolele %1$s și încă %2$d mai multe</item> | ||||
|     </plurals> | ||||
|     <plurals name="notification_new_chapters_summary"> | ||||
|         <item quantity="one">Pentru %d intrare</item> | ||||
|         <item quantity="few">Pentru %d intrări</item> | ||||
|         <item quantity="other">Pentru %d intrări</item> | ||||
|     </plurals> | ||||
|     <plurals name="update_check_notification_ext_updates"> | ||||
|         <item quantity="one">Actualizare de extensie disponibilă</item> | ||||
|         <item quantity="few">%d actualizări de extensii sunt disponibile</item> | ||||
|         <item quantity="other">%d actualizări de extensii sunt disponibile</item> | ||||
|     </plurals> | ||||
|     <plurals name="download_queue_summary"> | ||||
|         <item quantity="one">%1$s rămasă</item> | ||||
|         <item quantity="few">%1$s rămase</item> | ||||
|         <item quantity="other">%1$s rămase</item> | ||||
|     </plurals> | ||||
|     <plurals name="num_categories"> | ||||
|         <item quantity="one">%d categorie</item> | ||||
|         <item quantity="few">%d categorii</item> | ||||
|         <item quantity="other">%d categorii</item> | ||||
|     </plurals> | ||||
|     <plurals name="restore_completed_message"> | ||||
|         <item quantity="one">Gata în %1$s cu eroarea %2$s</item> | ||||
|         <item quantity="few">Gata în %1$s cu %2$s erori</item> | ||||
|         <item quantity="other">Gata în %1$s cu %2$s erori</item> | ||||
|     </plurals> | ||||
|     <plurals name="manga_num_chapters"> | ||||
|         <item quantity="one">%1$s capitol</item> | ||||
|         <item quantity="few">%1$s capitole</item> | ||||
|         <item quantity="other">%1$s de capitole</item> | ||||
|     </plurals> | ||||
|     <plurals name="num_trackers"> | ||||
|         <item quantity="one">%d tracker</item> | ||||
|         <item quantity="few">%d trackere</item> | ||||
|         <item quantity="other">%d trackere</item> | ||||
|     </plurals> | ||||
|     <plurals name="missing_chapters_warning"> | ||||
|         <item quantity="one">Omiterea %d capitol, fie că sursa lipsește, fie că a fost filtrată</item> | ||||
|         <item quantity="few">Omiterea a %d capitole, fie că sursa nu le are, fie că au fost filtrate</item> | ||||
|         <item quantity="other">Omiterea a %d capitole, fie că sursa nu le are, fie că au fost filtrate</item> | ||||
|     </plurals> | ||||
|     <plurals name="relative_time"> | ||||
|         <item quantity="one">Ieri</item> | ||||
|         <item quantity="few">Acum %1$d zile</item> | ||||
|         <item quantity="other">Acum %1$d zile</item> | ||||
|     </plurals> | ||||
|     <plurals name="next_unread_chapters"> | ||||
|         <item quantity="one">Următorul capitol necitit</item> | ||||
|         <item quantity="few">Următoarele %d capitole necitite</item> | ||||
|         <item quantity="other">Următoarele %d capitole necitite</item> | ||||
|     </plurals> | ||||
| </resources> | ||||
| @@ -315,11 +315,6 @@ | ||||
|     <string name="lock_when_idle">Blocați când este inactiv</string> | ||||
|     <string name="lock_always">Întotdeauna</string> | ||||
|     <string name="lock_never">Niciodată</string> | ||||
|     <plurals name="lock_after_mins"> | ||||
|         <item quantity="one">După %1$s minut</item> | ||||
|         <item quantity="few">După %1$s minute</item> | ||||
|         <item quantity="other">După %1$s minute</item> | ||||
|     </plurals> | ||||
|     <string name="secure_screen">Securizează ecran</string> | ||||
|     <string name="ext_updates_pending">Actualizări în așteptare</string> | ||||
|     <string name="pref_cutout_short">Afișare conținut în zona decupată</string> | ||||
| @@ -328,19 +323,9 @@ | ||||
|     <string name="channel_new_chapters">Actualizări de capitole</string> | ||||
|     <string name="secure_screen_summary">Ecranul securizat ascunde conținutul aplicațiilor la schimbarea aplicațiilor și blochează capturile de ecran</string> | ||||
|     <string name="pref_category_display">Afișare</string> | ||||
|     <plurals name="notification_chapters_generic"> | ||||
|         <item quantity="one">%1$d capitol nou</item> | ||||
|         <item quantity="few">%1$d capitole noi</item> | ||||
|         <item quantity="other">%1$d capitole noi</item> | ||||
|     </plurals> | ||||
|     <string name="notification_chapters_single">Capitolul %1$s</string> | ||||
|     <string name="notification_chapters_single_and_more">Capitolul %1$s și %2$d în plus</string> | ||||
|     <string name="notification_chapters_multiple">Capitolele %1$s</string> | ||||
|     <plurals name="notification_chapters_multiple_and_more"> | ||||
|         <item quantity="one">Capitolele %1$s și încă unul</item> | ||||
|         <item quantity="few">Capitolele %1$s și încă %2$d în plus</item> | ||||
|         <item quantity="other">Capitolele %1$s și încă %2$d mai multe</item> | ||||
|     </plurals> | ||||
|     <string name="hide_notification_content">Ascunde conținutul notificării</string> | ||||
|     <string name="notification_check_updates">Verificând pentru capitole noi</string> | ||||
|     <string name="pref_disable_battery_optimization">Dezactivați optimizarea bateriei</string> | ||||
| @@ -348,22 +333,12 @@ | ||||
|     <string name="battery_optimization_disabled">Optimizarea bateriei este deja dezactivată</string> | ||||
|     <string name="email">Adresa de e-mail</string> | ||||
|     <string name="pref_always_show_chapter_transition">Arată întotdeauna tranziția capitolului</string> | ||||
|     <plurals name="notification_new_chapters_summary"> | ||||
|         <item quantity="one">Pentru %d intrare</item> | ||||
|         <item quantity="few">Pentru %d intrări</item> | ||||
|         <item quantity="other">Pentru %d intrări</item> | ||||
|     </plurals> | ||||
|     <string name="action_menu">Meniu</string> | ||||
|     <string name="action_newest">Cele mai recente</string> | ||||
|     <string name="action_oldest">Cele mai vechi</string> | ||||
|     <string name="action_move_to_top">Mută pe primă poziție</string> | ||||
|     <string name="action_move_to_bottom">Mută pe ultima poziție</string> | ||||
|     <string name="channel_ext_updates">Actualizări de extensie</string> | ||||
|     <plurals name="update_check_notification_ext_updates"> | ||||
|         <item quantity="one">Actualizare de extensie disponibilă</item> | ||||
|         <item quantity="few">%d actualizări de extensii sunt disponibile</item> | ||||
|         <item quantity="other">%d actualizări de extensii sunt disponibile</item> | ||||
|     </plurals> | ||||
|     <string name="updating_library">Se actualizează biblioteca</string> | ||||
|     <string name="pref_category_reading">Citind</string> | ||||
|     <string name="pref_skip_filtered_chapters">Săriți peste capitolele filtrate</string> | ||||
| @@ -394,26 +369,11 @@ | ||||
|     <string name="check_for_updates">Verifică pentru actualizări</string> | ||||
|     <string name="restore_duration">%02d minute, %02d secunde</string> | ||||
|     <string name="downloaded_only_summary">Filtrează toate intrările din bibliotecă</string> | ||||
|     <plurals name="download_queue_summary"> | ||||
|         <item quantity="one">%1$s rămasă</item> | ||||
|         <item quantity="few">%1$s rămase</item> | ||||
|         <item quantity="other">%1$s rămase</item> | ||||
|     </plurals> | ||||
|     <string name="viewer">Mod de citire</string> | ||||
|     <string name="pref_category_for_this_series">Pentru această serie</string> | ||||
|     <string name="gray_background">Gri</string> | ||||
|     <string name="pref_true_color_summary">Reduce banding-ul, dar poate avea un impact asupra performanței</string> | ||||
|     <plurals name="num_categories"> | ||||
|         <item quantity="one">%d categorie</item> | ||||
|         <item quantity="few">%d categorii</item> | ||||
|         <item quantity="other">%d categorii</item> | ||||
|     </plurals> | ||||
|     <string name="battery_optimization_setting_activity_not_found">Imposibil de deschis setările dispozitivului</string> | ||||
|     <plurals name="restore_completed_message"> | ||||
|         <item quantity="one">Gata în %1$s cu eroarea %2$s</item> | ||||
|         <item quantity="few">Gata în %1$s cu %2$s erori</item> | ||||
|         <item quantity="other">Gata în %1$s cu %2$s erori</item> | ||||
|     </plurals> | ||||
|     <string name="tracking_info">Sincronizare unidirecțională pentru actualizarea progresului capitolului în cadrul serviciilor de urmărire. Configurați urmărirea pentru intrările individuale din butonul de urmărire al acestora.</string> | ||||
|     <string name="pref_refresh_library_covers">Reîmprospătarea coperților bibliotecii</string> | ||||
|     <string name="sort_by_upload_date">După data încărcării</string> | ||||
| @@ -436,11 +396,6 @@ | ||||
|     <string name="pref_show_reading_mode">Arată modul de citire</string> | ||||
|     <string name="label_network">Reţea</string> | ||||
|     <string name="loader_not_implemented_error">Nu s-a găsit sursa</string> | ||||
|     <plurals name="manga_num_chapters"> | ||||
|         <item quantity="one">%1$s capitol</item> | ||||
|         <item quantity="few">%1$s capitole</item> | ||||
|         <item quantity="other">%1$s de capitole</item> | ||||
|     </plurals> | ||||
|     <string name="requires_app_restart">Necesită repornirea aplicației pentru a avea efect</string> | ||||
|     <string name="action_disable">Dezactivați</string> | ||||
|     <string name="action_start">Start</string> | ||||
| @@ -461,11 +416,6 @@ | ||||
|     <string name="channel_errors">Erori</string> | ||||
|     <string name="channel_complete">Terminat</string> | ||||
|     <string name="channel_progress">Progresul</string> | ||||
|     <plurals name="num_trackers"> | ||||
|         <item quantity="one">%d tracker</item> | ||||
|         <item quantity="few">%d trackere</item> | ||||
|         <item quantity="other">%d trackere</item> | ||||
|     </plurals> | ||||
|     <string name="backup_restore_missing_trackers">Trackerele nu sunt conectate la:</string> | ||||
|     <string name="pref_remove_bookmarked_chapters">Permite ștergerea capitolelor marcate</string> | ||||
|     <string name="pref_category_delete_chapters">Ștergeți capitole</string> | ||||
| @@ -474,11 +424,6 @@ | ||||
|     <string name="parental_controls_info">Acest lucru nu împiedică extensiile neoficiale sau potențial semnalizate incorect să iasă la suprafață cu conținut 18+ în cadrul aplicației.</string> | ||||
|     <string name="no_pinned_sources">Nu aveți surse fixate</string> | ||||
|     <string name="no_chapters_error">Nu a fost găsit niciun capitol</string> | ||||
|     <plurals name="missing_chapters_warning"> | ||||
|         <item quantity="one">Omiterea %d capitol, fie că sursa lipsește, fie că a fost filtrată</item> | ||||
|         <item quantity="few">Omiterea a %d capitole, fie că sursa nu le are, fie că au fost filtrate</item> | ||||
|         <item quantity="other">Omiterea a %d capitole, fie că sursa nu le are, fie că au fost filtrate</item> | ||||
|     </plurals> | ||||
|     <string name="chapter_settings_updated">S-au actualizat setările implicite ale capitolului</string> | ||||
|     <string name="share_page_info">%1$s: %2$s, pagina %3$d</string> | ||||
|     <string name="set_chapter_settings_as_default">Setați ca implicit</string> | ||||
| @@ -565,7 +510,7 @@ | ||||
|     <string name="publishing_finished">Editare finalizată</string> | ||||
|     <string name="cancelled">Anulat</string> | ||||
|     <string name="on_hiatus">În hiatus</string> | ||||
|     <string name="notification_update_skipped">%1$d actualizari sarite</string> | ||||
|     <string name="notification_update_skipped">%1$d actualizări omise</string> | ||||
|     <string name="skipped_reason_completed">Ignorata deoarece seria este completa</string> | ||||
|     <string name="skipped_reason_not_started">Ignorat din cauza lipsei de capitolel citite</string> | ||||
|     <string name="local_invalid_format">Format de capitol invalid</string> | ||||
| @@ -644,19 +589,9 @@ | ||||
|     <string name="extension_api_error">Nu s-a putut obține lista de extensii</string> | ||||
|     <string name="ext_install_service_notif">Se instalează extensia…</string> | ||||
|     <string name="ext_installer_pref">Program instalare</string> | ||||
|     <plurals name="relative_time"> | ||||
|         <item quantity="one">Ieri</item> | ||||
|         <item quantity="few">Acum %1$d zile</item> | ||||
|         <item quantity="other">Acum %1$d zile</item> | ||||
|     </plurals> | ||||
|     <string name="pref_create_folder_per_manga_summary">Creează dosare în funcție de titlul intrărilor</string> | ||||
|     <string name="automatic_background">Automat</string> | ||||
|     <string name="on">Pornit</string> | ||||
|     <plurals name="next_unread_chapters"> | ||||
|         <item quantity="one">Următorul capitol necitit</item> | ||||
|         <item quantity="few">Următoarele %d capitole necitite</item> | ||||
|         <item quantity="other">Următoarele %d capitole necitite</item> | ||||
|     </plurals> | ||||
|     <string name="are_you_sure">Ești sigur\?</string> | ||||
|     <string name="error_saving_picture">Eroare la salvarea imaginii</string> | ||||
|     <string name="ext_update_all">Actualizează tot</string> | ||||
| @@ -769,4 +704,13 @@ | ||||
|     <string name="copied_to_clipboard_plain">Copiat in clipboard</string> | ||||
|     <string name="unlock_app_title">Deblochează %s</string> | ||||
|     <string name="delete_downloaded">Șterge descărcările</string> | ||||
|     <string name="action_filter_interval_late">Verificare întârziată (10+)</string> | ||||
|     <string name="action_set_interval">Setează intervalul</string> | ||||
|     <string name="action_filter_interval_passed">Perioada de control a trecut</string> | ||||
|     <string name="scanlator">Scanlator</string> | ||||
|     <string name="label_data_storage">Date și stocare</string> | ||||
|     <string name="action_filter_interval_dropped">Abandonat? Întârziat (20+ și 2 luni)</string> | ||||
|     <string name="action_sort_next_updated">Următoarea actualizare așteptată</string> | ||||
|     <string name="action_filter_interval_long">Fetch lunar (28 de zile)</string> | ||||
|     <string name="action_filter_interval_custom">Interval de preluare personalizat</string> | ||||
| </resources> | ||||
							
								
								
									
										99
									
								
								i18n/src/commonMain/resources/MR/ru/plurals.xml
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										99
									
								
								i18n/src/commonMain/resources/MR/ru/plurals.xml
									
									
									
									
									
										Normal file
									
								
							| @@ -0,0 +1,99 @@ | ||||
| <?xml version="1.0" encoding="utf-8"?> | ||||
| <resources> | ||||
|     <plurals name="lock_after_mins"> | ||||
|         <item quantity="one">После %1$s минуты</item> | ||||
|         <item quantity="few">После %1$s минут</item> | ||||
|         <item quantity="many">После %1$s минут</item> | ||||
|         <item quantity="other">После %1$s минут</item> | ||||
|     </plurals> | ||||
|     <plurals name="notification_chapters_multiple_and_more"> | ||||
|         <item quantity="one">Главы %1$s и ещё одна</item> | ||||
|         <item quantity="few">Главы %1$s и ещё %2$d</item> | ||||
|         <item quantity="many">Главы %1$s и ещё %2$d</item> | ||||
|         <item quantity="other">Главы %1$s и ещё %2$d</item> | ||||
|     </plurals> | ||||
|     <plurals name="notification_chapters_generic"> | ||||
|         <item quantity="one">%1$d новая глава</item> | ||||
|         <item quantity="few">%1$d новые главы</item> | ||||
|         <item quantity="many">%1$d новых глав</item> | ||||
|         <item quantity="other">%1$d новых глав</item> | ||||
|     </plurals> | ||||
|     <plurals name="notification_new_chapters_summary"> | ||||
|         <item quantity="one">Для %d серии</item> | ||||
|         <item quantity="few">Для %d серий</item> | ||||
|         <item quantity="many">Для %d серий</item> | ||||
|         <item quantity="other">Для %d серий</item> | ||||
|     </plurals> | ||||
|     <plurals name="update_check_notification_ext_updates"> | ||||
|         <item quantity="one">Доступно обновление для %d расширения</item> | ||||
|         <item quantity="few">Доступны обновления для %d расширений</item> | ||||
|         <item quantity="many">Доступны обновления для %d расширений</item> | ||||
|         <item quantity="other">Доступны обновления для %d расширений</item> | ||||
|     </plurals> | ||||
|     <plurals name="download_queue_summary"> | ||||
|         <item quantity="one">Осталась %1$s глава</item> | ||||
|         <item quantity="few">Осталось %1$s главы</item> | ||||
|         <item quantity="many">Осталось %1$s глав</item> | ||||
|         <item quantity="other">Осталось %1$s глав</item> | ||||
|     </plurals> | ||||
|     <plurals name="num_categories"> | ||||
|         <item quantity="one">%d категория</item> | ||||
|         <item quantity="few">%d категории</item> | ||||
|         <item quantity="many">%d категорий</item> | ||||
|         <item quantity="other">%d категорий</item> | ||||
|     </plurals> | ||||
|     <plurals name="restore_completed_message"> | ||||
|         <item quantity="one">Выполнено за %1$s с %2$s ошибкой</item> | ||||
|         <item quantity="few">Выполнено за %1$s с %2$s ошибками</item> | ||||
|         <item quantity="many">Выполнено за %1$s с %2$s ошибками</item> | ||||
|         <item quantity="other">Выполнено за %1$s с %2$s ошибками</item> | ||||
|     </plurals> | ||||
|     <plurals name="manga_num_chapters"> | ||||
|         <item quantity="one">%1$s глава</item> | ||||
|         <item quantity="few">%1$s главы</item> | ||||
|         <item quantity="many">%1$s глав</item> | ||||
|         <item quantity="other">%1$s глав</item> | ||||
|     </plurals> | ||||
|     <plurals name="num_trackers"> | ||||
|         <item quantity="one">%d отслеживание</item> | ||||
|         <item quantity="few">%d отслеживания</item> | ||||
|         <item quantity="many">%d отслеживаний</item> | ||||
|         <item quantity="other">%d отслеживаний</item> | ||||
|     </plurals> | ||||
|     <plurals name="missing_chapters_warning"> | ||||
|         <item quantity="one">Отсутствует %d глава</item> | ||||
|         <item quantity="few">Отсутствуют %d главы</item> | ||||
|         <item quantity="many">Отсутствуют %d глав</item> | ||||
|         <item quantity="other">Отсутствуют %d глав</item> | ||||
|     </plurals> | ||||
|     <plurals name="relative_time"> | ||||
|         <item quantity="one">Вчера</item> | ||||
|         <item quantity="few">%1$d дня назад</item> | ||||
|         <item quantity="many">%1$d дней назад</item> | ||||
|         <item quantity="other">%1$d дней назад</item> | ||||
|     </plurals> | ||||
|     <plurals name="next_unread_chapters"> | ||||
|         <item quantity="one">Следующая непрочитанная глава</item> | ||||
|         <item quantity="few">Следующие %d непрочитанные главы</item> | ||||
|         <item quantity="many">Следующие %d непрочитанных глав</item> | ||||
|         <item quantity="other">Следующие %d непрочитанных глав</item> | ||||
|     </plurals> | ||||
|     <plurals name="download_amount"> | ||||
|         <item quantity="one">Следующая глава</item> | ||||
|         <item quantity="few">Следующие %d главы</item> | ||||
|         <item quantity="many">Следующие %d глав</item> | ||||
|         <item quantity="other">Следующие %d глав</item> | ||||
|     </plurals> | ||||
|     <plurals name="missing_chapters"> | ||||
|         <item quantity="one">Отсутствует %1$s глава</item> | ||||
|         <item quantity="few">Отсутствуют %1$s главы</item> | ||||
|         <item quantity="many">Отсутствуют %1$s глав</item> | ||||
|         <item quantity="other">Отсутствуют %1$s глав</item> | ||||
|     </plurals> | ||||
|     <plurals name="day"> | ||||
|         <item quantity="one">1 день</item> | ||||
|         <item quantity="few">%d дня</item> | ||||
|         <item quantity="many">%d дней</item> | ||||
|         <item quantity="other">%d дней</item> | ||||
|     </plurals> | ||||
| </resources> | ||||
| @@ -206,7 +206,7 @@ | ||||
|     <string name="delete_downloads_for_manga">Удалить загруженные главы\?</string> | ||||
|     <string name="download_notifier_download_paused">Загрузки приостановлены</string> | ||||
|     <string name="history">История</string> | ||||
|     <string name="local_source">Источник пользователя</string> | ||||
|     <string name="local_source">Источник на устройстве</string> | ||||
|     <string name="manga">Серии библиотеки</string> | ||||
|     <string name="no_more_results">Больше нет результатов</string> | ||||
|     <string name="pref_backup_directory">Папка резервной копии</string> | ||||
| @@ -315,51 +315,21 @@ | ||||
|     <string name="lock_when_idle">Блокировать при бездействии</string> | ||||
|     <string name="lock_always">Всегда</string> | ||||
|     <string name="lock_never">Никогда</string> | ||||
|     <plurals name="lock_after_mins"> | ||||
|         <item quantity="one">После %1$s минуты</item> | ||||
|         <item quantity="few">После %1$s минут</item> | ||||
|         <item quantity="many">После %1$s минут</item> | ||||
|         <item quantity="other">После %1$s минут</item> | ||||
|     </plurals> | ||||
|     <string name="secure_screen">Защита экрана приложения</string> | ||||
|     <string name="ext_updates_pending">Доступны обновления</string> | ||||
|     <string name="pref_cutout_short">Показывать содержимое в вырезанной области</string> | ||||
|     <string name="information_cloudflare_bypass_failure">Не удалось обойти Cloudflare</string> | ||||
|     <string name="information_webview_outdated">Пожалуйста, обновите WebView для лучшей совместимости</string> | ||||
|     <string name="channel_new_chapters">Обновления глав</string> | ||||
|     <plurals name="notification_chapters_multiple_and_more"> | ||||
|         <item quantity="one">Главы %1$s и ещё одна</item> | ||||
|         <item quantity="few">Главы %1$s и ещё %2$d</item> | ||||
|         <item quantity="many">Главы %1$s и ещё %2$d</item> | ||||
|         <item quantity="other">Главы %1$s и ещё %2$d</item> | ||||
|     </plurals> | ||||
|     <string name="notification_chapters_single_and_more">Глава %1$s и ещё %2$d</string> | ||||
|     <string name="notification_chapters_multiple">Главы %1$s</string> | ||||
|     <string name="notification_chapters_single">Глава %1$s</string> | ||||
|     <string name="pref_category_display">Отображение</string> | ||||
|     <plurals name="notification_chapters_generic"> | ||||
|         <item quantity="one">%1$d новая глава</item> | ||||
|         <item quantity="few">%1$d новые главы</item> | ||||
|         <item quantity="many">%1$d новых глав</item> | ||||
|         <item quantity="other">%1$d новых глав</item> | ||||
|     </plurals> | ||||
|     <plurals name="notification_new_chapters_summary"> | ||||
|         <item quantity="one">Для %d серии</item> | ||||
|         <item quantity="few">Для %d серий</item> | ||||
|         <item quantity="many">Для %d серий</item> | ||||
|         <item quantity="other">Для %d серий</item> | ||||
|     </plurals> | ||||
|     <string name="notification_check_updates">Проверка наличия новых глав</string> | ||||
|     <string name="updating_library">Обновление библиотеки</string> | ||||
|     <string name="battery_optimization_disabled">Оптимизация батареи уже выключена</string> | ||||
|     <string name="pref_disable_battery_optimization_summary">Помогает с обновлением библиотеки и резервной копией в фоне</string> | ||||
|     <string name="pref_disable_battery_optimization">Отключить оптимизацию батареи</string> | ||||
|     <plurals name="update_check_notification_ext_updates"> | ||||
|         <item quantity="one">Доступно обновление для %d расширения</item> | ||||
|         <item quantity="few">Доступны обновления для %d расширений</item> | ||||
|         <item quantity="many">Доступны обновления для %d расширений</item> | ||||
|         <item quantity="other">Доступны обновления для %d расширений</item> | ||||
|     </plurals> | ||||
|     <string name="email">Адрес электронной почты</string> | ||||
|     <string name="pref_always_show_chapter_transition">Переход между главами</string> | ||||
|     <string name="hide_notification_content">Скрыть содержимое уведомлений</string> | ||||
| @@ -389,7 +359,7 @@ | ||||
|     <string name="licenses">Лицензии open-source</string> | ||||
|     <string name="website">Сайт</string> | ||||
|     <string name="recent_manga_time">Гл. %1$s - %2$s</string> | ||||
|     <string name="local_source_help_guide">Руководство по источнику пользователя</string> | ||||
|     <string name="local_source_help_guide">Руководство по источнику на устройстве</string> | ||||
|     <string name="last_used_source">Последний использованный источник</string> | ||||
|     <string name="downloaded_only_summary">Включает фильтр «Загружено» для всей библиотеки</string> | ||||
|     <string name="check_for_updates">Проверить обновления</string> | ||||
| @@ -399,30 +369,12 @@ | ||||
|     <string name="creating_backup_error">Не удалось создать резервную копию</string> | ||||
|     <string name="backup_in_progress">Резервная копия уже выполняется</string> | ||||
|     <string name="restore_duration">%02d мин, %02d сек</string> | ||||
|     <plurals name="download_queue_summary"> | ||||
|         <item quantity="one">Осталась %1$s глава</item> | ||||
|         <item quantity="few">Осталось %1$s главы</item> | ||||
|         <item quantity="many">Осталось %1$s глав</item> | ||||
|         <item quantity="other">Осталось %1$s глав</item> | ||||
|     </plurals> | ||||
|     <string name="viewer">Режим чтения</string> | ||||
|     <string name="pref_category_for_this_series">Для этой серии</string> | ||||
|     <string name="gray_background">Серый</string> | ||||
|     <string name="pref_true_color_summary">Уменьшает полосатость, но может влиять на производительность</string> | ||||
|     <plurals name="num_categories"> | ||||
|         <item quantity="one">%d категория</item> | ||||
|         <item quantity="few">%d категории</item> | ||||
|         <item quantity="many">%d категорий</item> | ||||
|         <item quantity="other">%d категорий</item> | ||||
|     </plurals> | ||||
|     <string name="battery_optimization_setting_activity_not_found">Не удалось открыть настройки устройства</string> | ||||
|     <string name="pref_refresh_library_covers">Обновить обложки серий</string> | ||||
|     <plurals name="restore_completed_message"> | ||||
|         <item quantity="one">Выполнено за %1$s с %2$s ошибкой</item> | ||||
|         <item quantity="few">Выполнено за %1$s с %2$s ошибками</item> | ||||
|         <item quantity="many">Выполнено за %1$s с %2$s ошибками</item> | ||||
|         <item quantity="other">Выполнено за %1$s с %2$s ошибками</item> | ||||
|     </plurals> | ||||
|     <string name="tracking_info">Односторонняя синхронизация для обновления прогресса в сторонних сервисах отслеживания. Настройте отслеживание при помощи кнопки «Отслеживание».</string> | ||||
|     <string name="unofficial_extension_message">Это расширение не входит в официальный список расширений.</string> | ||||
|     <string name="ext_unofficial">Неофициальное</string> | ||||
| @@ -445,12 +397,6 @@ | ||||
|     <string name="action_start">Начать</string> | ||||
|     <string name="loader_not_implemented_error">Источник не найден</string> | ||||
|     <string name="action_disable">Отключить</string> | ||||
|     <plurals name="manga_num_chapters"> | ||||
|         <item quantity="one">%1$s глава</item> | ||||
|         <item quantity="few">%1$s главы</item> | ||||
|         <item quantity="many">%1$s глав</item> | ||||
|         <item quantity="other">%1$s глав</item> | ||||
|     </plurals> | ||||
|     <string name="requires_app_restart">Для вступления в силу требуется перезапуск приложения</string> | ||||
|     <string name="label_network">Сеть</string> | ||||
|     <string name="tapping_inverted_both">Обе оси</string> | ||||
| @@ -467,12 +413,6 @@ | ||||
|     <string name="pref_category_reading_mode">Режим чтения</string> | ||||
|     <string name="pref_category_theme">Тема</string> | ||||
|     <string name="action_sort_date_added">Последнее добавление серии</string> | ||||
|     <plurals name="num_trackers"> | ||||
|         <item quantity="one">%d отслеживание</item> | ||||
|         <item quantity="few">%d отслеживания</item> | ||||
|         <item quantity="many">%d отслеживаний</item> | ||||
|         <item quantity="other">%d отслеживаний</item> | ||||
|     </plurals> | ||||
|     <string name="no_pinned_sources">У вас нет закреплённых источников</string> | ||||
|     <string name="channel_complete">Завершено</string> | ||||
|     <string name="channel_progress">Прогресс</string> | ||||
| @@ -483,12 +423,6 @@ | ||||
|     <string name="ext_nsfw_warning">Источики из этого расширения могут содержать контент NSFW (18+)</string> | ||||
|     <string name="ext_nsfw_short">18+</string> | ||||
|     <string name="parental_controls_info">Это не предотвращает появление внутри приложения контента NSFW (18+) из неофициальных или потенциально неправильно помеченных расширений.</string> | ||||
|     <plurals name="missing_chapters_warning"> | ||||
|         <item quantity="one">Отсутствует %d глава</item> | ||||
|         <item quantity="few">Отсутствуют %d главы</item> | ||||
|         <item quantity="many">Отсутствуют %d глав</item> | ||||
|         <item quantity="other">Отсутствуют %d глав</item> | ||||
|     </plurals> | ||||
|     <string name="no_chapters_error">Нет глав</string> | ||||
|     <string name="chapter_settings_updated">Настройки главы по умолчанию были обновлены</string> | ||||
|     <string name="set_chapter_settings_as_default">Установить по умолчанию</string> | ||||
| @@ -567,7 +501,7 @@ | ||||
|     <string name="local_invalid_format">Недопустимый формат глав</string> | ||||
|     <string name="chapter_not_found">Глава не найдена</string> | ||||
|     <string name="restrictions">Ограничения: %s</string> | ||||
|     <string name="action_display_local_badge">Источник пользователя</string> | ||||
|     <string name="action_display_local_badge">Источник на устройстве</string> | ||||
|     <string name="off">Выключено</string> | ||||
|     <string name="on">Включено</string> | ||||
|     <string name="error_sharing_cover">Ошибка отправки обложки</string> | ||||
| @@ -598,12 +532,6 @@ | ||||
|     <string name="pref_highest">Самая высокая</string> | ||||
|     <string name="pref_hide_threshold">Чувствительность скрытия меню при прокрутке</string> | ||||
|     <string name="pref_inverted_colors">Цвета наоборот</string> | ||||
|     <plurals name="relative_time"> | ||||
|         <item quantity="one">Вчера</item> | ||||
|         <item quantity="few">%1$d дня назад</item> | ||||
|         <item quantity="many">%1$d дней назад</item> | ||||
|         <item quantity="other">%1$d дней назад</item> | ||||
|     </plurals> | ||||
|     <string name="relative_time_today">Сегодня</string> | ||||
|     <string name="theme_tealturquoise">Бирюзовая</string> | ||||
|     <string name="confirm_lock_change">Выполните аутентификацию, чтобы подтвердить изменение</string> | ||||
| @@ -706,12 +634,6 @@ | ||||
|     <string name="update_already_running">Обновление уже запущено</string> | ||||
|     <string name="error_user_agent_string_blank">User agent не может быть пустым</string> | ||||
|     <string name="theme_tidalwave">Приливная Волна</string> | ||||
|     <plurals name="next_unread_chapters"> | ||||
|         <item quantity="one">Следующая непрочитанная глава</item> | ||||
|         <item quantity="few">Следующие %d непрочитанные главы</item> | ||||
|         <item quantity="many">Следующие %d непрочитанных глав</item> | ||||
|         <item quantity="other">Следующие %d непрочитанных глав</item> | ||||
|     </plurals> | ||||
|     <string name="download_ahead">Загрузить наперёд</string> | ||||
|     <string name="auto_download_while_reading">При чтении</string> | ||||
|     <string name="download_ahead_info">Работает только если текущая + следующая главы уже загружены.</string> | ||||
| @@ -769,7 +691,7 @@ | ||||
|     <string name="label_mean_score">Средняя оценка</string> | ||||
|     <string name="minute_short">%dм</string> | ||||
|     <string name="label_titles_in_global_update">В глобальном обновлении</string> | ||||
|     <string name="label_local">Пользовательское</string> | ||||
|     <string name="label_local">На устройстве</string> | ||||
|     <string name="action_not_now">Не сейчас</string> | ||||
|     <string name="information_no_manga_category">Категория пуста</string> | ||||
|     <string name="pref_library_update_show_tab_badge">Количество непрочитанных глав на иконке «Обновления»</string> | ||||
| @@ -781,24 +703,12 @@ | ||||
| \nВы всё ещё хотите продолжить\?</string> | ||||
|     <string name="track_error">%1$s ошибка: %2$s</string> | ||||
|     <string name="information_required_plain">*необходимо</string> | ||||
|     <plurals name="download_amount"> | ||||
|         <item quantity="one">Следующая глава</item> | ||||
|         <item quantity="few">Следующие %d главы</item> | ||||
|         <item quantity="many">Следующие %d глав</item> | ||||
|         <item quantity="other">Следующие %d глав</item> | ||||
|     </plurals> | ||||
|     <string name="pref_hide_in_library_items">Скрывать серии, уже находящиеся в библиотеке</string> | ||||
|     <string name="action_copy_to_clipboard">Копировать в буфер обмена</string> | ||||
|     <string name="action_update_category">Обновить категорию</string> | ||||
|     <string name="split_tall_images">Разделять длинные изображения</string> | ||||
|     <string name="overlay_header">Наложение</string> | ||||
|     <string name="pref_page_rotate">Развернуть широкие страницы под размер экрана</string> | ||||
|     <plurals name="missing_chapters"> | ||||
|         <item quantity="one">Отсутствует %1$s глава</item> | ||||
|         <item quantity="few">Отсутствуют %1$s главы</item> | ||||
|         <item quantity="many">Отсутствуют %1$s глав</item> | ||||
|         <item quantity="other">Отсутствуют %1$s глав</item> | ||||
|     </plurals> | ||||
|     <string name="pref_page_rotate_invert">Отразить ориентацию развёрнутых широких страниц</string> | ||||
|     <string name="pref_debug_info">Отладочная информация</string> | ||||
|     <string name="pref_chapter_swipe">Перелистывание глав</string> | ||||
| @@ -818,12 +728,6 @@ | ||||
|     <string name="action_sort_next_updated">Следующее ожидамое обновление</string> | ||||
|     <string name="pref_update_only_in_release_period">За пределами ожидаемого периода выпуска</string> | ||||
|     <string name="manga_display_modified_interval_title">Задать обновления каждые</string> | ||||
|     <plurals name="day"> | ||||
|         <item quantity="one">1 день</item> | ||||
|         <item quantity="few">%d дня</item> | ||||
|         <item quantity="many">%d дней</item> | ||||
|         <item quantity="other">%d дней</item> | ||||
|     </plurals> | ||||
|     <string name="skipped_reason_not_in_release_period">Пропущено, т.к сегодня не ожидается выпуска</string> | ||||
|     <string name="track_delete_title">Удалить отслеживание %s\?</string> | ||||
|     <string name="track_delete_text">Это удалит отслеживание в приложении.</string> | ||||
							
								
								
									
										51
									
								
								i18n/src/commonMain/resources/MR/sa/plurals.xml
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										51
									
								
								i18n/src/commonMain/resources/MR/sa/plurals.xml
									
									
									
									
									
										Normal file
									
								
							| @@ -0,0 +1,51 @@ | ||||
| <?xml version="1.0" encoding="utf-8"?> | ||||
| <resources> | ||||
|     <plurals name="lock_after_mins"> | ||||
|         <item quantity="one">एकनिमेषानन्तरम्</item> | ||||
|         <item quantity="other">द्विनिमेषानन्तरम्</item> | ||||
|     </plurals> | ||||
|     <plurals name="relative_time"> | ||||
|         <item quantity="one">ह्यः</item> | ||||
|         <item quantity="other">द्विदिनपूर्वम्</item> | ||||
|     </plurals> | ||||
|     <plurals name="num_categories"> | ||||
|         <item quantity="one">%d वर्गः</item> | ||||
|         <item quantity="other">%d वर्गौ</item> | ||||
|     </plurals> | ||||
|     <plurals name="restore_completed_message"> | ||||
|         <item quantity="one">%1$s समये %2$s दोषेण कृतम्</item> | ||||
|         <item quantity="other">%1$s समये %2$s दोषाभ्यां कृतम्</item> | ||||
|     </plurals> | ||||
|     <plurals name="manga_num_chapters"> | ||||
|         <item quantity="one">१ अध्यायः</item> | ||||
|         <item quantity="other">२ अध्यायौ</item> | ||||
|     </plurals> | ||||
|     <plurals name="num_trackers"> | ||||
|         <item quantity="one">१ ट्राकर्तन्त्रांशः</item> | ||||
|         <item quantity="other">२ ट्राकर्तन्त्रांशौ</item> | ||||
|     </plurals> | ||||
|     <plurals name="download_queue_summary"> | ||||
|         <item quantity="one">१ शेषम्</item> | ||||
|         <item quantity="other">२ शेषे</item> | ||||
|     </plurals> | ||||
|     <plurals name="update_check_notification_ext_updates"> | ||||
|         <item quantity="one">विस्तारनवीकरणम् उपलभ्यम्</item> | ||||
|         <item quantity="other">द्वे विस्तारनवीकरणे उपलभ्ये</item> | ||||
|     </plurals> | ||||
|     <plurals name="notification_chapters_generic"> | ||||
|         <item quantity="one">एकः नूतनाध्यायः</item> | ||||
|         <item quantity="other">द्वौ नूतनाध्यायौ</item> | ||||
|     </plurals> | ||||
|     <plurals name="notification_new_chapters_summary"> | ||||
|         <item quantity="one">एकाय शीर्षकाय</item> | ||||
|         <item quantity="other">द्वाभ्यां शीर्षकाभ्याम्</item> | ||||
|     </plurals> | ||||
|     <plurals name="notification_chapters_multiple_and_more"> | ||||
|         <item quantity="one">अध्यायाः %1$s च इतोऽपि १ च</item> | ||||
|         <item quantity="other">अध्यायाः %1$s च इतोऽपि २ च</item> | ||||
|     </plurals> | ||||
|     <plurals name="missing_chapters_warning"> | ||||
|         <item quantity="one">१ अध्यायं लङ्घयति यतः मूले सः अनुपस्थितः अस्ति उत सः बहिः सम्मृष्टः कृतः</item> | ||||
|         <item quantity="other">२ अध्यायौ लङ्घयति यतः मूले तौ अनुपस्थितौ स्तः उत तौ बहिः सम्मृष्टौ कृतौ</item> | ||||
|     </plurals> | ||||
| </resources> | ||||
| @@ -145,18 +145,10 @@ | ||||
|     <string name="hide_notification_content">आवेदनवस्तु वृणोतु</string> | ||||
|     <string name="pref_date_format">तिथिसंरूपम्</string> | ||||
|     <string name="lock_when_idle">कार्याभावे अपिदधातु</string> | ||||
|     <plurals name="lock_after_mins"> | ||||
|         <item quantity="one">एकनिमेषानन्तरम्</item> | ||||
|         <item quantity="other">द्विनिमेषानन्तरम्</item> | ||||
|     </plurals> | ||||
|     <string name="secure_screen_summary">अभिरक्षणपटलम् अनुप्रयोगाणां परिवर्तने अनुप्रयोगवस्तु वृणोति पटलप्रतिकृतीनां च सृष्टिं निवारयति॥</string> | ||||
|     <string name="pref_category_nsfw_content">प्रौढानां कृते एव (१८+) वस्तुमूलानि</string> | ||||
|     <string name="pref_show_nsfw_source">मूलानां विस्ताराणां च सूचीषु दर्शयतु</string> | ||||
|     <string name="relative_time_today">अद्य</string> | ||||
|     <plurals name="relative_time"> | ||||
|         <item quantity="one">ह्यः</item> | ||||
|         <item quantity="other">द्विदिनपूर्वम्</item> | ||||
|     </plurals> | ||||
|     <string name="pref_library_columns">प्रतिपङ्क्तौ वस्तूनि</string> | ||||
|     <string name="landscape">अनुप्रस्थम्</string> | ||||
|     <string name="pref_category_display">प्रदर्शनम्</string> | ||||
| @@ -196,10 +188,6 @@ | ||||
|     <string name="ext_install_service_notif">विस्तारं प्रतिष्ठापयति …</string> | ||||
|     <string name="ext_installer_legacy">क्रमगतम्</string> | ||||
|     <string name="pref_fullscreen">पूर्णपटलम्</string> | ||||
|     <plurals name="num_categories"> | ||||
|         <item quantity="one">%d वर्गः</item> | ||||
|         <item quantity="other">%d वर्गौ</item> | ||||
|     </plurals> | ||||
|     <string name="pref_library_update_refresh_metadata">प्रदत्तांशं स्वयञ्चालितं नवीकरोतु</string> | ||||
|     <string name="categorized_display_settings">प्रतिवर्गं विन्यासस्य प्रदर्शनस्य च कृते समायोजनानि</string> | ||||
|     <string name="untrusted_extension">अविश्वस्तविस्तारः</string> | ||||
| @@ -349,10 +337,6 @@ | ||||
|     <string name="restoring_backup">प्रतिलेखनं समाददाति</string> | ||||
|     <string name="restoring_backup_canceled">प्रतिसंस्कारः अलोप्यत</string> | ||||
|     <string name="restore_completed">प्रतिसंस्कारं समापितम्</string> | ||||
|     <plurals name="restore_completed_message"> | ||||
|         <item quantity="one">%1$s समये %2$s दोषेण कृतम्</item> | ||||
|         <item quantity="other">%1$s समये %2$s दोषाभ्यां कृतम्</item> | ||||
|     </plurals> | ||||
|     <string name="restore_miui_warning">यदि MIUI वृद्धिकरणम् अशक्तं कृतं तर्हि प्रतिलेखनम्/प्रतिसंस्कारः क्रियां युक्तं न कुर्यात्।</string> | ||||
|     <string name="backup_info">स्वयङ्कृतप्रतिलेखनानि अतीव निर्दिशितानि। त्वया अन्यस्थानेषु अपि प्रतिकृतीनां स्थापनम् उचितं भविष्यति॥</string> | ||||
|     <string name="pref_restore_backup_summ">प्रतिलेखनसञ्चिकायाः ग्रन्थालयं समाददातु</string> | ||||
| @@ -447,10 +431,6 @@ | ||||
|     <string name="channel_errors">दोषाः</string> | ||||
|     <string name="label_downloaded_only">अवारोपितानि एव</string> | ||||
|     <string name="channel_progress">प्रगतिः</string> | ||||
|     <plurals name="manga_num_chapters"> | ||||
|         <item quantity="one">१ अध्यायः</item> | ||||
|         <item quantity="other">२ अध्यायौ</item> | ||||
|     </plurals> | ||||
|     <string name="download_notifier_downloader_title">अवारोपणसाधनम्</string> | ||||
|     <string name="channel_common">सामान्यम्</string> | ||||
|     <string name="pref_incognito_mode">प्रच्छन्ननामदशा</string> | ||||
| @@ -478,10 +458,6 @@ | ||||
|     <string name="no_results_found">फलितानि न लभ्यानि</string> | ||||
|     <string name="local_invalid_format">अध्यायसंरूपम् अनाप्तम्</string> | ||||
|     <string name="add_tracking">अनुप्रज्ञानं योजयतु</string> | ||||
|     <plurals name="num_trackers"> | ||||
|         <item quantity="one">१ ट्राकर्तन्त्रांशः</item> | ||||
|         <item quantity="other">२ ट्राकर्तन्त्रांशौ</item> | ||||
|     </plurals> | ||||
|     <string name="snack_categories_deleted">वर्गाः नाशिताः</string> | ||||
|     <string name="picture_saved">चित्रं रक्षितम्</string> | ||||
|     <string name="custom_filter">स्वकृतशोधकम्</string> | ||||
| @@ -496,10 +472,6 @@ | ||||
|     <string name="channel_new_chapters">अध्यायनवीकरणानि</string> | ||||
|     <string name="channel_app_updates">अनुप्रयोगनवीकरणानि</string> | ||||
|     <string name="channel_ext_updates">विस्तारनवीकरणानि</string> | ||||
|     <plurals name="download_queue_summary"> | ||||
|         <item quantity="one">१ शेषम्</item> | ||||
|         <item quantity="other">२ शेषे</item> | ||||
|     </plurals> | ||||
|     <string name="pref_dns_over_https">HTTPS उपरि DNS (DoH)</string> | ||||
|     <string name="getting_started_guide">प्रारम्भिकमार्गदर्शनम्</string> | ||||
|     <string name="battery_optimization_setting_activity_not_found">साधनसमायोजनानि उद्घाटयितुं न अशक्नोम्</string> | ||||
| @@ -508,14 +480,6 @@ | ||||
|     <string name="page_list_empty_error">पुटाः न लभ्याः</string> | ||||
|     <string name="loader_not_implemented_error">मूलं न लभ्यम्</string> | ||||
|     <string name="update_check_notification_update_available">नूतनसंस्करणम् उपलभ्यम्</string> | ||||
|     <plurals name="update_check_notification_ext_updates"> | ||||
|         <item quantity="one">विस्तारनवीकरणम् उपलभ्यम्</item> | ||||
|         <item quantity="other">द्वे विस्तारनवीकरणे उपलभ्ये</item> | ||||
|     </plurals> | ||||
|     <plurals name="notification_chapters_generic"> | ||||
|         <item quantity="one">एकः नूतनाध्यायः</item> | ||||
|         <item quantity="other">द्वौ नूतनाध्यायौ</item> | ||||
|     </plurals> | ||||
|     <string name="action_show_manga">माङ्गां दर्शयतु</string> | ||||
|     <string name="notification_new_chapters">नूतनाध्यायाः लभ्याः</string> | ||||
|     <string name="action_display_cover_only_grid">केवलं मुखचित्रेण इष्टिकाविन्यासः</string> | ||||
| @@ -532,10 +496,6 @@ | ||||
|     <string name="file_select_backup">प्रतिलेखनसञ्चिकां चिनोतु</string> | ||||
|     <string name="pref_navigate_pan">पुटान्तरे प्लवतु</string> | ||||
|     <string name="pref_landscape_zoom">अनुप्रस्थचित्रं सर्पकं करोतु</string> | ||||
|     <plurals name="notification_new_chapters_summary"> | ||||
|         <item quantity="one">एकाय शीर्षकाय</item> | ||||
|         <item quantity="other">द्वाभ्यां शीर्षकाभ्याम्</item> | ||||
|     </plurals> | ||||
|     <string name="pref_refresh_library_covers">ग्रन्थालयमाङ्गामुखचित्राणि नवीकरोतु</string> | ||||
|     <string name="pref_dump_crash_logs">ध्वंसेतिवृत्तानि पातयतु</string> | ||||
|     <string name="sort_by_upload_date">उपारोपिततिथ्या</string> | ||||
| @@ -571,10 +531,6 @@ | ||||
|     <string name="download_notifier_no_network">जालसम्पर्कः न उपलभ्यः</string> | ||||
|     <string name="copied_to_clipboard">प्रतिलेखः अंशफलकान्ते कृतः - | ||||
| \n%1$s</string> | ||||
|     <plurals name="notification_chapters_multiple_and_more"> | ||||
|         <item quantity="one">अध्यायाः %1$s च इतोऽपि १ च</item> | ||||
|         <item quantity="other">अध्यायाः %1$s च इतोऽपि २ च</item> | ||||
|     </plurals> | ||||
|     <string name="notification_chapters_single_and_more">अध्यायः %1$s च इतोऽपि %2$d च</string> | ||||
|     <string name="file_picker_error">सञ्चिकाग्राही अनुप्रयोगः न लभ्यः</string> | ||||
|     <string name="skipped_reason_completed">धारावाहिकः पूर्णः अतः लङ्घितः</string> | ||||
| @@ -596,10 +552,6 @@ | ||||
|     <string name="confirm_delete_chapters">त्वं निश्चितरूपेण सङ्गृहीतान् अध्यायान् नाशयितुम् इच्छसि किम् \?</string> | ||||
|     <string name="clear_database_confirmation">त्वं निश्चितं किम्। पर-ग्रन्थालय-माङ्गानाम् अपिठाध्यायाः नष्टाः भविष्यन्ते</string> | ||||
|     <string name="download_queue_size_warning">पूर्वसूचना -- महद्भाराणि अवारोपणानि कुर्यात् मूलानि मन्दानि। अपि च टाचीयोमिं निवारयेत्॥</string> | ||||
|     <plurals name="missing_chapters_warning"> | ||||
|         <item quantity="one">१ अध्यायं लङ्घयति यतः मूले सः अनुपस्थितः अस्ति उत सः बहिः सम्मृष्टः कृतः</item> | ||||
|         <item quantity="other">२ अध्यायौ लङ्घयति यतः मूले तौ अनुपस्थितौ स्तः उत तौ बहिः सम्मृष्टौ कृतौ</item> | ||||
|     </plurals> | ||||
|     <string name="pref_dump_crash_logs_summary">व्युत्पादकेभ्यः प्रसारयितुं दोषदत्तम् एकस्यां सञ्चिकायां रक्षति</string> | ||||
|     <string name="confirm_set_chapter_settings">इमानि समायोजनानि प्राथमिकानि इव रक्षितुं त्वं निश्चितं किम्</string> | ||||
|     <string name="pref_acra_summary">स्खलितानां परिहरणे साहाय्यं करिष्यति। संवेदनशीलदत्तांशाः न प्रेषिष्यते॥</string> | ||||
							
								
								
									
										24
									
								
								i18n/src/commonMain/resources/MR/sah/plurals.xml
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										24
									
								
								i18n/src/commonMain/resources/MR/sah/plurals.xml
									
									
									
									
									
										Normal file
									
								
							| @@ -0,0 +1,24 @@ | ||||
| <?xml version="1.0" encoding="utf-8"?> | ||||
| <resources> | ||||
|     <plurals name="num_categories"> | ||||
|         <item quantity="other">%d бөлөхтөр</item> | ||||
|     </plurals> | ||||
|     <plurals name="lock_after_mins"> | ||||
|         <item quantity="other">%1$s мүнүүтэ кэннэ</item> | ||||
|     </plurals> | ||||
|     <plurals name="restore_completed_message"> | ||||
|         <item quantity="other">Туолла %1$sҕа %2$s сыаһалаах</item> | ||||
|     </plurals> | ||||
|     <plurals name="download_queue_summary"> | ||||
|         <item quantity="other">%1$s хаалла</item> | ||||
|     </plurals> | ||||
|     <plurals name="manga_num_chapters"> | ||||
|         <item quantity="other">%1$s түһүмэх</item> | ||||
|     </plurals> | ||||
|     <plurals name="num_trackers"> | ||||
|         <item quantity="other">%d трэкэр</item> | ||||
|     </plurals> | ||||
|     <plurals name="missing_chapters_warning"> | ||||
|         <item quantity="other">Манна %d түһүмэх суох</item> | ||||
|     </plurals> | ||||
| </resources> | ||||
Some files were not shown because too many files have changed in this diff Show More
		Reference in New Issue
	
	Block a user