2424 lines
60 KiB
Dart
2424 lines
60 KiB
Dart
// ignore: unused_import
|
|
import 'package:intl/intl.dart' as intl;
|
|
import 'app_localizations.dart';
|
|
|
|
// ignore_for_file: type=lint
|
|
|
|
/// The translations for Northern Kurdish (`kmr`).
|
|
class AppLocalizationsKmr extends AppLocalizations {
|
|
AppLocalizationsKmr([String locale = 'kmr']) : super(locale);
|
|
|
|
@override
|
|
String get appName => 'Aves';
|
|
|
|
@override
|
|
String get welcomeMessage => 'Tu bi xêr hatî Aves';
|
|
|
|
@override
|
|
String get welcomeOptional => 'Vebijêrkî';
|
|
|
|
@override
|
|
String get welcomeTermsToggle => 'Ez merc û rewşan dipejirînim';
|
|
|
|
@override
|
|
String itemCount(int count) {
|
|
final intl.NumberFormat countNumberFormat = intl.NumberFormat.decimalPattern(localeName);
|
|
final String countString = countNumberFormat.format(count);
|
|
|
|
String _temp0 = intl.Intl.pluralLogic(
|
|
count,
|
|
locale: localeName,
|
|
other: '$countString hêman',
|
|
one: '$countString hêman',
|
|
);
|
|
return '$_temp0';
|
|
}
|
|
|
|
@override
|
|
String columnCount(int count) {
|
|
final intl.NumberFormat countNumberFormat = intl.NumberFormat.decimalPattern(localeName);
|
|
final String countString = countNumberFormat.format(count);
|
|
|
|
String _temp0 = intl.Intl.pluralLogic(
|
|
count,
|
|
locale: localeName,
|
|
other: '$countString stûn',
|
|
one: '$countString stûn',
|
|
);
|
|
return '$_temp0';
|
|
}
|
|
|
|
@override
|
|
String timeSeconds(int count) {
|
|
final intl.NumberFormat countNumberFormat = intl.NumberFormat.decimalPattern(localeName);
|
|
final String countString = countNumberFormat.format(count);
|
|
|
|
String _temp0 = intl.Intl.pluralLogic(
|
|
count,
|
|
locale: localeName,
|
|
other: '$countString çirke',
|
|
one: '$countString çirke',
|
|
);
|
|
return '$_temp0';
|
|
}
|
|
|
|
@override
|
|
String timeMinutes(int count) {
|
|
final intl.NumberFormat countNumberFormat = intl.NumberFormat.decimalPattern(localeName);
|
|
final String countString = countNumberFormat.format(count);
|
|
|
|
String _temp0 = intl.Intl.pluralLogic(
|
|
count,
|
|
locale: localeName,
|
|
other: '$countString xulek',
|
|
one: '$countString xulek',
|
|
);
|
|
return '$_temp0';
|
|
}
|
|
|
|
@override
|
|
String timeDays(int count) {
|
|
final intl.NumberFormat countNumberFormat = intl.NumberFormat.decimalPattern(localeName);
|
|
final String countString = countNumberFormat.format(count);
|
|
|
|
String _temp0 = intl.Intl.pluralLogic(
|
|
count,
|
|
locale: localeName,
|
|
other: '$countString roj',
|
|
one: '$countString roj',
|
|
);
|
|
return '$_temp0';
|
|
}
|
|
|
|
@override
|
|
String focalLength(String length) {
|
|
return '$length mm';
|
|
}
|
|
|
|
@override
|
|
String get applyButtonLabel => 'BISEPÎNE';
|
|
|
|
@override
|
|
String get createButtonLabel => 'BIAFIRÎNE';
|
|
|
|
@override
|
|
String get deleteButtonLabel => 'JÊ BIBE';
|
|
|
|
@override
|
|
String get nextButtonLabel => 'JÊ BIBE';
|
|
|
|
@override
|
|
String get showButtonLabel => 'NÎŞAN BIDE';
|
|
|
|
@override
|
|
String get hideButtonLabel => 'VEŞÊRE';
|
|
|
|
@override
|
|
String get continueButtonLabel => 'BIDOMÎNE';
|
|
|
|
@override
|
|
String get saveCopyButtonLabel => 'JÊGIRTINÊ TOMAR BIKE';
|
|
|
|
@override
|
|
String get applyTooltip => 'Bisepîne';
|
|
|
|
@override
|
|
String get cancelTooltip => 'Têk bibe';
|
|
|
|
@override
|
|
String get changeTooltip => 'Biguherîne';
|
|
|
|
@override
|
|
String get clearTooltip => 'Pak bike';
|
|
|
|
@override
|
|
String get previousTooltip => 'Paş';
|
|
|
|
@override
|
|
String get nextTooltip => 'Pêş';
|
|
|
|
@override
|
|
String get showTooltip => 'Nişan bide';
|
|
|
|
@override
|
|
String get hideTooltip => 'Veşêre';
|
|
|
|
@override
|
|
String get actionRemove => 'Rake';
|
|
|
|
@override
|
|
String get resetTooltip => 'Ji nû be saz bike';
|
|
|
|
@override
|
|
String get saveTooltip => 'Tomar bike';
|
|
|
|
@override
|
|
String get stopTooltip => 'Rawestîne';
|
|
|
|
@override
|
|
String get pickTooltip => 'Hilbijêre';
|
|
|
|
@override
|
|
String get doubleBackExitMessage => '“Vegere” dîsa bitikîne da ku derkevî.';
|
|
|
|
@override
|
|
String get doNotAskAgain => 'Dîsa pirs neke';
|
|
|
|
@override
|
|
String get sourceStateLoading => 'Tê barkirin';
|
|
|
|
@override
|
|
String get sourceStateCataloguing => 'Beş';
|
|
|
|
@override
|
|
String get sourceStateLocatingCountries => 'Dîtina welatan';
|
|
|
|
@override
|
|
String get sourceStateLocatingPlaces => 'Dîtina cihan';
|
|
|
|
@override
|
|
String get chipActionDelete => 'Jê bibe';
|
|
|
|
@override
|
|
String get chipActionRemove => 'Rake';
|
|
|
|
@override
|
|
String get chipActionShowCollection => 'Di komê de nîşan bide';
|
|
|
|
@override
|
|
String get chipActionGoToAlbumPage => 'Di elbumê de nîşan bide';
|
|
|
|
@override
|
|
String get chipActionGoToCountryPage => 'Di welatan de nîşan bide';
|
|
|
|
@override
|
|
String get chipActionGoToPlacePage => 'Di cihan de nîşan bide';
|
|
|
|
@override
|
|
String get chipActionGoToTagPage => 'Di nîşankan de nîşan bide';
|
|
|
|
@override
|
|
String get chipActionGoToExplorerPage => 'Di gervanê de nîşan bide';
|
|
|
|
@override
|
|
String get chipActionDecompose => 'Veqetîne';
|
|
|
|
@override
|
|
String get chipActionFilterOut => 'Derxe';
|
|
|
|
@override
|
|
String get chipActionFilterIn => 'Têxe';
|
|
|
|
@override
|
|
String get chipActionHide => 'Veşêre';
|
|
|
|
@override
|
|
String get chipActionLock => 'Kilît bike';
|
|
|
|
@override
|
|
String get chipActionPin => 'Li jor bi dar bixe';
|
|
|
|
@override
|
|
String get chipActionUnpin => 'Li jor bi dar nexe';
|
|
|
|
@override
|
|
String get chipActionGroup => 'Komkirinê biguherîne';
|
|
|
|
@override
|
|
String get chipActionRename => 'Navê biguherîne';
|
|
|
|
@override
|
|
String get chipActionSetCover => 'Bergê saz bike';
|
|
|
|
@override
|
|
String get chipActionShowCountryStates => 'Amaran nîşan bide';
|
|
|
|
@override
|
|
String get chipActionCreateGroup => 'Komê biafirîne';
|
|
|
|
@override
|
|
String get chipActionCreateAlbum => 'Elbumê biafirîne';
|
|
|
|
@override
|
|
String get chipActionCreateVault => 'Nirxê biafirîne';
|
|
|
|
@override
|
|
String get chipActionConfigureVault => 'Configure vault';
|
|
|
|
@override
|
|
String get entryActionCopyToClipboard => 'Copy to clipboard';
|
|
|
|
@override
|
|
String get entryActionDelete => 'Jê bibe';
|
|
|
|
@override
|
|
String get entryActionConvert => 'Mezinahiyê biguherîne';
|
|
|
|
@override
|
|
String get entryActionExport => 'Derxîne';
|
|
|
|
@override
|
|
String get entryActionInfo => 'Zanyarî';
|
|
|
|
@override
|
|
String get entryActionRename => 'Navê biguherîne';
|
|
|
|
@override
|
|
String get entryActionRestore => 'Vegerîne';
|
|
|
|
@override
|
|
String get entryActionRotateCCW => 'Berevajî demjimêrê bizivirîne';
|
|
|
|
@override
|
|
String get entryActionRotateCW => 'Rotate clockwise';
|
|
|
|
@override
|
|
String get entryActionFlip => 'Flip horizontally';
|
|
|
|
@override
|
|
String get entryActionPrint => 'Çap bike';
|
|
|
|
@override
|
|
String get entryActionShare => 'Parve bike';
|
|
|
|
@override
|
|
String get entryActionShareImageOnly => 'Tenê wêneyê parve bike';
|
|
|
|
@override
|
|
String get entryActionShareVideoOnly => 'Tenê vîdyoyê parve bike';
|
|
|
|
@override
|
|
String get entryActionViewSource => 'Çavkaniyê nîşan bide';
|
|
|
|
@override
|
|
String get entryActionShowGeoTiffOnMap => 'Show as map overlay';
|
|
|
|
@override
|
|
String get entryActionConvertMotionPhotoToStillImage => 'Convert to still image';
|
|
|
|
@override
|
|
String get entryActionViewMotionPhotoVideo => 'Vîdyoyê veke';
|
|
|
|
@override
|
|
String get entryActionEdit => 'Biguherîne';
|
|
|
|
@override
|
|
String get entryActionOpen => 'Veke bi';
|
|
|
|
@override
|
|
String get entryActionSetAs => 'Saz bike wekî';
|
|
|
|
@override
|
|
String get entryActionCast => 'Weşan';
|
|
|
|
@override
|
|
String get entryActionOpenMap => 'Di sepanê nexşeyê de nîşan bide';
|
|
|
|
@override
|
|
String get entryActionRotateScreen => 'Dîmenderê teqle bike';
|
|
|
|
@override
|
|
String get entryActionAddFavourite => 'Tevlî bijarteyan bike';
|
|
|
|
@override
|
|
String get entryActionRemoveFavourite => 'Ji bijarteyan rake';
|
|
|
|
@override
|
|
String get videoActionCaptureFrame => 'Çarçoveyê bigire';
|
|
|
|
@override
|
|
String get videoActionMute => 'Bêdeng bike';
|
|
|
|
@override
|
|
String get videoActionUnmute => 'Bêdeng neke';
|
|
|
|
@override
|
|
String get videoActionPause => 'Rawestîne';
|
|
|
|
@override
|
|
String get videoActionPlay => 'Vêxe';
|
|
|
|
@override
|
|
String get videoActionReplay10 => '10 çirkeyan paşde vegerîne';
|
|
|
|
@override
|
|
String get videoActionSkip10 => '10 çirkeyan pêşde bibe';
|
|
|
|
@override
|
|
String get videoActionShowPreviousFrame => 'Çarçoveya paş nîşan bide';
|
|
|
|
@override
|
|
String get videoActionShowNextFrame => 'Çarçoveya pêş nîşan bide';
|
|
|
|
@override
|
|
String get videoActionSelectStreams => 'Stran hilbijêre';
|
|
|
|
@override
|
|
String get videoActionSetSpeed => 'Leza lîstinê';
|
|
|
|
@override
|
|
String get videoActionABRepeat => 'A-B dûbare bike';
|
|
|
|
@override
|
|
String get videoRepeatActionSetStart => 'Destpêk saz bike';
|
|
|
|
@override
|
|
String get videoRepeatActionSetEnd => 'Dawî saz bike';
|
|
|
|
@override
|
|
String get viewerActionSettings => 'Sazkarî';
|
|
|
|
@override
|
|
String get viewerActionLock => 'Lock viewer';
|
|
|
|
@override
|
|
String get viewerActionUnlock => 'Unlock viewer';
|
|
|
|
@override
|
|
String get slideshowActionResume => 'Bidomîne';
|
|
|
|
@override
|
|
String get slideshowActionShowInCollection => 'Show in Collection';
|
|
|
|
@override
|
|
String get entryInfoActionEditDate => 'Dem & dîrokê biguherîne';
|
|
|
|
@override
|
|
String get entryInfoActionEditLocation => 'Cihê biguherîne';
|
|
|
|
@override
|
|
String get entryInfoActionEditTitleDescription => 'Sernav & danasînê biguherîne';
|
|
|
|
@override
|
|
String get entryInfoActionEditRating => 'Nirxandinê biguherîne';
|
|
|
|
@override
|
|
String get entryInfoActionEditTags => 'Nîşanan biguherîne';
|
|
|
|
@override
|
|
String get entryInfoActionRemoveMetadata => 'Metadata biguherîne';
|
|
|
|
@override
|
|
String get entryInfoActionExportMetadata => 'Metadata derxe';
|
|
|
|
@override
|
|
String get entryInfoActionRemoveLocation => 'Cihê rake';
|
|
|
|
@override
|
|
String get editorActionTransform => 'Biguherîne';
|
|
|
|
@override
|
|
String get editorTransformCrop => 'Jê bike';
|
|
|
|
@override
|
|
String get editorTransformRotate => 'Bizivirîne';
|
|
|
|
@override
|
|
String get cropAspectRatioFree => 'Belaş';
|
|
|
|
@override
|
|
String get cropAspectRatioOriginal => 'Resen';
|
|
|
|
@override
|
|
String get cropAspectRatioSquare => 'Çargoşe';
|
|
|
|
@override
|
|
String get filterAspectRatioLandscapeLabel => 'Landscape';
|
|
|
|
@override
|
|
String get filterAspectRatioPortraitLabel => 'Portrait';
|
|
|
|
@override
|
|
String get filterBinLabel => 'Jêbirdank';
|
|
|
|
@override
|
|
String get filterFavouriteLabel => 'Favorite';
|
|
|
|
@override
|
|
String get filterNoDateLabel => 'Rojekirî';
|
|
|
|
@override
|
|
String get filterNoAddressLabel => 'Navnîşan tine ye';
|
|
|
|
@override
|
|
String get filterLocatedLabel => 'Bicihkirî';
|
|
|
|
@override
|
|
String get filterNoLocationLabel => 'Bicihnekirî';
|
|
|
|
@override
|
|
String get filterNoRatingLabel => 'Nenirxandî';
|
|
|
|
@override
|
|
String get filterTaggedLabel => 'Nîşankirî';
|
|
|
|
@override
|
|
String get filterNoTagLabel => 'Nenîşankirî';
|
|
|
|
@override
|
|
String get filterNoTitleLabel => 'Bêsernav';
|
|
|
|
@override
|
|
String get filterOnThisDayLabel => 'Di vê rojê de';
|
|
|
|
@override
|
|
String get filterRecentlyAddedLabel => 'Nû tevlî bûyî';
|
|
|
|
@override
|
|
String get filterRatingRejectedLabel => 'Dûrixistî';
|
|
|
|
@override
|
|
String get filterTypeAnimatedLabel => 'Anîmasyon';
|
|
|
|
@override
|
|
String get filterTypeMotionPhotoLabel => 'Motion Photo';
|
|
|
|
@override
|
|
String get filterTypePanoramaLabel => 'Panorama';
|
|
|
|
@override
|
|
String get filterTypeRawLabel => 'Xav';
|
|
|
|
@override
|
|
String get filterTypeSphericalVideoLabel => '360° vîdyo';
|
|
|
|
@override
|
|
String get filterTypeGeotiffLabel => 'GeoTIFF';
|
|
|
|
@override
|
|
String get filterMimeImageLabel => 'Wêne';
|
|
|
|
@override
|
|
String get filterMimeVideoLabel => 'Vîdyo';
|
|
|
|
@override
|
|
String get accessibilityAnimationsRemove => 'Prevent screen effects';
|
|
|
|
@override
|
|
String get accessibilityAnimationsKeep => 'Keep screen effects';
|
|
|
|
@override
|
|
String get albumTierNew => 'Nû';
|
|
|
|
@override
|
|
String get albumTierPinned => 'Bi dar xistî';
|
|
|
|
@override
|
|
String get albumTierGroups => 'Kom';
|
|
|
|
@override
|
|
String get albumTierSpecial => 'Hevpar';
|
|
|
|
@override
|
|
String get albumTierApps => 'Sepan';
|
|
|
|
@override
|
|
String get albumTierVaults => 'Vaults';
|
|
|
|
@override
|
|
String get albumTierDynamic => 'Dynamîk';
|
|
|
|
@override
|
|
String get albumTierRegular => 'Ên din';
|
|
|
|
@override
|
|
String get coordinateFormatDms => 'DMS';
|
|
|
|
@override
|
|
String get coordinateFormatDdm => 'DDM';
|
|
|
|
@override
|
|
String get coordinateFormatDecimal => 'Decimal degrees';
|
|
|
|
@override
|
|
String coordinateDms(String coordinate, String direction) {
|
|
return '$coordinate $direction';
|
|
}
|
|
|
|
@override
|
|
String get coordinateDmsNorth => 'BK';
|
|
|
|
@override
|
|
String get coordinateDmsSouth => 'BŞ';
|
|
|
|
@override
|
|
String get coordinateDmsEast => 'RT';
|
|
|
|
@override
|
|
String get coordinateDmsWest => 'RA';
|
|
|
|
@override
|
|
String get displayRefreshRatePreferHighest => 'Bilindtirîn nirx';
|
|
|
|
@override
|
|
String get displayRefreshRatePreferLowest => 'Kêmtirîn nirx';
|
|
|
|
@override
|
|
String get keepScreenOnNever => 'Ti carî';
|
|
|
|
@override
|
|
String get keepScreenOnVideoPlayback => 'During video playback';
|
|
|
|
@override
|
|
String get keepScreenOnViewerOnly => 'Viewer page only';
|
|
|
|
@override
|
|
String get keepScreenOnAlways => 'Her dem';
|
|
|
|
@override
|
|
String get lengthUnitPixel => 'px';
|
|
|
|
@override
|
|
String get lengthUnitPercent => '%';
|
|
|
|
@override
|
|
String get mapStyleGoogleNormal => 'Google Maps';
|
|
|
|
@override
|
|
String get mapStyleGoogleHybrid => 'Google Maps (Hybrid)';
|
|
|
|
@override
|
|
String get mapStyleGoogleTerrain => 'Google Maps (Terrain)';
|
|
|
|
@override
|
|
String get mapStyleOsmLiberty => 'OSM Liberty';
|
|
|
|
@override
|
|
String get mapStyleOpenTopoMap => 'OpenTopoMap';
|
|
|
|
@override
|
|
String get mapStyleOsmHot => 'Humanitarian OSM';
|
|
|
|
@override
|
|
String get mapStyleStamenWatercolor => 'Stamen Watercolor';
|
|
|
|
@override
|
|
String get maxBrightnessNever => 'Ti carî';
|
|
|
|
@override
|
|
String get maxBrightnessAlways => 'Her dem';
|
|
|
|
@override
|
|
String get nameConflictStrategyRename => 'Navê biguherîne';
|
|
|
|
@override
|
|
String get nameConflictStrategyReplace => 'Replace';
|
|
|
|
@override
|
|
String get nameConflictStrategySkip => 'Derbas bike';
|
|
|
|
@override
|
|
String get overlayHistogramNone => 'Ne yek';
|
|
|
|
@override
|
|
String get overlayHistogramRGB => 'RGB';
|
|
|
|
@override
|
|
String get overlayHistogramLuminance => 'Ronahî';
|
|
|
|
@override
|
|
String get subtitlePositionTop => 'Jor';
|
|
|
|
@override
|
|
String get subtitlePositionBottom => 'Jêr';
|
|
|
|
@override
|
|
String get themeBrightnessLight => 'Ronahî';
|
|
|
|
@override
|
|
String get themeBrightnessDark => 'Tarî';
|
|
|
|
@override
|
|
String get themeBrightnessBlack => 'Reş';
|
|
|
|
@override
|
|
String get unitSystemMetric => 'Metrî';
|
|
|
|
@override
|
|
String get unitSystemImperial => 'Imperial';
|
|
|
|
@override
|
|
String get vaultLockTypePattern => 'Çûre';
|
|
|
|
@override
|
|
String get vaultLockTypePin => 'PIN';
|
|
|
|
@override
|
|
String get vaultLockTypePassword => 'Borînpeyv';
|
|
|
|
@override
|
|
String get settingsVideoEnablePip => 'Wêne di wêne de';
|
|
|
|
@override
|
|
String get videoControlsPlayOutside => 'Open with other player';
|
|
|
|
@override
|
|
String get videoLoopModeNever => 'Ti carî';
|
|
|
|
@override
|
|
String get videoLoopModeShortOnly => 'Vîdyo yên kin tenê';
|
|
|
|
@override
|
|
String get videoLoopModeAlways => 'Her dem';
|
|
|
|
@override
|
|
String get videoPlaybackSkip => 'Derbas bike';
|
|
|
|
@override
|
|
String get videoPlaybackMuted => 'Play muted';
|
|
|
|
@override
|
|
String get videoPlaybackWithSound => 'Play with sound';
|
|
|
|
@override
|
|
String get videoResumptionModeNever => 'Ti carî';
|
|
|
|
@override
|
|
String get videoResumptionModeAlways => 'Her dem';
|
|
|
|
@override
|
|
String get viewerTransitionSlide => 'Bişemtîne';
|
|
|
|
@override
|
|
String get viewerTransitionParallax => 'Parallax';
|
|
|
|
@override
|
|
String get viewerTransitionFade => 'Wendabûn';
|
|
|
|
@override
|
|
String get viewerTransitionZoomIn => 'Zoom in';
|
|
|
|
@override
|
|
String get viewerTransitionNone => 'Ne tişt';
|
|
|
|
@override
|
|
String get wallpaperTargetHome => 'Home screen';
|
|
|
|
@override
|
|
String get wallpaperTargetLock => 'Lock screen';
|
|
|
|
@override
|
|
String get wallpaperTargetHomeLock => 'Home and lock screens';
|
|
|
|
@override
|
|
String get widgetDisplayedItemRandom => 'Rastehatî';
|
|
|
|
@override
|
|
String get widgetDisplayedItemMostRecent => 'Most recent';
|
|
|
|
@override
|
|
String get widgetOpenPageHome => 'Open home';
|
|
|
|
@override
|
|
String get widgetOpenPageCollection => 'Open collection';
|
|
|
|
@override
|
|
String get widgetOpenPageViewer => 'Open viewer';
|
|
|
|
@override
|
|
String get widgetTapUpdateWidget => 'Update widget';
|
|
|
|
@override
|
|
String get storageVolumeDescriptionFallbackPrimary => 'Internal storage';
|
|
|
|
@override
|
|
String get storageVolumeDescriptionFallbackNonPrimary => 'SD card';
|
|
|
|
@override
|
|
String get rootDirectoryDescription => 'root directory';
|
|
|
|
@override
|
|
String otherDirectoryDescription(String name) {
|
|
return '“$name” directory';
|
|
}
|
|
|
|
@override
|
|
String storageAccessDialogMessage(String directory, String volume) {
|
|
return 'Please select the $directory of “$volume” in the next screen to give this app access to it.';
|
|
}
|
|
|
|
@override
|
|
String restrictedAccessDialogMessage(String directory, String volume) {
|
|
return 'This app is not allowed to modify files in the $directory of “$volume”.\n\nPlease use a pre-installed file manager or gallery app to move the items to another directory.';
|
|
}
|
|
|
|
@override
|
|
String notEnoughSpaceDialogMessage(String neededSize, String freeSize, String volume) {
|
|
return 'This operation needs $neededSize of free space on “$volume” to complete, but there is only $freeSize left.';
|
|
}
|
|
|
|
@override
|
|
String get missingSystemFilePickerDialogMessage => 'The system file picker is missing or disabled. Please enable it and try again.';
|
|
|
|
@override
|
|
String unsupportedTypeDialogMessage(int count, String types) {
|
|
String _temp0 = intl.Intl.pluralLogic(
|
|
count,
|
|
locale: localeName,
|
|
other: 'This operation is not supported for items of the following types: $types.',
|
|
one: 'This operation is not supported for items of the following type: $types.',
|
|
);
|
|
return '$_temp0';
|
|
}
|
|
|
|
@override
|
|
String get nameConflictDialogSingleSourceMessage => 'Some files in the destination folder have the same name.';
|
|
|
|
@override
|
|
String get nameConflictDialogMultipleSourceMessage => 'Some files have the same name.';
|
|
|
|
@override
|
|
String get addShortcutDialogLabel => 'Shortcut label';
|
|
|
|
@override
|
|
String get addShortcutButtonLabel => 'TEVLÎ BIKE';
|
|
|
|
@override
|
|
String get noMatchingAppDialogMessage => 'There are no apps that can handle this.';
|
|
|
|
@override
|
|
String binEntriesConfirmationDialogMessage(int count) {
|
|
final intl.NumberFormat countNumberFormat = intl.NumberFormat.decimalPattern(localeName);
|
|
final String countString = countNumberFormat.format(count);
|
|
|
|
String _temp0 = intl.Intl.pluralLogic(
|
|
count,
|
|
locale: localeName,
|
|
other: 'Move these $countString items to the recycle bin?',
|
|
one: 'Move this item to the recycle bin?',
|
|
);
|
|
return '$_temp0';
|
|
}
|
|
|
|
@override
|
|
String deleteEntriesConfirmationDialogMessage(int count) {
|
|
final intl.NumberFormat countNumberFormat = intl.NumberFormat.decimalPattern(localeName);
|
|
final String countString = countNumberFormat.format(count);
|
|
|
|
String _temp0 = intl.Intl.pluralLogic(
|
|
count,
|
|
locale: localeName,
|
|
other: 'Delete these $countString items?',
|
|
one: 'Delete this item?',
|
|
);
|
|
return '$_temp0';
|
|
}
|
|
|
|
@override
|
|
String get moveUndatedConfirmationDialogMessage => 'Save item dates before proceeding?';
|
|
|
|
@override
|
|
String get moveUndatedConfirmationDialogSetDate => 'Save dates';
|
|
|
|
@override
|
|
String videoResumeDialogMessage(String time) {
|
|
return 'Do you want to resume playing at $time?';
|
|
}
|
|
|
|
@override
|
|
String get videoStartOverButtonLabel => 'START OVER';
|
|
|
|
@override
|
|
String get videoResumeButtonLabel => 'BIDOMÎNE';
|
|
|
|
@override
|
|
String get setCoverDialogLatest => 'Latest item';
|
|
|
|
@override
|
|
String get setCoverDialogAuto => 'Xweber';
|
|
|
|
@override
|
|
String get setCoverDialogCustom => 'Kesane';
|
|
|
|
@override
|
|
String get hideFilterConfirmationDialogMessage => 'Matching photos and videos will be hidden from your collection. You can show them again from the “Privacy” settings.\n\nAre you sure you want to hide them?';
|
|
|
|
@override
|
|
String get newAlbumDialogTitle => 'New Album';
|
|
|
|
@override
|
|
String get newAlbumDialogNameLabel => 'Album name';
|
|
|
|
@override
|
|
String get newAlbumDialogAlbumAlreadyExistsHelper => 'Album already exists';
|
|
|
|
@override
|
|
String get newAlbumDialogNameLabelAlreadyExistsHelper => 'Directory already exists';
|
|
|
|
@override
|
|
String get newAlbumDialogStorageLabel => 'Bîrdank:';
|
|
|
|
@override
|
|
String get newDynamicAlbumDialogTitle => 'New Dynamic Album';
|
|
|
|
@override
|
|
String get dynamicAlbumAlreadyExists => 'Dynamic album already exists';
|
|
|
|
@override
|
|
String get newGroupDialogTitle => 'New Group';
|
|
|
|
@override
|
|
String get newGroupDialogNameLabel => 'Group name';
|
|
|
|
@override
|
|
String get groupAlreadyExists => 'Group already exists';
|
|
|
|
@override
|
|
String get groupEmpty => 'No groups';
|
|
|
|
@override
|
|
String get ungrouped => 'Nekomkirinî';
|
|
|
|
@override
|
|
String get groupPickerTitle => 'Pick Group';
|
|
|
|
@override
|
|
String get groupPickerUseThisGroupButton => 'Use this group';
|
|
|
|
@override
|
|
String get newVaultWarningDialogMessage => 'Items in vaults are only available to this app and no others.\n\nIf you uninstall this app, or clear this app data, you will lose all these items.';
|
|
|
|
@override
|
|
String get newVaultDialogTitle => 'New Vault';
|
|
|
|
@override
|
|
String get configureVaultDialogTitle => 'Configure Vault';
|
|
|
|
@override
|
|
String get vaultDialogLockModeWhenScreenOff => 'Lock when screen turns off';
|
|
|
|
@override
|
|
String get vaultDialogLockTypeLabel => 'Lock type';
|
|
|
|
@override
|
|
String get patternDialogEnter => 'Enter pattern';
|
|
|
|
@override
|
|
String get patternDialogConfirm => 'Confirm pattern';
|
|
|
|
@override
|
|
String get pinDialogEnter => 'Enter PIN';
|
|
|
|
@override
|
|
String get pinDialogConfirm => 'Confirm PIN';
|
|
|
|
@override
|
|
String get passwordDialogEnter => 'Enter password';
|
|
|
|
@override
|
|
String get passwordDialogConfirm => 'Confirm password';
|
|
|
|
@override
|
|
String get authenticateToConfigureVault => 'Authenticate to configure vault';
|
|
|
|
@override
|
|
String get authenticateToUnlockVault => 'Authenticate to unlock vault';
|
|
|
|
@override
|
|
String get vaultBinUsageDialogMessage => 'Some vaults are using the recycle bin.';
|
|
|
|
@override
|
|
String get renameAlbumDialogLabel => 'New name';
|
|
|
|
@override
|
|
String get renameAlbumDialogLabelAlreadyExistsHelper => 'Directory already exists';
|
|
|
|
@override
|
|
String get renameEntrySetPageTitle => 'Navê biguherîne';
|
|
|
|
@override
|
|
String get renameEntrySetPagePatternFieldLabel => 'Naming pattern';
|
|
|
|
@override
|
|
String get renameEntrySetPageInsertTooltip => 'Insert field';
|
|
|
|
@override
|
|
String get renameEntrySetPagePreviewSectionTitle => 'Pêşdîtin';
|
|
|
|
@override
|
|
String get renameProcessorCounter => 'Jimêr';
|
|
|
|
@override
|
|
String get renameProcessorHash => 'Hash';
|
|
|
|
@override
|
|
String get renameProcessorName => 'Nav';
|
|
|
|
@override
|
|
String deleteSingleAlbumConfirmationDialogMessage(int count) {
|
|
final intl.NumberFormat countNumberFormat = intl.NumberFormat.decimalPattern(localeName);
|
|
final String countString = countNumberFormat.format(count);
|
|
|
|
String _temp0 = intl.Intl.pluralLogic(
|
|
count,
|
|
locale: localeName,
|
|
other: 'Delete this album and the $countString items in it?',
|
|
one: 'Delete this album and the item in it?',
|
|
);
|
|
return '$_temp0';
|
|
}
|
|
|
|
@override
|
|
String deleteMultiAlbumConfirmationDialogMessage(int count) {
|
|
final intl.NumberFormat countNumberFormat = intl.NumberFormat.decimalPattern(localeName);
|
|
final String countString = countNumberFormat.format(count);
|
|
|
|
String _temp0 = intl.Intl.pluralLogic(
|
|
count,
|
|
locale: localeName,
|
|
other: 'Delete these albums and the $countString items in them?',
|
|
one: 'Delete these albums and the item in them?',
|
|
);
|
|
return '$_temp0';
|
|
}
|
|
|
|
@override
|
|
String get exportEntryDialogFormat => 'Awa:';
|
|
|
|
@override
|
|
String get exportEntryDialogWidth => 'Ferehî';
|
|
|
|
@override
|
|
String get exportEntryDialogHeight => 'Dirêjî';
|
|
|
|
@override
|
|
String get exportEntryDialogQuality => 'Kalîte';
|
|
|
|
@override
|
|
String get exportEntryDialogWriteMetadata => 'Write metadata';
|
|
|
|
@override
|
|
String get renameEntryDialogLabel => 'New name';
|
|
|
|
@override
|
|
String get editEntryDialogCopyFromItem => 'Copy from other item';
|
|
|
|
@override
|
|
String get editEntryDialogTargetFieldsHeader => 'Fields to modify';
|
|
|
|
@override
|
|
String get editEntryDateDialogTitle => 'Date & Time';
|
|
|
|
@override
|
|
String get editEntryDateDialogSetCustom => 'Set custom date';
|
|
|
|
@override
|
|
String get editEntryDateDialogCopyField => 'Copy from other date';
|
|
|
|
@override
|
|
String get editEntryDateDialogExtractFromTitle => 'Extract from title';
|
|
|
|
@override
|
|
String get editEntryDateDialogShift => 'Biguherîne';
|
|
|
|
@override
|
|
String get editEntryDateDialogSourceFileModifiedDate => 'File modified date';
|
|
|
|
@override
|
|
String get durationDialogHours => 'Demjimêr';
|
|
|
|
@override
|
|
String get durationDialogMinutes => 'Xulek';
|
|
|
|
@override
|
|
String get durationDialogSeconds => 'Çirke';
|
|
|
|
@override
|
|
String get editEntryLocationDialogTitle => 'Cih';
|
|
|
|
@override
|
|
String get editEntryLocationDialogSetCustom => 'Set custom location';
|
|
|
|
@override
|
|
String get editEntryLocationDialogChooseOnMap => 'Choose on map';
|
|
|
|
@override
|
|
String get editEntryLocationDialogImportGpx => 'Import GPX';
|
|
|
|
@override
|
|
String get editEntryLocationDialogLatitude => 'Latitude';
|
|
|
|
@override
|
|
String get editEntryLocationDialogLongitude => 'Longitude';
|
|
|
|
@override
|
|
String get editEntryLocationDialogTimeShift => 'Time shift';
|
|
|
|
@override
|
|
String get locationPickerUseThisLocationButton => 'Use this location';
|
|
|
|
@override
|
|
String get editEntryRatingDialogTitle => 'Nirxandin';
|
|
|
|
@override
|
|
String get removeEntryMetadataDialogTitle => 'Metadata Removal';
|
|
|
|
@override
|
|
String get removeEntryMetadataDialogAll => 'Hemû';
|
|
|
|
@override
|
|
String get removeEntryMetadataDialogMore => 'Bêtir';
|
|
|
|
@override
|
|
String get removeEntryMetadataMotionPhotoXmpWarningDialogMessage => 'XMP is required to play the video inside a motion photo.\n\nAre you sure you want to remove it?';
|
|
|
|
@override
|
|
String get videoSpeedDialogLabel => 'Playback speed';
|
|
|
|
@override
|
|
String get videoStreamSelectionDialogVideo => 'Vîdyo';
|
|
|
|
@override
|
|
String get videoStreamSelectionDialogAudio => 'Deng';
|
|
|
|
@override
|
|
String get videoStreamSelectionDialogText => 'Jêrnivîs';
|
|
|
|
@override
|
|
String get videoStreamSelectionDialogOff => 'Vemirî';
|
|
|
|
@override
|
|
String get videoStreamSelectionDialogTrack => 'Herik';
|
|
|
|
@override
|
|
String get videoStreamSelectionDialogNoSelection => 'There are no other tracks.';
|
|
|
|
@override
|
|
String get genericSuccessFeedback => 'Qediya!';
|
|
|
|
@override
|
|
String get genericFailureFeedback => 'Têkçûyî';
|
|
|
|
@override
|
|
String get genericDangerWarningDialogMessage => 'Are you sure?';
|
|
|
|
@override
|
|
String get tooManyItemsErrorDialogMessage => 'Try again with fewer items.';
|
|
|
|
@override
|
|
String get menuActionConfigureView => 'Nîşan bide';
|
|
|
|
@override
|
|
String get menuActionSelect => 'Hilbijêre';
|
|
|
|
@override
|
|
String get menuActionSelectAll => 'Select all';
|
|
|
|
@override
|
|
String get menuActionSelectNone => 'Select none';
|
|
|
|
@override
|
|
String get menuActionMap => 'Nexşe';
|
|
|
|
@override
|
|
String get menuActionSlideshow => 'Slideshow';
|
|
|
|
@override
|
|
String get menuActionStats => 'Amar';
|
|
|
|
@override
|
|
String get viewDialogSortSectionTitle => 'Rêzkirin';
|
|
|
|
@override
|
|
String get viewDialogGroupSectionTitle => 'Beş';
|
|
|
|
@override
|
|
String get viewDialogLayoutSectionTitle => 'Layout';
|
|
|
|
@override
|
|
String get viewDialogReverseSortOrder => 'Reverse sort order';
|
|
|
|
@override
|
|
String get tileLayoutMosaic => 'Mozaîk';
|
|
|
|
@override
|
|
String get tileLayoutGrid => 'Tor';
|
|
|
|
@override
|
|
String get tileLayoutList => 'Rêz';
|
|
|
|
@override
|
|
String get castDialogTitle => 'Cast Devices';
|
|
|
|
@override
|
|
String get coverDialogTabCover => 'Cover';
|
|
|
|
@override
|
|
String get coverDialogTabApp => 'Sepan';
|
|
|
|
@override
|
|
String get coverDialogTabColor => 'Reng';
|
|
|
|
@override
|
|
String get appPickDialogTitle => 'Pick App';
|
|
|
|
@override
|
|
String get appPickDialogNone => 'Ne yek';
|
|
|
|
@override
|
|
String get aboutPageTitle => 'Derbar';
|
|
|
|
@override
|
|
String get aboutLinkLicense => 'Lîsans';
|
|
|
|
@override
|
|
String get aboutLinkPolicy => 'Privacy Policy';
|
|
|
|
@override
|
|
String get aboutBugSectionTitle => 'Bug Report';
|
|
|
|
@override
|
|
String get aboutBugSaveLogInstruction => 'Save app logs to a file';
|
|
|
|
@override
|
|
String get aboutBugCopyInfoInstruction => 'Copy system information';
|
|
|
|
@override
|
|
String get aboutBugCopyInfoButton => 'Jê bigire';
|
|
|
|
@override
|
|
String get aboutBugReportInstruction => 'Report on GitHub with the logs and system information';
|
|
|
|
@override
|
|
String get aboutBugReportButton => 'Ragihîne';
|
|
|
|
@override
|
|
String get aboutDataUsageSectionTitle => 'Data Usage';
|
|
|
|
@override
|
|
String get aboutDataUsageData => 'Dane';
|
|
|
|
@override
|
|
String get aboutDataUsageCache => 'Bîrdanka demkî';
|
|
|
|
@override
|
|
String get aboutDataUsageDatabase => 'Database';
|
|
|
|
@override
|
|
String get aboutDataUsageMisc => 'Misc';
|
|
|
|
@override
|
|
String get aboutDataUsageInternal => 'Hindrîn';
|
|
|
|
@override
|
|
String get aboutDataUsageExternal => 'Derveyî';
|
|
|
|
@override
|
|
String get aboutDataUsageClearCache => 'Clear Cache';
|
|
|
|
@override
|
|
String get aboutCreditsSectionTitle => 'Credits';
|
|
|
|
@override
|
|
String get aboutCreditsWorldAtlas1 => 'This app uses a TopoJSON file from';
|
|
|
|
@override
|
|
String get aboutCreditsWorldAtlas2 => 'under ISC License.';
|
|
|
|
@override
|
|
String get aboutTranslatorsSectionTitle => 'Wergêr';
|
|
|
|
@override
|
|
String get aboutLicensesSectionTitle => 'Open-Source Licenses';
|
|
|
|
@override
|
|
String get aboutLicensesBanner => 'This app uses the following open-source packages and libraries.';
|
|
|
|
@override
|
|
String get aboutLicensesAndroidLibrariesSectionTitle => 'Android Libraries';
|
|
|
|
@override
|
|
String get aboutLicensesFlutterPluginsSectionTitle => 'Flutter Plugins';
|
|
|
|
@override
|
|
String get aboutLicensesFlutterPackagesSectionTitle => 'Flutter Packages';
|
|
|
|
@override
|
|
String get aboutLicensesDartPackagesSectionTitle => 'Dart Packages';
|
|
|
|
@override
|
|
String get aboutLicensesShowAllButtonLabel => 'Show All Licenses';
|
|
|
|
@override
|
|
String get policyPageTitle => 'Privacy Policy';
|
|
|
|
@override
|
|
String get collectionPageTitle => 'Collection';
|
|
|
|
@override
|
|
String get collectionPickPageTitle => 'Pick';
|
|
|
|
@override
|
|
String get collectionSelectPageTitle => 'Select items';
|
|
|
|
@override
|
|
String get collectionActionShowTitleSearch => 'Show title filter';
|
|
|
|
@override
|
|
String get collectionActionHideTitleSearch => 'Hide title filter';
|
|
|
|
@override
|
|
String get collectionActionAddDynamicAlbum => 'Add dynamic album';
|
|
|
|
@override
|
|
String get collectionActionAddShortcut => 'Add shortcut';
|
|
|
|
@override
|
|
String get collectionActionSetHome => 'Set as home';
|
|
|
|
@override
|
|
String get collectionActionEmptyBin => 'Empty bin';
|
|
|
|
@override
|
|
String get collectionActionCopy => 'Copy to album';
|
|
|
|
@override
|
|
String get collectionActionMove => 'Move to album';
|
|
|
|
@override
|
|
String get collectionActionRescan => 'Rescan';
|
|
|
|
@override
|
|
String get collectionActionEdit => 'Biguherîne';
|
|
|
|
@override
|
|
String get collectionSearchTitlesHintText => 'Search titles';
|
|
|
|
@override
|
|
String get collectionGroupAlbum => 'By album';
|
|
|
|
@override
|
|
String get collectionGroupMonth => 'By month';
|
|
|
|
@override
|
|
String get collectionGroupDay => 'By day';
|
|
|
|
@override
|
|
String get sectionNone => 'No sections';
|
|
|
|
@override
|
|
String get sectionUnknown => 'Nenas';
|
|
|
|
@override
|
|
String get dateToday => 'Îro';
|
|
|
|
@override
|
|
String get dateYesterday => 'Duh';
|
|
|
|
@override
|
|
String get dateThisMonth => 'This month';
|
|
|
|
@override
|
|
String collectionDeleteFailureFeedback(int count) {
|
|
final intl.NumberFormat countNumberFormat = intl.NumberFormat.decimalPattern(localeName);
|
|
final String countString = countNumberFormat.format(count);
|
|
|
|
String _temp0 = intl.Intl.pluralLogic(
|
|
count,
|
|
locale: localeName,
|
|
other: 'Failed to delete $countString items',
|
|
one: 'Failed to delete 1 item',
|
|
);
|
|
return '$_temp0';
|
|
}
|
|
|
|
@override
|
|
String collectionCopyFailureFeedback(int count) {
|
|
final intl.NumberFormat countNumberFormat = intl.NumberFormat.decimalPattern(localeName);
|
|
final String countString = countNumberFormat.format(count);
|
|
|
|
String _temp0 = intl.Intl.pluralLogic(
|
|
count,
|
|
locale: localeName,
|
|
other: 'Failed to copy $countString items',
|
|
one: 'Failed to copy 1 item',
|
|
);
|
|
return '$_temp0';
|
|
}
|
|
|
|
@override
|
|
String collectionMoveFailureFeedback(int count) {
|
|
final intl.NumberFormat countNumberFormat = intl.NumberFormat.decimalPattern(localeName);
|
|
final String countString = countNumberFormat.format(count);
|
|
|
|
String _temp0 = intl.Intl.pluralLogic(
|
|
count,
|
|
locale: localeName,
|
|
other: 'Failed to move $countString items',
|
|
one: 'Failed to move 1 item',
|
|
);
|
|
return '$_temp0';
|
|
}
|
|
|
|
@override
|
|
String collectionRenameFailureFeedback(int count) {
|
|
final intl.NumberFormat countNumberFormat = intl.NumberFormat.decimalPattern(localeName);
|
|
final String countString = countNumberFormat.format(count);
|
|
|
|
String _temp0 = intl.Intl.pluralLogic(
|
|
count,
|
|
locale: localeName,
|
|
other: 'Failed to rename $countString items',
|
|
one: 'Failed to rename 1 item',
|
|
);
|
|
return '$_temp0';
|
|
}
|
|
|
|
@override
|
|
String collectionEditFailureFeedback(int count) {
|
|
final intl.NumberFormat countNumberFormat = intl.NumberFormat.decimalPattern(localeName);
|
|
final String countString = countNumberFormat.format(count);
|
|
|
|
String _temp0 = intl.Intl.pluralLogic(
|
|
count,
|
|
locale: localeName,
|
|
other: 'Failed to edit $countString items',
|
|
one: 'Failed to edit 1 item',
|
|
);
|
|
return '$_temp0';
|
|
}
|
|
|
|
@override
|
|
String collectionExportFailureFeedback(int count) {
|
|
final intl.NumberFormat countNumberFormat = intl.NumberFormat.decimalPattern(localeName);
|
|
final String countString = countNumberFormat.format(count);
|
|
|
|
String _temp0 = intl.Intl.pluralLogic(
|
|
count,
|
|
locale: localeName,
|
|
other: 'Failed to export $countString pages',
|
|
one: 'Failed to export 1 page',
|
|
);
|
|
return '$_temp0';
|
|
}
|
|
|
|
@override
|
|
String collectionCopySuccessFeedback(int count) {
|
|
final intl.NumberFormat countNumberFormat = intl.NumberFormat.decimalPattern(localeName);
|
|
final String countString = countNumberFormat.format(count);
|
|
|
|
String _temp0 = intl.Intl.pluralLogic(
|
|
count,
|
|
locale: localeName,
|
|
other: 'Copied $countString items',
|
|
one: 'Copied 1 item',
|
|
);
|
|
return '$_temp0';
|
|
}
|
|
|
|
@override
|
|
String collectionMoveSuccessFeedback(int count) {
|
|
final intl.NumberFormat countNumberFormat = intl.NumberFormat.decimalPattern(localeName);
|
|
final String countString = countNumberFormat.format(count);
|
|
|
|
String _temp0 = intl.Intl.pluralLogic(
|
|
count,
|
|
locale: localeName,
|
|
other: 'Moved $countString items',
|
|
one: 'Moved 1 item',
|
|
);
|
|
return '$_temp0';
|
|
}
|
|
|
|
@override
|
|
String collectionRenameSuccessFeedback(int count) {
|
|
final intl.NumberFormat countNumberFormat = intl.NumberFormat.decimalPattern(localeName);
|
|
final String countString = countNumberFormat.format(count);
|
|
|
|
String _temp0 = intl.Intl.pluralLogic(
|
|
count,
|
|
locale: localeName,
|
|
other: 'Renamed $countString items',
|
|
one: 'Renamed 1 item',
|
|
);
|
|
return '$_temp0';
|
|
}
|
|
|
|
@override
|
|
String collectionEditSuccessFeedback(int count) {
|
|
final intl.NumberFormat countNumberFormat = intl.NumberFormat.decimalPattern(localeName);
|
|
final String countString = countNumberFormat.format(count);
|
|
|
|
String _temp0 = intl.Intl.pluralLogic(
|
|
count,
|
|
locale: localeName,
|
|
other: 'Edited $countString items',
|
|
one: 'Edited 1 item',
|
|
);
|
|
return '$_temp0';
|
|
}
|
|
|
|
@override
|
|
String get collectionEmptyFavourites => 'No favorites';
|
|
|
|
@override
|
|
String get collectionEmptyVideos => 'No videos';
|
|
|
|
@override
|
|
String get collectionEmptyImages => 'No images';
|
|
|
|
@override
|
|
String get collectionEmptyGrantAccessButtonLabel => 'Grant access';
|
|
|
|
@override
|
|
String get collectionSelectSectionTooltip => 'Select section';
|
|
|
|
@override
|
|
String get collectionDeselectSectionTooltip => 'Deselect section';
|
|
|
|
@override
|
|
String get drawerAboutButton => 'Debar';
|
|
|
|
@override
|
|
String get drawerSettingsButton => 'Sazkarî';
|
|
|
|
@override
|
|
String get drawerCollectionAll => 'All collection';
|
|
|
|
@override
|
|
String get drawerCollectionFavourites => 'Favorites';
|
|
|
|
@override
|
|
String get drawerCollectionImages => 'Wêne';
|
|
|
|
@override
|
|
String get drawerCollectionVideos => 'Vîdyo';
|
|
|
|
@override
|
|
String get drawerCollectionAnimated => 'Animated';
|
|
|
|
@override
|
|
String get drawerCollectionMotionPhotos => 'Motion photos';
|
|
|
|
@override
|
|
String get drawerCollectionPanoramas => 'Panoramas';
|
|
|
|
@override
|
|
String get drawerCollectionRaws => 'Raw photos';
|
|
|
|
@override
|
|
String get drawerCollectionSphericalVideos => '360° Videos';
|
|
|
|
@override
|
|
String get drawerAlbumPage => 'Elbum';
|
|
|
|
@override
|
|
String get drawerCountryPage => 'Welat';
|
|
|
|
@override
|
|
String get drawerPlacePage => 'Cih';
|
|
|
|
@override
|
|
String get drawerTagPage => 'Nîşank';
|
|
|
|
@override
|
|
String get sortByDate => 'By date';
|
|
|
|
@override
|
|
String get sortByName => 'By name';
|
|
|
|
@override
|
|
String get sortByItemCount => 'By item count';
|
|
|
|
@override
|
|
String get sortBySize => 'By size';
|
|
|
|
@override
|
|
String get sortByAlbumFileName => 'By album & item title';
|
|
|
|
@override
|
|
String get sortByRating => 'By rating';
|
|
|
|
@override
|
|
String get sortByDuration => 'By duration';
|
|
|
|
@override
|
|
String get sortByPath => 'By path';
|
|
|
|
@override
|
|
String get sortOrderNewestFirst => 'Newest first';
|
|
|
|
@override
|
|
String get sortOrderOldestFirst => 'Oldest first';
|
|
|
|
@override
|
|
String get sortOrderAtoZ => 'A to Z';
|
|
|
|
@override
|
|
String get sortOrderZtoA => 'Z to A';
|
|
|
|
@override
|
|
String get sortOrderHighestFirst => 'Highest first';
|
|
|
|
@override
|
|
String get sortOrderLowestFirst => 'Lowest first';
|
|
|
|
@override
|
|
String get sortOrderLargestFirst => 'Largest first';
|
|
|
|
@override
|
|
String get sortOrderSmallestFirst => 'Smallest first';
|
|
|
|
@override
|
|
String get sortOrderShortestFirst => 'Shortest first';
|
|
|
|
@override
|
|
String get sortOrderLongestFirst => 'Longest first';
|
|
|
|
@override
|
|
String get albumGroupTier => 'By tier';
|
|
|
|
@override
|
|
String get albumGroupType => 'By type';
|
|
|
|
@override
|
|
String get albumGroupVolume => 'By storage volume';
|
|
|
|
@override
|
|
String get albumMimeTypeMixed => 'Tevlihev';
|
|
|
|
@override
|
|
String get albumPickPageTitleCopy => 'Copy to Album';
|
|
|
|
@override
|
|
String get albumPickPageTitleExport => 'Export to Album';
|
|
|
|
@override
|
|
String get albumPickPageTitleMove => 'Move to Album';
|
|
|
|
@override
|
|
String get albumPickPageTitlePick => 'Pick Album';
|
|
|
|
@override
|
|
String get albumCamera => 'Kamera';
|
|
|
|
@override
|
|
String get albumDownload => 'Daxe';
|
|
|
|
@override
|
|
String get albumScreenshots => 'Wêneyên dîmenderê';
|
|
|
|
@override
|
|
String get albumScreenRecordings => 'Screen recordings';
|
|
|
|
@override
|
|
String get albumVideoCaptures => 'Video Captures';
|
|
|
|
@override
|
|
String get albumPageTitle => 'Elbum';
|
|
|
|
@override
|
|
String get albumEmpty => 'No albums';
|
|
|
|
@override
|
|
String get createAlbumButtonLabel => 'BIAFIRÎNE';
|
|
|
|
@override
|
|
String get newFilterBanner => 'nû';
|
|
|
|
@override
|
|
String get countryPageTitle => 'Welat';
|
|
|
|
@override
|
|
String get countryEmpty => 'No countries';
|
|
|
|
@override
|
|
String get statePageTitle => 'Amar';
|
|
|
|
@override
|
|
String get stateEmpty => 'No states';
|
|
|
|
@override
|
|
String get placePageTitle => 'Cih';
|
|
|
|
@override
|
|
String get placeEmpty => 'No places';
|
|
|
|
@override
|
|
String get tagPageTitle => 'Nîşank';
|
|
|
|
@override
|
|
String get tagEmpty => 'No tags';
|
|
|
|
@override
|
|
String get tagPickPageTitle => 'Pick Tag';
|
|
|
|
@override
|
|
String get binPageTitle => 'Recycle Bin';
|
|
|
|
@override
|
|
String get explorerPageTitle => 'Gervan';
|
|
|
|
@override
|
|
String get explorerActionSelectStorageVolume => 'Select storage';
|
|
|
|
@override
|
|
String get selectStorageVolumeDialogTitle => 'Select Storage';
|
|
|
|
@override
|
|
String get searchCollectionFieldHint => 'Search collection';
|
|
|
|
@override
|
|
String get searchRecentSectionTitle => 'Dawî';
|
|
|
|
@override
|
|
String get searchDateSectionTitle => 'Dane';
|
|
|
|
@override
|
|
String get searchFormatSectionTitle => 'Awa';
|
|
|
|
@override
|
|
String get searchAlbumsSectionTitle => 'Elbum';
|
|
|
|
@override
|
|
String get searchCountriesSectionTitle => 'Welat';
|
|
|
|
@override
|
|
String get searchStatesSectionTitle => 'Amar';
|
|
|
|
@override
|
|
String get searchPlacesSectionTitle => 'Cih';
|
|
|
|
@override
|
|
String get searchTagsSectionTitle => 'Nîşank';
|
|
|
|
@override
|
|
String get searchRatingSectionTitle => 'Nirxandin';
|
|
|
|
@override
|
|
String get searchMetadataSectionTitle => 'Metadata';
|
|
|
|
@override
|
|
String get settingsPageTitle => 'Sazkarî';
|
|
|
|
@override
|
|
String get settingsSystemDefault => 'System default';
|
|
|
|
@override
|
|
String get settingsDefault => 'Berdest';
|
|
|
|
@override
|
|
String get settingsDisabled => 'Neçalak kirî';
|
|
|
|
@override
|
|
String get settingsEnabled => 'Enabled';
|
|
|
|
@override
|
|
String get settingsForced => 'Forced';
|
|
|
|
@override
|
|
String get settingsAskEverytime => 'Ask everytime';
|
|
|
|
@override
|
|
String get settingsModificationWarningDialogMessage => 'Other settings will be modified.';
|
|
|
|
@override
|
|
String get settingsSearchFieldLabel => 'Search settings';
|
|
|
|
@override
|
|
String get settingsSearchEmpty => 'No matching setting';
|
|
|
|
@override
|
|
String get settingsActionExport => 'Derxe';
|
|
|
|
@override
|
|
String get settingsActionExportDialogTitle => 'Derxe';
|
|
|
|
@override
|
|
String get settingsActionImport => 'Têxe';
|
|
|
|
@override
|
|
String get settingsActionImportDialogTitle => 'Têxe';
|
|
|
|
@override
|
|
String get appExportCovers => 'Covers';
|
|
|
|
@override
|
|
String get appExportDynamicAlbums => 'Dynamic albums';
|
|
|
|
@override
|
|
String get appExportFavourites => 'Favorites';
|
|
|
|
@override
|
|
String get appExportSettings => 'Sazkarî';
|
|
|
|
@override
|
|
String get settingsNavigationSectionTitle => 'Navigasyon';
|
|
|
|
@override
|
|
String get settingsHomeTile => 'Ne yek jî';
|
|
|
|
@override
|
|
String get settingsHomeDialogTitle => 'Home';
|
|
|
|
@override
|
|
String get setHomeCustom => 'Kesane kirî';
|
|
|
|
@override
|
|
String get settingsKeepScreenOnTile => 'Keep screen on';
|
|
|
|
@override
|
|
String get settingsKeepScreenOnDialogTitle => 'Keep Screen On';
|
|
|
|
@override
|
|
String get settingsDoubleBackExit => 'Tap “back” twice to exit';
|
|
|
|
@override
|
|
String get settingsConfirmationTile => 'Confirmation dialogs';
|
|
|
|
@override
|
|
String get settingsConfirmationDialogTitle => 'Confirmation Dialogs';
|
|
|
|
@override
|
|
String get settingsConfirmationBeforeDeleteItems => 'Ask before deleting items forever';
|
|
|
|
@override
|
|
String get settingsConfirmationBeforeMoveToBinItems => 'Ask before moving items to the recycle bin';
|
|
|
|
@override
|
|
String get settingsConfirmationBeforeMoveUndatedItems => 'Ask before moving undated items';
|
|
|
|
@override
|
|
String get settingsConfirmationAfterMoveToBinItems => 'Show message after moving items to the recycle bin';
|
|
|
|
@override
|
|
String get settingsConfirmationVaultDataLoss => 'Show vault data loss warning';
|
|
|
|
@override
|
|
String get settingsNavigationDrawerTile => 'Navigation menu';
|
|
|
|
@override
|
|
String get settingsNavigationDrawerEditorPageTitle => 'Navigation Menu';
|
|
|
|
@override
|
|
String get settingsNavigationDrawerBanner => 'Touch and hold to move and reorder menu items.';
|
|
|
|
@override
|
|
String get settingsNavigationDrawerTabTypes => 'Cûre';
|
|
|
|
@override
|
|
String get settingsNavigationDrawerTabAlbums => 'Elbum';
|
|
|
|
@override
|
|
String get settingsNavigationDrawerTabPages => 'Rûpel';
|
|
|
|
@override
|
|
String get settingsNavigationDrawerAddAlbum => 'Add album';
|
|
|
|
@override
|
|
String get settingsNavigationBottomActionsTile => 'Bottom navigation';
|
|
|
|
@override
|
|
String get settingsNavigationBottomActionEditorPageTitle => 'Bottom Navigation';
|
|
|
|
@override
|
|
String get settingsNavigationBottomActionEditorBanner => 'Touch and hold to move buttons and select which actions are displayed in the bottom navigation bar.';
|
|
|
|
@override
|
|
String get settingsThumbnailSectionTitle => 'Wêneyên biçûk';
|
|
|
|
@override
|
|
String get settingsThumbnailOverlayTile => 'Overlay';
|
|
|
|
@override
|
|
String get settingsThumbnailOverlayPageTitle => 'Overlay';
|
|
|
|
@override
|
|
String get settingsThumbnailShowHdrIcon => 'Show HDR icon';
|
|
|
|
@override
|
|
String get settingsThumbnailShowFavouriteIcon => 'Show favorite icon';
|
|
|
|
@override
|
|
String get settingsThumbnailShowTagIcon => 'Show tag icon';
|
|
|
|
@override
|
|
String get settingsThumbnailShowLocationIcon => 'Show location icon';
|
|
|
|
@override
|
|
String get settingsThumbnailShowMotionPhotoIcon => 'Show motion photo icon';
|
|
|
|
@override
|
|
String get settingsThumbnailShowRating => 'Show rating';
|
|
|
|
@override
|
|
String get settingsThumbnailShowRawIcon => 'Show raw icon';
|
|
|
|
@override
|
|
String get settingsThumbnailShowVideoDuration => 'Show video duration';
|
|
|
|
@override
|
|
String get settingsCollectionQuickActionsTile => 'Quick actions';
|
|
|
|
@override
|
|
String get settingsCollectionQuickActionEditorPageTitle => 'Quick Actions';
|
|
|
|
@override
|
|
String get settingsCollectionQuickActionTabBrowsing => 'Lêgerin';
|
|
|
|
@override
|
|
String get settingsCollectionQuickActionTabSelecting => 'Hilbijartin';
|
|
|
|
@override
|
|
String get settingsCollectionBrowsingQuickActionEditorBanner => 'Touch and hold to move buttons and select which actions are displayed when browsing items.';
|
|
|
|
@override
|
|
String get settingsCollectionSelectionQuickActionEditorBanner => 'Touch and hold to move buttons and select which actions are displayed when selecting items.';
|
|
|
|
@override
|
|
String get settingsCollectionBurstPatternsTile => 'Burst patterns';
|
|
|
|
@override
|
|
String get settingsCollectionBurstPatternsNone => 'Ne yek';
|
|
|
|
@override
|
|
String get settingsViewerSectionTitle => 'Viewer';
|
|
|
|
@override
|
|
String get settingsViewerGestureSideTapNext => 'Tap on screen edges to show previous/next item';
|
|
|
|
@override
|
|
String get settingsViewerUseCutout => 'Use cutout area';
|
|
|
|
@override
|
|
String get settingsViewerMaximumBrightness => 'Maximum brightness';
|
|
|
|
@override
|
|
String get settingsMotionPhotoAutoPlay => 'Auto play motion photos';
|
|
|
|
@override
|
|
String get settingsImageBackground => 'Image background';
|
|
|
|
@override
|
|
String get settingsViewerQuickActionsTile => 'Quick actions';
|
|
|
|
@override
|
|
String get settingsViewerQuickActionEditorPageTitle => 'Quick Actions';
|
|
|
|
@override
|
|
String get settingsViewerQuickActionEditorBanner => 'Touch and hold to move buttons and select which actions are displayed in the viewer.';
|
|
|
|
@override
|
|
String get settingsViewerQuickActionEditorDisplayedButtonsSectionTitle => 'Displayed Buttons';
|
|
|
|
@override
|
|
String get settingsViewerQuickActionEditorAvailableButtonsSectionTitle => 'Available Buttons';
|
|
|
|
@override
|
|
String get settingsViewerQuickActionEmpty => 'No buttons';
|
|
|
|
@override
|
|
String get settingsViewerOverlayTile => 'Overlay';
|
|
|
|
@override
|
|
String get settingsViewerOverlayPageTitle => 'Overlay';
|
|
|
|
@override
|
|
String get settingsViewerShowOverlayOnOpening => 'Show on opening';
|
|
|
|
@override
|
|
String get settingsViewerShowHistogram => 'Show histogram';
|
|
|
|
@override
|
|
String get settingsViewerShowMinimap => 'Show minimap';
|
|
|
|
@override
|
|
String get settingsViewerShowZoomLevel => 'Show zoom level';
|
|
|
|
@override
|
|
String get settingsViewerShowInformation => 'Show information';
|
|
|
|
@override
|
|
String get settingsViewerShowInformationSubtitle => 'Show title, date, location, etc.';
|
|
|
|
@override
|
|
String get settingsViewerShowRatingTags => 'Show rating & tags';
|
|
|
|
@override
|
|
String get settingsViewerShowShootingDetails => 'Show shooting details';
|
|
|
|
@override
|
|
String get settingsViewerShowDescription => 'Show description';
|
|
|
|
@override
|
|
String get settingsViewerShowOverlayThumbnails => 'Show thumbnails';
|
|
|
|
@override
|
|
String get settingsViewerEnableOverlayBlurEffect => 'Blur effect';
|
|
|
|
@override
|
|
String get settingsViewerSlideshowTile => 'Slideshow';
|
|
|
|
@override
|
|
String get settingsViewerSlideshowPageTitle => 'Slideshow';
|
|
|
|
@override
|
|
String get settingsSlideshowRepeat => 'Repeat';
|
|
|
|
@override
|
|
String get settingsSlideshowShuffle => 'Shuffle';
|
|
|
|
@override
|
|
String get settingsSlideshowFillScreen => 'Fill screen';
|
|
|
|
@override
|
|
String get settingsSlideshowAnimatedZoomEffect => 'Animated zoom effect';
|
|
|
|
@override
|
|
String get settingsSlideshowTransitionTile => 'Transition';
|
|
|
|
@override
|
|
String get settingsSlideshowIntervalTile => 'Interval';
|
|
|
|
@override
|
|
String get settingsSlideshowVideoPlaybackTile => 'Video playback';
|
|
|
|
@override
|
|
String get settingsSlideshowVideoPlaybackDialogTitle => 'Video Playback';
|
|
|
|
@override
|
|
String get settingsVideoPageTitle => 'Video Settings';
|
|
|
|
@override
|
|
String get settingsVideoSectionTitle => 'Video';
|
|
|
|
@override
|
|
String get settingsVideoShowVideos => 'Show videos';
|
|
|
|
@override
|
|
String get settingsVideoPlaybackTile => 'Playback';
|
|
|
|
@override
|
|
String get settingsVideoPlaybackPageTitle => 'Playback';
|
|
|
|
@override
|
|
String get settingsVideoEnableHardwareAcceleration => 'Hardware acceleration';
|
|
|
|
@override
|
|
String get settingsVideoAutoPlay => 'Auto play';
|
|
|
|
@override
|
|
String get settingsVideoLoopModeTile => 'Loop mode';
|
|
|
|
@override
|
|
String get settingsVideoLoopModeDialogTitle => 'Loop Mode';
|
|
|
|
@override
|
|
String get settingsVideoResumptionModeTile => 'Resume playback';
|
|
|
|
@override
|
|
String get settingsVideoResumptionModeDialogTitle => 'Resume Playback';
|
|
|
|
@override
|
|
String get settingsVideoBackgroundMode => 'Background mode';
|
|
|
|
@override
|
|
String get settingsVideoBackgroundModeDialogTitle => 'Background Mode';
|
|
|
|
@override
|
|
String get settingsVideoControlsTile => 'Controls';
|
|
|
|
@override
|
|
String get settingsVideoControlsPageTitle => 'Controls';
|
|
|
|
@override
|
|
String get settingsVideoButtonsTile => 'Buttons';
|
|
|
|
@override
|
|
String get settingsVideoGestureDoubleTapTogglePlay => 'Double tap to play/pause';
|
|
|
|
@override
|
|
String get settingsVideoGestureSideDoubleTapSeek => 'Double tap on screen edges to seek backward/forward';
|
|
|
|
@override
|
|
String get settingsVideoGestureVerticalDragBrightnessVolume => 'Swipe up or down to adjust brightness/volume';
|
|
|
|
@override
|
|
String get settingsSubtitleThemeTile => 'Subtitles';
|
|
|
|
@override
|
|
String get settingsSubtitleThemePageTitle => 'Subtitles';
|
|
|
|
@override
|
|
String get settingsSubtitleThemeSample => 'This is a sample.';
|
|
|
|
@override
|
|
String get settingsSubtitleThemeTextAlignmentTile => 'Text alignment';
|
|
|
|
@override
|
|
String get settingsSubtitleThemeTextAlignmentDialogTitle => 'Text Alignment';
|
|
|
|
@override
|
|
String get settingsSubtitleThemeTextPositionTile => 'Text position';
|
|
|
|
@override
|
|
String get settingsSubtitleThemeTextPositionDialogTitle => 'Text Position';
|
|
|
|
@override
|
|
String get settingsSubtitleThemeTextSize => 'Text size';
|
|
|
|
@override
|
|
String get settingsSubtitleThemeShowOutline => 'Show outline and shadow';
|
|
|
|
@override
|
|
String get settingsSubtitleThemeTextColor => 'Text color';
|
|
|
|
@override
|
|
String get settingsSubtitleThemeTextOpacity => 'Text opacity';
|
|
|
|
@override
|
|
String get settingsSubtitleThemeBackgroundColor => 'Background color';
|
|
|
|
@override
|
|
String get settingsSubtitleThemeBackgroundOpacity => 'Background opacity';
|
|
|
|
@override
|
|
String get settingsSubtitleThemeTextAlignmentLeft => 'Left';
|
|
|
|
@override
|
|
String get settingsSubtitleThemeTextAlignmentCenter => 'Center';
|
|
|
|
@override
|
|
String get settingsSubtitleThemeTextAlignmentRight => 'Right';
|
|
|
|
@override
|
|
String get settingsPrivacySectionTitle => 'Taybetî';
|
|
|
|
@override
|
|
String get settingsAllowInstalledAppAccess => 'Allow access to app inventory';
|
|
|
|
@override
|
|
String get settingsAllowInstalledAppAccessSubtitle => 'Used to improve album display';
|
|
|
|
@override
|
|
String get settingsAllowErrorReporting => 'Allow anonymous error reporting';
|
|
|
|
@override
|
|
String get settingsSaveSearchHistory => 'Save search history';
|
|
|
|
@override
|
|
String get settingsEnableBin => 'Use recycle bin';
|
|
|
|
@override
|
|
String get settingsEnableBinSubtitle => 'Keep deleted items for 30 days';
|
|
|
|
@override
|
|
String get settingsDisablingBinWarningDialogMessage => 'Items in the recycle bin will be deleted forever.';
|
|
|
|
@override
|
|
String get settingsAllowMediaManagement => 'Allow media management';
|
|
|
|
@override
|
|
String get settingsHiddenItemsTile => 'Hidden items';
|
|
|
|
@override
|
|
String get settingsHiddenItemsPageTitle => 'Hidden Items';
|
|
|
|
@override
|
|
String get settingsHiddenFiltersBanner => 'Photos and videos matching hidden filters will not appear in your collection.';
|
|
|
|
@override
|
|
String get settingsHiddenFiltersEmpty => 'No hidden filters';
|
|
|
|
@override
|
|
String get settingsStorageAccessTile => 'Storage access';
|
|
|
|
@override
|
|
String get settingsStorageAccessPageTitle => 'Storage Access';
|
|
|
|
@override
|
|
String get settingsStorageAccessBanner => 'Some directories require an explicit access grant to modify files in them. You can review here directories to which you previously gave access.';
|
|
|
|
@override
|
|
String get settingsStorageAccessEmpty => 'No access grants';
|
|
|
|
@override
|
|
String get settingsStorageAccessRevokeTooltip => 'Revoke';
|
|
|
|
@override
|
|
String get settingsAccessibilitySectionTitle => 'Gihîştbarî';
|
|
|
|
@override
|
|
String get settingsRemoveAnimationsTile => 'Remove animations';
|
|
|
|
@override
|
|
String get settingsRemoveAnimationsDialogTitle => 'Remove Animations';
|
|
|
|
@override
|
|
String get settingsTimeToTakeActionTile => 'Time to take action';
|
|
|
|
@override
|
|
String get settingsAccessibilityShowPinchGestureAlternatives => 'Show multi-touch gesture alternatives';
|
|
|
|
@override
|
|
String get settingsDisplaySectionTitle => 'Nîşandan';
|
|
|
|
@override
|
|
String get settingsThemeBrightnessTile => 'Rûkar';
|
|
|
|
@override
|
|
String get settingsThemeBrightnessDialogTitle => 'Rûkar';
|
|
|
|
@override
|
|
String get settingsThemeColorHighlights => 'Color highlights';
|
|
|
|
@override
|
|
String get settingsThemeEnableDynamicColor => 'Dynamic color';
|
|
|
|
@override
|
|
String get settingsDisplayRefreshRateModeTile => 'Display refresh rate';
|
|
|
|
@override
|
|
String get settingsDisplayRefreshRateModeDialogTitle => 'Refresh Rate';
|
|
|
|
@override
|
|
String get settingsDisplayUseTvInterface => 'Android TV interface';
|
|
|
|
@override
|
|
String get settingsLanguageSectionTitle => 'Ziman û awa';
|
|
|
|
@override
|
|
String get settingsLanguageTile => 'Ziman';
|
|
|
|
@override
|
|
String get settingsLanguagePageTitle => 'Ziman';
|
|
|
|
@override
|
|
String get settingsCoordinateFormatTile => 'Coordinate format';
|
|
|
|
@override
|
|
String get settingsCoordinateFormatDialogTitle => 'Coordinate Format';
|
|
|
|
@override
|
|
String get settingsUnitSystemTile => 'Yekînî';
|
|
|
|
@override
|
|
String get settingsUnitSystemDialogTitle => 'Yekînî';
|
|
|
|
@override
|
|
String get settingsForceWesternArabicNumeralsTile => 'Force Arabic numerals';
|
|
|
|
@override
|
|
String get settingsScreenSaverPageTitle => 'Screen Saver';
|
|
|
|
@override
|
|
String get settingsWidgetPageTitle => 'Photo Frame';
|
|
|
|
@override
|
|
String get settingsWidgetShowOutline => 'Outline';
|
|
|
|
@override
|
|
String get settingsWidgetOpenPage => 'When tapping on the widget';
|
|
|
|
@override
|
|
String get settingsWidgetDisplayedItem => 'Displayed item';
|
|
|
|
@override
|
|
String get settingsCollectionTile => 'Collection';
|
|
|
|
@override
|
|
String get statsPageTitle => 'Amar';
|
|
|
|
@override
|
|
String statsWithGps(int count) {
|
|
final intl.NumberFormat countNumberFormat = intl.NumberFormat.decimalPattern(localeName);
|
|
final String countString = countNumberFormat.format(count);
|
|
|
|
String _temp0 = intl.Intl.pluralLogic(
|
|
count,
|
|
locale: localeName,
|
|
other: '$countString items with location',
|
|
one: '1 item with location',
|
|
);
|
|
return '$_temp0';
|
|
}
|
|
|
|
@override
|
|
String get statsTopCountriesSectionTitle => 'Top Countries';
|
|
|
|
@override
|
|
String get statsTopStatesSectionTitle => 'Top States';
|
|
|
|
@override
|
|
String get statsTopPlacesSectionTitle => 'Top Places';
|
|
|
|
@override
|
|
String get statsTopTagsSectionTitle => 'Top Tags';
|
|
|
|
@override
|
|
String get statsTopAlbumsSectionTitle => 'Top Albums';
|
|
|
|
@override
|
|
String get viewerOpenPanoramaButtonLabel => 'OPEN PANORAMA';
|
|
|
|
@override
|
|
String get viewerSetWallpaperButtonLabel => 'SET WALLPAPER';
|
|
|
|
@override
|
|
String get viewerErrorUnknown => 'Wey li min!';
|
|
|
|
@override
|
|
String get viewerErrorDoesNotExist => 'The file no longer exists.';
|
|
|
|
@override
|
|
String get viewerInfoPageTitle => 'Zanyarî';
|
|
|
|
@override
|
|
String get viewerInfoBackToViewerTooltip => 'Back to viewer';
|
|
|
|
@override
|
|
String get viewerInfoUnknown => 'nenas';
|
|
|
|
@override
|
|
String get viewerInfoLabelDescription => 'Danasîn';
|
|
|
|
@override
|
|
String get viewerInfoLabelTitle => 'Sernav';
|
|
|
|
@override
|
|
String get viewerInfoLabelDate => 'Dîrok';
|
|
|
|
@override
|
|
String get viewerInfoLabelResolution => 'Resolution';
|
|
|
|
@override
|
|
String get viewerInfoLabelSize => 'Mezinahî';
|
|
|
|
@override
|
|
String get viewerInfoLabelUri => 'Girêdan';
|
|
|
|
@override
|
|
String get viewerInfoLabelPath => 'Rêgeh';
|
|
|
|
@override
|
|
String get viewerInfoLabelDuration => 'Dirêjahî';
|
|
|
|
@override
|
|
String get viewerInfoLabelOwner => 'Xwedî';
|
|
|
|
@override
|
|
String get viewerInfoLabelCoordinates => 'Koordînat';
|
|
|
|
@override
|
|
String get viewerInfoLabelAddress => 'Navnîşan';
|
|
|
|
@override
|
|
String get mapStyleDialogTitle => 'Map Style';
|
|
|
|
@override
|
|
String get mapStyleDialogAddStyle => 'Add style';
|
|
|
|
@override
|
|
String get mapStyleTooltip => 'Select map style';
|
|
|
|
@override
|
|
String get mapStyleEditorDialogName => 'Nav';
|
|
|
|
@override
|
|
String get mapStyleEditorDialogUrl => 'Girêdan';
|
|
|
|
@override
|
|
String get mapStyleEditorDialogSubdomains => 'Subdomains';
|
|
|
|
@override
|
|
String get mapStyleEditorDialogUserAgent => 'User-Agent';
|
|
|
|
@override
|
|
String get mapZoomInTooltip => 'Zoom in';
|
|
|
|
@override
|
|
String get mapZoomOutTooltip => 'Zoom out';
|
|
|
|
@override
|
|
String get mapPointNorthUpTooltip => 'Point north up';
|
|
|
|
@override
|
|
String get mapAttributionOsmData => 'Map data © [OpenStreetMap](https://www.openstreetmap.org/copyright) contributors';
|
|
|
|
@override
|
|
String get mapAttributionOsmLiberty => 'Tiles by [OpenMapTiles](https://www.openmaptiles.org/), [CC BY](http://creativecommons.org/licenses/by/4.0) • Hosted by [OSM Americana](https://tile.ourmap.us)';
|
|
|
|
@override
|
|
String get mapAttributionOpenTopoMap => '[SRTM](https://www.earthdata.nasa.gov/sensors/srtm) | Tiles by [OpenTopoMap](https://opentopomap.org/), [CC BY-SA](https://creativecommons.org/licenses/by-sa/3.0/)';
|
|
|
|
@override
|
|
String get mapAttributionOsmHot => 'Tiles by [HOT](https://www.hotosm.org/) • Hosted by [OSM France](https://openstreetmap.fr/)';
|
|
|
|
@override
|
|
String get mapAttributionStamen => 'Tiles by [Stamen Design](https://stamen.com), [CC BY 3.0](https://creativecommons.org/licenses/by/3.0)';
|
|
|
|
@override
|
|
String get openMapPageTooltip => 'View on Map page';
|
|
|
|
@override
|
|
String get mapEmptyRegion => 'No images in this region';
|
|
|
|
@override
|
|
String get viewerInfoOpenEmbeddedFailureFeedback => 'Failed to extract embedded data';
|
|
|
|
@override
|
|
String get viewerInfoOpenLinkText => 'Veke';
|
|
|
|
@override
|
|
String get viewerInfoViewXmlLinkText => 'View XML';
|
|
|
|
@override
|
|
String get viewerInfoSearchFieldLabel => 'Search metadata';
|
|
|
|
@override
|
|
String get viewerInfoSearchEmpty => 'No matching keys';
|
|
|
|
@override
|
|
String get viewerInfoSearchSuggestionDate => 'Date & time';
|
|
|
|
@override
|
|
String get viewerInfoSearchSuggestionDescription => 'Danasîn';
|
|
|
|
@override
|
|
String get viewerInfoSearchSuggestionDimensions => 'Dimensions';
|
|
|
|
@override
|
|
String get viewerInfoSearchSuggestionResolution => 'Resolution';
|
|
|
|
@override
|
|
String get viewerInfoSearchSuggestionRights => 'Rights';
|
|
|
|
@override
|
|
String get wallpaperUseScrollEffect => 'Use scroll effect on home screen';
|
|
|
|
@override
|
|
String get tagEditorPageTitle => 'Edit Tags';
|
|
|
|
@override
|
|
String get tagEditorPageNewTagFieldLabel => 'New tag';
|
|
|
|
@override
|
|
String get tagEditorPageAddTagTooltip => 'Add tag';
|
|
|
|
@override
|
|
String get tagEditorSectionRecent => 'Dawîn';
|
|
|
|
@override
|
|
String get tagEditorSectionPlaceholders => 'Placeholders';
|
|
|
|
@override
|
|
String get tagEditorDiscardDialogMessage => 'Do you want to discard changes?';
|
|
|
|
@override
|
|
String get tagPlaceholderCountry => 'Welat';
|
|
|
|
@override
|
|
String get tagPlaceholderState => 'State';
|
|
|
|
@override
|
|
String get tagPlaceholderPlace => 'Place';
|
|
|
|
@override
|
|
String get panoramaEnableSensorControl => 'Enable sensor control';
|
|
|
|
@override
|
|
String get panoramaDisableSensorControl => 'Disable sensor control';
|
|
|
|
@override
|
|
String get sourceViewerPageTitle => 'Çavkanî';
|
|
}
|