mirror of
https://github.com/MacPass/MacPass.git
synced 2025-12-14 03:32:40 +00:00
Removed obsolte keys form localizations. Updated to current keys for english localization
This commit is contained in:
@@ -381,7 +381,7 @@ NSString *const MPDocumentGroupKey = @"MPDocumentGrou
|
||||
backing:NSBackingStoreBuffered
|
||||
defer:NO];
|
||||
MPPasswordInputController *passwordInputController = [[MPPasswordInputController alloc] init];
|
||||
[passwordInputController requestPasswordWithMessage:NSLocalizedString(@"EXTERN_CHANGE_OF_MASTERKEY", @"The master key was changed by an extrenal programm!")
|
||||
[passwordInputController requestPasswordWithMessage:NSLocalizedString(@"EXTERN_CHANGE_OF_MASTERKEY", @"The master key was changed by an extrenal program!")
|
||||
cancelLabel:NSLocalizedString(@"ABORT_MERGE_KEEP_MINE", @"Button label to abort a merge on a file with changed master key!")
|
||||
completionHandler:^BOOL(NSString *password, NSURL *keyURL, BOOL didCancel, NSError *__autoreleasing *error) {
|
||||
[self.windowForSheet endSheet:sheet returnCode:(didCancel ? NSModalResponseCancel : NSModalResponseOK)];
|
||||
|
||||
@@ -217,7 +217,6 @@ NSString *const _MPTableSecurCellView = @"PasswordCell";
|
||||
[NSNotificationCenter.defaultCenter addObserver:self selector:@selector(_didEnterSearch:) name:MPDocumentDidEnterSearchNotification object:document];
|
||||
[NSNotificationCenter.defaultCenter addObserver:self selector:@selector(_didExitSearch:) name:MPDocumentDidExitSearchNotification object:document];
|
||||
[NSNotificationCenter.defaultCenter addObserver:self selector:@selector(_didUpdateSearchResults:) name:MPDocumentDidChangeSearchResults object:document];
|
||||
[NSNotificationCenter.defaultCenter addObserver:self selector:@selector(_didUnlockDatabase:) name:MPDocumentDidUnlockDatabaseNotification object:document];
|
||||
[NSNotificationCenter.defaultCenter addObserver:self selector:@selector(_showEntryHistory:) name:MPDocumentShowEntryHistoryNotification object:document];
|
||||
[NSNotificationCenter.defaultCenter addObserver:self selector:@selector(_hideEntryHistory:) name:MPDocumentHideEntryHistoryNotification object:document];
|
||||
|
||||
@@ -477,17 +476,6 @@ NSString *const _MPTableSecurCellView = @"PasswordCell";
|
||||
[self _updateContextBar];
|
||||
}
|
||||
|
||||
- (void)_didUnlockDatabase:(NSNotification *)notificiation {
|
||||
MPDocument *document = self.windowController.document;
|
||||
/* If the document was locked and unlocked we do not need to recheck */
|
||||
if(document.unlockCount != 1) {
|
||||
/* TODO add another method to display this!
|
||||
[self.footerInfoText setHidden:![document hasMalformedAutotypeItems]];
|
||||
[self.footerInfoText setStringValue:NSLocalizedString(@"DOCUMENT_AUTOTYPE_CORRUPTION_WARNING", "")];
|
||||
*/
|
||||
}
|
||||
}
|
||||
|
||||
- (void)_showEntryHistory:(NSNotification *)notification {
|
||||
self.displayMode = MPDisplayModeHistory;
|
||||
KPKEntry *entry = notification.userInfo[MPDocumentEntryKey];
|
||||
|
||||
@@ -186,9 +186,6 @@
|
||||
/* Empty Trash */
|
||||
"DELETE_TRASHED_GROUP" = "Gelöschte Gruppe entfernen";
|
||||
|
||||
/* No comment provided by engineer. */
|
||||
"DOCUMENT_AUTOTYPE_CORRUPTION_WARNING" = "Bitte Autotypekorrektur durchführen!";
|
||||
|
||||
/* Action name for duplicating entries */
|
||||
"DUPLICATE_ENTRIES_%ld" = "Einträge duplizieren %ld";
|
||||
|
||||
@@ -507,9 +504,6 @@
|
||||
/* Enable search menu item */
|
||||
"SEARCH_YES" = "Durchsuchbar";
|
||||
|
||||
/* (No Comment) */
|
||||
"SELECT_AUTOTYPE_CANDIDATE" = "Eintrag auswählen!";
|
||||
|
||||
/* Menu item title for the expiry preset selection menu in the date picker */
|
||||
"SELECT_DATE_PRESET" = "Datumvorgabe wählen …";
|
||||
|
||||
@@ -607,21 +601,12 @@
|
||||
/* Message text for the alert displayed when clearing the Trash */
|
||||
"WARNING_ON_EMPTY_TRASH_TITLE" = "Papierkorb leeren?";
|
||||
|
||||
/* (No Comment) */
|
||||
"WARNING_ON_LOSSY_SAVE" = "Speichern als KDB-Datei führt zu Datenverlust.";
|
||||
|
||||
/* (No Comment) */
|
||||
"WARNING_ON_LOSSY_SAVE_DESCRIPTION" = "Das KDB-Format kann nicht alle aktuellen Daten speichern";
|
||||
|
||||
/* No comment provided by engineer. */
|
||||
"WARNING_ON_SAVE_NO_PASSWORD_OR_KEY_SET" = "Weder Password noch Schlüsseldatei sind festgelegt!";
|
||||
|
||||
/* No comment provided by engineer. */
|
||||
"WARNING_ON_SAVE_NO_PASSWORD_OR_KEY_SET_SUGGESTION" = "Bitte vergeben Sie ein Password und/oder einen Schlüssel. Sofern Sie abbrechen, werden Ihre Änderungen rückgängig gemacht und die Datei gesperrt.";
|
||||
|
||||
/* (No Comment) */
|
||||
"WINDOWS" = "Windows";
|
||||
|
||||
/* Label for the workflow settings tab */
|
||||
"WORKFLOW_SETTINGS" = "Arbeitsfluss";
|
||||
|
||||
|
||||
@@ -62,8 +62,8 @@
|
||||
/* Noticiation: Autotype failed to find a match for %@ (string placeholder) */
|
||||
"AUTOTYPE_OVERLAY_NO_MATCH_FOR_%@" = "No Match for %@!";
|
||||
|
||||
/* Notification: Autotype found a single match. */
|
||||
"AUTOTYPE_OVERLAY_SINGLE_MATCH" = "Login found!";
|
||||
/* Notification: Autotype found a single match for %@ (string placeholder). */
|
||||
"AUTOTYPE_OVERLAY_SINGLE_MATCH_FOR_%@" = "Found Match for %@!";
|
||||
|
||||
/* Enable autotype menu item */
|
||||
"AUTOTYPE_YES" = "Enable Autotype";
|
||||
@@ -77,9 +77,6 @@
|
||||
/* Menu item in the database outline context menu to change the database name */
|
||||
"CHANGE_DATABASE_NAME" = "Change Database Name";
|
||||
|
||||
/* (No Comment) */
|
||||
"CHANGE_FORMAT" = "Change File Format to Kdbx";
|
||||
|
||||
/* Button to postpone the password change */
|
||||
"CHANGE_LATER" = "Change Later";
|
||||
|
||||
@@ -137,9 +134,6 @@
|
||||
Toolbar item copy username */
|
||||
"COPY_USERNAME" = "Copy Username";
|
||||
|
||||
/* (No Comment) */
|
||||
"CREATED_AT_%@" = "Created: %@";
|
||||
|
||||
/* Curstom attribute reference item */
|
||||
"CUSTOM_ATTRIBUTE" = "Custom Attribute";
|
||||
|
||||
@@ -186,9 +180,6 @@
|
||||
/* Empty Trash */
|
||||
"DELETE_TRASHED_GROUP" = "Delete Trashed Group";
|
||||
|
||||
/* No comment provided by engineer. */
|
||||
"DOCUMENT_AUTOTYPE_CORRUPTION_WARNING" = "Please run Fix Autotype...";
|
||||
|
||||
/* Action name for duplicating entries */
|
||||
"DUPLICATE_ENTRIES_%ld" = "Duplicate Entries %ld";
|
||||
|
||||
@@ -507,9 +498,6 @@
|
||||
/* Enable search menu item */
|
||||
"SEARCH_YES" = "Include in Search";
|
||||
|
||||
/* (No Comment) */
|
||||
"SELECT_AUTOTYPE_CANDIDATE" = "Select Candidate!";
|
||||
|
||||
/* Menu item title for the expiry preset selection menu in the date picker */
|
||||
"SELECT_DATE_PRESET" = "Use preset…";
|
||||
|
||||
@@ -528,16 +516,10 @@
|
||||
/* Checkbox in dialog to set the selection as default file change strategy! */
|
||||
"SET_AS_DEFAULT_FILE_CHANGE_STRATEGY" = "Use this method as default. You can change this at any time in the preferences.";
|
||||
|
||||
/* (No Comment) */
|
||||
"SHORT_FILE_CHANGE_STRATEGY_ASK" = "Ask";
|
||||
|
||||
/* Menu item to show the history of the selected entry
|
||||
Toolbar item to toggle history display */
|
||||
"SHOW_HISTORY" = "Show History";
|
||||
|
||||
/* Menu item to show the reference builder in a text view's context menu */
|
||||
"SHOW_REFERENCE_BUILDER" = "Show Reference Builder";
|
||||
|
||||
/* Displayed name when title field was copied
|
||||
Menu item to toggle display of title column in entry table
|
||||
Title column title
|
||||
@@ -607,21 +589,12 @@
|
||||
/* Message text for the alert displayed when clearing the Trash */
|
||||
"WARNING_ON_EMPTY_TRASH_TITLE" = "Empty Trash?";
|
||||
|
||||
/* (No Comment) */
|
||||
"WARNING_ON_LOSSY_SAVE" = "Saving with Kdb format, will lead to lost data.";
|
||||
|
||||
/* (No Comment) */
|
||||
"WARNING_ON_LOSSY_SAVE_DESCRIPTION" = "The Kdb file format cannot hold all information.";
|
||||
|
||||
/* No comment provided by engineer. */
|
||||
"WARNING_ON_SAVE_NO_PASSWORD_OR_KEY_SET" = "No password or keyfile is set.";
|
||||
|
||||
/* No comment provided by engineer. */
|
||||
"WARNING_ON_SAVE_NO_PASSWORD_OR_KEY_SET_SUGGESTION" = "Please set a password and/or keyfile for this database. Aborting this will undo all changes and lock the document";
|
||||
|
||||
/* (No Comment) */
|
||||
"WINDOWS" = "Windows";
|
||||
|
||||
/* Label for the workflow settings tab */
|
||||
"WORKFLOW_SETTINGS" = "Workflow";
|
||||
|
||||
|
||||
@@ -1,52 +1,52 @@
|
||||
{
|
||||
"%ld_CHARACTERS_TO_PICK_REMAINING" = {
|
||||
"NSStringLocalizedFormatKey" = "%#@characters@";
|
||||
characters = {
|
||||
"NSStringFormatSpecTypeKey" = "NSStringPluralRuleType";
|
||||
"NSStringFormatValueTypeKey" = ld;
|
||||
one = "One character remaining";
|
||||
other = "%ld characters remaining";
|
||||
zero = "All characters picked";
|
||||
};
|
||||
};
|
||||
"DUPLICATE_ENTRIES_%ld" = {
|
||||
"NSStringLocalizedFormatKey" = "%#@entries@";
|
||||
entries = {
|
||||
"NSStringFormatSpecTypeKey" = "NSStringPluralRuleType";
|
||||
"NSStringFormatValueTypeKey" = ld;
|
||||
one = "Duplicate Entry";
|
||||
other = "Duplicate Entries";
|
||||
zero = "Duplicate Entries";
|
||||
};
|
||||
};
|
||||
"EVERY_%ld_DAYS" = {
|
||||
"NSStringLocalizedFormatKey" = "%#@days@";
|
||||
days = {
|
||||
"NSStringFormatSpecTypeKey" = "NSStringPluralRuleType";
|
||||
"NSStringFormatValueTypeKey" = ld;
|
||||
one = "every day";
|
||||
other = "every %ld days";
|
||||
zero = "after each unlock";
|
||||
};
|
||||
};
|
||||
"PICKCHAR_INFO_MESSAGE_PICK_CHARACTERS_%ld" = {
|
||||
"NSStringLocalizedFormatKey" = "%#@characters@";
|
||||
characters = {
|
||||
"NSStringFormatSpecTypeKey" = "NSStringPluralRuleType";
|
||||
"NSStringFormatValueTypeKey" = ld;
|
||||
one = "Please pick a single character to use";
|
||||
other = "Please pick %ld characters to use";
|
||||
zero = "Please pick the characters to use";
|
||||
};
|
||||
};
|
||||
"PICKED_%ld_CHARACTERS" = {
|
||||
"NSStringLocalizedFormatKey" = "%#@characters@";
|
||||
characters = {
|
||||
"NSStringFormatSpecTypeKey" = "NSStringPluralRuleType";
|
||||
"NSStringFormatValueTypeKey" = ld;
|
||||
one = "%ld character picked";
|
||||
other = "%ld characters picked";
|
||||
zero = "No characters picked";
|
||||
};
|
||||
};
|
||||
"%ld_CHARACTERS_TO_PICK_REMAINING" = {
|
||||
NSStringLocalizedFormatKey = "%#@characters@";
|
||||
characters = {
|
||||
NSStringFormatSpecTypeKey = NSStringPluralRuleType;
|
||||
NSStringFormatValueTypeKey = ld;
|
||||
one = "One character remaining";
|
||||
other = "%ld characters remaining";
|
||||
zero = "All characters picked";
|
||||
};
|
||||
};
|
||||
"DUPLICATE_ENTRIES_%ld" = {
|
||||
NSStringLocalizedFormatKey = "%#@entries@";
|
||||
entries = {
|
||||
NSStringFormatSpecTypeKey = NSStringPluralRuleType;
|
||||
NSStringFormatValueTypeKey = ld;
|
||||
one = "Duplicate Entry";
|
||||
other = "Duplicate Entries";
|
||||
zero = "Duplicate Entries";
|
||||
};
|
||||
};
|
||||
"EVERY_%ld_DAYS" = {
|
||||
NSStringLocalizedFormatKey = "%#@days@";
|
||||
days = {
|
||||
NSStringFormatSpecTypeKey = NSStringPluralRuleType;
|
||||
NSStringFormatValueTypeKey = ld;
|
||||
one = "every day";
|
||||
other = "every %ld days";
|
||||
zero = "after each unlock";
|
||||
};
|
||||
};
|
||||
"PICKCHAR_INFO_MESSAGE_PICK_CHARACTERS_%ld" = {
|
||||
NSStringLocalizedFormatKey = "%#@characters@";
|
||||
characters = {
|
||||
NSStringFormatSpecTypeKey = NSStringPluralRuleType;
|
||||
NSStringFormatValueTypeKey = ld;
|
||||
one = "Please pick a single character to use";
|
||||
other = "Please pick %ld characters to use";
|
||||
zero = "Please pick the characters to use";
|
||||
};
|
||||
};
|
||||
"PICKED_%ld_CHARACTERS" = {
|
||||
NSStringLocalizedFormatKey = "%#@characters@";
|
||||
characters = {
|
||||
NSStringFormatSpecTypeKey = NSStringPluralRuleType;
|
||||
NSStringFormatValueTypeKey = ld;
|
||||
one = "%ld character picked";
|
||||
other = "%ld characters picked";
|
||||
zero = "No characters picked";
|
||||
};
|
||||
};
|
||||
}
|
||||
@@ -1,4 +1,3 @@
|
||||
|
||||
/* Class = "NSButtonCell"; title = "Submit"; ObjectID = "8vP-Ka-vsA"; */
|
||||
"8vP-Ka-vsA.title" = "Submit";
|
||||
|
||||
@@ -16,3 +15,4 @@
|
||||
|
||||
/* Class = "NSTextFieldCell"; title = "Table View Cell"; ObjectID = "v3T-2f-yWm"; */
|
||||
"v3T-2f-yWm.title" = "Table View Cell";
|
||||
|
||||
|
||||
@@ -1,4 +1,3 @@
|
||||
|
||||
/* Class = "NSTableColumn"; headerCell.title = "Field"; ObjectID = "0H9-DW-Jyj"; */
|
||||
"0H9-DW-Jyj.headerCell.title" = "Field";
|
||||
|
||||
@@ -22,3 +21,4 @@
|
||||
|
||||
/* Class = "NSTextFieldCell"; title = "Text Cell"; ObjectID = "z1F-Bi-PBg"; */
|
||||
"z1F-Bi-PBg.title" = "Text Cell";
|
||||
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
/* Class = "NSTextFieldCell"; title = "If enabled, only properly signed Plugins will be loaded. Keep in mind, that Plugins have full access to your data! Changes take affect on restart."; ObjectID = "2bX-8S-9XM"; */
|
||||
/* Class = "NSTextFieldCell"; title = "If enabled, Plugins without proper signatures will be allowed to load. Keep in mind, that Plugins have full access to your data! Changes take affect on restart."; ObjectID = "2bX-8S-9XM"; */
|
||||
"2bX-8S-9XM.title" = "If enabled, Plugins without proper signatures will be allowed to load. Keep in mind, that Plugins have full access to your data! Changes take affect on restart.";
|
||||
|
||||
/* Class = "NSButtonCell"; title = "Load unsecure Plugins"; ObjectID = "C4B-6z-ZqX"; */
|
||||
|
||||
@@ -83,8 +83,6 @@
|
||||
"CHANGE_DATABASE_NAME" = "Cambiar Nombre de Base";
|
||||
"CHANGE_TRASH_GROUP" = "Cambiar Grupo de Papelera";
|
||||
|
||||
"DUPLICTE_PASSWORDS" = "Duplicar Contraseñas";
|
||||
|
||||
/* Field nam that was copied to the pasteboard */
|
||||
"COPIED_FIELD_%@" = "%@ copiado";
|
||||
"COPIED_PASSWORD" = "Contraseña copiada";
|
||||
|
||||
@@ -84,8 +84,6 @@
|
||||
"CHANGE_DATABASE_NAME" = "Modifier nom base de données";
|
||||
"CHANGE_TRASH_GROUP" = "Modifier le groupe corbeille";
|
||||
|
||||
"DUPLICTE_PASSWORDS" = "Dupliquer mots de passe";
|
||||
|
||||
/* Field nam that was copied to the pasteboard */
|
||||
"COPIED_FIELD_%@" = "Copie de %@";
|
||||
"COPIED_PASSWORD" = "Mot de passe copié !";
|
||||
|
||||
@@ -83,8 +83,6 @@
|
||||
"CHANGE_DATABASE_NAME" = "Cambia Nome Database";
|
||||
"CHANGE_TRASH_GROUP" = "Cambia Gruppo Cestino";
|
||||
|
||||
"DUPLICTE_PASSWORDS" = "Duplica Passwords";
|
||||
|
||||
/* Field nam that was copied to the pasteboard */
|
||||
"COPIED_FIELD_%@" = "Copiato %@";
|
||||
"COPIED_PASSWORD" = "Password copiata!";
|
||||
|
||||
@@ -71,9 +71,6 @@
|
||||
/* Menu item in the database outline context menu to change the database name */
|
||||
"CHANGE_DATABASE_NAME" = "Wijzig de naam van de wachtwoordenkluis";
|
||||
|
||||
/* (No Comment) */
|
||||
"CHANGE_FORMAT" = "Wijzig de indeling van de wachtwoordenkluis naar KDBX";
|
||||
|
||||
/* Button to show the password change dialog
|
||||
Single button to show the password change dialog */
|
||||
"CHANGE_PASSWORD_WITH_DOTS" = "Wijzig wachtwoord…";
|
||||
@@ -122,9 +119,6 @@
|
||||
Toolbar item copy username */
|
||||
"COPY_USERNAME" = "Kopieer gebruikersnaam";
|
||||
|
||||
/* (No Comment) */
|
||||
"CREATED_AT_%@" = "Gecreëerd: %@";
|
||||
|
||||
/* Default display name for KDB databases */
|
||||
"DATABASE" = "Wachtwoordenkluis";
|
||||
|
||||
@@ -453,9 +447,6 @@
|
||||
/* Enable search menu item */
|
||||
"SEARCH_YES" = "Insluiten in zoeken";
|
||||
|
||||
/* (No Comment) */
|
||||
"SELECT_AUTOTYPE_CANDIDATE" = "Selecteer kandidaat!";
|
||||
|
||||
/* Menu item title for the expiry preset selection menu in the date picker */
|
||||
"SELECT_DATE_PRESET" = "Gebruik voorinstelling…";
|
||||
|
||||
@@ -528,21 +519,12 @@
|
||||
/* Message text for the alert displayed when clearing the Trash */
|
||||
"WARNING_ON_EMPTY_TRASH_TITLE" = "Leeg prullenmand?";
|
||||
|
||||
/* (No Comment) */
|
||||
"WARNING_ON_LOSSY_SAVE" = "U kunt gegevens kwijtraken door op te slaan met de indeling KDB.";
|
||||
|
||||
/* (No Comment) */
|
||||
"WARNING_ON_LOSSY_SAVE_DESCRIPTION" = "Niet alle soorten gegevens passen in een wachtwoordenkluis met de indeling KDB. Als u doorgaat kunt u gegevens kwijtraken.";
|
||||
|
||||
/* No comment provided by engineer. */
|
||||
"WARNING_ON_SAVE_NO_PASSWORD_OR_KEY_SET" = "Hoofdwachtwoord en sleutelbestand instellen:";
|
||||
|
||||
/* No comment provided by engineer. */
|
||||
"WARNING_ON_SAVE_NO_PASSWORD_OR_KEY_SET_SUGGESTION" = "Stel een hoofdwachtwoord of sleutelbestand in voor deze wachtwoordenkluis om uw wijzigingen te kunnen bewaren.";
|
||||
|
||||
/* (No Comment) */
|
||||
"WINDOWS" = "Vensters";
|
||||
|
||||
/* Label for the workflow settings tab */
|
||||
"WORKFLOW_SETTINGS" = "Bewerken";
|
||||
|
||||
|
||||
@@ -52,9 +52,6 @@
|
||||
/* Menu item in the database outline context menu to change the database name */
|
||||
"CHANGE_DATABASE_NAME" = "Zmień nazwę bazy danych";
|
||||
|
||||
/* (No Comment) */
|
||||
"CHANGE_FORMAT" = "Czy zmienić format pliku na KDBX";
|
||||
|
||||
/* No comment provided by engineer. */
|
||||
"CHANGE_PASSWORD_WITH_DOTS" = "Zmień haslo…";
|
||||
|
||||
@@ -100,9 +97,6 @@
|
||||
/* No comment provided by engineer. */
|
||||
"COPY_USERNAME" = "Skopiuj nazwę użytkownika";
|
||||
|
||||
/* (No Comment) */
|
||||
"CREATED_AT_%@" = "Utworzony: %@";
|
||||
|
||||
/* Default name database */
|
||||
"DATABASE" = "Baza danych";
|
||||
|
||||
@@ -148,12 +142,6 @@
|
||||
/* No comment provided by engineer. */
|
||||
"DUPLICATE_ENTRY_WITH_OPTIONS" = "Powiel wpis…";
|
||||
|
||||
/* (No Comment) */
|
||||
"DUPLICTE_PASSWORDS" = "Powielone hasła";
|
||||
|
||||
/* (No Comment) */
|
||||
"EDIT" = "Edytuj";
|
||||
|
||||
/* Menu item in the database outline context menu to change the template group
|
||||
Menu item on the add entry context menu to edit template groups */
|
||||
"EDIT_TEMPLATE_GROUP" = "Edit Entry Template Group";
|
||||
@@ -235,9 +223,6 @@
|
||||
/* No comment provided by engineer. */
|
||||
"LOCK" = "Blokada";
|
||||
|
||||
/* (No Comment) */
|
||||
"MODIFED_AT_%@" = "Zmodyfikowany: %@";
|
||||
|
||||
/* No comment provided by engineer. */
|
||||
"MODIFIED" = "Zmodyfikowany";
|
||||
|
||||
@@ -362,9 +347,6 @@
|
||||
/* No comment provided by engineer. */
|
||||
"SEARCH_YES" = "Zawrzyj w wynikach wyszukiwania";
|
||||
|
||||
/* (No Comment) */
|
||||
"SELECT_AUTOTYPE_CANDIDATE" = "Dokonaj wyboru";
|
||||
|
||||
/* Menu item title for the expiry preset selection menu in the date picker */
|
||||
"SELECT_DATE_PRESET" = "Use preset…";
|
||||
|
||||
@@ -374,9 +356,6 @@
|
||||
/* Set the selection as default file change strategy! */
|
||||
"SET_AS_DEFAULT_FILE_CHANGE_STRATEGY" = "Use this method as default. You can change this at any time in the preferences.";
|
||||
|
||||
/* (No Comment) */
|
||||
"SHORT_FILE_CHANGE_STRATEGY_ASK" = "Pytaj";
|
||||
|
||||
/* No comment provided by engineer. */
|
||||
"SHOW_HISTORY" = "Pokaż historię";
|
||||
|
||||
@@ -414,21 +393,12 @@
|
||||
/* No comment provided by engineer. */
|
||||
"WARNING_ON_EMPTY_TRASH_TITLE" = "Opróżnić kosz?";
|
||||
|
||||
/* (No Comment) */
|
||||
"WARNING_ON_LOSSY_SAVE" = "Zapisanie w formacie KDB, doprowadzi do utraty danych.";
|
||||
|
||||
/* (No Comment) */
|
||||
"WARNING_ON_LOSSY_SAVE_DESCRIPTION" = "Format pliku KDB nie pozwala na zapisanie wszystkich informacji.";
|
||||
|
||||
/* No comment provided by engineer. */
|
||||
"WARNING_ON_SAVE_NO_PASSWORD_OR_KEY_SET" = "No password or keyfile is set.";
|
||||
|
||||
/* No comment provided by engineer. */
|
||||
"WARNING_ON_SAVE_NO_PASSWORD_OR_KEY_SET_SUGGESTION" = "Please set a password and/or keyfile for this database. Aborting this will undo all changes and lock the document";
|
||||
|
||||
/* (No Comment) */
|
||||
"WINDOWS" = "Okna";
|
||||
|
||||
/* Label for the workflow settings tab */
|
||||
"WORKFLOW_SETTINGS" = "Przepływ danych";
|
||||
|
||||
|
||||
@@ -188,9 +188,6 @@
|
||||
/* Checkbox in dialog to set the selection as default file change strategy! */
|
||||
"SET_AS_DEFAULT_FILE_CHANGE_STRATEGY" = "Использовать этот способ по умолчанию. Вы сможете поменять это в любое время в настройках.";
|
||||
|
||||
/* (No Comment) */
|
||||
"SHORT_FILE_CHANGE_STRATEGY_ASK" = "Спросить";
|
||||
|
||||
/* Menu item to show the reference builder in a text view's context menu */
|
||||
"SHOW_REFERENCE_BUILDER" = "Показать конструктор связей";
|
||||
|
||||
@@ -288,8 +285,6 @@
|
||||
"CHANGE_DATABASE_NAME" = "Изменить Имя базы данных";
|
||||
"CHANGE_TRASH_GROUP" = "Изменить группу для мусора";
|
||||
|
||||
"DUPLICTE_PASSWORDS" = "Дубли паролей";
|
||||
|
||||
/* Field nam that was copied to the pasteboard */
|
||||
"COPIED_FIELD_%@" = "Скопировано %@";
|
||||
"COPIED_PASSWORD" = "Пароль скопирован!";
|
||||
|
||||
@@ -83,8 +83,6 @@
|
||||
"CHANGE_DATABASE_NAME" = "修改数据库名称";
|
||||
"CHANGE_TRASH_GROUP" = "修改废纸篓的项目组";
|
||||
|
||||
"DUPLICTE_PASSWORDS" = "重复的密码";
|
||||
|
||||
/* Field nam that was copied to the pasteboard */
|
||||
"COPIED_FIELD_%@" = "%@ 已拷贝到剪贴板";
|
||||
"COPIED_PASSWORD" = "密码已拷贝到剪贴板!";
|
||||
|
||||
Reference in New Issue
Block a user