mirror of
https://github.com/kodjodevf/mangayomi.git
synced 2026-01-11 22:40:36 +00:00
upgrade
This commit is contained in:
parent
0f333848cd
commit
962bab1cdd
35 changed files with 1937 additions and 1217 deletions
|
|
@ -2,4 +2,4 @@ distributionBase=GRADLE_USER_HOME
|
|||
distributionPath=wrapper/dists
|
||||
zipStoreBase=GRADLE_USER_HOME
|
||||
zipStorePath=wrapper/dists
|
||||
distributionUrl=https\://services.gradle.org/distributions/gradle-8.3-all.zip
|
||||
distributionUrl=https\://services.gradle.org/distributions/gradle-8.12-all.zip
|
||||
|
|
|
|||
|
|
@ -19,7 +19,7 @@ pluginManagement {
|
|||
|
||||
plugins {
|
||||
id "dev.flutter.flutter-plugin-loader" version "1.0.0"
|
||||
id "com.android.application" version "8.2.1" apply false
|
||||
id "com.android.application" version "8.7.3" apply false
|
||||
id "org.jetbrains.kotlin.android" version "1.9.0" apply false
|
||||
}
|
||||
|
||||
|
|
|
|||
|
|
@ -23,7 +23,7 @@ class JsExtensionService implements ExtensionService {
|
|||
JsExtensionService(this.source);
|
||||
|
||||
void _init() {
|
||||
runtime = getJavascriptRuntime(xhr: false);
|
||||
runtime = getJavascriptRuntime();
|
||||
JsHttpClient(runtime).init();
|
||||
JsDomSelector(runtime).init();
|
||||
JsVideosExtractors(runtime).init();
|
||||
|
|
|
|||
|
|
@ -72,7 +72,8 @@ import 'app_localizations_zh.dart';
|
|||
/// be consistent with the languages listed in the AppLocalizations.supportedLocales
|
||||
/// property.
|
||||
abstract class AppLocalizations {
|
||||
AppLocalizations(String locale) : localeName = intl.Intl.canonicalizedLocale(locale.toString());
|
||||
AppLocalizations(String locale)
|
||||
: localeName = intl.Intl.canonicalizedLocale(locale.toString());
|
||||
|
||||
final String localeName;
|
||||
|
||||
|
|
@ -80,7 +81,8 @@ abstract class AppLocalizations {
|
|||
return Localizations.of<AppLocalizations>(context, AppLocalizations);
|
||||
}
|
||||
|
||||
static const LocalizationsDelegate<AppLocalizations> delegate = _AppLocalizationsDelegate();
|
||||
static const LocalizationsDelegate<AppLocalizations> delegate =
|
||||
_AppLocalizationsDelegate();
|
||||
|
||||
/// A list of this localizations delegate along with the default localizations
|
||||
/// delegates.
|
||||
|
|
@ -92,12 +94,13 @@ abstract class AppLocalizations {
|
|||
/// Additional delegates can be added by appending to this list in
|
||||
/// MaterialApp. This list does not have to be used at all if a custom list
|
||||
/// of delegates is preferred or required.
|
||||
static const List<LocalizationsDelegate<dynamic>> localizationsDelegates = <LocalizationsDelegate<dynamic>>[
|
||||
delegate,
|
||||
GlobalMaterialLocalizations.delegate,
|
||||
GlobalCupertinoLocalizations.delegate,
|
||||
GlobalWidgetsLocalizations.delegate,
|
||||
];
|
||||
static const List<LocalizationsDelegate<dynamic>> localizationsDelegates =
|
||||
<LocalizationsDelegate<dynamic>>[
|
||||
delegate,
|
||||
GlobalMaterialLocalizations.delegate,
|
||||
GlobalCupertinoLocalizations.delegate,
|
||||
GlobalWidgetsLocalizations.delegate,
|
||||
];
|
||||
|
||||
/// A list of this localizations delegate's supported locales.
|
||||
static const List<Locale> supportedLocales = <Locale>[
|
||||
|
|
@ -114,7 +117,7 @@ abstract class AppLocalizations {
|
|||
Locale('ru'),
|
||||
Locale('th'),
|
||||
Locale('tr'),
|
||||
Locale('zh')
|
||||
Locale('zh'),
|
||||
];
|
||||
|
||||
/// No description provided for @library.
|
||||
|
|
@ -2920,7 +2923,8 @@ abstract class AppLocalizations {
|
|||
String get unsupported_repo;
|
||||
}
|
||||
|
||||
class _AppLocalizationsDelegate extends LocalizationsDelegate<AppLocalizations> {
|
||||
class _AppLocalizationsDelegate
|
||||
extends LocalizationsDelegate<AppLocalizations> {
|
||||
const _AppLocalizationsDelegate();
|
||||
|
||||
@override
|
||||
|
|
@ -2929,50 +2933,78 @@ class _AppLocalizationsDelegate extends LocalizationsDelegate<AppLocalizations>
|
|||
}
|
||||
|
||||
@override
|
||||
bool isSupported(Locale locale) => <String>['ar', 'de', 'en', 'es', 'fr', 'id', 'it', 'pt', 'ru', 'th', 'tr', 'zh'].contains(locale.languageCode);
|
||||
bool isSupported(Locale locale) => <String>[
|
||||
'ar',
|
||||
'de',
|
||||
'en',
|
||||
'es',
|
||||
'fr',
|
||||
'id',
|
||||
'it',
|
||||
'pt',
|
||||
'ru',
|
||||
'th',
|
||||
'tr',
|
||||
'zh',
|
||||
].contains(locale.languageCode);
|
||||
|
||||
@override
|
||||
bool shouldReload(_AppLocalizationsDelegate old) => false;
|
||||
}
|
||||
|
||||
AppLocalizations lookupAppLocalizations(Locale locale) {
|
||||
|
||||
// Lookup logic when language+country codes are specified.
|
||||
switch (locale.languageCode) {
|
||||
case 'es': {
|
||||
switch (locale.countryCode) {
|
||||
case '419': return AppLocalizationsEs419();
|
||||
}
|
||||
break;
|
||||
}
|
||||
case 'pt': {
|
||||
switch (locale.countryCode) {
|
||||
case 'BR': return AppLocalizationsPtBr();
|
||||
}
|
||||
break;
|
||||
}
|
||||
case 'es':
|
||||
{
|
||||
switch (locale.countryCode) {
|
||||
case '419':
|
||||
return AppLocalizationsEs419();
|
||||
}
|
||||
break;
|
||||
}
|
||||
case 'pt':
|
||||
{
|
||||
switch (locale.countryCode) {
|
||||
case 'BR':
|
||||
return AppLocalizationsPtBr();
|
||||
}
|
||||
break;
|
||||
}
|
||||
}
|
||||
|
||||
// Lookup logic when only language code is specified.
|
||||
switch (locale.languageCode) {
|
||||
case 'ar': return AppLocalizationsAr();
|
||||
case 'de': return AppLocalizationsDe();
|
||||
case 'en': return AppLocalizationsEn();
|
||||
case 'es': return AppLocalizationsEs();
|
||||
case 'fr': return AppLocalizationsFr();
|
||||
case 'id': return AppLocalizationsId();
|
||||
case 'it': return AppLocalizationsIt();
|
||||
case 'pt': return AppLocalizationsPt();
|
||||
case 'ru': return AppLocalizationsRu();
|
||||
case 'th': return AppLocalizationsTh();
|
||||
case 'tr': return AppLocalizationsTr();
|
||||
case 'zh': return AppLocalizationsZh();
|
||||
case 'ar':
|
||||
return AppLocalizationsAr();
|
||||
case 'de':
|
||||
return AppLocalizationsDe();
|
||||
case 'en':
|
||||
return AppLocalizationsEn();
|
||||
case 'es':
|
||||
return AppLocalizationsEs();
|
||||
case 'fr':
|
||||
return AppLocalizationsFr();
|
||||
case 'id':
|
||||
return AppLocalizationsId();
|
||||
case 'it':
|
||||
return AppLocalizationsIt();
|
||||
case 'pt':
|
||||
return AppLocalizationsPt();
|
||||
case 'ru':
|
||||
return AppLocalizationsRu();
|
||||
case 'th':
|
||||
return AppLocalizationsTh();
|
||||
case 'tr':
|
||||
return AppLocalizationsTr();
|
||||
case 'zh':
|
||||
return AppLocalizationsZh();
|
||||
}
|
||||
|
||||
throw FlutterError(
|
||||
'AppLocalizations.delegate failed to load unsupported locale "$locale". This is likely '
|
||||
'an issue with the localizations generation tool. Please file an issue '
|
||||
'on GitHub with a reproducible sample app and the gen-l10n configuration '
|
||||
'that was used.'
|
||||
'that was used.',
|
||||
);
|
||||
}
|
||||
|
|
|
|||
|
|
@ -126,7 +126,8 @@ class AppLocalizationsAr extends AppLocalizations {
|
|||
String get other => 'آخر';
|
||||
|
||||
@override
|
||||
String get show_continue_reading_buttons => 'إظهار أزرار الاستمرار في القراءة';
|
||||
String get show_continue_reading_buttons =>
|
||||
'إظهار أزرار الاستمرار في القراءة';
|
||||
|
||||
@override
|
||||
String get show_continue_watching_buttons => 'إظهار أزرار المتابعة';
|
||||
|
|
@ -159,7 +160,8 @@ class AppLocalizationsAr extends AppLocalizations {
|
|||
String get remove => 'إزالة';
|
||||
|
||||
@override
|
||||
String get remove_history_msg => 'سيتم إزالة تاريخ القراءة لهذا الفصل. هل أنت متأكد؟';
|
||||
String get remove_history_msg =>
|
||||
'سيتم إزالة تاريخ القراءة لهذا الفصل. هل أنت متأكد؟';
|
||||
|
||||
@override
|
||||
String get last_used => 'آخر استخدام';
|
||||
|
|
@ -197,7 +199,8 @@ class AppLocalizationsAr extends AppLocalizations {
|
|||
}
|
||||
|
||||
@override
|
||||
String get clean_database_desc => 'سيؤدي هذا إلى إزالة جميع العناصر التي لم تتم إضافتها إلى المكتبة!';
|
||||
String get clean_database_desc =>
|
||||
'سيؤدي هذا إلى إزالة جميع العناصر التي لم تتم إضافتها إلى المكتبة!';
|
||||
|
||||
@override
|
||||
String get incognito_mode => 'وضع التخفي';
|
||||
|
|
@ -230,7 +233,8 @@ class AppLocalizationsAr extends AppLocalizations {
|
|||
String get edit_categories => 'تحرير الفئات';
|
||||
|
||||
@override
|
||||
String get edit_categories_description => 'ليس لديك أي فئات. اضغط على زر الإضافة لإنشاء واحدة لتنظيم مكتبتك';
|
||||
String get edit_categories_description =>
|
||||
'ليس لديك أي فئات. اضغط على زر الإضافة لإنشاء واحدة لتنظيم مكتبتك';
|
||||
|
||||
@override
|
||||
String get add => 'إضافة';
|
||||
|
|
@ -391,7 +395,8 @@ class AppLocalizationsAr extends AppLocalizations {
|
|||
String get nsfw_sources_show => 'إظهار في قوائم المصادر والإضافات';
|
||||
|
||||
@override
|
||||
String get nsfw_sources_info => 'هذا لا يمنع الإضافات غير الرسمية أو المصنفة بشكل غير صحيح من عرض محتوى NSFW (18+) داخل التطبيق';
|
||||
String get nsfw_sources_info =>
|
||||
'هذا لا يمنع الإضافات غير الرسمية أو المصنفة بشكل غير صحيح من عرض محتوى NSFW (18+) داخل التطبيق';
|
||||
|
||||
@override
|
||||
String get version => 'الإصدار';
|
||||
|
|
@ -638,7 +643,8 @@ class AppLocalizationsAr extends AppLocalizations {
|
|||
String get sync_logged => 'تم تسجيل الدخول بنجاح';
|
||||
|
||||
@override
|
||||
String get syncing_subtitle => 'قم بمزامنة تقدمك عبر أجهزة متعددة باستخدام خادم مستضاف ذاتيًا.\nتأكد من التحميل أولاً إذا كانت هذه هي المرة الأولى التي تقوم فيها بالمزامنة\nأو قم بالتنزيل قبل استخدام المزامنة (التلقائية) على هذا الجهاز!';
|
||||
String get syncing_subtitle =>
|
||||
'قم بمزامنة تقدمك عبر أجهزة متعددة باستخدام خادم مستضاف ذاتيًا.\nتأكد من التحميل أولاً إذا كانت هذه هي المرة الأولى التي تقوم فيها بالمزامنة\nأو قم بالتنزيل قبل استخدام المزامنة (التلقائية) على هذا الجهاز!';
|
||||
|
||||
@override
|
||||
String get last_sync => 'آخر مزامنة في: ';
|
||||
|
|
@ -692,13 +698,16 @@ class AppLocalizationsAr extends AppLocalizations {
|
|||
String get sync_button_download => 'تنزيل كامل';
|
||||
|
||||
@override
|
||||
String get sync_confirm_snapshot => 'اطلب من الخادم إنشاء نسخة احتياطية عن بُعد!';
|
||||
String get sync_confirm_snapshot =>
|
||||
'اطلب من الخادم إنشاء نسخة احتياطية عن بُعد!';
|
||||
|
||||
@override
|
||||
String get sync_confirm_upload => 'التحميل الكامل سيستبدل البيانات الحالية على الخادم ببياناتك الحالية!';
|
||||
String get sync_confirm_upload =>
|
||||
'التحميل الكامل سيستبدل البيانات الحالية على الخادم ببياناتك الحالية!';
|
||||
|
||||
@override
|
||||
String get sync_confirm_download => 'التنزيل الكامل سيستبدل بياناتك الحالية بالبيانات الموجودة على الخادم!';
|
||||
String get sync_confirm_download =>
|
||||
'التنزيل الكامل سيستبدل بياناتك الحالية بالبيانات الموجودة على الخادم!';
|
||||
|
||||
@override
|
||||
String get sync_on => 'تمكين المزامنة';
|
||||
|
|
@ -737,7 +746,8 @@ class AppLocalizationsAr extends AppLocalizations {
|
|||
String get sync_snapshot_deleted => 'تم حذف اللقطة!';
|
||||
|
||||
@override
|
||||
String get sync_snapshot_no_data => 'لا توجد بيانات لإنشاء لقطة! قم بتحميل كامل أولاً!';
|
||||
String get sync_snapshot_no_data =>
|
||||
'لا توجد بيانات لإنشاء لقطة! قم بتحميل كامل أولاً!';
|
||||
|
||||
@override
|
||||
String get sync_browse_snapshots => 'تصفح النسخ الاحتياطية القديمة';
|
||||
|
|
@ -800,13 +810,15 @@ class AppLocalizationsAr extends AppLocalizations {
|
|||
String get reorder_navigation => 'تخصيص التنقل';
|
||||
|
||||
@override
|
||||
String get reorder_navigation_description => 'أعد ترتيب وتبديل كل تنقل حسب احتياجاتك.';
|
||||
String get reorder_navigation_description =>
|
||||
'أعد ترتيب وتبديل كل تنقل حسب احتياجاتك.';
|
||||
|
||||
@override
|
||||
String get full_screen_player => 'استخدام الشاشة الكاملة';
|
||||
|
||||
@override
|
||||
String get full_screen_player_info => 'استخدام الشاشة الكاملة تلقائيًا عند تشغيل الفيديو.';
|
||||
String get full_screen_player_info =>
|
||||
'استخدام الشاشة الكاملة تلقائيًا عند تشغيل الفيديو.';
|
||||
|
||||
@override
|
||||
String episode_progress(Object n) {
|
||||
|
|
@ -916,7 +928,8 @@ class AppLocalizationsAr extends AppLocalizations {
|
|||
String get page_preload_amount => 'كمية تحميل الصفحات مسبقاً';
|
||||
|
||||
@override
|
||||
String get page_preload_amount_subtitle => 'عدد الصفحات التي يتم تحميلها مسبقاً أثناء القراءة. القيم الأعلى توفر تجربة قراءة أكثر سلاسة، ولكنها تتطلب استخدام أكبر للذاكرة المؤقتة والشبكة.';
|
||||
String get page_preload_amount_subtitle =>
|
||||
'عدد الصفحات التي يتم تحميلها مسبقاً أثناء القراءة. القيم الأعلى توفر تجربة قراءة أكثر سلاسة، ولكنها تتطلب استخدام أكبر للذاكرة المؤقتة والشبكة.';
|
||||
|
||||
@override
|
||||
String get image_loading_error => 'تعذر تحميل هذه الصورة';
|
||||
|
|
@ -937,7 +950,8 @@ class AppLocalizationsAr extends AppLocalizations {
|
|||
String get auto_extensions_updates => 'تحديثات الامتداد التلقائية';
|
||||
|
||||
@override
|
||||
String get auto_extensions_updates_subtitle => 'سيتم تحديث الامتداد تلقائياً عند توفر إصدار جديد.';
|
||||
String get auto_extensions_updates_subtitle =>
|
||||
'سيتم تحديث الامتداد تلقائياً عند توفر إصدار جديد.';
|
||||
|
||||
@override
|
||||
String get reading_mode => 'وضع القراءة';
|
||||
|
|
@ -1004,16 +1018,19 @@ class AppLocalizationsAr extends AppLocalizations {
|
|||
String get create_backup => 'إنشاء نسخة احتياطية';
|
||||
|
||||
@override
|
||||
String get create_backup_dialog_title => 'ما الذي ترغب في أخذ نسخة احتياطية منه؟';
|
||||
String get create_backup_dialog_title =>
|
||||
'ما الذي ترغب في أخذ نسخة احتياطية منه؟';
|
||||
|
||||
@override
|
||||
String get create_backup_subtitle => 'يمكن استخدامها لاستعادة المكتبة الحالية';
|
||||
String get create_backup_subtitle =>
|
||||
'يمكن استخدامها لاستعادة المكتبة الحالية';
|
||||
|
||||
@override
|
||||
String get restore_backup => 'استعادة النسخة الاحتياطية';
|
||||
|
||||
@override
|
||||
String get restore_backup_subtitle => 'استعادة المكتبة من ملف النسخة الاحتياطية';
|
||||
String get restore_backup_subtitle =>
|
||||
'استعادة المكتبة من ملف النسخة الاحتياطية';
|
||||
|
||||
@override
|
||||
String get automatic_backups => 'النسخ الاحتياطي التلقائي';
|
||||
|
|
@ -1028,13 +1045,16 @@ class AppLocalizationsAr extends AppLocalizations {
|
|||
String get backup_options => 'خيارات النسخ الاحتياطي';
|
||||
|
||||
@override
|
||||
String get backup_options_dialog_title => 'ما الذي ترغب في أخذ نسخة احتياطية منه؟';
|
||||
String get backup_options_dialog_title =>
|
||||
'ما الذي ترغب في أخذ نسخة احتياطية منه؟';
|
||||
|
||||
@override
|
||||
String get backup_options_subtitle => 'المعلومات التي يجب تضمينها في ملف النسخة الاحتياطية';
|
||||
String get backup_options_subtitle =>
|
||||
'المعلومات التي يجب تضمينها في ملف النسخة الاحتياطية';
|
||||
|
||||
@override
|
||||
String get backup_and_restore_warning_info => 'يجب الاحتفاظ بنسخ من النسخ الاحتياطية في أماكن أخرى كذلك';
|
||||
String get backup_and_restore_warning_info =>
|
||||
'يجب الاحتفاظ بنسخ من النسخ الاحتياطية في أماكن أخرى كذلك';
|
||||
|
||||
@override
|
||||
String get library_entries => 'مدخلات المكتبة';
|
||||
|
|
@ -1058,13 +1078,15 @@ class AppLocalizationsAr extends AppLocalizations {
|
|||
String get weekly => 'أسبوعياً';
|
||||
|
||||
@override
|
||||
String get restore_backup_warning_title => 'استعادة النسخة الاحتياطية ستؤدي إلى الكتابة فوق جميع البيانات الحالية.\n\nهل تريد الاستمرار في الاستعادة؟';
|
||||
String get restore_backup_warning_title =>
|
||||
'استعادة النسخة الاحتياطية ستؤدي إلى الكتابة فوق جميع البيانات الحالية.\n\nهل تريد الاستمرار في الاستعادة؟';
|
||||
|
||||
@override
|
||||
String get services => 'الخدمات';
|
||||
|
||||
@override
|
||||
String get tracking_warning_info => 'مزامنة في اتجاه واحد لتحديث تقدم الفصول في خدمات التتبع. قم بإعداد التتبع لكل مدخل على حدة من خلال زر التتبع الخاص به.';
|
||||
String get tracking_warning_info =>
|
||||
'مزامنة في اتجاه واحد لتحديث تقدم الفصول في خدمات التتبع. قم بإعداد التتبع لكل مدخل على حدة من خلال زر التتبع الخاص به.';
|
||||
|
||||
@override
|
||||
String get use_page_tap_zones => 'استخدام مناطق النقر في الصفحة';
|
||||
|
|
@ -1097,7 +1119,8 @@ class AppLocalizationsAr extends AppLocalizations {
|
|||
String get player => 'لاعب';
|
||||
|
||||
@override
|
||||
String get markEpisodeAsSeenSetting => 'في أي نقطة لوضع علامة على الحلقة كمشاهدة';
|
||||
String get markEpisodeAsSeenSetting =>
|
||||
'في أي نقطة لوضع علامة على الحلقة كمشاهدة';
|
||||
|
||||
@override
|
||||
String get default_skip_intro_length => 'طول تخطي المقدمة الافتراضي';
|
||||
|
|
@ -1118,7 +1141,8 @@ class AppLocalizationsAr extends AppLocalizations {
|
|||
String get default_skip_forward_skip_length => 'طول التخطي الافتراضي للأمام';
|
||||
|
||||
@override
|
||||
String get aniskip_requires_info => 'AniSkip يتطلب تتبع الأنمي باستخدام MAL أو Anilist للعمل.';
|
||||
String get aniskip_requires_info =>
|
||||
'AniSkip يتطلب تتبع الأنمي باستخدام MAL أو Anilist للعمل.';
|
||||
|
||||
@override
|
||||
String get enable_aniskip => 'تمكين AniSkip';
|
||||
|
|
@ -1267,7 +1291,8 @@ class AppLocalizationsAr extends AppLocalizations {
|
|||
String get background => 'الخلفية';
|
||||
|
||||
@override
|
||||
String get no_subtite_warning_message => 'لا تؤثر لأنه لا توجد مسارات ترجمة في هذا الفيديو';
|
||||
String get no_subtite_warning_message =>
|
||||
'لا تؤثر لأنه لا توجد مسارات ترجمة في هذا الفيديو';
|
||||
|
||||
@override
|
||||
String get grid_size => 'حجم الشبكة';
|
||||
|
|
@ -1287,10 +1312,12 @@ class AppLocalizationsAr extends AppLocalizations {
|
|||
String get use_libass => 'تفعيل libass';
|
||||
|
||||
@override
|
||||
String get use_libass_info => 'استخدام عرض الترجمة المستندة إلى libass للواجهة الخلفية الأصلية.';
|
||||
String get use_libass_info =>
|
||||
'استخدام عرض الترجمة المستندة إلى libass للواجهة الخلفية الأصلية.';
|
||||
|
||||
@override
|
||||
String get libass_not_disable_message => 'عطل `استخدام libass` في إعدادات المشغل لتتمكن من تخصيص الترجمة.';
|
||||
String get libass_not_disable_message =>
|
||||
'عطل `استخدام libass` في إعدادات المشغل لتتمكن من تخصيص الترجمة.';
|
||||
|
||||
@override
|
||||
String get torrent_stream => 'بث التورنت';
|
||||
|
|
@ -1314,7 +1341,8 @@ class AppLocalizationsAr extends AppLocalizations {
|
|||
String get use_native_http_client => 'استخدام عميل HTTP الأصلي';
|
||||
|
||||
@override
|
||||
String get use_native_http_client_info => 'يدعم تلقائيًا ميزات المنصة مثل الشبكات الافتراضية الخاصة (VPNs)، ويدعم ميزات HTTP أكثر مثل HTTP/3 ومعالجة إعادة التوجيه المخصصة';
|
||||
String get use_native_http_client_info =>
|
||||
'يدعم تلقائيًا ميزات المنصة مثل الشبكات الافتراضية الخاصة (VPNs)، ويدعم ميزات HTTP أكثر مثل HTTP/3 ومعالجة إعادة التوجيه المخصصة';
|
||||
|
||||
@override
|
||||
String n_hour_ago(Object hour) {
|
||||
|
|
@ -1359,13 +1387,15 @@ class AppLocalizationsAr extends AppLocalizations {
|
|||
String get storage => 'التخزين';
|
||||
|
||||
@override
|
||||
String get clear_chapter_and_episode_cache => 'مسح ذاكرة التخزين المؤقت للفصول والحلقات';
|
||||
String get clear_chapter_and_episode_cache =>
|
||||
'مسح ذاكرة التخزين المؤقت للفصول والحلقات';
|
||||
|
||||
@override
|
||||
String get cache_cleared => 'تم مسح ذاكرة التخزين المؤقت';
|
||||
|
||||
@override
|
||||
String get clear_chapter_or_episode_cache_on_app_launch => 'مسح ذاكرة التخزين المؤقت للفصول/الحلقات عند فتح التطبيق';
|
||||
String get clear_chapter_or_episode_cache_on_app_launch =>
|
||||
'مسح ذاكرة التخزين المؤقت للفصول/الحلقات عند فتح التطبيق';
|
||||
|
||||
@override
|
||||
String get app_settings => 'إعدادات التطبيق';
|
||||
|
|
@ -1374,7 +1404,8 @@ class AppLocalizationsAr extends AppLocalizations {
|
|||
String get sources_settings => 'إعدادات المصادر';
|
||||
|
||||
@override
|
||||
String get include_sensitive_settings => 'تضمين الإعدادات الحساسة (مثل رموز تسجيل الدخول للمتعقب)';
|
||||
String get include_sensitive_settings =>
|
||||
'تضمين الإعدادات الحساسة (مثل رموز تسجيل الدخول للمتعقب)';
|
||||
|
||||
@override
|
||||
String get create => 'إنشاء';
|
||||
|
|
@ -1395,7 +1426,8 @@ class AppLocalizationsAr extends AppLocalizations {
|
|||
String get undefined => 'غير محدد';
|
||||
|
||||
@override
|
||||
String get empty_extensions_repo => 'ليس لديك أي عناوين URL للمستودع هنا. انقر على زر الإضافة لإضافة واحد!';
|
||||
String get empty_extensions_repo =>
|
||||
'ليس لديك أي عناوين URL للمستودع هنا. انقر على زر الإضافة لإضافة واحد!';
|
||||
|
||||
@override
|
||||
String get add_extensions_repo => 'إضافة عنوان URL للمستودع';
|
||||
|
|
@ -1428,7 +1460,8 @@ class AppLocalizationsAr extends AppLocalizations {
|
|||
String get clear_all_sources => 'مسح جميع المصادر';
|
||||
|
||||
@override
|
||||
String get clear_all_sources_msg => 'سيؤدي هذا إلى مسح جميع مصادر التطبيق تمامًا. هل أنت متأكد أنك تريد المتابعة؟';
|
||||
String get clear_all_sources_msg =>
|
||||
'سيؤدي هذا إلى مسح جميع مصادر التطبيق تمامًا. هل أنت متأكد أنك تريد المتابعة؟';
|
||||
|
||||
@override
|
||||
String get sources_cleared => 'تم مسح المصادر!!!';
|
||||
|
|
@ -1457,5 +1490,6 @@ class AppLocalizationsAr extends AppLocalizations {
|
|||
}
|
||||
|
||||
@override
|
||||
String get unsupported_repo => 'لقد حاولت إضافة مستودع غير مدعوم. يرجى التحقق من خادم الخلاف للحصول على الدعم!';
|
||||
String get unsupported_repo =>
|
||||
'لقد حاولت إضافة مستودع غير مدعوم. يرجى التحقق من خادم الخلاف للحصول على الدعم!';
|
||||
}
|
||||
|
|
|
|||
|
|
@ -144,10 +144,12 @@ class AppLocalizationsDe extends AppLocalizations {
|
|||
String get remove_everything => 'Alles entfernen';
|
||||
|
||||
@override
|
||||
String get remove_everything_msg => 'Bist du dir sicher? Alle Verläufe werden gelöscht';
|
||||
String get remove_everything_msg =>
|
||||
'Bist du dir sicher? Alle Verläufe werden gelöscht';
|
||||
|
||||
@override
|
||||
String get remove_all_update_msg => 'Bist du dir sicher? Alle Updates werden gelöscht';
|
||||
String get remove_all_update_msg =>
|
||||
'Bist du dir sicher? Alle Updates werden gelöscht';
|
||||
|
||||
@override
|
||||
String get ok => 'OK';
|
||||
|
|
@ -159,7 +161,8 @@ class AppLocalizationsDe extends AppLocalizations {
|
|||
String get remove => 'Entfernen';
|
||||
|
||||
@override
|
||||
String get remove_history_msg => 'Das wird das Lesedatum dieses Kapitels entfernen. Bist du dir sicher?';
|
||||
String get remove_history_msg =>
|
||||
'Das wird das Lesedatum dieses Kapitels entfernen. Bist du dir sicher?';
|
||||
|
||||
@override
|
||||
String get last_used => 'Zuletzt verwendet';
|
||||
|
|
@ -197,7 +200,8 @@ class AppLocalizationsDe extends AppLocalizations {
|
|||
}
|
||||
|
||||
@override
|
||||
String get clean_database_desc => 'Diese Aktion löscht alle Einträge, die nicht im Bibliothek sind!';
|
||||
String get clean_database_desc =>
|
||||
'Diese Aktion löscht alle Einträge, die nicht im Bibliothek sind!';
|
||||
|
||||
@override
|
||||
String get incognito_mode => 'Inkognito-Modus';
|
||||
|
|
@ -230,7 +234,8 @@ class AppLocalizationsDe extends AppLocalizations {
|
|||
String get edit_categories => 'Kategorien bearbeiten';
|
||||
|
||||
@override
|
||||
String get edit_categories_description => 'Du hast keine Kategorien. Tippe auf den Plus-Button, um eine zu erstellen';
|
||||
String get edit_categories_description =>
|
||||
'Du hast keine Kategorien. Tippe auf den Plus-Button, um eine zu erstellen';
|
||||
|
||||
@override
|
||||
String get add => 'Hinzufügen';
|
||||
|
|
@ -245,7 +250,8 @@ class AppLocalizationsDe extends AppLocalizations {
|
|||
String get category_name_required => '*Erforderlich';
|
||||
|
||||
@override
|
||||
String get add_category_error_exist => 'Eine Kategorie mit diesem Namen existiert bereits!';
|
||||
String get add_category_error_exist =>
|
||||
'Eine Kategorie mit diesem Namen existiert bereits!';
|
||||
|
||||
@override
|
||||
String get delete_category => 'Kategorie löschen';
|
||||
|
|
@ -340,7 +346,8 @@ class AppLocalizationsDe extends AppLocalizations {
|
|||
String get reading_mode_webtoon => 'Webtoon';
|
||||
|
||||
@override
|
||||
String get double_tap_animation_speed => 'Doppel-Tipp-Animationsgeschwindigkeit';
|
||||
String get double_tap_animation_speed =>
|
||||
'Doppel-Tipp-Animationsgeschwindigkeit';
|
||||
|
||||
@override
|
||||
String get normal => 'Normal';
|
||||
|
|
@ -391,7 +398,8 @@ class AppLocalizationsDe extends AppLocalizations {
|
|||
String get nsfw_sources_show => 'In Quellen- und Erweiterungslisten anzeigen';
|
||||
|
||||
@override
|
||||
String get nsfw_sources_info => 'Dies verhindert nicht, dass inoffizielle oder möglicherweise falsch gekennzeichnete Erweiterungen NSFW (18+) Inhalte in der App anzeigen';
|
||||
String get nsfw_sources_info =>
|
||||
'Dies verhindert nicht, dass inoffizielle oder möglicherweise falsch gekennzeichnete Erweiterungen NSFW (18+) Inhalte in der App anzeigen';
|
||||
|
||||
@override
|
||||
String get version => 'Version';
|
||||
|
|
@ -638,7 +646,8 @@ class AppLocalizationsDe extends AppLocalizations {
|
|||
String get sync_logged => 'Login erfolgreich!';
|
||||
|
||||
@override
|
||||
String get syncing_subtitle => 'Synchronisiere deinen Fortschritt über mehrere Geräte mithilfe \neines selbstgehosteten Servers. Beim ersten synchronisieren \nsolltest du zuerst \"Alles hochladen\" oder \"Alles herunterladen\" \nbevor du die (Auto-)Synchronisation auf diesem Gerät aktivierst!';
|
||||
String get syncing_subtitle =>
|
||||
'Synchronisiere deinen Fortschritt über mehrere Geräte mithilfe \neines selbstgehosteten Servers. Beim ersten synchronisieren \nsolltest du zuerst \"Alles hochladen\" oder \"Alles herunterladen\" \nbevor du die (Auto-)Synchronisation auf diesem Gerät aktivierst!';
|
||||
|
||||
@override
|
||||
String get last_sync => 'Zuletzt synchronisiert: ';
|
||||
|
|
@ -692,13 +701,16 @@ class AppLocalizationsDe extends AppLocalizations {
|
|||
String get sync_button_download => 'Alles herunterladen';
|
||||
|
||||
@override
|
||||
String get sync_confirm_snapshot => 'Erstelle eine Kopie des derzeiten Backups auf den Server!';
|
||||
String get sync_confirm_snapshot =>
|
||||
'Erstelle eine Kopie des derzeiten Backups auf den Server!';
|
||||
|
||||
@override
|
||||
String get sync_confirm_upload => 'Deine Daten auf dem Server werden jetzt durch deinen lokalen Daten ersetzt!';
|
||||
String get sync_confirm_upload =>
|
||||
'Deine Daten auf dem Server werden jetzt durch deinen lokalen Daten ersetzt!';
|
||||
|
||||
@override
|
||||
String get sync_confirm_download => 'Deine lokalen Daten werden jetzt durch den Daten vom Server ersetzt!';
|
||||
String get sync_confirm_download =>
|
||||
'Deine lokalen Daten werden jetzt durch den Daten vom Server ersetzt!';
|
||||
|
||||
@override
|
||||
String get sync_on => 'Sync aktivieren';
|
||||
|
|
@ -719,7 +731,8 @@ class AppLocalizationsDe extends AppLocalizations {
|
|||
String get sync_pending_update => 'Ausstehende Änderungen für Updates';
|
||||
|
||||
@override
|
||||
String get sync_pending_extension => 'Ausstehende Änderungen für Erweiterungen';
|
||||
String get sync_pending_extension =>
|
||||
'Ausstehende Änderungen für Erweiterungen';
|
||||
|
||||
@override
|
||||
String get sync_pending_track => 'Ausstehende Änderungen für Trackings';
|
||||
|
|
@ -737,7 +750,8 @@ class AppLocalizationsDe extends AppLocalizations {
|
|||
String get sync_snapshot_deleted => 'Snapshot wurde gelöscht!';
|
||||
|
||||
@override
|
||||
String get sync_snapshot_no_data => 'Keine Daten zum Sichern! Lade erstmal alles hoch!';
|
||||
String get sync_snapshot_no_data =>
|
||||
'Keine Daten zum Sichern! Lade erstmal alles hoch!';
|
||||
|
||||
@override
|
||||
String get sync_browse_snapshots => 'Durchsuche ältere Backups';
|
||||
|
|
@ -755,7 +769,8 @@ class AppLocalizationsDe extends AppLocalizations {
|
|||
String get sync_auto => 'Auto Sync';
|
||||
|
||||
@override
|
||||
String get sync_auto_warning => 'Auto Sync ist derzeit ein experimentelles Feature!';
|
||||
String get sync_auto_warning =>
|
||||
'Auto Sync ist derzeit ein experimentelles Feature!';
|
||||
|
||||
@override
|
||||
String get sync_auto_off => 'Aus';
|
||||
|
|
@ -800,13 +815,15 @@ class AppLocalizationsDe extends AppLocalizations {
|
|||
String get reorder_navigation => 'Navigation anpassen';
|
||||
|
||||
@override
|
||||
String get reorder_navigation_description => 'Du kannst die Anordnung und Sichbarheit der Navigation für dich selber anpassen.';
|
||||
String get reorder_navigation_description =>
|
||||
'Du kannst die Anordnung und Sichbarheit der Navigation für dich selber anpassen.';
|
||||
|
||||
@override
|
||||
String get full_screen_player => 'Vollbildmodus aktivieren';
|
||||
|
||||
@override
|
||||
String get full_screen_player_info => 'Vollbildmodus in Videos automatisch aktivieren.';
|
||||
String get full_screen_player_info =>
|
||||
'Vollbildmodus in Videos automatisch aktivieren.';
|
||||
|
||||
@override
|
||||
String episode_progress(Object n) {
|
||||
|
|
@ -875,7 +892,8 @@ class AppLocalizationsDe extends AppLocalizations {
|
|||
String get searching_for_updates => 'Suche nach Aktualisierungen...';
|
||||
|
||||
@override
|
||||
String get no_new_updates_available => 'Keine neuen Aktualisierungen verfügbar';
|
||||
String get no_new_updates_available =>
|
||||
'Keine neuen Aktualisierungen verfügbar';
|
||||
|
||||
@override
|
||||
String get uninstall => 'Deinstallieren';
|
||||
|
|
@ -916,7 +934,8 @@ class AppLocalizationsDe extends AppLocalizations {
|
|||
String get page_preload_amount => 'Seitenvorlademenge';
|
||||
|
||||
@override
|
||||
String get page_preload_amount_subtitle => 'Die Anzahl der Seiten, die beim Lesen vorgeladen werden. Höhere Werte resultieren in einem flüssigeren Leseerlebnis, verbrauchen jedoch mehr Speicherplatz und Netzwerkressourcen.';
|
||||
String get page_preload_amount_subtitle =>
|
||||
'Die Anzahl der Seiten, die beim Lesen vorgeladen werden. Höhere Werte resultieren in einem flüssigeren Leseerlebnis, verbrauchen jedoch mehr Speicherplatz und Netzwerkressourcen.';
|
||||
|
||||
@override
|
||||
String get image_loading_error => 'Dieses Bild konnte nicht geladen werden';
|
||||
|
|
@ -934,10 +953,12 @@ class AppLocalizationsDe extends AppLocalizations {
|
|||
String get check_for_extension_updates => 'Nach Erweiterungsupdates suchen';
|
||||
|
||||
@override
|
||||
String get auto_extensions_updates => 'Erweiterungen automatisch aktualisieren';
|
||||
String get auto_extensions_updates =>
|
||||
'Erweiterungen automatisch aktualisieren';
|
||||
|
||||
@override
|
||||
String get auto_extensions_updates_subtitle => 'Aktualisiert die Erweiterung automatisch, wenn eine neue Version verfügbar ist.';
|
||||
String get auto_extensions_updates_subtitle =>
|
||||
'Aktualisiert die Erweiterung automatisch, wenn eine neue Version verfügbar ist.';
|
||||
|
||||
@override
|
||||
String get reading_mode => 'Lesemodus';
|
||||
|
|
@ -1007,13 +1028,15 @@ class AppLocalizationsDe extends AppLocalizations {
|
|||
String get create_backup_dialog_title => 'Was möchtest du sichern?';
|
||||
|
||||
@override
|
||||
String get create_backup_subtitle => 'Kann verwendet werden, um die aktuelle Bibliothek wiederherzustellen';
|
||||
String get create_backup_subtitle =>
|
||||
'Kann verwendet werden, um die aktuelle Bibliothek wiederherzustellen';
|
||||
|
||||
@override
|
||||
String get restore_backup => 'Backup wiederherstellen';
|
||||
|
||||
@override
|
||||
String get restore_backup_subtitle => 'Bibliothek aus Backup-Datei wiederherstellen';
|
||||
String get restore_backup_subtitle =>
|
||||
'Bibliothek aus Backup-Datei wiederherstellen';
|
||||
|
||||
@override
|
||||
String get automatic_backups => 'Automatische Sicherungen';
|
||||
|
|
@ -1031,10 +1054,12 @@ class AppLocalizationsDe extends AppLocalizations {
|
|||
String get backup_options_dialog_title => 'Was möchtest du sichern?';
|
||||
|
||||
@override
|
||||
String get backup_options_subtitle => 'Welche Informationen sollen in die Sicherungsdatei aufgenommen werden?';
|
||||
String get backup_options_subtitle =>
|
||||
'Welche Informationen sollen in die Sicherungsdatei aufgenommen werden?';
|
||||
|
||||
@override
|
||||
String get backup_and_restore_warning_info => 'Du solltest Kopien der Sicherungen auch an anderen Orten aufbewahren';
|
||||
String get backup_and_restore_warning_info =>
|
||||
'Du solltest Kopien der Sicherungen auch an anderen Orten aufbewahren';
|
||||
|
||||
@override
|
||||
String get library_entries => 'Bibliothekseinträge';
|
||||
|
|
@ -1058,13 +1083,15 @@ class AppLocalizationsDe extends AppLocalizations {
|
|||
String get weekly => 'Wöchentlich';
|
||||
|
||||
@override
|
||||
String get restore_backup_warning_title => 'Das Wiederherstellen einer Sicherung überschreibt alle vorhandenen Daten.\n\nFortfahren mit der Wiederherstellung?';
|
||||
String get restore_backup_warning_title =>
|
||||
'Das Wiederherstellen einer Sicherung überschreibt alle vorhandenen Daten.\n\nFortfahren mit der Wiederherstellung?';
|
||||
|
||||
@override
|
||||
String get services => 'Dienste';
|
||||
|
||||
@override
|
||||
String get tracking_warning_info => 'Einweg-Synchronisierung zum Aktualisieren des Kapitelfortschritts in Tracking-Diensten. Richte das Tracking für einzelne Einträge über deren Tracking-Schaltfläche ein.';
|
||||
String get tracking_warning_info =>
|
||||
'Einweg-Synchronisierung zum Aktualisieren des Kapitelfortschritts in Tracking-Diensten. Richte das Tracking für einzelne Einträge über deren Tracking-Schaltfläche ein.';
|
||||
|
||||
@override
|
||||
String get use_page_tap_zones => 'Seiten-Tippzonen verwenden';
|
||||
|
|
@ -1097,16 +1124,20 @@ class AppLocalizationsDe extends AppLocalizations {
|
|||
String get player => 'Player';
|
||||
|
||||
@override
|
||||
String get markEpisodeAsSeenSetting => 'Zu welchem Zeitpunkt die Episode als gesehen markieren';
|
||||
String get markEpisodeAsSeenSetting =>
|
||||
'Zu welchem Zeitpunkt die Episode als gesehen markieren';
|
||||
|
||||
@override
|
||||
String get default_skip_intro_length => 'Standardlänge für Intro überspringen';
|
||||
String get default_skip_intro_length =>
|
||||
'Standardlänge für Intro überspringen';
|
||||
|
||||
@override
|
||||
String get default_playback_speed_length => 'Standardlänge für Wiedergabegeschwindigkeit';
|
||||
String get default_playback_speed_length =>
|
||||
'Standardlänge für Wiedergabegeschwindigkeit';
|
||||
|
||||
@override
|
||||
String get updateProgressAfterReading => 'Fortschritt nach dem Lesen aktualisieren';
|
||||
String get updateProgressAfterReading =>
|
||||
'Fortschritt nach dem Lesen aktualisieren';
|
||||
|
||||
@override
|
||||
String get no_sources_installed => 'Keine Quellen installiert!';
|
||||
|
|
@ -1115,10 +1146,12 @@ class AppLocalizationsDe extends AppLocalizations {
|
|||
String get show_extensions => 'Erweiterungen anzeigen';
|
||||
|
||||
@override
|
||||
String get default_skip_forward_skip_length => 'Standardmäßige Länge des Vorwärtsspringens';
|
||||
String get default_skip_forward_skip_length =>
|
||||
'Standardmäßige Länge des Vorwärtsspringens';
|
||||
|
||||
@override
|
||||
String get aniskip_requires_info => 'MAL oder Anilist tracking muss konfiguriert werden, damit AniSkip funktioniert.';
|
||||
String get aniskip_requires_info =>
|
||||
'MAL oder Anilist tracking muss konfiguriert werden, damit AniSkip funktioniert.';
|
||||
|
||||
@override
|
||||
String get enable_aniskip => 'AniSkip aktivieren';
|
||||
|
|
@ -1267,7 +1300,8 @@ class AppLocalizationsDe extends AppLocalizations {
|
|||
String get background => 'Hintergrund';
|
||||
|
||||
@override
|
||||
String get no_subtite_warning_message => 'Hat keine Wirkung, da in diesem Video keine Untertitelspuren vorhanden sind';
|
||||
String get no_subtite_warning_message =>
|
||||
'Hat keine Wirkung, da in diesem Video keine Untertitelspuren vorhanden sind';
|
||||
|
||||
@override
|
||||
String get grid_size => 'Rastergröße';
|
||||
|
|
@ -1287,10 +1321,12 @@ class AppLocalizationsDe extends AppLocalizations {
|
|||
String get use_libass => 'Libass aktivieren';
|
||||
|
||||
@override
|
||||
String get use_libass_info => 'Libass-basierte Untertitel-Wiedergabe für natives Backend verwenden.';
|
||||
String get use_libass_info =>
|
||||
'Libass-basierte Untertitel-Wiedergabe für natives Backend verwenden.';
|
||||
|
||||
@override
|
||||
String get libass_not_disable_message => 'Deaktiviere \"Libass aktivieren\" in den Playereinstellungen, um die Untertitel anpassen zu können.';
|
||||
String get libass_not_disable_message =>
|
||||
'Deaktiviere \"Libass aktivieren\" in den Playereinstellungen, um die Untertitel anpassen zu können.';
|
||||
|
||||
@override
|
||||
String get torrent_stream => 'Torrent-Stream';
|
||||
|
|
@ -1299,7 +1335,8 @@ class AppLocalizationsDe extends AppLocalizations {
|
|||
String get add_torrent => 'Torrent hinzufügen';
|
||||
|
||||
@override
|
||||
String get enter_torrent_hint_text => 'Magnet- oder Torrent-Datei-URL eingeben';
|
||||
String get enter_torrent_hint_text =>
|
||||
'Magnet- oder Torrent-Datei-URL eingeben';
|
||||
|
||||
@override
|
||||
String get torrent_url => 'Torrent-URL';
|
||||
|
|
@ -1314,7 +1351,8 @@ class AppLocalizationsDe extends AppLocalizations {
|
|||
String get use_native_http_client => 'Nativen HTTP-Client verwenden';
|
||||
|
||||
@override
|
||||
String get use_native_http_client_info => 'Unterstützt automatisch Plattformfunktionen wie VPNs, unterstützt mehr HTTP-Funktionen wie HTTP/3 und benutzerdefinierte Umleitungshandhabung.';
|
||||
String get use_native_http_client_info =>
|
||||
'Unterstützt automatisch Plattformfunktionen wie VPNs, unterstützt mehr HTTP-Funktionen wie HTTP/3 und benutzerdefinierte Umleitungshandhabung.';
|
||||
|
||||
@override
|
||||
String n_hour_ago(Object hour) {
|
||||
|
|
@ -1359,13 +1397,15 @@ class AppLocalizationsDe extends AppLocalizations {
|
|||
String get storage => 'Speicher';
|
||||
|
||||
@override
|
||||
String get clear_chapter_and_episode_cache => 'Kapitel- und Episoden-Cache löschen';
|
||||
String get clear_chapter_and_episode_cache =>
|
||||
'Kapitel- und Episoden-Cache löschen';
|
||||
|
||||
@override
|
||||
String get cache_cleared => 'Cache gelöscht';
|
||||
|
||||
@override
|
||||
String get clear_chapter_or_episode_cache_on_app_launch => 'Kapitel-/Episoden-Cache beim Start der App löschen';
|
||||
String get clear_chapter_or_episode_cache_on_app_launch =>
|
||||
'Kapitel-/Episoden-Cache beim Start der App löschen';
|
||||
|
||||
@override
|
||||
String get app_settings => 'App-Einstellungen';
|
||||
|
|
@ -1374,13 +1414,15 @@ class AppLocalizationsDe extends AppLocalizations {
|
|||
String get sources_settings => 'Quellen-Einstellungen';
|
||||
|
||||
@override
|
||||
String get include_sensitive_settings => 'Sensible Einstellungen einbeziehen (z. B. Tracker-Login-Tokens)';
|
||||
String get include_sensitive_settings =>
|
||||
'Sensible Einstellungen einbeziehen (z. B. Tracker-Login-Tokens)';
|
||||
|
||||
@override
|
||||
String get create => 'Erstellen';
|
||||
|
||||
@override
|
||||
String get downloads_are_limited_to_wifi => 'Downloads sind nur über WLAN verfügbar';
|
||||
String get downloads_are_limited_to_wifi =>
|
||||
'Downloads sind nur über WLAN verfügbar';
|
||||
|
||||
@override
|
||||
String get manga_extensions_repo => 'Manga-Erweiterungs-Repository';
|
||||
|
|
@ -1395,7 +1437,8 @@ class AppLocalizationsDe extends AppLocalizations {
|
|||
String get undefined => 'Nicht definiert';
|
||||
|
||||
@override
|
||||
String get empty_extensions_repo => 'Du hast derzeit keinen Repository-Link hier. Klicke auf das Plus-Symbol, um einen hinzuzufügen!';
|
||||
String get empty_extensions_repo =>
|
||||
'Du hast derzeit keinen Repository-Link hier. Klicke auf das Plus-Symbol, um einen hinzuzufügen!';
|
||||
|
||||
@override
|
||||
String get add_extensions_repo => 'Repository-Link hinzufügen';
|
||||
|
|
@ -1428,7 +1471,8 @@ class AppLocalizationsDe extends AppLocalizations {
|
|||
String get clear_all_sources => 'Alle Quellen löschen';
|
||||
|
||||
@override
|
||||
String get clear_all_sources_msg => 'Dies wird alle Quellen der Anwendung vollständig löschen. Möchten Sie wirklich fortfahren?';
|
||||
String get clear_all_sources_msg =>
|
||||
'Dies wird alle Quellen der Anwendung vollständig löschen. Möchten Sie wirklich fortfahren?';
|
||||
|
||||
@override
|
||||
String get sources_cleared => 'Quellen gelöscht!';
|
||||
|
|
@ -1457,5 +1501,6 @@ class AppLocalizationsDe extends AppLocalizations {
|
|||
}
|
||||
|
||||
@override
|
||||
String get unsupported_repo => 'Du hast gerade versucht, ein ungültiges Repository hinzuzufügen. Bitte schau mal beim Discord Server vorbei!';
|
||||
String get unsupported_repo =>
|
||||
'Du hast gerade versucht, ein ungültiges Repository hinzuzufügen. Bitte schau mal beim Discord Server vorbei!';
|
||||
}
|
||||
|
|
|
|||
|
|
@ -147,7 +147,8 @@ class AppLocalizationsEn extends AppLocalizations {
|
|||
String get remove_everything_msg => 'Are you sure? All history will be lost';
|
||||
|
||||
@override
|
||||
String get remove_all_update_msg => 'Are you sure? The whole update will be cleared';
|
||||
String get remove_all_update_msg =>
|
||||
'Are you sure? The whole update will be cleared';
|
||||
|
||||
@override
|
||||
String get ok => 'OK';
|
||||
|
|
@ -159,7 +160,8 @@ class AppLocalizationsEn extends AppLocalizations {
|
|||
String get remove => 'Remove';
|
||||
|
||||
@override
|
||||
String get remove_history_msg => 'This will remove the read date of this chapter. Are you sure?';
|
||||
String get remove_history_msg =>
|
||||
'This will remove the read date of this chapter. Are you sure?';
|
||||
|
||||
@override
|
||||
String get last_used => 'Last Used';
|
||||
|
|
@ -197,7 +199,8 @@ class AppLocalizationsEn extends AppLocalizations {
|
|||
}
|
||||
|
||||
@override
|
||||
String get clean_database_desc => 'This will remove all items that are not added to the library!';
|
||||
String get clean_database_desc =>
|
||||
'This will remove all items that are not added to the library!';
|
||||
|
||||
@override
|
||||
String get incognito_mode => 'Incognito Mode';
|
||||
|
|
@ -230,7 +233,8 @@ class AppLocalizationsEn extends AppLocalizations {
|
|||
String get edit_categories => 'Edit Categories';
|
||||
|
||||
@override
|
||||
String get edit_categories_description => 'You have no categories. Tap the plus button to create one for organizing your library';
|
||||
String get edit_categories_description =>
|
||||
'You have no categories. Tap the plus button to create one for organizing your library';
|
||||
|
||||
@override
|
||||
String get add => 'Add';
|
||||
|
|
@ -245,7 +249,8 @@ class AppLocalizationsEn extends AppLocalizations {
|
|||
String get category_name_required => '*Required';
|
||||
|
||||
@override
|
||||
String get add_category_error_exist => 'A category with this name already exist!';
|
||||
String get add_category_error_exist =>
|
||||
'A category with this name already exist!';
|
||||
|
||||
@override
|
||||
String get delete_category => 'Delete Category';
|
||||
|
|
@ -391,7 +396,8 @@ class AppLocalizationsEn extends AppLocalizations {
|
|||
String get nsfw_sources_show => 'Show in sources and extensions lists';
|
||||
|
||||
@override
|
||||
String get nsfw_sources_info => 'This does not prevent unofficial or potentially incorrectly flagged extensions from surfacing NSFW (18+) content within the app';
|
||||
String get nsfw_sources_info =>
|
||||
'This does not prevent unofficial or potentially incorrectly flagged extensions from surfacing NSFW (18+) content within the app';
|
||||
|
||||
@override
|
||||
String get version => 'Version';
|
||||
|
|
@ -638,7 +644,8 @@ class AppLocalizationsEn extends AppLocalizations {
|
|||
String get sync_logged => 'Login successful';
|
||||
|
||||
@override
|
||||
String get syncing_subtitle => 'Sync your progress across multiple devices via a self-hosted \nserver. Make sure to upload first if this is your first time \nsyncing or download before using (auto) sync on this device!';
|
||||
String get syncing_subtitle =>
|
||||
'Sync your progress across multiple devices via a self-hosted \nserver. Make sure to upload first if this is your first time \nsyncing or download before using (auto) sync on this device!';
|
||||
|
||||
@override
|
||||
String get last_sync => 'Last sync at: ';
|
||||
|
|
@ -692,13 +699,16 @@ class AppLocalizationsEn extends AppLocalizations {
|
|||
String get sync_button_download => 'Full download';
|
||||
|
||||
@override
|
||||
String get sync_confirm_snapshot => 'Request the server to create a remote copy of the current backup!';
|
||||
String get sync_confirm_snapshot =>
|
||||
'Request the server to create a remote copy of the current backup!';
|
||||
|
||||
@override
|
||||
String get sync_confirm_upload => 'A full upload will completely replace the remote data with your current one!';
|
||||
String get sync_confirm_upload =>
|
||||
'A full upload will completely replace the remote data with your current one!';
|
||||
|
||||
@override
|
||||
String get sync_confirm_download => 'A full download will completely replace your current data with the remote one!';
|
||||
String get sync_confirm_download =>
|
||||
'A full download will completely replace your current data with the remote one!';
|
||||
|
||||
@override
|
||||
String get sync_on => 'Enable sync';
|
||||
|
|
@ -737,7 +747,8 @@ class AppLocalizationsEn extends AppLocalizations {
|
|||
String get sync_snapshot_deleted => 'Snapshot deleted!';
|
||||
|
||||
@override
|
||||
String get sync_snapshot_no_data => 'No data to create a snapshot! Do a full upload first!';
|
||||
String get sync_snapshot_no_data =>
|
||||
'No data to create a snapshot! Do a full upload first!';
|
||||
|
||||
@override
|
||||
String get sync_browse_snapshots => 'Browse older backups';
|
||||
|
|
@ -755,7 +766,8 @@ class AppLocalizationsEn extends AppLocalizations {
|
|||
String get sync_auto => 'Auto Sync';
|
||||
|
||||
@override
|
||||
String get sync_auto_warning => 'Auto Sync is currently an experimental feature!';
|
||||
String get sync_auto_warning =>
|
||||
'Auto Sync is currently an experimental feature!';
|
||||
|
||||
@override
|
||||
String get sync_auto_off => 'Off';
|
||||
|
|
@ -800,13 +812,15 @@ class AppLocalizationsEn extends AppLocalizations {
|
|||
String get reorder_navigation => 'Customize navigation';
|
||||
|
||||
@override
|
||||
String get reorder_navigation_description => 'Reorder and toggle each navigation to your needs.';
|
||||
String get reorder_navigation_description =>
|
||||
'Reorder and toggle each navigation to your needs.';
|
||||
|
||||
@override
|
||||
String get full_screen_player => 'Use Fullscreen';
|
||||
|
||||
@override
|
||||
String get full_screen_player_info => 'Automatically use fullscreen when playing a video.';
|
||||
String get full_screen_player_info =>
|
||||
'Automatically use fullscreen when playing a video.';
|
||||
|
||||
@override
|
||||
String episode_progress(Object n) {
|
||||
|
|
@ -916,7 +930,8 @@ class AppLocalizationsEn extends AppLocalizations {
|
|||
String get page_preload_amount => 'Page preload amount';
|
||||
|
||||
@override
|
||||
String get page_preload_amount_subtitle => 'The amount of pages to preload when reading. Higher values will result in a smoother reading experience, at the cost of higher cache and network usage.';
|
||||
String get page_preload_amount_subtitle =>
|
||||
'The amount of pages to preload when reading. Higher values will result in a smoother reading experience, at the cost of higher cache and network usage.';
|
||||
|
||||
@override
|
||||
String get image_loading_error => 'This image couldn\'t be loaded';
|
||||
|
|
@ -937,7 +952,8 @@ class AppLocalizationsEn extends AppLocalizations {
|
|||
String get auto_extensions_updates => 'Auto extension updates';
|
||||
|
||||
@override
|
||||
String get auto_extensions_updates_subtitle => 'Will automatically update the extension when a new version is available.';
|
||||
String get auto_extensions_updates_subtitle =>
|
||||
'Will automatically update the extension when a new version is available.';
|
||||
|
||||
@override
|
||||
String get reading_mode => 'Reading mode';
|
||||
|
|
@ -1031,10 +1047,12 @@ class AppLocalizationsEn extends AppLocalizations {
|
|||
String get backup_options_dialog_title => 'What do you want to backup?';
|
||||
|
||||
@override
|
||||
String get backup_options_subtitle => 'What information to include in the backup file?';
|
||||
String get backup_options_subtitle =>
|
||||
'What information to include in the backup file?';
|
||||
|
||||
@override
|
||||
String get backup_and_restore_warning_info => 'You should keep copies of backups in other places as well';
|
||||
String get backup_and_restore_warning_info =>
|
||||
'You should keep copies of backups in other places as well';
|
||||
|
||||
@override
|
||||
String get library_entries => 'Library entries';
|
||||
|
|
@ -1058,13 +1076,15 @@ class AppLocalizationsEn extends AppLocalizations {
|
|||
String get weekly => 'Weekly';
|
||||
|
||||
@override
|
||||
String get restore_backup_warning_title => 'Restoring a backup will overwrite all existing data.\n\nContinue restoring?';
|
||||
String get restore_backup_warning_title =>
|
||||
'Restoring a backup will overwrite all existing data.\n\nContinue restoring?';
|
||||
|
||||
@override
|
||||
String get services => 'Services';
|
||||
|
||||
@override
|
||||
String get tracking_warning_info => 'One-way sync to update the chapter progress in tracking services. Set up tracking for individual entries from their tracking button.';
|
||||
String get tracking_warning_info =>
|
||||
'One-way sync to update the chapter progress in tracking services. Set up tracking for individual entries from their tracking button.';
|
||||
|
||||
@override
|
||||
String get use_page_tap_zones => 'Use page tap zones';
|
||||
|
|
@ -1097,7 +1117,8 @@ class AppLocalizationsEn extends AppLocalizations {
|
|||
String get player => 'Player';
|
||||
|
||||
@override
|
||||
String get markEpisodeAsSeenSetting => 'At what point to mark the episode as seen';
|
||||
String get markEpisodeAsSeenSetting =>
|
||||
'At what point to mark the episode as seen';
|
||||
|
||||
@override
|
||||
String get default_skip_intro_length => 'Default Skip intro length';
|
||||
|
|
@ -1115,10 +1136,12 @@ class AppLocalizationsEn extends AppLocalizations {
|
|||
String get show_extensions => 'Show extensions';
|
||||
|
||||
@override
|
||||
String get default_skip_forward_skip_length => 'Default skip forward skip length';
|
||||
String get default_skip_forward_skip_length =>
|
||||
'Default skip forward skip length';
|
||||
|
||||
@override
|
||||
String get aniskip_requires_info => 'AniSkip requires the anime to be tracked with MAL or Anilist to work.';
|
||||
String get aniskip_requires_info =>
|
||||
'AniSkip requires the anime to be tracked with MAL or Anilist to work.';
|
||||
|
||||
@override
|
||||
String get enable_aniskip => 'Enable AniSkip';
|
||||
|
|
@ -1267,7 +1290,8 @@ class AppLocalizationsEn extends AppLocalizations {
|
|||
String get background => 'Background';
|
||||
|
||||
@override
|
||||
String get no_subtite_warning_message => 'Has no effect because there aren\'t any subtitle tracks in this video';
|
||||
String get no_subtite_warning_message =>
|
||||
'Has no effect because there aren\'t any subtitle tracks in this video';
|
||||
|
||||
@override
|
||||
String get grid_size => 'Grid size';
|
||||
|
|
@ -1287,10 +1311,12 @@ class AppLocalizationsEn extends AppLocalizations {
|
|||
String get use_libass => 'Enable libass';
|
||||
|
||||
@override
|
||||
String get use_libass_info => 'Use libass based subtitle rendering for native backend.';
|
||||
String get use_libass_info =>
|
||||
'Use libass based subtitle rendering for native backend.';
|
||||
|
||||
@override
|
||||
String get libass_not_disable_message => 'Disable `use libass` in player settings to be able to customize the subtitles.';
|
||||
String get libass_not_disable_message =>
|
||||
'Disable `use libass` in player settings to be able to customize the subtitles.';
|
||||
|
||||
@override
|
||||
String get torrent_stream => 'Torrent Stream';
|
||||
|
|
@ -1314,7 +1340,8 @@ class AppLocalizationsEn extends AppLocalizations {
|
|||
String get use_native_http_client => 'Use native http client';
|
||||
|
||||
@override
|
||||
String get use_native_http_client_info => 'it automatically supports platform features such VPNs, support more HTTP features such as HTTP/3 and custom redirect handling';
|
||||
String get use_native_http_client_info =>
|
||||
'it automatically supports platform features such VPNs, support more HTTP features such as HTTP/3 and custom redirect handling';
|
||||
|
||||
@override
|
||||
String n_hour_ago(Object hour) {
|
||||
|
|
@ -1359,13 +1386,15 @@ class AppLocalizationsEn extends AppLocalizations {
|
|||
String get storage => 'Storage';
|
||||
|
||||
@override
|
||||
String get clear_chapter_and_episode_cache => 'Clear chapter and episode cache';
|
||||
String get clear_chapter_and_episode_cache =>
|
||||
'Clear chapter and episode cache';
|
||||
|
||||
@override
|
||||
String get cache_cleared => 'Cache cleared';
|
||||
|
||||
@override
|
||||
String get clear_chapter_or_episode_cache_on_app_launch => 'Clear chapter/episode cache on app launch';
|
||||
String get clear_chapter_or_episode_cache_on_app_launch =>
|
||||
'Clear chapter/episode cache on app launch';
|
||||
|
||||
@override
|
||||
String get app_settings => 'App settings';
|
||||
|
|
@ -1374,13 +1403,15 @@ class AppLocalizationsEn extends AppLocalizations {
|
|||
String get sources_settings => 'Sources settings';
|
||||
|
||||
@override
|
||||
String get include_sensitive_settings => 'Include sensitive settings (e.g., tracker login tokens)';
|
||||
String get include_sensitive_settings =>
|
||||
'Include sensitive settings (e.g., tracker login tokens)';
|
||||
|
||||
@override
|
||||
String get create => 'Create';
|
||||
|
||||
@override
|
||||
String get downloads_are_limited_to_wifi => 'Downloads are limited to Wi-Fi only';
|
||||
String get downloads_are_limited_to_wifi =>
|
||||
'Downloads are limited to Wi-Fi only';
|
||||
|
||||
@override
|
||||
String get manga_extensions_repo => 'Manga extensions repo';
|
||||
|
|
@ -1395,7 +1426,8 @@ class AppLocalizationsEn extends AppLocalizations {
|
|||
String get undefined => 'undefined';
|
||||
|
||||
@override
|
||||
String get empty_extensions_repo => 'You don\'t have any repository urls here. Click on the plus button to add one!';
|
||||
String get empty_extensions_repo =>
|
||||
'You don\'t have any repository urls here. Click on the plus button to add one!';
|
||||
|
||||
@override
|
||||
String get add_extensions_repo => 'Add repo URL';
|
||||
|
|
@ -1428,7 +1460,8 @@ class AppLocalizationsEn extends AppLocalizations {
|
|||
String get clear_all_sources => 'Clear all sources';
|
||||
|
||||
@override
|
||||
String get clear_all_sources_msg => 'This will completely erase all sources of the application. Are you sure you want to continue?';
|
||||
String get clear_all_sources_msg =>
|
||||
'This will completely erase all sources of the application. Are you sure you want to continue?';
|
||||
|
||||
@override
|
||||
String get sources_cleared => 'Sources cleared!!!';
|
||||
|
|
@ -1457,5 +1490,6 @@ class AppLocalizationsEn extends AppLocalizations {
|
|||
}
|
||||
|
||||
@override
|
||||
String get unsupported_repo => 'You\'ve tried to add an unsupported repository. Please check the discord server for support!';
|
||||
String get unsupported_repo =>
|
||||
'You\'ve tried to add an unsupported repository. Please check the discord server for support!';
|
||||
}
|
||||
|
|
|
|||
|
|
@ -126,10 +126,12 @@ class AppLocalizationsEs extends AppLocalizations {
|
|||
String get other => 'Otro';
|
||||
|
||||
@override
|
||||
String get show_continue_reading_buttons => 'Mostrar botones de continuar leyendo';
|
||||
String get show_continue_reading_buttons =>
|
||||
'Mostrar botones de continuar leyendo';
|
||||
|
||||
@override
|
||||
String get show_continue_watching_buttons => 'Mostrar botones de continuar viendo';
|
||||
String get show_continue_watching_buttons =>
|
||||
'Mostrar botones de continuar viendo';
|
||||
|
||||
@override
|
||||
String get empty_library => 'Biblioteca vacía';
|
||||
|
|
@ -144,10 +146,12 @@ class AppLocalizationsEs extends AppLocalizations {
|
|||
String get remove_everything => 'Eliminar todo';
|
||||
|
||||
@override
|
||||
String get remove_everything_msg => '¿Estás seguro? Se perderá todo el historial';
|
||||
String get remove_everything_msg =>
|
||||
'¿Estás seguro? Se perderá todo el historial';
|
||||
|
||||
@override
|
||||
String get remove_all_update_msg => '¿Estás seguro? Toda la actualización será eliminada';
|
||||
String get remove_all_update_msg =>
|
||||
'¿Estás seguro? Toda la actualización será eliminada';
|
||||
|
||||
@override
|
||||
String get ok => 'OK';
|
||||
|
|
@ -159,7 +163,8 @@ class AppLocalizationsEs extends AppLocalizations {
|
|||
String get remove => 'Eliminar';
|
||||
|
||||
@override
|
||||
String get remove_history_msg => 'Esto eliminará la fecha de lectura de este capítulo. ¿Estás seguro?';
|
||||
String get remove_history_msg =>
|
||||
'Esto eliminará la fecha de lectura de este capítulo. ¿Estás seguro?';
|
||||
|
||||
@override
|
||||
String get last_used => 'Último usado';
|
||||
|
|
@ -197,7 +202,8 @@ class AppLocalizationsEs extends AppLocalizations {
|
|||
}
|
||||
|
||||
@override
|
||||
String get clean_database_desc => '¡Esto eliminará todos los elementos que no se hayan agregado a la biblioteca!';
|
||||
String get clean_database_desc =>
|
||||
'¡Esto eliminará todos los elementos que no se hayan agregado a la biblioteca!';
|
||||
|
||||
@override
|
||||
String get incognito_mode => 'Modo incógnito';
|
||||
|
|
@ -230,7 +236,8 @@ class AppLocalizationsEs extends AppLocalizations {
|
|||
String get edit_categories => 'Editar categorías';
|
||||
|
||||
@override
|
||||
String get edit_categories_description => 'No tienes categorías. Toca el botón más para crear una para organizar tu biblioteca';
|
||||
String get edit_categories_description =>
|
||||
'No tienes categorías. Toca el botón más para crear una para organizar tu biblioteca';
|
||||
|
||||
@override
|
||||
String get add => 'Agregar';
|
||||
|
|
@ -245,7 +252,8 @@ class AppLocalizationsEs extends AppLocalizations {
|
|||
String get category_name_required => '*Requerido';
|
||||
|
||||
@override
|
||||
String get add_category_error_exist => '¡Ya existe una categoría con este nombre!';
|
||||
String get add_category_error_exist =>
|
||||
'¡Ya existe una categoría con este nombre!';
|
||||
|
||||
@override
|
||||
String get delete_category => 'Eliminar categoría';
|
||||
|
|
@ -340,7 +348,8 @@ class AppLocalizationsEs extends AppLocalizations {
|
|||
String get reading_mode_webtoon => 'Webtoon';
|
||||
|
||||
@override
|
||||
String get double_tap_animation_speed => 'Velocidad de animación de doble toque';
|
||||
String get double_tap_animation_speed =>
|
||||
'Velocidad de animación de doble toque';
|
||||
|
||||
@override
|
||||
String get normal => 'Normal';
|
||||
|
|
@ -391,7 +400,8 @@ class AppLocalizationsEs extends AppLocalizations {
|
|||
String get nsfw_sources_show => 'Mostrar en listas de fuentes y extensiones';
|
||||
|
||||
@override
|
||||
String get nsfw_sources_info => 'Esto no evita que extensiones no oficiales o potencialmente mal etiquetadas muestren contenido NSFW (18+) dentro de la app';
|
||||
String get nsfw_sources_info =>
|
||||
'Esto no evita que extensiones no oficiales o potencialmente mal etiquetadas muestren contenido NSFW (18+) dentro de la app';
|
||||
|
||||
@override
|
||||
String get version => 'Versión';
|
||||
|
|
@ -638,7 +648,8 @@ class AppLocalizationsEs extends AppLocalizations {
|
|||
String get sync_logged => 'Inicio de sesión exitoso';
|
||||
|
||||
@override
|
||||
String get syncing_subtitle => 'Sincroniza tu progreso entre varios dispositivos a través de un servidor autogestionado. Asegúrate de cargar primero si es la primera vez que sincronizas o descarga antes de usar la sincronización (automática) en este dispositivo.';
|
||||
String get syncing_subtitle =>
|
||||
'Sincroniza tu progreso entre varios dispositivos a través de un servidor autogestionado. Asegúrate de cargar primero si es la primera vez que sincronizas o descarga antes de usar la sincronización (automática) en este dispositivo.';
|
||||
|
||||
@override
|
||||
String get last_sync => 'Última sincronización: ';
|
||||
|
|
@ -692,13 +703,16 @@ class AppLocalizationsEs extends AppLocalizations {
|
|||
String get sync_button_download => 'Descarga completa';
|
||||
|
||||
@override
|
||||
String get sync_confirm_snapshot => '¡Solicita al servidor crear una copia de seguridad remota!';
|
||||
String get sync_confirm_snapshot =>
|
||||
'¡Solicita al servidor crear una copia de seguridad remota!';
|
||||
|
||||
@override
|
||||
String get sync_confirm_upload => '¡Una carga completa reemplazará completamente los datos remotos con los actuales!';
|
||||
String get sync_confirm_upload =>
|
||||
'¡Una carga completa reemplazará completamente los datos remotos con los actuales!';
|
||||
|
||||
@override
|
||||
String get sync_confirm_download => '¡Una descarga completa reemplazará completamente tus datos actuales con los remotos!';
|
||||
String get sync_confirm_download =>
|
||||
'¡Una descarga completa reemplazará completamente tus datos actuales con los remotos!';
|
||||
|
||||
@override
|
||||
String get sync_on => 'Habilitar sincronización';
|
||||
|
|
@ -737,7 +751,8 @@ class AppLocalizationsEs extends AppLocalizations {
|
|||
String get sync_snapshot_deleted => '¡Instantánea eliminada!';
|
||||
|
||||
@override
|
||||
String get sync_snapshot_no_data => '¡No hay datos para crear una instantánea! ¡Haz una carga completa primero!';
|
||||
String get sync_snapshot_no_data =>
|
||||
'¡No hay datos para crear una instantánea! ¡Haz una carga completa primero!';
|
||||
|
||||
@override
|
||||
String get sync_browse_snapshots => 'Explorar copias de seguridad antiguas';
|
||||
|
|
@ -755,7 +770,8 @@ class AppLocalizationsEs extends AppLocalizations {
|
|||
String get sync_auto => 'Sincronización automática';
|
||||
|
||||
@override
|
||||
String get sync_auto_warning => '¡La sincronización automática es una función experimental actualmente!';
|
||||
String get sync_auto_warning =>
|
||||
'¡La sincronización automática es una función experimental actualmente!';
|
||||
|
||||
@override
|
||||
String get sync_auto_off => 'Desactivado';
|
||||
|
|
@ -800,13 +816,15 @@ class AppLocalizationsEs extends AppLocalizations {
|
|||
String get reorder_navigation => 'Personalizar navegación';
|
||||
|
||||
@override
|
||||
String get reorder_navigation_description => 'Reordena y ajusta cada navegación según tus necesidades.';
|
||||
String get reorder_navigation_description =>
|
||||
'Reordena y ajusta cada navegación según tus necesidades.';
|
||||
|
||||
@override
|
||||
String get full_screen_player => 'Usar pantalla completa';
|
||||
|
||||
@override
|
||||
String get full_screen_player_info => 'Usar automáticamente la pantalla completa al reproducir un video.';
|
||||
String get full_screen_player_info =>
|
||||
'Usar automáticamente la pantalla completa al reproducir un video.';
|
||||
|
||||
@override
|
||||
String episode_progress(Object n) {
|
||||
|
|
@ -875,7 +893,8 @@ class AppLocalizationsEs extends AppLocalizations {
|
|||
String get searching_for_updates => 'Buscando actualizaciones...';
|
||||
|
||||
@override
|
||||
String get no_new_updates_available => 'No hay nuevas actualizaciones disponibles';
|
||||
String get no_new_updates_available =>
|
||||
'No hay nuevas actualizaciones disponibles';
|
||||
|
||||
@override
|
||||
String get uninstall => 'Desinstalar';
|
||||
|
|
@ -916,7 +935,8 @@ class AppLocalizationsEs extends AppLocalizations {
|
|||
String get page_preload_amount => 'Cantidad de páginas a precargar';
|
||||
|
||||
@override
|
||||
String get page_preload_amount_subtitle => 'La cantidad de páginas a precargar al leer. Valores más altos resultarán en una experiencia de lectura más fluida, a costa de un mayor uso de caché y red.';
|
||||
String get page_preload_amount_subtitle =>
|
||||
'La cantidad de páginas a precargar al leer. Valores más altos resultarán en una experiencia de lectura más fluida, a costa de un mayor uso de caché y red.';
|
||||
|
||||
@override
|
||||
String get image_loading_error => 'Esta imagen no pudo cargarse';
|
||||
|
|
@ -931,13 +951,16 @@ class AppLocalizationsEs extends AppLocalizations {
|
|||
String get video_subtitle => 'Subtítulo';
|
||||
|
||||
@override
|
||||
String get check_for_extension_updates => 'Buscar actualizaciones de extensión';
|
||||
String get check_for_extension_updates =>
|
||||
'Buscar actualizaciones de extensión';
|
||||
|
||||
@override
|
||||
String get auto_extensions_updates => 'Actualizaciones automáticas de extensión';
|
||||
String get auto_extensions_updates =>
|
||||
'Actualizaciones automáticas de extensión';
|
||||
|
||||
@override
|
||||
String get auto_extensions_updates_subtitle => 'Actualizará automáticamente la extensión cuando haya una nueva versión disponible.';
|
||||
String get auto_extensions_updates_subtitle =>
|
||||
'Actualizará automáticamente la extensión cuando haya una nueva versión disponible.';
|
||||
|
||||
@override
|
||||
String get reading_mode => 'Modo de lectura';
|
||||
|
|
@ -1007,13 +1030,15 @@ class AppLocalizationsEs extends AppLocalizations {
|
|||
String get create_backup_dialog_title => '¿Qué quieres respaldar?';
|
||||
|
||||
@override
|
||||
String get create_backup_subtitle => 'Puede ser usado para restaurar la biblioteca actual';
|
||||
String get create_backup_subtitle =>
|
||||
'Puede ser usado para restaurar la biblioteca actual';
|
||||
|
||||
@override
|
||||
String get restore_backup => 'Restaurar respaldo';
|
||||
|
||||
@override
|
||||
String get restore_backup_subtitle => 'Restaurar biblioteca desde archivo de respaldo';
|
||||
String get restore_backup_subtitle =>
|
||||
'Restaurar biblioteca desde archivo de respaldo';
|
||||
|
||||
@override
|
||||
String get automatic_backups => 'Respaldo automático';
|
||||
|
|
@ -1031,10 +1056,12 @@ class AppLocalizationsEs extends AppLocalizations {
|
|||
String get backup_options_dialog_title => '¿Qué quieres respaldar?';
|
||||
|
||||
@override
|
||||
String get backup_options_subtitle => 'Qué información incluir en el archivo de respaldo';
|
||||
String get backup_options_subtitle =>
|
||||
'Qué información incluir en el archivo de respaldo';
|
||||
|
||||
@override
|
||||
String get backup_and_restore_warning_info => 'Deberías mantener copias de los respaldos en otros lugares también';
|
||||
String get backup_and_restore_warning_info =>
|
||||
'Deberías mantener copias de los respaldos en otros lugares también';
|
||||
|
||||
@override
|
||||
String get library_entries => 'Entradas de biblioteca';
|
||||
|
|
@ -1058,13 +1085,15 @@ class AppLocalizationsEs extends AppLocalizations {
|
|||
String get weekly => 'Semanal';
|
||||
|
||||
@override
|
||||
String get restore_backup_warning_title => 'Restaurar una copia de seguridad sobrescribirá todos los datos existentes.\n\n¿Continuar con la restauración?';
|
||||
String get restore_backup_warning_title =>
|
||||
'Restaurar una copia de seguridad sobrescribirá todos los datos existentes.\n\n¿Continuar con la restauración?';
|
||||
|
||||
@override
|
||||
String get services => 'Servicios';
|
||||
|
||||
@override
|
||||
String get tracking_warning_info => 'Sincronización unidireccional para actualizar el progreso de los capítulos en servicios de seguimiento. Configura el seguimiento para entradas individuales desde su botón de seguimiento.';
|
||||
String get tracking_warning_info =>
|
||||
'Sincronización unidireccional para actualizar el progreso de los capítulos en servicios de seguimiento. Configura el seguimiento para entradas individuales desde su botón de seguimiento.';
|
||||
|
||||
@override
|
||||
String get use_page_tap_zones => 'Usar zonas de toque de página';
|
||||
|
|
@ -1097,16 +1126,20 @@ class AppLocalizationsEs extends AppLocalizations {
|
|||
String get player => 'Jugador';
|
||||
|
||||
@override
|
||||
String get markEpisodeAsSeenSetting => 'En qué punto marcar el episodio como visto';
|
||||
String get markEpisodeAsSeenSetting =>
|
||||
'En qué punto marcar el episodio como visto';
|
||||
|
||||
@override
|
||||
String get default_skip_intro_length => 'Duración predeterminada para saltar la introducción';
|
||||
String get default_skip_intro_length =>
|
||||
'Duración predeterminada para saltar la introducción';
|
||||
|
||||
@override
|
||||
String get default_playback_speed_length => 'Duración predeterminada de la velocidad de reproducción';
|
||||
String get default_playback_speed_length =>
|
||||
'Duración predeterminada de la velocidad de reproducción';
|
||||
|
||||
@override
|
||||
String get updateProgressAfterReading => 'Actualizar el progreso después de leer';
|
||||
String get updateProgressAfterReading =>
|
||||
'Actualizar el progreso después de leer';
|
||||
|
||||
@override
|
||||
String get no_sources_installed => '¡No hay fuentes instaladas!';
|
||||
|
|
@ -1115,10 +1148,12 @@ class AppLocalizationsEs extends AppLocalizations {
|
|||
String get show_extensions => 'Mostrar extensiones';
|
||||
|
||||
@override
|
||||
String get default_skip_forward_skip_length => 'Longitud de salto hacia adelante predeterminada';
|
||||
String get default_skip_forward_skip_length =>
|
||||
'Longitud de salto hacia adelante predeterminada';
|
||||
|
||||
@override
|
||||
String get aniskip_requires_info => 'AniSkip requiere que el anime esté registrado en MAL o Anilist para funcionar.';
|
||||
String get aniskip_requires_info =>
|
||||
'AniSkip requiere que el anime esté registrado en MAL o Anilist para funcionar.';
|
||||
|
||||
@override
|
||||
String get enable_aniskip => 'Habilitar AniSkip';
|
||||
|
|
@ -1267,7 +1302,8 @@ class AppLocalizationsEs extends AppLocalizations {
|
|||
String get background => 'Fondo';
|
||||
|
||||
@override
|
||||
String get no_subtite_warning_message => 'No tiene efecto porque no hay pistas de subtítulos en este vídeo';
|
||||
String get no_subtite_warning_message =>
|
||||
'No tiene efecto porque no hay pistas de subtítulos en este vídeo';
|
||||
|
||||
@override
|
||||
String get grid_size => 'Tamaño de la cuadrícula';
|
||||
|
|
@ -1287,10 +1323,12 @@ class AppLocalizationsEs extends AppLocalizations {
|
|||
String get use_libass => 'Habilitar libass';
|
||||
|
||||
@override
|
||||
String get use_libass_info => 'Utilice la renderización de subtítulos basada en libass para el backend nativo.';
|
||||
String get use_libass_info =>
|
||||
'Utilice la renderización de subtítulos basada en libass para el backend nativo.';
|
||||
|
||||
@override
|
||||
String get libass_not_disable_message => 'Deshabilite `use libass` en la configuración del reproductor para poder personalizar los subtítulos.';
|
||||
String get libass_not_disable_message =>
|
||||
'Deshabilite `use libass` en la configuración del reproductor para poder personalizar los subtítulos.';
|
||||
|
||||
@override
|
||||
String get torrent_stream => 'Transmisión de torrent';
|
||||
|
|
@ -1299,7 +1337,8 @@ class AppLocalizationsEs extends AppLocalizations {
|
|||
String get add_torrent => 'Agregar torrent';
|
||||
|
||||
@override
|
||||
String get enter_torrent_hint_text => 'Ingrese la URL del imán o del archivo torrent';
|
||||
String get enter_torrent_hint_text =>
|
||||
'Ingrese la URL del imán o del archivo torrent';
|
||||
|
||||
@override
|
||||
String get torrent_url => 'URL del torrent';
|
||||
|
|
@ -1314,7 +1353,8 @@ class AppLocalizationsEs extends AppLocalizations {
|
|||
String get use_native_http_client => 'Utilizar cliente HTTP nativo';
|
||||
|
||||
@override
|
||||
String get use_native_http_client_info => 'admite automáticamente las características de la plataforma como VPNs, admite más características HTTP como HTTP/3 y manejo de redirección personalizada';
|
||||
String get use_native_http_client_info =>
|
||||
'admite automáticamente las características de la plataforma como VPNs, admite más características HTTP como HTTP/3 y manejo de redirección personalizada';
|
||||
|
||||
@override
|
||||
String n_hour_ago(Object hour) {
|
||||
|
|
@ -1359,13 +1399,15 @@ class AppLocalizationsEs extends AppLocalizations {
|
|||
String get storage => 'Almacenamiento';
|
||||
|
||||
@override
|
||||
String get clear_chapter_and_episode_cache => 'Borrar caché de capítulos y episodios';
|
||||
String get clear_chapter_and_episode_cache =>
|
||||
'Borrar caché de capítulos y episodios';
|
||||
|
||||
@override
|
||||
String get cache_cleared => 'Caché borrada';
|
||||
|
||||
@override
|
||||
String get clear_chapter_or_episode_cache_on_app_launch => 'Borrar caché de capítulos/episodios al iniciar la aplicación';
|
||||
String get clear_chapter_or_episode_cache_on_app_launch =>
|
||||
'Borrar caché de capítulos/episodios al iniciar la aplicación';
|
||||
|
||||
@override
|
||||
String get app_settings => 'Configuración de la aplicación';
|
||||
|
|
@ -1374,13 +1416,15 @@ class AppLocalizationsEs extends AppLocalizations {
|
|||
String get sources_settings => 'Configuración de fuentes';
|
||||
|
||||
@override
|
||||
String get include_sensitive_settings => 'Incluir configuraciones sensibles (por ejemplo, tokens de inicio de sesión de rastreadores)';
|
||||
String get include_sensitive_settings =>
|
||||
'Incluir configuraciones sensibles (por ejemplo, tokens de inicio de sesión de rastreadores)';
|
||||
|
||||
@override
|
||||
String get create => 'Crear';
|
||||
|
||||
@override
|
||||
String get downloads_are_limited_to_wifi => 'Las descargas están limitadas solo a Wi-Fi';
|
||||
String get downloads_are_limited_to_wifi =>
|
||||
'Las descargas están limitadas solo a Wi-Fi';
|
||||
|
||||
@override
|
||||
String get manga_extensions_repo => 'Repositorio de extensiones de manga';
|
||||
|
|
@ -1395,7 +1439,8 @@ class AppLocalizationsEs extends AppLocalizations {
|
|||
String get undefined => 'Indefinido';
|
||||
|
||||
@override
|
||||
String get empty_extensions_repo => 'No tienes ninguna URL de repositorio aquí. ¡Haz clic en el botón más para agregar una!';
|
||||
String get empty_extensions_repo =>
|
||||
'No tienes ninguna URL de repositorio aquí. ¡Haz clic en el botón más para agregar una!';
|
||||
|
||||
@override
|
||||
String get add_extensions_repo => 'Agregar URL del repositorio';
|
||||
|
|
@ -1404,13 +1449,16 @@ class AppLocalizationsEs extends AppLocalizations {
|
|||
String get remove_extensions_repo => 'Eliminar URL del repositorio';
|
||||
|
||||
@override
|
||||
String get manage_manga_repo_urls => 'Gestionar URLs del repositorio de manga';
|
||||
String get manage_manga_repo_urls =>
|
||||
'Gestionar URLs del repositorio de manga';
|
||||
|
||||
@override
|
||||
String get manage_anime_repo_urls => 'Gestionar URLs del repositorio de anime';
|
||||
String get manage_anime_repo_urls =>
|
||||
'Gestionar URLs del repositorio de anime';
|
||||
|
||||
@override
|
||||
String get manage_novel_repo_urls => 'Gestionar URLs del repositorio de novelas';
|
||||
String get manage_novel_repo_urls =>
|
||||
'Gestionar URLs del repositorio de novelas';
|
||||
|
||||
@override
|
||||
String get url_cannot_be_empty => 'La URL no puede estar vacía';
|
||||
|
|
@ -1428,7 +1476,8 @@ class AppLocalizationsEs extends AppLocalizations {
|
|||
String get clear_all_sources => 'Borrar todas las fuentes';
|
||||
|
||||
@override
|
||||
String get clear_all_sources_msg => 'Esto borrará completamente todas las fuentes de la aplicación. ¿Estás seguro de que deseas continuar?';
|
||||
String get clear_all_sources_msg =>
|
||||
'Esto borrará completamente todas las fuentes de la aplicación. ¿Estás seguro de que deseas continuar?';
|
||||
|
||||
@override
|
||||
String get sources_cleared => '¡Fuentes borradas!';
|
||||
|
|
@ -1457,12 +1506,13 @@ class AppLocalizationsEs extends AppLocalizations {
|
|||
}
|
||||
|
||||
@override
|
||||
String get unsupported_repo => 'Has intentado añadir un repositorio no soportado. Por favor, ¡consulta el servidor discord para soporte!';
|
||||
String get unsupported_repo =>
|
||||
'Has intentado añadir un repositorio no soportado. Por favor, ¡consulta el servidor discord para soporte!';
|
||||
}
|
||||
|
||||
/// The translations for Spanish Castilian, as used in Latin America and the Caribbean (`es_419`).
|
||||
class AppLocalizationsEs419 extends AppLocalizationsEs {
|
||||
AppLocalizationsEs419(): super('es_419');
|
||||
AppLocalizationsEs419() : super('es_419');
|
||||
|
||||
@override
|
||||
String get library => 'Biblioteca';
|
||||
|
|
@ -1582,10 +1632,12 @@ class AppLocalizationsEs419 extends AppLocalizationsEs {
|
|||
String get other => 'Otro';
|
||||
|
||||
@override
|
||||
String get show_continue_reading_buttons => 'Mostrar botones de continuar leyendo';
|
||||
String get show_continue_reading_buttons =>
|
||||
'Mostrar botones de continuar leyendo';
|
||||
|
||||
@override
|
||||
String get show_continue_watching_buttons => 'Mostrar botones de continuar viendo';
|
||||
String get show_continue_watching_buttons =>
|
||||
'Mostrar botones de continuar viendo';
|
||||
|
||||
@override
|
||||
String get empty_library => 'Biblioteca vacía';
|
||||
|
|
@ -1600,10 +1652,12 @@ class AppLocalizationsEs419 extends AppLocalizationsEs {
|
|||
String get remove_everything => 'Eliminar todo';
|
||||
|
||||
@override
|
||||
String get remove_everything_msg => '¿Estás seguro? Se perderá todo el historial';
|
||||
String get remove_everything_msg =>
|
||||
'¿Estás seguro? Se perderá todo el historial';
|
||||
|
||||
@override
|
||||
String get remove_all_update_msg => '¿Estás seguro? Toda la actualización será eliminada';
|
||||
String get remove_all_update_msg =>
|
||||
'¿Estás seguro? Toda la actualización será eliminada';
|
||||
|
||||
@override
|
||||
String get ok => 'OK';
|
||||
|
|
@ -1615,7 +1669,8 @@ class AppLocalizationsEs419 extends AppLocalizationsEs {
|
|||
String get remove => 'Eliminar';
|
||||
|
||||
@override
|
||||
String get remove_history_msg => 'Esto eliminará la fecha de lectura de este capítulo. ¿Estás seguro?';
|
||||
String get remove_history_msg =>
|
||||
'Esto eliminará la fecha de lectura de este capítulo. ¿Estás seguro?';
|
||||
|
||||
@override
|
||||
String get last_used => 'Último usado';
|
||||
|
|
@ -1653,7 +1708,8 @@ class AppLocalizationsEs419 extends AppLocalizationsEs {
|
|||
}
|
||||
|
||||
@override
|
||||
String get clean_database_desc => '¡Esto eliminará todos los elementos que no se hayan agregado a la biblioteca!';
|
||||
String get clean_database_desc =>
|
||||
'¡Esto eliminará todos los elementos que no se hayan agregado a la biblioteca!';
|
||||
|
||||
@override
|
||||
String get incognito_mode => 'Modo incógnito';
|
||||
|
|
@ -1686,7 +1742,8 @@ class AppLocalizationsEs419 extends AppLocalizationsEs {
|
|||
String get edit_categories => 'Editar categorías';
|
||||
|
||||
@override
|
||||
String get edit_categories_description => 'No tienes categorías. Toca el botón más para crear una para organizar tu biblioteca';
|
||||
String get edit_categories_description =>
|
||||
'No tienes categorías. Toca el botón más para crear una para organizar tu biblioteca';
|
||||
|
||||
@override
|
||||
String get add => 'Agregar';
|
||||
|
|
@ -1701,7 +1758,8 @@ class AppLocalizationsEs419 extends AppLocalizationsEs {
|
|||
String get category_name_required => '*Requerido';
|
||||
|
||||
@override
|
||||
String get add_category_error_exist => '¡Ya existe una categoría con este nombre!';
|
||||
String get add_category_error_exist =>
|
||||
'¡Ya existe una categoría con este nombre!';
|
||||
|
||||
@override
|
||||
String get delete_category => 'Eliminar categoría';
|
||||
|
|
@ -1796,7 +1854,8 @@ class AppLocalizationsEs419 extends AppLocalizationsEs {
|
|||
String get reading_mode_webtoon => 'Webtoon';
|
||||
|
||||
@override
|
||||
String get double_tap_animation_speed => 'Velocidad de animación de doble toque';
|
||||
String get double_tap_animation_speed =>
|
||||
'Velocidad de animación de doble toque';
|
||||
|
||||
@override
|
||||
String get normal => 'Normal';
|
||||
|
|
@ -1844,7 +1903,8 @@ class AppLocalizationsEs419 extends AppLocalizationsEs {
|
|||
String get nsfw_sources_show => 'Mostrar en listas de fuentes y extensiones';
|
||||
|
||||
@override
|
||||
String get nsfw_sources_info => 'Esto no evita que extensiones no oficiales o potencialmente mal etiquetadas muestren contenido NSFW (18+) dentro de la app';
|
||||
String get nsfw_sources_info =>
|
||||
'Esto no evita que extensiones no oficiales o potencialmente mal etiquetadas muestren contenido NSFW (18+) dentro de la app';
|
||||
|
||||
@override
|
||||
String get version => 'Versión';
|
||||
|
|
@ -2091,7 +2151,8 @@ class AppLocalizationsEs419 extends AppLocalizationsEs {
|
|||
String get sync_logged => 'Inicio de sesión exitoso';
|
||||
|
||||
@override
|
||||
String get syncing_subtitle => 'Sincroniza tu progreso en varios dispositivos mediante un servidor \npropio. Asegúrate de cargar primero si es la primera vez que \nsincronizas o de descargar antes de usar la sincronización \n(automática) en este dispositivo.';
|
||||
String get syncing_subtitle =>
|
||||
'Sincroniza tu progreso en varios dispositivos mediante un servidor \npropio. Asegúrate de cargar primero si es la primera vez que \nsincronizas o de descargar antes de usar la sincronización \n(automática) en este dispositivo.';
|
||||
|
||||
@override
|
||||
String get last_sync => 'Última sincronización: ';
|
||||
|
|
@ -2106,7 +2167,8 @@ class AppLocalizationsEs419 extends AppLocalizationsEs {
|
|||
String get sync_server => 'Dirección del servidor de sincronización';
|
||||
|
||||
@override
|
||||
String get sync_login_invalid_creds => 'Correo electrónico o contraseña inválidos';
|
||||
String get sync_login_invalid_creds =>
|
||||
'Correo electrónico o contraseña inválidos';
|
||||
|
||||
@override
|
||||
String get sync_checking => 'Comprobando sincronización...';
|
||||
|
|
@ -2145,13 +2207,16 @@ class AppLocalizationsEs419 extends AppLocalizationsEs {
|
|||
String get sync_button_download => 'Descarga completa';
|
||||
|
||||
@override
|
||||
String get sync_confirm_snapshot => '¡Solicita al servidor crear una copia de seguridad remota!';
|
||||
String get sync_confirm_snapshot =>
|
||||
'¡Solicita al servidor crear una copia de seguridad remota!';
|
||||
|
||||
@override
|
||||
String get sync_confirm_upload => '¡Una carga completa reemplazará por completo los datos remotos con los actuales!';
|
||||
String get sync_confirm_upload =>
|
||||
'¡Una carga completa reemplazará por completo los datos remotos con los actuales!';
|
||||
|
||||
@override
|
||||
String get sync_confirm_download => '¡Una descarga completa reemplazará por completo tus datos actuales con los remotos!';
|
||||
String get sync_confirm_download =>
|
||||
'¡Una descarga completa reemplazará por completo tus datos actuales con los remotos!';
|
||||
|
||||
@override
|
||||
String get sync_on => 'Habilitar sincronización';
|
||||
|
|
@ -2190,7 +2255,8 @@ class AppLocalizationsEs419 extends AppLocalizationsEs {
|
|||
String get sync_snapshot_deleted => '¡Instantánea eliminada!';
|
||||
|
||||
@override
|
||||
String get sync_snapshot_no_data => '¡No hay datos para crear una instantánea! ¡Haz una carga completa primero!';
|
||||
String get sync_snapshot_no_data =>
|
||||
'¡No hay datos para crear una instantánea! ¡Haz una carga completa primero!';
|
||||
|
||||
@override
|
||||
String get sync_browse_snapshots => 'Explorar copias de seguridad antiguas';
|
||||
|
|
@ -2208,7 +2274,8 @@ class AppLocalizationsEs419 extends AppLocalizationsEs {
|
|||
String get sync_auto => 'Sincronización automática';
|
||||
|
||||
@override
|
||||
String get sync_auto_warning => '¡La sincronización automática es una función experimental actualmente!';
|
||||
String get sync_auto_warning =>
|
||||
'¡La sincronización automática es una función experimental actualmente!';
|
||||
|
||||
@override
|
||||
String get sync_auto_off => 'Desactivado';
|
||||
|
|
@ -2253,13 +2320,15 @@ class AppLocalizationsEs419 extends AppLocalizationsEs {
|
|||
String get reorder_navigation => 'Personalizar navegación';
|
||||
|
||||
@override
|
||||
String get reorder_navigation_description => 'Reordena y ajusta cada navegación según tus necesidades.';
|
||||
String get reorder_navigation_description =>
|
||||
'Reordena y ajusta cada navegación según tus necesidades.';
|
||||
|
||||
@override
|
||||
String get full_screen_player => 'Usar pantalla completa';
|
||||
|
||||
@override
|
||||
String get full_screen_player_info => 'Usar automáticamente la pantalla completa al reproducir un video.';
|
||||
String get full_screen_player_info =>
|
||||
'Usar automáticamente la pantalla completa al reproducir un video.';
|
||||
|
||||
@override
|
||||
String episode_progress(Object n) {
|
||||
|
|
@ -2328,7 +2397,8 @@ class AppLocalizationsEs419 extends AppLocalizationsEs {
|
|||
String get searching_for_updates => 'Buscando actualizaciones...';
|
||||
|
||||
@override
|
||||
String get no_new_updates_available => 'No hay nuevas actualizaciones disponibles';
|
||||
String get no_new_updates_available =>
|
||||
'No hay nuevas actualizaciones disponibles';
|
||||
|
||||
@override
|
||||
String get uninstall => 'Desinstalar';
|
||||
|
|
@ -2369,7 +2439,8 @@ class AppLocalizationsEs419 extends AppLocalizationsEs {
|
|||
String get page_preload_amount => 'Cantidad de páginas a precargar';
|
||||
|
||||
@override
|
||||
String get page_preload_amount_subtitle => 'La cantidad de páginas a precargar al leer. Valores más altos resultarán en una experiencia de lectura más fluida, a costa de un mayor uso de caché y red.';
|
||||
String get page_preload_amount_subtitle =>
|
||||
'La cantidad de páginas a precargar al leer. Valores más altos resultarán en una experiencia de lectura más fluida, a costa de un mayor uso de caché y red.';
|
||||
|
||||
@override
|
||||
String get image_loading_error => 'Esta imagen no pudo cargarse';
|
||||
|
|
@ -2384,13 +2455,16 @@ class AppLocalizationsEs419 extends AppLocalizationsEs {
|
|||
String get video_subtitle => 'Subtítulo';
|
||||
|
||||
@override
|
||||
String get check_for_extension_updates => 'Buscar actualizaciones de extensión';
|
||||
String get check_for_extension_updates =>
|
||||
'Buscar actualizaciones de extensión';
|
||||
|
||||
@override
|
||||
String get auto_extensions_updates => 'Actualizaciones automáticas de extensión';
|
||||
String get auto_extensions_updates =>
|
||||
'Actualizaciones automáticas de extensión';
|
||||
|
||||
@override
|
||||
String get auto_extensions_updates_subtitle => 'Actualizará automáticamente la extensión cuando haya una nueva versión disponible.';
|
||||
String get auto_extensions_updates_subtitle =>
|
||||
'Actualizará automáticamente la extensión cuando haya una nueva versión disponible.';
|
||||
|
||||
@override
|
||||
String get reading_mode => 'Modo de lectura';
|
||||
|
|
@ -2460,13 +2534,15 @@ class AppLocalizationsEs419 extends AppLocalizationsEs {
|
|||
String get create_backup_dialog_title => '¿Qué quieres respaldar?';
|
||||
|
||||
@override
|
||||
String get create_backup_subtitle => 'Puede ser usado para restaurar la biblioteca actual';
|
||||
String get create_backup_subtitle =>
|
||||
'Puede ser usado para restaurar la biblioteca actual';
|
||||
|
||||
@override
|
||||
String get restore_backup => 'Restaurar respaldo';
|
||||
|
||||
@override
|
||||
String get restore_backup_subtitle => 'Restaurar biblioteca desde archivo de respaldo';
|
||||
String get restore_backup_subtitle =>
|
||||
'Restaurar biblioteca desde archivo de respaldo';
|
||||
|
||||
@override
|
||||
String get automatic_backups => 'Respaldo automático';
|
||||
|
|
@ -2484,10 +2560,12 @@ class AppLocalizationsEs419 extends AppLocalizationsEs {
|
|||
String get backup_options_dialog_title => '¿Qué quieres respaldar?';
|
||||
|
||||
@override
|
||||
String get backup_options_subtitle => 'Qué información incluir en el archivo de respaldo';
|
||||
String get backup_options_subtitle =>
|
||||
'Qué información incluir en el archivo de respaldo';
|
||||
|
||||
@override
|
||||
String get backup_and_restore_warning_info => 'Deberías mantener copias de los respaldos en otros lugares también';
|
||||
String get backup_and_restore_warning_info =>
|
||||
'Deberías mantener copias de los respaldos en otros lugares también';
|
||||
|
||||
@override
|
||||
String get library_entries => 'Entradas de biblioteca';
|
||||
|
|
@ -2511,13 +2589,15 @@ class AppLocalizationsEs419 extends AppLocalizationsEs {
|
|||
String get weekly => 'Semanalmente';
|
||||
|
||||
@override
|
||||
String get restore_backup_warning_title => 'Restaurar una copia de seguridad sobrescribirá todos los datos existentes.\n\n¿Continuar con la restauración?';
|
||||
String get restore_backup_warning_title =>
|
||||
'Restaurar una copia de seguridad sobrescribirá todos los datos existentes.\n\n¿Continuar con la restauración?';
|
||||
|
||||
@override
|
||||
String get services => 'Servicios';
|
||||
|
||||
@override
|
||||
String get tracking_warning_info => 'Sincronización unidireccional para actualizar el progreso de los capítulos en servicios de seguimiento. Configura el seguimiento para entradas individuales desde su botón de seguimiento.';
|
||||
String get tracking_warning_info =>
|
||||
'Sincronización unidireccional para actualizar el progreso de los capítulos en servicios de seguimiento. Configura el seguimiento para entradas individuales desde su botón de seguimiento.';
|
||||
|
||||
@override
|
||||
String get use_page_tap_zones => 'Usar zonas de toque en la página';
|
||||
|
|
@ -2550,16 +2630,20 @@ class AppLocalizationsEs419 extends AppLocalizationsEs {
|
|||
String get player => 'Reproductor';
|
||||
|
||||
@override
|
||||
String get markEpisodeAsSeenSetting => 'En qué momento marcar el episodio como visto';
|
||||
String get markEpisodeAsSeenSetting =>
|
||||
'En qué momento marcar el episodio como visto';
|
||||
|
||||
@override
|
||||
String get default_skip_intro_length => 'Duración predeterminada para saltar la introducción';
|
||||
String get default_skip_intro_length =>
|
||||
'Duración predeterminada para saltar la introducción';
|
||||
|
||||
@override
|
||||
String get default_playback_speed_length => 'Duración predeterminada de la velocidad de reproducción';
|
||||
String get default_playback_speed_length =>
|
||||
'Duración predeterminada de la velocidad de reproducción';
|
||||
|
||||
@override
|
||||
String get updateProgressAfterReading => 'Actualizar el progreso después de leer';
|
||||
String get updateProgressAfterReading =>
|
||||
'Actualizar el progreso después de leer';
|
||||
|
||||
@override
|
||||
String get no_sources_installed => '¡No hay fuentes instaladas!';
|
||||
|
|
@ -2568,10 +2652,12 @@ class AppLocalizationsEs419 extends AppLocalizationsEs {
|
|||
String get show_extensions => 'Mostrar extensiones';
|
||||
|
||||
@override
|
||||
String get default_skip_forward_skip_length => 'Longitud de salto hacia adelante predeterminada';
|
||||
String get default_skip_forward_skip_length =>
|
||||
'Longitud de salto hacia adelante predeterminada';
|
||||
|
||||
@override
|
||||
String get aniskip_requires_info => 'AniSkip requiere que el anime esté registrado en MAL o Anilist para funcionar.';
|
||||
String get aniskip_requires_info =>
|
||||
'AniSkip requiere que el anime esté registrado en MAL o Anilist para funcionar.';
|
||||
|
||||
@override
|
||||
String get enable_aniskip => 'Habilitar AniSkip';
|
||||
|
|
@ -2714,7 +2800,8 @@ class AppLocalizationsEs419 extends AppLocalizationsEs {
|
|||
String get background => 'Fondo';
|
||||
|
||||
@override
|
||||
String get no_subtite_warning_message => 'No tiene efecto porque no hay pistas de subtítulos en este video';
|
||||
String get no_subtite_warning_message =>
|
||||
'No tiene efecto porque no hay pistas de subtítulos en este video';
|
||||
|
||||
@override
|
||||
String get grid_size => 'Tamaño de la cuadrícula';
|
||||
|
|
@ -2734,10 +2821,12 @@ class AppLocalizationsEs419 extends AppLocalizationsEs {
|
|||
String get use_libass => 'Habilitar libass';
|
||||
|
||||
@override
|
||||
String get use_libass_info => 'Usar renderizado de subtítulos basado en libass para el backend nativo.';
|
||||
String get use_libass_info =>
|
||||
'Usar renderizado de subtítulos basado en libass para el backend nativo.';
|
||||
|
||||
@override
|
||||
String get libass_not_disable_message => 'Deshabilite `usar libass` en la configuración del reproductor para poder personalizar los subtítulos.';
|
||||
String get libass_not_disable_message =>
|
||||
'Deshabilite `usar libass` en la configuración del reproductor para poder personalizar los subtítulos.';
|
||||
|
||||
@override
|
||||
String get torrent_stream => 'Transmisión de torrent';
|
||||
|
|
@ -2746,7 +2835,8 @@ class AppLocalizationsEs419 extends AppLocalizationsEs {
|
|||
String get add_torrent => 'Agregar torrent';
|
||||
|
||||
@override
|
||||
String get enter_torrent_hint_text => 'Ingrese la URL del archivo magnet o torrent';
|
||||
String get enter_torrent_hint_text =>
|
||||
'Ingrese la URL del archivo magnet o torrent';
|
||||
|
||||
@override
|
||||
String get torrent_url => 'URL del torrent';
|
||||
|
|
@ -2761,7 +2851,8 @@ class AppLocalizationsEs419 extends AppLocalizationsEs {
|
|||
String get use_native_http_client => 'Usar cliente HTTP nativo';
|
||||
|
||||
@override
|
||||
String get use_native_http_client_info => 'soporta automáticamente características de la plataforma como VPNs, soporta más características HTTP como HTTP/3 y manejo de redirección personalizado';
|
||||
String get use_native_http_client_info =>
|
||||
'soporta automáticamente características de la plataforma como VPNs, soporta más características HTTP como HTTP/3 y manejo de redirección personalizado';
|
||||
|
||||
@override
|
||||
String n_hour_ago(Object hour) {
|
||||
|
|
@ -2806,13 +2897,15 @@ class AppLocalizationsEs419 extends AppLocalizationsEs {
|
|||
String get storage => 'Almacenamiento';
|
||||
|
||||
@override
|
||||
String get clear_chapter_and_episode_cache => 'Borrar caché de capítulos y episodios';
|
||||
String get clear_chapter_and_episode_cache =>
|
||||
'Borrar caché de capítulos y episodios';
|
||||
|
||||
@override
|
||||
String get cache_cleared => 'Caché borrada';
|
||||
|
||||
@override
|
||||
String get clear_chapter_or_episode_cache_on_app_launch => 'Borrar caché de capítulos/episodios al iniciar la aplicación';
|
||||
String get clear_chapter_or_episode_cache_on_app_launch =>
|
||||
'Borrar caché de capítulos/episodios al iniciar la aplicación';
|
||||
|
||||
@override
|
||||
String get app_settings => 'Configuración de la aplicación';
|
||||
|
|
@ -2821,13 +2914,15 @@ class AppLocalizationsEs419 extends AppLocalizationsEs {
|
|||
String get sources_settings => 'Configuración de fuentes';
|
||||
|
||||
@override
|
||||
String get include_sensitive_settings => 'Incluir configuraciones sensibles (por ejemplo, tokens de inicio de sesión de rastreadores)';
|
||||
String get include_sensitive_settings =>
|
||||
'Incluir configuraciones sensibles (por ejemplo, tokens de inicio de sesión de rastreadores)';
|
||||
|
||||
@override
|
||||
String get create => 'Crear';
|
||||
|
||||
@override
|
||||
String get downloads_are_limited_to_wifi => 'Las descargas están limitadas solo a Wi-Fi';
|
||||
String get downloads_are_limited_to_wifi =>
|
||||
'Las descargas están limitadas solo a Wi-Fi';
|
||||
|
||||
@override
|
||||
String get manga_extensions_repo => 'Repositorio de extensiones de manga';
|
||||
|
|
@ -2842,7 +2937,8 @@ class AppLocalizationsEs419 extends AppLocalizationsEs {
|
|||
String get undefined => 'Indefinido';
|
||||
|
||||
@override
|
||||
String get empty_extensions_repo => 'No tienes ninguna URL de repositorio aquí. ¡Haz clic en el botón más para agregar una!';
|
||||
String get empty_extensions_repo =>
|
||||
'No tienes ninguna URL de repositorio aquí. ¡Haz clic en el botón más para agregar una!';
|
||||
|
||||
@override
|
||||
String get add_extensions_repo => 'Agregar URL del repositorio';
|
||||
|
|
@ -2851,13 +2947,16 @@ class AppLocalizationsEs419 extends AppLocalizationsEs {
|
|||
String get remove_extensions_repo => 'Eliminar URL del repositorio';
|
||||
|
||||
@override
|
||||
String get manage_manga_repo_urls => 'Gestionar URLs del repositorio de manga';
|
||||
String get manage_manga_repo_urls =>
|
||||
'Gestionar URLs del repositorio de manga';
|
||||
|
||||
@override
|
||||
String get manage_anime_repo_urls => 'Gestionar URLs del repositorio de anime';
|
||||
String get manage_anime_repo_urls =>
|
||||
'Gestionar URLs del repositorio de anime';
|
||||
|
||||
@override
|
||||
String get manage_novel_repo_urls => 'Gestionar URLs del repositorio de novelas';
|
||||
String get manage_novel_repo_urls =>
|
||||
'Gestionar URLs del repositorio de novelas';
|
||||
|
||||
@override
|
||||
String get url_cannot_be_empty => 'La URL no puede estar vacía';
|
||||
|
|
@ -2875,7 +2974,8 @@ class AppLocalizationsEs419 extends AppLocalizationsEs {
|
|||
String get clear_all_sources => 'Borrar todas las fuentes';
|
||||
|
||||
@override
|
||||
String get clear_all_sources_msg => 'Esto borrará completamente todas las fuentes de la aplicación. ¿Estás seguro de que deseas continuar?';
|
||||
String get clear_all_sources_msg =>
|
||||
'Esto borrará completamente todas las fuentes de la aplicación. ¿Estás seguro de que deseas continuar?';
|
||||
|
||||
@override
|
||||
String get sources_cleared => '¡Fuentes borradas!';
|
||||
|
|
@ -2899,5 +2999,6 @@ class AppLocalizationsEs419 extends AppLocalizationsEs {
|
|||
String get load_own_subtitles => 'Cargar tus propios subtítulos...';
|
||||
|
||||
@override
|
||||
String get unsupported_repo => 'Has intentado añadir un repositorio no soportado. Por favor, ¡consulta el servidor discord para soporte!';
|
||||
String get unsupported_repo =>
|
||||
'Has intentado añadir un repositorio no soportado. Por favor, ¡consulta el servidor discord para soporte!';
|
||||
}
|
||||
|
|
|
|||
|
|
@ -126,10 +126,12 @@ class AppLocalizationsFr extends AppLocalizations {
|
|||
String get other => 'Autre';
|
||||
|
||||
@override
|
||||
String get show_continue_reading_buttons => 'Afficher le bouton Continuer la lecture';
|
||||
String get show_continue_reading_buttons =>
|
||||
'Afficher le bouton Continuer la lecture';
|
||||
|
||||
@override
|
||||
String get show_continue_watching_buttons => 'Afficher les boutons de reprise';
|
||||
String get show_continue_watching_buttons =>
|
||||
'Afficher les boutons de reprise';
|
||||
|
||||
@override
|
||||
String get empty_library => 'Votre bibliothèque est vide';
|
||||
|
|
@ -144,10 +146,12 @@ class AppLocalizationsFr extends AppLocalizations {
|
|||
String get remove_everything => 'Tout retirer';
|
||||
|
||||
@override
|
||||
String get remove_everything_msg => 'Êtes-vous sûr(e) ? Tout l\'historique sera effacé.';
|
||||
String get remove_everything_msg =>
|
||||
'Êtes-vous sûr(e) ? Tout l\'historique sera effacé.';
|
||||
|
||||
@override
|
||||
String get remove_all_update_msg => 'Êtes-vous sûr ? Toute la mise à jour sera effacée';
|
||||
String get remove_all_update_msg =>
|
||||
'Êtes-vous sûr ? Toute la mise à jour sera effacée';
|
||||
|
||||
@override
|
||||
String get ok => 'OK';
|
||||
|
|
@ -159,7 +163,8 @@ class AppLocalizationsFr extends AppLocalizations {
|
|||
String get remove => 'Supprimer';
|
||||
|
||||
@override
|
||||
String get remove_history_msg => 'Ceci enlèvera la date de lecture de ce chapitre. Êtes-vous sûr(e) ?';
|
||||
String get remove_history_msg =>
|
||||
'Ceci enlèvera la date de lecture de ce chapitre. Êtes-vous sûr(e) ?';
|
||||
|
||||
@override
|
||||
String get last_used => 'Dernière utilisée';
|
||||
|
|
@ -197,7 +202,8 @@ class AppLocalizationsFr extends AppLocalizations {
|
|||
}
|
||||
|
||||
@override
|
||||
String get clean_database_desc => 'Cela supprimera tous les éléments qui ne sont pas ajoutés à la bibliothèque !';
|
||||
String get clean_database_desc =>
|
||||
'Cela supprimera tous les éléments qui ne sont pas ajoutés à la bibliothèque !';
|
||||
|
||||
@override
|
||||
String get incognito_mode => 'Mode navigation privée';
|
||||
|
|
@ -230,7 +236,8 @@ class AppLocalizationsFr extends AppLocalizations {
|
|||
String get edit_categories => 'Modifier les catégories';
|
||||
|
||||
@override
|
||||
String get edit_categories_description => 'Vous n\'avez aucune catégorie. Appuyez sur le bouton « + » pour en créer une afin d\'organiser votre bibliothèque.';
|
||||
String get edit_categories_description =>
|
||||
'Vous n\'avez aucune catégorie. Appuyez sur le bouton « + » pour en créer une afin d\'organiser votre bibliothèque.';
|
||||
|
||||
@override
|
||||
String get add => 'Ajouter';
|
||||
|
|
@ -245,7 +252,8 @@ class AppLocalizationsFr extends AppLocalizations {
|
|||
String get category_name_required => '*obligatoire';
|
||||
|
||||
@override
|
||||
String get add_category_error_exist => 'Une catégorie avec ce nom existe déjà !';
|
||||
String get add_category_error_exist =>
|
||||
'Une catégorie avec ce nom existe déjà !';
|
||||
|
||||
@override
|
||||
String get delete_category => 'Effacer catégorie';
|
||||
|
|
@ -340,7 +348,8 @@ class AppLocalizationsFr extends AppLocalizations {
|
|||
String get reading_mode_webtoon => 'Webtoon';
|
||||
|
||||
@override
|
||||
String get double_tap_animation_speed => 'Vitesse d\'animation du double-clic';
|
||||
String get double_tap_animation_speed =>
|
||||
'Vitesse d\'animation du double-clic';
|
||||
|
||||
@override
|
||||
String get normal => 'Normale';
|
||||
|
|
@ -382,16 +391,19 @@ class AppLocalizationsFr extends AppLocalizations {
|
|||
String get browse_subtitle => 'Sources, extensions, recherche globale';
|
||||
|
||||
@override
|
||||
String get only_include_pinned_sources => 'N\'inclure que les sources épinglées';
|
||||
String get only_include_pinned_sources =>
|
||||
'N\'inclure que les sources épinglées';
|
||||
|
||||
@override
|
||||
String get nsfw_sources => 'Contenu +18';
|
||||
|
||||
@override
|
||||
String get nsfw_sources_show => 'Afficher dans les listes de sources et d\'extensions';
|
||||
String get nsfw_sources_show =>
|
||||
'Afficher dans les listes de sources et d\'extensions';
|
||||
|
||||
@override
|
||||
String get nsfw_sources_info => 'Ceci n\'empêche pas les extensions non officielles ou potentiellement mal signalées de diffuser du contenu +18 dans l\'application.';
|
||||
String get nsfw_sources_info =>
|
||||
'Ceci n\'empêche pas les extensions non officielles ou potentiellement mal signalées de diffuser du contenu +18 dans l\'application.';
|
||||
|
||||
@override
|
||||
String get version => 'Version';
|
||||
|
|
@ -638,7 +650,8 @@ class AppLocalizationsFr extends AppLocalizations {
|
|||
String get sync_logged => 'Connexion réussie';
|
||||
|
||||
@override
|
||||
String get syncing_subtitle => 'Synchronisez vos progrès sur plusieurs appareils via un serveur auto-hébergé. Assurez-vous de télécharger d\'abord si c\'est votre première synchronisation ou de télécharger avant d\'utiliser la synchronisation (auto) sur cet appareil !';
|
||||
String get syncing_subtitle =>
|
||||
'Synchronisez vos progrès sur plusieurs appareils via un serveur auto-hébergé. Assurez-vous de télécharger d\'abord si c\'est votre première synchronisation ou de télécharger avant d\'utiliser la synchronisation (auto) sur cet appareil !';
|
||||
|
||||
@override
|
||||
String get last_sync => 'Dernière synchronisation : ';
|
||||
|
|
@ -692,13 +705,16 @@ class AppLocalizationsFr extends AppLocalizations {
|
|||
String get sync_button_download => 'Téléchargement complet';
|
||||
|
||||
@override
|
||||
String get sync_confirm_snapshot => 'Demandez au serveur de créer une copie de sauvegarde distante !';
|
||||
String get sync_confirm_snapshot =>
|
||||
'Demandez au serveur de créer une copie de sauvegarde distante !';
|
||||
|
||||
@override
|
||||
String get sync_confirm_upload => 'Un téléversement complet remplacera entièrement les données distantes par vos données actuelles !';
|
||||
String get sync_confirm_upload =>
|
||||
'Un téléversement complet remplacera entièrement les données distantes par vos données actuelles !';
|
||||
|
||||
@override
|
||||
String get sync_confirm_download => 'Un téléchargement complet remplacera entièrement vos données actuelles par les données distantes !';
|
||||
String get sync_confirm_download =>
|
||||
'Un téléchargement complet remplacera entièrement vos données actuelles par les données distantes !';
|
||||
|
||||
@override
|
||||
String get sync_on => 'Activer la synchronisation';
|
||||
|
|
@ -707,19 +723,24 @@ class AppLocalizationsFr extends AppLocalizations {
|
|||
String get sync_pending_manga => 'Modifications en attente pour les mangas';
|
||||
|
||||
@override
|
||||
String get sync_pending_category => 'Modifications en attente pour les catégories';
|
||||
String get sync_pending_category =>
|
||||
'Modifications en attente pour les catégories';
|
||||
|
||||
@override
|
||||
String get sync_pending_chapter => 'Modifications en attente pour les chapitres';
|
||||
String get sync_pending_chapter =>
|
||||
'Modifications en attente pour les chapitres';
|
||||
|
||||
@override
|
||||
String get sync_pending_history => 'Modifications en attente pour l\'historique';
|
||||
String get sync_pending_history =>
|
||||
'Modifications en attente pour l\'historique';
|
||||
|
||||
@override
|
||||
String get sync_pending_update => 'Modifications en attente pour les mises à jour';
|
||||
String get sync_pending_update =>
|
||||
'Modifications en attente pour les mises à jour';
|
||||
|
||||
@override
|
||||
String get sync_pending_extension => 'Modifications en attente pour les extensions';
|
||||
String get sync_pending_extension =>
|
||||
'Modifications en attente pour les extensions';
|
||||
|
||||
@override
|
||||
String get sync_pending_track => 'Modifications en attente pour le suivi';
|
||||
|
|
@ -737,7 +758,8 @@ class AppLocalizationsFr extends AppLocalizations {
|
|||
String get sync_snapshot_deleted => 'Instantané supprimé !';
|
||||
|
||||
@override
|
||||
String get sync_snapshot_no_data => 'Aucune donnée pour créer un instantané ! Effectuez d\'abord un téléchargement complet !';
|
||||
String get sync_snapshot_no_data =>
|
||||
'Aucune donnée pour créer un instantané ! Effectuez d\'abord un téléchargement complet !';
|
||||
|
||||
@override
|
||||
String get sync_browse_snapshots => 'Parcourir les sauvegardes précédentes';
|
||||
|
|
@ -755,7 +777,8 @@ class AppLocalizationsFr extends AppLocalizations {
|
|||
String get sync_auto => 'Synchronisation automatique';
|
||||
|
||||
@override
|
||||
String get sync_auto_warning => 'La synchronisation automatique est actuellement une fonctionnalité expérimentale !';
|
||||
String get sync_auto_warning =>
|
||||
'La synchronisation automatique est actuellement une fonctionnalité expérimentale !';
|
||||
|
||||
@override
|
||||
String get sync_auto_off => 'Désactivé';
|
||||
|
|
@ -800,13 +823,15 @@ class AppLocalizationsFr extends AppLocalizations {
|
|||
String get reorder_navigation => 'Personnaliser la navigation';
|
||||
|
||||
@override
|
||||
String get reorder_navigation_description => 'Réorganisez et ajustez chaque navigation selon vos besoins.';
|
||||
String get reorder_navigation_description =>
|
||||
'Réorganisez et ajustez chaque navigation selon vos besoins.';
|
||||
|
||||
@override
|
||||
String get full_screen_player => 'Utiliser le mode plein écran';
|
||||
|
||||
@override
|
||||
String get full_screen_player_info => 'Utiliser automatiquement le mode plein écran lors de la lecture d\'une vidéo.';
|
||||
String get full_screen_player_info =>
|
||||
'Utiliser automatiquement le mode plein écran lors de la lecture d\'une vidéo.';
|
||||
|
||||
@override
|
||||
String episode_progress(Object n) {
|
||||
|
|
@ -846,7 +871,8 @@ class AppLocalizationsFr extends AppLocalizations {
|
|||
String get novel => 'Roman';
|
||||
|
||||
@override
|
||||
String get library_no_category_exist => 'Vous n\'avez pas encore de catégories';
|
||||
String get library_no_category_exist =>
|
||||
'Vous n\'avez pas encore de catégories';
|
||||
|
||||
@override
|
||||
String get watching => 'En lecture';
|
||||
|
|
@ -916,7 +942,8 @@ class AppLocalizationsFr extends AppLocalizations {
|
|||
String get page_preload_amount => 'Nombre de page à précharger';
|
||||
|
||||
@override
|
||||
String get page_preload_amount_subtitle => 'Le nombre de pages à précharger pendant la lecture. De plus grandes valeurs rendront la lecture plus fluide au coût d\'un plus grand cache et d\'une plus grande utilisation de données.';
|
||||
String get page_preload_amount_subtitle =>
|
||||
'Le nombre de pages à précharger pendant la lecture. De plus grandes valeurs rendront la lecture plus fluide au coût d\'un plus grand cache et d\'une plus grande utilisation de données.';
|
||||
|
||||
@override
|
||||
String get image_loading_error => 'L\'image n\'a pas pu être chargée';
|
||||
|
|
@ -931,13 +958,15 @@ class AppLocalizationsFr extends AppLocalizations {
|
|||
String get video_subtitle => 'Sous-titre';
|
||||
|
||||
@override
|
||||
String get check_for_extension_updates => 'Vérifier les mise à jour d\'extensions';
|
||||
String get check_for_extension_updates =>
|
||||
'Vérifier les mise à jour d\'extensions';
|
||||
|
||||
@override
|
||||
String get auto_extensions_updates => 'Mises à jour auto des extensions';
|
||||
|
||||
@override
|
||||
String get auto_extensions_updates_subtitle => 'Mettra automatiquement à jour l\'extension lorsqu\'une nouvelle version est disponible.';
|
||||
String get auto_extensions_updates_subtitle =>
|
||||
'Mettra automatiquement à jour l\'extension lorsqu\'une nouvelle version est disponible.';
|
||||
|
||||
@override
|
||||
String get reading_mode => 'Mode de lecture';
|
||||
|
|
@ -1007,13 +1036,15 @@ class AppLocalizationsFr extends AppLocalizations {
|
|||
String get create_backup_dialog_title => 'Que voulez-vous sauvegarder ?';
|
||||
|
||||
@override
|
||||
String get create_backup_subtitle => 'Peut être utilisé pour restaurer la bibliothèque actuelle';
|
||||
String get create_backup_subtitle =>
|
||||
'Peut être utilisé pour restaurer la bibliothèque actuelle';
|
||||
|
||||
@override
|
||||
String get restore_backup => 'Restaurer une sauvegarde';
|
||||
|
||||
@override
|
||||
String get restore_backup_subtitle => 'Restaurer la bibliothèque à partir d\'un fichier de sauvegarde';
|
||||
String get restore_backup_subtitle =>
|
||||
'Restaurer la bibliothèque à partir d\'un fichier de sauvegarde';
|
||||
|
||||
@override
|
||||
String get automatic_backups => 'Sauvegardes automatiques';
|
||||
|
|
@ -1031,10 +1062,12 @@ class AppLocalizationsFr extends AppLocalizations {
|
|||
String get backup_options_dialog_title => 'Que voulez-vous sauvegarder ?';
|
||||
|
||||
@override
|
||||
String get backup_options_subtitle => 'Quelle information inclure dans le fichier de sauvegarde';
|
||||
String get backup_options_subtitle =>
|
||||
'Quelle information inclure dans le fichier de sauvegarde';
|
||||
|
||||
@override
|
||||
String get backup_and_restore_warning_info => 'Vous devez égalemement conserver des copies des sauvegardes à d\'atures endroits';
|
||||
String get backup_and_restore_warning_info =>
|
||||
'Vous devez égalemement conserver des copies des sauvegardes à d\'atures endroits';
|
||||
|
||||
@override
|
||||
String get library_entries => 'Entrées de la bibliothèque';
|
||||
|
|
@ -1058,13 +1091,15 @@ class AppLocalizationsFr extends AppLocalizations {
|
|||
String get weekly => 'Chaque semaine';
|
||||
|
||||
@override
|
||||
String get restore_backup_warning_title => 'La restauration d\'une sauvegarde écrasera toutes les données existantes.\n\nContinuer la restauration ?';
|
||||
String get restore_backup_warning_title =>
|
||||
'La restauration d\'une sauvegarde écrasera toutes les données existantes.\n\nContinuer la restauration ?';
|
||||
|
||||
@override
|
||||
String get services => 'Services';
|
||||
|
||||
@override
|
||||
String get tracking_warning_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 boutton de suivi.';
|
||||
String get tracking_warning_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 boutton de suivi.';
|
||||
|
||||
@override
|
||||
String get use_page_tap_zones => 'Utiliser les zones tactiles';
|
||||
|
|
@ -1097,16 +1132,20 @@ class AppLocalizationsFr extends AppLocalizations {
|
|||
String get player => 'Lecteur';
|
||||
|
||||
@override
|
||||
String get markEpisodeAsSeenSetting => 'À quel moment marquer l\'épisode comme vu';
|
||||
String get markEpisodeAsSeenSetting =>
|
||||
'À quel moment marquer l\'épisode comme vu';
|
||||
|
||||
@override
|
||||
String get default_skip_intro_length => 'Longueur par défaut du passage de l\'intro';
|
||||
String get default_skip_intro_length =>
|
||||
'Longueur par défaut du passage de l\'intro';
|
||||
|
||||
@override
|
||||
String get default_playback_speed_length => 'Longueur par défaut de la vitesse de lecture';
|
||||
String get default_playback_speed_length =>
|
||||
'Longueur par défaut de la vitesse de lecture';
|
||||
|
||||
@override
|
||||
String get updateProgressAfterReading => 'Synchroniser la progression après lecture';
|
||||
String get updateProgressAfterReading =>
|
||||
'Synchroniser la progression après lecture';
|
||||
|
||||
@override
|
||||
String get no_sources_installed => 'Aucune source installée !';
|
||||
|
|
@ -1118,7 +1157,8 @@ class AppLocalizationsFr extends AppLocalizations {
|
|||
String get default_skip_forward_skip_length => 'Longueur de saut par défaut';
|
||||
|
||||
@override
|
||||
String get aniskip_requires_info => 'AniSkip nécessite que l\'anime soit suivi sur MAL ou Anilist pour fonctionner.';
|
||||
String get aniskip_requires_info =>
|
||||
'AniSkip nécessite que l\'anime soit suivi sur MAL ou Anilist pour fonctionner.';
|
||||
|
||||
@override
|
||||
String get enable_aniskip => 'Activer AniSkip';
|
||||
|
|
@ -1183,7 +1223,8 @@ class AppLocalizationsFr extends AppLocalizations {
|
|||
String get set_as_cover => 'Définir comme couverture';
|
||||
|
||||
@override
|
||||
String get use_this_as_cover_art => 'Utiliser ceci comme illustration de couverture ?';
|
||||
String get use_this_as_cover_art =>
|
||||
'Utiliser ceci comme illustration de couverture ?';
|
||||
|
||||
@override
|
||||
String get save => 'Enregistrer';
|
||||
|
|
@ -1267,7 +1308,8 @@ class AppLocalizationsFr extends AppLocalizations {
|
|||
String get background => 'Arrière-plan';
|
||||
|
||||
@override
|
||||
String get no_subtite_warning_message => 'N\'a aucun effet car il n\'y a pas de pistes de sous-titres dans cette vidéo';
|
||||
String get no_subtite_warning_message =>
|
||||
'N\'a aucun effet car il n\'y a pas de pistes de sous-titres dans cette vidéo';
|
||||
|
||||
@override
|
||||
String get grid_size => 'Taille de la grille';
|
||||
|
|
@ -1287,10 +1329,12 @@ class AppLocalizationsFr extends AppLocalizations {
|
|||
String get use_libass => 'Activer libass';
|
||||
|
||||
@override
|
||||
String get use_libass_info => 'Utilisez le rendu des sous-titres basé sur libass pour le backend natif.';
|
||||
String get use_libass_info =>
|
||||
'Utilisez le rendu des sous-titres basé sur libass pour le backend natif.';
|
||||
|
||||
@override
|
||||
String get libass_not_disable_message => 'Désactivez `use libass` dans les paramètres du lecteur pour pouvoir personnaliser les sous-titres.';
|
||||
String get libass_not_disable_message =>
|
||||
'Désactivez `use libass` dans les paramètres du lecteur pour pouvoir personnaliser les sous-titres.';
|
||||
|
||||
@override
|
||||
String get torrent_stream => 'Flux Torrent';
|
||||
|
|
@ -1299,7 +1343,8 @@ class AppLocalizationsFr extends AppLocalizations {
|
|||
String get add_torrent => 'Ajouter un torrent';
|
||||
|
||||
@override
|
||||
String get enter_torrent_hint_text => 'Entrez l\'URL du fichier magnet ou torrent';
|
||||
String get enter_torrent_hint_text =>
|
||||
'Entrez l\'URL du fichier magnet ou torrent';
|
||||
|
||||
@override
|
||||
String get torrent_url => 'URL du torrent';
|
||||
|
|
@ -1314,7 +1359,8 @@ class AppLocalizationsFr extends AppLocalizations {
|
|||
String get use_native_http_client => 'Utiliser le client HTTP natif';
|
||||
|
||||
@override
|
||||
String get use_native_http_client_info => 'Il supporte automatiquement les fonctionnalités de la plateforme telles que les VPN, et prend en charge plus de fonctionnalités HTTP telles que HTTP/3 et la gestion personnalisée des redirections.';
|
||||
String get use_native_http_client_info =>
|
||||
'Il supporte automatiquement les fonctionnalités de la plateforme telles que les VPN, et prend en charge plus de fonctionnalités HTTP telles que HTTP/3 et la gestion personnalisée des redirections.';
|
||||
|
||||
@override
|
||||
String n_hour_ago(Object hour) {
|
||||
|
|
@ -1353,19 +1399,22 @@ class AppLocalizationsFr extends AppLocalizations {
|
|||
String get data_and_storage => 'Données et stockage';
|
||||
|
||||
@override
|
||||
String get download_location_info => 'Utilisé pour les téléchargements de chapitres';
|
||||
String get download_location_info =>
|
||||
'Utilisé pour les téléchargements de chapitres';
|
||||
|
||||
@override
|
||||
String get storage => 'Stockage';
|
||||
|
||||
@override
|
||||
String get clear_chapter_and_episode_cache => 'Effacer le cache des chapitres et épisodes';
|
||||
String get clear_chapter_and_episode_cache =>
|
||||
'Effacer le cache des chapitres et épisodes';
|
||||
|
||||
@override
|
||||
String get cache_cleared => 'Cache effacé';
|
||||
|
||||
@override
|
||||
String get clear_chapter_or_episode_cache_on_app_launch => 'Effacer le cache des chapitres/épisodes au lancement de l\'application';
|
||||
String get clear_chapter_or_episode_cache_on_app_launch =>
|
||||
'Effacer le cache des chapitres/épisodes au lancement de l\'application';
|
||||
|
||||
@override
|
||||
String get app_settings => 'Paramètres de l\'application';
|
||||
|
|
@ -1374,13 +1423,15 @@ class AppLocalizationsFr extends AppLocalizations {
|
|||
String get sources_settings => 'Paramètres des sources';
|
||||
|
||||
@override
|
||||
String get include_sensitive_settings => 'Inclure les paramètres sensibles (par ex., jetons de connexion des traceurs)';
|
||||
String get include_sensitive_settings =>
|
||||
'Inclure les paramètres sensibles (par ex., jetons de connexion des traceurs)';
|
||||
|
||||
@override
|
||||
String get create => 'Créer';
|
||||
|
||||
@override
|
||||
String get downloads_are_limited_to_wifi => 'Les téléchargements sont limités au Wi-Fi uniquement';
|
||||
String get downloads_are_limited_to_wifi =>
|
||||
'Les téléchargements sont limités au Wi-Fi uniquement';
|
||||
|
||||
@override
|
||||
String get manga_extensions_repo => 'Dépôt d\'extensions de mangas';
|
||||
|
|
@ -1395,7 +1446,8 @@ class AppLocalizationsFr extends AppLocalizations {
|
|||
String get undefined => 'Indéfini';
|
||||
|
||||
@override
|
||||
String get empty_extensions_repo => 'Vous n\'avez aucune URL de dépôt ici. Cliquez sur le bouton plus pour en ajouter une !';
|
||||
String get empty_extensions_repo =>
|
||||
'Vous n\'avez aucune URL de dépôt ici. Cliquez sur le bouton plus pour en ajouter une !';
|
||||
|
||||
@override
|
||||
String get add_extensions_repo => 'Ajouter une URL de dépôt';
|
||||
|
|
@ -1428,7 +1480,8 @@ class AppLocalizationsFr extends AppLocalizations {
|
|||
String get clear_all_sources => 'Effacer toutes les sources';
|
||||
|
||||
@override
|
||||
String get clear_all_sources_msg => 'Cela effacera complètement toutes les sources de l\'application. Êtes-vous sûr de vouloir continuer ?';
|
||||
String get clear_all_sources_msg =>
|
||||
'Cela effacera complètement toutes les sources de l\'application. Êtes-vous sûr de vouloir continuer ?';
|
||||
|
||||
@override
|
||||
String get sources_cleared => 'Sources effacées !';
|
||||
|
|
@ -1457,5 +1510,6 @@ class AppLocalizationsFr extends AppLocalizations {
|
|||
}
|
||||
|
||||
@override
|
||||
String get unsupported_repo => 'Vous avez essayé d\'ajouter un dépôt qui n\'est pas pris en charge. Veuillez consulter le serveur discord pour obtenir de l\'aide!';
|
||||
String get unsupported_repo =>
|
||||
'Vous avez essayé d\'ajouter un dépôt qui n\'est pas pris en charge. Veuillez consulter le serveur discord pour obtenir de l\'aide!';
|
||||
}
|
||||
|
|
|
|||
|
|
@ -126,10 +126,12 @@ class AppLocalizationsId extends AppLocalizations {
|
|||
String get other => 'Lainnya';
|
||||
|
||||
@override
|
||||
String get show_continue_reading_buttons => 'Tampilkan Tombol Lanjutkan Membaca';
|
||||
String get show_continue_reading_buttons =>
|
||||
'Tampilkan Tombol Lanjutkan Membaca';
|
||||
|
||||
@override
|
||||
String get show_continue_watching_buttons => 'Tampilkan tombol lanjut menonton';
|
||||
String get show_continue_watching_buttons =>
|
||||
'Tampilkan tombol lanjut menonton';
|
||||
|
||||
@override
|
||||
String get empty_library => 'Perpustakaan Kosong';
|
||||
|
|
@ -144,10 +146,12 @@ class AppLocalizationsId extends AppLocalizations {
|
|||
String get remove_everything => 'Hapus Semua';
|
||||
|
||||
@override
|
||||
String get remove_everything_msg => 'Apakah Anda yakin? Semua riwayat akan hilang';
|
||||
String get remove_everything_msg =>
|
||||
'Apakah Anda yakin? Semua riwayat akan hilang';
|
||||
|
||||
@override
|
||||
String get remove_all_update_msg => 'Apakah Anda yakin? Seluruh pembaruan akan dihapus';
|
||||
String get remove_all_update_msg =>
|
||||
'Apakah Anda yakin? Seluruh pembaruan akan dihapus';
|
||||
|
||||
@override
|
||||
String get ok => 'Baik';
|
||||
|
|
@ -159,7 +163,8 @@ class AppLocalizationsId extends AppLocalizations {
|
|||
String get remove => 'Hapus';
|
||||
|
||||
@override
|
||||
String get remove_history_msg => 'Riwayat bacaan untuk bab ini akan dihapus. Apakah Anda yakin?';
|
||||
String get remove_history_msg =>
|
||||
'Riwayat bacaan untuk bab ini akan dihapus. Apakah Anda yakin?';
|
||||
|
||||
@override
|
||||
String get last_used => 'Terakhir Digunakan';
|
||||
|
|
@ -197,7 +202,8 @@ class AppLocalizationsId extends AppLocalizations {
|
|||
}
|
||||
|
||||
@override
|
||||
String get clean_database_desc => 'Ini akan menghapus semua item yang tidak ditambahkan ke perpustakaan!';
|
||||
String get clean_database_desc =>
|
||||
'Ini akan menghapus semua item yang tidak ditambahkan ke perpustakaan!';
|
||||
|
||||
@override
|
||||
String get incognito_mode => 'Mode Incognito';
|
||||
|
|
@ -230,7 +236,8 @@ class AppLocalizationsId extends AppLocalizations {
|
|||
String get edit_categories => 'Edit Kategori';
|
||||
|
||||
@override
|
||||
String get edit_categories_description => 'Anda belum memiliki kategori. Tekan tombol tambah untuk membuat satu dan mengatur perpustakaan Anda';
|
||||
String get edit_categories_description =>
|
||||
'Anda belum memiliki kategori. Tekan tombol tambah untuk membuat satu dan mengatur perpustakaan Anda';
|
||||
|
||||
@override
|
||||
String get add => 'Tambah';
|
||||
|
|
@ -304,7 +311,8 @@ class AppLocalizationsId extends AppLocalizations {
|
|||
String get relative_timestamp_short => 'Singkat (Hari Ini, Kemarin)';
|
||||
|
||||
@override
|
||||
String get relative_timestamp_long => 'Panjang (Singkat+, Beberapa Hari Lalu)';
|
||||
String get relative_timestamp_long =>
|
||||
'Panjang (Singkat+, Beberapa Hari Lalu)';
|
||||
|
||||
@override
|
||||
String get date_format => 'Format Tanggal';
|
||||
|
|
@ -382,7 +390,8 @@ class AppLocalizationsId extends AppLocalizations {
|
|||
String get browse_subtitle => 'Sumber, Pencarian Umum';
|
||||
|
||||
@override
|
||||
String get only_include_pinned_sources => 'Hanya Sertakan Sumber yang Ditandai';
|
||||
String get only_include_pinned_sources =>
|
||||
'Hanya Sertakan Sumber yang Ditandai';
|
||||
|
||||
@override
|
||||
String get nsfw_sources => 'Sumber NSFW (+18)';
|
||||
|
|
@ -391,7 +400,8 @@ class AppLocalizationsId extends AppLocalizations {
|
|||
String get nsfw_sources_show => 'Tampilkan di Daftar Sumber dan Ekstensi';
|
||||
|
||||
@override
|
||||
String get nsfw_sources_info => 'Ini tidak menghentikan ekstensi tidak resmi atau yang salah klasifikasi dari menampilkan konten NSFW (18+) dalam aplikasi';
|
||||
String get nsfw_sources_info =>
|
||||
'Ini tidak menghentikan ekstensi tidak resmi atau yang salah klasifikasi dari menampilkan konten NSFW (18+) dalam aplikasi';
|
||||
|
||||
@override
|
||||
String get version => 'Versi';
|
||||
|
|
@ -638,7 +648,8 @@ class AppLocalizationsId extends AppLocalizations {
|
|||
String get sync_logged => 'Berhasil masuk';
|
||||
|
||||
@override
|
||||
String get syncing_subtitle => 'Sinkronkan progres Anda di beberapa perangkat melalui server \nself-hosted. Pastikan untuk mengunggah terlebih dahulu jika ini \nadalah pertama kalinya Anda menyinkronkan, atau unduh sebelum menggunakan sinkronisasi (otomatis) di perangkat ini!';
|
||||
String get syncing_subtitle =>
|
||||
'Sinkronkan progres Anda di beberapa perangkat melalui server \nself-hosted. Pastikan untuk mengunggah terlebih dahulu jika ini \nadalah pertama kalinya Anda menyinkronkan, atau unduh sebelum menggunakan sinkronisasi (otomatis) di perangkat ini!';
|
||||
|
||||
@override
|
||||
String get last_sync => 'Sinkronisasi terakhir pada: ';
|
||||
|
|
@ -692,13 +703,16 @@ class AppLocalizationsId extends AppLocalizations {
|
|||
String get sync_button_download => 'Unduh penuh';
|
||||
|
||||
@override
|
||||
String get sync_confirm_snapshot => 'Minta server untuk membuat salinan cadangan jarak jauh!';
|
||||
String get sync_confirm_snapshot =>
|
||||
'Minta server untuk membuat salinan cadangan jarak jauh!';
|
||||
|
||||
@override
|
||||
String get sync_confirm_upload => 'Unggahan penuh akan sepenuhnya menggantikan data jarak jauh dengan data Anda saat ini!';
|
||||
String get sync_confirm_upload =>
|
||||
'Unggahan penuh akan sepenuhnya menggantikan data jarak jauh dengan data Anda saat ini!';
|
||||
|
||||
@override
|
||||
String get sync_confirm_download => 'Unduhan penuh akan sepenuhnya menggantikan data Anda saat ini dengan data jarak jauh!';
|
||||
String get sync_confirm_download =>
|
||||
'Unduhan penuh akan sepenuhnya menggantikan data Anda saat ini dengan data jarak jauh!';
|
||||
|
||||
@override
|
||||
String get sync_on => 'Aktifkan sinkronisasi';
|
||||
|
|
@ -737,7 +751,8 @@ class AppLocalizationsId extends AppLocalizations {
|
|||
String get sync_snapshot_deleted => 'Snapshot dihapus!';
|
||||
|
||||
@override
|
||||
String get sync_snapshot_no_data => 'Tidak ada data untuk membuat snapshot! Lakukan unggahan penuh terlebih dahulu!';
|
||||
String get sync_snapshot_no_data =>
|
||||
'Tidak ada data untuk membuat snapshot! Lakukan unggahan penuh terlebih dahulu!';
|
||||
|
||||
@override
|
||||
String get sync_browse_snapshots => 'Jelajahi cadangan lama';
|
||||
|
|
@ -755,7 +770,8 @@ class AppLocalizationsId extends AppLocalizations {
|
|||
String get sync_auto => 'Sinkronisasi otomatis';
|
||||
|
||||
@override
|
||||
String get sync_auto_warning => 'Sinkronisasi otomatis saat ini adalah fitur eksperimental!';
|
||||
String get sync_auto_warning =>
|
||||
'Sinkronisasi otomatis saat ini adalah fitur eksperimental!';
|
||||
|
||||
@override
|
||||
String get sync_auto_off => 'Mati';
|
||||
|
|
@ -800,13 +816,15 @@ class AppLocalizationsId extends AppLocalizations {
|
|||
String get reorder_navigation => 'Sesuaikan navigasi';
|
||||
|
||||
@override
|
||||
String get reorder_navigation_description => 'Atur ulang dan sesuaikan setiap navigasi sesuai kebutuhan Anda.';
|
||||
String get reorder_navigation_description =>
|
||||
'Atur ulang dan sesuaikan setiap navigasi sesuai kebutuhan Anda.';
|
||||
|
||||
@override
|
||||
String get full_screen_player => 'Gunakan Layar Penuh';
|
||||
|
||||
@override
|
||||
String get full_screen_player_info => 'Otomatis gunakan layar penuh saat memutar video.';
|
||||
String get full_screen_player_info =>
|
||||
'Otomatis gunakan layar penuh saat memutar video.';
|
||||
|
||||
@override
|
||||
String episode_progress(Object n) {
|
||||
|
|
@ -916,7 +934,8 @@ class AppLocalizationsId extends AppLocalizations {
|
|||
String get page_preload_amount => 'Jumlah pramuat halaman';
|
||||
|
||||
@override
|
||||
String get page_preload_amount_subtitle => 'Jumlah halaman yang akan dimuat sebelumnya saat membaca. Nilai yang lebih tinggi akan menghasilkan pengalaman membaca yang lebih lancar, dengan biaya penggunaan cache dan jaringan yang lebih tinggi.';
|
||||
String get page_preload_amount_subtitle =>
|
||||
'Jumlah halaman yang akan dimuat sebelumnya saat membaca. Nilai yang lebih tinggi akan menghasilkan pengalaman membaca yang lebih lancar, dengan biaya penggunaan cache dan jaringan yang lebih tinggi.';
|
||||
|
||||
@override
|
||||
String get image_loading_error => 'Gambar ini tidak dapat dimuat';
|
||||
|
|
@ -937,7 +956,8 @@ class AppLocalizationsId extends AppLocalizations {
|
|||
String get auto_extensions_updates => 'Pembaruan ekstensi otomatis';
|
||||
|
||||
@override
|
||||
String get auto_extensions_updates_subtitle => 'Akan secara otomatis memperbarui ekstensi ketika versi baru tersedia.';
|
||||
String get auto_extensions_updates_subtitle =>
|
||||
'Akan secara otomatis memperbarui ekstensi ketika versi baru tersedia.';
|
||||
|
||||
@override
|
||||
String get reading_mode => 'Mode membaca';
|
||||
|
|
@ -1007,13 +1027,15 @@ class AppLocalizationsId extends AppLocalizations {
|
|||
String get create_backup_dialog_title => 'Apa yang ingin Anda cadangkan?';
|
||||
|
||||
@override
|
||||
String get create_backup_subtitle => 'Dapat digunakan untuk memulihkan perpustakaan saat ini';
|
||||
String get create_backup_subtitle =>
|
||||
'Dapat digunakan untuk memulihkan perpustakaan saat ini';
|
||||
|
||||
@override
|
||||
String get restore_backup => 'Pulihkan cadangan';
|
||||
|
||||
@override
|
||||
String get restore_backup_subtitle => 'Pulihkan perpustakaan dari berkas cadangan';
|
||||
String get restore_backup_subtitle =>
|
||||
'Pulihkan perpustakaan dari berkas cadangan';
|
||||
|
||||
@override
|
||||
String get automatic_backups => 'Cadangan otomatis';
|
||||
|
|
@ -1031,10 +1053,12 @@ class AppLocalizationsId extends AppLocalizations {
|
|||
String get backup_options_dialog_title => 'Apa yang ingin Anda cadangkan?';
|
||||
|
||||
@override
|
||||
String get backup_options_subtitle => 'Informasi apa yang akan disertakan dalam berkas cadangan';
|
||||
String get backup_options_subtitle =>
|
||||
'Informasi apa yang akan disertakan dalam berkas cadangan';
|
||||
|
||||
@override
|
||||
String get backup_and_restore_warning_info => 'Anda harus menyimpan salinan cadangan di tempat lain juga';
|
||||
String get backup_and_restore_warning_info =>
|
||||
'Anda harus menyimpan salinan cadangan di tempat lain juga';
|
||||
|
||||
@override
|
||||
String get library_entries => 'Entri perpustakaan';
|
||||
|
|
@ -1058,13 +1082,15 @@ class AppLocalizationsId extends AppLocalizations {
|
|||
String get weekly => 'Mingguan';
|
||||
|
||||
@override
|
||||
String get restore_backup_warning_title => 'Memulihkan cadangan akan menimpa semua data yang ada.\n\nLanjutkan pemulihan?';
|
||||
String get restore_backup_warning_title =>
|
||||
'Memulihkan cadangan akan menimpa semua data yang ada.\n\nLanjutkan pemulihan?';
|
||||
|
||||
@override
|
||||
String get services => 'Layanan';
|
||||
|
||||
@override
|
||||
String get tracking_warning_info => 'Sinkronisasi satu arah untuk memperbarui kemajuan bab dalam layanan pelacakan. Atur pelacakan untuk entri individu dari tombol pelacakannya.';
|
||||
String get tracking_warning_info =>
|
||||
'Sinkronisasi satu arah untuk memperbarui kemajuan bab dalam layanan pelacakan. Atur pelacakan untuk entri individu dari tombol pelacakannya.';
|
||||
|
||||
@override
|
||||
String get use_page_tap_zones => 'Gunakan zona ketukan halaman';
|
||||
|
|
@ -1097,13 +1123,15 @@ class AppLocalizationsId extends AppLocalizations {
|
|||
String get player => 'Pemain';
|
||||
|
||||
@override
|
||||
String get markEpisodeAsSeenSetting => 'Pada titik mana menandai episode sebagai terlihat';
|
||||
String get markEpisodeAsSeenSetting =>
|
||||
'Pada titik mana menandai episode sebagai terlihat';
|
||||
|
||||
@override
|
||||
String get default_skip_intro_length => 'Panjang lewati intro default';
|
||||
|
||||
@override
|
||||
String get default_playback_speed_length => 'Panjang kecepatan pemutaran default';
|
||||
String get default_playback_speed_length =>
|
||||
'Panjang kecepatan pemutaran default';
|
||||
|
||||
@override
|
||||
String get updateProgressAfterReading => 'Perbarui kemajuan setelah membaca';
|
||||
|
|
@ -1115,10 +1143,12 @@ class AppLocalizationsId extends AppLocalizations {
|
|||
String get show_extensions => 'Tampilkan ekstensi';
|
||||
|
||||
@override
|
||||
String get default_skip_forward_skip_length => 'Panjang lompatan maju default';
|
||||
String get default_skip_forward_skip_length =>
|
||||
'Panjang lompatan maju default';
|
||||
|
||||
@override
|
||||
String get aniskip_requires_info => 'AniSkip memerlukan informasi anime dilacak dengan MAL atau Anilist untuk berfungsi.';
|
||||
String get aniskip_requires_info =>
|
||||
'AniSkip memerlukan informasi anime dilacak dengan MAL atau Anilist untuk berfungsi.';
|
||||
|
||||
@override
|
||||
String get enable_aniskip => 'Aktifkan AniSkip';
|
||||
|
|
@ -1267,7 +1297,8 @@ class AppLocalizationsId extends AppLocalizations {
|
|||
String get background => 'Latar Belakang';
|
||||
|
||||
@override
|
||||
String get no_subtite_warning_message => 'Tidak berpengaruh karena tidak ada trek subtitle dalam video ini';
|
||||
String get no_subtite_warning_message =>
|
||||
'Tidak berpengaruh karena tidak ada trek subtitle dalam video ini';
|
||||
|
||||
@override
|
||||
String get grid_size => 'Ukuran Grid';
|
||||
|
|
@ -1287,10 +1318,12 @@ class AppLocalizationsId extends AppLocalizations {
|
|||
String get use_libass => 'Aktifkan libass';
|
||||
|
||||
@override
|
||||
String get use_libass_info => 'Gunakan rendering subtitle berbasis libass untuk backend asli.';
|
||||
String get use_libass_info =>
|
||||
'Gunakan rendering subtitle berbasis libass untuk backend asli.';
|
||||
|
||||
@override
|
||||
String get libass_not_disable_message => 'Nonaktifkan `gunakan libass` di pengaturan pemutar untuk dapat menyesuaikan subtitle.';
|
||||
String get libass_not_disable_message =>
|
||||
'Nonaktifkan `gunakan libass` di pengaturan pemutar untuk dapat menyesuaikan subtitle.';
|
||||
|
||||
@override
|
||||
String get torrent_stream => 'Aliran Torrent';
|
||||
|
|
@ -1314,7 +1347,8 @@ class AppLocalizationsId extends AppLocalizations {
|
|||
String get use_native_http_client => 'Gunakan klien http asli';
|
||||
|
||||
@override
|
||||
String get use_native_http_client_info => 'secara otomatis mendukung fitur platform seperti VPN, mendukung lebih banyak fitur HTTP seperti HTTP/3 dan penanganan pengalihan khusus';
|
||||
String get use_native_http_client_info =>
|
||||
'secara otomatis mendukung fitur platform seperti VPN, mendukung lebih banyak fitur HTTP seperti HTTP/3 dan penanganan pengalihan khusus';
|
||||
|
||||
@override
|
||||
String n_hour_ago(Object hour) {
|
||||
|
|
@ -1365,7 +1399,8 @@ class AppLocalizationsId extends AppLocalizations {
|
|||
String get cache_cleared => 'Cache dihapus';
|
||||
|
||||
@override
|
||||
String get clear_chapter_or_episode_cache_on_app_launch => 'Hapus cache bab/episode saat aplikasi dibuka';
|
||||
String get clear_chapter_or_episode_cache_on_app_launch =>
|
||||
'Hapus cache bab/episode saat aplikasi dibuka';
|
||||
|
||||
@override
|
||||
String get app_settings => 'Pengaturan aplikasi';
|
||||
|
|
@ -1374,13 +1409,15 @@ class AppLocalizationsId extends AppLocalizations {
|
|||
String get sources_settings => 'Pengaturan sumber';
|
||||
|
||||
@override
|
||||
String get include_sensitive_settings => 'Sertakan pengaturan sensitif (misalnya, token login pelacak)';
|
||||
String get include_sensitive_settings =>
|
||||
'Sertakan pengaturan sensitif (misalnya, token login pelacak)';
|
||||
|
||||
@override
|
||||
String get create => 'Buat';
|
||||
|
||||
@override
|
||||
String get downloads_are_limited_to_wifi => 'Unduhan dibatasi hanya untuk Wi-Fi';
|
||||
String get downloads_are_limited_to_wifi =>
|
||||
'Unduhan dibatasi hanya untuk Wi-Fi';
|
||||
|
||||
@override
|
||||
String get manga_extensions_repo => 'Repositori ekstensi manga';
|
||||
|
|
@ -1395,7 +1432,8 @@ class AppLocalizationsId extends AppLocalizations {
|
|||
String get undefined => 'Tidak terdefinisi';
|
||||
|
||||
@override
|
||||
String get empty_extensions_repo => 'Anda tidak memiliki URL repositori di sini. Klik tombol tambah untuk menambahkan satu!';
|
||||
String get empty_extensions_repo =>
|
||||
'Anda tidak memiliki URL repositori di sini. Klik tombol tambah untuk menambahkan satu!';
|
||||
|
||||
@override
|
||||
String get add_extensions_repo => 'Tambahkan URL repositori';
|
||||
|
|
@ -1428,7 +1466,8 @@ class AppLocalizationsId extends AppLocalizations {
|
|||
String get clear_all_sources => 'Hapus semua sumber';
|
||||
|
||||
@override
|
||||
String get clear_all_sources_msg => 'Ini akan sepenuhnya menghapus semua sumber dari aplikasi. Apakah Anda yakin ingin melanjutkan?';
|
||||
String get clear_all_sources_msg =>
|
||||
'Ini akan sepenuhnya menghapus semua sumber dari aplikasi. Apakah Anda yakin ingin melanjutkan?';
|
||||
|
||||
@override
|
||||
String get sources_cleared => 'Sumber dihapus!';
|
||||
|
|
@ -1457,5 +1496,6 @@ class AppLocalizationsId extends AppLocalizations {
|
|||
}
|
||||
|
||||
@override
|
||||
String get unsupported_repo => 'Anda telah mencoba menambahkan repositori yang tidak didukung. Silakan periksa server discord untuk mendapatkan dukungan!';
|
||||
String get unsupported_repo =>
|
||||
'Anda telah mencoba menambahkan repositori yang tidak didukung. Silakan periksa server discord untuk mendapatkan dukungan!';
|
||||
}
|
||||
|
|
|
|||
|
|
@ -126,10 +126,12 @@ class AppLocalizationsIt extends AppLocalizations {
|
|||
String get other => 'Altro';
|
||||
|
||||
@override
|
||||
String get show_continue_reading_buttons => 'Mostra pulsanti di lettura continua';
|
||||
String get show_continue_reading_buttons =>
|
||||
'Mostra pulsanti di lettura continua';
|
||||
|
||||
@override
|
||||
String get show_continue_watching_buttons => 'Mostra pulsanti continua a guardare';
|
||||
String get show_continue_watching_buttons =>
|
||||
'Mostra pulsanti continua a guardare';
|
||||
|
||||
@override
|
||||
String get empty_library => 'Biblioteca vuota';
|
||||
|
|
@ -144,10 +146,12 @@ class AppLocalizationsIt extends AppLocalizations {
|
|||
String get remove_everything => 'Rimuovi tutto';
|
||||
|
||||
@override
|
||||
String get remove_everything_msg => 'Sei sicuro? Tutta la cronologia sarà persa';
|
||||
String get remove_everything_msg =>
|
||||
'Sei sicuro? Tutta la cronologia sarà persa';
|
||||
|
||||
@override
|
||||
String get remove_all_update_msg => 'Sei sicuro? L\'intero aggiornamento verrà eliminato';
|
||||
String get remove_all_update_msg =>
|
||||
'Sei sicuro? L\'intero aggiornamento verrà eliminato';
|
||||
|
||||
@override
|
||||
String get ok => 'OK';
|
||||
|
|
@ -159,7 +163,8 @@ class AppLocalizationsIt extends AppLocalizations {
|
|||
String get remove => 'Rimuovi';
|
||||
|
||||
@override
|
||||
String get remove_history_msg => 'Questo rimuoverà la data di lettura di questo capitolo. Sei sicuro?';
|
||||
String get remove_history_msg =>
|
||||
'Questo rimuoverà la data di lettura di questo capitolo. Sei sicuro?';
|
||||
|
||||
@override
|
||||
String get last_used => 'Ultimo usato';
|
||||
|
|
@ -197,7 +202,8 @@ class AppLocalizationsIt extends AppLocalizations {
|
|||
}
|
||||
|
||||
@override
|
||||
String get clean_database_desc => 'Questo eliminerà tutti gli elementi che non sono stati aggiunti alla libreria!';
|
||||
String get clean_database_desc =>
|
||||
'Questo eliminerà tutti gli elementi che non sono stati aggiunti alla libreria!';
|
||||
|
||||
@override
|
||||
String get incognito_mode => 'Modalità Incognito';
|
||||
|
|
@ -230,7 +236,8 @@ class AppLocalizationsIt extends AppLocalizations {
|
|||
String get edit_categories => 'Modifica categorie';
|
||||
|
||||
@override
|
||||
String get edit_categories_description => 'Non hai categorie. Tocca il pulsante più per crearne una per organizzare la tua biblioteca';
|
||||
String get edit_categories_description =>
|
||||
'Non hai categorie. Tocca il pulsante più per crearne una per organizzare la tua biblioteca';
|
||||
|
||||
@override
|
||||
String get add => 'Aggiungi';
|
||||
|
|
@ -245,7 +252,8 @@ class AppLocalizationsIt extends AppLocalizations {
|
|||
String get category_name_required => '*Richiesto';
|
||||
|
||||
@override
|
||||
String get add_category_error_exist => 'Una categoria con questo nome esiste già!';
|
||||
String get add_category_error_exist =>
|
||||
'Una categoria con questo nome esiste già!';
|
||||
|
||||
@override
|
||||
String get delete_category => 'Elimina categoria';
|
||||
|
|
@ -316,7 +324,8 @@ class AppLocalizationsIt extends AppLocalizations {
|
|||
String get refresh => 'Aggiorna';
|
||||
|
||||
@override
|
||||
String get reader_subtitle => 'Modalità di lettura, visualizzazione, navigazione';
|
||||
String get reader_subtitle =>
|
||||
'Modalità di lettura, visualizzazione, navigazione';
|
||||
|
||||
@override
|
||||
String get default_reading_mode => 'Modalità di lettura predefinita';
|
||||
|
|
@ -391,7 +400,8 @@ class AppLocalizationsIt extends AppLocalizations {
|
|||
String get nsfw_sources_show => 'Mostra nelle liste di fonti ed estensioni';
|
||||
|
||||
@override
|
||||
String get nsfw_sources_info => 'Ciò non impedisce che estensioni non ufficiali o potenzialmente contrassegnate in modo errato mostrino contenuti NSFW (18+) all\'interno dell\'app';
|
||||
String get nsfw_sources_info =>
|
||||
'Ciò non impedisce che estensioni non ufficiali o potenzialmente contrassegnate in modo errato mostrino contenuti NSFW (18+) all\'interno dell\'app';
|
||||
|
||||
@override
|
||||
String get version => 'Versione';
|
||||
|
|
@ -638,7 +648,8 @@ class AppLocalizationsIt extends AppLocalizations {
|
|||
String get sync_logged => 'Accesso riuscito';
|
||||
|
||||
@override
|
||||
String get syncing_subtitle => 'Sincronizza i tuoi progressi su più dispositivi tramite un server \nospitato autonomamente. Assicurati di caricare prima se è la \ntua prima sincronizzazione o di scaricare prima di utilizzare la \nsincronizzazione (automatica) su questo dispositivo!';
|
||||
String get syncing_subtitle =>
|
||||
'Sincronizza i tuoi progressi su più dispositivi tramite un server \nospitato autonomamente. Assicurati di caricare prima se è la \ntua prima sincronizzazione o di scaricare prima di utilizzare la \nsincronizzazione (automatica) su questo dispositivo!';
|
||||
|
||||
@override
|
||||
String get last_sync => 'Ultima sincronizzazione: ';
|
||||
|
|
@ -692,13 +703,16 @@ class AppLocalizationsIt extends AppLocalizations {
|
|||
String get sync_button_download => 'Download completo';
|
||||
|
||||
@override
|
||||
String get sync_confirm_snapshot => 'Richiedi al server di creare un backup remoto!';
|
||||
String get sync_confirm_snapshot =>
|
||||
'Richiedi al server di creare un backup remoto!';
|
||||
|
||||
@override
|
||||
String get sync_confirm_upload => 'Un caricamento completo sostituirà completamente i dati remoti con quelli attuali!';
|
||||
String get sync_confirm_upload =>
|
||||
'Un caricamento completo sostituirà completamente i dati remoti con quelli attuali!';
|
||||
|
||||
@override
|
||||
String get sync_confirm_download => 'Un download completo sostituirà completamente i tuoi dati attuali con quelli remoti!';
|
||||
String get sync_confirm_download =>
|
||||
'Un download completo sostituirà completamente i tuoi dati attuali con quelli remoti!';
|
||||
|
||||
@override
|
||||
String get sync_on => 'Abilita sincronizzazione';
|
||||
|
|
@ -716,7 +730,8 @@ class AppLocalizationsIt extends AppLocalizations {
|
|||
String get sync_pending_history => 'Modifiche in sospeso per la cronologia';
|
||||
|
||||
@override
|
||||
String get sync_pending_update => 'Modifiche in sospeso per gli aggiornamenti';
|
||||
String get sync_pending_update =>
|
||||
'Modifiche in sospeso per gli aggiornamenti';
|
||||
|
||||
@override
|
||||
String get sync_pending_extension => 'Modifiche in sospeso per le estensioni';
|
||||
|
|
@ -737,7 +752,8 @@ class AppLocalizationsIt extends AppLocalizations {
|
|||
String get sync_snapshot_deleted => 'Istantanea eliminata!';
|
||||
|
||||
@override
|
||||
String get sync_snapshot_no_data => 'Nessun dato per creare un\'istantanea! Esegui prima un caricamento completo!';
|
||||
String get sync_snapshot_no_data =>
|
||||
'Nessun dato per creare un\'istantanea! Esegui prima un caricamento completo!';
|
||||
|
||||
@override
|
||||
String get sync_browse_snapshots => 'Esplora vecchi backup';
|
||||
|
|
@ -755,7 +771,8 @@ class AppLocalizationsIt extends AppLocalizations {
|
|||
String get sync_auto => 'Sincronizzazione automatica';
|
||||
|
||||
@override
|
||||
String get sync_auto_warning => 'La sincronizzazione automatica è attualmente una funzione sperimentale!';
|
||||
String get sync_auto_warning =>
|
||||
'La sincronizzazione automatica è attualmente una funzione sperimentale!';
|
||||
|
||||
@override
|
||||
String get sync_auto_off => 'Disattivato';
|
||||
|
|
@ -800,13 +817,15 @@ class AppLocalizationsIt extends AppLocalizations {
|
|||
String get reorder_navigation => 'Personalizza navigazione';
|
||||
|
||||
@override
|
||||
String get reorder_navigation_description => 'Riorganizza e regola ogni navigazione in base alle tue esigenze.';
|
||||
String get reorder_navigation_description =>
|
||||
'Riorganizza e regola ogni navigazione in base alle tue esigenze.';
|
||||
|
||||
@override
|
||||
String get full_screen_player => 'Usa schermo intero';
|
||||
|
||||
@override
|
||||
String get full_screen_player_info => 'Usa automaticamente lo schermo intero durante la riproduzione di un video.';
|
||||
String get full_screen_player_info =>
|
||||
'Usa automaticamente lo schermo intero durante la riproduzione di un video.';
|
||||
|
||||
@override
|
||||
String episode_progress(Object n) {
|
||||
|
|
@ -875,7 +894,8 @@ class AppLocalizationsIt extends AppLocalizations {
|
|||
String get searching_for_updates => 'Ricerca aggiornamenti in corso...';
|
||||
|
||||
@override
|
||||
String get no_new_updates_available => 'Nessun nuovo aggiornamento disponibile';
|
||||
String get no_new_updates_available =>
|
||||
'Nessun nuovo aggiornamento disponibile';
|
||||
|
||||
@override
|
||||
String get uninstall => 'Disinstalla';
|
||||
|
|
@ -916,7 +936,8 @@ class AppLocalizationsIt extends AppLocalizations {
|
|||
String get page_preload_amount => 'Quantità di pagine da precaricare';
|
||||
|
||||
@override
|
||||
String get page_preload_amount_subtitle => 'Il numero di pagine da precaricare durante la lettura. Valori più alti risultano in un\'esperienza di lettura più fluida, a costo di un maggiore uso di cache e di rete.';
|
||||
String get page_preload_amount_subtitle =>
|
||||
'Il numero di pagine da precaricare durante la lettura. Valori più alti risultano in un\'esperienza di lettura più fluida, a costo di un maggiore uso di cache e di rete.';
|
||||
|
||||
@override
|
||||
String get image_loading_error => 'Questa immagine non può essere caricata';
|
||||
|
|
@ -934,10 +955,12 @@ class AppLocalizationsIt extends AppLocalizations {
|
|||
String get check_for_extension_updates => 'Verifica aggiornamenti estensione';
|
||||
|
||||
@override
|
||||
String get auto_extensions_updates => 'Aggiornamenti automatici delle estensioni';
|
||||
String get auto_extensions_updates =>
|
||||
'Aggiornamenti automatici delle estensioni';
|
||||
|
||||
@override
|
||||
String get auto_extensions_updates_subtitle => 'Aggiorna automaticamente l\'estensione quando è disponibile una nuova versione.';
|
||||
String get auto_extensions_updates_subtitle =>
|
||||
'Aggiorna automaticamente l\'estensione quando è disponibile una nuova versione.';
|
||||
|
||||
@override
|
||||
String get reading_mode => 'Modalità di lettura';
|
||||
|
|
@ -1007,13 +1030,15 @@ class AppLocalizationsIt extends AppLocalizations {
|
|||
String get create_backup_dialog_title => 'Cosa vuoi eseguire il backup?';
|
||||
|
||||
@override
|
||||
String get create_backup_subtitle => 'Può essere utilizzato per ripristinare la libreria corrente';
|
||||
String get create_backup_subtitle =>
|
||||
'Può essere utilizzato per ripristinare la libreria corrente';
|
||||
|
||||
@override
|
||||
String get restore_backup => 'Ripristina backup';
|
||||
|
||||
@override
|
||||
String get restore_backup_subtitle => 'Ripristina la libreria dal file di backup';
|
||||
String get restore_backup_subtitle =>
|
||||
'Ripristina la libreria dal file di backup';
|
||||
|
||||
@override
|
||||
String get automatic_backups => 'Backup automatici';
|
||||
|
|
@ -1031,10 +1056,12 @@ class AppLocalizationsIt extends AppLocalizations {
|
|||
String get backup_options_dialog_title => 'Cosa vuoi eseguire il backup?';
|
||||
|
||||
@override
|
||||
String get backup_options_subtitle => 'Quali informazioni includere nel file di backup';
|
||||
String get backup_options_subtitle =>
|
||||
'Quali informazioni includere nel file di backup';
|
||||
|
||||
@override
|
||||
String get backup_and_restore_warning_info => 'È consigliabile conservare copie dei backup in altri luoghi';
|
||||
String get backup_and_restore_warning_info =>
|
||||
'È consigliabile conservare copie dei backup in altri luoghi';
|
||||
|
||||
@override
|
||||
String get library_entries => 'Voci della libreria';
|
||||
|
|
@ -1058,13 +1085,15 @@ class AppLocalizationsIt extends AppLocalizations {
|
|||
String get weekly => 'Settimanale';
|
||||
|
||||
@override
|
||||
String get restore_backup_warning_title => 'Ripristinare un backup sovrascriverà tutti i dati esistenti.\n\nContinuare il ripristino?';
|
||||
String get restore_backup_warning_title =>
|
||||
'Ripristinare un backup sovrascriverà tutti i dati esistenti.\n\nContinuare il ripristino?';
|
||||
|
||||
@override
|
||||
String get services => 'Servizi';
|
||||
|
||||
@override
|
||||
String get tracking_warning_info => 'Sincronizzazione unidirezionale per aggiornare il progresso dei capitoli nei servizi di tracciamento. Imposta il tracciamento per le singole voci dal loro pulsante di tracciamento.';
|
||||
String get tracking_warning_info =>
|
||||
'Sincronizzazione unidirezionale per aggiornare il progresso dei capitoli nei servizi di tracciamento. Imposta il tracciamento per le singole voci dal loro pulsante di tracciamento.';
|
||||
|
||||
@override
|
||||
String get use_page_tap_zones => 'Usa zone di tocco pagina';
|
||||
|
|
@ -1097,16 +1126,20 @@ class AppLocalizationsIt extends AppLocalizations {
|
|||
String get player => 'Giocatore';
|
||||
|
||||
@override
|
||||
String get markEpisodeAsSeenSetting => 'In quale momento contrassegnare l\'episodio come visto';
|
||||
String get markEpisodeAsSeenSetting =>
|
||||
'In quale momento contrassegnare l\'episodio come visto';
|
||||
|
||||
@override
|
||||
String get default_skip_intro_length => 'Durata predefinita per saltare l\'introduzione';
|
||||
String get default_skip_intro_length =>
|
||||
'Durata predefinita per saltare l\'introduzione';
|
||||
|
||||
@override
|
||||
String get default_playback_speed_length => 'Durata predefinita per la velocità di riproduzione';
|
||||
String get default_playback_speed_length =>
|
||||
'Durata predefinita per la velocità di riproduzione';
|
||||
|
||||
@override
|
||||
String get updateProgressAfterReading => 'Aggiorna il progresso dopo aver letto';
|
||||
String get updateProgressAfterReading =>
|
||||
'Aggiorna il progresso dopo aver letto';
|
||||
|
||||
@override
|
||||
String get no_sources_installed => 'Nessuna fonte installata!';
|
||||
|
|
@ -1115,10 +1148,12 @@ class AppLocalizationsIt extends AppLocalizations {
|
|||
String get show_extensions => 'Mostra estensioni';
|
||||
|
||||
@override
|
||||
String get default_skip_forward_skip_length => 'Lunghezza predefinita del salto in avanti';
|
||||
String get default_skip_forward_skip_length =>
|
||||
'Lunghezza predefinita del salto in avanti';
|
||||
|
||||
@override
|
||||
String get aniskip_requires_info => 'AniSkip richiede che l\'anime sia tracciato con MAL o Anilist per funzionare.';
|
||||
String get aniskip_requires_info =>
|
||||
'AniSkip richiede che l\'anime sia tracciato con MAL o Anilist per funzionare.';
|
||||
|
||||
@override
|
||||
String get enable_aniskip => 'Abilita AniSkip';
|
||||
|
|
@ -1240,7 +1275,8 @@ class AppLocalizationsIt extends AppLocalizations {
|
|||
String get custom_color_filter => 'Filtro colore personalizzato';
|
||||
|
||||
@override
|
||||
String get color_filter_blend_mode => 'Modalità di miscelazione del filtro colore';
|
||||
String get color_filter_blend_mode =>
|
||||
'Modalità di miscelazione del filtro colore';
|
||||
|
||||
@override
|
||||
String get enable_all => 'Abilita tutto';
|
||||
|
|
@ -1267,7 +1303,8 @@ class AppLocalizationsIt extends AppLocalizations {
|
|||
String get background => 'Sfondo';
|
||||
|
||||
@override
|
||||
String get no_subtite_warning_message => 'Non ha effetto perché non ci sono tracce sottotitoli in questo video';
|
||||
String get no_subtite_warning_message =>
|
||||
'Non ha effetto perché non ci sono tracce sottotitoli in questo video';
|
||||
|
||||
@override
|
||||
String get grid_size => 'Dimensione griglia';
|
||||
|
|
@ -1287,10 +1324,12 @@ class AppLocalizationsIt extends AppLocalizations {
|
|||
String get use_libass => 'Abilita libass';
|
||||
|
||||
@override
|
||||
String get use_libass_info => 'Usa il rendering dei sottotitoli basato su libass per il backend nativo.';
|
||||
String get use_libass_info =>
|
||||
'Usa il rendering dei sottotitoli basato su libass per il backend nativo.';
|
||||
|
||||
@override
|
||||
String get libass_not_disable_message => 'Disabilita `use libass` nelle impostazioni del lettore per poter personalizzare i sottotitoli.';
|
||||
String get libass_not_disable_message =>
|
||||
'Disabilita `use libass` nelle impostazioni del lettore per poter personalizzare i sottotitoli.';
|
||||
|
||||
@override
|
||||
String get torrent_stream => 'Streaming Torrent';
|
||||
|
|
@ -1299,7 +1338,8 @@ class AppLocalizationsIt extends AppLocalizations {
|
|||
String get add_torrent => 'Aggiungi torrent';
|
||||
|
||||
@override
|
||||
String get enter_torrent_hint_text => 'Inserisci magnet o URL del file torrent';
|
||||
String get enter_torrent_hint_text =>
|
||||
'Inserisci magnet o URL del file torrent';
|
||||
|
||||
@override
|
||||
String get torrent_url => 'URL torrent';
|
||||
|
|
@ -1314,7 +1354,8 @@ class AppLocalizationsIt extends AppLocalizations {
|
|||
String get use_native_http_client => 'Usa il client HTTP nativo';
|
||||
|
||||
@override
|
||||
String get use_native_http_client_info => 'Supporta automaticamente le funzionalità della piattaforma come le VPN, supporta più funzionalità HTTP come HTTP/3 e la gestione dei reindirizzamenti personalizzati.';
|
||||
String get use_native_http_client_info =>
|
||||
'Supporta automaticamente le funzionalità della piattaforma come le VPN, supporta più funzionalità HTTP come HTTP/3 e la gestione dei reindirizzamenti personalizzati.';
|
||||
|
||||
@override
|
||||
String n_hour_ago(Object hour) {
|
||||
|
|
@ -1359,13 +1400,15 @@ class AppLocalizationsIt extends AppLocalizations {
|
|||
String get storage => 'Archiviazione';
|
||||
|
||||
@override
|
||||
String get clear_chapter_and_episode_cache => 'Cancella cache dei capitoli ed episodi';
|
||||
String get clear_chapter_and_episode_cache =>
|
||||
'Cancella cache dei capitoli ed episodi';
|
||||
|
||||
@override
|
||||
String get cache_cleared => 'Cache cancellata';
|
||||
|
||||
@override
|
||||
String get clear_chapter_or_episode_cache_on_app_launch => 'Cancella cache dei capitoli/episodi all\'avvio dell\'app';
|
||||
String get clear_chapter_or_episode_cache_on_app_launch =>
|
||||
'Cancella cache dei capitoli/episodi all\'avvio dell\'app';
|
||||
|
||||
@override
|
||||
String get app_settings => 'Impostazioni app';
|
||||
|
|
@ -1374,13 +1417,15 @@ class AppLocalizationsIt extends AppLocalizations {
|
|||
String get sources_settings => 'Impostazioni fonti';
|
||||
|
||||
@override
|
||||
String get include_sensitive_settings => 'Includi impostazioni sensibili (es. token di login del tracker)';
|
||||
String get include_sensitive_settings =>
|
||||
'Includi impostazioni sensibili (es. token di login del tracker)';
|
||||
|
||||
@override
|
||||
String get create => 'Crea';
|
||||
|
||||
@override
|
||||
String get downloads_are_limited_to_wifi => 'I download sono limitati solo al Wi-Fi';
|
||||
String get downloads_are_limited_to_wifi =>
|
||||
'I download sono limitati solo al Wi-Fi';
|
||||
|
||||
@override
|
||||
String get manga_extensions_repo => 'Repository delle estensioni manga';
|
||||
|
|
@ -1395,7 +1440,8 @@ class AppLocalizationsIt extends AppLocalizations {
|
|||
String get undefined => 'Non definito';
|
||||
|
||||
@override
|
||||
String get empty_extensions_repo => 'Non hai alcun URL di repository qui. Fai clic sul pulsante più per aggiungerne uno!';
|
||||
String get empty_extensions_repo =>
|
||||
'Non hai alcun URL di repository qui. Fai clic sul pulsante più per aggiungerne uno!';
|
||||
|
||||
@override
|
||||
String get add_extensions_repo => 'Aggiungi URL del repository';
|
||||
|
|
@ -1410,7 +1456,8 @@ class AppLocalizationsIt extends AppLocalizations {
|
|||
String get manage_anime_repo_urls => 'Gestisci gli URL del repository anime';
|
||||
|
||||
@override
|
||||
String get manage_novel_repo_urls => 'Gestisci gli URL del repository romanzi';
|
||||
String get manage_novel_repo_urls =>
|
||||
'Gestisci gli URL del repository romanzi';
|
||||
|
||||
@override
|
||||
String get url_cannot_be_empty => 'L\'URL non può essere vuoto';
|
||||
|
|
@ -1428,7 +1475,8 @@ class AppLocalizationsIt extends AppLocalizations {
|
|||
String get clear_all_sources => 'Cancella tutte le fonti';
|
||||
|
||||
@override
|
||||
String get clear_all_sources_msg => 'Questo cancellerà completamente tutte le fonti dall\'app. Sei sicuro di voler continuare?';
|
||||
String get clear_all_sources_msg =>
|
||||
'Questo cancellerà completamente tutte le fonti dall\'app. Sei sicuro di voler continuare?';
|
||||
|
||||
@override
|
||||
String get sources_cleared => 'Fonti cancellate!';
|
||||
|
|
@ -1457,5 +1505,6 @@ class AppLocalizationsIt extends AppLocalizations {
|
|||
}
|
||||
|
||||
@override
|
||||
String get unsupported_repo => 'Hai provato ad aggiungere un repository non supportato. Controlla il server discord per ricevere supporto!';
|
||||
String get unsupported_repo =>
|
||||
'Hai provato ad aggiungere un repository non supportato. Controlla il server discord per ricevere supporto!';
|
||||
}
|
||||
|
|
|
|||
|
|
@ -126,10 +126,12 @@ class AppLocalizationsPt extends AppLocalizations {
|
|||
String get other => 'Outro';
|
||||
|
||||
@override
|
||||
String get show_continue_reading_buttons => 'Mostrar botões de continuar lendo';
|
||||
String get show_continue_reading_buttons =>
|
||||
'Mostrar botões de continuar lendo';
|
||||
|
||||
@override
|
||||
String get show_continue_watching_buttons => 'Mostrar botões para continuar assistindo';
|
||||
String get show_continue_watching_buttons =>
|
||||
'Mostrar botões para continuar assistindo';
|
||||
|
||||
@override
|
||||
String get empty_library => 'Biblioteca vazia';
|
||||
|
|
@ -144,10 +146,12 @@ class AppLocalizationsPt extends AppLocalizations {
|
|||
String get remove_everything => 'Remover tudo';
|
||||
|
||||
@override
|
||||
String get remove_everything_msg => 'Tem certeza? Todo o histórico será perdido';
|
||||
String get remove_everything_msg =>
|
||||
'Tem certeza? Todo o histórico será perdido';
|
||||
|
||||
@override
|
||||
String get remove_all_update_msg => 'Tem certeza? Toda a atualização será apagada';
|
||||
String get remove_all_update_msg =>
|
||||
'Tem certeza? Toda a atualização será apagada';
|
||||
|
||||
@override
|
||||
String get ok => 'OK';
|
||||
|
|
@ -159,7 +163,8 @@ class AppLocalizationsPt extends AppLocalizations {
|
|||
String get remove => 'Remover';
|
||||
|
||||
@override
|
||||
String get remove_history_msg => 'Isso removerá a data de leitura deste capítulo. Tem certeza?';
|
||||
String get remove_history_msg =>
|
||||
'Isso removerá a data de leitura deste capítulo. Tem certeza?';
|
||||
|
||||
@override
|
||||
String get last_used => 'Último usado';
|
||||
|
|
@ -197,7 +202,8 @@ class AppLocalizationsPt extends AppLocalizations {
|
|||
}
|
||||
|
||||
@override
|
||||
String get clean_database_desc => 'Isso removerá todos os itens que não foram adicionados à biblioteca!';
|
||||
String get clean_database_desc =>
|
||||
'Isso removerá todos os itens que não foram adicionados à biblioteca!';
|
||||
|
||||
@override
|
||||
String get incognito_mode => 'Modo Incógnito';
|
||||
|
|
@ -230,7 +236,8 @@ class AppLocalizationsPt extends AppLocalizations {
|
|||
String get edit_categories => 'Editar Categorias';
|
||||
|
||||
@override
|
||||
String get edit_categories_description => 'Você não tem categorias. Toque no botão de mais para criar uma para organizar sua biblioteca';
|
||||
String get edit_categories_description =>
|
||||
'Você não tem categorias. Toque no botão de mais para criar uma para organizar sua biblioteca';
|
||||
|
||||
@override
|
||||
String get add => 'Adicionar';
|
||||
|
|
@ -245,7 +252,8 @@ class AppLocalizationsPt extends AppLocalizations {
|
|||
String get category_name_required => '*Obrigatório';
|
||||
|
||||
@override
|
||||
String get add_category_error_exist => 'Uma categoria com este nome já existe!';
|
||||
String get add_category_error_exist =>
|
||||
'Uma categoria com este nome já existe!';
|
||||
|
||||
@override
|
||||
String get delete_category => 'Excluir Categoria';
|
||||
|
|
@ -340,7 +348,8 @@ class AppLocalizationsPt extends AppLocalizations {
|
|||
String get reading_mode_webtoon => 'Webtoon';
|
||||
|
||||
@override
|
||||
String get double_tap_animation_speed => 'Velocidade da animação de duplo toque';
|
||||
String get double_tap_animation_speed =>
|
||||
'Velocidade da animação de duplo toque';
|
||||
|
||||
@override
|
||||
String get normal => 'Normal';
|
||||
|
|
@ -391,7 +400,8 @@ class AppLocalizationsPt extends AppLocalizations {
|
|||
String get nsfw_sources_show => 'Mostrar em listas de fontes e extensões';
|
||||
|
||||
@override
|
||||
String get nsfw_sources_info => 'Isso não impede que extensões não oficiais ou potencialmente marcadas incorretamente mostrem conteúdo NSFW (18+) dentro do aplicativo';
|
||||
String get nsfw_sources_info =>
|
||||
'Isso não impede que extensões não oficiais ou potencialmente marcadas incorretamente mostrem conteúdo NSFW (18+) dentro do aplicativo';
|
||||
|
||||
@override
|
||||
String get version => 'Versão';
|
||||
|
|
@ -638,7 +648,8 @@ class AppLocalizationsPt extends AppLocalizations {
|
|||
String get sync_logged => 'Login bem-sucedido';
|
||||
|
||||
@override
|
||||
String get syncing_subtitle => 'Sincronize seu progresso entre vários dispositivos via um servidor auto-hospedado. Certifique-se de fazer o upload primeiro se for sua primeira vez sincronizando ou baixe antes de usar a sincronização (automática) neste dispositivo!';
|
||||
String get syncing_subtitle =>
|
||||
'Sincronize seu progresso entre vários dispositivos via um servidor auto-hospedado. Certifique-se de fazer o upload primeiro se for sua primeira vez sincronizando ou baixe antes de usar a sincronização (automática) neste dispositivo!';
|
||||
|
||||
@override
|
||||
String get last_sync => 'Última sincronização em: ';
|
||||
|
|
@ -692,13 +703,16 @@ class AppLocalizationsPt extends AppLocalizations {
|
|||
String get sync_button_download => 'Download completo';
|
||||
|
||||
@override
|
||||
String get sync_confirm_snapshot => 'Solicite ao servidor para criar um backup remoto!';
|
||||
String get sync_confirm_snapshot =>
|
||||
'Solicite ao servidor para criar um backup remoto!';
|
||||
|
||||
@override
|
||||
String get sync_confirm_upload => 'Um upload completo substituirá completamente os dados remotos pelos seus dados atuais!';
|
||||
String get sync_confirm_upload =>
|
||||
'Um upload completo substituirá completamente os dados remotos pelos seus dados atuais!';
|
||||
|
||||
@override
|
||||
String get sync_confirm_download => 'Um download completo substituirá completamente seus dados atuais pelos dados remotos!';
|
||||
String get sync_confirm_download =>
|
||||
'Um download completo substituirá completamente seus dados atuais pelos dados remotos!';
|
||||
|
||||
@override
|
||||
String get sync_on => 'Ativar sincronização';
|
||||
|
|
@ -737,7 +751,8 @@ class AppLocalizationsPt extends AppLocalizations {
|
|||
String get sync_snapshot_deleted => 'Instantâneo excluído!';
|
||||
|
||||
@override
|
||||
String get sync_snapshot_no_data => 'Sem dados para criar um instantâneo! Faça um upload completo primeiro!';
|
||||
String get sync_snapshot_no_data =>
|
||||
'Sem dados para criar um instantâneo! Faça um upload completo primeiro!';
|
||||
|
||||
@override
|
||||
String get sync_browse_snapshots => 'Explorar backups antigos';
|
||||
|
|
@ -755,7 +770,8 @@ class AppLocalizationsPt extends AppLocalizations {
|
|||
String get sync_auto => 'Sincronização automática';
|
||||
|
||||
@override
|
||||
String get sync_auto_warning => 'A sincronização automática é atualmente um recurso experimental!';
|
||||
String get sync_auto_warning =>
|
||||
'A sincronização automática é atualmente um recurso experimental!';
|
||||
|
||||
@override
|
||||
String get sync_auto_off => 'Desativado';
|
||||
|
|
@ -800,13 +816,15 @@ class AppLocalizationsPt extends AppLocalizations {
|
|||
String get reorder_navigation => 'Personalizar navegação';
|
||||
|
||||
@override
|
||||
String get reorder_navigation_description => 'Reorganize e ajuste cada navegação conforme suas necessidades.';
|
||||
String get reorder_navigation_description =>
|
||||
'Reorganize e ajuste cada navegação conforme suas necessidades.';
|
||||
|
||||
@override
|
||||
String get full_screen_player => 'Usar tela cheia';
|
||||
|
||||
@override
|
||||
String get full_screen_player_info => 'Usar automaticamente tela cheia ao reproduzir um vídeo.';
|
||||
String get full_screen_player_info =>
|
||||
'Usar automaticamente tela cheia ao reproduzir um vídeo.';
|
||||
|
||||
@override
|
||||
String episode_progress(Object n) {
|
||||
|
|
@ -916,7 +934,8 @@ class AppLocalizationsPt extends AppLocalizations {
|
|||
String get page_preload_amount => 'Quantidade de páginas a pré-carregar';
|
||||
|
||||
@override
|
||||
String get page_preload_amount_subtitle => 'A quantidade de páginas a serem pré-carregadas durante a leitura. Valores mais altos resultarão em uma experiência de leitura mais suave, mas aumentam o uso de cache e rede.';
|
||||
String get page_preload_amount_subtitle =>
|
||||
'A quantidade de páginas a serem pré-carregadas durante a leitura. Valores mais altos resultarão em uma experiência de leitura mais suave, mas aumentam o uso de cache e rede.';
|
||||
|
||||
@override
|
||||
String get image_loading_error => 'Esta imagem não pôde ser carregada';
|
||||
|
|
@ -931,13 +950,15 @@ class AppLocalizationsPt extends AppLocalizations {
|
|||
String get video_subtitle => 'Legenda';
|
||||
|
||||
@override
|
||||
String get check_for_extension_updates => 'Verificar atualizações de extensão';
|
||||
String get check_for_extension_updates =>
|
||||
'Verificar atualizações de extensão';
|
||||
|
||||
@override
|
||||
String get auto_extensions_updates => 'Atualizações automáticas de extensões';
|
||||
|
||||
@override
|
||||
String get auto_extensions_updates_subtitle => 'Atualizará automaticamente a extensão quando uma nova versão estiver disponível.';
|
||||
String get auto_extensions_updates_subtitle =>
|
||||
'Atualizará automaticamente a extensão quando uma nova versão estiver disponível.';
|
||||
|
||||
@override
|
||||
String get reading_mode => 'Modo de leitura';
|
||||
|
|
@ -1007,13 +1028,15 @@ class AppLocalizationsPt extends AppLocalizations {
|
|||
String get create_backup_dialog_title => 'O que você quer fazer backup?';
|
||||
|
||||
@override
|
||||
String get create_backup_subtitle => 'Pode ser usado para restaurar a biblioteca atual';
|
||||
String get create_backup_subtitle =>
|
||||
'Pode ser usado para restaurar a biblioteca atual';
|
||||
|
||||
@override
|
||||
String get restore_backup => 'Restaurar backup';
|
||||
|
||||
@override
|
||||
String get restore_backup_subtitle => 'Restaurar biblioteca de arquivo de backup';
|
||||
String get restore_backup_subtitle =>
|
||||
'Restaurar biblioteca de arquivo de backup';
|
||||
|
||||
@override
|
||||
String get automatic_backups => 'Backups automáticos';
|
||||
|
|
@ -1031,10 +1054,12 @@ class AppLocalizationsPt extends AppLocalizations {
|
|||
String get backup_options_dialog_title => 'O que você quer fazer backup?';
|
||||
|
||||
@override
|
||||
String get backup_options_subtitle => 'Que informações incluir no arquivo de backup';
|
||||
String get backup_options_subtitle =>
|
||||
'Que informações incluir no arquivo de backup';
|
||||
|
||||
@override
|
||||
String get backup_and_restore_warning_info => 'Você deve manter cópias dos backups em outros lugares também';
|
||||
String get backup_and_restore_warning_info =>
|
||||
'Você deve manter cópias dos backups em outros lugares também';
|
||||
|
||||
@override
|
||||
String get library_entries => 'Entradas da biblioteca';
|
||||
|
|
@ -1058,13 +1083,15 @@ class AppLocalizationsPt extends AppLocalizations {
|
|||
String get weekly => 'Semanalmente';
|
||||
|
||||
@override
|
||||
String get restore_backup_warning_title => 'Restaurar um backup sobrescreverá todos os dados existentes.\n\nContinuar restaurando?';
|
||||
String get restore_backup_warning_title =>
|
||||
'Restaurar um backup sobrescreverá todos os dados existentes.\n\nContinuar restaurando?';
|
||||
|
||||
@override
|
||||
String get services => 'Serviços';
|
||||
|
||||
@override
|
||||
String get tracking_warning_info => 'Sincronização unidirecional para atualizar o progresso do capítulo em serviços de rastreamento. Configure o rastreamento para entradas individuais a partir de seu botão de rastreamento.';
|
||||
String get tracking_warning_info =>
|
||||
'Sincronização unidirecional para atualizar o progresso do capítulo em serviços de rastreamento. Configure o rastreamento para entradas individuais a partir de seu botão de rastreamento.';
|
||||
|
||||
@override
|
||||
String get use_page_tap_zones => 'Usar zonas de toque de página';
|
||||
|
|
@ -1097,13 +1124,16 @@ class AppLocalizationsPt extends AppLocalizations {
|
|||
String get player => 'Jogador';
|
||||
|
||||
@override
|
||||
String get markEpisodeAsSeenSetting => 'Em que ponto marcar o episódio como visto';
|
||||
String get markEpisodeAsSeenSetting =>
|
||||
'Em que ponto marcar o episódio como visto';
|
||||
|
||||
@override
|
||||
String get default_skip_intro_length => 'Duração padrão para pular a introdução';
|
||||
String get default_skip_intro_length =>
|
||||
'Duração padrão para pular a introdução';
|
||||
|
||||
@override
|
||||
String get default_playback_speed_length => 'Duração padrão da velocidade de reprodução';
|
||||
String get default_playback_speed_length =>
|
||||
'Duração padrão da velocidade de reprodução';
|
||||
|
||||
@override
|
||||
String get updateProgressAfterReading => 'Atualizar progresso após a leitura';
|
||||
|
|
@ -1115,10 +1145,12 @@ class AppLocalizationsPt extends AppLocalizations {
|
|||
String get show_extensions => 'mostrar extensões';
|
||||
|
||||
@override
|
||||
String get default_skip_forward_skip_length => 'Comprimento padrão do salto para frente';
|
||||
String get default_skip_forward_skip_length =>
|
||||
'Comprimento padrão do salto para frente';
|
||||
|
||||
@override
|
||||
String get aniskip_requires_info => 'AniSkip requer que o anime seja rastreado com o MAL ou Anilist para funcionar.';
|
||||
String get aniskip_requires_info =>
|
||||
'AniSkip requer que o anime seja rastreado com o MAL ou Anilist para funcionar.';
|
||||
|
||||
@override
|
||||
String get enable_aniskip => 'Ativar AniSkip';
|
||||
|
|
@ -1267,7 +1299,8 @@ class AppLocalizationsPt extends AppLocalizations {
|
|||
String get background => 'Fundo';
|
||||
|
||||
@override
|
||||
String get no_subtite_warning_message => 'Não tem efeito porque não há faixas de legendas neste vídeo';
|
||||
String get no_subtite_warning_message =>
|
||||
'Não tem efeito porque não há faixas de legendas neste vídeo';
|
||||
|
||||
@override
|
||||
String get grid_size => 'Tamanho da grade';
|
||||
|
|
@ -1287,10 +1320,12 @@ class AppLocalizationsPt extends AppLocalizations {
|
|||
String get use_libass => 'Ativar libass';
|
||||
|
||||
@override
|
||||
String get use_libass_info => 'Usar renderização de legendas baseada em libass para backend nativo.';
|
||||
String get use_libass_info =>
|
||||
'Usar renderização de legendas baseada em libass para backend nativo.';
|
||||
|
||||
@override
|
||||
String get libass_not_disable_message => 'Desative `use libass` nas configurações do player para poder personalizar as legendas.';
|
||||
String get libass_not_disable_message =>
|
||||
'Desative `use libass` nas configurações do player para poder personalizar as legendas.';
|
||||
|
||||
@override
|
||||
String get torrent_stream => 'Stream de Torrent';
|
||||
|
|
@ -1299,7 +1334,8 @@ class AppLocalizationsPt extends AppLocalizations {
|
|||
String get add_torrent => 'Adicionar torrent';
|
||||
|
||||
@override
|
||||
String get enter_torrent_hint_text => 'Insira o URL do arquivo magnet ou torrent';
|
||||
String get enter_torrent_hint_text =>
|
||||
'Insira o URL do arquivo magnet ou torrent';
|
||||
|
||||
@override
|
||||
String get torrent_url => 'URL do torrent';
|
||||
|
|
@ -1314,7 +1350,8 @@ class AppLocalizationsPt extends AppLocalizations {
|
|||
String get use_native_http_client => 'Usar cliente HTTP nativo';
|
||||
|
||||
@override
|
||||
String get use_native_http_client_info => 'ele suporta automaticamente recursos da plataforma, como VPNs, suporta mais recursos HTTP, como HTTP/3 e manuseio de redirecionamentos personalizados';
|
||||
String get use_native_http_client_info =>
|
||||
'ele suporta automaticamente recursos da plataforma, como VPNs, suporta mais recursos HTTP, como HTTP/3 e manuseio de redirecionamentos personalizados';
|
||||
|
||||
@override
|
||||
String n_hour_ago(Object hour) {
|
||||
|
|
@ -1359,13 +1396,15 @@ class AppLocalizationsPt extends AppLocalizations {
|
|||
String get storage => 'Armazenamento';
|
||||
|
||||
@override
|
||||
String get clear_chapter_and_episode_cache => 'Limpar cache de capítulos e episódios';
|
||||
String get clear_chapter_and_episode_cache =>
|
||||
'Limpar cache de capítulos e episódios';
|
||||
|
||||
@override
|
||||
String get cache_cleared => 'Cache limpo';
|
||||
|
||||
@override
|
||||
String get clear_chapter_or_episode_cache_on_app_launch => 'Limpar cache de capítulo/episódio ao iniciar o aplicativo';
|
||||
String get clear_chapter_or_episode_cache_on_app_launch =>
|
||||
'Limpar cache de capítulo/episódio ao iniciar o aplicativo';
|
||||
|
||||
@override
|
||||
String get app_settings => 'Configurações do aplicativo';
|
||||
|
|
@ -1374,13 +1413,15 @@ class AppLocalizationsPt extends AppLocalizations {
|
|||
String get sources_settings => 'Configurações de fontes';
|
||||
|
||||
@override
|
||||
String get include_sensitive_settings => 'Incluir configurações sensíveis (ex: tokens de login do tracker)';
|
||||
String get include_sensitive_settings =>
|
||||
'Incluir configurações sensíveis (ex: tokens de login do tracker)';
|
||||
|
||||
@override
|
||||
String get create => 'Criar';
|
||||
|
||||
@override
|
||||
String get downloads_are_limited_to_wifi => 'Os downloads estão limitados apenas ao Wi-Fi';
|
||||
String get downloads_are_limited_to_wifi =>
|
||||
'Os downloads estão limitados apenas ao Wi-Fi';
|
||||
|
||||
@override
|
||||
String get manga_extensions_repo => 'Repositório de extensões de mangás';
|
||||
|
|
@ -1395,7 +1436,8 @@ class AppLocalizationsPt extends AppLocalizations {
|
|||
String get undefined => 'Indefinido';
|
||||
|
||||
@override
|
||||
String get empty_extensions_repo => 'Você não tem nenhum URL de repositório aqui. Clique no botão de adicionar para incluir um!';
|
||||
String get empty_extensions_repo =>
|
||||
'Você não tem nenhum URL de repositório aqui. Clique no botão de adicionar para incluir um!';
|
||||
|
||||
@override
|
||||
String get add_extensions_repo => 'Adicionar URL do repositório';
|
||||
|
|
@ -1404,13 +1446,16 @@ class AppLocalizationsPt extends AppLocalizations {
|
|||
String get remove_extensions_repo => 'Remover URL do repositório';
|
||||
|
||||
@override
|
||||
String get manage_manga_repo_urls => 'Gerenciar URLs do repositório de mangás';
|
||||
String get manage_manga_repo_urls =>
|
||||
'Gerenciar URLs do repositório de mangás';
|
||||
|
||||
@override
|
||||
String get manage_anime_repo_urls => 'Gerenciar URLs do repositório de animes';
|
||||
String get manage_anime_repo_urls =>
|
||||
'Gerenciar URLs do repositório de animes';
|
||||
|
||||
@override
|
||||
String get manage_novel_repo_urls => 'Gerenciar URLs do repositório de romances';
|
||||
String get manage_novel_repo_urls =>
|
||||
'Gerenciar URLs do repositório de romances';
|
||||
|
||||
@override
|
||||
String get url_cannot_be_empty => 'A URL não pode estar vazia';
|
||||
|
|
@ -1428,7 +1473,8 @@ class AppLocalizationsPt extends AppLocalizations {
|
|||
String get clear_all_sources => 'Limpar todas as fontes';
|
||||
|
||||
@override
|
||||
String get clear_all_sources_msg => 'Isso limpará completamente todas as fontes do aplicativo. Tem certeza de que deseja continuar?';
|
||||
String get clear_all_sources_msg =>
|
||||
'Isso limpará completamente todas as fontes do aplicativo. Tem certeza de que deseja continuar?';
|
||||
|
||||
@override
|
||||
String get sources_cleared => 'Fontes limpas!';
|
||||
|
|
@ -1457,12 +1503,13 @@ class AppLocalizationsPt extends AppLocalizations {
|
|||
}
|
||||
|
||||
@override
|
||||
String get unsupported_repo => 'Tentou adicionar um repositório não suportado. Por favor, verifique o servidor discord para obter suporte!';
|
||||
String get unsupported_repo =>
|
||||
'Tentou adicionar um repositório não suportado. Por favor, verifique o servidor discord para obter suporte!';
|
||||
}
|
||||
|
||||
/// The translations for Portuguese, as used in Brazil (`pt_BR`).
|
||||
class AppLocalizationsPtBr extends AppLocalizationsPt {
|
||||
AppLocalizationsPtBr(): super('pt_BR');
|
||||
AppLocalizationsPtBr() : super('pt_BR');
|
||||
|
||||
@override
|
||||
String get library => 'Biblioteca';
|
||||
|
|
@ -1582,10 +1629,12 @@ class AppLocalizationsPtBr extends AppLocalizationsPt {
|
|||
String get other => 'Outro';
|
||||
|
||||
@override
|
||||
String get show_continue_reading_buttons => 'Mostrar botões de continuar lendo';
|
||||
String get show_continue_reading_buttons =>
|
||||
'Mostrar botões de continuar lendo';
|
||||
|
||||
@override
|
||||
String get show_continue_watching_buttons => 'Mostrar botões para continuar assistindo';
|
||||
String get show_continue_watching_buttons =>
|
||||
'Mostrar botões para continuar assistindo';
|
||||
|
||||
@override
|
||||
String get empty_library => 'Biblioteca vazia';
|
||||
|
|
@ -1600,10 +1649,12 @@ class AppLocalizationsPtBr extends AppLocalizationsPt {
|
|||
String get remove_everything => 'Remover tudo';
|
||||
|
||||
@override
|
||||
String get remove_everything_msg => 'Tem certeza? Todo histórico será perdido';
|
||||
String get remove_everything_msg =>
|
||||
'Tem certeza? Todo histórico será perdido';
|
||||
|
||||
@override
|
||||
String get remove_all_update_msg => 'Você tem certeza? Toda a atualização será apagada';
|
||||
String get remove_all_update_msg =>
|
||||
'Você tem certeza? Toda a atualização será apagada';
|
||||
|
||||
@override
|
||||
String get ok => 'OK';
|
||||
|
|
@ -1615,7 +1666,8 @@ class AppLocalizationsPtBr extends AppLocalizationsPt {
|
|||
String get remove => 'Remover';
|
||||
|
||||
@override
|
||||
String get remove_history_msg => 'Isso removerá a data de leitura deste capítulo. Tem certeza?';
|
||||
String get remove_history_msg =>
|
||||
'Isso removerá a data de leitura deste capítulo. Tem certeza?';
|
||||
|
||||
@override
|
||||
String get last_used => 'Último Usado';
|
||||
|
|
@ -1653,7 +1705,8 @@ class AppLocalizationsPtBr extends AppLocalizationsPt {
|
|||
}
|
||||
|
||||
@override
|
||||
String get clean_database_desc => 'Isso removerá todos os itens que não foram adicionados à biblioteca!';
|
||||
String get clean_database_desc =>
|
||||
'Isso removerá todos os itens que não foram adicionados à biblioteca!';
|
||||
|
||||
@override
|
||||
String get incognito_mode => 'Modo Incógnito';
|
||||
|
|
@ -1686,7 +1739,8 @@ class AppLocalizationsPtBr extends AppLocalizationsPt {
|
|||
String get edit_categories => 'Editar Categorias';
|
||||
|
||||
@override
|
||||
String get edit_categories_description => 'Você não tem categorias. Toque no botão de mais para criar uma para organizar sua biblioteca';
|
||||
String get edit_categories_description =>
|
||||
'Você não tem categorias. Toque no botão de mais para criar uma para organizar sua biblioteca';
|
||||
|
||||
@override
|
||||
String get add => 'Adicionar';
|
||||
|
|
@ -1701,7 +1755,8 @@ class AppLocalizationsPtBr extends AppLocalizationsPt {
|
|||
String get category_name_required => '*Obrigatório';
|
||||
|
||||
@override
|
||||
String get add_category_error_exist => 'Uma categoria com este nome já existe!';
|
||||
String get add_category_error_exist =>
|
||||
'Uma categoria com este nome já existe!';
|
||||
|
||||
@override
|
||||
String get delete_category => 'Deletar Categoria';
|
||||
|
|
@ -1796,7 +1851,8 @@ class AppLocalizationsPtBr extends AppLocalizationsPt {
|
|||
String get reading_mode_webtoon => 'Webtoon';
|
||||
|
||||
@override
|
||||
String get double_tap_animation_speed => 'Velocidade da animação de duplo toque';
|
||||
String get double_tap_animation_speed =>
|
||||
'Velocidade da animação de duplo toque';
|
||||
|
||||
@override
|
||||
String get normal => 'Normal';
|
||||
|
|
@ -1844,7 +1900,8 @@ class AppLocalizationsPtBr extends AppLocalizationsPt {
|
|||
String get nsfw_sources_show => 'Mostrar nas listas de fontes e extensões';
|
||||
|
||||
@override
|
||||
String get nsfw_sources_info => 'Isso não impede que extensões não oficiais ou potencialmente marcadas incorretamente exibam conteúdo NSFW (18+) dentro do aplicativo';
|
||||
String get nsfw_sources_info =>
|
||||
'Isso não impede que extensões não oficiais ou potencialmente marcadas incorretamente exibam conteúdo NSFW (18+) dentro do aplicativo';
|
||||
|
||||
@override
|
||||
String get version => 'Versão';
|
||||
|
|
@ -2091,7 +2148,8 @@ class AppLocalizationsPtBr extends AppLocalizationsPt {
|
|||
String get sync_logged => 'Login bem-sucedido';
|
||||
|
||||
@override
|
||||
String get syncing_subtitle => 'Sincronize seu progresso em vários dispositivos por meio de um servidor auto-hospedado.\nCertifique-se de fazer upload primeiro se for sua primeira sincronização ou de baixar antes de usar a sincronização (automática) neste dispositivo!';
|
||||
String get syncing_subtitle =>
|
||||
'Sincronize seu progresso em vários dispositivos por meio de um servidor auto-hospedado.\nCertifique-se de fazer upload primeiro se for sua primeira sincronização ou de baixar antes de usar a sincronização (automática) neste dispositivo!';
|
||||
|
||||
@override
|
||||
String get last_sync => 'Última sincronização em: ';
|
||||
|
|
@ -2145,13 +2203,16 @@ class AppLocalizationsPtBr extends AppLocalizationsPt {
|
|||
String get sync_button_download => 'Download completo';
|
||||
|
||||
@override
|
||||
String get sync_confirm_snapshot => 'Solicite ao servidor para criar um backup remoto!';
|
||||
String get sync_confirm_snapshot =>
|
||||
'Solicite ao servidor para criar um backup remoto!';
|
||||
|
||||
@override
|
||||
String get sync_confirm_upload => 'Um upload completo substituirá completamente os dados remotos pelos atuais!';
|
||||
String get sync_confirm_upload =>
|
||||
'Um upload completo substituirá completamente os dados remotos pelos atuais!';
|
||||
|
||||
@override
|
||||
String get sync_confirm_download => 'Um download completo substituirá completamente seus dados atuais pelos dados remotos!';
|
||||
String get sync_confirm_download =>
|
||||
'Um download completo substituirá completamente seus dados atuais pelos dados remotos!';
|
||||
|
||||
@override
|
||||
String get sync_on => 'Ativar sincronização';
|
||||
|
|
@ -2190,7 +2251,8 @@ class AppLocalizationsPtBr extends AppLocalizationsPt {
|
|||
String get sync_snapshot_deleted => 'Instantâneo excluído!';
|
||||
|
||||
@override
|
||||
String get sync_snapshot_no_data => 'Sem dados para criar um instantâneo! Faça um upload completo primeiro!';
|
||||
String get sync_snapshot_no_data =>
|
||||
'Sem dados para criar um instantâneo! Faça um upload completo primeiro!';
|
||||
|
||||
@override
|
||||
String get sync_browse_snapshots => 'Explorar backups antigos';
|
||||
|
|
@ -2208,7 +2270,8 @@ class AppLocalizationsPtBr extends AppLocalizationsPt {
|
|||
String get sync_auto => 'Sincronização automática';
|
||||
|
||||
@override
|
||||
String get sync_auto_warning => 'A sincronização automática é atualmente um recurso experimental!';
|
||||
String get sync_auto_warning =>
|
||||
'A sincronização automática é atualmente um recurso experimental!';
|
||||
|
||||
@override
|
||||
String get sync_auto_off => 'Desativado';
|
||||
|
|
@ -2253,13 +2316,15 @@ class AppLocalizationsPtBr extends AppLocalizationsPt {
|
|||
String get reorder_navigation => 'Personalizar navegação';
|
||||
|
||||
@override
|
||||
String get reorder_navigation_description => 'Reorganize e ajuste cada navegação conforme suas necessidades.';
|
||||
String get reorder_navigation_description =>
|
||||
'Reorganize e ajuste cada navegação conforme suas necessidades.';
|
||||
|
||||
@override
|
||||
String get full_screen_player => 'Usar tela cheia';
|
||||
|
||||
@override
|
||||
String get full_screen_player_info => 'Usar automaticamente tela cheia ao reproduzir um vídeo.';
|
||||
String get full_screen_player_info =>
|
||||
'Usar automaticamente tela cheia ao reproduzir um vídeo.';
|
||||
|
||||
@override
|
||||
String episode_progress(Object n) {
|
||||
|
|
@ -2369,7 +2434,8 @@ class AppLocalizationsPtBr extends AppLocalizationsPt {
|
|||
String get page_preload_amount => 'Quantidade de páginas a pré-carregar';
|
||||
|
||||
@override
|
||||
String get page_preload_amount_subtitle => 'A quantidade de páginas a ser pré-carregada durante a leitura. Valores maiores resultarão em uma experiência de leitura mais suave, ao custo de maior uso de cache e rede.';
|
||||
String get page_preload_amount_subtitle =>
|
||||
'A quantidade de páginas a ser pré-carregada durante a leitura. Valores maiores resultarão em uma experiência de leitura mais suave, ao custo de maior uso de cache e rede.';
|
||||
|
||||
@override
|
||||
String get image_loading_error => 'Esta imagem não pôde ser carregada';
|
||||
|
|
@ -2384,13 +2450,15 @@ class AppLocalizationsPtBr extends AppLocalizationsPt {
|
|||
String get video_subtitle => 'Legenda';
|
||||
|
||||
@override
|
||||
String get check_for_extension_updates => 'Verificar atualizações de extensões';
|
||||
String get check_for_extension_updates =>
|
||||
'Verificar atualizações de extensões';
|
||||
|
||||
@override
|
||||
String get auto_extensions_updates => 'Atualizações automáticas de extensões';
|
||||
|
||||
@override
|
||||
String get auto_extensions_updates_subtitle => 'Atualizará automaticamente a extensão quando uma nova versão estiver disponível.';
|
||||
String get auto_extensions_updates_subtitle =>
|
||||
'Atualizará automaticamente a extensão quando uma nova versão estiver disponível.';
|
||||
|
||||
@override
|
||||
String get reading_mode => 'Modo de leitura';
|
||||
|
|
@ -2460,13 +2528,15 @@ class AppLocalizationsPtBr extends AppLocalizationsPt {
|
|||
String get create_backup_dialog_title => 'O que você deseja fazer backup?';
|
||||
|
||||
@override
|
||||
String get create_backup_subtitle => 'Pode ser usado para restaurar a biblioteca atual';
|
||||
String get create_backup_subtitle =>
|
||||
'Pode ser usado para restaurar a biblioteca atual';
|
||||
|
||||
@override
|
||||
String get restore_backup => 'Restaurar backup';
|
||||
|
||||
@override
|
||||
String get restore_backup_subtitle => 'Restaurar biblioteca a partir de arquivo de backup';
|
||||
String get restore_backup_subtitle =>
|
||||
'Restaurar biblioteca a partir de arquivo de backup';
|
||||
|
||||
@override
|
||||
String get automatic_backups => 'Backups automáticos';
|
||||
|
|
@ -2484,10 +2554,12 @@ class AppLocalizationsPtBr extends AppLocalizationsPt {
|
|||
String get backup_options_dialog_title => 'O que você deseja fazer backup?';
|
||||
|
||||
@override
|
||||
String get backup_options_subtitle => 'Quais informações incluir no arquivo de backup';
|
||||
String get backup_options_subtitle =>
|
||||
'Quais informações incluir no arquivo de backup';
|
||||
|
||||
@override
|
||||
String get backup_and_restore_warning_info => 'Você deve manter cópias dos backups em outros locais também';
|
||||
String get backup_and_restore_warning_info =>
|
||||
'Você deve manter cópias dos backups em outros locais também';
|
||||
|
||||
@override
|
||||
String get library_entries => 'Entradas da biblioteca';
|
||||
|
|
@ -2511,13 +2583,15 @@ class AppLocalizationsPtBr extends AppLocalizationsPt {
|
|||
String get weekly => 'Semanalmente';
|
||||
|
||||
@override
|
||||
String get restore_backup_warning_title => 'Restaurar um backup irá sobrescrever todos os dados existentes.\n\nContinuar restaurando?';
|
||||
String get restore_backup_warning_title =>
|
||||
'Restaurar um backup irá sobrescrever todos os dados existentes.\n\nContinuar restaurando?';
|
||||
|
||||
@override
|
||||
String get services => 'Serviços';
|
||||
|
||||
@override
|
||||
String get tracking_warning_info => 'Sincronização unidirecional para atualizar o progresso do capítulo em serviços de rastreamento. Configure o rastreamento para entradas individuais a partir do botão de rastreamento.';
|
||||
String get tracking_warning_info =>
|
||||
'Sincronização unidirecional para atualizar o progresso do capítulo em serviços de rastreamento. Configure o rastreamento para entradas individuais a partir do botão de rastreamento.';
|
||||
|
||||
@override
|
||||
String get use_page_tap_zones => 'Usar zonas de toque da página';
|
||||
|
|
@ -2550,16 +2624,20 @@ class AppLocalizationsPtBr extends AppLocalizationsPt {
|
|||
String get player => 'Jogador';
|
||||
|
||||
@override
|
||||
String get markEpisodeAsSeenSetting => 'Em que ponto marcar o episódio como visto';
|
||||
String get markEpisodeAsSeenSetting =>
|
||||
'Em que ponto marcar o episódio como visto';
|
||||
|
||||
@override
|
||||
String get default_skip_intro_length => 'Duração padrão para pular a introdução';
|
||||
String get default_skip_intro_length =>
|
||||
'Duração padrão para pular a introdução';
|
||||
|
||||
@override
|
||||
String get default_playback_speed_length => 'Duração padrão da velocidade de reprodução';
|
||||
String get default_playback_speed_length =>
|
||||
'Duração padrão da velocidade de reprodução';
|
||||
|
||||
@override
|
||||
String get updateProgressAfterReading => 'Atualize o progresso após a leitura';
|
||||
String get updateProgressAfterReading =>
|
||||
'Atualize o progresso após a leitura';
|
||||
|
||||
@override
|
||||
String get no_sources_installed => 'Nenhuma fonte instalada!';
|
||||
|
|
@ -2568,10 +2646,12 @@ class AppLocalizationsPtBr extends AppLocalizationsPt {
|
|||
String get show_extensions => 'Mostrar extensões';
|
||||
|
||||
@override
|
||||
String get default_skip_forward_skip_length => 'Comprimento padrão do salto para frente';
|
||||
String get default_skip_forward_skip_length =>
|
||||
'Comprimento padrão do salto para frente';
|
||||
|
||||
@override
|
||||
String get aniskip_requires_info => 'AniSkip requer que o anime seja rastreado com MAL ou Anilist para funcionar.';
|
||||
String get aniskip_requires_info =>
|
||||
'AniSkip requer que o anime seja rastreado com MAL ou Anilist para funcionar.';
|
||||
|
||||
@override
|
||||
String get enable_aniskip => 'Habilitar AniSkip';
|
||||
|
|
@ -2714,7 +2794,8 @@ class AppLocalizationsPtBr extends AppLocalizationsPt {
|
|||
String get background => 'Fundo';
|
||||
|
||||
@override
|
||||
String get no_subtite_warning_message => 'Não tem efeito porque não há faixas de legenda neste vídeo';
|
||||
String get no_subtite_warning_message =>
|
||||
'Não tem efeito porque não há faixas de legenda neste vídeo';
|
||||
|
||||
@override
|
||||
String get grid_size => 'Tamanho da grade';
|
||||
|
|
@ -2734,10 +2815,12 @@ class AppLocalizationsPtBr extends AppLocalizationsPt {
|
|||
String get use_libass => 'Ativar libass';
|
||||
|
||||
@override
|
||||
String get use_libass_info => 'Use a renderização de legendas baseada em libass para o backend nativo.';
|
||||
String get use_libass_info =>
|
||||
'Use a renderização de legendas baseada em libass para o backend nativo.';
|
||||
|
||||
@override
|
||||
String get libass_not_disable_message => 'Desative `usar libass` nas configurações do player para poder personalizar as legendas.';
|
||||
String get libass_not_disable_message =>
|
||||
'Desative `usar libass` nas configurações do player para poder personalizar as legendas.';
|
||||
|
||||
@override
|
||||
String get torrent_stream => 'Transmissão de Torrent';
|
||||
|
|
@ -2746,7 +2829,8 @@ class AppLocalizationsPtBr extends AppLocalizationsPt {
|
|||
String get add_torrent => 'Adicionar torrent';
|
||||
|
||||
@override
|
||||
String get enter_torrent_hint_text => 'Digite o URL do magnet ou do arquivo torrent';
|
||||
String get enter_torrent_hint_text =>
|
||||
'Digite o URL do magnet ou do arquivo torrent';
|
||||
|
||||
@override
|
||||
String get torrent_url => 'URL do torrent';
|
||||
|
|
@ -2761,7 +2845,8 @@ class AppLocalizationsPtBr extends AppLocalizationsPt {
|
|||
String get use_native_http_client => 'Usar cliente HTTP nativo';
|
||||
|
||||
@override
|
||||
String get use_native_http_client_info => 'ele suporta automaticamente recursos da plataforma como VPNs, suporta mais recursos HTTP, como HTTP/3 e manuseio personalizado de redirecionamento';
|
||||
String get use_native_http_client_info =>
|
||||
'ele suporta automaticamente recursos da plataforma como VPNs, suporta mais recursos HTTP, como HTTP/3 e manuseio personalizado de redirecionamento';
|
||||
|
||||
@override
|
||||
String n_hour_ago(Object hour) {
|
||||
|
|
@ -2806,13 +2891,15 @@ class AppLocalizationsPtBr extends AppLocalizationsPt {
|
|||
String get storage => 'Armazenamento';
|
||||
|
||||
@override
|
||||
String get clear_chapter_and_episode_cache => 'Limpar cache de capítulos e episódios';
|
||||
String get clear_chapter_and_episode_cache =>
|
||||
'Limpar cache de capítulos e episódios';
|
||||
|
||||
@override
|
||||
String get cache_cleared => 'Cache limpo';
|
||||
|
||||
@override
|
||||
String get clear_chapter_or_episode_cache_on_app_launch => 'Limpar cache de capítulos/episódios ao iniciar o aplicativo';
|
||||
String get clear_chapter_or_episode_cache_on_app_launch =>
|
||||
'Limpar cache de capítulos/episódios ao iniciar o aplicativo';
|
||||
|
||||
@override
|
||||
String get app_settings => 'Configurações do aplicativo';
|
||||
|
|
@ -2821,13 +2908,15 @@ class AppLocalizationsPtBr extends AppLocalizationsPt {
|
|||
String get sources_settings => 'Configurações de fontes';
|
||||
|
||||
@override
|
||||
String get include_sensitive_settings => 'Incluir configurações sensíveis (ex.: tokens de login de rastreadores)';
|
||||
String get include_sensitive_settings =>
|
||||
'Incluir configurações sensíveis (ex.: tokens de login de rastreadores)';
|
||||
|
||||
@override
|
||||
String get create => 'Criar';
|
||||
|
||||
@override
|
||||
String get downloads_are_limited_to_wifi => 'Os downloads estão limitados apenas ao Wi-Fi';
|
||||
String get downloads_are_limited_to_wifi =>
|
||||
'Os downloads estão limitados apenas ao Wi-Fi';
|
||||
|
||||
@override
|
||||
String get manga_extensions_repo => 'Repositório de extensões de mangás';
|
||||
|
|
@ -2842,7 +2931,8 @@ class AppLocalizationsPtBr extends AppLocalizationsPt {
|
|||
String get undefined => 'Indefinido';
|
||||
|
||||
@override
|
||||
String get empty_extensions_repo => 'Você não tem nenhum URL de repositório aqui. Clique no botão de adicionar para incluir um!';
|
||||
String get empty_extensions_repo =>
|
||||
'Você não tem nenhum URL de repositório aqui. Clique no botão de adicionar para incluir um!';
|
||||
|
||||
@override
|
||||
String get add_extensions_repo => 'Adicionar URL do repositório';
|
||||
|
|
@ -2851,13 +2941,16 @@ class AppLocalizationsPtBr extends AppLocalizationsPt {
|
|||
String get remove_extensions_repo => 'Remover URL do repositório';
|
||||
|
||||
@override
|
||||
String get manage_manga_repo_urls => 'Gerenciar URLs do repositório de mangás';
|
||||
String get manage_manga_repo_urls =>
|
||||
'Gerenciar URLs do repositório de mangás';
|
||||
|
||||
@override
|
||||
String get manage_anime_repo_urls => 'Gerenciar URLs do repositório de animes';
|
||||
String get manage_anime_repo_urls =>
|
||||
'Gerenciar URLs do repositório de animes';
|
||||
|
||||
@override
|
||||
String get manage_novel_repo_urls => 'Gerenciar URLs do repositório de romances';
|
||||
String get manage_novel_repo_urls =>
|
||||
'Gerenciar URLs do repositório de romances';
|
||||
|
||||
@override
|
||||
String get url_cannot_be_empty => 'A URL não pode estar vazia';
|
||||
|
|
@ -2875,7 +2968,8 @@ class AppLocalizationsPtBr extends AppLocalizationsPt {
|
|||
String get clear_all_sources => 'Limpar todas as fontes';
|
||||
|
||||
@override
|
||||
String get clear_all_sources_msg => 'Isso limpará completamente todas as fontes do aplicativo. Tem certeza de que deseja continuar?';
|
||||
String get clear_all_sources_msg =>
|
||||
'Isso limpará completamente todas as fontes do aplicativo. Tem certeza de que deseja continuar?';
|
||||
|
||||
@override
|
||||
String get sources_cleared => 'Fontes limpas!';
|
||||
|
|
@ -2899,5 +2993,6 @@ class AppLocalizationsPtBr extends AppLocalizationsPt {
|
|||
String get load_own_subtitles => 'Carregar suas próprias legendas...';
|
||||
|
||||
@override
|
||||
String get unsupported_repo => 'Você tentou adicionar um repositório sem suporte. Consulte o servidor do Discord para obter suporte!';
|
||||
String get unsupported_repo =>
|
||||
'Você tentou adicionar um repositório sem suporte. Consulte o servidor do Discord para obter suporte!';
|
||||
}
|
||||
|
|
|
|||
|
|
@ -126,10 +126,12 @@ class AppLocalizationsRu extends AppLocalizations {
|
|||
String get other => 'Другое';
|
||||
|
||||
@override
|
||||
String get show_continue_reading_buttons => 'Показать кнопки продолжения чтения';
|
||||
String get show_continue_reading_buttons =>
|
||||
'Показать кнопки продолжения чтения';
|
||||
|
||||
@override
|
||||
String get show_continue_watching_buttons => 'Показать кнопки продолжения просмотра';
|
||||
String get show_continue_watching_buttons =>
|
||||
'Показать кнопки продолжения просмотра';
|
||||
|
||||
@override
|
||||
String get empty_library => 'Пустая библиотека';
|
||||
|
|
@ -147,7 +149,8 @@ class AppLocalizationsRu extends AppLocalizations {
|
|||
String get remove_everything_msg => 'Вы уверены? Вся история будет потеряна';
|
||||
|
||||
@override
|
||||
String get remove_all_update_msg => 'Вы уверены? Все обновления будут удалены';
|
||||
String get remove_all_update_msg =>
|
||||
'Вы уверены? Все обновления будут удалены';
|
||||
|
||||
@override
|
||||
String get ok => 'ОК';
|
||||
|
|
@ -159,7 +162,8 @@ class AppLocalizationsRu extends AppLocalizations {
|
|||
String get remove => 'Удалить';
|
||||
|
||||
@override
|
||||
String get remove_history_msg => 'Это удалит дату чтения этой главы. Вы уверены?';
|
||||
String get remove_history_msg =>
|
||||
'Это удалит дату чтения этой главы. Вы уверены?';
|
||||
|
||||
@override
|
||||
String get last_used => 'Последнее использование';
|
||||
|
|
@ -197,7 +201,8 @@ class AppLocalizationsRu extends AppLocalizations {
|
|||
}
|
||||
|
||||
@override
|
||||
String get clean_database_desc => 'Это удалит все элементы, которые не добавлены в библиотеку!';
|
||||
String get clean_database_desc =>
|
||||
'Это удалит все элементы, которые не добавлены в библиотеку!';
|
||||
|
||||
@override
|
||||
String get incognito_mode => 'Инкогнито режим';
|
||||
|
|
@ -230,7 +235,8 @@ class AppLocalizationsRu extends AppLocalizations {
|
|||
String get edit_categories => 'Изменить категории';
|
||||
|
||||
@override
|
||||
String get edit_categories_description => 'У вас нет категорий. Нажмите на кнопку плюса, чтобы создать одну для организации вашей библиотеки';
|
||||
String get edit_categories_description =>
|
||||
'У вас нет категорий. Нажмите на кнопку плюса, чтобы создать одну для организации вашей библиотеки';
|
||||
|
||||
@override
|
||||
String get add => 'Добавить';
|
||||
|
|
@ -245,7 +251,8 @@ class AppLocalizationsRu extends AppLocalizations {
|
|||
String get category_name_required => '*Требуется';
|
||||
|
||||
@override
|
||||
String get add_category_error_exist => 'Категория с этим именем уже существует!';
|
||||
String get add_category_error_exist =>
|
||||
'Категория с этим именем уже существует!';
|
||||
|
||||
@override
|
||||
String get delete_category => 'Удалить категорию';
|
||||
|
|
@ -352,7 +359,8 @@ class AppLocalizationsRu extends AppLocalizations {
|
|||
String get no_animation => 'Без анимации';
|
||||
|
||||
@override
|
||||
String get animate_page_transitions => 'Анимированные переходы между страницами';
|
||||
String get animate_page_transitions =>
|
||||
'Анимированные переходы между страницами';
|
||||
|
||||
@override
|
||||
String get crop_borders => 'Обрезать края';
|
||||
|
|
@ -382,16 +390,19 @@ class AppLocalizationsRu extends AppLocalizations {
|
|||
String get browse_subtitle => 'Источники, глобальный поиск';
|
||||
|
||||
@override
|
||||
String get only_include_pinned_sources => 'Включать только закрепленные источники';
|
||||
String get only_include_pinned_sources =>
|
||||
'Включать только закрепленные источники';
|
||||
|
||||
@override
|
||||
String get nsfw_sources => 'Источники NSFW (+18)';
|
||||
|
||||
@override
|
||||
String get nsfw_sources_show => 'Показывать в списках источников и расширений';
|
||||
String get nsfw_sources_show =>
|
||||
'Показывать в списках источников и расширений';
|
||||
|
||||
@override
|
||||
String get nsfw_sources_info => 'Это не предотвращает появление контента NSFW (18+) в приложении от неофициальных или неправильно помеченных расширений';
|
||||
String get nsfw_sources_info =>
|
||||
'Это не предотвращает появление контента NSFW (18+) в приложении от неофициальных или неправильно помеченных расширений';
|
||||
|
||||
@override
|
||||
String get version => 'Версия';
|
||||
|
|
@ -638,7 +649,8 @@ class AppLocalizationsRu extends AppLocalizations {
|
|||
String get sync_logged => 'Вход выполнен успешно';
|
||||
|
||||
@override
|
||||
String get syncing_subtitle => 'Синхронизируйте ваш прогресс на нескольких устройствах через собственный сервер. Убедитесь, что вы сначала загрузили, если это ваш первый раз синхронизации, или скачайте перед использованием (авто) синхронизации на этом устройстве!';
|
||||
String get syncing_subtitle =>
|
||||
'Синхронизируйте ваш прогресс на нескольких устройствах через собственный сервер. Убедитесь, что вы сначала загрузили, если это ваш первый раз синхронизации, или скачайте перед использованием (авто) синхронизации на этом устройстве!';
|
||||
|
||||
@override
|
||||
String get last_sync => 'Последняя синхронизация: ';
|
||||
|
|
@ -653,7 +665,8 @@ class AppLocalizationsRu extends AppLocalizations {
|
|||
String get sync_server => 'Адрес сервера синхронизации';
|
||||
|
||||
@override
|
||||
String get sync_login_invalid_creds => 'Неверный адрес электронной почты или пароль';
|
||||
String get sync_login_invalid_creds =>
|
||||
'Неверный адрес электронной почты или пароль';
|
||||
|
||||
@override
|
||||
String get sync_checking => 'Проверка синхронизации...';
|
||||
|
|
@ -692,13 +705,16 @@ class AppLocalizationsRu extends AppLocalizations {
|
|||
String get sync_button_download => 'Полное скачивание';
|
||||
|
||||
@override
|
||||
String get sync_confirm_snapshot => 'Запросите у сервера создание удаленной резервной копии!';
|
||||
String get sync_confirm_snapshot =>
|
||||
'Запросите у сервера создание удаленной резервной копии!';
|
||||
|
||||
@override
|
||||
String get sync_confirm_upload => 'Полная загрузка полностью заменит удаленные данные на ваши текущие!';
|
||||
String get sync_confirm_upload =>
|
||||
'Полная загрузка полностью заменит удаленные данные на ваши текущие!';
|
||||
|
||||
@override
|
||||
String get sync_confirm_download => 'Полное скачивание полностью заменит ваши текущие данные на удаленные!';
|
||||
String get sync_confirm_download =>
|
||||
'Полное скачивание полностью заменит ваши текущие данные на удаленные!';
|
||||
|
||||
@override
|
||||
String get sync_on => 'Включить синхронизацию';
|
||||
|
|
@ -737,7 +753,8 @@ class AppLocalizationsRu extends AppLocalizations {
|
|||
String get sync_snapshot_deleted => 'Снимок удален!';
|
||||
|
||||
@override
|
||||
String get sync_snapshot_no_data => 'Нет данных для создания снимка! Сначала выполните полную загрузку!';
|
||||
String get sync_snapshot_no_data =>
|
||||
'Нет данных для создания снимка! Сначала выполните полную загрузку!';
|
||||
|
||||
@override
|
||||
String get sync_browse_snapshots => 'Просмотр старых резервных копий';
|
||||
|
|
@ -755,7 +772,8 @@ class AppLocalizationsRu extends AppLocalizations {
|
|||
String get sync_auto => 'Автосинхронизация';
|
||||
|
||||
@override
|
||||
String get sync_auto_warning => 'Автосинхронизация в настоящее время является экспериментальной функцией!';
|
||||
String get sync_auto_warning =>
|
||||
'Автосинхронизация в настоящее время является экспериментальной функцией!';
|
||||
|
||||
@override
|
||||
String get sync_auto_off => 'Выключено';
|
||||
|
|
@ -800,13 +818,15 @@ class AppLocalizationsRu extends AppLocalizations {
|
|||
String get reorder_navigation => 'Настроить навигацию';
|
||||
|
||||
@override
|
||||
String get reorder_navigation_description => 'Перестройте и настройте каждую навигацию в соответствии с вашими потребностями.';
|
||||
String get reorder_navigation_description =>
|
||||
'Перестройте и настройте каждую навигацию в соответствии с вашими потребностями.';
|
||||
|
||||
@override
|
||||
String get full_screen_player => 'Использовать полноэкранный режим';
|
||||
|
||||
@override
|
||||
String get full_screen_player_info => 'Автоматически использовать полноэкранный режим при воспроизведении видео.';
|
||||
String get full_screen_player_info =>
|
||||
'Автоматически использовать полноэкранный режим при воспроизведении видео.';
|
||||
|
||||
@override
|
||||
String episode_progress(Object n) {
|
||||
|
|
@ -916,7 +936,8 @@ class AppLocalizationsRu extends AppLocalizations {
|
|||
String get page_preload_amount => 'Количество предзагружаемых страниц';
|
||||
|
||||
@override
|
||||
String get page_preload_amount_subtitle => 'Количество страниц для предварительной загрузки при чтении. Большие значения обеспечивают более плавное чтение, но требуют больше кэша и сетевого трафика.';
|
||||
String get page_preload_amount_subtitle =>
|
||||
'Количество страниц для предварительной загрузки при чтении. Большие значения обеспечивают более плавное чтение, но требуют больше кэша и сетевого трафика.';
|
||||
|
||||
@override
|
||||
String get image_loading_error => 'Это изображение не удалось загрузить';
|
||||
|
|
@ -937,7 +958,8 @@ class AppLocalizationsRu extends AppLocalizations {
|
|||
String get auto_extensions_updates => 'Автоматические обновления расширений';
|
||||
|
||||
@override
|
||||
String get auto_extensions_updates_subtitle => 'Автоматически обновлять расширение при появлении новой версии.';
|
||||
String get auto_extensions_updates_subtitle =>
|
||||
'Автоматически обновлять расширение при появлении новой версии.';
|
||||
|
||||
@override
|
||||
String get reading_mode => 'Режим чтения';
|
||||
|
|
@ -1004,16 +1026,19 @@ class AppLocalizationsRu extends AppLocalizations {
|
|||
String get create_backup => 'Создать резервную копию';
|
||||
|
||||
@override
|
||||
String get create_backup_dialog_title => 'Что вы хотите сохранить в резервной копии?';
|
||||
String get create_backup_dialog_title =>
|
||||
'Что вы хотите сохранить в резервной копии?';
|
||||
|
||||
@override
|
||||
String get create_backup_subtitle => 'Может использоваться для восстановления текущей библиотеки';
|
||||
String get create_backup_subtitle =>
|
||||
'Может использоваться для восстановления текущей библиотеки';
|
||||
|
||||
@override
|
||||
String get restore_backup => 'Восстановить из резервной копии';
|
||||
|
||||
@override
|
||||
String get restore_backup_subtitle => 'Восстановить библиотеку из резервной копии';
|
||||
String get restore_backup_subtitle =>
|
||||
'Восстановить библиотеку из резервной копии';
|
||||
|
||||
@override
|
||||
String get automatic_backups => 'Автоматические резервные копии';
|
||||
|
|
@ -1028,13 +1053,16 @@ class AppLocalizationsRu extends AppLocalizations {
|
|||
String get backup_options => 'Опции резервного копирования';
|
||||
|
||||
@override
|
||||
String get backup_options_dialog_title => 'Что вы хотите включить в резервную копию?';
|
||||
String get backup_options_dialog_title =>
|
||||
'Что вы хотите включить в резервную копию?';
|
||||
|
||||
@override
|
||||
String get backup_options_subtitle => 'Какую информацию включить в резервную копию';
|
||||
String get backup_options_subtitle =>
|
||||
'Какую информацию включить в резервную копию';
|
||||
|
||||
@override
|
||||
String get backup_and_restore_warning_info => 'Следует хранить копии резервных копий в других местах';
|
||||
String get backup_and_restore_warning_info =>
|
||||
'Следует хранить копии резервных копий в других местах';
|
||||
|
||||
@override
|
||||
String get library_entries => 'Записи библиотеки';
|
||||
|
|
@ -1058,13 +1086,15 @@ class AppLocalizationsRu extends AppLocalizations {
|
|||
String get weekly => 'Еженедельно';
|
||||
|
||||
@override
|
||||
String get restore_backup_warning_title => 'Восстановление резервной копии перезапишет все существующие данные.\n\nПродолжить восстановление?';
|
||||
String get restore_backup_warning_title =>
|
||||
'Восстановление резервной копии перезапишет все существующие данные.\n\nПродолжить восстановление?';
|
||||
|
||||
@override
|
||||
String get services => 'Сервисы';
|
||||
|
||||
@override
|
||||
String get tracking_warning_info => 'Односторонняя синхронизация для обновления прогресса чтения в службах отслеживания. Настройте отслеживание для отдельных записей из их кнопки отслеживания.';
|
||||
String get tracking_warning_info =>
|
||||
'Односторонняя синхронизация для обновления прогресса чтения в службах отслеживания. Настройте отслеживание для отдельных записей из их кнопки отслеживания.';
|
||||
|
||||
@override
|
||||
String get use_page_tap_zones => 'Использовать зоны касания страницы';
|
||||
|
|
@ -1097,13 +1127,16 @@ class AppLocalizationsRu extends AppLocalizations {
|
|||
String get player => 'Игрок';
|
||||
|
||||
@override
|
||||
String get markEpisodeAsSeenSetting => 'В какой момент отметить эпизод как просмотренный';
|
||||
String get markEpisodeAsSeenSetting =>
|
||||
'В какой момент отметить эпизод как просмотренный';
|
||||
|
||||
@override
|
||||
String get default_skip_intro_length => 'Стандартная длина пропуска вступления';
|
||||
String get default_skip_intro_length =>
|
||||
'Стандартная длина пропуска вступления';
|
||||
|
||||
@override
|
||||
String get default_playback_speed_length => 'Стандартная длина скорости воспроизведения';
|
||||
String get default_playback_speed_length =>
|
||||
'Стандартная длина скорости воспроизведения';
|
||||
|
||||
@override
|
||||
String get updateProgressAfterReading => 'Обновить прогресс после чтения';
|
||||
|
|
@ -1115,10 +1148,12 @@ class AppLocalizationsRu extends AppLocalizations {
|
|||
String get show_extensions => 'Показать расширения';
|
||||
|
||||
@override
|
||||
String get default_skip_forward_skip_length => 'Длина пропуска вперед по умолчанию';
|
||||
String get default_skip_forward_skip_length =>
|
||||
'Длина пропуска вперед по умолчанию';
|
||||
|
||||
@override
|
||||
String get aniskip_requires_info => 'AniSkip требует отслеживания аниме с использованием MAL или Anilist для работы.';
|
||||
String get aniskip_requires_info =>
|
||||
'AniSkip требует отслеживания аниме с использованием MAL или Anilist для работы.';
|
||||
|
||||
@override
|
||||
String get enable_aniskip => 'Включить AniSkip';
|
||||
|
|
@ -1267,7 +1302,8 @@ class AppLocalizationsRu extends AppLocalizations {
|
|||
String get background => 'Фон';
|
||||
|
||||
@override
|
||||
String get no_subtite_warning_message => 'Не имеет эффекта, потому что в этом видео нет субтитров';
|
||||
String get no_subtite_warning_message =>
|
||||
'Не имеет эффекта, потому что в этом видео нет субтитров';
|
||||
|
||||
@override
|
||||
String get grid_size => 'Размер сетки';
|
||||
|
|
@ -1287,10 +1323,12 @@ class AppLocalizationsRu extends AppLocalizations {
|
|||
String get use_libass => 'Включить libass';
|
||||
|
||||
@override
|
||||
String get use_libass_info => 'Используйте рендеринг субтитров на основе libass для нативного бэкенда.';
|
||||
String get use_libass_info =>
|
||||
'Используйте рендеринг субтитров на основе libass для нативного бэкенда.';
|
||||
|
||||
@override
|
||||
String get libass_not_disable_message => 'Отключите `use libass` в настройках плеера, чтобы иметь возможность настраивать субтитры.';
|
||||
String get libass_not_disable_message =>
|
||||
'Отключите `use libass` в настройках плеера, чтобы иметь возможность настраивать субтитры.';
|
||||
|
||||
@override
|
||||
String get torrent_stream => 'Торрент-стрим';
|
||||
|
|
@ -1299,7 +1337,8 @@ class AppLocalizationsRu extends AppLocalizations {
|
|||
String get add_torrent => 'Добавить торрент';
|
||||
|
||||
@override
|
||||
String get enter_torrent_hint_text => 'Введите magnet-ссылку или URL торрент-файла';
|
||||
String get enter_torrent_hint_text =>
|
||||
'Введите magnet-ссылку или URL торрент-файла';
|
||||
|
||||
@override
|
||||
String get torrent_url => 'URL торрента';
|
||||
|
|
@ -1314,7 +1353,8 @@ class AppLocalizationsRu extends AppLocalizations {
|
|||
String get use_native_http_client => 'Использовать нативный HTTP-клиент';
|
||||
|
||||
@override
|
||||
String get use_native_http_client_info => 'он автоматически поддерживает функции платформы, такие как VPN, поддерживает больше функций HTTP, таких как HTTP/3 и пользовательская обработка перенаправлений';
|
||||
String get use_native_http_client_info =>
|
||||
'он автоматически поддерживает функции платформы, такие как VPN, поддерживает больше функций HTTP, таких как HTTP/3 и пользовательская обработка перенаправлений';
|
||||
|
||||
@override
|
||||
String n_hour_ago(Object hour) {
|
||||
|
|
@ -1365,7 +1405,8 @@ class AppLocalizationsRu extends AppLocalizations {
|
|||
String get cache_cleared => 'Кэш очищен';
|
||||
|
||||
@override
|
||||
String get clear_chapter_or_episode_cache_on_app_launch => 'Очистить кэш глав/эпизодов при запуске приложения';
|
||||
String get clear_chapter_or_episode_cache_on_app_launch =>
|
||||
'Очистить кэш глав/эпизодов при запуске приложения';
|
||||
|
||||
@override
|
||||
String get app_settings => 'Настройки приложения';
|
||||
|
|
@ -1374,13 +1415,15 @@ class AppLocalizationsRu extends AppLocalizations {
|
|||
String get sources_settings => 'Настройки источников';
|
||||
|
||||
@override
|
||||
String get include_sensitive_settings => 'Включить чувствительные настройки (например, токены для входа в трекер)';
|
||||
String get include_sensitive_settings =>
|
||||
'Включить чувствительные настройки (например, токены для входа в трекер)';
|
||||
|
||||
@override
|
||||
String get create => 'Создать';
|
||||
|
||||
@override
|
||||
String get downloads_are_limited_to_wifi => 'Загрузки ограничены только Wi-Fi';
|
||||
String get downloads_are_limited_to_wifi =>
|
||||
'Загрузки ограничены только Wi-Fi';
|
||||
|
||||
@override
|
||||
String get manga_extensions_repo => 'Репозиторий расширений манги';
|
||||
|
|
@ -1395,7 +1438,8 @@ class AppLocalizationsRu extends AppLocalizations {
|
|||
String get undefined => 'Не определено';
|
||||
|
||||
@override
|
||||
String get empty_extensions_repo => 'У вас здесь нет URL-адресов репозитория. Нажмите кнопку добавления, чтобы добавить один!';
|
||||
String get empty_extensions_repo =>
|
||||
'У вас здесь нет URL-адресов репозитория. Нажмите кнопку добавления, чтобы добавить один!';
|
||||
|
||||
@override
|
||||
String get add_extensions_repo => 'Добавить URL репозитория';
|
||||
|
|
@ -1404,13 +1448,16 @@ class AppLocalizationsRu extends AppLocalizations {
|
|||
String get remove_extensions_repo => 'Удалить URL репозитория';
|
||||
|
||||
@override
|
||||
String get manage_manga_repo_urls => 'Управление URL-адресами репозитория манги';
|
||||
String get manage_manga_repo_urls =>
|
||||
'Управление URL-адресами репозитория манги';
|
||||
|
||||
@override
|
||||
String get manage_anime_repo_urls => 'Управление URL-адресами репозитория аниме';
|
||||
String get manage_anime_repo_urls =>
|
||||
'Управление URL-адресами репозитория аниме';
|
||||
|
||||
@override
|
||||
String get manage_novel_repo_urls => 'Управление URL-адресами репозитория новелл';
|
||||
String get manage_novel_repo_urls =>
|
||||
'Управление URL-адресами репозитория новелл';
|
||||
|
||||
@override
|
||||
String get url_cannot_be_empty => 'URL не может быть пустым';
|
||||
|
|
@ -1428,7 +1475,8 @@ class AppLocalizationsRu extends AppLocalizations {
|
|||
String get clear_all_sources => 'Очистить все источники';
|
||||
|
||||
@override
|
||||
String get clear_all_sources_msg => 'Это полностью очистит все источники приложения. Вы уверены, что хотите продолжить?';
|
||||
String get clear_all_sources_msg =>
|
||||
'Это полностью очистит все источники приложения. Вы уверены, что хотите продолжить?';
|
||||
|
||||
@override
|
||||
String get sources_cleared => 'Источники очищены!';
|
||||
|
|
@ -1457,5 +1505,6 @@ class AppLocalizationsRu extends AppLocalizations {
|
|||
}
|
||||
|
||||
@override
|
||||
String get unsupported_repo => 'Вы попытались добавить неподдерживаемый репозиторий. Пожалуйста, обратитесь за поддержкой на сервер discord!';
|
||||
String get unsupported_repo =>
|
||||
'Вы попытались добавить неподдерживаемый репозиторий. Пожалуйста, обратитесь за поддержкой на сервер discord!';
|
||||
}
|
||||
|
|
|
|||
|
|
@ -144,10 +144,12 @@ class AppLocalizationsTh extends AppLocalizations {
|
|||
String get remove_everything => 'ลบออกทุกอย่าง';
|
||||
|
||||
@override
|
||||
String get remove_everything_msg => 'ประวัติทุกอย่างจะหายไป คุณแน่ใจนะว่าจะลบ?';
|
||||
String get remove_everything_msg =>
|
||||
'ประวัติทุกอย่างจะหายไป คุณแน่ใจนะว่าจะลบ?';
|
||||
|
||||
@override
|
||||
String get remove_all_update_msg => 'คุณแน่ใจหรือไม่? การอัปเดตทั้งหมดจะถูกลบ';
|
||||
String get remove_all_update_msg =>
|
||||
'คุณแน่ใจหรือไม่? การอัปเดตทั้งหมดจะถูกลบ';
|
||||
|
||||
@override
|
||||
String get ok => 'ตกลง';
|
||||
|
|
@ -159,7 +161,8 @@ class AppLocalizationsTh extends AppLocalizations {
|
|||
String get remove => 'ลบ';
|
||||
|
||||
@override
|
||||
String get remove_history_msg => 'นี่จะเป็นการลบวันที่อ่านของตอนนี้ คุณแน่ใจนะ?';
|
||||
String get remove_history_msg =>
|
||||
'นี่จะเป็นการลบวันที่อ่านของตอนนี้ คุณแน่ใจนะ?';
|
||||
|
||||
@override
|
||||
String get last_used => 'ใช้ล่าสุด';
|
||||
|
|
@ -197,7 +200,8 @@ class AppLocalizationsTh extends AppLocalizations {
|
|||
}
|
||||
|
||||
@override
|
||||
String get clean_database_desc => 'สิ่งนี้จะลบรายการทั้งหมดที่ไม่ได้เพิ่มในห้องสมุด!';
|
||||
String get clean_database_desc =>
|
||||
'สิ่งนี้จะลบรายการทั้งหมดที่ไม่ได้เพิ่มในห้องสมุด!';
|
||||
|
||||
@override
|
||||
String get incognito_mode => 'โหมดไม่ระบุตัวตน';
|
||||
|
|
@ -230,7 +234,8 @@ class AppLocalizationsTh extends AppLocalizations {
|
|||
String get edit_categories => 'แก้ไขหมวดหมู่';
|
||||
|
||||
@override
|
||||
String get edit_categories_description => 'คุณยังไม่ได้สร้างหมวดหมู่ แตะปุ่มบวกสร้างใหม่ขึ้นมาเพื่อจัดสรรชั้นหนังสือของคุณ';
|
||||
String get edit_categories_description =>
|
||||
'คุณยังไม่ได้สร้างหมวดหมู่ แตะปุ่มบวกสร้างใหม่ขึ้นมาเพื่อจัดสรรชั้นหนังสือของคุณ';
|
||||
|
||||
@override
|
||||
String get add => 'เพิ่ม';
|
||||
|
|
@ -340,7 +345,8 @@ class AppLocalizationsTh extends AppLocalizations {
|
|||
String get reading_mode_webtoon => 'เว็บตูน';
|
||||
|
||||
@override
|
||||
String get double_tap_animation_speed => 'ความเร็วการเคลื่อนไหวของการแตะสองครั้ง';
|
||||
String get double_tap_animation_speed =>
|
||||
'ความเร็วการเคลื่อนไหวของการแตะสองครั้ง';
|
||||
|
||||
@override
|
||||
String get normal => 'ปกติ';
|
||||
|
|
@ -391,7 +397,8 @@ class AppLocalizationsTh extends AppLocalizations {
|
|||
String get nsfw_sources_show => 'แสดงในแหลงที่มาและรายการส่วนขยาย';
|
||||
|
||||
@override
|
||||
String get nsfw_sources_info => 'สิ่งนี้ไม่ได้ป้องกันส่วนขยายที่ไม่เป็นทางการหรือที่อาจถูกตั้งค่าสถานะผิดพลาดจากการแสดงเนื้อหา NSFW (18+) ภายในแอป';
|
||||
String get nsfw_sources_info =>
|
||||
'สิ่งนี้ไม่ได้ป้องกันส่วนขยายที่ไม่เป็นทางการหรือที่อาจถูกตั้งค่าสถานะผิดพลาดจากการแสดงเนื้อหา NSFW (18+) ภายในแอป';
|
||||
|
||||
@override
|
||||
String get version => 'เวอร์ชั่น';
|
||||
|
|
@ -638,7 +645,8 @@ class AppLocalizationsTh extends AppLocalizations {
|
|||
String get sync_logged => 'เข้าสู่ระบบสำเร็จ';
|
||||
|
||||
@override
|
||||
String get syncing_subtitle => 'ซิงค์ความคืบหน้าของคุณระหว่างอุปกรณ์หลายเครื่องผ่านเซิร์ฟเวอร์ที่โฮสต์เอง ตรวจสอบให้แน่ใจว่าได้อัปโหลดก่อนหากเป็นครั้งแรกที่คุณซิงค์ หรือดาวน์โหลดก่อนที่จะใช้การซิงค์ (อัตโนมัติ) บนอุปกรณ์นี้!';
|
||||
String get syncing_subtitle =>
|
||||
'ซิงค์ความคืบหน้าของคุณระหว่างอุปกรณ์หลายเครื่องผ่านเซิร์ฟเวอร์ที่โฮสต์เอง ตรวจสอบให้แน่ใจว่าได้อัปโหลดก่อนหากเป็นครั้งแรกที่คุณซิงค์ หรือดาวน์โหลดก่อนที่จะใช้การซิงค์ (อัตโนมัติ) บนอุปกรณ์นี้!';
|
||||
|
||||
@override
|
||||
String get last_sync => 'ซิงค์ล่าสุดที่: ';
|
||||
|
|
@ -692,13 +700,16 @@ class AppLocalizationsTh extends AppLocalizations {
|
|||
String get sync_button_download => 'ดาวน์โหลดทั้งหมด';
|
||||
|
||||
@override
|
||||
String get sync_confirm_snapshot => 'ขอให้เซิร์ฟเวอร์สร้างข้อมูลสำรองระยะไกล!';
|
||||
String get sync_confirm_snapshot =>
|
||||
'ขอให้เซิร์ฟเวอร์สร้างข้อมูลสำรองระยะไกล!';
|
||||
|
||||
@override
|
||||
String get sync_confirm_upload => 'การอัปโหลดทั้งหมดจะทำการแทนที่ข้อมูลระยะไกลด้วยข้อมูลปัจจุบันของคุณ!';
|
||||
String get sync_confirm_upload =>
|
||||
'การอัปโหลดทั้งหมดจะทำการแทนที่ข้อมูลระยะไกลด้วยข้อมูลปัจจุบันของคุณ!';
|
||||
|
||||
@override
|
||||
String get sync_confirm_download => 'การดาวน์โหลดทั้งหมดจะทำการแทนที่ข้อมูลปัจจุบันของคุณด้วยข้อมูลจากระยะไกล!';
|
||||
String get sync_confirm_download =>
|
||||
'การดาวน์โหลดทั้งหมดจะทำการแทนที่ข้อมูลปัจจุบันของคุณด้วยข้อมูลจากระยะไกล!';
|
||||
|
||||
@override
|
||||
String get sync_on => 'เปิดการซิงค์';
|
||||
|
|
@ -737,7 +748,8 @@ class AppLocalizationsTh extends AppLocalizations {
|
|||
String get sync_snapshot_deleted => 'ลบภาพรวมแล้ว!';
|
||||
|
||||
@override
|
||||
String get sync_snapshot_no_data => 'ไม่มีข้อมูลสำหรับสร้างภาพรวม! โปรดอัปโหลดทั้งหมดก่อน!';
|
||||
String get sync_snapshot_no_data =>
|
||||
'ไม่มีข้อมูลสำหรับสร้างภาพรวม! โปรดอัปโหลดทั้งหมดก่อน!';
|
||||
|
||||
@override
|
||||
String get sync_browse_snapshots => 'เรียกดูข้อมูลสำรองเก่า';
|
||||
|
|
@ -800,13 +812,15 @@ class AppLocalizationsTh extends AppLocalizations {
|
|||
String get reorder_navigation => 'ปรับแต่งการนำทาง';
|
||||
|
||||
@override
|
||||
String get reorder_navigation_description => 'จัดเรียงและปรับแต่งการนำทางแต่ละรายการตามความต้องการของคุณ';
|
||||
String get reorder_navigation_description =>
|
||||
'จัดเรียงและปรับแต่งการนำทางแต่ละรายการตามความต้องการของคุณ';
|
||||
|
||||
@override
|
||||
String get full_screen_player => 'ใช้โหมดเต็มหน้าจอ';
|
||||
|
||||
@override
|
||||
String get full_screen_player_info => 'ใช้โหมดเต็มหน้าจอโดยอัตโนมัติเมื่อเล่นวิดีโอ';
|
||||
String get full_screen_player_info =>
|
||||
'ใช้โหมดเต็มหน้าจอโดยอัตโนมัติเมื่อเล่นวิดีโอ';
|
||||
|
||||
@override
|
||||
String episode_progress(Object n) {
|
||||
|
|
@ -916,7 +930,8 @@ class AppLocalizationsTh extends AppLocalizations {
|
|||
String get page_preload_amount => 'จำนวนการโหลดล่วงหน้า';
|
||||
|
||||
@override
|
||||
String get page_preload_amount_subtitle => 'จำนวนหน้าที่จะโหลดไว้ล่วงหน้าเมื่ออ่าน ค่าที่สูงจะส่งผลให้ประสบการณ์การอ่านไหลลื่นยิ่งขึ้น โดยใช้แคชและเครือข่ายที่มากขึ้น';
|
||||
String get page_preload_amount_subtitle =>
|
||||
'จำนวนหน้าที่จะโหลดไว้ล่วงหน้าเมื่ออ่าน ค่าที่สูงจะส่งผลให้ประสบการณ์การอ่านไหลลื่นยิ่งขึ้น โดยใช้แคชและเครือข่ายที่มากขึ้น';
|
||||
|
||||
@override
|
||||
String get image_loading_error => 'ไม่สามารถโหลดรูปภาพนี้ได้';
|
||||
|
|
@ -937,7 +952,8 @@ class AppLocalizationsTh extends AppLocalizations {
|
|||
String get auto_extensions_updates => 'อัพเดทส่วนขยายอัตโนมัติ';
|
||||
|
||||
@override
|
||||
String get auto_extensions_updates_subtitle => 'จะทำการอัพเดทส่วนขยายเมื่อมีเวอร์ชั่นใหม่พร้อมใช้งานโดยอัตโนมัติ';
|
||||
String get auto_extensions_updates_subtitle =>
|
||||
'จะทำการอัพเดทส่วนขยายเมื่อมีเวอร์ชั่นใหม่พร้อมใช้งานโดยอัตโนมัติ';
|
||||
|
||||
@override
|
||||
String get reading_mode => 'โหมดการอ่าน';
|
||||
|
|
@ -1007,7 +1023,8 @@ class AppLocalizationsTh extends AppLocalizations {
|
|||
String get create_backup_dialog_title => 'คุณต้องการสำรองอะไรบ้าง?';
|
||||
|
||||
@override
|
||||
String get create_backup_subtitle => 'สามารถใช้ในการกู้คืนชั้นหนังสือปัจจุบัน';
|
||||
String get create_backup_subtitle =>
|
||||
'สามารถใช้ในการกู้คืนชั้นหนังสือปัจจุบัน';
|
||||
|
||||
@override
|
||||
String get restore_backup => 'กู้คืนการสำรอง';
|
||||
|
|
@ -1031,10 +1048,12 @@ class AppLocalizationsTh extends AppLocalizations {
|
|||
String get backup_options_dialog_title => 'คุณต้องการสำรองอะไรบ้าง?';
|
||||
|
||||
@override
|
||||
String get backup_options_subtitle => 'ข้อมูลอะไรบ้างที่ต้องการรวมไว้ในไฟล์สำรอง';
|
||||
String get backup_options_subtitle =>
|
||||
'ข้อมูลอะไรบ้างที่ต้องการรวมไว้ในไฟล์สำรอง';
|
||||
|
||||
@override
|
||||
String get backup_and_restore_warning_info => 'คุณควรเก็บสำเนาไฟล์สำรองไว้ที่อื่นด้วย';
|
||||
String get backup_and_restore_warning_info =>
|
||||
'คุณควรเก็บสำเนาไฟล์สำรองไว้ที่อื่นด้วย';
|
||||
|
||||
@override
|
||||
String get library_entries => 'รายการชั้นหนังสือ';
|
||||
|
|
@ -1058,13 +1077,15 @@ class AppLocalizationsTh extends AppLocalizations {
|
|||
String get weekly => 'ทุกสัปดาห์';
|
||||
|
||||
@override
|
||||
String get restore_backup_warning_title => 'การคืนค่าข้อมูลสำรองจะเขียนทับข้อมูลที่มีอยู่ทั้งหมด\n\nต้องการคืนค่าต่อหรือไม่';
|
||||
String get restore_backup_warning_title =>
|
||||
'การคืนค่าข้อมูลสำรองจะเขียนทับข้อมูลที่มีอยู่ทั้งหมด\n\nต้องการคืนค่าต่อหรือไม่';
|
||||
|
||||
@override
|
||||
String get services => 'บริการ';
|
||||
|
||||
@override
|
||||
String get tracking_warning_info => 'การซิงค์ทางเดียวจะอัพเดทความคืบหน้าบทในบริการการติดตาม กำหนเาค่าการติดตั้งสำหรับรายบุคคลจากปุ่มการติดตามS';
|
||||
String get tracking_warning_info =>
|
||||
'การซิงค์ทางเดียวจะอัพเดทความคืบหน้าบทในบริการการติดตาม กำหนเาค่าการติดตั้งสำหรับรายบุคคลจากปุ่มการติดตามS';
|
||||
|
||||
@override
|
||||
String get use_page_tap_zones => 'ใช้โซนการแตะหน้า';
|
||||
|
|
@ -1097,13 +1118,15 @@ class AppLocalizationsTh extends AppLocalizations {
|
|||
String get player => 'ตัวเล่น';
|
||||
|
||||
@override
|
||||
String get markEpisodeAsSeenSetting => 'กำหนดจุดที่จะทำเครื่องหมายตอนว่าดูแล้ว';
|
||||
String get markEpisodeAsSeenSetting =>
|
||||
'กำหนดจุดที่จะทำเครื่องหมายตอนว่าดูแล้ว';
|
||||
|
||||
@override
|
||||
String get default_skip_intro_length => 'ค่าพื้นฐานความยาวการเข้าอินโทร';
|
||||
|
||||
@override
|
||||
String get default_playback_speed_length => 'ค่าพื้นฐานความยาวความเร็วการเล่น';
|
||||
String get default_playback_speed_length =>
|
||||
'ค่าพื้นฐานความยาวความเร็วการเล่น';
|
||||
|
||||
@override
|
||||
String get updateProgressAfterReading => 'อัพเดทความคืบหน้าหลังอ่าน';
|
||||
|
|
@ -1115,10 +1138,12 @@ class AppLocalizationsTh extends AppLocalizations {
|
|||
String get show_extensions => 'แสดงส่วนขยาย';
|
||||
|
||||
@override
|
||||
String get default_skip_forward_skip_length => 'ค่าพื้นฐานความยาวการข้ามไปข้างหน้า';
|
||||
String get default_skip_forward_skip_length =>
|
||||
'ค่าพื้นฐานความยาวการข้ามไปข้างหน้า';
|
||||
|
||||
@override
|
||||
String get aniskip_requires_info => 'AniSkip จำเป็นต้องใช้การติดตามอนิเมะ MAL หรือ Anilist เพื่อใช้งาน';
|
||||
String get aniskip_requires_info =>
|
||||
'AniSkip จำเป็นต้องใช้การติดตามอนิเมะ MAL หรือ Anilist เพื่อใช้งาน';
|
||||
|
||||
@override
|
||||
String get enable_aniskip => 'เปิดใช้ AniSkip';
|
||||
|
|
@ -1267,7 +1292,8 @@ class AppLocalizationsTh extends AppLocalizations {
|
|||
String get background => 'พื้นหลัง';
|
||||
|
||||
@override
|
||||
String get no_subtite_warning_message => 'ไม่มีผลกระทบเนื่องจากไม่มีคำบรรยายใด ๆ ในวีดีโอนี้';
|
||||
String get no_subtite_warning_message =>
|
||||
'ไม่มีผลกระทบเนื่องจากไม่มีคำบรรยายใด ๆ ในวีดีโอนี้';
|
||||
|
||||
@override
|
||||
String get grid_size => 'ขนาดตาราง';
|
||||
|
|
@ -1287,10 +1313,12 @@ class AppLocalizationsTh extends AppLocalizations {
|
|||
String get use_libass => 'เปิดใช้งาน libass';
|
||||
|
||||
@override
|
||||
String get use_libass_info => 'ใช้การเรนเดอร์คำบรรยายที่ใช้ libass สำหรับแบ็คเอนด์พื้นเมือง';
|
||||
String get use_libass_info =>
|
||||
'ใช้การเรนเดอร์คำบรรยายที่ใช้ libass สำหรับแบ็คเอนด์พื้นเมือง';
|
||||
|
||||
@override
|
||||
String get libass_not_disable_message => 'ปิดการใช้งาน `ใช้ libass` ในการตั้งค่าเพลเยอร์เพื่อให้สามารถปรับแต่งคำบรรยายได้';
|
||||
String get libass_not_disable_message =>
|
||||
'ปิดการใช้งาน `ใช้ libass` ในการตั้งค่าเพลเยอร์เพื่อให้สามารถปรับแต่งคำบรรยายได้';
|
||||
|
||||
@override
|
||||
String get torrent_stream => 'สตรีมทอเรนต์';
|
||||
|
|
@ -1314,7 +1342,8 @@ class AppLocalizationsTh extends AppLocalizations {
|
|||
String get use_native_http_client => 'ใช้ไคลเอนต์ HTTP พื้นเมือง';
|
||||
|
||||
@override
|
||||
String get use_native_http_client_info => 'รองรับฟีเจอร์ของแพลตฟอร์มโดยอัตโนมัติ เช่น VPNs รองรับฟีเจอร์ HTTP มากขึ้น เช่น HTTP/3 และการจัดการการเปลี่ยนเส้นทางที่กำหนดเอง';
|
||||
String get use_native_http_client_info =>
|
||||
'รองรับฟีเจอร์ของแพลตฟอร์มโดยอัตโนมัติ เช่น VPNs รองรับฟีเจอร์ HTTP มากขึ้น เช่น HTTP/3 และการจัดการการเปลี่ยนเส้นทางที่กำหนดเอง';
|
||||
|
||||
@override
|
||||
String n_hour_ago(Object hour) {
|
||||
|
|
@ -1365,7 +1394,8 @@ class AppLocalizationsTh extends AppLocalizations {
|
|||
String get cache_cleared => 'ล้างแคชแล้ว';
|
||||
|
||||
@override
|
||||
String get clear_chapter_or_episode_cache_on_app_launch => 'ล้างแคชบท/ตอนเมื่อเปิดแอป';
|
||||
String get clear_chapter_or_episode_cache_on_app_launch =>
|
||||
'ล้างแคชบท/ตอนเมื่อเปิดแอป';
|
||||
|
||||
@override
|
||||
String get app_settings => 'การตั้งค่าแอป';
|
||||
|
|
@ -1374,13 +1404,15 @@ class AppLocalizationsTh extends AppLocalizations {
|
|||
String get sources_settings => 'การตั้งค่าแหล่งข้อมูล';
|
||||
|
||||
@override
|
||||
String get include_sensitive_settings => 'รวมการตั้งค่าที่อ่อนไหว (เช่น โทเค็นการเข้าสู่ระบบของตัวติดตาม)';
|
||||
String get include_sensitive_settings =>
|
||||
'รวมการตั้งค่าที่อ่อนไหว (เช่น โทเค็นการเข้าสู่ระบบของตัวติดตาม)';
|
||||
|
||||
@override
|
||||
String get create => 'สร้าง';
|
||||
|
||||
@override
|
||||
String get downloads_are_limited_to_wifi => 'การดาวน์โหลดจำกัดเฉพาะ Wi-Fi เท่านั้น';
|
||||
String get downloads_are_limited_to_wifi =>
|
||||
'การดาวน์โหลดจำกัดเฉพาะ Wi-Fi เท่านั้น';
|
||||
|
||||
@override
|
||||
String get manga_extensions_repo => 'ที่เก็บส่วนขยายมังงะ';
|
||||
|
|
@ -1395,7 +1427,8 @@ class AppLocalizationsTh extends AppLocalizations {
|
|||
String get undefined => 'ไม่ได้กำหนด';
|
||||
|
||||
@override
|
||||
String get empty_extensions_repo => 'คุณไม่มี URL ที่เก็บข้อมูลที่นี่ คลิกปุ่มเพิ่มเพื่อเพิ่ม!';
|
||||
String get empty_extensions_repo =>
|
||||
'คุณไม่มี URL ที่เก็บข้อมูลที่นี่ คลิกปุ่มเพิ่มเพื่อเพิ่ม!';
|
||||
|
||||
@override
|
||||
String get add_extensions_repo => 'เพิ่ม URL ที่เก็บข้อมูล';
|
||||
|
|
@ -1428,7 +1461,8 @@ class AppLocalizationsTh extends AppLocalizations {
|
|||
String get clear_all_sources => 'ล้างแหล่งข้อมูลทั้งหมด';
|
||||
|
||||
@override
|
||||
String get clear_all_sources_msg => 'สิ่งนี้จะล้างแหล่งข้อมูลทั้งหมดในแอปอย่างสมบูรณ์ คุณแน่ใจหรือไม่ว่าต้องการดำเนินการต่อ?';
|
||||
String get clear_all_sources_msg =>
|
||||
'สิ่งนี้จะล้างแหล่งข้อมูลทั้งหมดในแอปอย่างสมบูรณ์ คุณแน่ใจหรือไม่ว่าต้องการดำเนินการต่อ?';
|
||||
|
||||
@override
|
||||
String get sources_cleared => 'ล้างแหล่งข้อมูลแล้ว!';
|
||||
|
|
@ -1457,5 +1491,6 @@ class AppLocalizationsTh extends AppLocalizations {
|
|||
}
|
||||
|
||||
@override
|
||||
String get unsupported_repo => 'คุณพยายามเพิ่มที่เก็บข้อมูลที่ไม่รองรับ โปรดตรวจสอบเซิร์ฟเวอร์ Discord เพื่อรับการสนับสนุน!';
|
||||
String get unsupported_repo =>
|
||||
'คุณพยายามเพิ่มที่เก็บข้อมูลที่ไม่รองรับ โปรดตรวจสอบเซิร์ฟเวอร์ Discord เพื่อรับการสนับสนุน!';
|
||||
}
|
||||
|
|
|
|||
|
|
@ -126,10 +126,12 @@ class AppLocalizationsTr extends AppLocalizations {
|
|||
String get other => 'Diğer';
|
||||
|
||||
@override
|
||||
String get show_continue_reading_buttons => 'Okumaya Devam Et Düğmelerini Göster';
|
||||
String get show_continue_reading_buttons =>
|
||||
'Okumaya Devam Et Düğmelerini Göster';
|
||||
|
||||
@override
|
||||
String get show_continue_watching_buttons => 'İzlemeye Devam Et Düğmelerini Göster';
|
||||
String get show_continue_watching_buttons =>
|
||||
'İzlemeye Devam Et Düğmelerini Göster';
|
||||
|
||||
@override
|
||||
String get empty_library => 'Boş Kütüphane';
|
||||
|
|
@ -159,7 +161,8 @@ class AppLocalizationsTr extends AppLocalizations {
|
|||
String get remove => 'Kaldır';
|
||||
|
||||
@override
|
||||
String get remove_history_msg => 'Bu, bu bölümün okunma tarihini kaldıracaktır. Emin misiniz?';
|
||||
String get remove_history_msg =>
|
||||
'Bu, bu bölümün okunma tarihini kaldıracaktır. Emin misiniz?';
|
||||
|
||||
@override
|
||||
String get last_used => 'Son Kullanılan';
|
||||
|
|
@ -197,7 +200,8 @@ class AppLocalizationsTr extends AppLocalizations {
|
|||
}
|
||||
|
||||
@override
|
||||
String get clean_database_desc => 'Bu, kütüphaneye eklenmeyen tüm öğeleri kaldıracaktır!';
|
||||
String get clean_database_desc =>
|
||||
'Bu, kütüphaneye eklenmeyen tüm öğeleri kaldıracaktır!';
|
||||
|
||||
@override
|
||||
String get incognito_mode => 'Gizli Mod';
|
||||
|
|
@ -230,7 +234,8 @@ class AppLocalizationsTr extends AppLocalizations {
|
|||
String get edit_categories => 'Kategorileri Düzenle';
|
||||
|
||||
@override
|
||||
String get edit_categories_description => 'Henüz kategoriniz yok. Kütüphanenizi organize etmek için bir tane oluşturmak için artı düğmesine dokunun';
|
||||
String get edit_categories_description =>
|
||||
'Henüz kategoriniz yok. Kütüphanenizi organize etmek için bir tane oluşturmak için artı düğmesine dokunun';
|
||||
|
||||
@override
|
||||
String get add => 'Ekle';
|
||||
|
|
@ -382,7 +387,8 @@ class AppLocalizationsTr extends AppLocalizations {
|
|||
String get browse_subtitle => 'Kaynaklar, genel arama';
|
||||
|
||||
@override
|
||||
String get only_include_pinned_sources => 'Sadece Sabitlenmiş Kaynakları Dahil Et';
|
||||
String get only_include_pinned_sources =>
|
||||
'Sadece Sabitlenmiş Kaynakları Dahil Et';
|
||||
|
||||
@override
|
||||
String get nsfw_sources => 'NSFW (+18) Kaynaklar';
|
||||
|
|
@ -391,7 +397,8 @@ class AppLocalizationsTr extends AppLocalizations {
|
|||
String get nsfw_sources_show => 'Kaynak ve uzantı listelerinde göster';
|
||||
|
||||
@override
|
||||
String get nsfw_sources_info => 'Bu, resmi olmayan veya potansiyel olarak yanlış işaretlenmiş uzantıların uygulama içinde NSFW (18+) içerikleri yüzeye çıkarmasını engellemez';
|
||||
String get nsfw_sources_info =>
|
||||
'Bu, resmi olmayan veya potansiyel olarak yanlış işaretlenmiş uzantıların uygulama içinde NSFW (18+) içerikleri yüzeye çıkarmasını engellemez';
|
||||
|
||||
@override
|
||||
String get version => 'Versiyon';
|
||||
|
|
@ -638,7 +645,8 @@ class AppLocalizationsTr extends AppLocalizations {
|
|||
String get sync_logged => 'Giriş başarılı';
|
||||
|
||||
@override
|
||||
String get syncing_subtitle => 'Birden fazla cihazda ilerlemenizi kendinize ait bir \n sunucu üzerinden senkronize edin. İlk kez senkronize ediyorsanız, önce yüklediğinizden emin olun veya bu cihazda (otomatik) senkronize kullanmadan önce indirin!';
|
||||
String get syncing_subtitle =>
|
||||
'Birden fazla cihazda ilerlemenizi kendinize ait bir \n sunucu üzerinden senkronize edin. İlk kez senkronize ediyorsanız, önce yüklediğinizden emin olun veya bu cihazda (otomatik) senkronize kullanmadan önce indirin!';
|
||||
|
||||
@override
|
||||
String get last_sync => 'Son senkronizasyon zamanı: ';
|
||||
|
|
@ -692,13 +700,16 @@ class AppLocalizationsTr extends AppLocalizations {
|
|||
String get sync_button_download => 'Tam indirme';
|
||||
|
||||
@override
|
||||
String get sync_confirm_snapshot => 'Sunucudan uzak bir yedek oluşturmasını isteyin!';
|
||||
String get sync_confirm_snapshot =>
|
||||
'Sunucudan uzak bir yedek oluşturmasını isteyin!';
|
||||
|
||||
@override
|
||||
String get sync_confirm_upload => 'Tam yükleme, uzak veriyi tamamen mevcut verinizle değiştirecektir!';
|
||||
String get sync_confirm_upload =>
|
||||
'Tam yükleme, uzak veriyi tamamen mevcut verinizle değiştirecektir!';
|
||||
|
||||
@override
|
||||
String get sync_confirm_download => 'Tam indirme, mevcut verinizi uzak verilerle tamamen değiştirecektir!';
|
||||
String get sync_confirm_download =>
|
||||
'Tam indirme, mevcut verinizi uzak verilerle tamamen değiştirecektir!';
|
||||
|
||||
@override
|
||||
String get sync_on => 'Senkronizasyonu etkinleştir';
|
||||
|
|
@ -737,7 +748,8 @@ class AppLocalizationsTr extends AppLocalizations {
|
|||
String get sync_snapshot_deleted => 'Anlık görüntü silindi!';
|
||||
|
||||
@override
|
||||
String get sync_snapshot_no_data => 'Anlık görüntü oluşturmak için veri yok! Önce tam yükleme yapın!';
|
||||
String get sync_snapshot_no_data =>
|
||||
'Anlık görüntü oluşturmak için veri yok! Önce tam yükleme yapın!';
|
||||
|
||||
@override
|
||||
String get sync_browse_snapshots => 'Eski yedekleri gözden geçir';
|
||||
|
|
@ -755,7 +767,8 @@ class AppLocalizationsTr extends AppLocalizations {
|
|||
String get sync_auto => 'Otomatik senkronizasyon';
|
||||
|
||||
@override
|
||||
String get sync_auto_warning => 'Otomatik senkronizasyon şu anda deneysel bir özelliktir!';
|
||||
String get sync_auto_warning =>
|
||||
'Otomatik senkronizasyon şu anda deneysel bir özelliktir!';
|
||||
|
||||
@override
|
||||
String get sync_auto_off => 'Kapalı';
|
||||
|
|
@ -800,13 +813,15 @@ class AppLocalizationsTr extends AppLocalizations {
|
|||
String get reorder_navigation => 'Gezinmeyi özelleştir';
|
||||
|
||||
@override
|
||||
String get reorder_navigation_description => 'Gezinmeyi ihtiyaçlarınıza göre yeniden düzenleyin ve ayarlayın.';
|
||||
String get reorder_navigation_description =>
|
||||
'Gezinmeyi ihtiyaçlarınıza göre yeniden düzenleyin ve ayarlayın.';
|
||||
|
||||
@override
|
||||
String get full_screen_player => 'Tam ekran kullan';
|
||||
|
||||
@override
|
||||
String get full_screen_player_info => 'Bir video oynatıldığında otomatik olarak tam ekran kullan.';
|
||||
String get full_screen_player_info =>
|
||||
'Bir video oynatıldığında otomatik olarak tam ekran kullan.';
|
||||
|
||||
@override
|
||||
String episode_progress(Object n) {
|
||||
|
|
@ -916,7 +931,8 @@ class AppLocalizationsTr extends AppLocalizations {
|
|||
String get page_preload_amount => 'Sayfa Ön Yükleme Miktarı';
|
||||
|
||||
@override
|
||||
String get page_preload_amount_subtitle => 'Okurken ön yüklenen sayfa miktarı. Daha yüksek değerler, daha yüksek önbellek ve ağ kullanımı pahasına daha pürüzsüz bir okuma deneyimi sağlar.';
|
||||
String get page_preload_amount_subtitle =>
|
||||
'Okurken ön yüklenen sayfa miktarı. Daha yüksek değerler, daha yüksek önbellek ve ağ kullanımı pahasına daha pürüzsüz bir okuma deneyimi sağlar.';
|
||||
|
||||
@override
|
||||
String get image_loading_error => 'Bu resim yüklenemedi';
|
||||
|
|
@ -931,13 +947,15 @@ class AppLocalizationsTr extends AppLocalizations {
|
|||
String get video_subtitle => 'Altyazı';
|
||||
|
||||
@override
|
||||
String get check_for_extension_updates => 'Uzantı güncellemelerini kontrol et';
|
||||
String get check_for_extension_updates =>
|
||||
'Uzantı güncellemelerini kontrol et';
|
||||
|
||||
@override
|
||||
String get auto_extensions_updates => 'Otomatik Uzantı Güncellemeleri';
|
||||
|
||||
@override
|
||||
String get auto_extensions_updates_subtitle => 'Yeni bir sürümü mevcut olduğunda uzantıyı otomatik olarak günceller.';
|
||||
String get auto_extensions_updates_subtitle =>
|
||||
'Yeni bir sürümü mevcut olduğunda uzantıyı otomatik olarak günceller.';
|
||||
|
||||
@override
|
||||
String get reading_mode => 'Okuma Modu';
|
||||
|
|
@ -1007,13 +1025,15 @@ class AppLocalizationsTr extends AppLocalizations {
|
|||
String get create_backup_dialog_title => 'Ne yedeklemek istiyorsun?';
|
||||
|
||||
@override
|
||||
String get create_backup_subtitle => 'Mevcut kütüphaneyi geri yüklemek için kullanılabilir';
|
||||
String get create_backup_subtitle =>
|
||||
'Mevcut kütüphaneyi geri yüklemek için kullanılabilir';
|
||||
|
||||
@override
|
||||
String get restore_backup => 'Yedeği Geri Yükle';
|
||||
|
||||
@override
|
||||
String get restore_backup_subtitle => 'Yedek dosyasından kütüphaneyi geri yükle';
|
||||
String get restore_backup_subtitle =>
|
||||
'Yedek dosyasından kütüphaneyi geri yükle';
|
||||
|
||||
@override
|
||||
String get automatic_backups => 'Otomatik Yedeklemeler';
|
||||
|
|
@ -1031,10 +1051,12 @@ class AppLocalizationsTr extends AppLocalizations {
|
|||
String get backup_options_dialog_title => 'Ne yedeklemek istiyorsun?';
|
||||
|
||||
@override
|
||||
String get backup_options_subtitle => 'Yedek dosyasına hangi bilgilerin dahil edileceği';
|
||||
String get backup_options_subtitle =>
|
||||
'Yedek dosyasına hangi bilgilerin dahil edileceği';
|
||||
|
||||
@override
|
||||
String get backup_and_restore_warning_info => 'Yedeklerin başka yerlerde de kopyalarını tutmalısınız';
|
||||
String get backup_and_restore_warning_info =>
|
||||
'Yedeklerin başka yerlerde de kopyalarını tutmalısınız';
|
||||
|
||||
@override
|
||||
String get library_entries => 'Kütüphane Girişleri';
|
||||
|
|
@ -1058,13 +1080,15 @@ class AppLocalizationsTr extends AppLocalizations {
|
|||
String get weekly => 'Haftalık';
|
||||
|
||||
@override
|
||||
String get restore_backup_warning_title => 'Bir yedeği geri yüklemek mevcut tüm verilerin üzerine yazacaktır.\n\nGeri yüklemeye devam et?';
|
||||
String get restore_backup_warning_title =>
|
||||
'Bir yedeği geri yüklemek mevcut tüm verilerin üzerine yazacaktır.\n\nGeri yüklemeye devam et?';
|
||||
|
||||
@override
|
||||
String get services => 'Hizmetler';
|
||||
|
||||
@override
|
||||
String get tracking_warning_info => 'İzleme hizmetlerinde bölüm ilerlemesini güncellemek için tek yönlü senkronizasyon. Bireysel girişler için izlemeyi, izleme düğmesinden ayarlayın.';
|
||||
String get tracking_warning_info =>
|
||||
'İzleme hizmetlerinde bölüm ilerlemesini güncellemek için tek yönlü senkronizasyon. Bireysel girişler için izlemeyi, izleme düğmesinden ayarlayın.';
|
||||
|
||||
@override
|
||||
String get use_page_tap_zones => 'Sayfa Dokunma Bölgelerini Kullan';
|
||||
|
|
@ -1097,7 +1121,8 @@ class AppLocalizationsTr extends AppLocalizations {
|
|||
String get player => 'Oyuncu';
|
||||
|
||||
@override
|
||||
String get markEpisodeAsSeenSetting => 'Bölümün izlendiği olarak işaretleneceği nokta';
|
||||
String get markEpisodeAsSeenSetting =>
|
||||
'Bölümün izlendiği olarak işaretleneceği nokta';
|
||||
|
||||
@override
|
||||
String get default_skip_intro_length => 'Varsayılan Giriş Atla süresi';
|
||||
|
|
@ -1106,7 +1131,8 @@ class AppLocalizationsTr extends AppLocalizations {
|
|||
String get default_playback_speed_length => 'Varsayılan Oynatma hızı süresi';
|
||||
|
||||
@override
|
||||
String get updateProgressAfterReading => 'Okuduktan Sonra İlerlemeyi Güncelle';
|
||||
String get updateProgressAfterReading =>
|
||||
'Okuduktan Sonra İlerlemeyi Güncelle';
|
||||
|
||||
@override
|
||||
String get no_sources_installed => 'Hiçbir kaynak yüklü değil!';
|
||||
|
|
@ -1115,10 +1141,12 @@ class AppLocalizationsTr extends AppLocalizations {
|
|||
String get show_extensions => 'uzantıları göster';
|
||||
|
||||
@override
|
||||
String get default_skip_forward_skip_length => 'Varsayılan ileri atlama atlama uzunluğu';
|
||||
String get default_skip_forward_skip_length =>
|
||||
'Varsayılan ileri atlama atlama uzunluğu';
|
||||
|
||||
@override
|
||||
String get aniskip_requires_info => 'AniSkip, çalışması için animenin MAL veya Anilist ile takip edilmesini gerektirir.';
|
||||
String get aniskip_requires_info =>
|
||||
'AniSkip, çalışması için animenin MAL veya Anilist ile takip edilmesini gerektirir.';
|
||||
|
||||
@override
|
||||
String get enable_aniskip => 'AniSkip\'i Etkinleştir';
|
||||
|
|
@ -1267,7 +1295,8 @@ class AppLocalizationsTr extends AppLocalizations {
|
|||
String get background => 'Arka Plan';
|
||||
|
||||
@override
|
||||
String get no_subtite_warning_message => 'Bu videoda altyazı parçaları olmadığı için etkisi yok';
|
||||
String get no_subtite_warning_message =>
|
||||
'Bu videoda altyazı parçaları olmadığı için etkisi yok';
|
||||
|
||||
@override
|
||||
String get grid_size => 'Kılavuz Boyutu';
|
||||
|
|
@ -1287,10 +1316,12 @@ class AppLocalizationsTr extends AppLocalizations {
|
|||
String get use_libass => 'libass\'ı etkinleştir';
|
||||
|
||||
@override
|
||||
String get use_libass_info => 'Yerel arka uç için libass tabanlı altyazı rendere etmeyi kullanın.';
|
||||
String get use_libass_info =>
|
||||
'Yerel arka uç için libass tabanlı altyazı rendere etmeyi kullanın.';
|
||||
|
||||
@override
|
||||
String get libass_not_disable_message => 'Altyazıları özelleştirmek için oyuncu ayarlarında `libass kullan` seçeneğini devre dışı bırakın.';
|
||||
String get libass_not_disable_message =>
|
||||
'Altyazıları özelleştirmek için oyuncu ayarlarında `libass kullan` seçeneğini devre dışı bırakın.';
|
||||
|
||||
@override
|
||||
String get torrent_stream => 'Torrent Akışı';
|
||||
|
|
@ -1299,7 +1330,8 @@ class AppLocalizationsTr extends AppLocalizations {
|
|||
String get add_torrent => 'Torrent ekle';
|
||||
|
||||
@override
|
||||
String get enter_torrent_hint_text => 'Manyetik veya torrent dosyası URL\'sini girin';
|
||||
String get enter_torrent_hint_text =>
|
||||
'Manyetik veya torrent dosyası URL\'sini girin';
|
||||
|
||||
@override
|
||||
String get torrent_url => 'Torrent URL\'si';
|
||||
|
|
@ -1314,7 +1346,8 @@ class AppLocalizationsTr extends AppLocalizations {
|
|||
String get use_native_http_client => 'Yerel http istemcisini kullan';
|
||||
|
||||
@override
|
||||
String get use_native_http_client_info => 'otomatik olarak VPN\'ler gibi platform özelliklerini destekler, HTTP/3 gibi daha fazla HTTP özelliğini ve özel yönlendirme işlemlerini destekler';
|
||||
String get use_native_http_client_info =>
|
||||
'otomatik olarak VPN\'ler gibi platform özelliklerini destekler, HTTP/3 gibi daha fazla HTTP özelliğini ve özel yönlendirme işlemlerini destekler';
|
||||
|
||||
@override
|
||||
String n_hour_ago(Object hour) {
|
||||
|
|
@ -1359,13 +1392,15 @@ class AppLocalizationsTr extends AppLocalizations {
|
|||
String get storage => 'Depolama';
|
||||
|
||||
@override
|
||||
String get clear_chapter_and_episode_cache => 'Bölüm ve bölüm önbelleğini temizle';
|
||||
String get clear_chapter_and_episode_cache =>
|
||||
'Bölüm ve bölüm önbelleğini temizle';
|
||||
|
||||
@override
|
||||
String get cache_cleared => 'Önbellek temizlendi';
|
||||
|
||||
@override
|
||||
String get clear_chapter_or_episode_cache_on_app_launch => 'Uygulama açıldığında bölüm/bölüm önbelleğini temizle';
|
||||
String get clear_chapter_or_episode_cache_on_app_launch =>
|
||||
'Uygulama açıldığında bölüm/bölüm önbelleğini temizle';
|
||||
|
||||
@override
|
||||
String get app_settings => 'Uygulama ayarları';
|
||||
|
|
@ -1374,13 +1409,15 @@ class AppLocalizationsTr extends AppLocalizations {
|
|||
String get sources_settings => 'Kaynak ayarları';
|
||||
|
||||
@override
|
||||
String get include_sensitive_settings => 'Hassas ayarları dahil et (ör. izleyici giriş token\'ları)';
|
||||
String get include_sensitive_settings =>
|
||||
'Hassas ayarları dahil et (ör. izleyici giriş token\'ları)';
|
||||
|
||||
@override
|
||||
String get create => 'Oluştur';
|
||||
|
||||
@override
|
||||
String get downloads_are_limited_to_wifi => 'İndirmeler yalnızca Wi-Fi ile sınırlıdır';
|
||||
String get downloads_are_limited_to_wifi =>
|
||||
'İndirmeler yalnızca Wi-Fi ile sınırlıdır';
|
||||
|
||||
@override
|
||||
String get manga_extensions_repo => 'Manga uzantıları deposu';
|
||||
|
|
@ -1395,7 +1432,8 @@ class AppLocalizationsTr extends AppLocalizations {
|
|||
String get undefined => 'Tanımsız';
|
||||
|
||||
@override
|
||||
String get empty_extensions_repo => 'Burada hiçbir depo URL\'si yok. Bir tane eklemek için artı düğmesine tıklayın!';
|
||||
String get empty_extensions_repo =>
|
||||
'Burada hiçbir depo URL\'si yok. Bir tane eklemek için artı düğmesine tıklayın!';
|
||||
|
||||
@override
|
||||
String get add_extensions_repo => 'Depo URL\'si ekle';
|
||||
|
|
@ -1428,7 +1466,8 @@ class AppLocalizationsTr extends AppLocalizations {
|
|||
String get clear_all_sources => 'Tüm kaynakları temizle';
|
||||
|
||||
@override
|
||||
String get clear_all_sources_msg => 'Bu, uygulamadaki tüm kaynakları tamamen temizleyecektir. Devam etmek istediğinizden emin misiniz?';
|
||||
String get clear_all_sources_msg =>
|
||||
'Bu, uygulamadaki tüm kaynakları tamamen temizleyecektir. Devam etmek istediğinizden emin misiniz?';
|
||||
|
||||
@override
|
||||
String get sources_cleared => 'Kaynaklar temizlendi!';
|
||||
|
|
@ -1457,5 +1496,6 @@ class AppLocalizationsTr extends AppLocalizations {
|
|||
}
|
||||
|
||||
@override
|
||||
String get unsupported_repo => 'Desteklenmeyen bir depo eklemeye çalıştınız. Lütfen destek için discord sunucusunu kontrol edin!';
|
||||
String get unsupported_repo =>
|
||||
'Desteklenmeyen bir depo eklemeye çalıştınız. Lütfen destek için discord sunucusunu kontrol edin!';
|
||||
}
|
||||
|
|
|
|||
|
|
@ -638,7 +638,8 @@ class AppLocalizationsZh extends AppLocalizations {
|
|||
String get sync_logged => '登录成功';
|
||||
|
||||
@override
|
||||
String get syncing_subtitle => '通过自托管服务器在多个设备间同步您的进度。首次同步时,请先上传;或者在设备上启用(自动)同步之前先下载!';
|
||||
String get syncing_subtitle =>
|
||||
'通过自托管服务器在多个设备间同步您的进度。首次同步时,请先上传;或者在设备上启用(自动)同步之前先下载!';
|
||||
|
||||
@override
|
||||
String get last_sync => '上次同步时间:';
|
||||
|
|
@ -916,7 +917,8 @@ class AppLocalizationsZh extends AppLocalizations {
|
|||
String get page_preload_amount => '页面预加载量';
|
||||
|
||||
@override
|
||||
String get page_preload_amount_subtitle => '阅读时预加载的页面数量。更高的值将导致更顺畅的阅读体验,但会增加缓存和网络使用。';
|
||||
String get page_preload_amount_subtitle =>
|
||||
'阅读时预加载的页面数量。更高的值将导致更顺畅的阅读体验,但会增加缓存和网络使用。';
|
||||
|
||||
@override
|
||||
String get image_loading_error => '无法加载此图片';
|
||||
|
|
@ -1314,7 +1316,8 @@ class AppLocalizationsZh extends AppLocalizations {
|
|||
String get use_native_http_client => '使用本地 HTTP 客户端';
|
||||
|
||||
@override
|
||||
String get use_native_http_client_info => '它自动支持平台特性,如 VPN,支持更多 HTTP 特性,如 HTTP/3 和自定义重定向处理';
|
||||
String get use_native_http_client_info =>
|
||||
'它自动支持平台特性,如 VPN,支持更多 HTTP 特性,如 HTTP/3 和自定义重定向处理';
|
||||
|
||||
@override
|
||||
String n_hour_ago(Object hour) {
|
||||
|
|
|
|||
|
|
@ -6,7 +6,7 @@ part of 'aniskip.dart';
|
|||
// RiverpodGenerator
|
||||
// **************************************************************************
|
||||
|
||||
String _$aniSkipHash() => r'2e5d19b025a2207ff64da7bf7908450ea9e5ff8c';
|
||||
String _$aniSkipHash() => r'887869b54e2e151633efd46da83bde845e14f421';
|
||||
|
||||
/// See also [AniSkip].
|
||||
@ProviderFor(AniSkip)
|
||||
|
|
|
|||
|
|
@ -6,7 +6,7 @@ part of 'anilist.dart';
|
|||
// RiverpodGenerator
|
||||
// **************************************************************************
|
||||
|
||||
String _$anilistHash() => r'd672e47052f0b40088dd477b7918dc1e06654b48';
|
||||
String _$anilistHash() => r'80c9c6e9028e8a8180795366729acbe6c248d9ce';
|
||||
|
||||
/// Copied from Dart SDK
|
||||
class _SystemHash {
|
||||
|
|
|
|||
|
|
@ -1,5 +1,5 @@
|
|||
// This file is automatically generated, so please do not edit it.
|
||||
// @generated by `flutter_rust_bridge`@ 2.9.0.
|
||||
// @generated by `flutter_rust_bridge`@ 2.10.0.
|
||||
|
||||
// ignore_for_file: invalid_use_of_internal_member, unused_import, unnecessary_import
|
||||
|
||||
|
|
|
|||
|
|
@ -1,5 +1,5 @@
|
|||
// This file is automatically generated, so please do not edit it.
|
||||
// @generated by `flutter_rust_bridge`@ 2.9.0.
|
||||
// @generated by `flutter_rust_bridge`@ 2.10.0.
|
||||
|
||||
// ignore_for_file: invalid_use_of_internal_member, unused_import, unnecessary_import
|
||||
|
||||
|
|
|
|||
|
|
@ -12,7 +12,8 @@ part of 'client.dart';
|
|||
T _$identity<T>(T value) => value;
|
||||
|
||||
final _privateConstructorUsedError = UnsupportedError(
|
||||
'It seems like you constructed your class using `MyClass._()`. This constructor is only meant to be used by freezed and you are not supposed to need it nor use it.\nPlease check the documentation here for more information: https://github.com/rrousselGit/freezed#adding-getters-and-methods-to-our-models');
|
||||
'It seems like you constructed your class using `MyClass._()`. This constructor is only meant to be used by freezed and you are not supposed to need it nor use it.\nPlease check the documentation here for more information: https://github.com/rrousselGit/freezed#adding-getters-and-methods-to-our-models',
|
||||
);
|
||||
|
||||
/// @nodoc
|
||||
mixin _$ProxySettings {
|
||||
|
|
@ -20,48 +21,43 @@ mixin _$ProxySettings {
|
|||
TResult when<TResult extends Object?>({
|
||||
required TResult Function() noProxy,
|
||||
required TResult Function(List<CustomProxy> field0) customProxyList,
|
||||
}) =>
|
||||
throw _privateConstructorUsedError;
|
||||
}) => throw _privateConstructorUsedError;
|
||||
@optionalTypeArgs
|
||||
TResult? whenOrNull<TResult extends Object?>({
|
||||
TResult? Function()? noProxy,
|
||||
TResult? Function(List<CustomProxy> field0)? customProxyList,
|
||||
}) =>
|
||||
throw _privateConstructorUsedError;
|
||||
}) => throw _privateConstructorUsedError;
|
||||
@optionalTypeArgs
|
||||
TResult maybeWhen<TResult extends Object?>({
|
||||
TResult Function()? noProxy,
|
||||
TResult Function(List<CustomProxy> field0)? customProxyList,
|
||||
required TResult orElse(),
|
||||
}) =>
|
||||
throw _privateConstructorUsedError;
|
||||
}) => throw _privateConstructorUsedError;
|
||||
@optionalTypeArgs
|
||||
TResult map<TResult extends Object?>({
|
||||
required TResult Function(ProxySettings_NoProxy value) noProxy,
|
||||
required TResult Function(ProxySettings_CustomProxyList value)
|
||||
customProxyList,
|
||||
}) =>
|
||||
throw _privateConstructorUsedError;
|
||||
customProxyList,
|
||||
}) => throw _privateConstructorUsedError;
|
||||
@optionalTypeArgs
|
||||
TResult? mapOrNull<TResult extends Object?>({
|
||||
TResult? Function(ProxySettings_NoProxy value)? noProxy,
|
||||
TResult? Function(ProxySettings_CustomProxyList value)? customProxyList,
|
||||
}) =>
|
||||
throw _privateConstructorUsedError;
|
||||
}) => throw _privateConstructorUsedError;
|
||||
@optionalTypeArgs
|
||||
TResult maybeMap<TResult extends Object?>({
|
||||
TResult Function(ProxySettings_NoProxy value)? noProxy,
|
||||
TResult Function(ProxySettings_CustomProxyList value)? customProxyList,
|
||||
required TResult orElse(),
|
||||
}) =>
|
||||
throw _privateConstructorUsedError;
|
||||
}) => throw _privateConstructorUsedError;
|
||||
}
|
||||
|
||||
/// @nodoc
|
||||
abstract class $ProxySettingsCopyWith<$Res> {
|
||||
factory $ProxySettingsCopyWith(
|
||||
ProxySettings value, $Res Function(ProxySettings) then) =
|
||||
_$ProxySettingsCopyWithImpl<$Res, ProxySettings>;
|
||||
ProxySettings value,
|
||||
$Res Function(ProxySettings) then,
|
||||
) = _$ProxySettingsCopyWithImpl<$Res, ProxySettings>;
|
||||
}
|
||||
|
||||
/// @nodoc
|
||||
|
|
@ -81,18 +77,19 @@ class _$ProxySettingsCopyWithImpl<$Res, $Val extends ProxySettings>
|
|||
/// @nodoc
|
||||
abstract class _$$ProxySettings_NoProxyImplCopyWith<$Res> {
|
||||
factory _$$ProxySettings_NoProxyImplCopyWith(
|
||||
_$ProxySettings_NoProxyImpl value,
|
||||
$Res Function(_$ProxySettings_NoProxyImpl) then) =
|
||||
__$$ProxySettings_NoProxyImplCopyWithImpl<$Res>;
|
||||
_$ProxySettings_NoProxyImpl value,
|
||||
$Res Function(_$ProxySettings_NoProxyImpl) then,
|
||||
) = __$$ProxySettings_NoProxyImplCopyWithImpl<$Res>;
|
||||
}
|
||||
|
||||
/// @nodoc
|
||||
class __$$ProxySettings_NoProxyImplCopyWithImpl<$Res>
|
||||
extends _$ProxySettingsCopyWithImpl<$Res, _$ProxySettings_NoProxyImpl>
|
||||
implements _$$ProxySettings_NoProxyImplCopyWith<$Res> {
|
||||
__$$ProxySettings_NoProxyImplCopyWithImpl(_$ProxySettings_NoProxyImpl _value,
|
||||
$Res Function(_$ProxySettings_NoProxyImpl) _then)
|
||||
: super(_value, _then);
|
||||
__$$ProxySettings_NoProxyImplCopyWithImpl(
|
||||
_$ProxySettings_NoProxyImpl _value,
|
||||
$Res Function(_$ProxySettings_NoProxyImpl) _then,
|
||||
) : super(_value, _then);
|
||||
|
||||
/// Create a copy of ProxySettings
|
||||
/// with the given fields replaced by the non-null parameter values.
|
||||
|
|
@ -154,7 +151,7 @@ class _$ProxySettings_NoProxyImpl extends ProxySettings_NoProxy {
|
|||
TResult map<TResult extends Object?>({
|
||||
required TResult Function(ProxySettings_NoProxy value) noProxy,
|
||||
required TResult Function(ProxySettings_CustomProxyList value)
|
||||
customProxyList,
|
||||
customProxyList,
|
||||
}) {
|
||||
return noProxy(this);
|
||||
}
|
||||
|
|
@ -190,36 +187,36 @@ abstract class ProxySettings_NoProxy extends ProxySettings {
|
|||
/// @nodoc
|
||||
abstract class _$$ProxySettings_CustomProxyListImplCopyWith<$Res> {
|
||||
factory _$$ProxySettings_CustomProxyListImplCopyWith(
|
||||
_$ProxySettings_CustomProxyListImpl value,
|
||||
$Res Function(_$ProxySettings_CustomProxyListImpl) then) =
|
||||
__$$ProxySettings_CustomProxyListImplCopyWithImpl<$Res>;
|
||||
_$ProxySettings_CustomProxyListImpl value,
|
||||
$Res Function(_$ProxySettings_CustomProxyListImpl) then,
|
||||
) = __$$ProxySettings_CustomProxyListImplCopyWithImpl<$Res>;
|
||||
@useResult
|
||||
$Res call({List<CustomProxy> field0});
|
||||
}
|
||||
|
||||
/// @nodoc
|
||||
class __$$ProxySettings_CustomProxyListImplCopyWithImpl<$Res>
|
||||
extends _$ProxySettingsCopyWithImpl<$Res,
|
||||
_$ProxySettings_CustomProxyListImpl>
|
||||
extends
|
||||
_$ProxySettingsCopyWithImpl<$Res, _$ProxySettings_CustomProxyListImpl>
|
||||
implements _$$ProxySettings_CustomProxyListImplCopyWith<$Res> {
|
||||
__$$ProxySettings_CustomProxyListImplCopyWithImpl(
|
||||
_$ProxySettings_CustomProxyListImpl _value,
|
||||
$Res Function(_$ProxySettings_CustomProxyListImpl) _then)
|
||||
: super(_value, _then);
|
||||
_$ProxySettings_CustomProxyListImpl _value,
|
||||
$Res Function(_$ProxySettings_CustomProxyListImpl) _then,
|
||||
) : super(_value, _then);
|
||||
|
||||
/// Create a copy of ProxySettings
|
||||
/// with the given fields replaced by the non-null parameter values.
|
||||
@pragma('vm:prefer-inline')
|
||||
@override
|
||||
$Res call({
|
||||
Object? field0 = null,
|
||||
}) {
|
||||
return _then(_$ProxySettings_CustomProxyListImpl(
|
||||
null == field0
|
||||
? _value._field0
|
||||
: field0 // ignore: cast_nullable_to_non_nullable
|
||||
as List<CustomProxy>,
|
||||
));
|
||||
$Res call({Object? field0 = null}) {
|
||||
return _then(
|
||||
_$ProxySettings_CustomProxyListImpl(
|
||||
null == field0
|
||||
? _value._field0
|
||||
: field0 // ignore: cast_nullable_to_non_nullable
|
||||
as List<CustomProxy>,
|
||||
),
|
||||
);
|
||||
}
|
||||
}
|
||||
|
||||
|
|
@ -228,8 +225,8 @@ class __$$ProxySettings_CustomProxyListImplCopyWithImpl<$Res>
|
|||
class _$ProxySettings_CustomProxyListImpl
|
||||
extends ProxySettings_CustomProxyList {
|
||||
const _$ProxySettings_CustomProxyListImpl(final List<CustomProxy> field0)
|
||||
: _field0 = field0,
|
||||
super._();
|
||||
: _field0 = field0,
|
||||
super._();
|
||||
|
||||
final List<CustomProxy> _field0;
|
||||
@override
|
||||
|
|
@ -262,9 +259,11 @@ class _$ProxySettings_CustomProxyListImpl
|
|||
@override
|
||||
@pragma('vm:prefer-inline')
|
||||
_$$ProxySettings_CustomProxyListImplCopyWith<
|
||||
_$ProxySettings_CustomProxyListImpl>
|
||||
get copyWith => __$$ProxySettings_CustomProxyListImplCopyWithImpl<
|
||||
_$ProxySettings_CustomProxyListImpl>(this, _$identity);
|
||||
_$ProxySettings_CustomProxyListImpl
|
||||
>
|
||||
get copyWith => __$$ProxySettings_CustomProxyListImplCopyWithImpl<
|
||||
_$ProxySettings_CustomProxyListImpl
|
||||
>(this, _$identity);
|
||||
|
||||
@override
|
||||
@optionalTypeArgs
|
||||
|
|
@ -302,7 +301,7 @@ class _$ProxySettings_CustomProxyListImpl
|
|||
TResult map<TResult extends Object?>({
|
||||
required TResult Function(ProxySettings_NoProxy value) noProxy,
|
||||
required TResult Function(ProxySettings_CustomProxyList value)
|
||||
customProxyList,
|
||||
customProxyList,
|
||||
}) {
|
||||
return customProxyList(this);
|
||||
}
|
||||
|
|
@ -341,8 +340,9 @@ abstract class ProxySettings_CustomProxyList extends ProxySettings {
|
|||
/// with the given fields replaced by the non-null parameter values.
|
||||
@JsonKey(includeFromJson: false, includeToJson: false)
|
||||
_$$ProxySettings_CustomProxyListImplCopyWith<
|
||||
_$ProxySettings_CustomProxyListImpl>
|
||||
get copyWith => throw _privateConstructorUsedError;
|
||||
_$ProxySettings_CustomProxyListImpl
|
||||
>
|
||||
get copyWith => throw _privateConstructorUsedError;
|
||||
}
|
||||
|
||||
/// @nodoc
|
||||
|
|
@ -351,49 +351,44 @@ mixin _$RedirectSettings {
|
|||
TResult when<TResult extends Object?>({
|
||||
required TResult Function() noRedirect,
|
||||
required TResult Function(int field0) limitedRedirects,
|
||||
}) =>
|
||||
throw _privateConstructorUsedError;
|
||||
}) => throw _privateConstructorUsedError;
|
||||
@optionalTypeArgs
|
||||
TResult? whenOrNull<TResult extends Object?>({
|
||||
TResult? Function()? noRedirect,
|
||||
TResult? Function(int field0)? limitedRedirects,
|
||||
}) =>
|
||||
throw _privateConstructorUsedError;
|
||||
}) => throw _privateConstructorUsedError;
|
||||
@optionalTypeArgs
|
||||
TResult maybeWhen<TResult extends Object?>({
|
||||
TResult Function()? noRedirect,
|
||||
TResult Function(int field0)? limitedRedirects,
|
||||
required TResult orElse(),
|
||||
}) =>
|
||||
throw _privateConstructorUsedError;
|
||||
}) => throw _privateConstructorUsedError;
|
||||
@optionalTypeArgs
|
||||
TResult map<TResult extends Object?>({
|
||||
required TResult Function(RedirectSettings_NoRedirect value) noRedirect,
|
||||
required TResult Function(RedirectSettings_LimitedRedirects value)
|
||||
limitedRedirects,
|
||||
}) =>
|
||||
throw _privateConstructorUsedError;
|
||||
limitedRedirects,
|
||||
}) => throw _privateConstructorUsedError;
|
||||
@optionalTypeArgs
|
||||
TResult? mapOrNull<TResult extends Object?>({
|
||||
TResult? Function(RedirectSettings_NoRedirect value)? noRedirect,
|
||||
TResult? Function(RedirectSettings_LimitedRedirects value)?
|
||||
limitedRedirects,
|
||||
}) =>
|
||||
throw _privateConstructorUsedError;
|
||||
limitedRedirects,
|
||||
}) => throw _privateConstructorUsedError;
|
||||
@optionalTypeArgs
|
||||
TResult maybeMap<TResult extends Object?>({
|
||||
TResult Function(RedirectSettings_NoRedirect value)? noRedirect,
|
||||
TResult Function(RedirectSettings_LimitedRedirects value)? limitedRedirects,
|
||||
required TResult orElse(),
|
||||
}) =>
|
||||
throw _privateConstructorUsedError;
|
||||
}) => throw _privateConstructorUsedError;
|
||||
}
|
||||
|
||||
/// @nodoc
|
||||
abstract class $RedirectSettingsCopyWith<$Res> {
|
||||
factory $RedirectSettingsCopyWith(
|
||||
RedirectSettings value, $Res Function(RedirectSettings) then) =
|
||||
_$RedirectSettingsCopyWithImpl<$Res, RedirectSettings>;
|
||||
RedirectSettings value,
|
||||
$Res Function(RedirectSettings) then,
|
||||
) = _$RedirectSettingsCopyWithImpl<$Res, RedirectSettings>;
|
||||
}
|
||||
|
||||
/// @nodoc
|
||||
|
|
@ -413,20 +408,20 @@ class _$RedirectSettingsCopyWithImpl<$Res, $Val extends RedirectSettings>
|
|||
/// @nodoc
|
||||
abstract class _$$RedirectSettings_NoRedirectImplCopyWith<$Res> {
|
||||
factory _$$RedirectSettings_NoRedirectImplCopyWith(
|
||||
_$RedirectSettings_NoRedirectImpl value,
|
||||
$Res Function(_$RedirectSettings_NoRedirectImpl) then) =
|
||||
__$$RedirectSettings_NoRedirectImplCopyWithImpl<$Res>;
|
||||
_$RedirectSettings_NoRedirectImpl value,
|
||||
$Res Function(_$RedirectSettings_NoRedirectImpl) then,
|
||||
) = __$$RedirectSettings_NoRedirectImplCopyWithImpl<$Res>;
|
||||
}
|
||||
|
||||
/// @nodoc
|
||||
class __$$RedirectSettings_NoRedirectImplCopyWithImpl<$Res>
|
||||
extends _$RedirectSettingsCopyWithImpl<$Res,
|
||||
_$RedirectSettings_NoRedirectImpl>
|
||||
extends
|
||||
_$RedirectSettingsCopyWithImpl<$Res, _$RedirectSettings_NoRedirectImpl>
|
||||
implements _$$RedirectSettings_NoRedirectImplCopyWith<$Res> {
|
||||
__$$RedirectSettings_NoRedirectImplCopyWithImpl(
|
||||
_$RedirectSettings_NoRedirectImpl _value,
|
||||
$Res Function(_$RedirectSettings_NoRedirectImpl) _then)
|
||||
: super(_value, _then);
|
||||
_$RedirectSettings_NoRedirectImpl _value,
|
||||
$Res Function(_$RedirectSettings_NoRedirectImpl) _then,
|
||||
) : super(_value, _then);
|
||||
|
||||
/// Create a copy of RedirectSettings
|
||||
/// with the given fields replaced by the non-null parameter values.
|
||||
|
|
@ -488,7 +483,7 @@ class _$RedirectSettings_NoRedirectImpl extends RedirectSettings_NoRedirect {
|
|||
TResult map<TResult extends Object?>({
|
||||
required TResult Function(RedirectSettings_NoRedirect value) noRedirect,
|
||||
required TResult Function(RedirectSettings_LimitedRedirects value)
|
||||
limitedRedirects,
|
||||
limitedRedirects,
|
||||
}) {
|
||||
return noRedirect(this);
|
||||
}
|
||||
|
|
@ -498,7 +493,7 @@ class _$RedirectSettings_NoRedirectImpl extends RedirectSettings_NoRedirect {
|
|||
TResult? mapOrNull<TResult extends Object?>({
|
||||
TResult? Function(RedirectSettings_NoRedirect value)? noRedirect,
|
||||
TResult? Function(RedirectSettings_LimitedRedirects value)?
|
||||
limitedRedirects,
|
||||
limitedRedirects,
|
||||
}) {
|
||||
return noRedirect?.call(this);
|
||||
}
|
||||
|
|
@ -526,36 +521,39 @@ abstract class RedirectSettings_NoRedirect extends RedirectSettings {
|
|||
/// @nodoc
|
||||
abstract class _$$RedirectSettings_LimitedRedirectsImplCopyWith<$Res> {
|
||||
factory _$$RedirectSettings_LimitedRedirectsImplCopyWith(
|
||||
_$RedirectSettings_LimitedRedirectsImpl value,
|
||||
$Res Function(_$RedirectSettings_LimitedRedirectsImpl) then) =
|
||||
__$$RedirectSettings_LimitedRedirectsImplCopyWithImpl<$Res>;
|
||||
_$RedirectSettings_LimitedRedirectsImpl value,
|
||||
$Res Function(_$RedirectSettings_LimitedRedirectsImpl) then,
|
||||
) = __$$RedirectSettings_LimitedRedirectsImplCopyWithImpl<$Res>;
|
||||
@useResult
|
||||
$Res call({int field0});
|
||||
}
|
||||
|
||||
/// @nodoc
|
||||
class __$$RedirectSettings_LimitedRedirectsImplCopyWithImpl<$Res>
|
||||
extends _$RedirectSettingsCopyWithImpl<$Res,
|
||||
_$RedirectSettings_LimitedRedirectsImpl>
|
||||
extends
|
||||
_$RedirectSettingsCopyWithImpl<
|
||||
$Res,
|
||||
_$RedirectSettings_LimitedRedirectsImpl
|
||||
>
|
||||
implements _$$RedirectSettings_LimitedRedirectsImplCopyWith<$Res> {
|
||||
__$$RedirectSettings_LimitedRedirectsImplCopyWithImpl(
|
||||
_$RedirectSettings_LimitedRedirectsImpl _value,
|
||||
$Res Function(_$RedirectSettings_LimitedRedirectsImpl) _then)
|
||||
: super(_value, _then);
|
||||
_$RedirectSettings_LimitedRedirectsImpl _value,
|
||||
$Res Function(_$RedirectSettings_LimitedRedirectsImpl) _then,
|
||||
) : super(_value, _then);
|
||||
|
||||
/// Create a copy of RedirectSettings
|
||||
/// with the given fields replaced by the non-null parameter values.
|
||||
@pragma('vm:prefer-inline')
|
||||
@override
|
||||
$Res call({
|
||||
Object? field0 = null,
|
||||
}) {
|
||||
return _then(_$RedirectSettings_LimitedRedirectsImpl(
|
||||
null == field0
|
||||
? _value.field0
|
||||
: field0 // ignore: cast_nullable_to_non_nullable
|
||||
as int,
|
||||
));
|
||||
$Res call({Object? field0 = null}) {
|
||||
return _then(
|
||||
_$RedirectSettings_LimitedRedirectsImpl(
|
||||
null == field0
|
||||
? _value.field0
|
||||
: field0 // ignore: cast_nullable_to_non_nullable
|
||||
as int,
|
||||
),
|
||||
);
|
||||
}
|
||||
}
|
||||
|
||||
|
|
@ -590,9 +588,11 @@ class _$RedirectSettings_LimitedRedirectsImpl
|
|||
@override
|
||||
@pragma('vm:prefer-inline')
|
||||
_$$RedirectSettings_LimitedRedirectsImplCopyWith<
|
||||
_$RedirectSettings_LimitedRedirectsImpl>
|
||||
get copyWith => __$$RedirectSettings_LimitedRedirectsImplCopyWithImpl<
|
||||
_$RedirectSettings_LimitedRedirectsImpl>(this, _$identity);
|
||||
_$RedirectSettings_LimitedRedirectsImpl
|
||||
>
|
||||
get copyWith => __$$RedirectSettings_LimitedRedirectsImplCopyWithImpl<
|
||||
_$RedirectSettings_LimitedRedirectsImpl
|
||||
>(this, _$identity);
|
||||
|
||||
@override
|
||||
@optionalTypeArgs
|
||||
|
|
@ -630,7 +630,7 @@ class _$RedirectSettings_LimitedRedirectsImpl
|
|||
TResult map<TResult extends Object?>({
|
||||
required TResult Function(RedirectSettings_NoRedirect value) noRedirect,
|
||||
required TResult Function(RedirectSettings_LimitedRedirects value)
|
||||
limitedRedirects,
|
||||
limitedRedirects,
|
||||
}) {
|
||||
return limitedRedirects(this);
|
||||
}
|
||||
|
|
@ -640,7 +640,7 @@ class _$RedirectSettings_LimitedRedirectsImpl
|
|||
TResult? mapOrNull<TResult extends Object?>({
|
||||
TResult? Function(RedirectSettings_NoRedirect value)? noRedirect,
|
||||
TResult? Function(RedirectSettings_LimitedRedirects value)?
|
||||
limitedRedirects,
|
||||
limitedRedirects,
|
||||
}) {
|
||||
return limitedRedirects?.call(this);
|
||||
}
|
||||
|
|
@ -670,6 +670,7 @@ abstract class RedirectSettings_LimitedRedirects extends RedirectSettings {
|
|||
/// with the given fields replaced by the non-null parameter values.
|
||||
@JsonKey(includeFromJson: false, includeToJson: false)
|
||||
_$$RedirectSettings_LimitedRedirectsImplCopyWith<
|
||||
_$RedirectSettings_LimitedRedirectsImpl>
|
||||
get copyWith => throw _privateConstructorUsedError;
|
||||
_$RedirectSettings_LimitedRedirectsImpl
|
||||
>
|
||||
get copyWith => throw _privateConstructorUsedError;
|
||||
}
|
||||
|
|
|
|||
|
|
@ -1,5 +1,5 @@
|
|||
// This file is automatically generated, so please do not edit it.
|
||||
// @generated by `flutter_rust_bridge`@ 2.9.0.
|
||||
// @generated by `flutter_rust_bridge`@ 2.10.0.
|
||||
|
||||
// ignore_for_file: invalid_use_of_internal_member, unused_import, unnecessary_import
|
||||
|
||||
|
|
|
|||
File diff suppressed because it is too large
Load diff
|
|
@ -1,5 +1,5 @@
|
|||
// This file is automatically generated, so please do not edit it.
|
||||
// @generated by `flutter_rust_bridge`@ 2.9.0.
|
||||
// @generated by `flutter_rust_bridge`@ 2.10.0.
|
||||
|
||||
// ignore_for_file: invalid_use_of_internal_member, unused_import, unnecessary_import
|
||||
|
||||
|
|
|
|||
|
|
@ -12,7 +12,8 @@ part of 'http.dart';
|
|||
T _$identity<T>(T value) => value;
|
||||
|
||||
final _privateConstructorUsedError = UnsupportedError(
|
||||
'It seems like you constructed your class using `MyClass._()`. This constructor is only meant to be used by freezed and you are not supposed to need it nor use it.\nPlease check the documentation here for more information: https://github.com/rrousselGit/freezed#adding-getters-and-methods-to-our-models');
|
||||
'It seems like you constructed your class using `MyClass._()`. This constructor is only meant to be used by freezed and you are not supposed to need it nor use it.\nPlease check the documentation here for more information: https://github.com/rrousselGit/freezed#adding-getters-and-methods-to-our-models',
|
||||
);
|
||||
|
||||
/// @nodoc
|
||||
mixin _$HttpHeaders {
|
||||
|
|
@ -21,47 +22,42 @@ mixin _$HttpHeaders {
|
|||
TResult when<TResult extends Object?>({
|
||||
required TResult Function(Map<String, String> field0) map,
|
||||
required TResult Function(List<(String, String)> field0) list,
|
||||
}) =>
|
||||
throw _privateConstructorUsedError;
|
||||
}) => throw _privateConstructorUsedError;
|
||||
@optionalTypeArgs
|
||||
TResult? whenOrNull<TResult extends Object?>({
|
||||
TResult? Function(Map<String, String> field0)? map,
|
||||
TResult? Function(List<(String, String)> field0)? list,
|
||||
}) =>
|
||||
throw _privateConstructorUsedError;
|
||||
}) => throw _privateConstructorUsedError;
|
||||
@optionalTypeArgs
|
||||
TResult maybeWhen<TResult extends Object?>({
|
||||
TResult Function(Map<String, String> field0)? map,
|
||||
TResult Function(List<(String, String)> field0)? list,
|
||||
required TResult orElse(),
|
||||
}) =>
|
||||
throw _privateConstructorUsedError;
|
||||
}) => throw _privateConstructorUsedError;
|
||||
@optionalTypeArgs
|
||||
TResult map<TResult extends Object?>({
|
||||
required TResult Function(HttpHeaders_Map value) map,
|
||||
required TResult Function(HttpHeaders_List value) list,
|
||||
}) =>
|
||||
throw _privateConstructorUsedError;
|
||||
}) => throw _privateConstructorUsedError;
|
||||
@optionalTypeArgs
|
||||
TResult? mapOrNull<TResult extends Object?>({
|
||||
TResult? Function(HttpHeaders_Map value)? map,
|
||||
TResult? Function(HttpHeaders_List value)? list,
|
||||
}) =>
|
||||
throw _privateConstructorUsedError;
|
||||
}) => throw _privateConstructorUsedError;
|
||||
@optionalTypeArgs
|
||||
TResult maybeMap<TResult extends Object?>({
|
||||
TResult Function(HttpHeaders_Map value)? map,
|
||||
TResult Function(HttpHeaders_List value)? list,
|
||||
required TResult orElse(),
|
||||
}) =>
|
||||
throw _privateConstructorUsedError;
|
||||
}) => throw _privateConstructorUsedError;
|
||||
}
|
||||
|
||||
/// @nodoc
|
||||
abstract class $HttpHeadersCopyWith<$Res> {
|
||||
factory $HttpHeadersCopyWith(
|
||||
HttpHeaders value, $Res Function(HttpHeaders) then) =
|
||||
_$HttpHeadersCopyWithImpl<$Res, HttpHeaders>;
|
||||
HttpHeaders value,
|
||||
$Res Function(HttpHeaders) then,
|
||||
) = _$HttpHeadersCopyWithImpl<$Res, HttpHeaders>;
|
||||
}
|
||||
|
||||
/// @nodoc
|
||||
|
|
@ -80,9 +76,10 @@ class _$HttpHeadersCopyWithImpl<$Res, $Val extends HttpHeaders>
|
|||
|
||||
/// @nodoc
|
||||
abstract class _$$HttpHeaders_MapImplCopyWith<$Res> {
|
||||
factory _$$HttpHeaders_MapImplCopyWith(_$HttpHeaders_MapImpl value,
|
||||
$Res Function(_$HttpHeaders_MapImpl) then) =
|
||||
__$$HttpHeaders_MapImplCopyWithImpl<$Res>;
|
||||
factory _$$HttpHeaders_MapImplCopyWith(
|
||||
_$HttpHeaders_MapImpl value,
|
||||
$Res Function(_$HttpHeaders_MapImpl) then,
|
||||
) = __$$HttpHeaders_MapImplCopyWithImpl<$Res>;
|
||||
@useResult
|
||||
$Res call({Map<String, String> field0});
|
||||
}
|
||||
|
|
@ -92,22 +89,23 @@ class __$$HttpHeaders_MapImplCopyWithImpl<$Res>
|
|||
extends _$HttpHeadersCopyWithImpl<$Res, _$HttpHeaders_MapImpl>
|
||||
implements _$$HttpHeaders_MapImplCopyWith<$Res> {
|
||||
__$$HttpHeaders_MapImplCopyWithImpl(
|
||||
_$HttpHeaders_MapImpl _value, $Res Function(_$HttpHeaders_MapImpl) _then)
|
||||
: super(_value, _then);
|
||||
_$HttpHeaders_MapImpl _value,
|
||||
$Res Function(_$HttpHeaders_MapImpl) _then,
|
||||
) : super(_value, _then);
|
||||
|
||||
/// Create a copy of HttpHeaders
|
||||
/// with the given fields replaced by the non-null parameter values.
|
||||
@pragma('vm:prefer-inline')
|
||||
@override
|
||||
$Res call({
|
||||
Object? field0 = null,
|
||||
}) {
|
||||
return _then(_$HttpHeaders_MapImpl(
|
||||
null == field0
|
||||
? _value._field0
|
||||
: field0 // ignore: cast_nullable_to_non_nullable
|
||||
as Map<String, String>,
|
||||
));
|
||||
$Res call({Object? field0 = null}) {
|
||||
return _then(
|
||||
_$HttpHeaders_MapImpl(
|
||||
null == field0
|
||||
? _value._field0
|
||||
: field0 // ignore: cast_nullable_to_non_nullable
|
||||
as Map<String, String>,
|
||||
),
|
||||
);
|
||||
}
|
||||
}
|
||||
|
||||
|
|
@ -115,8 +113,8 @@ class __$$HttpHeaders_MapImplCopyWithImpl<$Res>
|
|||
|
||||
class _$HttpHeaders_MapImpl extends HttpHeaders_Map {
|
||||
const _$HttpHeaders_MapImpl(final Map<String, String> field0)
|
||||
: _field0 = field0,
|
||||
super._();
|
||||
: _field0 = field0,
|
||||
super._();
|
||||
|
||||
final Map<String, String> _field0;
|
||||
@override
|
||||
|
|
@ -150,7 +148,9 @@ class _$HttpHeaders_MapImpl extends HttpHeaders_Map {
|
|||
@pragma('vm:prefer-inline')
|
||||
_$$HttpHeaders_MapImplCopyWith<_$HttpHeaders_MapImpl> get copyWith =>
|
||||
__$$HttpHeaders_MapImplCopyWithImpl<_$HttpHeaders_MapImpl>(
|
||||
this, _$identity);
|
||||
this,
|
||||
_$identity,
|
||||
);
|
||||
|
||||
@override
|
||||
@optionalTypeArgs
|
||||
|
|
@ -232,9 +232,10 @@ abstract class HttpHeaders_Map extends HttpHeaders {
|
|||
|
||||
/// @nodoc
|
||||
abstract class _$$HttpHeaders_ListImplCopyWith<$Res> {
|
||||
factory _$$HttpHeaders_ListImplCopyWith(_$HttpHeaders_ListImpl value,
|
||||
$Res Function(_$HttpHeaders_ListImpl) then) =
|
||||
__$$HttpHeaders_ListImplCopyWithImpl<$Res>;
|
||||
factory _$$HttpHeaders_ListImplCopyWith(
|
||||
_$HttpHeaders_ListImpl value,
|
||||
$Res Function(_$HttpHeaders_ListImpl) then,
|
||||
) = __$$HttpHeaders_ListImplCopyWithImpl<$Res>;
|
||||
@useResult
|
||||
$Res call({List<(String, String)> field0});
|
||||
}
|
||||
|
|
@ -243,23 +244,24 @@ abstract class _$$HttpHeaders_ListImplCopyWith<$Res> {
|
|||
class __$$HttpHeaders_ListImplCopyWithImpl<$Res>
|
||||
extends _$HttpHeadersCopyWithImpl<$Res, _$HttpHeaders_ListImpl>
|
||||
implements _$$HttpHeaders_ListImplCopyWith<$Res> {
|
||||
__$$HttpHeaders_ListImplCopyWithImpl(_$HttpHeaders_ListImpl _value,
|
||||
$Res Function(_$HttpHeaders_ListImpl) _then)
|
||||
: super(_value, _then);
|
||||
__$$HttpHeaders_ListImplCopyWithImpl(
|
||||
_$HttpHeaders_ListImpl _value,
|
||||
$Res Function(_$HttpHeaders_ListImpl) _then,
|
||||
) : super(_value, _then);
|
||||
|
||||
/// Create a copy of HttpHeaders
|
||||
/// with the given fields replaced by the non-null parameter values.
|
||||
@pragma('vm:prefer-inline')
|
||||
@override
|
||||
$Res call({
|
||||
Object? field0 = null,
|
||||
}) {
|
||||
return _then(_$HttpHeaders_ListImpl(
|
||||
null == field0
|
||||
? _value._field0
|
||||
: field0 // ignore: cast_nullable_to_non_nullable
|
||||
as List<(String, String)>,
|
||||
));
|
||||
$Res call({Object? field0 = null}) {
|
||||
return _then(
|
||||
_$HttpHeaders_ListImpl(
|
||||
null == field0
|
||||
? _value._field0
|
||||
: field0 // ignore: cast_nullable_to_non_nullable
|
||||
as List<(String, String)>,
|
||||
),
|
||||
);
|
||||
}
|
||||
}
|
||||
|
||||
|
|
@ -267,8 +269,8 @@ class __$$HttpHeaders_ListImplCopyWithImpl<$Res>
|
|||
|
||||
class _$HttpHeaders_ListImpl extends HttpHeaders_List {
|
||||
const _$HttpHeaders_ListImpl(final List<(String, String)> field0)
|
||||
: _field0 = field0,
|
||||
super._();
|
||||
: _field0 = field0,
|
||||
super._();
|
||||
|
||||
final List<(String, String)> _field0;
|
||||
@override
|
||||
|
|
@ -302,7 +304,9 @@ class _$HttpHeaders_ListImpl extends HttpHeaders_List {
|
|||
@pragma('vm:prefer-inline')
|
||||
_$$HttpHeaders_ListImplCopyWith<_$HttpHeaders_ListImpl> get copyWith =>
|
||||
__$$HttpHeaders_ListImplCopyWithImpl<_$HttpHeaders_ListImpl>(
|
||||
this, _$identity);
|
||||
this,
|
||||
_$identity,
|
||||
);
|
||||
|
||||
@override
|
||||
@optionalTypeArgs
|
||||
|
|
@ -389,52 +393,47 @@ mixin _$HttpResponseBody {
|
|||
required TResult Function(String field0) text,
|
||||
required TResult Function(Uint8List field0) bytes,
|
||||
required TResult Function() stream,
|
||||
}) =>
|
||||
throw _privateConstructorUsedError;
|
||||
}) => throw _privateConstructorUsedError;
|
||||
@optionalTypeArgs
|
||||
TResult? whenOrNull<TResult extends Object?>({
|
||||
TResult? Function(String field0)? text,
|
||||
TResult? Function(Uint8List field0)? bytes,
|
||||
TResult? Function()? stream,
|
||||
}) =>
|
||||
throw _privateConstructorUsedError;
|
||||
}) => throw _privateConstructorUsedError;
|
||||
@optionalTypeArgs
|
||||
TResult maybeWhen<TResult extends Object?>({
|
||||
TResult Function(String field0)? text,
|
||||
TResult Function(Uint8List field0)? bytes,
|
||||
TResult Function()? stream,
|
||||
required TResult orElse(),
|
||||
}) =>
|
||||
throw _privateConstructorUsedError;
|
||||
}) => throw _privateConstructorUsedError;
|
||||
@optionalTypeArgs
|
||||
TResult map<TResult extends Object?>({
|
||||
required TResult Function(HttpResponseBody_Text value) text,
|
||||
required TResult Function(HttpResponseBody_Bytes value) bytes,
|
||||
required TResult Function(HttpResponseBody_Stream value) stream,
|
||||
}) =>
|
||||
throw _privateConstructorUsedError;
|
||||
}) => throw _privateConstructorUsedError;
|
||||
@optionalTypeArgs
|
||||
TResult? mapOrNull<TResult extends Object?>({
|
||||
TResult? Function(HttpResponseBody_Text value)? text,
|
||||
TResult? Function(HttpResponseBody_Bytes value)? bytes,
|
||||
TResult? Function(HttpResponseBody_Stream value)? stream,
|
||||
}) =>
|
||||
throw _privateConstructorUsedError;
|
||||
}) => throw _privateConstructorUsedError;
|
||||
@optionalTypeArgs
|
||||
TResult maybeMap<TResult extends Object?>({
|
||||
TResult Function(HttpResponseBody_Text value)? text,
|
||||
TResult Function(HttpResponseBody_Bytes value)? bytes,
|
||||
TResult Function(HttpResponseBody_Stream value)? stream,
|
||||
required TResult orElse(),
|
||||
}) =>
|
||||
throw _privateConstructorUsedError;
|
||||
}) => throw _privateConstructorUsedError;
|
||||
}
|
||||
|
||||
/// @nodoc
|
||||
abstract class $HttpResponseBodyCopyWith<$Res> {
|
||||
factory $HttpResponseBodyCopyWith(
|
||||
HttpResponseBody value, $Res Function(HttpResponseBody) then) =
|
||||
_$HttpResponseBodyCopyWithImpl<$Res, HttpResponseBody>;
|
||||
HttpResponseBody value,
|
||||
$Res Function(HttpResponseBody) then,
|
||||
) = _$HttpResponseBodyCopyWithImpl<$Res, HttpResponseBody>;
|
||||
}
|
||||
|
||||
/// @nodoc
|
||||
|
|
@ -454,9 +453,9 @@ class _$HttpResponseBodyCopyWithImpl<$Res, $Val extends HttpResponseBody>
|
|||
/// @nodoc
|
||||
abstract class _$$HttpResponseBody_TextImplCopyWith<$Res> {
|
||||
factory _$$HttpResponseBody_TextImplCopyWith(
|
||||
_$HttpResponseBody_TextImpl value,
|
||||
$Res Function(_$HttpResponseBody_TextImpl) then) =
|
||||
__$$HttpResponseBody_TextImplCopyWithImpl<$Res>;
|
||||
_$HttpResponseBody_TextImpl value,
|
||||
$Res Function(_$HttpResponseBody_TextImpl) then,
|
||||
) = __$$HttpResponseBody_TextImplCopyWithImpl<$Res>;
|
||||
@useResult
|
||||
$Res call({String field0});
|
||||
}
|
||||
|
|
@ -465,23 +464,24 @@ abstract class _$$HttpResponseBody_TextImplCopyWith<$Res> {
|
|||
class __$$HttpResponseBody_TextImplCopyWithImpl<$Res>
|
||||
extends _$HttpResponseBodyCopyWithImpl<$Res, _$HttpResponseBody_TextImpl>
|
||||
implements _$$HttpResponseBody_TextImplCopyWith<$Res> {
|
||||
__$$HttpResponseBody_TextImplCopyWithImpl(_$HttpResponseBody_TextImpl _value,
|
||||
$Res Function(_$HttpResponseBody_TextImpl) _then)
|
||||
: super(_value, _then);
|
||||
__$$HttpResponseBody_TextImplCopyWithImpl(
|
||||
_$HttpResponseBody_TextImpl _value,
|
||||
$Res Function(_$HttpResponseBody_TextImpl) _then,
|
||||
) : super(_value, _then);
|
||||
|
||||
/// Create a copy of HttpResponseBody
|
||||
/// with the given fields replaced by the non-null parameter values.
|
||||
@pragma('vm:prefer-inline')
|
||||
@override
|
||||
$Res call({
|
||||
Object? field0 = null,
|
||||
}) {
|
||||
return _then(_$HttpResponseBody_TextImpl(
|
||||
null == field0
|
||||
? _value.field0
|
||||
: field0 // ignore: cast_nullable_to_non_nullable
|
||||
as String,
|
||||
));
|
||||
$Res call({Object? field0 = null}) {
|
||||
return _then(
|
||||
_$HttpResponseBody_TextImpl(
|
||||
null == field0
|
||||
? _value.field0
|
||||
: field0 // ignore: cast_nullable_to_non_nullable
|
||||
as String,
|
||||
),
|
||||
);
|
||||
}
|
||||
}
|
||||
|
||||
|
|
@ -515,8 +515,11 @@ class _$HttpResponseBody_TextImpl extends HttpResponseBody_Text {
|
|||
@override
|
||||
@pragma('vm:prefer-inline')
|
||||
_$$HttpResponseBody_TextImplCopyWith<_$HttpResponseBody_TextImpl>
|
||||
get copyWith => __$$HttpResponseBody_TextImplCopyWithImpl<
|
||||
_$HttpResponseBody_TextImpl>(this, _$identity);
|
||||
get copyWith =>
|
||||
__$$HttpResponseBody_TextImplCopyWithImpl<_$HttpResponseBody_TextImpl>(
|
||||
this,
|
||||
_$identity,
|
||||
);
|
||||
|
||||
@override
|
||||
@optionalTypeArgs
|
||||
|
|
@ -598,15 +601,15 @@ abstract class HttpResponseBody_Text extends HttpResponseBody {
|
|||
/// with the given fields replaced by the non-null parameter values.
|
||||
@JsonKey(includeFromJson: false, includeToJson: false)
|
||||
_$$HttpResponseBody_TextImplCopyWith<_$HttpResponseBody_TextImpl>
|
||||
get copyWith => throw _privateConstructorUsedError;
|
||||
get copyWith => throw _privateConstructorUsedError;
|
||||
}
|
||||
|
||||
/// @nodoc
|
||||
abstract class _$$HttpResponseBody_BytesImplCopyWith<$Res> {
|
||||
factory _$$HttpResponseBody_BytesImplCopyWith(
|
||||
_$HttpResponseBody_BytesImpl value,
|
||||
$Res Function(_$HttpResponseBody_BytesImpl) then) =
|
||||
__$$HttpResponseBody_BytesImplCopyWithImpl<$Res>;
|
||||
_$HttpResponseBody_BytesImpl value,
|
||||
$Res Function(_$HttpResponseBody_BytesImpl) then,
|
||||
) = __$$HttpResponseBody_BytesImplCopyWithImpl<$Res>;
|
||||
@useResult
|
||||
$Res call({Uint8List field0});
|
||||
}
|
||||
|
|
@ -616,23 +619,23 @@ class __$$HttpResponseBody_BytesImplCopyWithImpl<$Res>
|
|||
extends _$HttpResponseBodyCopyWithImpl<$Res, _$HttpResponseBody_BytesImpl>
|
||||
implements _$$HttpResponseBody_BytesImplCopyWith<$Res> {
|
||||
__$$HttpResponseBody_BytesImplCopyWithImpl(
|
||||
_$HttpResponseBody_BytesImpl _value,
|
||||
$Res Function(_$HttpResponseBody_BytesImpl) _then)
|
||||
: super(_value, _then);
|
||||
_$HttpResponseBody_BytesImpl _value,
|
||||
$Res Function(_$HttpResponseBody_BytesImpl) _then,
|
||||
) : super(_value, _then);
|
||||
|
||||
/// Create a copy of HttpResponseBody
|
||||
/// with the given fields replaced by the non-null parameter values.
|
||||
@pragma('vm:prefer-inline')
|
||||
@override
|
||||
$Res call({
|
||||
Object? field0 = null,
|
||||
}) {
|
||||
return _then(_$HttpResponseBody_BytesImpl(
|
||||
null == field0
|
||||
? _value.field0
|
||||
: field0 // ignore: cast_nullable_to_non_nullable
|
||||
as Uint8List,
|
||||
));
|
||||
$Res call({Object? field0 = null}) {
|
||||
return _then(
|
||||
_$HttpResponseBody_BytesImpl(
|
||||
null == field0
|
||||
? _value.field0
|
||||
: field0 // ignore: cast_nullable_to_non_nullable
|
||||
as Uint8List,
|
||||
),
|
||||
);
|
||||
}
|
||||
}
|
||||
|
||||
|
|
@ -667,8 +670,11 @@ class _$HttpResponseBody_BytesImpl extends HttpResponseBody_Bytes {
|
|||
@override
|
||||
@pragma('vm:prefer-inline')
|
||||
_$$HttpResponseBody_BytesImplCopyWith<_$HttpResponseBody_BytesImpl>
|
||||
get copyWith => __$$HttpResponseBody_BytesImplCopyWithImpl<
|
||||
_$HttpResponseBody_BytesImpl>(this, _$identity);
|
||||
get copyWith =>
|
||||
__$$HttpResponseBody_BytesImplCopyWithImpl<_$HttpResponseBody_BytesImpl>(
|
||||
this,
|
||||
_$identity,
|
||||
);
|
||||
|
||||
@override
|
||||
@optionalTypeArgs
|
||||
|
|
@ -750,15 +756,15 @@ abstract class HttpResponseBody_Bytes extends HttpResponseBody {
|
|||
/// with the given fields replaced by the non-null parameter values.
|
||||
@JsonKey(includeFromJson: false, includeToJson: false)
|
||||
_$$HttpResponseBody_BytesImplCopyWith<_$HttpResponseBody_BytesImpl>
|
||||
get copyWith => throw _privateConstructorUsedError;
|
||||
get copyWith => throw _privateConstructorUsedError;
|
||||
}
|
||||
|
||||
/// @nodoc
|
||||
abstract class _$$HttpResponseBody_StreamImplCopyWith<$Res> {
|
||||
factory _$$HttpResponseBody_StreamImplCopyWith(
|
||||
_$HttpResponseBody_StreamImpl value,
|
||||
$Res Function(_$HttpResponseBody_StreamImpl) then) =
|
||||
__$$HttpResponseBody_StreamImplCopyWithImpl<$Res>;
|
||||
_$HttpResponseBody_StreamImpl value,
|
||||
$Res Function(_$HttpResponseBody_StreamImpl) then,
|
||||
) = __$$HttpResponseBody_StreamImplCopyWithImpl<$Res>;
|
||||
}
|
||||
|
||||
/// @nodoc
|
||||
|
|
@ -766,9 +772,9 @@ class __$$HttpResponseBody_StreamImplCopyWithImpl<$Res>
|
|||
extends _$HttpResponseBodyCopyWithImpl<$Res, _$HttpResponseBody_StreamImpl>
|
||||
implements _$$HttpResponseBody_StreamImplCopyWith<$Res> {
|
||||
__$$HttpResponseBody_StreamImplCopyWithImpl(
|
||||
_$HttpResponseBody_StreamImpl _value,
|
||||
$Res Function(_$HttpResponseBody_StreamImpl) _then)
|
||||
: super(_value, _then);
|
||||
_$HttpResponseBody_StreamImpl _value,
|
||||
$Res Function(_$HttpResponseBody_StreamImpl) _then,
|
||||
) : super(_value, _then);
|
||||
|
||||
/// Create a copy of HttpResponseBody
|
||||
/// with the given fields replaced by the non-null parameter values.
|
||||
|
|
|
|||
|
|
@ -1,5 +1,5 @@
|
|||
// This file is automatically generated, so please do not edit it.
|
||||
// @generated by `flutter_rust_bridge`@ 2.9.0.
|
||||
// @generated by `flutter_rust_bridge`@ 2.10.0.
|
||||
|
||||
// ignore_for_file: unused_import, unused_element, unnecessary_import, duplicate_ignore, invalid_use_of_internal_member, annotate_overrides, non_constant_identifier_names, curly_braces_in_flow_control_structures, prefer_const_literals_to_create_immutables, unused_field
|
||||
|
||||
|
|
@ -63,7 +63,7 @@ class RustLib extends BaseEntrypoint<RustLibApi, RustLibApiImpl, RustLibWire> {
|
|||
kDefaultExternalLibraryLoaderConfig;
|
||||
|
||||
@override
|
||||
String get codegenVersion => '2.9.0';
|
||||
String get codegenVersion => '2.10.0';
|
||||
|
||||
@override
|
||||
int get rustContentHash => 885218533;
|
||||
|
|
|
|||
|
|
@ -1,5 +1,5 @@
|
|||
// This file is automatically generated, so please do not edit it.
|
||||
// @generated by `flutter_rust_bridge`@ 2.9.0.
|
||||
// @generated by `flutter_rust_bridge`@ 2.10.0.
|
||||
|
||||
// ignore_for_file: unused_import, unused_element, unnecessary_import, duplicate_ignore, invalid_use_of_internal_member, annotate_overrides, non_constant_identifier_names, curly_braces_in_flow_control_structures, prefer_const_literals_to_create_immutables, unused_field
|
||||
|
||||
|
|
|
|||
|
|
@ -1,5 +1,5 @@
|
|||
// This file is automatically generated, so please do not edit it.
|
||||
// @generated by `flutter_rust_bridge`@ 2.9.0.
|
||||
// @generated by `flutter_rust_bridge`@ 2.10.0.
|
||||
|
||||
// ignore_for_file: unused_import, unused_element, unnecessary_import, duplicate_ignore, invalid_use_of_internal_member, annotate_overrides, non_constant_identifier_names, curly_braces_in_flow_control_structures, prefer_const_literals_to_create_immutables, unused_field
|
||||
|
||||
|
|
|
|||
|
|
@ -1,5 +1,5 @@
|
|||
// This file is automatically generated, so please do not edit it.
|
||||
// @generated by `flutter_rust_bridge`@ 2.9.0.
|
||||
// @generated by `flutter_rust_bridge`@ 2.10.0.
|
||||
|
||||
// ignore_for_file: invalid_use_of_internal_member, unused_import, unnecessary_import
|
||||
|
||||
|
|
|
|||
66
pubspec.lock
66
pubspec.lock
|
|
@ -98,10 +98,10 @@ packages:
|
|||
dependency: transitive
|
||||
description:
|
||||
name: async
|
||||
sha256: d2872f9c19731c2e5f10444b14686eb7cc85c76274bd6c16e1816bff9a3bab63
|
||||
sha256: "758e6d74e971c3e5aceb4110bfd6698efc7f501675bcfe0c775459a8140750eb"
|
||||
url: "https://pub.dev"
|
||||
source: hosted
|
||||
version: "2.12.0"
|
||||
version: "2.13.0"
|
||||
audio_session:
|
||||
dependency: transitive
|
||||
description:
|
||||
|
|
@ -354,10 +354,10 @@ packages:
|
|||
dependency: "direct main"
|
||||
description:
|
||||
name: d4rt
|
||||
sha256: "3bb743e9e7567e240d0c8326a99fd7e26989e2a16516acef50f2bc55ade39451"
|
||||
sha256: "65f9d859ee2a770e1524fd7afd790340a8385ba6e7c886c98c581c1d4ad46a0c"
|
||||
url: "https://pub.dev"
|
||||
source: hosted
|
||||
version: "0.0.5"
|
||||
version: "0.0.6"
|
||||
dart_style:
|
||||
dependency: transitive
|
||||
description:
|
||||
|
|
@ -474,10 +474,10 @@ packages:
|
|||
dependency: transitive
|
||||
description:
|
||||
name: fake_async
|
||||
sha256: "6a95e56b2449df2273fd8c45a662d6947ce1ebb7aafe80e550a3f68297f3cacc"
|
||||
sha256: "5368f224a74523e8d2e7399ea1638b37aecfca824a3cc4dfdf77bf1fa905ac44"
|
||||
url: "https://pub.dev"
|
||||
source: hosted
|
||||
version: "1.3.2"
|
||||
version: "1.3.3"
|
||||
ffi:
|
||||
dependency: "direct main"
|
||||
description:
|
||||
|
|
@ -506,10 +506,10 @@ packages:
|
|||
dependency: "direct main"
|
||||
description:
|
||||
name: file_picker
|
||||
sha256: a222f231db4f822fc49e3b753674bda630e981873c84bf8604bceeb77fce0b24
|
||||
sha256: "77f8e81d22d2a07d0dee2c62e1dda71dc1da73bf43bb2d45af09727406167964"
|
||||
url: "https://pub.dev"
|
||||
source: hosted
|
||||
version: "10.1.7"
|
||||
version: "10.1.9"
|
||||
fixnum:
|
||||
dependency: transitive
|
||||
description:
|
||||
|
|
@ -645,7 +645,7 @@ packages:
|
|||
description:
|
||||
path: "."
|
||||
ref: main
|
||||
resolved-ref: "6b70858b18d53203f5024edd7e24fee4af8b921a"
|
||||
resolved-ref: "312d06c722287cfa05946bc75ac02587eb7a33c0"
|
||||
url: "https://github.com/kodjodevf/flutter_qjs.git"
|
||||
source: git
|
||||
version: "0.0.1"
|
||||
|
|
@ -661,10 +661,10 @@ packages:
|
|||
dependency: "direct main"
|
||||
description:
|
||||
name: flutter_rust_bridge
|
||||
sha256: "5a5c7a5deeef2cc2ffe6076a33b0429f4a20ceac22a397297aed2b1eb067e611"
|
||||
sha256: b416ff56002789e636244fb4cc449f587656eff995e5a7169457eb0593fcaddb
|
||||
url: "https://pub.dev"
|
||||
source: hosted
|
||||
version: "2.9.0"
|
||||
version: "2.10.0"
|
||||
flutter_svg:
|
||||
dependency: transitive
|
||||
description:
|
||||
|
|
@ -920,10 +920,10 @@ packages:
|
|||
dependency: "direct main"
|
||||
description:
|
||||
name: intl
|
||||
sha256: d6f56758b7d3014a48af9701c085700aac781a92a87a62b1333b46d8879661cf
|
||||
sha256: "3df61194eb431efc39c4ceba583b95633a403f46c9fd341e550ce0bfa50e9aa5"
|
||||
url: "https://pub.dev"
|
||||
source: hosted
|
||||
version: "0.19.0"
|
||||
version: "0.20.2"
|
||||
io:
|
||||
dependency: transitive
|
||||
description:
|
||||
|
|
@ -1040,18 +1040,18 @@ packages:
|
|||
dependency: transitive
|
||||
description:
|
||||
name: just_audio_web
|
||||
sha256: "8c7e779892e180cbc9ffb5a3c52f6e90e1cbbf4a63694cc450972a7edbd2bb6d"
|
||||
sha256: "6ba8a2a7e87d57d32f0f7b42856ade3d6a9fbe0f1a11fabae0a4f00bb73f0663"
|
||||
url: "https://pub.dev"
|
||||
source: hosted
|
||||
version: "0.4.15"
|
||||
version: "0.4.16"
|
||||
leak_tracker:
|
||||
dependency: transitive
|
||||
description:
|
||||
name: leak_tracker
|
||||
sha256: c35baad643ba394b40aac41080300150a4f08fd0fd6a10378f8f7c6bc161acec
|
||||
sha256: "6bb818ecbdffe216e81182c2f0714a2e62b593f4a4f13098713ff1685dfb6ab0"
|
||||
url: "https://pub.dev"
|
||||
source: hosted
|
||||
version: "10.0.8"
|
||||
version: "10.0.9"
|
||||
leak_tracker_flutter_testing:
|
||||
dependency: transitive
|
||||
description:
|
||||
|
|
@ -1433,18 +1433,18 @@ packages:
|
|||
dependency: "direct main"
|
||||
description:
|
||||
name: protobuf
|
||||
sha256: fbb0c37d435641d0b84813c1dad41e6fa61ddc880a320bce16b3063ecec35aa6
|
||||
sha256: "579fe5557eae58e3adca2e999e38f02441d8aa908703854a9e0a0f47fa857731"
|
||||
url: "https://pub.dev"
|
||||
source: hosted
|
||||
version: "4.0.0"
|
||||
version: "4.1.0"
|
||||
protoc_plugin:
|
||||
dependency: "direct dev"
|
||||
description:
|
||||
name: protoc_plugin
|
||||
sha256: cdec62ff876e61f4421aa7c87373c91db9b1430c748b38fb6d23613356064375
|
||||
sha256: "1d163c80b803c5aeec6364cca95edb22d31941e9dbd921463f063660c70a2368"
|
||||
url: "https://pub.dev"
|
||||
source: hosted
|
||||
version: "22.0.1"
|
||||
version: "22.2.0"
|
||||
provider:
|
||||
dependency: transitive
|
||||
description:
|
||||
|
|
@ -1997,10 +1997,10 @@ packages:
|
|||
dependency: transitive
|
||||
description:
|
||||
name: video_player_android
|
||||
sha256: ae7d4f1b41e3ac6d24dd9b9d5d6831b52d74a61bdd90a7a6262a33d8bb97c29a
|
||||
sha256: "28dcc4122079f40f93a0965b3679aff1a5f4251cf79611bd8011f937eb6b69de"
|
||||
url: "https://pub.dev"
|
||||
source: hosted
|
||||
version: "2.8.2"
|
||||
version: "2.8.4"
|
||||
video_player_avfoundation:
|
||||
dependency: transitive
|
||||
description:
|
||||
|
|
@ -2029,10 +2029,10 @@ packages:
|
|||
dependency: transitive
|
||||
description:
|
||||
name: vm_service
|
||||
sha256: "0968250880a6c5fe7edc067ed0a13d4bae1577fe2771dcf3010d52c4a9d3ca14"
|
||||
sha256: ddfa8d30d89985b96407efce8acbdd124701f96741f2d981ca860662f1c0dc02
|
||||
url: "https://pub.dev"
|
||||
source: hosted
|
||||
version: "14.3.1"
|
||||
version: "15.0.0"
|
||||
volume_controller:
|
||||
dependency: transitive
|
||||
description:
|
||||
|
|
@ -2093,34 +2093,34 @@ packages:
|
|||
dependency: transitive
|
||||
description:
|
||||
name: webview_flutter
|
||||
sha256: caf0f5a1012aa3c2d33c4215adc72dc1194bb59a2d3ed901f457965626805e66
|
||||
sha256: c3e4fe614b1c814950ad07186007eff2f2e5dd2935eba7b9a9a1af8e5885f1ba
|
||||
url: "https://pub.dev"
|
||||
source: hosted
|
||||
version: "4.11.0"
|
||||
version: "4.13.0"
|
||||
webview_flutter_android:
|
||||
dependency: transitive
|
||||
description:
|
||||
name: webview_flutter_android
|
||||
sha256: "6b0eae02b7604954b80ee9a29507ac38f5de74b712faa6fee33abc1cdedc1b21"
|
||||
sha256: f6e6afef6e234801da77170f7a1847ded8450778caf2fe13979d140484be3678
|
||||
url: "https://pub.dev"
|
||||
source: hosted
|
||||
version: "4.4.2"
|
||||
version: "4.7.0"
|
||||
webview_flutter_platform_interface:
|
||||
dependency: transitive
|
||||
description:
|
||||
name: webview_flutter_platform_interface
|
||||
sha256: "18b1640839cf6546784a524c72aded5b6e86b23e7167dc2311cc96f7658b64bd"
|
||||
sha256: "7cb32b21825bd65569665c32bb00a34ded5779786d6201f5350979d2d529940d"
|
||||
url: "https://pub.dev"
|
||||
source: hosted
|
||||
version: "2.11.0"
|
||||
version: "2.13.0"
|
||||
webview_flutter_wkwebview:
|
||||
dependency: transitive
|
||||
description:
|
||||
name: webview_flutter_wkwebview
|
||||
sha256: c9f9be526fa0d3347374ceaa05c4b3acb85f4f112abd62f7d74b7d301fa515ff
|
||||
sha256: a3d461fe3467014e05f3ac4962e5fdde2a4bf44c561cb53e9ae5c586600fdbc3
|
||||
url: "https://pub.dev"
|
||||
source: hosted
|
||||
version: "3.20.0"
|
||||
version: "3.22.0"
|
||||
win32:
|
||||
dependency: "direct main"
|
||||
description:
|
||||
|
|
|
|||
|
|
@ -21,7 +21,7 @@ dependencies:
|
|||
extended_image: ^10.0.0
|
||||
photo_view: ^0.15.0
|
||||
grouped_list: ^6.0.0
|
||||
intl: ^0.19.0
|
||||
intl: 0.20.2
|
||||
google_fonts: ^6.2.1
|
||||
url_launcher: ^6.3.1
|
||||
package_info_plus: ^8.0.0
|
||||
|
|
@ -64,7 +64,7 @@ dependencies:
|
|||
re_highlight: ^0.0.3
|
||||
json_view: ^0.4.2
|
||||
super_sliver_list: ^0.4.1
|
||||
flutter_rust_bridge: 2.9.0
|
||||
flutter_rust_bridge: 2.10.0
|
||||
rust_lib_mangayomi:
|
||||
path: rust_builder
|
||||
pseudom: ^1.0.1
|
||||
|
|
@ -86,7 +86,7 @@ dependencies:
|
|||
marquee: ^2.2.3
|
||||
epubx:
|
||||
path: ./epubx
|
||||
d4rt: ^0.0.5
|
||||
d4rt: ^0.0.6
|
||||
|
||||
dependency_overrides:
|
||||
ffi: ^2.1.3
|
||||
|
|
|
|||
16
rust/Cargo.lock
generated
16
rust/Cargo.lock
generated
|
|
@ -321,9 +321,9 @@ checksum = "baf1de4339761588bc0619e3cbc0120ee582ebb74b53b4efbf79117bd2da40fd"
|
|||
|
||||
[[package]]
|
||||
name = "chrono"
|
||||
version = "0.4.40"
|
||||
version = "0.4.41"
|
||||
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||
checksum = "1a7964611d71df112cb1730f2ee67324fcf4d0fc6606acbbe9bfe06df124637c"
|
||||
checksum = "c469d952047f47f91b68d1cba3f10d63c11d73e4636f24f08daf0278abf01c4d"
|
||||
dependencies = [
|
||||
"android-tzdata",
|
||||
"iana-time-zone",
|
||||
|
|
@ -522,9 +522,9 @@ dependencies = [
|
|||
|
||||
[[package]]
|
||||
name = "flutter_rust_bridge"
|
||||
version = "2.9.0"
|
||||
version = "2.10.0"
|
||||
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||
checksum = "2f8c0dee6249225e815dcff3f3a39b98d9f66fdb3c392a432715b646bfa4da02"
|
||||
checksum = "ff1d2ad18166cead8c1b92b1c00e64aacc32e6ebd1ac95f77089c276c9c6bd8c"
|
||||
dependencies = [
|
||||
"allo-isolate",
|
||||
"android_logger",
|
||||
|
|
@ -552,9 +552,9 @@ dependencies = [
|
|||
|
||||
[[package]]
|
||||
name = "flutter_rust_bridge_macros"
|
||||
version = "2.9.0"
|
||||
version = "2.10.0"
|
||||
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||
checksum = "8e88d604908d9eccb4ca9c26640ce41033165cbef041460e704ae28bd5208bce"
|
||||
checksum = "36cf75fba54902e67db5eef4a520df1c9f604db6f71f106fbc012477e2d81542"
|
||||
dependencies = [
|
||||
"hex",
|
||||
"md-5",
|
||||
|
|
@ -1910,9 +1910,9 @@ checksum = "1f3ccbac311fea05f86f61904b462b55fb3df8837a366dfc601a0161d0532f20"
|
|||
|
||||
[[package]]
|
||||
name = "tokio"
|
||||
version = "1.44.1"
|
||||
version = "1.45.0"
|
||||
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||
checksum = "f382da615b842244d4b8738c82ed1275e6c5dd90c459a30941cd07080b06c91a"
|
||||
checksum = "2513ca694ef9ede0fb23fe71a4ee4107cb102b9dc1930f6d0fd77aae068ae165"
|
||||
dependencies = [
|
||||
"backtrace",
|
||||
"bytes",
|
||||
|
|
|
|||
|
|
@ -7,10 +7,10 @@ edition = "2021"
|
|||
crate-type = ["cdylib", "staticlib"]
|
||||
|
||||
[dependencies]
|
||||
flutter_rust_bridge = { version = "=2.9.0", features = ["chrono"] }
|
||||
flutter_rust_bridge = { version = "=2.10.0", features = ["chrono"] }
|
||||
image = "0.25.6"
|
||||
chrono = "0.4.40"
|
||||
chrono = "0.4.41"
|
||||
futures-util = "0.3.31"
|
||||
reqwest = { version = "0.12.15", default-features = false, features = ["charset", "http2", "rustls-tls-webpki-roots", "stream", "multipart", "socks", "brotli", "gzip"] }
|
||||
tokio = { version = "1.44.1", features = ["full"] }
|
||||
tokio = { version = "1.45.0", features = ["full"] }
|
||||
tokio-util = "0.7.14"
|
||||
|
|
|
|||
|
|
@ -1,5 +1,5 @@
|
|||
// This file is automatically generated, so please do not edit it.
|
||||
// @generated by `flutter_rust_bridge`@ 2.9.0.
|
||||
// @generated by `flutter_rust_bridge`@ 2.10.0.
|
||||
|
||||
#![allow(
|
||||
non_camel_case_types,
|
||||
|
|
@ -38,7 +38,7 @@ flutter_rust_bridge::frb_generated_boilerplate!(
|
|||
default_rust_opaque = RustOpaqueMoi,
|
||||
default_rust_auto_opaque = RustAutoOpaqueMoi,
|
||||
);
|
||||
pub(crate) const FLUTTER_RUST_BRIDGE_CODEGEN_VERSION: &str = "2.9.0";
|
||||
pub(crate) const FLUTTER_RUST_BRIDGE_CODEGEN_VERSION: &str = "2.10.0";
|
||||
pub(crate) const FLUTTER_RUST_BRIDGE_CODEGEN_CONTENT_HASH: i32 = 885218533;
|
||||
|
||||
// Section: executor
|
||||
|
|
@ -2441,7 +2441,7 @@ impl SseEncode for usize {
|
|||
#[cfg(not(target_family = "wasm"))]
|
||||
mod io {
|
||||
// This file is automatically generated, so please do not edit it.
|
||||
// @generated by `flutter_rust_bridge`@ 2.9.0.
|
||||
// @generated by `flutter_rust_bridge`@ 2.10.0.
|
||||
|
||||
// Section: imports
|
||||
|
||||
|
|
@ -2507,7 +2507,7 @@ pub use io::*;
|
|||
#[cfg(target_family = "wasm")]
|
||||
mod web {
|
||||
// This file is automatically generated, so please do not edit it.
|
||||
// @generated by `flutter_rust_bridge`@ 2.9.0.
|
||||
// @generated by `flutter_rust_bridge`@ 2.10.0.
|
||||
|
||||
// Section: imports
|
||||
|
||||
|
|
|
|||
|
|
@ -37,10 +37,10 @@ packages:
|
|||
dependency: transitive
|
||||
description:
|
||||
name: async
|
||||
sha256: d2872f9c19731c2e5f10444b14686eb7cc85c76274bd6c16e1816bff9a3bab63
|
||||
sha256: "758e6d74e971c3e5aceb4110bfd6698efc7f501675bcfe0c775459a8140750eb"
|
||||
url: "https://pub.dev"
|
||||
source: hosted
|
||||
version: "2.12.0"
|
||||
version: "2.13.0"
|
||||
boolean_selector:
|
||||
dependency: transitive
|
||||
description:
|
||||
|
|
@ -49,6 +49,14 @@ packages:
|
|||
url: "https://pub.dev"
|
||||
source: hosted
|
||||
version: "2.1.2"
|
||||
cli_config:
|
||||
dependency: transitive
|
||||
description:
|
||||
name: cli_config
|
||||
sha256: ac20a183a07002b700f0c25e61b7ee46b23c309d76ab7b7640a028f18e4d99ec
|
||||
url: "https://pub.dev"
|
||||
source: hosted
|
||||
version: "0.2.0"
|
||||
collection:
|
||||
dependency: "direct main"
|
||||
description:
|
||||
|
|
@ -69,10 +77,10 @@ packages:
|
|||
dependency: transitive
|
||||
description:
|
||||
name: coverage
|
||||
sha256: e3493833ea012784c740e341952298f1cc77f1f01b1bbc3eb4eecf6984fb7f43
|
||||
sha256: "802bd084fb82e55df091ec8ad1553a7331b61c08251eef19a508b6f3f3a9858d"
|
||||
url: "https://pub.dev"
|
||||
source: hosted
|
||||
version: "1.11.1"
|
||||
version: "1.13.1"
|
||||
crypto:
|
||||
dependency: "direct main"
|
||||
description:
|
||||
|
|
@ -125,10 +133,10 @@ packages:
|
|||
dependency: transitive
|
||||
description:
|
||||
name: glob
|
||||
sha256: "0e7014b3b7d4dac1ca4d6114f82bf1782ee86745b9b42a92c9289c23d8a0ab63"
|
||||
sha256: c3f1ee72c96f8f78935e18aa8cecced9ab132419e8625dc187e1c2408efc20de
|
||||
url: "https://pub.dev"
|
||||
source: hosted
|
||||
version: "2.1.2"
|
||||
version: "2.1.3"
|
||||
hex:
|
||||
dependency: "direct main"
|
||||
description:
|
||||
|
|
@ -149,10 +157,10 @@ packages:
|
|||
dependency: transitive
|
||||
description:
|
||||
name: http_multi_server
|
||||
sha256: "97486f20f9c2f7be8f514851703d0119c3596d14ea63227af6f7a481ef2b2f8b"
|
||||
sha256: aa6199f908078bb1c5efb8d8638d4ae191aac11b311132c3ef48ce352fb52ef8
|
||||
url: "https://pub.dev"
|
||||
source: hosted
|
||||
version: "3.2.1"
|
||||
version: "3.2.2"
|
||||
http_parser:
|
||||
dependency: transitive
|
||||
description:
|
||||
|
|
@ -173,10 +181,10 @@ packages:
|
|||
dependency: transitive
|
||||
description:
|
||||
name: js
|
||||
sha256: c1b2e9b5ea78c45e1a0788d29606ba27dc5f71f019f32ca5140f61ef071838cf
|
||||
sha256: "53385261521cc4a0c4658fd0ad07a7d14591cf8fc33abbceae306ddb974888dc"
|
||||
url: "https://pub.dev"
|
||||
source: hosted
|
||||
version: "0.7.1"
|
||||
version: "0.7.2"
|
||||
json_annotation:
|
||||
dependency: transitive
|
||||
description:
|
||||
|
|
@ -205,18 +213,18 @@ packages:
|
|||
dependency: transitive
|
||||
description:
|
||||
name: matcher
|
||||
sha256: d2323aa2060500f906aa31a895b4030b6da3ebdcc5619d14ce1aada65cd161cb
|
||||
sha256: dc58c723c3c24bf8d3e2d3ad3f2f9d7bd9cf43ec6feaa64181775e60190153f2
|
||||
url: "https://pub.dev"
|
||||
source: hosted
|
||||
version: "0.12.16+1"
|
||||
version: "0.12.17"
|
||||
meta:
|
||||
dependency: transitive
|
||||
description:
|
||||
name: meta
|
||||
sha256: e3641ec5d63ebf0d9b41bd43201a66e3fc79a65db5f61fc181f04cd27aab950c
|
||||
sha256: "23f08335362185a5ea2ad3a4e597f1375e78bce8a040df5c600c8d3552ef2394"
|
||||
url: "https://pub.dev"
|
||||
source: hosted
|
||||
version: "1.16.0"
|
||||
version: "1.17.0"
|
||||
mime:
|
||||
dependency: transitive
|
||||
description:
|
||||
|
|
@ -237,10 +245,10 @@ packages:
|
|||
dependency: transitive
|
||||
description:
|
||||
name: package_config
|
||||
sha256: "92d4488434b520a62570293fbd33bb556c7d49230791c1b4bbd973baf6d2dc67"
|
||||
sha256: f096c55ebb7deb7e384101542bfba8c52696c1b56fca2eb62827989ef2353bbc
|
||||
url: "https://pub.dev"
|
||||
source: hosted
|
||||
version: "2.1.1"
|
||||
version: "2.2.0"
|
||||
path:
|
||||
dependency: "direct main"
|
||||
description:
|
||||
|
|
@ -269,10 +277,10 @@ packages:
|
|||
dependency: transitive
|
||||
description:
|
||||
name: pub_semver
|
||||
sha256: "7b3cfbf654f3edd0c6298ecd5be782ce997ddf0e00531b9464b55245185bbbbd"
|
||||
sha256: "5bfcf68ca79ef689f8990d1160781b4bad40a3bd5e5218ad4076ddb7f4081585"
|
||||
url: "https://pub.dev"
|
||||
source: hosted
|
||||
version: "2.1.5"
|
||||
version: "2.2.0"
|
||||
shelf:
|
||||
dependency: transitive
|
||||
description:
|
||||
|
|
@ -301,10 +309,10 @@ packages:
|
|||
dependency: transitive
|
||||
description:
|
||||
name: shelf_web_socket
|
||||
sha256: cc36c297b52866d203dbf9332263c94becc2fe0ceaa9681d07b6ef9807023b67
|
||||
sha256: "3632775c8e90d6c9712f883e633716432a27758216dfb61bd86a8321c0580925"
|
||||
url: "https://pub.dev"
|
||||
source: hosted
|
||||
version: "2.0.1"
|
||||
version: "3.0.0"
|
||||
source_map_stack_trace:
|
||||
dependency: transitive
|
||||
description:
|
||||
|
|
@ -333,58 +341,58 @@ packages:
|
|||
dependency: transitive
|
||||
description:
|
||||
name: stack_trace
|
||||
sha256: "9f47fd3630d76be3ab26f0ee06d213679aa425996925ff3feffdec504931c377"
|
||||
sha256: "8b27215b45d22309b5cddda1aa2b19bdfec9df0e765f2de506401c071d38d1b1"
|
||||
url: "https://pub.dev"
|
||||
source: hosted
|
||||
version: "1.12.0"
|
||||
version: "1.12.1"
|
||||
stream_channel:
|
||||
dependency: transitive
|
||||
description:
|
||||
name: stream_channel
|
||||
sha256: ba2aa5d8cc609d96bbb2899c28934f9e1af5cddbd60a827822ea467161eb54e7
|
||||
sha256: "969e04c80b8bcdf826f8f16579c7b14d780458bd97f56d107d3950fdbeef059d"
|
||||
url: "https://pub.dev"
|
||||
source: hosted
|
||||
version: "2.1.2"
|
||||
version: "2.1.4"
|
||||
string_scanner:
|
||||
dependency: transitive
|
||||
description:
|
||||
name: string_scanner
|
||||
sha256: "0bd04f5bb74fcd6ff0606a888a30e917af9bd52820b178eaa464beb11dca84b6"
|
||||
sha256: "921cd31725b72fe181906c6a94d987c78e3b98c2e205b397ea399d4054872b43"
|
||||
url: "https://pub.dev"
|
||||
source: hosted
|
||||
version: "1.4.0"
|
||||
version: "1.4.1"
|
||||
term_glyph:
|
||||
dependency: transitive
|
||||
description:
|
||||
name: term_glyph
|
||||
sha256: a29248a84fbb7c79282b40b8c72a1209db169a2e0542bce341da992fe1bc7e84
|
||||
sha256: "7f554798625ea768a7518313e58f83891c7f5024f88e46e7182a4558850a4b8e"
|
||||
url: "https://pub.dev"
|
||||
source: hosted
|
||||
version: "1.2.1"
|
||||
version: "1.2.2"
|
||||
test:
|
||||
dependency: "direct dev"
|
||||
description:
|
||||
name: test
|
||||
sha256: "22eb7769bee38c7e032d532e8daa2e1cc901b799f603550a4db8f3a5f5173ea2"
|
||||
sha256: "65e29d831719be0591f7b3b1a32a3cda258ec98c58c7b25f7b84241bc31215bb"
|
||||
url: "https://pub.dev"
|
||||
source: hosted
|
||||
version: "1.25.12"
|
||||
version: "1.26.2"
|
||||
test_api:
|
||||
dependency: transitive
|
||||
description:
|
||||
name: test_api
|
||||
sha256: fb31f383e2ee25fbbfe06b40fe21e1e458d14080e3c67e7ba0acfde4df4e0bbd
|
||||
sha256: "522f00f556e73044315fa4585ec3270f1808a4b186c936e612cab0b565ff1e00"
|
||||
url: "https://pub.dev"
|
||||
source: hosted
|
||||
version: "0.7.4"
|
||||
version: "0.7.6"
|
||||
test_core:
|
||||
dependency: transitive
|
||||
description:
|
||||
name: test_core
|
||||
sha256: "84d17c3486c8dfdbe5e12a50c8ae176d15e2a771b96909a9442b40173649ccaa"
|
||||
sha256: "80bf5a02b60af04b09e14f6fe68b921aad119493e26e490deaca5993fef1b05a"
|
||||
url: "https://pub.dev"
|
||||
source: hosted
|
||||
version: "0.6.8"
|
||||
version: "0.6.11"
|
||||
toml:
|
||||
dependency: "direct main"
|
||||
description:
|
||||
|
|
@ -421,34 +429,34 @@ packages:
|
|||
dependency: transitive
|
||||
description:
|
||||
name: watcher
|
||||
sha256: "3d2ad6751b3c16cf07c7fca317a1413b3f26530319181b37e3b9039b84fc01d8"
|
||||
sha256: "69da27e49efa56a15f8afe8f4438c4ec02eff0a117df1b22ea4aad194fe1c104"
|
||||
url: "https://pub.dev"
|
||||
source: hosted
|
||||
version: "1.1.0"
|
||||
version: "1.1.1"
|
||||
web:
|
||||
dependency: transitive
|
||||
description:
|
||||
name: web
|
||||
sha256: cd3543bd5798f6ad290ea73d210f423502e71900302dde696f8bff84bf89a1cb
|
||||
sha256: "868d88a33d8a87b18ffc05f9f030ba328ffefba92d6c127917a2ba740f9cfe4a"
|
||||
url: "https://pub.dev"
|
||||
source: hosted
|
||||
version: "1.1.0"
|
||||
version: "1.1.1"
|
||||
web_socket:
|
||||
dependency: transitive
|
||||
description:
|
||||
name: web_socket
|
||||
sha256: "3c12d96c0c9a4eec095246debcea7b86c0324f22df69893d538fcc6f1b8cce83"
|
||||
sha256: "34d64019aa8e36bf9842ac014bb5d2f5586ca73df5e4d9bf5c936975cae6982c"
|
||||
url: "https://pub.dev"
|
||||
source: hosted
|
||||
version: "0.1.6"
|
||||
version: "1.0.1"
|
||||
web_socket_channel:
|
||||
dependency: transitive
|
||||
description:
|
||||
name: web_socket_channel
|
||||
sha256: "9f187088ed104edd8662ca07af4b124465893caf063ba29758f97af57e61da8f"
|
||||
sha256: d645757fb0f4773d602444000a8131ff5d48c9e47adfe9772652dd1a4f2d45c8
|
||||
url: "https://pub.dev"
|
||||
source: hosted
|
||||
version: "3.0.1"
|
||||
version: "3.0.3"
|
||||
webkit_inspection_protocol:
|
||||
dependency: transitive
|
||||
description:
|
||||
|
|
@ -466,4 +474,4 @@ packages:
|
|||
source: hosted
|
||||
version: "3.1.2"
|
||||
sdks:
|
||||
dart: ">=3.5.0 <4.0.0"
|
||||
dart: ">=3.7.0-0 <4.0.0"
|
||||
|
|
|
|||
Loading…
Reference in a new issue