LCOV - code coverage report
Current view: top level - lib/l10n - app_localizations.dart (source / functions) Hit Total Coverage
Test: lcov.info Lines: 16 63 25.4 %
Date: 2026-07-15 19:28:30 Functions: 0 0 -

          Line data    Source code
       1             : import 'dart:async';
       2             : 
       3             : import 'package:flutter/foundation.dart';
       4             : import 'package:flutter/widgets.dart';
       5             : import 'package:flutter_localizations/flutter_localizations.dart';
       6             : import 'package:intl/intl.dart' as intl;
       7             : 
       8             : import 'app_localizations_cy.dart';
       9             : import 'app_localizations_da.dart';
      10             : import 'app_localizations_de.dart';
      11             : import 'app_localizations_el.dart';
      12             : import 'app_localizations_en.dart';
      13             : import 'app_localizations_es.dart';
      14             : import 'app_localizations_fr.dart';
      15             : import 'app_localizations_it.dart';
      16             : import 'app_localizations_ja.dart';
      17             : import 'app_localizations_ko.dart';
      18             : import 'app_localizations_lb.dart';
      19             : import 'app_localizations_nl.dart';
      20             : import 'app_localizations_no.dart';
      21             : import 'app_localizations_pl.dart';
      22             : import 'app_localizations_pt.dart';
      23             : import 'app_localizations_ro.dart';
      24             : import 'app_localizations_ru.dart';
      25             : import 'app_localizations_sk.dart';
      26             : import 'app_localizations_sv.dart';
      27             : import 'app_localizations_sw.dart';
      28             : import 'app_localizations_tr.dart';
      29             : import 'app_localizations_uk.dart';
      30             : import 'app_localizations_uz.dart';
      31             : 
      32             : // ignore_for_file: type=lint
      33             : 
      34             : /// Callers can lookup localized strings with an instance of AppLocalizations
      35             : /// returned by `AppLocalizations.of(context)`.
      36             : ///
      37             : /// Applications need to include `AppLocalizations.delegate()` in their app's
      38             : /// `localizationDelegates` list, and the locales they support in the app's
      39             : /// `supportedLocales` list. For example:
      40             : ///
      41             : /// ```dart
      42             : /// import 'l10n/app_localizations.dart';
      43             : ///
      44             : /// return MaterialApp(
      45             : ///   localizationsDelegates: AppLocalizations.localizationsDelegates,
      46             : ///   supportedLocales: AppLocalizations.supportedLocales,
      47             : ///   home: MyApplicationHome(),
      48             : /// );
      49             : /// ```
      50             : ///
      51             : /// ## Update pubspec.yaml
      52             : ///
      53             : /// Please make sure to update your pubspec.yaml to include the following
      54             : /// packages:
      55             : ///
      56             : /// ```yaml
      57             : /// dependencies:
      58             : ///   # Internationalization support.
      59             : ///   flutter_localizations:
      60             : ///     sdk: flutter
      61             : ///   intl: any # Use the pinned version from flutter_localizations
      62             : ///
      63             : ///   # Rest of dependencies
      64             : /// ```
      65             : ///
      66             : /// ## iOS Applications
      67             : ///
      68             : /// iOS applications define key application metadata, including supported
      69             : /// locales, in an Info.plist file that is built into the application bundle.
      70             : /// To configure the locales supported by your app, you’ll need to edit this
      71             : /// file.
      72             : ///
      73             : /// First, open your project’s ios/Runner.xcworkspace Xcode workspace file.
      74             : /// Then, in the Project Navigator, open the Info.plist file under the Runner
      75             : /// project’s Runner folder.
      76             : ///
      77             : /// Next, select the Information Property List item, select Add Item from the
      78             : /// Editor menu, then select Localizations from the pop-up menu.
      79             : ///
      80             : /// Select and expand the newly-created Localizations item then, for each
      81             : /// locale your application supports, add a new item and select the locale
      82             : /// you wish to add from the pop-up menu in the Value field. This list should
      83             : /// be consistent with the languages listed in the AppLocalizations.supportedLocales
      84             : /// property.
      85             : abstract class AppLocalizations {
      86          15 :   AppLocalizations(String locale) : localeName = intl.Intl.canonicalizedLocale(locale.toString());
      87             : 
      88             :   final String localeName;
      89             : 
      90           0 :   static AppLocalizations? of(BuildContext context) {
      91           0 :     return Localizations.of<AppLocalizations>(context, AppLocalizations);
      92             :   }
      93             : 
      94             :   static const LocalizationsDelegate<AppLocalizations> delegate = _AppLocalizationsDelegate();
      95             : 
      96             :   /// A list of this localizations delegate along with the default localizations
      97             :   /// delegates.
      98             :   ///
      99             :   /// Returns a list of localizations delegates containing this delegate along with
     100             :   /// GlobalMaterialLocalizations.delegate, GlobalCupertinoLocalizations.delegate,
     101             :   /// and GlobalWidgetsLocalizations.delegate.
     102             :   ///
     103             :   /// Additional delegates can be added by appending to this list in
     104             :   /// MaterialApp. This list does not have to be used at all if a custom list
     105             :   /// of delegates is preferred or required.
     106             :   static const List<LocalizationsDelegate<dynamic>> localizationsDelegates = <LocalizationsDelegate<dynamic>>[
     107             :     delegate,
     108             :     GlobalMaterialLocalizations.delegate,
     109             :     GlobalCupertinoLocalizations.delegate,
     110             :     GlobalWidgetsLocalizations.delegate,
     111             :   ];
     112             : 
     113             :   /// A list of this localizations delegate's supported locales.
     114             :   static const List<Locale> supportedLocales = <Locale>[
     115             :     Locale('cy'),
     116             :     Locale('da'),
     117             :     Locale('de'),
     118             :     Locale('el'),
     119             :     Locale('en'),
     120             :     Locale('es'),
     121             :     Locale('fr'),
     122             :     Locale('it'),
     123             :     Locale('ja'),
     124             :     Locale('ko'),
     125             :     Locale('lb'),
     126             :     Locale('nl'),
     127             :     Locale('no'),
     128             :     Locale('pl'),
     129             :     Locale('pt'),
     130             :     Locale('pt', 'BR'),
     131             :     Locale('ro'),
     132             :     Locale('ru'),
     133             :     Locale('sk'),
     134             :     Locale('sv'),
     135             :     Locale('sw'),
     136             :     Locale('tr'),
     137             :     Locale('uk'),
     138             :     Locale('uz'),
     139             :   ];
     140             : 
     141             :   /// No description provided for @contactDisconnectSummary.
     142             :   ///
     143             :   /// In en, this message translates to:
     144             :   /// **'Disconnect from Contact'**
     145             :   String get contactDisconnectSummary;
     146             : 
     147             :   /// No description provided for @messageHistoryEndOfHistory.
     148             :   ///
     149             :   /// In en, this message translates to:
     150             :   /// **'Beginning of Conversation History'**
     151             :   String get messageHistoryEndOfHistory;
     152             : 
     153             :   /// No description provided for @messageHistoryLoadOlderMessages.
     154             :   ///
     155             :   /// In en, this message translates to:
     156             :   /// **'Load Older Messages'**
     157             :   String get messageHistoryLoadOlderMessages;
     158             : 
     159             :   /// No description provided for @relativeTimeEarlier.
     160             :   ///
     161             :   /// In en, this message translates to:
     162             :   /// **'Earlier'**
     163             :   String get relativeTimeEarlier;
     164             : 
     165             :   /// No description provided for @relativeTimeThisYear.
     166             :   ///
     167             :   /// In en, this message translates to:
     168             :   /// **'This Year'**
     169             :   String get relativeTimeThisYear;
     170             : 
     171             :   /// No description provided for @relativeTimeLastMonth.
     172             :   ///
     173             :   /// In en, this message translates to:
     174             :   /// **'Last Month'**
     175             :   String get relativeTimeLastMonth;
     176             : 
     177             :   /// No description provided for @relativeTimeThisMonth.
     178             :   ///
     179             :   /// In en, this message translates to:
     180             :   /// **'This Month'**
     181             :   String get relativeTimeThisMonth;
     182             : 
     183             :   /// No description provided for @relativeTimeLastWeek.
     184             :   ///
     185             :   /// In en, this message translates to:
     186             :   /// **'Last Week'**
     187             :   String get relativeTimeLastWeek;
     188             : 
     189             :   /// No description provided for @relativeTimeThisWeek.
     190             :   ///
     191             :   /// In en, this message translates to:
     192             :   /// **'This Week'**
     193             :   String get relativeTimeThisWeek;
     194             : 
     195             :   /// No description provided for @relativeTimeYesterday.
     196             :   ///
     197             :   /// In en, this message translates to:
     198             :   /// **'Yesterday'**
     199             :   String get relativeTimeYesterday;
     200             : 
     201             :   /// No description provided for @relativeTimeToday.
     202             :   ///
     203             :   /// In en, this message translates to:
     204             :   /// **'Today'**
     205             :   String get relativeTimeToday;
     206             : 
     207             :   /// No description provided for @privateNameHint.
     208             :   ///
     209             :   /// In en, this message translates to:
     210             :   /// **'Private name for this account (never shared)'**
     211             :   String get privateNameHint;
     212             : 
     213             :   /// No description provided for @privateNameLabel.
     214             :   ///
     215             :   /// In en, this message translates to:
     216             :   /// **'Private Name'**
     217             :   String get privateNameLabel;
     218             : 
     219             :   /// No description provided for @settingsExperimentsShowPerformanceDescription.
     220             :   ///
     221             :   /// In en, this message translates to:
     222             :   /// **'Display an overlay graph of render time.'**
     223             :   String get settingsExperimentsShowPerformanceDescription;
     224             : 
     225             :   /// No description provided for @settingsExperimentsShowPerformanceTitle.
     226             :   ///
     227             :   /// In en, this message translates to:
     228             :   /// **'Show Performance Overlay'**
     229             :   String get settingsExperimentsShowPerformanceTitle;
     230             : 
     231             :   /// No description provided for @settingThemeOverwriteConfirm.
     232             :   ///
     233             :   /// In en, this message translates to:
     234             :   /// **'Confirm'**
     235             :   String get settingThemeOverwriteConfirm;
     236             : 
     237             :   /// No description provided for @settingThemeOverwriteQuestion.
     238             :   ///
     239             :   /// In en, this message translates to:
     240             :   /// **'Theme \$themeName already exists, confirm overwrite?'**
     241             :   String get settingThemeOverwriteQuestion;
     242             : 
     243             :   /// No description provided for @settingsThemeErrorInvalid.
     244             :   ///
     245             :   /// In en, this message translates to:
     246             :   /// **'Error: Could not import \$themeName, theme.yml missing, not a theme directory'**
     247             :   String get settingsThemeErrorInvalid;
     248             : 
     249             :   /// No description provided for @settingsImportThemeTitle.
     250             :   ///
     251             :   /// In en, this message translates to:
     252             :   /// **'Import Theme'**
     253             :   String get settingsImportThemeTitle;
     254             : 
     255             :   /// No description provided for @settingsImportThemeDescription.
     256             :   ///
     257             :   /// In en, this message translates to:
     258             :   /// **'Select theme directory to import for use in Cwtch'**
     259             :   String get settingsImportThemeDescription;
     260             : 
     261             :   /// No description provided for @settingsImportThemeButton.
     262             :   ///
     263             :   /// In en, this message translates to:
     264             :   /// **'Import Theme'**
     265             :   String get settingsImportThemeButton;
     266             : 
     267             :   /// No description provided for @settingsThemeImagesDescription.
     268             :   ///
     269             :   /// In en, this message translates to:
     270             :   /// **'Enable display of images from themes'**
     271             :   String get settingsThemeImagesDescription;
     272             : 
     273             :   /// No description provided for @settingsThemeImages.
     274             :   ///
     275             :   /// In en, this message translates to:
     276             :   /// **'Theme Images'**
     277             :   String get settingsThemeImages;
     278             : 
     279             :   /// No description provided for @settingsGroupAbout.
     280             :   ///
     281             :   /// In en, this message translates to:
     282             :   /// **'About'**
     283             :   String get settingsGroupAbout;
     284             : 
     285             :   /// No description provided for @localeUzbek.
     286             :   ///
     287             :   /// In en, this message translates to:
     288             :   /// **'Uzbek  / Oʻzbekcha'**
     289             :   String get localeUzbek;
     290             : 
     291             :   /// No description provided for @profileOfflineAtStart.
     292             :   ///
     293             :   /// In en, this message translates to:
     294             :   /// **'Appear Offline at Startup'**
     295             :   String get profileOfflineAtStart;
     296             : 
     297             :   /// No description provided for @now.
     298             :   ///
     299             :   /// In en, this message translates to:
     300             :   /// **'Now'**
     301             :   String get now;
     302             : 
     303             :   /// No description provided for @xSecondsAgo.
     304             :   ///
     305             :   /// In en, this message translates to:
     306             :   /// **'\$seconds seconds ago'**
     307             :   String get xSecondsAgo;
     308             : 
     309             :   /// No description provided for @xMinutesAgo.
     310             :   ///
     311             :   /// In en, this message translates to:
     312             :   /// **'\$minutes minutes ago'**
     313             :   String get xMinutesAgo;
     314             : 
     315             :   /// No description provided for @xHoursAgo.
     316             :   ///
     317             :   /// In en, this message translates to:
     318             :   /// **'\$hours hours ago'**
     319             :   String get xHoursAgo;
     320             : 
     321             :   /// No description provided for @xDaysAgo.
     322             :   ///
     323             :   /// In en, this message translates to:
     324             :   /// **'\$days days ago'**
     325             :   String get xDaysAgo;
     326             : 
     327             :   /// No description provided for @profileAllowUnknownContacts.
     328             :   ///
     329             :   /// In en, this message translates to:
     330             :   /// **'Allow Unknown Contacts'**
     331             :   String get profileAllowUnknownContacts;
     332             : 
     333             :   /// No description provided for @profileBlockUnknownContacts.
     334             :   ///
     335             :   /// In en, this message translates to:
     336             :   /// **'Block Unknown Contacts'**
     337             :   String get profileBlockUnknownContacts;
     338             : 
     339             :   /// No description provided for @profileDisableProfile.
     340             :   ///
     341             :   /// In en, this message translates to:
     342             :   /// **'Disable Profile'**
     343             :   String get profileDisableProfile;
     344             : 
     345             :   /// No description provided for @profileEnableProfile.
     346             :   ///
     347             :   /// In en, this message translates to:
     348             :   /// **'Enable Profile'**
     349             :   String get profileEnableProfile;
     350             : 
     351             :   /// No description provided for @profileAppearOnline.
     352             :   ///
     353             :   /// In en, this message translates to:
     354             :   /// **'Appear Online'**
     355             :   String get profileAppearOnline;
     356             : 
     357             :   /// No description provided for @contactDisconnect.
     358             :   ///
     359             :   /// In en, this message translates to:
     360             :   /// **'Disconnect  from Contact (if you do not have Appear Offline set this contact may still be able to reestablish a connection to you)'**
     361             :   String get contactDisconnect;
     362             : 
     363             :   /// No description provided for @profileAppearOfflineDescription.
     364             :   ///
     365             :   /// In en, this message translates to:
     366             :   /// **'By default, when  Cwtch profile is enabled it automatically attempts to connect to know contacts, and allows inbound connections. This settings disables those actions and allows you to choose, manually, which contacts to connect to.'**
     367             :   String get profileAppearOfflineDescription;
     368             : 
     369             :   /// No description provided for @profileAppearOffline.
     370             :   ///
     371             :   /// In en, this message translates to:
     372             :   /// **'Appear Offline'**
     373             :   String get profileAppearOffline;
     374             : 
     375             :   /// No description provided for @deleteServerConfirmBtn.
     376             :   ///
     377             :   /// In en, this message translates to:
     378             :   /// **'Really Delete Server?'**
     379             :   String get deleteServerConfirmBtn;
     380             : 
     381             :   /// No description provided for @cannotDeleteServerIfActiveGroups.
     382             :   ///
     383             :   /// In en, this message translates to:
     384             :   /// **'There are active groups associated with this Cwtch Server. Please delete them prior to deleting this Cwtch Server entry.'**
     385             :   String get cannotDeleteServerIfActiveGroups;
     386             : 
     387             :   /// No description provided for @groupsOnThisServerLabel.
     388             :   ///
     389             :   /// In en, this message translates to:
     390             :   /// **'Known Groups on this Cwtch Server'**
     391             :   String get groupsOnThisServerLabel;
     392             : 
     393             :   /// No description provided for @serverinfoNoGroupInfo.
     394             :   ///
     395             :   /// In en, this message translates to:
     396             :   /// **'There are no groups associated with this Cwtch Server.'**
     397             :   String get serverinfoNoGroupInfo;
     398             : 
     399             :   /// No description provided for @preserveHistorySettingDescription.
     400             :   ///
     401             :   /// In en, this message translates to:
     402             :   /// **'By default, Cwtch will purge conversation history when Cwtch is shutdown. If this setting is enabled, Cwtch will preserve the conversation history of peer conversations.'**
     403             :   String get preserveHistorySettingDescription;
     404             : 
     405             :   /// No description provided for @defaultPreserveHistorySetting.
     406             :   ///
     407             :   /// In en, this message translates to:
     408             :   /// **'Preserve Conversation History'**
     409             :   String get defaultPreserveHistorySetting;
     410             : 
     411             :   /// No description provided for @localeUk.
     412             :   ///
     413             :   /// In en, this message translates to:
     414             :   /// **'Ukrainian / українською'**
     415             :   String get localeUk;
     416             : 
     417             :   /// No description provided for @profileEnabledDescription.
     418             :   ///
     419             :   /// In en, this message translates to:
     420             :   /// **'Activate or Deactivate the profile.'**
     421             :   String get profileEnabledDescription;
     422             : 
     423             :   /// No description provided for @localeSw.
     424             :   ///
     425             :   /// In en, this message translates to:
     426             :   /// **'Swahili / Kiswahili'**
     427             :   String get localeSw;
     428             : 
     429             :   /// No description provided for @localeSv.
     430             :   ///
     431             :   /// In en, this message translates to:
     432             :   /// **'Swedish / Svenska'**
     433             :   String get localeSv;
     434             : 
     435             :   /// No description provided for @fontScalingDescription.
     436             :   ///
     437             :   /// In en, this message translates to:
     438             :   /// **'Adjust the relative font scaling factor applied to text and widgets.'**
     439             :   String get fontScalingDescription;
     440             : 
     441             :   /// No description provided for @defaultScalingText.
     442             :   ///
     443             :   /// In en, this message translates to:
     444             :   /// **'Font Scaling'**
     445             :   String get defaultScalingText;
     446             : 
     447             :   /// No description provided for @localeJa.
     448             :   ///
     449             :   /// In en, this message translates to:
     450             :   /// **'Japanese / 日本語'**
     451             :   String get localeJa;
     452             : 
     453             :   /// No description provided for @retryConnectionTooltip.
     454             :   ///
     455             :   /// In en, this message translates to:
     456             :   /// **'Cwtch retries peers regularly, but you can tell Cwtch to try sooner by pushing this button.'**
     457             :   String get retryConnectionTooltip;
     458             : 
     459             :   /// No description provided for @retryConnection.
     460             :   ///
     461             :   /// In en, this message translates to:
     462             :   /// **'Retry'**
     463             :   String get retryConnection;
     464             : 
     465             :   /// No description provided for @availabilityStatusTooltip.
     466             :   ///
     467             :   /// In en, this message translates to:
     468             :   /// **'Set your availability status'**
     469             :   String get availabilityStatusTooltip;
     470             : 
     471             :   /// No description provided for @profileInfoHint3.
     472             :   ///
     473             :   /// In en, this message translates to:
     474             :   /// **'Contacts will be able to see this information in Conversation Settings '**
     475             :   String get profileInfoHint3;
     476             : 
     477             :   /// No description provided for @profileInfoHint2.
     478             :   ///
     479             :   /// In en, this message translates to:
     480             :   /// **'You can add up to 3 fields.'**
     481             :   String get profileInfoHint2;
     482             : 
     483             :   /// No description provided for @profileInfoHint.
     484             :   ///
     485             :   /// In en, this message translates to:
     486             :   /// **'Add some public information about yourself here e.g. blog, websites, brief bio.'**
     487             :   String get profileInfoHint;
     488             : 
     489             :   /// No description provided for @availabilityStatusAway.
     490             :   ///
     491             :   /// In en, this message translates to:
     492             :   /// **'Away'**
     493             :   String get availabilityStatusAway;
     494             : 
     495             :   /// No description provided for @availabilityStatusBusy.
     496             :   ///
     497             :   /// In en, this message translates to:
     498             :   /// **'Busy'**
     499             :   String get availabilityStatusBusy;
     500             : 
     501             :   /// No description provided for @availabilityStatusAvailable.
     502             :   ///
     503             :   /// In en, this message translates to:
     504             :   /// **'Available'**
     505             :   String get availabilityStatusAvailable;
     506             : 
     507             :   /// No description provided for @blodeuweddWarning.
     508             :   ///
     509             :   /// In en, this message translates to:
     510             :   /// **'Blodeuwedd uses a local language model and a set of small auxiliary models to power its functionality. These techniques are often very effective they are not without error. \n\nWhile we have taken efforts to minimize the risk, there is still the possibility that Blodeuwedd outputs will be incorrect, hallucinated and/or offensive.\n\nBecause of that Blodeuwedd requires downloading two additional components separate from Cwtch, the Blodeuwedd Model (or a compatible model) and the Blodeuwedd Runner. \n\nSee https://docs.cwtch.im/docs/settings/experiments/blodeuwedd for more information on obtaining these components and setting them up.'**
     511             :   String get blodeuweddWarning;
     512             : 
     513             :   /// No description provided for @blodeuweddSummarize.
     514             :   ///
     515             :   /// In en, this message translates to:
     516             :   /// **'Summarize Conversation'**
     517             :   String get blodeuweddSummarize;
     518             : 
     519             :   /// No description provided for @blodeuweddTranslate.
     520             :   ///
     521             :   /// In en, this message translates to:
     522             :   /// **'Translate Message'**
     523             :   String get blodeuweddTranslate;
     524             : 
     525             :   /// No description provided for @blodeuweddProcessing.
     526             :   ///
     527             :   /// In en, this message translates to:
     528             :   /// **'Blodeuwedd is processing...'**
     529             :   String get blodeuweddProcessing;
     530             : 
     531             :   /// No description provided for @blodeuweddPath.
     532             :   ///
     533             :   /// In en, this message translates to:
     534             :   /// **'The directory where the Blodeuwedd is located on your computer.'**
     535             :   String get blodeuweddPath;
     536             : 
     537             :   /// No description provided for @blodeuweddNotSupported.
     538             :   ///
     539             :   /// In en, this message translates to:
     540             :   /// **'This version of Cwtch has been compiled without support for the Blodeuwedd Assistant.'**
     541             :   String get blodeuweddNotSupported;
     542             : 
     543             :   /// No description provided for @blodeuweddDescription.
     544             :   ///
     545             :   /// In en, this message translates to:
     546             :   /// **'The Blodeuwedd assistant adds new features to Cwtch such as chat transcript summarization and message translation via a locally hosted language model.'**
     547             :   String get blodeuweddDescription;
     548             : 
     549             :   /// No description provided for @blodeuweddExperimentEnable.
     550             :   ///
     551             :   /// In en, this message translates to:
     552             :   /// **'Blodeuwedd Assistant'**
     553             :   String get blodeuweddExperimentEnable;
     554             : 
     555             :   /// No description provided for @localeKo.
     556             :   ///
     557             :   /// In en, this message translates to:
     558             :   /// **'Korean / 한국어'**
     559             :   String get localeKo;
     560             : 
     561             :   /// No description provided for @localeSk.
     562             :   ///
     563             :   /// In en, this message translates to:
     564             :   /// **'Slovak / Slovák'**
     565             :   String get localeSk;
     566             : 
     567             :   /// No description provided for @profileAutostartDescription.
     568             :   ///
     569             :   /// In en, this message translates to:
     570             :   /// **'Controls if the profile will be automatically launched on startup'**
     571             :   String get profileAutostartDescription;
     572             : 
     573             :   /// No description provided for @profileEnabled.
     574             :   ///
     575             :   /// In en, this message translates to:
     576             :   /// **'Enable'**
     577             :   String get profileEnabled;
     578             : 
     579             :   /// No description provided for @profileAutostartLabel.
     580             :   ///
     581             :   /// In en, this message translates to:
     582             :   /// **'Autostart'**
     583             :   String get profileAutostartLabel;
     584             : 
     585             :   /// No description provided for @localePtBr.
     586             :   ///
     587             :   /// In en, this message translates to:
     588             :   /// **'Brazilian Portuguese / Português do Brasil'**
     589             :   String get localePtBr;
     590             : 
     591             :   /// No description provided for @localeNl.
     592             :   ///
     593             :   /// In en, this message translates to:
     594             :   /// **'Dutch / Dutch'**
     595             :   String get localeNl;
     596             : 
     597             :   /// No description provided for @experimentQRCodeDescription.
     598             :   ///
     599             :   /// In en, this message translates to:
     600             :   /// **'QR Code support allows sharing data (such as profile identity) by QR Codes'**
     601             :   String get experimentQRCodeDescription;
     602             : 
     603             :   /// No description provided for @enableExperimentQRCode.
     604             :   ///
     605             :   /// In en, this message translates to:
     606             :   /// **'QR Codes'**
     607             :   String get enableExperimentQRCode;
     608             : 
     609             :   /// No description provided for @shareMenuQRCode.
     610             :   ///
     611             :   /// In en, this message translates to:
     612             :   /// **'Show QR Code'**
     613             :   String get shareMenuQRCode;
     614             : 
     615             :   /// No description provided for @shareProfileMenuTooltop.
     616             :   ///
     617             :   /// In en, this message translates to:
     618             :   /// **'Share profile via...'**
     619             :   String get shareProfileMenuTooltop;
     620             : 
     621             :   /// No description provided for @acquiredTicketsFromServer.
     622             :   ///
     623             :   /// In en, this message translates to:
     624             :   /// **'Antispam Challenge Complete'**
     625             :   String get acquiredTicketsFromServer;
     626             : 
     627             :   /// No description provided for @acquiringTicketsFromServer.
     628             :   ///
     629             :   /// In en, this message translates to:
     630             :   /// **'Performing Antispam Challenge'**
     631             :   String get acquiringTicketsFromServer;
     632             : 
     633             :   /// No description provided for @errorDownloadDirectoryDoesNotExist.
     634             :   ///
     635             :   /// In en, this message translates to:
     636             :   /// **'Filesharing cannot be enabled because the Download Folder has not been set, or is set to a folder that does not exist.'**
     637             :   String get errorDownloadDirectoryDoesNotExist;
     638             : 
     639             :   /// No description provided for @localeIt.
     640             :   ///
     641             :   /// In en, this message translates to:
     642             :   /// **'Italian / Italiano'**
     643             :   String get localeIt;
     644             : 
     645             :   /// No description provided for @localeTr.
     646             :   ///
     647             :   /// In en, this message translates to:
     648             :   /// **'Turkish / Türk'**
     649             :   String get localeTr;
     650             : 
     651             :   /// No description provided for @tooltipUnpinConversation.
     652             :   ///
     653             :   /// In en, this message translates to:
     654             :   /// **'Unpin conversation from the top of \"Conversations\"'**
     655             :   String get tooltipUnpinConversation;
     656             : 
     657             :   /// No description provided for @tooltipPinConversation.
     658             :   ///
     659             :   /// In en, this message translates to:
     660             :   /// **'Pin conversation to the top of \"Conversations\"'**
     661             :   String get tooltipPinConversation;
     662             : 
     663             :   /// No description provided for @replyingTo.
     664             :   ///
     665             :   /// In en, this message translates to:
     666             :   /// **'Replying to %1'**
     667             :   String get replyingTo;
     668             : 
     669             :   /// No description provided for @fileDownloadUnavailable.
     670             :   ///
     671             :   /// In en, this message translates to:
     672             :   /// **'This file appears unavailable for download. The sender may have disabled downloads for this file.'**
     673             :   String get fileDownloadUnavailable;
     674             : 
     675             :   /// No description provided for @messageNoReplies.
     676             :   ///
     677             :   /// In en, this message translates to:
     678             :   /// **'There are no replies to this message.'**
     679             :   String get messageNoReplies;
     680             : 
     681             :   /// No description provided for @headingReplies.
     682             :   ///
     683             :   /// In en, this message translates to:
     684             :   /// **'Replies'**
     685             :   String get headingReplies;
     686             : 
     687             :   /// No description provided for @viewReplies.
     688             :   ///
     689             :   /// In en, this message translates to:
     690             :   /// **'View replies to this message'**
     691             :   String get viewReplies;
     692             : 
     693             :   /// No description provided for @restartFileShare.
     694             :   ///
     695             :   /// In en, this message translates to:
     696             :   /// **'Start Sharing File'**
     697             :   String get restartFileShare;
     698             : 
     699             :   /// No description provided for @stopSharingFile.
     700             :   ///
     701             :   /// In en, this message translates to:
     702             :   /// **'Stop Sharing File'**
     703             :   String get stopSharingFile;
     704             : 
     705             :   /// No description provided for @manageSharedFiles.
     706             :   ///
     707             :   /// In en, this message translates to:
     708             :   /// **'Manage Shared Files'**
     709             :   String get manageSharedFiles;
     710             : 
     711             :   /// No description provided for @localeDe.
     712             :   ///
     713             :   /// In en, this message translates to:
     714             :   /// **'German / Deutsch'**
     715             :   String get localeDe;
     716             : 
     717             :   /// No description provided for @localeEn.
     718             :   ///
     719             :   /// In en, this message translates to:
     720             :   /// **'English / English'**
     721             :   String get localeEn;
     722             : 
     723             :   /// No description provided for @localeLb.
     724             :   ///
     725             :   /// In en, this message translates to:
     726             :   /// **'Luxembourgish / Lëtzebuergesch'**
     727             :   String get localeLb;
     728             : 
     729             :   /// No description provided for @localeNo.
     730             :   ///
     731             :   /// In en, this message translates to:
     732             :   /// **'Norwegian / Norsk'**
     733             :   String get localeNo;
     734             : 
     735             :   /// No description provided for @localeEl.
     736             :   ///
     737             :   /// In en, this message translates to:
     738             :   /// **'Greek / Ελληνικά'**
     739             :   String get localeEl;
     740             : 
     741             :   /// No description provided for @localePl.
     742             :   ///
     743             :   /// In en, this message translates to:
     744             :   /// **'Polish / Polski'**
     745             :   String get localePl;
     746             : 
     747             :   /// No description provided for @localeRo.
     748             :   ///
     749             :   /// In en, this message translates to:
     750             :   /// **'Romanian / Română'**
     751             :   String get localeRo;
     752             : 
     753             :   /// No description provided for @localeRU.
     754             :   ///
     755             :   /// In en, this message translates to:
     756             :   /// **'Russian / Русский'**
     757             :   String get localeRU;
     758             : 
     759             :   /// No description provided for @localeEs.
     760             :   ///
     761             :   /// In en, this message translates to:
     762             :   /// **'Spanish / Español'**
     763             :   String get localeEs;
     764             : 
     765             :   /// No description provided for @localeDa.
     766             :   ///
     767             :   /// In en, this message translates to:
     768             :   /// **'Danish / Dansk'**
     769             :   String get localeDa;
     770             : 
     771             :   /// No description provided for @localePt.
     772             :   ///
     773             :   /// In en, this message translates to:
     774             :   /// **'Portuguese / Portuguesa'**
     775             :   String get localePt;
     776             : 
     777             :   /// No description provided for @localeFr.
     778             :   ///
     779             :   /// In en, this message translates to:
     780             :   /// **'French / Français'**
     781             :   String get localeFr;
     782             : 
     783             :   /// No description provided for @localeCy.
     784             :   ///
     785             :   /// In en, this message translates to:
     786             :   /// **'Welsh / Cymraeg'**
     787             :   String get localeCy;
     788             : 
     789             :   /// No description provided for @settingImagePreviewsDescription.
     790             :   ///
     791             :   /// In en, this message translates to:
     792             :   /// **'Images and Profile Pictures will be downloaded and previewed automatically. We recommend that you do not enable this Experiment if you use Cwtch with untrusted contacts.'**
     793             :   String get settingImagePreviewsDescription;
     794             : 
     795             :   /// No description provided for @tooltipPreviewFormatting.
     796             :   ///
     797             :   /// In en, this message translates to:
     798             :   /// **'Preview Message Formatting'**
     799             :   String get tooltipPreviewFormatting;
     800             : 
     801             :   /// No description provided for @tooltipCode.
     802             :   ///
     803             :   /// In en, this message translates to:
     804             :   /// **'Code / Monospace'**
     805             :   String get tooltipCode;
     806             : 
     807             :   /// No description provided for @tooltipStrikethrough.
     808             :   ///
     809             :   /// In en, this message translates to:
     810             :   /// **'Strikethrough'**
     811             :   String get tooltipStrikethrough;
     812             : 
     813             :   /// No description provided for @tooltipSubscript.
     814             :   ///
     815             :   /// In en, this message translates to:
     816             :   /// **'Subscript'**
     817             :   String get tooltipSubscript;
     818             : 
     819             :   /// No description provided for @tooltipSuperscript.
     820             :   ///
     821             :   /// In en, this message translates to:
     822             :   /// **'Superscript'**
     823             :   String get tooltipSuperscript;
     824             : 
     825             :   /// No description provided for @tooltipItalicize.
     826             :   ///
     827             :   /// In en, this message translates to:
     828             :   /// **'Italic'**
     829             :   String get tooltipItalicize;
     830             : 
     831             :   /// No description provided for @tooltipBackToMessageEditing.
     832             :   ///
     833             :   /// In en, this message translates to:
     834             :   /// **'Back to Message Editing'**
     835             :   String get tooltipBackToMessageEditing;
     836             : 
     837             :   /// No description provided for @tooltipBoldText.
     838             :   ///
     839             :   /// In en, this message translates to:
     840             :   /// **'Bold'**
     841             :   String get tooltipBoldText;
     842             : 
     843             :   /// No description provided for @okButton.
     844             :   ///
     845             :   /// In en, this message translates to:
     846             :   /// **'OK'**
     847             :   String get okButton;
     848             : 
     849             :   /// No description provided for @settingsAndroidPowerReenablePopup.
     850             :   ///
     851             :   /// In en, this message translates to:
     852             :   /// **'Cannot re-enable Battery Optimization from within Cwtch. Please go to Android / Settings / Apps / Cwtch / Battery and set Usage to \'Optimized\''**
     853             :   String get settingsAndroidPowerReenablePopup;
     854             : 
     855             :   /// No description provided for @settingAndroidPowerExemptionDescription.
     856             :   ///
     857             :   /// In en, this message translates to:
     858             :   /// **'Optional: Request Android to exempt Cwtch from optimized power management. This will result in better stability at the cost of greater battery use.'**
     859             :   String get settingAndroidPowerExemptionDescription;
     860             : 
     861             :   /// No description provided for @settingAndroidPowerExemption.
     862             :   ///
     863             :   /// In en, this message translates to:
     864             :   /// **'Android Ignore Battery Optimizations'**
     865             :   String get settingAndroidPowerExemption;
     866             : 
     867             :   /// No description provided for @thisFeatureRequiresGroupExpermientsToBeEnabled.
     868             :   ///
     869             :   /// In en, this message translates to:
     870             :   /// **'This feature requires the Groups Experiment to be enabled in Settings'**
     871             :   String get thisFeatureRequiresGroupExpermientsToBeEnabled;
     872             : 
     873             :   /// No description provided for @messageFormattingDescription.
     874             :   ///
     875             :   /// In en, this message translates to:
     876             :   /// **'Enable rich text formatting in displayed messages e.g. **bold** and *italic*'**
     877             :   String get messageFormattingDescription;
     878             : 
     879             :   /// No description provided for @formattingExperiment.
     880             :   ///
     881             :   /// In en, this message translates to:
     882             :   /// **'Message Formatting'**
     883             :   String get formattingExperiment;
     884             : 
     885             :   /// No description provided for @clickableLinkError.
     886             :   ///
     887             :   /// In en, this message translates to:
     888             :   /// **'Error encountered while attempting to open URL'**
     889             :   String get clickableLinkError;
     890             : 
     891             :   /// No description provided for @clickableLinksWarning.
     892             :   ///
     893             :   /// In en, this message translates to:
     894             :   /// **'Opening this URL will launch an application outside of Cwtch and may reveal metadata or otherwise compromise the security of Cwtch. Only open URLs from people you trust. Are you sure you want to continue?'**
     895             :   String get clickableLinksWarning;
     896             : 
     897             :   /// No description provided for @clickableLinksCopy.
     898             :   ///
     899             :   /// In en, this message translates to:
     900             :   /// **'Copy URL'**
     901             :   String get clickableLinksCopy;
     902             : 
     903             :   /// No description provided for @clickableLinkOpen.
     904             :   ///
     905             :   /// In en, this message translates to:
     906             :   /// **'Open URL'**
     907             :   String get clickableLinkOpen;
     908             : 
     909             :   /// No description provided for @shuttingDownApp.
     910             :   ///
     911             :   /// In en, this message translates to:
     912             :   /// **'Shutting down...'**
     913             :   String get shuttingDownApp;
     914             : 
     915             :   /// No description provided for @successfullyImportedProfile.
     916             :   ///
     917             :   /// In en, this message translates to:
     918             :   /// **'Successfully Imported Profile: %profile'**
     919             :   String get successfullyImportedProfile;
     920             : 
     921             :   /// No description provided for @failedToImportProfile.
     922             :   ///
     923             :   /// In en, this message translates to:
     924             :   /// **'Error Importing Profile'**
     925             :   String get failedToImportProfile;
     926             : 
     927             :   /// No description provided for @importProfileTooltip.
     928             :   ///
     929             :   /// In en, this message translates to:
     930             :   /// **'Use an encrypted Cwtch backup to bring in a profile created in another instance of Cwtch.'**
     931             :   String get importProfileTooltip;
     932             : 
     933             :   /// No description provided for @importProfile.
     934             :   ///
     935             :   /// In en, this message translates to:
     936             :   /// **'Import Profile'**
     937             :   String get importProfile;
     938             : 
     939             :   /// No description provided for @exportProfileTooltip.
     940             :   ///
     941             :   /// In en, this message translates to:
     942             :   /// **'Backup this profile to an encrypted file. The encrypted file can be imported into another Cwtch app.'**
     943             :   String get exportProfileTooltip;
     944             : 
     945             :   /// No description provided for @exportProfile.
     946             :   ///
     947             :   /// In en, this message translates to:
     948             :   /// **'Export Profile'**
     949             :   String get exportProfile;
     950             : 
     951             :   /// No description provided for @conversationNotificationPolicySettingDescription.
     952             :   ///
     953             :   /// In en, this message translates to:
     954             :   /// **'Control notification behaviour for this conversation'**
     955             :   String get conversationNotificationPolicySettingDescription;
     956             : 
     957             :   /// No description provided for @newMessageNotificationConversationInfo.
     958             :   ///
     959             :   /// In en, this message translates to:
     960             :   /// **'New Message From %1'**
     961             :   String get newMessageNotificationConversationInfo;
     962             : 
     963             :   /// No description provided for @newMessageNotificationSimple.
     964             :   ///
     965             :   /// In en, this message translates to:
     966             :   /// **'New Message'**
     967             :   String get newMessageNotificationSimple;
     968             : 
     969             :   /// No description provided for @notificationContentContactInfo.
     970             :   ///
     971             :   /// In en, this message translates to:
     972             :   /// **'Conversation Information'**
     973             :   String get notificationContentContactInfo;
     974             : 
     975             :   /// No description provided for @notificationContentSimpleEvent.
     976             :   ///
     977             :   /// In en, this message translates to:
     978             :   /// **'Plain Event'**
     979             :   String get notificationContentSimpleEvent;
     980             : 
     981             :   /// No description provided for @conversationNotificationPolicySettingLabel.
     982             :   ///
     983             :   /// In en, this message translates to:
     984             :   /// **'Conversation Notification Policy'**
     985             :   String get conversationNotificationPolicySettingLabel;
     986             : 
     987             :   /// No description provided for @settingsGroupExperiments.
     988             :   ///
     989             :   /// In en, this message translates to:
     990             :   /// **'Experiments'**
     991             :   String get settingsGroupExperiments;
     992             : 
     993             :   /// No description provided for @settingsGroupAppearance.
     994             :   ///
     995             :   /// In en, this message translates to:
     996             :   /// **'Appearance'**
     997             :   String get settingsGroupAppearance;
     998             : 
     999             :   /// No description provided for @settingGroupBehaviour.
    1000             :   ///
    1001             :   /// In en, this message translates to:
    1002             :   /// **'Behaviour'**
    1003             :   String get settingGroupBehaviour;
    1004             : 
    1005             :   /// No description provided for @notificationContentSettingDescription.
    1006             :   ///
    1007             :   /// In en, this message translates to:
    1008             :   /// **'Controls the contents of conversation notifications'**
    1009             :   String get notificationContentSettingDescription;
    1010             : 
    1011             :   /// No description provided for @notificationPolicySettingDescription.
    1012             :   ///
    1013             :   /// In en, this message translates to:
    1014             :   /// **'Controls the default application notification behaviour'**
    1015             :   String get notificationPolicySettingDescription;
    1016             : 
    1017             :   /// No description provided for @notificationContentSettingLabel.
    1018             :   ///
    1019             :   /// In en, this message translates to:
    1020             :   /// **'Notification Content'**
    1021             :   String get notificationContentSettingLabel;
    1022             : 
    1023             :   /// No description provided for @notificationPolicySettingLabel.
    1024             :   ///
    1025             :   /// In en, this message translates to:
    1026             :   /// **'Notification Policy'**
    1027             :   String get notificationPolicySettingLabel;
    1028             : 
    1029             :   /// No description provided for @conversationNotificationPolicyNever.
    1030             :   ///
    1031             :   /// In en, this message translates to:
    1032             :   /// **'Never'**
    1033             :   String get conversationNotificationPolicyNever;
    1034             : 
    1035             :   /// No description provided for @conversationNotificationPolicyOptIn.
    1036             :   ///
    1037             :   /// In en, this message translates to:
    1038             :   /// **'Opt In'**
    1039             :   String get conversationNotificationPolicyOptIn;
    1040             : 
    1041             :   /// No description provided for @conversationNotificationPolicyDefault.
    1042             :   ///
    1043             :   /// In en, this message translates to:
    1044             :   /// **'Default'**
    1045             :   String get conversationNotificationPolicyDefault;
    1046             : 
    1047             :   /// No description provided for @notificationPolicyDefaultAll.
    1048             :   ///
    1049             :   /// In en, this message translates to:
    1050             :   /// **'Default All'**
    1051             :   String get notificationPolicyDefaultAll;
    1052             : 
    1053             :   /// No description provided for @notificationPolicyOptIn.
    1054             :   ///
    1055             :   /// In en, this message translates to:
    1056             :   /// **'Opt In'**
    1057             :   String get notificationPolicyOptIn;
    1058             : 
    1059             :   /// No description provided for @notificationPolicyMute.
    1060             :   ///
    1061             :   /// In en, this message translates to:
    1062             :   /// **'Mute'**
    1063             :   String get notificationPolicyMute;
    1064             : 
    1065             :   /// No description provided for @tooltipSelectACustomProfileImage.
    1066             :   ///
    1067             :   /// In en, this message translates to:
    1068             :   /// **'Select a Custom Profile Image'**
    1069             :   String get tooltipSelectACustomProfileImage;
    1070             : 
    1071             :   /// No description provided for @editProfile.
    1072             :   ///
    1073             :   /// In en, this message translates to:
    1074             :   /// **'Edit Profile'**
    1075             :   String get editProfile;
    1076             : 
    1077             :   /// No description provided for @torSettingsEnabledCacheDescription.
    1078             :   ///
    1079             :   /// In en, this message translates to:
    1080             :   /// **'Cache the current downloaded Tor consensus to reuse next time Cwtch is opened. This will allow Tor to start faster. When disabled, Cwtch will purge cached data on start up.'**
    1081             :   String get torSettingsEnabledCacheDescription;
    1082             : 
    1083             :   /// No description provided for @torSettingsEnableCache.
    1084             :   ///
    1085             :   /// In en, this message translates to:
    1086             :   /// **'Cache Tor Consensus'**
    1087             :   String get torSettingsEnableCache;
    1088             : 
    1089             :   /// No description provided for @labelTorNetwork.
    1090             :   ///
    1091             :   /// In en, this message translates to:
    1092             :   /// **'Tor Network'**
    1093             :   String get labelTorNetwork;
    1094             : 
    1095             :   /// No description provided for @descriptionACNCircuitInfo.
    1096             :   ///
    1097             :   /// In en, this message translates to:
    1098             :   /// **'In depth information about the path that the anonymous communication network is using to connect to this conversation.'**
    1099             :   String get descriptionACNCircuitInfo;
    1100             : 
    1101             :   /// No description provided for @labelACNCircuitInfo.
    1102             :   ///
    1103             :   /// In en, this message translates to:
    1104             :   /// **'ACN Circuit Info'**
    1105             :   String get labelACNCircuitInfo;
    1106             : 
    1107             :   /// No description provided for @fileSharingSettingsDownloadFolderTooltip.
    1108             :   ///
    1109             :   /// In en, this message translates to:
    1110             :   /// **'Browse to select a different default folder for downloaded files.'**
    1111             :   String get fileSharingSettingsDownloadFolderTooltip;
    1112             : 
    1113             :   /// No description provided for @fileSharingSettingsDownloadFolderDescription.
    1114             :   ///
    1115             :   /// In en, this message translates to:
    1116             :   /// **'When files are downloaded automatically (e.g. image files, when image previews are enabled) a default location to download the files to is needed.'**
    1117             :   String get fileSharingSettingsDownloadFolderDescription;
    1118             : 
    1119             :   /// No description provided for @torSettingsErrorSettingPort.
    1120             :   ///
    1121             :   /// In en, this message translates to:
    1122             :   /// **'Port Number must be between 1 and 65535'**
    1123             :   String get torSettingsErrorSettingPort;
    1124             : 
    1125             :   /// No description provided for @settingTheme.
    1126             :   ///
    1127             :   /// In en, this message translates to:
    1128             :   /// **'Use Light Themes'**
    1129             :   String get settingTheme;
    1130             : 
    1131             :   /// No description provided for @torSettingsUseCustomTorServiceConfiguration.
    1132             :   ///
    1133             :   /// In en, this message translates to:
    1134             :   /// **'Use a Custom Tor Service Configuration (torrc)'**
    1135             :   String get torSettingsUseCustomTorServiceConfiguration;
    1136             : 
    1137             :   /// No description provided for @torSettingsUseCustomTorServiceConfigurastionDescription.
    1138             :   ///
    1139             :   /// In en, this message translates to:
    1140             :   /// **'Override the default tor configuration. Warning: This could be dangerous. Only turn this on if you know what you are doing.'**
    1141             :   String get torSettingsUseCustomTorServiceConfigurastionDescription;
    1142             : 
    1143             :   /// No description provided for @torSettingsCustomControlPortDescription.
    1144             :   ///
    1145             :   /// In en, this message translates to:
    1146             :   /// **'Use a custom port for control connections to the Tor proxy'**
    1147             :   String get torSettingsCustomControlPortDescription;
    1148             : 
    1149             :   /// No description provided for @torSettingsCustomControlPort.
    1150             :   ///
    1151             :   /// In en, this message translates to:
    1152             :   /// **'Custom Control Port'**
    1153             :   String get torSettingsCustomControlPort;
    1154             : 
    1155             :   /// No description provided for @torSettingsCustomSocksPortDescription.
    1156             :   ///
    1157             :   /// In en, this message translates to:
    1158             :   /// **'Use a custom port for data connections to the Tor proxy'**
    1159             :   String get torSettingsCustomSocksPortDescription;
    1160             : 
    1161             :   /// No description provided for @torSettingsCustomSocksPort.
    1162             :   ///
    1163             :   /// In en, this message translates to:
    1164             :   /// **'Custom SOCKS Port'**
    1165             :   String get torSettingsCustomSocksPort;
    1166             : 
    1167             :   /// No description provided for @torSettingsEnabledAdvancedDescription.
    1168             :   ///
    1169             :   /// In en, this message translates to:
    1170             :   /// **'Use an existing Tor service on your system, or change the parameters of the Cwtch Tor Service'**
    1171             :   String get torSettingsEnabledAdvancedDescription;
    1172             : 
    1173             :   /// No description provided for @torSettingsEnabledAdvanced.
    1174             :   ///
    1175             :   /// In en, this message translates to:
    1176             :   /// **'Enable Advanced Tor Configuration'**
    1177             :   String get torSettingsEnabledAdvanced;
    1178             : 
    1179             :   /// No description provided for @msgAddToAccept.
    1180             :   ///
    1181             :   /// In en, this message translates to:
    1182             :   /// **'Add this account to your contacts in order to accept this file.'**
    1183             :   String get msgAddToAccept;
    1184             : 
    1185             :   /// No description provided for @btnSendFile.
    1186             :   ///
    1187             :   /// In en, this message translates to:
    1188             :   /// **'Send File'**
    1189             :   String get btnSendFile;
    1190             : 
    1191             :   /// No description provided for @msgConfirmSend.
    1192             :   ///
    1193             :   /// In en, this message translates to:
    1194             :   /// **'Are you sure you want to send'**
    1195             :   String get msgConfirmSend;
    1196             : 
    1197             :   /// No description provided for @msgFileTooBig.
    1198             :   ///
    1199             :   /// In en, this message translates to:
    1200             :   /// **'File size cannot exceed 10 GB'**
    1201             :   String get msgFileTooBig;
    1202             : 
    1203             :   /// No description provided for @storageMigrationModalMessage.
    1204             :   ///
    1205             :   /// In en, this message translates to:
    1206             :   /// **'Migrating profiles to new storage format. This could take a few minutes...'**
    1207             :   String get storageMigrationModalMessage;
    1208             : 
    1209             :   /// No description provided for @loadingCwtch.
    1210             :   ///
    1211             :   /// In en, this message translates to:
    1212             :   /// **'Loading Cwtch...'**
    1213             :   String get loadingCwtch;
    1214             : 
    1215             :   /// No description provided for @themeColorLabel.
    1216             :   ///
    1217             :   /// In en, this message translates to:
    1218             :   /// **'Color Theme'**
    1219             :   String get themeColorLabel;
    1220             : 
    1221             :   /// No description provided for @themeNameNeon2.
    1222             :   ///
    1223             :   /// In en, this message translates to:
    1224             :   /// **'Neon2'**
    1225             :   String get themeNameNeon2;
    1226             : 
    1227             :   /// No description provided for @themeNameNeon1.
    1228             :   ///
    1229             :   /// In en, this message translates to:
    1230             :   /// **'Neon1'**
    1231             :   String get themeNameNeon1;
    1232             : 
    1233             :   /// No description provided for @themeNameMidnight.
    1234             :   ///
    1235             :   /// In en, this message translates to:
    1236             :   /// **'Midnight'**
    1237             :   String get themeNameMidnight;
    1238             : 
    1239             :   /// No description provided for @themeNameMermaid.
    1240             :   ///
    1241             :   /// In en, this message translates to:
    1242             :   /// **'Mermaid'**
    1243             :   String get themeNameMermaid;
    1244             : 
    1245             :   /// No description provided for @themeNamePumpkin.
    1246             :   ///
    1247             :   /// In en, this message translates to:
    1248             :   /// **'Pumpkin'**
    1249             :   String get themeNamePumpkin;
    1250             : 
    1251             :   /// No description provided for @themeNameGhost.
    1252             :   ///
    1253             :   /// In en, this message translates to:
    1254             :   /// **'Ghost'**
    1255             :   String get themeNameGhost;
    1256             : 
    1257             :   /// No description provided for @themeNameVampire.
    1258             :   ///
    1259             :   /// In en, this message translates to:
    1260             :   /// **'Vampire'**
    1261             :   String get themeNameVampire;
    1262             : 
    1263             :   /// No description provided for @themeNameWitch.
    1264             :   ///
    1265             :   /// In en, this message translates to:
    1266             :   /// **'Witch'**
    1267             :   String get themeNameWitch;
    1268             : 
    1269             :   /// No description provided for @themeNameCwtch.
    1270             :   ///
    1271             :   /// In en, this message translates to:
    1272             :   /// **'Cwtch'**
    1273             :   String get themeNameCwtch;
    1274             : 
    1275             :   /// No description provided for @settingDownloadFolder.
    1276             :   ///
    1277             :   /// In en, this message translates to:
    1278             :   /// **'Download Folder'**
    1279             :   String get settingDownloadFolder;
    1280             : 
    1281             :   /// No description provided for @settingImagePreviews.
    1282             :   ///
    1283             :   /// In en, this message translates to:
    1284             :   /// **'Image Previews and Profile Pictures'**
    1285             :   String get settingImagePreviews;
    1286             : 
    1287             :   /// No description provided for @experimentClickableLinksDescription.
    1288             :   ///
    1289             :   /// In en, this message translates to:
    1290             :   /// **'The clickable links experiment allows you to click on URLs shared in messages'**
    1291             :   String get experimentClickableLinksDescription;
    1292             : 
    1293             :   /// No description provided for @enableExperimentClickableLinks.
    1294             :   ///
    1295             :   /// In en, this message translates to:
    1296             :   /// **'Enable Clickable Links'**
    1297             :   String get enableExperimentClickableLinks;
    1298             : 
    1299             :   /// No description provided for @serverConnectionsLabel.
    1300             :   ///
    1301             :   /// In en, this message translates to:
    1302             :   /// **'Connection'**
    1303             :   String get serverConnectionsLabel;
    1304             : 
    1305             :   /// No description provided for @serverTotalMessagesLabel.
    1306             :   ///
    1307             :   /// In en, this message translates to:
    1308             :   /// **'Total Messages'**
    1309             :   String get serverTotalMessagesLabel;
    1310             : 
    1311             :   /// No description provided for @serverMetricsLabel.
    1312             :   ///
    1313             :   /// In en, this message translates to:
    1314             :   /// **'Server Metrics'**
    1315             :   String get serverMetricsLabel;
    1316             : 
    1317             :   /// No description provided for @manageKnownServersShort.
    1318             :   ///
    1319             :   /// In en, this message translates to:
    1320             :   /// **'Servers'**
    1321             :   String get manageKnownServersShort;
    1322             : 
    1323             :   /// No description provided for @manageKnownServersLong.
    1324             :   ///
    1325             :   /// In en, this message translates to:
    1326             :   /// **'Manage Known Servers'**
    1327             :   String get manageKnownServersLong;
    1328             : 
    1329             :   /// No description provided for @displayNameTooltip.
    1330             :   ///
    1331             :   /// In en, this message translates to:
    1332             :   /// **'Please enter a display name'**
    1333             :   String get displayNameTooltip;
    1334             : 
    1335             :   /// No description provided for @manageKnownServersButton.
    1336             :   ///
    1337             :   /// In en, this message translates to:
    1338             :   /// **'Manage Known Servers'**
    1339             :   String get manageKnownServersButton;
    1340             : 
    1341             :   /// No description provided for @fieldDescriptionLabel.
    1342             :   ///
    1343             :   /// In en, this message translates to:
    1344             :   /// **'Description'**
    1345             :   String get fieldDescriptionLabel;
    1346             : 
    1347             :   /// No description provided for @importLocalServerButton.
    1348             :   ///
    1349             :   /// In en, this message translates to:
    1350             :   /// **'Import %1'**
    1351             :   String get importLocalServerButton;
    1352             : 
    1353             :   /// No description provided for @importLocalServerSelectText.
    1354             :   ///
    1355             :   /// In en, this message translates to:
    1356             :   /// **'Select Local Server'**
    1357             :   String get importLocalServerSelectText;
    1358             : 
    1359             :   /// No description provided for @importLocalServerLabel.
    1360             :   ///
    1361             :   /// In en, this message translates to:
    1362             :   /// **'Import a locally hosted server'**
    1363             :   String get importLocalServerLabel;
    1364             : 
    1365             :   /// No description provided for @savePeerHistoryDescription.
    1366             :   ///
    1367             :   /// In en, this message translates to:
    1368             :   /// **'Determines whether to delete any history associated with the contact.'**
    1369             :   String get savePeerHistoryDescription;
    1370             : 
    1371             :   /// No description provided for @newMessagesLabel.
    1372             :   ///
    1373             :   /// In en, this message translates to:
    1374             :   /// **'New Messages'**
    1375             :   String get newMessagesLabel;
    1376             : 
    1377             :   /// No description provided for @copyServerKeys.
    1378             :   ///
    1379             :   /// In en, this message translates to:
    1380             :   /// **'Copy keys'**
    1381             :   String get copyServerKeys;
    1382             : 
    1383             :   /// No description provided for @verfiyResumeButton.
    1384             :   ///
    1385             :   /// In en, this message translates to:
    1386             :   /// **'Verify/resume'**
    1387             :   String get verfiyResumeButton;
    1388             : 
    1389             :   /// No description provided for @fileCheckingStatus.
    1390             :   ///
    1391             :   /// In en, this message translates to:
    1392             :   /// **'Checking download status'**
    1393             :   String get fileCheckingStatus;
    1394             : 
    1395             :   /// No description provided for @fileInterrupted.
    1396             :   ///
    1397             :   /// In en, this message translates to:
    1398             :   /// **'Interrupted'**
    1399             :   String get fileInterrupted;
    1400             : 
    1401             :   /// No description provided for @fileSavedTo.
    1402             :   ///
    1403             :   /// In en, this message translates to:
    1404             :   /// **'Saved to'**
    1405             :   String get fileSavedTo;
    1406             : 
    1407             :   /// No description provided for @plainServerDescription.
    1408             :   ///
    1409             :   /// In en, this message translates to:
    1410             :   /// **'We recommend that you protect your Cwtch servers with a password. If you do not set a password on this server then anyone who has access to this device may be able to access information about this server, including sensitive cryptographic keys.'**
    1411             :   String get plainServerDescription;
    1412             : 
    1413             :   /// No description provided for @encryptedServerDescription.
    1414             :   ///
    1415             :   /// In en, this message translates to:
    1416             :   /// **'Encrypting a server with a password protects it from other people who may also use this device. Encrypted servers cannot be decrypted, displayed or accessed until the correct password is entered to unlock them.'**
    1417             :   String get encryptedServerDescription;
    1418             : 
    1419             :   /// No description provided for @deleteServerSuccess.
    1420             :   ///
    1421             :   /// In en, this message translates to:
    1422             :   /// **'Successfully deleted server'**
    1423             :   String get deleteServerSuccess;
    1424             : 
    1425             :   /// No description provided for @enterCurrentPasswordForDeleteServer.
    1426             :   ///
    1427             :   /// In en, this message translates to:
    1428             :   /// **'Please enter current password to delete this server'**
    1429             :   String get enterCurrentPasswordForDeleteServer;
    1430             : 
    1431             :   /// No description provided for @copyAddress.
    1432             :   ///
    1433             :   /// In en, this message translates to:
    1434             :   /// **'Copy Address'**
    1435             :   String get copyAddress;
    1436             : 
    1437             :   /// No description provided for @settingServersDescription.
    1438             :   ///
    1439             :   /// In en, this message translates to:
    1440             :   /// **'The hosting servers experiment enables hosting and managing Cwtch servers'**
    1441             :   String get settingServersDescription;
    1442             : 
    1443             :   /// No description provided for @settingServers.
    1444             :   ///
    1445             :   /// In en, this message translates to:
    1446             :   /// **'Hosting Servers'**
    1447             :   String get settingServers;
    1448             : 
    1449             :   /// No description provided for @enterServerPassword.
    1450             :   ///
    1451             :   /// In en, this message translates to:
    1452             :   /// **'Enter password to unlock server'**
    1453             :   String get enterServerPassword;
    1454             : 
    1455             :   /// No description provided for @unlockProfileTip.
    1456             :   ///
    1457             :   /// In en, this message translates to:
    1458             :   /// **'Please create or unlock a profile to begin!'**
    1459             :   String get unlockProfileTip;
    1460             : 
    1461             :   /// No description provided for @unlockServerTip.
    1462             :   ///
    1463             :   /// In en, this message translates to:
    1464             :   /// **'Please create or unlock a server to begin!'**
    1465             :   String get unlockServerTip;
    1466             : 
    1467             :   /// No description provided for @addServerTooltip.
    1468             :   ///
    1469             :   /// In en, this message translates to:
    1470             :   /// **'Add new server'**
    1471             :   String get addServerTooltip;
    1472             : 
    1473             :   /// No description provided for @serversManagerTitleShort.
    1474             :   ///
    1475             :   /// In en, this message translates to:
    1476             :   /// **'Servers'**
    1477             :   String get serversManagerTitleShort;
    1478             : 
    1479             :   /// No description provided for @serversManagerTitleLong.
    1480             :   ///
    1481             :   /// In en, this message translates to:
    1482             :   /// **'Servers You Host'**
    1483             :   String get serversManagerTitleLong;
    1484             : 
    1485             :   /// No description provided for @saveServerButton.
    1486             :   ///
    1487             :   /// In en, this message translates to:
    1488             :   /// **'Save Server'**
    1489             :   String get saveServerButton;
    1490             : 
    1491             :   /// No description provided for @serverAutostartDescription.
    1492             :   ///
    1493             :   /// In en, this message translates to:
    1494             :   /// **'Controls if the application will automatically launch the server on start'**
    1495             :   String get serverAutostartDescription;
    1496             : 
    1497             :   /// No description provided for @serverAutostartLabel.
    1498             :   ///
    1499             :   /// In en, this message translates to:
    1500             :   /// **'Autostart'**
    1501             :   String get serverAutostartLabel;
    1502             : 
    1503             :   /// No description provided for @serverEnabledDescription.
    1504             :   ///
    1505             :   /// In en, this message translates to:
    1506             :   /// **'Start or stop the server'**
    1507             :   String get serverEnabledDescription;
    1508             : 
    1509             :   /// No description provided for @serverEnabled.
    1510             :   ///
    1511             :   /// In en, this message translates to:
    1512             :   /// **'Server Enabled'**
    1513             :   String get serverEnabled;
    1514             : 
    1515             :   /// No description provided for @serverDescriptionDescription.
    1516             :   ///
    1517             :   /// In en, this message translates to:
    1518             :   /// **'Your description of the server for personal management use only, will never be shared'**
    1519             :   String get serverDescriptionDescription;
    1520             : 
    1521             :   /// No description provided for @serverDescriptionLabel.
    1522             :   ///
    1523             :   /// In en, this message translates to:
    1524             :   /// **'Server Description'**
    1525             :   String get serverDescriptionLabel;
    1526             : 
    1527             :   /// No description provided for @serverAddress.
    1528             :   ///
    1529             :   /// In en, this message translates to:
    1530             :   /// **'Server Address'**
    1531             :   String get serverAddress;
    1532             : 
    1533             :   /// No description provided for @editServerTitle.
    1534             :   ///
    1535             :   /// In en, this message translates to:
    1536             :   /// **'Edit Server'**
    1537             :   String get editServerTitle;
    1538             : 
    1539             :   /// No description provided for @addServerTitle.
    1540             :   ///
    1541             :   /// In en, this message translates to:
    1542             :   /// **'Add Server'**
    1543             :   String get addServerTitle;
    1544             : 
    1545             :   /// No description provided for @titleManageProfilesShort.
    1546             :   ///
    1547             :   /// In en, this message translates to:
    1548             :   /// **'Profiles'**
    1549             :   String get titleManageProfilesShort;
    1550             : 
    1551             :   /// No description provided for @descriptionStreamerMode.
    1552             :   ///
    1553             :   /// In en, this message translates to:
    1554             :   /// **'If turned on, this option makes the app more visually private for streaming or presenting with, for example, hiding profile and contact addresses'**
    1555             :   String get descriptionStreamerMode;
    1556             : 
    1557             :   /// No description provided for @descriptionFileSharing.
    1558             :   ///
    1559             :   /// In en, this message translates to:
    1560             :   /// **'The file sharing experiment allows you to send and receive files from Cwtch contacts and groups. Note that sharing a file with a group will result in members of that group connecting with you directly over Cwtch to download it.'**
    1561             :   String get descriptionFileSharing;
    1562             : 
    1563             :   /// No description provided for @settingFileSharing.
    1564             :   ///
    1565             :   /// In en, this message translates to:
    1566             :   /// **'File Sharing'**
    1567             :   String get settingFileSharing;
    1568             : 
    1569             :   /// No description provided for @tooltipSendFile.
    1570             :   ///
    1571             :   /// In en, this message translates to:
    1572             :   /// **'Send File'**
    1573             :   String get tooltipSendFile;
    1574             : 
    1575             :   /// No description provided for @messageFileOffered.
    1576             :   ///
    1577             :   /// In en, this message translates to:
    1578             :   /// **'Contact is offering to send you a file'**
    1579             :   String get messageFileOffered;
    1580             : 
    1581             :   /// No description provided for @messageFileSent.
    1582             :   ///
    1583             :   /// In en, this message translates to:
    1584             :   /// **'You sent a file'**
    1585             :   String get messageFileSent;
    1586             : 
    1587             :   /// No description provided for @messageEnableFileSharing.
    1588             :   ///
    1589             :   /// In en, this message translates to:
    1590             :   /// **'Enable the file sharing experiment to view this message.'**
    1591             :   String get messageEnableFileSharing;
    1592             : 
    1593             :   /// No description provided for @labelFilesize.
    1594             :   ///
    1595             :   /// In en, this message translates to:
    1596             :   /// **'Size'**
    1597             :   String get labelFilesize;
    1598             : 
    1599             :   /// No description provided for @labelFilename.
    1600             :   ///
    1601             :   /// In en, this message translates to:
    1602             :   /// **'Filename'**
    1603             :   String get labelFilename;
    1604             : 
    1605             :   /// No description provided for @downloadFileButton.
    1606             :   ///
    1607             :   /// In en, this message translates to:
    1608             :   /// **'Download'**
    1609             :   String get downloadFileButton;
    1610             : 
    1611             :   /// No description provided for @openFolderButton.
    1612             :   ///
    1613             :   /// In en, this message translates to:
    1614             :   /// **'Open Folder'**
    1615             :   String get openFolderButton;
    1616             : 
    1617             :   /// No description provided for @retrievingManifestMessage.
    1618             :   ///
    1619             :   /// In en, this message translates to:
    1620             :   /// **'Retrieving file information...'**
    1621             :   String get retrievingManifestMessage;
    1622             : 
    1623             :   /// No description provided for @streamerModeLabel.
    1624             :   ///
    1625             :   /// In en, this message translates to:
    1626             :   /// **'Streamer/Presentation Mode'**
    1627             :   String get streamerModeLabel;
    1628             : 
    1629             :   /// No description provided for @archiveConversation.
    1630             :   ///
    1631             :   /// In en, this message translates to:
    1632             :   /// **'Archive this Conversation'**
    1633             :   String get archiveConversation;
    1634             : 
    1635             :   /// No description provided for @profileOnionLabel.
    1636             :   ///
    1637             :   /// In en, this message translates to:
    1638             :   /// **'Send this address to people you want to connect with'**
    1639             :   String get profileOnionLabel;
    1640             : 
    1641             :   /// No description provided for @addPeerTab.
    1642             :   ///
    1643             :   /// In en, this message translates to:
    1644             :   /// **'Add a contact'**
    1645             :   String get addPeerTab;
    1646             : 
    1647             :   /// No description provided for @addPeer.
    1648             :   ///
    1649             :   /// In en, this message translates to:
    1650             :   /// **'Add Contact'**
    1651             :   String get addPeer;
    1652             : 
    1653             :   /// No description provided for @peerNotOnline.
    1654             :   ///
    1655             :   /// In en, this message translates to:
    1656             :   /// **'Contact is offline. Applications cannot be used right now.'**
    1657             :   String get peerNotOnline;
    1658             : 
    1659             :   /// No description provided for @peerBlockedMessage.
    1660             :   ///
    1661             :   /// In en, this message translates to:
    1662             :   /// **'Contact is blocked'**
    1663             :   String get peerBlockedMessage;
    1664             : 
    1665             :   /// No description provided for @peerOfflineMessage.
    1666             :   ///
    1667             :   /// In en, this message translates to:
    1668             :   /// **'Contact is offline, messages can\'t be delivered right now'**
    1669             :   String get peerOfflineMessage;
    1670             : 
    1671             :   /// No description provided for @blockBtn.
    1672             :   ///
    1673             :   /// In en, this message translates to:
    1674             :   /// **'Block Contact'**
    1675             :   String get blockBtn;
    1676             : 
    1677             :   /// No description provided for @savePeerHistory.
    1678             :   ///
    1679             :   /// In en, this message translates to:
    1680             :   /// **'Save History'**
    1681             :   String get savePeerHistory;
    1682             : 
    1683             :   /// No description provided for @dontSavePeerHistory.
    1684             :   ///
    1685             :   /// In en, this message translates to:
    1686             :   /// **'Delete History'**
    1687             :   String get dontSavePeerHistory;
    1688             : 
    1689             :   /// No description provided for @unblockBtn.
    1690             :   ///
    1691             :   /// In en, this message translates to:
    1692             :   /// **'Unblock Contact'**
    1693             :   String get unblockBtn;
    1694             : 
    1695             :   /// No description provided for @blockUnknownLabel.
    1696             :   ///
    1697             :   /// In en, this message translates to:
    1698             :   /// **'Block Unknown Contacts'**
    1699             :   String get blockUnknownLabel;
    1700             : 
    1701             :   /// No description provided for @blockUnknownConnectionsEnabledDescription.
    1702             :   ///
    1703             :   /// In en, this message translates to:
    1704             :   /// **'Connections from unknown contacts are blocked. You can change this in Settings'**
    1705             :   String get blockUnknownConnectionsEnabledDescription;
    1706             : 
    1707             :   /// No description provided for @networkStatusConnecting.
    1708             :   ///
    1709             :   /// In en, this message translates to:
    1710             :   /// **'Connecting to network and contacts...'**
    1711             :   String get networkStatusConnecting;
    1712             : 
    1713             :   /// No description provided for @showMessageButton.
    1714             :   ///
    1715             :   /// In en, this message translates to:
    1716             :   /// **'Show Message'**
    1717             :   String get showMessageButton;
    1718             : 
    1719             :   /// No description provided for @blockedMessageMessage.
    1720             :   ///
    1721             :   /// In en, this message translates to:
    1722             :   /// **'This message is from a profile you have blocked.'**
    1723             :   String get blockedMessageMessage;
    1724             : 
    1725             :   /// No description provided for @placeholderEnterMessage.
    1726             :   ///
    1727             :   /// In en, this message translates to:
    1728             :   /// **'Type a message...'**
    1729             :   String get placeholderEnterMessage;
    1730             : 
    1731             :   /// No description provided for @plainProfileDescription.
    1732             :   ///
    1733             :   /// In en, this message translates to:
    1734             :   /// **'We recommend that you protect your Cwtch profiles with a password. If you do not set a password on this profile then anyone who has access to this device may be able to access information about this profile, including contacts, messages and sensitive cryptographic keys.'**
    1735             :   String get plainProfileDescription;
    1736             : 
    1737             :   /// No description provided for @encryptedProfileDescription.
    1738             :   ///
    1739             :   /// In en, this message translates to:
    1740             :   /// **'Encrypting a profile with a password protects it from other people who may also use this device. Encrypted profiles cannot be decrypted, displayed or accessed until the correct password is entered to unlock them.'**
    1741             :   String get encryptedProfileDescription;
    1742             : 
    1743             :   /// No description provided for @addContactConfirm.
    1744             :   ///
    1745             :   /// In en, this message translates to:
    1746             :   /// **'Add contact %1'**
    1747             :   String get addContactConfirm;
    1748             : 
    1749             :   /// No description provided for @addContact.
    1750             :   ///
    1751             :   /// In en, this message translates to:
    1752             :   /// **'Add contact'**
    1753             :   String get addContact;
    1754             : 
    1755             :   /// No description provided for @contactGoto.
    1756             :   ///
    1757             :   /// In en, this message translates to:
    1758             :   /// **'Go to conversation with %1'**
    1759             :   String get contactGoto;
    1760             : 
    1761             :   /// No description provided for @settingUIColumnOptionSame.
    1762             :   ///
    1763             :   /// In en, this message translates to:
    1764             :   /// **'Same as portrait mode setting'**
    1765             :   String get settingUIColumnOptionSame;
    1766             : 
    1767             :   /// No description provided for @settingUIColumnDouble14Ratio.
    1768             :   ///
    1769             :   /// In en, this message translates to:
    1770             :   /// **'Double (1:4)'**
    1771             :   String get settingUIColumnDouble14Ratio;
    1772             : 
    1773             :   /// No description provided for @settingUIColumnDouble12Ratio.
    1774             :   ///
    1775             :   /// In en, this message translates to:
    1776             :   /// **'Double (1:2)'**
    1777             :   String get settingUIColumnDouble12Ratio;
    1778             : 
    1779             :   /// No description provided for @settingUIColumnSingle.
    1780             :   ///
    1781             :   /// In en, this message translates to:
    1782             :   /// **'Single'**
    1783             :   String get settingUIColumnSingle;
    1784             : 
    1785             :   /// No description provided for @settingUIColumnLandscape.
    1786             :   ///
    1787             :   /// In en, this message translates to:
    1788             :   /// **'UI Columns in Landscape Mode'**
    1789             :   String get settingUIColumnLandscape;
    1790             : 
    1791             :   /// No description provided for @settingUIColumnPortrait.
    1792             :   ///
    1793             :   /// In en, this message translates to:
    1794             :   /// **'UI Columns in Portrait Mode'**
    1795             :   String get settingUIColumnPortrait;
    1796             : 
    1797             :   /// No description provided for @tooltipRemoveThisQuotedMessage.
    1798             :   ///
    1799             :   /// In en, this message translates to:
    1800             :   /// **'Remove quoted message.'**
    1801             :   String get tooltipRemoveThisQuotedMessage;
    1802             : 
    1803             :   /// No description provided for @tooltipReplyToThisMessage.
    1804             :   ///
    1805             :   /// In en, this message translates to:
    1806             :   /// **'Reply to this message'**
    1807             :   String get tooltipReplyToThisMessage;
    1808             : 
    1809             :   /// No description provided for @tooltipRejectContactRequest.
    1810             :   ///
    1811             :   /// In en, this message translates to:
    1812             :   /// **'Reject this contact request'**
    1813             :   String get tooltipRejectContactRequest;
    1814             : 
    1815             :   /// No description provided for @tooltipAcceptContactRequest.
    1816             :   ///
    1817             :   /// In en, this message translates to:
    1818             :   /// **'Accept this contact request.'**
    1819             :   String get tooltipAcceptContactRequest;
    1820             : 
    1821             :   /// No description provided for @notificationNewMessageFromGroup.
    1822             :   ///
    1823             :   /// In en, this message translates to:
    1824             :   /// **'New message in a group!'**
    1825             :   String get notificationNewMessageFromGroup;
    1826             : 
    1827             :   /// No description provided for @notificationNewMessageFromPeer.
    1828             :   ///
    1829             :   /// In en, this message translates to:
    1830             :   /// **'New message from a contact!'**
    1831             :   String get notificationNewMessageFromPeer;
    1832             : 
    1833             :   /// No description provided for @tooltipHidePassword.
    1834             :   ///
    1835             :   /// In en, this message translates to:
    1836             :   /// **'Hide Password'**
    1837             :   String get tooltipHidePassword;
    1838             : 
    1839             :   /// No description provided for @tooltipShowPassword.
    1840             :   ///
    1841             :   /// In en, this message translates to:
    1842             :   /// **'Show Password'**
    1843             :   String get tooltipShowPassword;
    1844             : 
    1845             :   /// No description provided for @serverNotSynced.
    1846             :   ///
    1847             :   /// In en, this message translates to:
    1848             :   /// **'Syncing New Messages (This can take some time)...'**
    1849             :   String get serverNotSynced;
    1850             : 
    1851             :   /// No description provided for @groupInviteSettingsWarning.
    1852             :   ///
    1853             :   /// In en, this message translates to:
    1854             :   /// **'You have been invited to join a group! Please enable the Group Chat Experiment in Settings to view this Invitation.'**
    1855             :   String get groupInviteSettingsWarning;
    1856             : 
    1857             :   /// No description provided for @shutdownCwtchAction.
    1858             :   ///
    1859             :   /// In en, this message translates to:
    1860             :   /// **'Shutdown Cwtch'**
    1861             :   String get shutdownCwtchAction;
    1862             : 
    1863             :   /// No description provided for @shutdownCwtchDialog.
    1864             :   ///
    1865             :   /// In en, this message translates to:
    1866             :   /// **'Are you sure you want to shutdown Cwtch? This will close all connections, and exit the application.'**
    1867             :   String get shutdownCwtchDialog;
    1868             : 
    1869             :   /// No description provided for @shutdownCwtchDialogTitle.
    1870             :   ///
    1871             :   /// In en, this message translates to:
    1872             :   /// **'Shutdown Cwtch?'**
    1873             :   String get shutdownCwtchDialogTitle;
    1874             : 
    1875             :   /// No description provided for @shutdownCwtchTooltip.
    1876             :   ///
    1877             :   /// In en, this message translates to:
    1878             :   /// **'Shutdown Cwtch'**
    1879             :   String get shutdownCwtchTooltip;
    1880             : 
    1881             :   /// No description provided for @malformedMessage.
    1882             :   ///
    1883             :   /// In en, this message translates to:
    1884             :   /// **'Malformed message'**
    1885             :   String get malformedMessage;
    1886             : 
    1887             :   /// No description provided for @profileDeleteSuccess.
    1888             :   ///
    1889             :   /// In en, this message translates to:
    1890             :   /// **'Successfully deleted profile'**
    1891             :   String get profileDeleteSuccess;
    1892             : 
    1893             :   /// No description provided for @debugLog.
    1894             :   ///
    1895             :   /// In en, this message translates to:
    1896             :   /// **'Turn on console debug logging'**
    1897             :   String get debugLog;
    1898             : 
    1899             :   /// No description provided for @torNetworkStatus.
    1900             :   ///
    1901             :   /// In en, this message translates to:
    1902             :   /// **'Tor network status'**
    1903             :   String get torNetworkStatus;
    1904             : 
    1905             :   /// No description provided for @addContactFirst.
    1906             :   ///
    1907             :   /// In en, this message translates to:
    1908             :   /// **'Add or pick a contact to begin chatting.'**
    1909             :   String get addContactFirst;
    1910             : 
    1911             :   /// No description provided for @createProfileToBegin.
    1912             :   ///
    1913             :   /// In en, this message translates to:
    1914             :   /// **'Please create or unlock a profile to begin'**
    1915             :   String get createProfileToBegin;
    1916             : 
    1917             :   /// No description provided for @nickChangeSuccess.
    1918             :   ///
    1919             :   /// In en, this message translates to:
    1920             :   /// **'Profile nickname changed successfully'**
    1921             :   String get nickChangeSuccess;
    1922             : 
    1923             :   /// No description provided for @addServerFirst.
    1924             :   ///
    1925             :   /// In en, this message translates to:
    1926             :   /// **'You need to add a server before you can create a group'**
    1927             :   String get addServerFirst;
    1928             : 
    1929             :   /// No description provided for @deleteProfileSuccess.
    1930             :   ///
    1931             :   /// In en, this message translates to:
    1932             :   /// **'Successfully deleted profile'**
    1933             :   String get deleteProfileSuccess;
    1934             : 
    1935             :   /// No description provided for @sendInvite.
    1936             :   ///
    1937             :   /// In en, this message translates to:
    1938             :   /// **'Send a contact or group invite'**
    1939             :   String get sendInvite;
    1940             : 
    1941             :   /// No description provided for @sendMessage.
    1942             :   ///
    1943             :   /// In en, this message translates to:
    1944             :   /// **'Send Message'**
    1945             :   String get sendMessage;
    1946             : 
    1947             :   /// No description provided for @cancel.
    1948             :   ///
    1949             :   /// In en, this message translates to:
    1950             :   /// **'Cancel'**
    1951             :   String get cancel;
    1952             : 
    1953             :   /// No description provided for @resetTor.
    1954             :   ///
    1955             :   /// In en, this message translates to:
    1956             :   /// **'Reset'**
    1957             :   String get resetTor;
    1958             : 
    1959             :   /// No description provided for @torStatus.
    1960             :   ///
    1961             :   /// In en, this message translates to:
    1962             :   /// **'Tor Status'**
    1963             :   String get torStatus;
    1964             : 
    1965             :   /// No description provided for @torVersion.
    1966             :   ///
    1967             :   /// In en, this message translates to:
    1968             :   /// **'Tor Version'**
    1969             :   String get torVersion;
    1970             : 
    1971             :   /// No description provided for @sendAnInvitation.
    1972             :   ///
    1973             :   /// In en, this message translates to:
    1974             :   /// **'You sent an invitation for: '**
    1975             :   String get sendAnInvitation;
    1976             : 
    1977             :   /// No description provided for @contactSuggestion.
    1978             :   ///
    1979             :   /// In en, this message translates to:
    1980             :   /// **'This is a contact suggestion for: '**
    1981             :   String get contactSuggestion;
    1982             : 
    1983             :   /// No description provided for @rejected.
    1984             :   ///
    1985             :   /// In en, this message translates to:
    1986             :   /// **'Rejected!'**
    1987             :   String get rejected;
    1988             : 
    1989             :   /// No description provided for @accepted.
    1990             :   ///
    1991             :   /// In en, this message translates to:
    1992             :   /// **'Accepted!'**
    1993             :   String get accepted;
    1994             : 
    1995             :   /// No description provided for @chatHistoryDefault.
    1996             :   ///
    1997             :   /// In en, this message translates to:
    1998             :   /// **'This conversation will be deleted when Cwtch is closed! Message history can be enabled per-conversation via the Settings menu in the upper right.'**
    1999             :   String get chatHistoryDefault;
    2000             : 
    2001             :   /// No description provided for @newPassword.
    2002             :   ///
    2003             :   /// In en, this message translates to:
    2004             :   /// **'New Password'**
    2005             :   String get newPassword;
    2006             : 
    2007             :   /// No description provided for @yesLeave.
    2008             :   ///
    2009             :   /// In en, this message translates to:
    2010             :   /// **'Yes, Leave This Conversation'**
    2011             :   String get yesLeave;
    2012             : 
    2013             :   /// No description provided for @reallyLeaveThisGroupPrompt.
    2014             :   ///
    2015             :   /// In en, this message translates to:
    2016             :   /// **'Are you sure you want to leave this conversation? All messages and attributes will be deleted.'**
    2017             :   String get reallyLeaveThisGroupPrompt;
    2018             : 
    2019             :   /// No description provided for @leaveConversation.
    2020             :   ///
    2021             :   /// In en, this message translates to:
    2022             :   /// **'Leave This Conversation'**
    2023             :   String get leaveConversation;
    2024             : 
    2025             :   /// No description provided for @inviteToGroup.
    2026             :   ///
    2027             :   /// In en, this message translates to:
    2028             :   /// **'You have been invited to join a group:'**
    2029             :   String get inviteToGroup;
    2030             : 
    2031             :   /// No description provided for @pasteAddressToAddContact.
    2032             :   ///
    2033             :   /// In en, this message translates to:
    2034             :   /// **'Paste a cwtch address, invitation or key bundle here to add a new conversation'**
    2035             :   String get pasteAddressToAddContact;
    2036             : 
    2037             :   /// No description provided for @tooltipAddContact.
    2038             :   ///
    2039             :   /// In en, this message translates to:
    2040             :   /// **'Add a new contact or conversation'**
    2041             :   String get tooltipAddContact;
    2042             : 
    2043             :   /// No description provided for @titleManageContacts.
    2044             :   ///
    2045             :   /// In en, this message translates to:
    2046             :   /// **'Conversations'**
    2047             :   String get titleManageContacts;
    2048             : 
    2049             :   /// No description provided for @titleManageServers.
    2050             :   ///
    2051             :   /// In en, this message translates to:
    2052             :   /// **'Manage Servers'**
    2053             :   String get titleManageServers;
    2054             : 
    2055             :   /// No description provided for @successfullAddedContact.
    2056             :   ///
    2057             :   /// In en, this message translates to:
    2058             :   /// **'Successfully added '**
    2059             :   String get successfullAddedContact;
    2060             : 
    2061             :   /// No description provided for @descriptionBlockUnknownConnections.
    2062             :   ///
    2063             :   /// In en, this message translates to:
    2064             :   /// **'If turned on, this option will automatically close connections from Cwtch users that have not been added to your contact list.'**
    2065             :   String get descriptionBlockUnknownConnections;
    2066             : 
    2067             :   /// No description provided for @descriptionExperimentsGroups.
    2068             :   ///
    2069             :   /// In en, this message translates to:
    2070             :   /// **'The group experiment allows Cwtch to connect with untrusted server infrastructure to facilitate communication with more than one contact.'**
    2071             :   String get descriptionExperimentsGroups;
    2072             : 
    2073             :   /// No description provided for @descriptionExperiments.
    2074             :   ///
    2075             :   /// In en, this message translates to:
    2076             :   /// **'Cwtch experiments are optional, opt-in features that add additional functionality to Cwtch that may have different privacy considerations than traditional 1:1 metadata resistant chat e.g. group chat, bot integration etc.'**
    2077             :   String get descriptionExperiments;
    2078             : 
    2079             :   /// No description provided for @titleManageProfiles.
    2080             :   ///
    2081             :   /// In en, this message translates to:
    2082             :   /// **'Manage Cwtch Profiles'**
    2083             :   String get titleManageProfiles;
    2084             : 
    2085             :   /// No description provided for @tooltipUnlockProfiles.
    2086             :   ///
    2087             :   /// In en, this message translates to:
    2088             :   /// **'Unlock encrypted profiles by entering their password.'**
    2089             :   String get tooltipUnlockProfiles;
    2090             : 
    2091             :   /// No description provided for @tooltipOpenSettings.
    2092             :   ///
    2093             :   /// In en, this message translates to:
    2094             :   /// **'Open the settings pane'**
    2095             :   String get tooltipOpenSettings;
    2096             : 
    2097             :   /// No description provided for @invalidImportString.
    2098             :   ///
    2099             :   /// In en, this message translates to:
    2100             :   /// **'Invalid import string'**
    2101             :   String get invalidImportString;
    2102             : 
    2103             :   /// No description provided for @contactAlreadyExists.
    2104             :   ///
    2105             :   /// In en, this message translates to:
    2106             :   /// **'Contact Already Exists'**
    2107             :   String get contactAlreadyExists;
    2108             : 
    2109             :   /// No description provided for @conversationSettings.
    2110             :   ///
    2111             :   /// In en, this message translates to:
    2112             :   /// **'Conversation Settings'**
    2113             :   String get conversationSettings;
    2114             : 
    2115             :   /// No description provided for @enterCurrentPasswordForDelete.
    2116             :   ///
    2117             :   /// In en, this message translates to:
    2118             :   /// **'Please enter current password to delete this profile.'**
    2119             :   String get enterCurrentPasswordForDelete;
    2120             : 
    2121             :   /// No description provided for @enableGroups.
    2122             :   ///
    2123             :   /// In en, this message translates to:
    2124             :   /// **'Enable Group Chat'**
    2125             :   String get enableGroups;
    2126             : 
    2127             :   /// No description provided for @experimentsEnabled.
    2128             :   ///
    2129             :   /// In en, this message translates to:
    2130             :   /// **'Enable Experiments'**
    2131             :   String get experimentsEnabled;
    2132             : 
    2133             :   /// No description provided for @addListItem.
    2134             :   ///
    2135             :   /// In en, this message translates to:
    2136             :   /// **'Add a New List Item'**
    2137             :   String get addListItem;
    2138             : 
    2139             :   /// No description provided for @addNewItem.
    2140             :   ///
    2141             :   /// In en, this message translates to:
    2142             :   /// **'Add a new item to the list'**
    2143             :   String get addNewItem;
    2144             : 
    2145             :   /// No description provided for @todoPlaceholder.
    2146             :   ///
    2147             :   /// In en, this message translates to:
    2148             :   /// **'Todo...'**
    2149             :   String get todoPlaceholder;
    2150             : 
    2151             :   /// No description provided for @newConnectionPaneTitle.
    2152             :   ///
    2153             :   /// In en, this message translates to:
    2154             :   /// **'New Connection'**
    2155             :   String get newConnectionPaneTitle;
    2156             : 
    2157             :   /// No description provided for @networkStatusOnline.
    2158             :   ///
    2159             :   /// In en, this message translates to:
    2160             :   /// **'Online'**
    2161             :   String get networkStatusOnline;
    2162             : 
    2163             :   /// No description provided for @networkStatusAttemptingTor.
    2164             :   ///
    2165             :   /// In en, this message translates to:
    2166             :   /// **'Attempting to connect to Tor network'**
    2167             :   String get networkStatusAttemptingTor;
    2168             : 
    2169             :   /// No description provided for @networkStatusDisconnected.
    2170             :   ///
    2171             :   /// In en, this message translates to:
    2172             :   /// **'Disconnected from the internet, check your connection'**
    2173             :   String get networkStatusDisconnected;
    2174             : 
    2175             :   /// No description provided for @viewGroupMembershipTooltip.
    2176             :   ///
    2177             :   /// In en, this message translates to:
    2178             :   /// **'View Group Membership'**
    2179             :   String get viewGroupMembershipTooltip;
    2180             : 
    2181             :   /// No description provided for @loadingTor.
    2182             :   ///
    2183             :   /// In en, this message translates to:
    2184             :   /// **'Loading tor...'**
    2185             :   String get loadingTor;
    2186             : 
    2187             :   /// No description provided for @smallTextLabel.
    2188             :   ///
    2189             :   /// In en, this message translates to:
    2190             :   /// **'Small'**
    2191             :   String get smallTextLabel;
    2192             : 
    2193             :   /// No description provided for @builddate.
    2194             :   ///
    2195             :   /// In en, this message translates to:
    2196             :   /// **'Built on: %2'**
    2197             :   String get builddate;
    2198             : 
    2199             :   /// No description provided for @version.
    2200             :   ///
    2201             :   /// In en, this message translates to:
    2202             :   /// **'Version %1'**
    2203             :   String get version;
    2204             : 
    2205             :   /// No description provided for @versionTor.
    2206             :   ///
    2207             :   /// In en, this message translates to:
    2208             :   /// **'Version %1 with tor %2'**
    2209             :   String get versionTor;
    2210             : 
    2211             :   /// No description provided for @themeDark.
    2212             :   ///
    2213             :   /// In en, this message translates to:
    2214             :   /// **'Dark'**
    2215             :   String get themeDark;
    2216             : 
    2217             :   /// No description provided for @themeLight.
    2218             :   ///
    2219             :   /// In en, this message translates to:
    2220             :   /// **'Light'**
    2221             :   String get themeLight;
    2222             : 
    2223             :   /// No description provided for @largeTextLabel.
    2224             :   ///
    2225             :   /// In en, this message translates to:
    2226             :   /// **'Large'**
    2227             :   String get largeTextLabel;
    2228             : 
    2229             :   /// No description provided for @settingInterfaceZoom.
    2230             :   ///
    2231             :   /// In en, this message translates to:
    2232             :   /// **'Zoom level'**
    2233             :   String get settingInterfaceZoom;
    2234             : 
    2235             :   /// No description provided for @settingLanguage.
    2236             :   ///
    2237             :   /// In en, this message translates to:
    2238             :   /// **'Language'**
    2239             :   String get settingLanguage;
    2240             : 
    2241             :   /// No description provided for @zoomLabel.
    2242             :   ///
    2243             :   /// In en, this message translates to:
    2244             :   /// **'Interface zoom (mostly affects text and button sizes)'**
    2245             :   String get zoomLabel;
    2246             : 
    2247             :   /// No description provided for @versionBuilddate.
    2248             :   ///
    2249             :   /// In en, this message translates to:
    2250             :   /// **'Version: %1 Built on: %2'**
    2251             :   String get versionBuilddate;
    2252             : 
    2253             :   /// No description provided for @cwtchSettingsTitle.
    2254             :   ///
    2255             :   /// In en, this message translates to:
    2256             :   /// **'Cwtch Settings'**
    2257             :   String get cwtchSettingsTitle;
    2258             : 
    2259             :   /// No description provided for @unlock.
    2260             :   ///
    2261             :   /// In en, this message translates to:
    2262             :   /// **'Unlock'**
    2263             :   String get unlock;
    2264             : 
    2265             :   /// No description provided for @yourServers.
    2266             :   ///
    2267             :   /// In en, this message translates to:
    2268             :   /// **'Your Servers'**
    2269             :   String get yourServers;
    2270             : 
    2271             :   /// No description provided for @yourProfiles.
    2272             :   ///
    2273             :   /// In en, this message translates to:
    2274             :   /// **'Your Profiles'**
    2275             :   String get yourProfiles;
    2276             : 
    2277             :   /// No description provided for @error0ProfilesLoadedForPassword.
    2278             :   ///
    2279             :   /// In en, this message translates to:
    2280             :   /// **'0 profiles loaded with that password'**
    2281             :   String get error0ProfilesLoadedForPassword;
    2282             : 
    2283             :   /// No description provided for @password.
    2284             :   ///
    2285             :   /// In en, this message translates to:
    2286             :   /// **'Password'**
    2287             :   String get password;
    2288             : 
    2289             :   /// No description provided for @enterProfilePassword.
    2290             :   ///
    2291             :   /// In en, this message translates to:
    2292             :   /// **'Enter a password to view your profiles'**
    2293             :   String get enterProfilePassword;
    2294             : 
    2295             :   /// No description provided for @addNewProfileBtn.
    2296             :   ///
    2297             :   /// In en, this message translates to:
    2298             :   /// **'Add new profile'**
    2299             :   String get addNewProfileBtn;
    2300             : 
    2301             :   /// No description provided for @deleteConfirmText.
    2302             :   ///
    2303             :   /// In en, this message translates to:
    2304             :   /// **'DELETE'**
    2305             :   String get deleteConfirmText;
    2306             : 
    2307             :   /// No description provided for @deleteProfileConfirmBtn.
    2308             :   ///
    2309             :   /// In en, this message translates to:
    2310             :   /// **'Really Delete Profile'**
    2311             :   String get deleteProfileConfirmBtn;
    2312             : 
    2313             :   /// No description provided for @deleteConfirmLabel.
    2314             :   ///
    2315             :   /// In en, this message translates to:
    2316             :   /// **'Type DELETE to confirm'**
    2317             :   String get deleteConfirmLabel;
    2318             : 
    2319             :   /// No description provided for @deleteProfileBtn.
    2320             :   ///
    2321             :   /// In en, this message translates to:
    2322             :   /// **'Delete Profile'**
    2323             :   String get deleteProfileBtn;
    2324             : 
    2325             :   /// No description provided for @passwordChangeError.
    2326             :   ///
    2327             :   /// In en, this message translates to:
    2328             :   /// **'Error changing password: Supplied password rejected'**
    2329             :   String get passwordChangeError;
    2330             : 
    2331             :   /// No description provided for @passwordErrorMatch.
    2332             :   ///
    2333             :   /// In en, this message translates to:
    2334             :   /// **'Passwords do not match'**
    2335             :   String get passwordErrorMatch;
    2336             : 
    2337             :   /// No description provided for @saveProfileBtn.
    2338             :   ///
    2339             :   /// In en, this message translates to:
    2340             :   /// **'Save Profile'**
    2341             :   String get saveProfileBtn;
    2342             : 
    2343             :   /// No description provided for @createProfileBtn.
    2344             :   ///
    2345             :   /// In en, this message translates to:
    2346             :   /// **'Create Profile'**
    2347             :   String get createProfileBtn;
    2348             : 
    2349             :   /// No description provided for @passwordErrorEmpty.
    2350             :   ///
    2351             :   /// In en, this message translates to:
    2352             :   /// **'Password cannot be empty'**
    2353             :   String get passwordErrorEmpty;
    2354             : 
    2355             :   /// No description provided for @password2Label.
    2356             :   ///
    2357             :   /// In en, this message translates to:
    2358             :   /// **'Reenter password'**
    2359             :   String get password2Label;
    2360             : 
    2361             :   /// No description provided for @password1Label.
    2362             :   ///
    2363             :   /// In en, this message translates to:
    2364             :   /// **'Password'**
    2365             :   String get password1Label;
    2366             : 
    2367             :   /// No description provided for @currentPasswordLabel.
    2368             :   ///
    2369             :   /// In en, this message translates to:
    2370             :   /// **'Current Password'**
    2371             :   String get currentPasswordLabel;
    2372             : 
    2373             :   /// No description provided for @yourDisplayName.
    2374             :   ///
    2375             :   /// In en, this message translates to:
    2376             :   /// **'Your Display Name'**
    2377             :   String get yourDisplayName;
    2378             : 
    2379             :   /// No description provided for @noPasswordWarning.
    2380             :   ///
    2381             :   /// In en, this message translates to:
    2382             :   /// **'Not using a password on this account means that all data stored locally will not be encrypted'**
    2383             :   String get noPasswordWarning;
    2384             : 
    2385             :   /// No description provided for @radioNoPassword.
    2386             :   ///
    2387             :   /// In en, this message translates to:
    2388             :   /// **'Unencrypted (No password)'**
    2389             :   String get radioNoPassword;
    2390             : 
    2391             :   /// No description provided for @radioUsePassword.
    2392             :   ///
    2393             :   /// In en, this message translates to:
    2394             :   /// **'Password'**
    2395             :   String get radioUsePassword;
    2396             : 
    2397             :   /// No description provided for @newProfile.
    2398             :   ///
    2399             :   /// In en, this message translates to:
    2400             :   /// **'New Profile'**
    2401             :   String get newProfile;
    2402             : 
    2403             :   /// No description provided for @defaultProfileName.
    2404             :   ///
    2405             :   /// In en, this message translates to:
    2406             :   /// **'Alice'**
    2407             :   String get defaultProfileName;
    2408             : 
    2409             :   /// No description provided for @profileName.
    2410             :   ///
    2411             :   /// In en, this message translates to:
    2412             :   /// **'Display name'**
    2413             :   String get profileName;
    2414             : 
    2415             :   /// No description provided for @editProfileTitle.
    2416             :   ///
    2417             :   /// In en, this message translates to:
    2418             :   /// **'Edit Profile'**
    2419             :   String get editProfileTitle;
    2420             : 
    2421             :   /// No description provided for @addProfileTitle.
    2422             :   ///
    2423             :   /// In en, this message translates to:
    2424             :   /// **'Add new profile'**
    2425             :   String get addProfileTitle;
    2426             : 
    2427             :   /// No description provided for @deleteBtn.
    2428             :   ///
    2429             :   /// In en, this message translates to:
    2430             :   /// **'Delete'**
    2431             :   String get deleteBtn;
    2432             : 
    2433             :   /// No description provided for @saveBtn.
    2434             :   ///
    2435             :   /// In en, this message translates to:
    2436             :   /// **'Save'**
    2437             :   String get saveBtn;
    2438             : 
    2439             :   /// No description provided for @displayNameLabel.
    2440             :   ///
    2441             :   /// In en, this message translates to:
    2442             :   /// **'Display Name'**
    2443             :   String get displayNameLabel;
    2444             : 
    2445             :   /// No description provided for @copiedToClipboardNotification.
    2446             :   ///
    2447             :   /// In en, this message translates to:
    2448             :   /// **'Copied to Clipboard'**
    2449             :   String get copiedToClipboardNotification;
    2450             : 
    2451             :   /// No description provided for @addressLabel.
    2452             :   ///
    2453             :   /// In en, this message translates to:
    2454             :   /// **'Address'**
    2455             :   String get addressLabel;
    2456             : 
    2457             :   /// No description provided for @puzzleGameBtn.
    2458             :   ///
    2459             :   /// In en, this message translates to:
    2460             :   /// **'Puzzle Game'**
    2461             :   String get puzzleGameBtn;
    2462             : 
    2463             :   /// No description provided for @bulletinsBtn.
    2464             :   ///
    2465             :   /// In en, this message translates to:
    2466             :   /// **'Bulletins'**
    2467             :   String get bulletinsBtn;
    2468             : 
    2469             :   /// No description provided for @listsBtn.
    2470             :   ///
    2471             :   /// In en, this message translates to:
    2472             :   /// **'Lists'**
    2473             :   String get listsBtn;
    2474             : 
    2475             :   /// No description provided for @chatBtn.
    2476             :   ///
    2477             :   /// In en, this message translates to:
    2478             :   /// **'Chat'**
    2479             :   String get chatBtn;
    2480             : 
    2481             :   /// No description provided for @rejectGroupBtn.
    2482             :   ///
    2483             :   /// In en, this message translates to:
    2484             :   /// **'Reject'**
    2485             :   String get rejectGroupBtn;
    2486             : 
    2487             :   /// No description provided for @acceptGroupBtn.
    2488             :   ///
    2489             :   /// In en, this message translates to:
    2490             :   /// **'Accept'**
    2491             :   String get acceptGroupBtn;
    2492             : 
    2493             :   /// No description provided for @acceptGroupInviteLabel.
    2494             :   ///
    2495             :   /// In en, this message translates to:
    2496             :   /// **'Do you want to accept the invitation to'**
    2497             :   String get acceptGroupInviteLabel;
    2498             : 
    2499             :   /// No description provided for @newGroupBtn.
    2500             :   ///
    2501             :   /// In en, this message translates to:
    2502             :   /// **'Create new group'**
    2503             :   String get newGroupBtn;
    2504             : 
    2505             :   /// No description provided for @copyBtn.
    2506             :   ///
    2507             :   /// In en, this message translates to:
    2508             :   /// **'Copy'**
    2509             :   String get copyBtn;
    2510             : 
    2511             :   /// No description provided for @pendingLabel.
    2512             :   ///
    2513             :   /// In en, this message translates to:
    2514             :   /// **'Pending'**
    2515             :   String get pendingLabel;
    2516             : 
    2517             :   /// No description provided for @acknowledgedLabel.
    2518             :   ///
    2519             :   /// In en, this message translates to:
    2520             :   /// **'Acknowledged'**
    2521             :   String get acknowledgedLabel;
    2522             : 
    2523             :   /// No description provided for @couldNotSendMsgError.
    2524             :   ///
    2525             :   /// In en, this message translates to:
    2526             :   /// **'Could not send this message'**
    2527             :   String get couldNotSendMsgError;
    2528             : 
    2529             :   /// No description provided for @dmTooltip.
    2530             :   ///
    2531             :   /// In en, this message translates to:
    2532             :   /// **'Click to DM'**
    2533             :   String get dmTooltip;
    2534             : 
    2535             :   /// No description provided for @membershipDescription.
    2536             :   ///
    2537             :   /// In en, this message translates to:
    2538             :   /// **'Below is a list of users who have sent messages to the group. This list may not reflect all users who have access to the group.'**
    2539             :   String get membershipDescription;
    2540             : 
    2541             :   /// No description provided for @addListItemBtn.
    2542             :   ///
    2543             :   /// In en, this message translates to:
    2544             :   /// **'Add Item'**
    2545             :   String get addListItemBtn;
    2546             : 
    2547             :   /// No description provided for @searchList.
    2548             :   ///
    2549             :   /// In en, this message translates to:
    2550             :   /// **'Search List'**
    2551             :   String get searchList;
    2552             : 
    2553             :   /// No description provided for @update.
    2554             :   ///
    2555             :   /// In en, this message translates to:
    2556             :   /// **'Update'**
    2557             :   String get update;
    2558             : 
    2559             :   /// No description provided for @inviteBtn.
    2560             :   ///
    2561             :   /// In en, this message translates to:
    2562             :   /// **'Invite'**
    2563             :   String get inviteBtn;
    2564             : 
    2565             :   /// No description provided for @inviteToGroupLabel.
    2566             :   ///
    2567             :   /// In en, this message translates to:
    2568             :   /// **'Invite to group'**
    2569             :   String get inviteToGroupLabel;
    2570             : 
    2571             :   /// No description provided for @groupNameLabel.
    2572             :   ///
    2573             :   /// In en, this message translates to:
    2574             :   /// **'Group Name'**
    2575             :   String get groupNameLabel;
    2576             : 
    2577             :   /// No description provided for @viewServerInfo.
    2578             :   ///
    2579             :   /// In en, this message translates to:
    2580             :   /// **'Server Info'**
    2581             :   String get viewServerInfo;
    2582             : 
    2583             :   /// No description provided for @serverSynced.
    2584             :   ///
    2585             :   /// In en, this message translates to:
    2586             :   /// **'Synced'**
    2587             :   String get serverSynced;
    2588             : 
    2589             :   /// No description provided for @serverConnectivityDisconnected.
    2590             :   ///
    2591             :   /// In en, this message translates to:
    2592             :   /// **'Server Disconnected'**
    2593             :   String get serverConnectivityDisconnected;
    2594             : 
    2595             :   /// No description provided for @serverConnectivityConnected.
    2596             :   ///
    2597             :   /// In en, this message translates to:
    2598             :   /// **'Server Connected'**
    2599             :   String get serverConnectivityConnected;
    2600             : 
    2601             :   /// No description provided for @serverInfo.
    2602             :   ///
    2603             :   /// In en, this message translates to:
    2604             :   /// **'Server Information'**
    2605             :   String get serverInfo;
    2606             : 
    2607             :   /// No description provided for @invitationLabel.
    2608             :   ///
    2609             :   /// In en, this message translates to:
    2610             :   /// **'Invitation'**
    2611             :   String get invitationLabel;
    2612             : 
    2613             :   /// No description provided for @serverLabel.
    2614             :   ///
    2615             :   /// In en, this message translates to:
    2616             :   /// **'Server'**
    2617             :   String get serverLabel;
    2618             : 
    2619             :   /// No description provided for @search.
    2620             :   ///
    2621             :   /// In en, this message translates to:
    2622             :   /// **'Search...'**
    2623             :   String get search;
    2624             : 
    2625             :   /// No description provided for @blocked.
    2626             :   ///
    2627             :   /// In en, this message translates to:
    2628             :   /// **'Blocked'**
    2629             :   String get blocked;
    2630             : 
    2631             :   /// No description provided for @titlePlaceholder.
    2632             :   ///
    2633             :   /// In en, this message translates to:
    2634             :   /// **'title...'**
    2635             :   String get titlePlaceholder;
    2636             : 
    2637             :   /// No description provided for @postNewBulletinLabel.
    2638             :   ///
    2639             :   /// In en, this message translates to:
    2640             :   /// **'Post new bulletin'**
    2641             :   String get postNewBulletinLabel;
    2642             : 
    2643             :   /// No description provided for @newBulletinLabel.
    2644             :   ///
    2645             :   /// In en, this message translates to:
    2646             :   /// **'New Bulletin'**
    2647             :   String get newBulletinLabel;
    2648             : 
    2649             :   /// No description provided for @joinGroup.
    2650             :   ///
    2651             :   /// In en, this message translates to:
    2652             :   /// **'Join group'**
    2653             :   String get joinGroup;
    2654             : 
    2655             :   /// No description provided for @createGroup.
    2656             :   ///
    2657             :   /// In en, this message translates to:
    2658             :   /// **'Create group'**
    2659             :   String get createGroup;
    2660             : 
    2661             :   /// No description provided for @groupAddr.
    2662             :   ///
    2663             :   /// In en, this message translates to:
    2664             :   /// **'Address'**
    2665             :   String get groupAddr;
    2666             : 
    2667             :   /// No description provided for @invitation.
    2668             :   ///
    2669             :   /// In en, this message translates to:
    2670             :   /// **'Invitation'**
    2671             :   String get invitation;
    2672             : 
    2673             :   /// No description provided for @server.
    2674             :   ///
    2675             :   /// In en, this message translates to:
    2676             :   /// **'Server'**
    2677             :   String get server;
    2678             : 
    2679             :   /// No description provided for @peerName.
    2680             :   ///
    2681             :   /// In en, this message translates to:
    2682             :   /// **'Name'**
    2683             :   String get peerName;
    2684             : 
    2685             :   /// No description provided for @peerAddress.
    2686             :   ///
    2687             :   /// In en, this message translates to:
    2688             :   /// **'Address'**
    2689             :   String get peerAddress;
    2690             : 
    2691             :   /// No description provided for @joinGroupTab.
    2692             :   ///
    2693             :   /// In en, this message translates to:
    2694             :   /// **'Join a group'**
    2695             :   String get joinGroupTab;
    2696             : 
    2697             :   /// No description provided for @createGroupTab.
    2698             :   ///
    2699             :   /// In en, this message translates to:
    2700             :   /// **'Create a group'**
    2701             :   String get createGroupTab;
    2702             : 
    2703             :   /// No description provided for @createGroupBtn.
    2704             :   ///
    2705             :   /// In en, this message translates to:
    2706             :   /// **'Create'**
    2707             :   String get createGroupBtn;
    2708             : 
    2709             :   /// No description provided for @defaultGroupName.
    2710             :   ///
    2711             :   /// In en, this message translates to:
    2712             :   /// **'Awesome Group'**
    2713             :   String get defaultGroupName;
    2714             : 
    2715             :   /// No description provided for @createGroupTitle.
    2716             :   ///
    2717             :   /// In en, this message translates to:
    2718             :   /// **'Create Group'**
    2719             :   String get createGroupTitle;
    2720             : }
    2721             : 
    2722             : class _AppLocalizationsDelegate extends LocalizationsDelegate<AppLocalizations> {
    2723           1 :   const _AppLocalizationsDelegate();
    2724             : 
    2725           4 :   @override
    2726             :   Future<AppLocalizations> load(Locale locale) {
    2727           8 :     return SynchronousFuture<AppLocalizations>(lookupAppLocalizations(locale));
    2728             :   }
    2729             : 
    2730           4 :   @override
    2731             :   bool isSupported(Locale locale) =>
    2732          12 :       <String>['cy', 'da', 'de', 'el', 'en', 'es', 'fr', 'it', 'ja', 'ko', 'lb', 'nl', 'no', 'pl', 'pt', 'ro', 'ru', 'sk', 'sv', 'sw', 'tr', 'uk', 'uz'].contains(locale.languageCode);
    2733             : 
    2734           0 :   @override
    2735             :   bool shouldReload(_AppLocalizationsDelegate old) => false;
    2736             : }
    2737             : 
    2738           4 : AppLocalizations lookupAppLocalizations(Locale locale) {
    2739             :   // Lookup logic when language+country codes are specified.
    2740           4 :   switch (locale.languageCode) {
    2741           4 :     case 'pt':
    2742             :       {
    2743           0 :         switch (locale.countryCode) {
    2744           0 :           case 'BR':
    2745           0 :             return AppLocalizationsPtBr();
    2746             :         }
    2747             :         break;
    2748             :       }
    2749             :   }
    2750             : 
    2751             :   // Lookup logic when only language code is specified.
    2752           4 :   switch (locale.languageCode) {
    2753           4 :     case 'cy':
    2754           0 :       return AppLocalizationsCy();
    2755           4 :     case 'da':
    2756           0 :       return AppLocalizationsDa();
    2757           4 :     case 'de':
    2758           0 :       return AppLocalizationsDe();
    2759           4 :     case 'el':
    2760           0 :       return AppLocalizationsEl();
    2761           4 :     case 'en':
    2762           4 :       return AppLocalizationsEn();
    2763           0 :     case 'es':
    2764           0 :       return AppLocalizationsEs();
    2765           0 :     case 'fr':
    2766           0 :       return AppLocalizationsFr();
    2767           0 :     case 'it':
    2768           0 :       return AppLocalizationsIt();
    2769           0 :     case 'ja':
    2770           0 :       return AppLocalizationsJa();
    2771           0 :     case 'ko':
    2772           0 :       return AppLocalizationsKo();
    2773           0 :     case 'lb':
    2774           0 :       return AppLocalizationsLb();
    2775           0 :     case 'nl':
    2776           0 :       return AppLocalizationsNl();
    2777           0 :     case 'no':
    2778           0 :       return AppLocalizationsNo();
    2779           0 :     case 'pl':
    2780           0 :       return AppLocalizationsPl();
    2781           0 :     case 'pt':
    2782           0 :       return AppLocalizationsPt();
    2783           0 :     case 'ro':
    2784           0 :       return AppLocalizationsRo();
    2785           0 :     case 'ru':
    2786           0 :       return AppLocalizationsRu();
    2787           0 :     case 'sk':
    2788           0 :       return AppLocalizationsSk();
    2789           0 :     case 'sv':
    2790           0 :       return AppLocalizationsSv();
    2791           0 :     case 'sw':
    2792           0 :       return AppLocalizationsSw();
    2793           0 :     case 'tr':
    2794           0 :       return AppLocalizationsTr();
    2795           0 :     case 'uk':
    2796           0 :       return AppLocalizationsUk();
    2797           0 :     case 'uz':
    2798           0 :       return AppLocalizationsUz();
    2799             :   }
    2800             : 
    2801           0 :   throw FlutterError(
    2802             :     'AppLocalizations.delegate failed to load unsupported locale "$locale". This is likely '
    2803             :     'an issue with the localizations generation tool. Please file an issue '
    2804             :     'on GitHub with a reproducible sample app and the gen-l10n configuration '
    2805             :     'that was used.',
    2806             :   );
    2807             : }

Generated by: LCOV version 1.14