├── aff.xpi
├── chrome.manifest
├── chrome
├── content
│ ├── autofillForms.js
│ ├── autofillFormsOptions.js
│ ├── autofillFormsOptions.xul
│ ├── autofillFormsOverlay.js
│ ├── autofillFormsOverlay.xul
│ ├── autofillFormsRuleEditor.js
│ ├── autofillFormsRuleEditor.xul
│ ├── autofillFormsTagEditor.js
│ ├── autofillFormsTagEditor.xul
│ └── inject.js
├── locale
│ ├── cs-CZ
│ │ ├── autofillForms.dtd
│ │ └── autofillForms.properties
│ ├── de-DE
│ │ ├── autofillForms.dtd
│ │ └── autofillForms.properties
│ ├── el-GR
│ │ ├── autofillForms.dtd
│ │ └── autofillForms.properties
│ ├── en-US
│ │ ├── autofillForms.dtd
│ │ └── autofillForms.properties
│ ├── es-ES
│ │ ├── autofillForms.dtd
│ │ └── autofillForms.properties
│ ├── fi-FI
│ │ ├── autofillForms.dtd
│ │ └── autofillForms.properties
│ ├── fr-FR
│ │ ├── autofillForms.dtd
│ │ └── autofillForms.properties
│ ├── he-IL
│ │ ├── autofillForms.dtd
│ │ └── autofillForms.properties
│ ├── hr-HR
│ │ ├── autofillForms.dtd
│ │ └── autofillForms.properties
│ ├── hu-HU
│ │ ├── autofillForms.dtd
│ │ └── autofillForms.properties
│ ├── it-IT
│ │ ├── autofillForms.dtd
│ │ └── autofillForms.properties
│ ├── nl-NL
│ │ ├── autofillForms.dtd
│ │ └── autofillForms.properties
│ ├── pl-PL
│ │ ├── autofillForms.dtd
│ │ └── autofillForms.properties
│ ├── pt-BR
│ │ ├── autofillForms.dtd
│ │ └── autofillForms.properties
│ ├── ro-RO
│ │ ├── autofillForms.dtd
│ │ └── autofillForms.properties
│ ├── ru-RU
│ │ ├── autofillForms.dtd
│ │ └── autofillForms.properties
│ ├── sk-SK
│ │ ├── autofillForms.dtd
│ │ └── autofillForms.properties
│ ├── sv-SE
│ │ ├── autofillForms.dtd
│ │ └── autofillForms.properties
│ ├── tr-TR
│ │ ├── autofillForms.dtd
│ │ └── autofillForms.properties
│ ├── zh-CN
│ │ ├── autofillForms.dtd
│ │ └── autofillForms.properties
│ └── zh-TW
│ │ ├── autofillForms.dtd
│ │ └── autofillForms.properties
└── skin
│ ├── arrows.png
│ ├── autofillForms.css
│ ├── autofillFormsMac.css
│ ├── autofillFormsOptions.css
│ ├── autofillFormsOptions1.5.css
│ ├── autofillFormsOptions2.css
│ ├── autofillFormsRuleEditor.css
│ ├── autofillFormsTagEditor.css
│ ├── help-small.png
│ ├── icon.png
│ ├── pencil-active-mac.png
│ ├── pencil-big.png
│ ├── pencil-mac.png
│ ├── pencil-small.png
│ ├── pencil.png
│ ├── profile-small.png
│ └── settings-small.png
├── defaults
└── preferences
│ └── autofillForms.js
├── install.rdf
└── install.sh
/aff.xpi:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/sarahavilov/Autofill-Forms/51dee503f89a55f57db1fa34a59dd4578f94ea79/aff.xpi
--------------------------------------------------------------------------------
/chrome.manifest:
--------------------------------------------------------------------------------
1 | content autofillforms chrome/content/
2 | locale autofillforms cs-CZ chrome/locale/cs-CZ/
3 | locale autofillforms de-DE chrome/locale/de-DE/
4 | locale autofillforms el-GR chrome/locale/el-GR/
5 | locale autofillforms en-US chrome/locale/en-US/
6 | locale autofillforms es-ES chrome/locale/es-ES/
7 | locale autofillforms fr-FR chrome/locale/fr-FR/
8 | locale autofillforms fi-FI chrome/locale/fi-FI/
9 | locale autofillforms he-IL chrome/locale/he-IL/
10 | locale autofillforms hr-HR chrome/locale/hr-HR/
11 | locale autofillforms hu-HU chrome/locale/hu-HU/
12 | locale autofillforms it-IT chrome/locale/it-IT/
13 | locale autofillforms nl-NL chrome/locale/nl-NL/
14 | locale autofillforms pl-PL chrome/locale/pl-PL/
15 | locale autofillforms pt-BR chrome/locale/pt-BR/
16 | locale autofillforms ro-RO chrome/locale/ro-RO/
17 | locale autofillforms ru-RU chrome/locale/ru-RU/
18 | locale autofillforms sk-SK chrome/locale/sk-SK/
19 | locale autofillforms sv-SE chrome/locale/sv-SE/
20 | locale autofillforms tr-TR chrome/locale/tr-TR/
21 | locale autofillforms zh-CN chrome/locale/zh-CN/
22 | locale autofillforms zh-TW chrome/locale/zh-TW/
23 | skin autofillforms classic/1.0 chrome/skin/
24 | overlay chrome://browser/content/browser.xul chrome://autofillforms/content/autofillFormsOverlay.xul
25 | style chrome://global/content/customizeToolbar.xul chrome://autofillforms/skin/autofillForms.css
26 | style chrome://autofillforms/content/autofillFormsOptions.xul chrome://autofillforms/skin/autofillFormsOptions2.css appversion<3.0
27 | style chrome://autofillforms/content/autofillFormsOptions.xul chrome://autofillforms/skin/autofillFormsOptions1.5.css appversion<2.0
28 | style chrome://browser/content/browser.xul chrome://autofillforms/skin/autofillFormsMac.css appversion>=3.0 os=Darwin
29 | style chrome://global/content/customizeToolbar.xul chrome://autofillforms/skin/autofillFormsMac.css appversion>=3.0 os=Darwin
30 |
31 | resource autofillforms chrome/content/
32 |
--------------------------------------------------------------------------------
/chrome/content/autofillFormsOptions.js:
--------------------------------------------------------------------------------
1 | /*
2 | * @package autofillForms
3 | * @author Sebastian Tschan
4 | * @copyright (c) Sebastian Tschan
5 | * @license GNU General Public License
6 | * @link https://blueimp.net/mozilla/
7 | */
8 |
9 | var {Services} = Components.utils.import("resource://gre/modules/Services.jsm");
10 | (function (os) {
11 | var bp = autofillForms.getPrefManager().getBranch('browser.preferences.');
12 | var p = bp.getBoolPref('animateFadeIn');
13 | window.addEventListener('load', function() {
14 | if (os === 'Darwin') {
15 | bp.setBoolPref('animateFadeIn', false);
16 | }
17 | autofillForms.optionsInitialize();
18 | }, false);
19 | window.addEventListener('unload', function() {
20 | if (os === 'Darwin') {
21 | bp.setBoolPref('animateFadeIn', p);
22 | }
23 | autofillForms.optionsFinalize();
24 | }, false);
25 | })(Services.appinfo.OS);
26 |
--------------------------------------------------------------------------------
/chrome/content/autofillFormsOverlay.js:
--------------------------------------------------------------------------------
1 | /*
2 | * @package autofillForms
3 | * @author Sebastian Tschan
4 | * @copyright (c) Sebastian Tschan
5 | * @license GNU General Public License
6 | * @link https://blueimp.net/mozilla/
7 | */
8 |
9 | window.addEventListener('load', function() { autofillForms.initialize(); }, false);
10 | window.addEventListener('unload', function() { autofillForms.finalize(); }, false);
11 |
--------------------------------------------------------------------------------
/chrome/content/autofillFormsRuleEditor.js:
--------------------------------------------------------------------------------
1 | /*
2 | * @package autofillForms
3 | * @author Sebastian Tschan
4 | * @copyright (c) Sebastian Tschan
5 | * @license GNU General Public License
6 | * @link https://blueimp.net/mozilla/
7 | */
8 |
9 | window.addEventListener('load', function() { autofillForms.ruleEditorInitialize(); }, false);
10 | window.addEventListener('unload', function() { autofillForms.ruleEditorFinalize(); }, false);
11 | window.addEventListener('focus', function() { autofillForms.ruleEditorFocus(); }, true);
12 |
--------------------------------------------------------------------------------
/chrome/content/autofillFormsRuleEditor.xul:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
--------------------------------------------------------------------------------
/chrome/content/autofillFormsTagEditor.js:
--------------------------------------------------------------------------------
1 | /*
2 | * @package autofillForms
3 | * @author Sebastian Tschan
4 | * @copyright (c) Sebastian Tschan
5 | * @license GNU General Public License
6 | * @link https://blueimp.net/mozilla/
7 | */
8 |
9 | window.addEventListener('load', function() { autofillForms.tagEditorInitialize(); }, false);
10 | window.addEventListener('unload', function() { autofillForms.tagEditorFinalize(); }, false);
11 | window.addEventListener('focus', function() { autofillForms.tagEditorFocus(); }, true);
12 |
--------------------------------------------------------------------------------
/chrome/content/autofillFormsTagEditor.xul:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
51 |
52 |
--------------------------------------------------------------------------------
/chrome/content/inject.js:
--------------------------------------------------------------------------------
1 | /* globals addMessageListener, content */
2 | 'use strict';
3 |
4 | function onchange (elem) {
5 | try {
6 | elem.dispatchEvent(new Event('change'));
7 | elem.dispatchEvent(new Event('keydown'));
8 | elem.dispatchEvent(new Event('keyup'));
9 | elem.dispatchEvent(new Event('keychange'));
10 | }
11 | catch (e) {}
12 | }
13 |
14 | function toList (att) {
15 | return [].concat.apply(
16 | [content.document],
17 | [].map.call(content.document.getElementsByTagName('iframe'), f => f.contentDocument)
18 | )
19 | .filter(doc => doc)
20 | .map(function (doc) {
21 | return [].slice.call(doc.querySelectorAll(att), 0);
22 | })
23 | .reduce(function (a, b) {
24 | return [].concat.call(a, b);
25 | });
26 | }
27 |
28 | addMessageListener('click', function () {
29 | toList('[data-aff-click]').forEach(function (elem) {
30 | elem.removeAttribute('data-aff-click');
31 | elem.click();
32 | });
33 | });
34 | addMessageListener('submit', function () {
35 | toList('[data-aff-submit]').forEach(function (elem) {
36 | elem.removeAttribute('data-aff-submit');
37 | elem.submit();
38 | });
39 | });
40 | addMessageListener('focus', function () {
41 | toList('[data-aff-focus]').forEach(function (elem) {
42 | elem.removeAttribute('data-aff-focus');
43 | elem.focus();
44 | onchange(elem);
45 | });
46 | });
47 | addMessageListener('change', function () {
48 | toList('[data-aff-change]').forEach(function (elem) {
49 | elem.removeAttribute('data-aff-change');
50 | onchange(elem);
51 | });
52 | });
53 | addMessageListener('value', function () {
54 | toList('[data-aff-value]').forEach(function (elem) {
55 | elem.value = elem.dataset.affValue;
56 | elem.removeAttribute('data-aff-value');
57 | onchange(elem);
58 | });
59 | });
60 | addMessageListener('selectionEnd', function () {
61 | toList('[data-aff-selectionEnd]').forEach(function (elem) {
62 | elem.selectionEnd = elem.dataset.affSelectionend;
63 | elem.removeAttribute('data-aff-selectionEnd');
64 | });
65 | });
66 | addMessageListener('selectionStart', function () {
67 | toList('[data-aff-selectionStart]').forEach(function (elem) {
68 | elem.selectionStart = elem.dataset.affSelectionstart;
69 | elem.removeAttribute('data-aff-selectionstart');
70 | });
71 | });
72 |
--------------------------------------------------------------------------------
/chrome/locale/cs-CZ/autofillForms.properties:
--------------------------------------------------------------------------------
1 | extensions.autofillForms@blueimp.net.description=Doplňte údaje do webových formulářů pouhým stisknutím klávesové zkratky
2 | extensions.autofillForms@blueimp.net.shortcut=alt+J
3 | extensions.autofillForms@blueimp.net.shortcutSubmit=
4 | extensions.autofillForms@blueimp.net.shortcutAllTabs=
5 | extensions.autofillForms@blueimp.net.shortcutFromProfileSelection=
6 | extensions.autofillForms@blueimp.net.shortcutProfile=control+alt+J
7 | extensions.autofillForms@blueimp.net.shortcutSettings=control+alt+shift+J
8 | extensions.autofillForms@blueimp.net.shortcutDisplayFormDetails=
9 | extensions.autofillForms@blueimp.net.fieldRules=Uživatelské%20jméno (?:(?:user)|(?:login))(?!\\w*pass) (?:) true true\nE-mail mail (?:) true true\nOslovení (?:prefix%5Cw*name)%7C(?:name%5Cw*prefix)%7C(?:title) (?:) true true\nKřestní%20jméno (?:first%5Cw*name)%7C(?:name%5Cw*first) (?:) true true\n2.%20Jméno (?:middle%5Cw*name)%7C(?:name%5Cw*middle) (?:) true true\nPříjmení (?:last%5Cw*name)%7C(?:name%5Cw*last) (?:) true true\nPřídomek (?:suffix%5Cw*name)%7C(?:name%5Cw*suffix) (?:) true true\nCelé%20jméno name (?:) true true\nUlice%20č.1 (?:(?:street)%7C(?:addr))%5Cw*1 (?:) true true\nUlice%20č.2 (?:(?:street)%7C(?:addr))%5Cw*2 (?:) true true\nUlice%20č.3 (?:(?:street)%7C(?:addr))%5Cw*3 (?:) true true\nCelá%20ulice (?:street)%7C(?:addr) (?:) true true\nMěsto (?:city)%7C(?:stadt) (?:) true true\nStát (?:state)%7C(?:prov)%7C(?:region) (?:) true true\nPSČ/ZIP (?:zip)%7C(?:post%5Cw*code)%7C(?:psc) (?:) true true\nKód%20země country%5Cw*code (?:) true true\nKraj (?:country)%7C(?:kraj) (?:) true true\nJazyk (?:lang)%7C(?:jazyk) (?:) true true\nDen%20narození (?:bday)%7C(?:birth%5Cw?day)%7C(?:dob%5Cw?day)%7C(?:birth%5Cw*1) (?:) true true\nMěsíc%20narození (?:bmon)%7C(?:birth%5Cw?mon)%7C(?:dob%5Cw?mon)%7C(?:birth%5Cw*2) (?:) true true\nRok%20narození (?:byear)%7C(?:birth%5Cw?year)%7C(?:dob%5Cw?year)%7C(?:birth%5Cw*3) (?:) true true\nFirma (?:company)%7C(?:firma) (?:) true true\nPovolání (?:occupation)%7C(?:job) (?:) true true\nTelefon (?:phone)%7C(?:tel) (?:) true true\nWWW-stránka (?:web)%7C(?:homepage)%7C(?:www)%7C(?:url) (?:) true true
10 | extensions.autofillForms@blueimp.net.profileLabels=Výchozí
11 | extensions.autofillForms@blueimp.net.dynamicTags=
12 | extensions.autofillForms@blueimp.net.dynamicTagCodes=new Date().toLocaleString() navigator.userAgent navigator.language screen.width+'x'+screen.height this.getClipboardText()
13 | extensions.autofillForms@blueimp.net.regExpPasswordLabel=(?:pass)
14 | tooltip=Vyplnit formuláře
15 | tooltipSubmit=Vyplnit a odeslat formuláře
16 | tooltipAllTabs=Vyplnit formuláře ve všech panelech
17 | tooltipFromProfileSelection=Vyplnit formuláře z výběru profilu
18 | tooltipProfile=Přepínač profilů
19 | tooltipSettings=Nastavení
20 | tooltipDisplayFormDetails=Zobrazit detaily formuláře
21 | currentProfileLabel=Současný profil:
22 | profileSelectionWindowTitle=Přepnout profil
23 | profileSelectionFormFillTitle=Vyplnit formuláře
24 | profileSelectionPrompt=Zvolit profil:
25 | contextMenuMore=Více...
26 | invalidRegExpTitle=Nesprávný výraz
27 | invalidRegExpText=Vložený výraz není platný:
28 | containsRuleType=obsahuje
29 | beginsWithRuleType=začíná na
30 | endsWithRuleType=končí na
31 | equalsRuleType=rovná se
32 | alternativesSelectionWindowTitle=Zvolit jiné
33 | alternativesSelectionPrompt=Zvolit jiné:
34 | importProfile=Importovat profil
35 | exportProfile=Exportovat profil
36 | importDynamicTags=Import Dynamic Tags
37 | exportDynamicTags=Export Dynamic Tags
38 | removeProfileTitle=Odstranit profil
39 | removeProfileText=Skutečně chcete odstranit profil?
40 | removeFieldRulesTitle=Odstranit pravidla pole
41 | removeFieldRulesText=Opravdu mám smazat vybraná pravidla pole?
42 | sortFieldRulesTitle=Seřadit pravidla pole
43 | sortFieldRulesText=Opravdu chcete nastavit nové uspořádání pravidel pole?
44 | removeRuleConditionTitle=Odstranit podmínku pole
45 | removeRuleConditionText=Opravdu chcete odstranit vybranou podmínku pole?
46 | removeDynamicTagTitle=Odstranit dynamický tag
47 | removeDynamicTagText=Opravdu chcete odstranit vybraný dynamický tag?
48 | resetAllProfilesTitle=Resetovat všechny profily
49 | resetAllProfilesText=Opravdu chcete resetovat všechny profily?
50 | selectConfigDirectory=Zvolit adresář s konfigurací
51 | newConfigDirectoryNotEmptyTitle=Adresář není prázdný
52 | newConfigDirectoryNotEmptyText=Nový adresář s konfigurací není prázdný. Chcete přepsat existující konfigurační soubory?
53 | importFromConfigDirectoryTitle=Importovat z adresáře s konfigurací
54 | importFromConfigDirectoryText=Chcete přepsat profily daty z adresáře s konfigurací?
55 | command=Příkaz
56 | mousebutton=Tlačítko myši
57 | mousebutton0=Levé tlačítko myši
58 | mousebutton1=Prostřední tlačítko myši
59 | mousebutton2=Pravé tlačítko myši
60 | keyboardShortcut=Klávesová zkratka
61 | alt=Alt
62 | control=Ctrl
63 | meta=Cmd
64 | shift=Shift
65 | VK_CANCEL=Zrušit
66 | VK_HELP=Nápověda
67 | VK_BACK=Zpět
68 | VK_TAB=Tab
69 | VK_CLEAR=Vyčistit
70 | VK_RETURN=Návrat
71 | VK_ENTER=Enter
72 | VK_PAUSE=Pauza
73 | VK_CAPS_LOCK=Caps Lock
74 | VK_ESCAPE=Esc
75 | VK_SPACE=Mezerník
76 | VK_PAGE_UP=Page up
77 | VK_PAGE_DOWN=Page down
78 | VK_END=End
79 | VK_HOME=Home
80 | VK_LEFT=Doleva
81 | VK_UP=Nahoru
82 | VK_RIGHT=Doprava
83 | VK_DOWN=Dolů
84 | VK_PRINTSCREEN=Print Screen
85 | VK_INSERT=Insert
86 | VK_DELETE=Delete
87 | VK_NUM_LOCK=Num Lock
88 | VK_SCROLL_LOCK=Scroll Lock
89 |
--------------------------------------------------------------------------------
/chrome/locale/de-DE/autofillForms.properties:
--------------------------------------------------------------------------------
1 | extensions.autofillForms@blueimp.net.description=Web-Formulare automatisch ausfüllen
2 | extensions.autofillForms@blueimp.net.shortcut=alt+J
3 | extensions.autofillForms@blueimp.net.shortcutSubmit=
4 | extensions.autofillForms@blueimp.net.shortcutAllTabs=
5 | extensions.autofillForms@blueimp.net.shortcutFromProfileSelection=
6 | extensions.autofillForms@blueimp.net.shortcutProfile=control+alt+J
7 | extensions.autofillForms@blueimp.net.shortcutSettings=control+alt+shift+J
8 | extensions.autofillForms@blueimp.net.shortcutDisplayFormDetails=
9 | extensions.autofillForms@blueimp.net.fieldRules=Benutzername (?:(?:user)%7C(?:login)%7C(?:benutzer))(?!%5Cw*pass) (?:) true true\nE-mail mail (?:) true true\nAnrede (?:prefix%5Cw*name)%7C(?:name%5Cw*prefix)%7C(?:title)%7C(?:titel)%7C(?:anrede) (?:) true true\nVorname (?:first%5Cw*name)%7C(?:name%5Cw*first)%7C(?:vorname) (?:) true true\n2.%20Vorname (?:middle%5Cw*name)%7C(?:name%5Cw*middle)%7C(?:vorname%5Cw*2) (?:) true true\nNachname (?:last%5Cw*name)%7C(?:name%5Cw*last)%7C(?:nachname) (?:) true true\nNamenszusatz (?:suffix%5Cw*name)%7C(?:name%5Cw*suffix)%7C(?:zusatz%5Cw*name)%7C(?:name%5Cw*zusatz) (?:) true true\n(Vollst%C3%A4ndiger)%20Name name (?:) true true\nStra%C3%9Fe%20(Zeile%201) (?:(?:street)%7C(?:addr)%7C(?:stra%C3%9Fe)%7C(?:strasse)%7C(?:adr))%5Cw*1 (?:) true true\nStra%C3%9Fe%20(Zeile%202) (?:(?:street)%7C(?:addr)%7C(?:stra%C3%9Fe)%7C(?:strasse)%7C(?:adr))%5Cw*2 (?:) true true\nStra%C3%9Fe%20(Zeile%203) (?:(?:street)%7C(?:addr)%7C(?:stra%C3%9Fe)%7C(?:strasse)%7C(?:adr))%5Cw*3 (?:) true true\n(Vollst%C3%A4ndige)%20Stra%C3%9Fe (?:street)%7C(?:addr)%7C(?:stra%C3%9Fe)%7C(?:strasse)%7C(?:adr) (?:) true true\nStadt (?:city)%7C(?:stadt) (?:) true true\nBundesland/Staat (?:state)%7C(?:prov)%7C(?:region)%7C(?:bundesland) (?:) true true\nPostleitzahl/ZIP (?:zip)%7C(?:post%5Cw*code)%7C(?:plz)%7C(?:postleitzahl) (?:) true true\nLandeskennzeichen (?:country%5Cw*code)%7C(?:land%5Cw*kennzeichen) (?:) true true\nLand (?:country)%7C(?:land) (?:) true true\nSprache (?:lang)%7C(?:sprache) (?:) true true\nGeburts-Tag (?:bday)%7C(?:birth%5Cw?day)%7C(?:dob%5Cw?day)%7C(?:birth%5Cw*1)%7C(geb%5Cw*tag) (?:) true true\nGeburts-Monat (?:bmon)%7C(?:birth%5Cw?mon)%7C(?:dob%5Cw?mon)%7C(?:birth%5Cw*2)%7C(geb%5Cw*mon) (?:) true true\nGeburts-Jahr (?:byear)%7C(?:birth%5Cw?year)%7C(?:dob%5Cw?year)%7C(?:birth%5Cw*3)%7C(geb%5Cw*jahr) (?:) true true\nFirma (?:company)%7C(?:firma) (?:) true true\nBeruf (?:occupation)%7C(?:job)%7C(?:beruf) (?:) true true\nTelefon (?:phone)%7C(?:tel) (?:) true true\nHomepage (?:web)%7C(?:homepage)%7C(?:www)%7C(?:url) (?:) true true
10 | extensions.autofillForms@blueimp.net.profileLabels=Standard
11 | extensions.autofillForms@blueimp.net.dynamicTags=
12 | extensions.autofillForms@blueimp.net.dynamicTagCodes=new Date().toLocaleString() navigator.userAgent navigator.language screen.width+'x'+screen.height this.getClipboardText()
13 | extensions.autofillForms@blueimp.net.regExpPasswordLabel=(?:pass)
14 | tooltip=Formulare ausfüllen
15 | tooltipSubmit=Formulare ausfüllen und abschicken
16 | tooltipAllTabs=Formulare auf allen Browser-Tabs ausfüllen
17 | tooltipFromProfileSelection=Formulare aus Profil-Auswahl ausfüllen
18 | tooltipProfile=Profil wechseln
19 | tooltipSettings=Einstellungen
20 | tooltipDisplayFormDetails=Formular-Details anzeigen
21 | currentProfileLabel=Aktuelles Profil:
22 | profileSelectionWindowTitle=Profil wechseln
23 | profileSelectionFormFillTitle=Formulare ausfüllen
24 | profileSelectionPrompt=Profil wählen:
25 | contextMenuMore=Mehr...
26 | invalidRegExpTitle=Ungültiger regulärer Ausdruck
27 | invalidRegExpText=Der eingegebene reguläre Ausdruck ist nicht gültig:
28 | containsRuleType=enthält
29 | beginsWithRuleType=beginnt mit
30 | endsWithRuleType=endet mit
31 | equalsRuleType=ist
32 | alternativesSelectionWindowTitle=Alternative auswählen
33 | alternativesSelectionPrompt=Alternative auswählen:
34 | importProfile=Profil Importieren
35 | exportProfile=Profil Exportieren
36 | importDynamicTags=Import Dynamic Tags
37 | exportDynamicTags=Export Dynamic Tags
38 | removeProfileTitle=Profil entfernen
39 | removeProfileText=Wirklich das aktuelle Profil löschen?
40 | removeFieldRulesTitle=Feldregeln entfernen
41 | removeFieldRulesText=Wirklich die ausgewählten Feldregeln entfernen?
42 | sortFieldRulesTitle=Feldregeln sortieren
43 | sortFieldRulesText=Wirklich eine neue Reihenfolge für die Feldregeln festlegen?
44 | removeRuleConditionTitle=Regelbedingung entfernen
45 | removeRuleConditionText=Wirklich die ausgewählte Regelbedingung entfernen?
46 | removeDynamicTagTitle=Dynamisches Tag entfernen
47 | removeDynamicTagText=Wirklich das ausgewählte Dynamische Tag entfernen?
48 | resetAllProfilesTitle=Alle Profile zurücksetzen
49 | resetAllProfilesText=Wirklich alle Profile zurücksetzen?
50 | selectConfigDirectory=Konfigurationsverzeichnis auswählen
51 | newConfigDirectoryNotEmptyTitle=Verzeichnis nicht leer
52 | newConfigDirectoryNotEmptyText=Das neue Konfigurationsverzeichnis ist nicht leer. Sollen vorhandene Konfigurationsdateien überschrieben werden?
53 | importFromConfigDirectoryTitle=Import aus dem Konfigurationsverzeichnis
54 | importFromConfigDirectoryText=Sollen die Profile mit den Daten aus dem Konfigurationsverzeichnis überschrieben werden?
55 | command=Befehl
56 | mousebutton=Maustaste
57 | mousebutton0=Linke Maustaste
58 | mousebutton1=Mittlere Maustaste
59 | mousebutton2=Rechte Maustaste
60 | keyboardShortcut=Tastaturkürzel
61 | alt=Alt
62 | control=Strg
63 | meta=Cmd
64 | shift=Umschalt
65 | VK_CANCEL=Abbr
66 | VK_HELP=Hilfe
67 | VK_BACK=Zurück
68 | VK_TAB=Tab
69 | VK_CLEAR=Leeren
70 | VK_RETURN=Eingabe
71 | VK_ENTER=Enter
72 | VK_PAUSE=Pause
73 | VK_CAPS_LOCK=Feststell
74 | VK_ESCAPE=Esc
75 | VK_SPACE=Leertaste
76 | VK_PAGE_UP=Bild hoch
77 | VK_PAGE_DOWN=Bild runter
78 | VK_END=Ende
79 | VK_HOME=Pos 1
80 | VK_LEFT=Links
81 | VK_UP=Hoch
82 | VK_RIGHT=Rechts
83 | VK_DOWN=Runter
84 | VK_PRINTSCREEN=Druck
85 | VK_INSERT=Einfg
86 | VK_DELETE=Entf
87 | VK_NUM_LOCK=Num
88 | VK_SCROLL_LOCK=Rollen
89 |
--------------------------------------------------------------------------------
/chrome/locale/el-GR/autofillForms.dtd:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
8 |
9 |
10 |
11 |
12 |
13 |
14 |
15 |
16 |
17 |
18 |
19 |
20 |
21 |
22 |
23 |
24 |
25 |
26 |
27 |
28 |
29 |
30 |
31 |
32 |
33 |
34 |
35 |
36 |
37 |
38 |
39 |
40 |
41 |
42 |
43 |
44 |
45 |
46 |
47 |
48 |
49 |
50 |
51 |
52 |
53 |
54 |
55 |
56 |
57 |
58 |
59 |
60 |
61 |
62 |
63 |
64 |
65 |
66 |
67 |
68 |
69 |
70 |
71 |
72 |
73 |
74 |
75 |
76 |
77 |
78 |
79 |
80 |
81 |
82 |
83 |
84 |
85 |
86 |
87 |
88 |
89 |
90 |
91 |
92 |
93 |
94 |
95 |
96 |
97 |
98 |
99 |
100 |
101 |
102 |
103 |
--------------------------------------------------------------------------------
/chrome/locale/el-GR/autofillForms.properties:
--------------------------------------------------------------------------------
1 | extensions.autofillForms@blueimp.net.description=Αυτόματη συμπλήρωση ηλεκτρονικών φορμών
2 | extensions.autofillForms@blueimp.net.shortcut=alt+J
3 | extensions.autofillForms@blueimp.net.shortcutSubmit=
4 | extensions.autofillForms@blueimp.net.shortcutAllTabs=
5 | extensions.autofillForms@blueimp.net.shortcutFromProfileSelection=
6 | extensions.autofillForms@blueimp.net.shortcutProfile=control+alt+J
7 | extensions.autofillForms@blueimp.net.shortcutSettings=control+alt+shift+J
8 | extensions.autofillForms@blueimp.net.shortcutDisplayFormDetails=
9 | extensions.autofillForms@blueimp.net.fieldRules=Username (?:(?:user)|(?:login))(?!\\w*pass) (?:) true true\nE-mail mail (?:) true true\nTitle (?:prefix\\w*name)|(?:name\\w*prefix)|(?:title) (?:) true true\nFirst name (?:first\\w*name)|(?:name\\w*first) (?:) true true\nMiddle name (?:middle\\w*name)|(?:name\\w*middle) (?:) true true\nLast name (?:last\\w*name)|(?:name\\w*last) (?:) true true\nName suffix (?:suffix\\w*name)|(?:name\\w*suffix) (?:) true true\n(Full) name name (?:) true true\nStreet (Line 1) (?:(?:street)|(?:addr))\\w*1 (?:) true true\nStreet (Line 2) (?:(?:street)|(?:addr))\\w*2 (?:) true true\nStreet (Line 3) (?:(?:street)|(?:addr))\\w*3 (?:) true true\n(Full) street (?:street)|(?:addr) (?:) true true\nCity city (?:) true true\nState (?:state)|(?:prov)|(?:region) (?:) true true\nZIP/Postal code (?:zip)|(?:post\\w*code) (?:) true true\nCountry Code country\\w*code (?:) true true\nCountry country (?:) true true\nLanguage lang (?:) true true\nBirth Day (?:bday)|(?:birth\\w?day)|(?:dob\\w?day)|(?:birth\\w*1) (?:) true true\nBirth Month (?:bmon)|(?:birth\\w?mon)|(?:dob\\w?mon)|(?:birth\\w*2) (?:) true true\nBirth Year (?:byear)|(?:birth\\w?year)|(?:dob\\w?year)|(?:birth\\w*3) (?:) true true\nCompany company (?:) true true\nOccupation (?:occupation)|(?:job) (?:) true true\nPhone (?:phone)|(?:tel) (?:) true true\nHomepage (?:web)|(?:homepage)|(?:www)|(?:url) (?:) true true
10 | extensions.autofillForms@blueimp.net.profileLabels=Προεπιλογή
11 | extensions.autofillForms@blueimp.net.dynamicTags=
12 | extensions.autofillForms@blueimp.net.dynamicTagCodes=new Date().toLocaleString() navigator.userAgent navigator.language screen.width+'x'+screen.height this.getClipboardText()
13 | extensions.autofillForms@blueimp.net.regExpPasswordLabel=(?:pass)
14 | tooltip=Fill out forms
15 | tooltipSubmit=Fill out and submit forms
16 | tooltipAllTabs=Fill out forms on all tabs
17 | tooltipFromProfileSelection=Fill out forms from profile selection
18 | tooltipProfile=Profile Switcher
19 | tooltipSettings=Settings
20 | tooltipDisplayFormDetails=Display Form Details
21 | currentProfileLabel=Τρέχον προφίλ:
22 | profileSelectionWindowTitle=Αλλαγή Προφίλ
23 | profileSelectionFormFillTitle=Fill out forms
24 | profileSelectionPrompt=Επιλογή Προφίλ:
25 | contextMenuMore=More...
26 | invalidRegExpTitle=Μη έγκυρη φράση
27 | invalidRegExpText=Η εισαγμένη φράση δεν είναι έγκυρη:
28 | containsRuleType=περιέχει
29 | beginsWithRuleType=ξεκινάει με
30 | endsWithRuleType=τελειώνει σε
31 | equalsRuleType=ισούται με
32 | alternativesSelectionWindowTitle=Εναλλακτική επιλογή
33 | alternativesSelectionPrompt=Εναλλακτική επιλογή:
34 | importProfile=Εισαγωγή Προφίλ
35 | exportProfile=Εξαγωγή Προφίλ
36 | importDynamicTags=Import Dynamic Tags
37 | exportDynamicTags=Export Dynamic Tags
38 | removeProfileTitle=Αφαίρεση προφίλ
39 | removeProfileText=Διαγραφή του τρέχοντος προφίλ;
40 | removeFieldRulesTitle=Αφαίρεση κανόνων πεδίου
41 | removeFieldRulesText=Διαγραφή των επιλεγμένων κανόνων πεδίου;
42 | sortFieldRulesTitle=Sort field rules
43 | sortFieldRulesText=Really set a new order for the field rules?
44 | removeRuleConditionTitle=Αφαίρεση συνθήκης κανόνα
45 | removeRuleConditionText=Διαγραφή της επιλεγμένης συνθήκης κανόνα;
46 | removeDynamicTagTitle=Αφαίρεση δυναμικής ετικέτας
47 | removeDynamicTagText=Διαγραφή της επιλεγμένης δυναμικής ετικέτας;
48 | resetAllProfilesTitle=Reset all profiles
49 | resetAllProfilesText=Really reset all profiles?
50 | selectConfigDirectory=Select config directory
51 | newConfigDirectoryNotEmptyTitle=Directory not empty
52 | newConfigDirectoryNotEmptyText=The new config directory is not empty. Do you want to overwrite existing config files?
53 | importFromConfigDirectoryTitle=Import from config directory
54 | importFromConfigDirectoryText=Do you want to overwrite the profiles with the data from the config directory?
55 | command=Command
56 | mousebutton=Mouse Button
57 | mousebutton0=Left Mouse Button
58 | mousebutton1=Middle Mouse Button
59 | mousebutton2=Right Mouse Button
60 | keyboardShortcut=Keyboard Shortcut
61 | alt=Alt
62 | control=Ctrl
63 | meta=Cmd
64 | shift=Shift
65 | VK_CANCEL=Ακύρωση
66 | VK_HELP=Βοήθεια
67 | VK_BACK=Πίσω
68 | VK_TAB=Tab
69 | VK_CLEAR=Καθαρισμός
70 | VK_RETURN=Επιστροφή
71 | VK_ENTER=Enter
72 | VK_PAUSE=Pause
73 | VK_CAPS_LOCK=Caps Lock
74 | VK_ESCAPE=Esc
75 | VK_SPACE=Διάστημα
76 | VK_PAGE_UP=Page up
77 | VK_PAGE_DOWN=Page down
78 | VK_END=End
79 | VK_HOME=Home
80 | VK_LEFT=Αριστερό βέλος
81 | VK_UP=Πάνω βέλος
82 | VK_RIGHT=Δεξιό βέλος
83 | VK_DOWN=Κάτω βέλος
84 | VK_PRINTSCREEN=Print Scrn
85 | VK_INSERT=Insert
86 | VK_DELETE=Delete
87 | VK_NUM_LOCK=Num Lock
88 | VK_SCROLL_LOCK=Scroll Lock
89 |
--------------------------------------------------------------------------------
/chrome/locale/en-US/autofillForms.dtd:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
8 |
9 |
10 |
11 |
12 |
13 |
14 |
15 |
16 |
17 |
18 |
19 |
20 |
21 |
22 |
23 |
24 |
25 |
26 |
27 |
28 |
29 |
30 |
31 |
32 |
33 |
34 |
35 |
36 |
37 |
38 |
39 |
40 |
41 |
42 |
43 |
44 |
45 |
46 |
47 |
48 |
49 |
50 |
51 |
52 |
53 |
54 |
55 |
56 |
57 |
58 |
59 |
60 |
61 |
62 |
63 |
64 |
65 |
66 |
67 |
68 |
69 |
70 |
71 |
72 |
73 |
74 |
75 |
76 |
77 |
78 |
79 |
80 |
81 |
82 |
83 |
84 |
85 |
86 |
87 |
88 |
89 |
90 |
91 |
92 |
93 |
94 |
95 |
96 |
97 |
98 |
99 |
100 |
101 |
102 |
103 |
--------------------------------------------------------------------------------
/chrome/locale/en-US/autofillForms.properties:
--------------------------------------------------------------------------------
1 | extensions.autofillForms@blueimp.net.description=Fill out web forms automatically
2 | extensions.autofillForms@blueimp.net.shortcut=alt+J
3 | extensions.autofillForms@blueimp.net.shortcutSubmit=
4 | extensions.autofillForms@blueimp.net.shortcutAllTabs=
5 | extensions.autofillForms@blueimp.net.shortcutFromProfileSelection=
6 | extensions.autofillForms@blueimp.net.shortcutProfile=control+alt+J
7 | extensions.autofillForms@blueimp.net.shortcutSettings=control+alt+shift+J
8 | extensions.autofillForms@blueimp.net.shortcutDisplayFormDetails=
9 | extensions.autofillForms@blueimp.net.fieldRules=Username (?:(?:user)|(?:login))(?!\\w*pass) (?:) true true\nE-mail mail (?:) true true\nTitle (?:prefix\\w*name)|(?:name\\w*prefix)|(?:title) (?:) true true\nFirst name (?:first\\w*name)|(?:name\\w*first) (?:) true true\nMiddle name (?:middle\\w*name)|(?:name\\w*middle) (?:) true true\nLast name (?:last\\w*name)|(?:name\\w*last) (?:) true true\nName suffix (?:suffix\\w*name)|(?:name\\w*suffix) (?:) true true\n(Full) name name (?:) true true\nStreet (Line 1) (?:(?:street)|(?:addr))\\w*1 (?:) true true\nStreet (Line 2) (?:(?:street)|(?:addr))\\w*2 (?:) true true\nStreet (Line 3) (?:(?:street)|(?:addr))\\w*3 (?:) true true\n(Full) street (?:street)|(?:addr) (?:) true true\nCity city (?:) true true\nState (?:state)|(?:prov)|(?:region) (?:) true true\nZIP/Postal code (?:zip)|(?:post\\w*code) (?:) true true\nCountry Code country\\w*code (?:) true true\nCountry country (?:) true true\nLanguage lang (?:) true true\nBirth Day (?:bday)|(?:birth\\w?day)|(?:dob\\w?day)|(?:birth\\w*1) (?:) true true\nBirth Month (?:bmon)|(?:birth\\w?mon)|(?:dob\\w?mon)|(?:birth\\w*2) (?:) true true\nBirth Year (?:byear)|(?:birth\\w?year)|(?:dob\\w?year)|(?:birth\\w*3) (?:) true true\nCompany company (?:) true true\nOccupation (?:occupation)|(?:job) (?:) true true\nPhone (?:phone)|(?:tel) (?:) true true\nHomepage (?:web)|(?:homepage)|(?:www)|(?:url) (?:) true true
10 | extensions.autofillForms@blueimp.net.profileLabels=Default
11 | extensions.autofillForms@blueimp.net.dynamicTags=
12 | extensions.autofillForms@blueimp.net.dynamicTagCodes=new Date().toLocaleString() navigator.userAgent navigator.language screen.width+'x'+screen.height this.getClipboardText()
13 | extensions.autofillForms@blueimp.net.regExpPasswordLabel=(?:pass)
14 | tooltip=Fill out forms
15 | tooltipSubmit=Fill out and submit forms
16 | tooltipAllTabs=Fill out forms on all tabs
17 | tooltipFromProfileSelection=Fill out forms from profile selection
18 | tooltipProfile=Profile Switcher
19 | tooltipSettings=Settings
20 | tooltipDisplayFormDetails=Display Form Details
21 | currentProfileLabel=Current profile:
22 | profileSelectionWindowTitle=Switch Profile
23 | profileSelectionFormFillTitle=Fill out forms
24 | profileSelectionPrompt=Select Profile:
25 | contextMenuMore=More...
26 | invalidRegExpTitle=Invalid regular expression
27 | invalidRegExpText=The entered regular expression is not valid:
28 | containsRuleType=contains
29 | beginsWithRuleType=begins with
30 | endsWithRuleType=ends with
31 | equalsRuleType=equals
32 | alternativesSelectionWindowTitle=Select alternative
33 | alternativesSelectionPrompt=Select alternative:
34 | importProfile=Import Profile
35 | exportProfile=Export Profile
36 | importDynamicTags=Import Dynamic Tags
37 | exportDynamicTags=Export Dynamic Tags
38 | removeProfileTitle=Remove profile
39 | removeProfileText=Really delete the current profile?
40 | removeFieldRulesTitle=Remove field rules
41 | removeFieldRulesText=Really delete the selected field rules?
42 | sortFieldRulesTitle=Sort field rules
43 | sortFieldRulesText=Really set a new order for the field rules?
44 | removeRuleConditionTitle=Remove rule condition
45 | removeRuleConditionText=Really delete the selected rule condition?
46 | removeDynamicTagTitle=Remove dynamic tag
47 | removeDynamicTagText=Really delete the selected dynamic tag?
48 | resetAllProfilesTitle=Reset all profiles
49 | resetAllProfilesText=Really reset all profiles?
50 | selectConfigDirectory=Select config directory
51 | newConfigDirectoryNotEmptyTitle=Directory not empty
52 | newConfigDirectoryNotEmptyText=The new config directory is not empty. Do you want to overwrite existing config files?
53 | importFromConfigDirectoryTitle=Import from config directory
54 | importFromConfigDirectoryText=Do you want to overwrite the profiles with the data from the config directory?
55 | command=Command
56 | mousebutton=Mouse Button
57 | mousebutton0=Left Mouse Button
58 | mousebutton1=Middle Mouse Button
59 | mousebutton2=Right Mouse Button
60 | keyboardShortcut=Keyboard Shortcut
61 | alt=Alt
62 | control=Ctrl
63 | meta=Cmd
64 | shift=Shift
65 | VK_CANCEL=Cancel
66 | VK_HELP=Help
67 | VK_BACK=Back
68 | VK_TAB=Tab
69 | VK_CLEAR=Clear
70 | VK_RETURN=Return
71 | VK_ENTER=Enter
72 | VK_PAUSE=Pause
73 | VK_CAPS_LOCK=Caps Lock
74 | VK_ESCAPE=Esc
75 | VK_SPACE=Space
76 | VK_PAGE_UP=Page up
77 | VK_PAGE_DOWN=Page down
78 | VK_END=End
79 | VK_HOME=Home
80 | VK_LEFT=Left
81 | VK_UP=Up
82 | VK_RIGHT=Right
83 | VK_DOWN=Down
84 | VK_PRINTSCREEN=Print Scrn
85 | VK_INSERT=Insert
86 | VK_DELETE=Delete
87 | VK_NUM_LOCK=Num Lock
88 | VK_SCROLL_LOCK=Scroll Lock
89 |
--------------------------------------------------------------------------------
/chrome/locale/es-ES/autofillForms.dtd:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
8 |
9 |
10 |
11 |
12 |
13 |
14 |
15 |
16 |
17 |
18 |
19 |
20 |
21 |
22 |
23 |
24 |
25 |
26 |
27 |
28 |
29 |
30 |
31 |
32 |
33 |
34 |
35 |
36 |
37 |
38 |
39 |
40 |
41 |
42 |
43 |
44 |
45 |
46 |
47 |
48 |
49 |
50 |
51 |
52 |
53 |
54 |
55 |
56 |
57 |
58 |
59 |
60 |
61 |
62 |
63 |
64 |
65 |
66 |
67 |
68 |
69 |
70 |
71 |
72 |
73 |
74 |
75 |
76 |
77 |
78 |
79 |
80 |
81 |
82 |
83 |
84 |
85 |
86 |
87 |
88 |
89 |
90 |
91 |
92 |
93 |
94 |
95 |
96 |
97 |
98 |
99 |
100 |
101 |
102 |
103 |
--------------------------------------------------------------------------------
/chrome/locale/es-ES/autofillForms.properties:
--------------------------------------------------------------------------------
1 | extensions.autofillForms@blueimp.net.description=Rellena formularios web automáticamente
2 | extensions.autofillForms@blueimp.net.shortcut=alt+J
3 | extensions.autofillForms@blueimp.net.shortcutSubmit=
4 | extensions.autofillForms@blueimp.net.shortcutAllTabs=
5 | extensions.autofillForms@blueimp.net.shortcutFromProfileSelection=
6 | extensions.autofillForms@blueimp.net.shortcutProfile=control+alt+J
7 | extensions.autofillForms@blueimp.net.shortcutSettings=control+alt+shift+J
8 | extensions.autofillForms@blueimp.net.shortcutDisplayFormDetails=
9 | extensions.autofillForms@blueimp.net.fieldRules=Username (?:(?:user)|(?:login))(?!\\w*pass) (?:) true true\nE-mail mail (?:) true true\nTitle (?:prefix\\w*name)|(?:name\\w*prefix)|(?:title) (?:) true true\nFirst name (?:first\\w*name)|(?:name\\w*first) (?:) true true\nMiddle name (?:middle\\w*name)|(?:name\\w*middle) (?:) true true\nLast name (?:last\\w*name)|(?:name\\w*last) (?:) true true\nName suffix (?:suffix\\w*name)|(?:name\\w*suffix) (?:) true true\n(Full) name name (?:) true true\nStreet (Line 1) (?:(?:street)|(?:addr))\\w*1 (?:) true true\nStreet (Line 2) (?:(?:street)|(?:addr))\\w*2 (?:) true true\nStreet (Line 3) (?:(?:street)|(?:addr))\\w*3 (?:) true true\n(Full) street (?:street)|(?:addr) (?:) true true\nCity city (?:) true true\nState (?:state)|(?:prov)|(?:region) (?:) true true\nZIP/Postal code (?:zip)|(?:post\\w*code) (?:) true true\nCountry Code country\\w*code (?:) true true\nCountry country (?:) true true\nLanguage lang (?:) true true\nBirth Day (?:bday)|(?:birth\\w?day)|(?:dob\\w?day)|(?:birth\\w*1) (?:) true true\nBirth Month (?:bmon)|(?:birth\\w?mon)|(?:dob\\w?mon)|(?:birth\\w*2) (?:) true true\nBirth Year (?:byear)|(?:birth\\w?year)|(?:dob\\w?year)|(?:birth\\w*3) (?:) true true\nCompany company (?:) true true\nOccupation (?:occupation)|(?:job) (?:) true true\nPhone (?:phone)|(?:tel) (?:) true true\nHomepage (?:web)|(?:homepage)|(?:www)|(?:url) (?:) true true
10 | extensions.autofillForms@blueimp.net.profileLabels=Por Defecto
11 | extensions.autofillForms@blueimp.net.dynamicTags=
12 | extensions.autofillForms@blueimp.net.dynamicTagCodes=new Date().toLocaleString() navigator.userAgent navigator.language screen.width+'x'+screen.height this.getClipboardText()
13 | extensions.autofillForms@blueimp.net.regExpPasswordLabel=(?:pass)
14 | tooltip=Fill out forms
15 | tooltipSubmit=Fill out and submit forms
16 | tooltipAllTabs=Fill out forms on all tabs
17 | tooltipFromProfileSelection=Fill out forms from profile selection
18 | tooltipProfile=Profile Switcher
19 | tooltipSettings=Settings
20 | tooltipDisplayFormDetails=Display Form Details
21 | currentProfileLabel=Perfil actual:
22 | profileSelectionWindowTitle=Cambiar Perfil
23 | profileSelectionFormFillTitle=Fill out forms
24 | profileSelectionPrompt=Seleccionar Perfil:
25 | contextMenuMore=More...
26 | invalidRegExpTitle=Expresión regular inválida
27 | invalidRegExpText=La expresión regular ingresada es inválida:
28 | containsRuleType=contiene
29 | beginsWithRuleType=empieza en
30 | endsWithRuleType=termina en
31 | equalsRuleType=igual a
32 | alternativesSelectionWindowTitle=Seleccionar alternativa:
33 | alternativesSelectionPrompt=Seleccionar alternativa:
34 | importProfile=Importar Perfil
35 | exportProfile=Exportar Perfil
36 | importDynamicTags=Import Dynamic Tags
37 | exportDynamicTags=Export Dynamic Tags
38 | removeProfileTitle=Eliminar perfil
39 | removeProfileText=Realmente deseas eliminar el perfil actual?
40 | removeFieldRulesTitle=Remove field rules
41 | removeFieldRulesText=Really delete the selected field rules?
42 | sortFieldRulesTitle=Sort field rules
43 | sortFieldRulesText=Really set a new order for the field rules?
44 | removeRuleConditionTitle=Remove rule condition
45 | removeRuleConditionText=Really delete the selected rule condition?
46 | removeDynamicTagTitle=Remove dynamic tag
47 | removeDynamicTagText=Really delete the selected dynamic tag?
48 | resetAllProfilesTitle=Reset all profiles
49 | resetAllProfilesText=Really reset all profiles?
50 | selectConfigDirectory=Select config directory
51 | newConfigDirectoryNotEmptyTitle=Directory not empty
52 | newConfigDirectoryNotEmptyText=The new config directory is not empty. Do you want to overwrite existing config files?
53 | importFromConfigDirectoryTitle=Import from config directory
54 | importFromConfigDirectoryText=Do you want to overwrite the profiles with the data from the config directory?
55 | command=Command
56 | mousebutton=Mouse Button
57 | mousebutton0=Left Mouse Button
58 | mousebutton1=Middle Mouse Button
59 | mousebutton2=Right Mouse Button
60 | keyboardShortcut=Keyboard Shortcut
61 | alt=Alt
62 | control=Ctrl
63 | meta=Meta
64 | shift=Shift
65 | VK_CANCEL=Cancelar
66 | VK_HELP=Ayuda
67 | VK_BACK=Atras
68 | VK_TAB=Tab
69 | VK_CLEAR=Borrar
70 | VK_RETURN=Atras
71 | VK_ENTER=Entrar
72 | VK_PAUSE=Pausar
73 | VK_CAPS_LOCK=Bloq. Mayus
74 | VK_ESCAPE=Esc
75 | VK_SPACE=Espacio
76 | VK_PAGE_UP=Re. Pág.
77 | VK_PAGE_DOWN=Av. Pág
78 | VK_END=Fin
79 | VK_HOME=Inicio
80 | VK_LEFT=Izquierda
81 | VK_UP=Arriba
82 | VK_RIGHT=Derecha
83 | VK_DOWN=Abajo
84 | VK_PRINTSCREEN=Imprimir pantalla
85 | VK_INSERT=Insertar
86 | VK_DELETE=Eliminar
87 | VK_NUM_LOCK=Bloq. Num
88 | VK_SCROLL_LOCK=Bloq. Scroll
89 |
--------------------------------------------------------------------------------
/chrome/locale/fi-FI/autofillForms.dtd:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
8 |
9 |
10 |
11 |
12 |
13 |
14 |
15 |
16 |
17 |
18 |
19 |
20 |
21 |
22 |
23 |
24 |
25 |
26 |
27 |
28 |
29 |
30 |
31 |
32 |
33 |
34 |
35 |
36 |
37 |
38 |
39 |
40 |
41 |
42 |
43 |
44 |
45 |
46 |
47 |
48 |
49 |
50 |
51 |
52 |
53 |
54 |
55 |
56 |
57 |
58 |
59 |
60 |
61 |
62 |
63 |
64 |
65 |
66 |
67 |
68 |
69 |
70 |
71 |
72 |
73 |
74 |
75 |
76 |
77 |
78 |
79 |
80 |
81 |
82 |
83 |
84 |
85 |
86 |
87 |
88 |
89 |
90 |
91 |
92 |
93 |
94 |
95 |
96 |
97 |
98 |
99 |
100 |
101 |
102 |
103 |
--------------------------------------------------------------------------------
/chrome/locale/fi-FI/autofillForms.properties:
--------------------------------------------------------------------------------
1 | extensions.autofillForms@blueimp.net.description=Täytä Internet-lomakkeet automaattisesti
2 | extensions.autofillForms@blueimp.net.shortcut=alt+J
3 | extensions.autofillForms@blueimp.net.shortcutSubmit=
4 | extensions.autofillForms@blueimp.net.shortcutAllTabs=
5 | extensions.autofillForms@blueimp.net.shortcutFromProfileSelection=
6 | extensions.autofillForms@blueimp.net.shortcutProfile=control+alt+J
7 | extensions.autofillForms@blueimp.net.shortcutSettings=control+alt+shift+J
8 | extensions.autofillForms@blueimp.net.shortcutDisplayFormDetails=
9 | extensions.autofillForms@blueimp.net.fieldRules=Username (?:(?:user)|(?:login))(?!\\w*pass) (?:) true true\nE-mail mail (?:) true true\nTitle (?:prefix\\w*name)|(?:name\\w*prefix)|(?:title) (?:) true true\nFirst name (?:first\\w*name)|(?:name\\w*first) (?:) true true\nMiddle name (?:middle\\w*name)|(?:name\\w*middle) (?:) true true\nLast name (?:last\\w*name)|(?:name\\w*last) (?:) true true\nName suffix (?:suffix\\w*name)|(?:name\\w*suffix) (?:) true true\n(Full) name name (?:) true true\nStreet (Line 1) (?:(?:street)|(?:addr))\\w*1 (?:) true true\nStreet (Line 2) (?:(?:street)|(?:addr))\\w*2 (?:) true true\nStreet (Line 3) (?:(?:street)|(?:addr))\\w*3 (?:) true true\n(Full) street (?:street)|(?:addr) (?:) true true\nCity city (?:) true true\nState (?:state)|(?:prov)|(?:region) (?:) true true\nZIP/Postal code (?:zip)|(?:post\\w*code) (?:) true true\nCountry Code country\\w*code (?:) true true\nCountry country (?:) true true\nLanguage lang (?:) true true\nBirth Day (?:bday)|(?:birth\\w?day)|(?:dob\\w?day)|(?:birth\\w*1) (?:) true true\nBirth Month (?:bmon)|(?:birth\\w?mon)|(?:dob\\w?mon)|(?:birth\\w*2) (?:) true true\nBirth Year (?:byear)|(?:birth\\w?year)|(?:dob\\w?year)|(?:birth\\w*3) (?:) true true\nCompany company (?:) true true\nOccupation (?:occupation)|(?:job) (?:) true true\nPhone (?:phone)|(?:tel) (?:) true true\nHomepage (?:web)|(?:homepage)|(?:www)|(?:url) (?:) true true
10 | extensions.autofillForms@blueimp.net.profileLabels=Oletus
11 | extensions.autofillForms@blueimp.net.dynamicTags=
12 | extensions.autofillForms@blueimp.net.dynamicTagCodes=new Date().toLocaleString() navigator.userAgent navigator.language screen.width+'x'+screen.height this.getClipboardText()
13 | extensions.autofillForms@blueimp.net.regExpPasswordLabel=(?:pass)
14 | tooltip=Fill out forms
15 | tooltipSubmit=Fill out and submit forms
16 | tooltipAllTabs=Fill out forms on all tabs
17 | tooltipFromProfileSelection=Fill out forms from profile selection
18 | tooltipProfile=Profile Switcher
19 | tooltipSettings=Settings
20 | tooltipDisplayFormDetails=Display Form Details
21 | currentProfileLabel=Nykyinen profiili:
22 | profileSelectionWindowTitle=Vaihda profiili
23 | profileSelectionFormFillTitle=Fill out forms
24 | profileSelectionPrompt=Valitse profiili
25 | contextMenuMore=More...
26 | invalidRegExpTitle=Virheellinen säännöllinen lauseke
27 | invalidRegExpText=Kirjoitettu säännöllinen lauseke on virheellinen
28 | containsRuleType=sisältää
29 | beginsWithRuleType=alkaa
30 | endsWithRuleType=loppuu
31 | equalsRuleType=on yhtä kuin
32 | alternativesSelectionWindowTitle=Valitse vaihtoehto
33 | alternativesSelectionPrompt=Valitse vaihtoehto:
34 | importProfile=Tuo profiili
35 | exportProfile=Vie profiili
36 | importDynamicTags=Import Dynamic Tags
37 | exportDynamicTags=Export Dynamic Tags
38 | removeProfileTitle=Remove profile
39 | removeProfileText=Really delete the current profile?
40 | removeFieldRulesTitle=Remove field rules
41 | removeFieldRulesText=Really delete the selected field rules?
42 | sortFieldRulesTitle=Sort field rules
43 | sortFieldRulesText=Really set a new order for the field rules?
44 | removeRuleConditionTitle=Remove rule condition
45 | removeRuleConditionText=Really delete the selected rule condition?
46 | removeDynamicTagTitle=Remove dynamic tag
47 | removeDynamicTagText=Really delete the selected dynamic tag?
48 | resetAllProfilesTitle=Reset all profiles
49 | resetAllProfilesText=Really reset all profiles?
50 | selectConfigDirectory=Select config directory
51 | newConfigDirectoryNotEmptyTitle=Directory not empty
52 | newConfigDirectoryNotEmptyText=The new config directory is not empty. Do you want to overwrite existing config files?
53 | importFromConfigDirectoryTitle=Import from config directory
54 | importFromConfigDirectoryText=Do you want to overwrite the profiles with the data from the config directory?
55 | command=Command
56 | mousebutton=Mouse Button
57 | mousebutton0=Left Mouse Button
58 | mousebutton1=Middle Mouse Button
59 | mousebutton2=Right Mouse Button
60 | keyboardShortcut=Keyboard Shortcut
61 | alt=Alt
62 | control=Ctrl
63 | meta=Cmd
64 | shift=Vaihtonäppäin
65 | VK_CANCEL=Peruuta
66 | VK_HELP=Ohje
67 | VK_BACK=Edellinen
68 | VK_TAB=Sarkain
69 | VK_CLEAR=Tyhjennä
70 | VK_RETURN=Paluu
71 | VK_ENTER=Enter
72 | VK_PAUSE=Pause
73 | VK_CAPS_LOCK=Caps Lock
74 | VK_ESCAPE=Esc
75 | VK_SPACE=Välilyönti
76 | VK_PAGE_UP=Page Up
77 | VK_PAGE_DOWN=Pade Down
78 | VK_END=End
79 | VK_HOME=Home
80 | VK_LEFT=Vasen
81 | VK_UP=Ylös
82 | VK_RIGHT=Oikea
83 | VK_DOWN=Alas
84 | VK_PRINTSCREEN=Print Scrn
85 | VK_INSERT=Insert
86 | VK_DELETE=Delete
87 | VK_NUM_LOCK=Num Lock
88 | VK_SCROLL_LOCK=Scroll Lock
89 |
--------------------------------------------------------------------------------
/chrome/locale/fr-FR/autofillForms.properties:
--------------------------------------------------------------------------------
1 | extensions.autofillForms@blueimp.net.description=Remplissage automatique de formulaires Web
2 | extensions.autofillForms@blueimp.net.shortcut=alt+J
3 | extensions.autofillForms@blueimp.net.shortcutSubmit=
4 | extensions.autofillForms@blueimp.net.shortcutAllTabs=
5 | extensions.autofillForms@blueimp.net.shortcutFromProfileSelection=
6 | extensions.autofillForms@blueimp.net.shortcutProfile=control+alt+J
7 | extensions.autofillForms@blueimp.net.shortcutSettings=control+alt+shift+J
8 | extensions.autofillForms@blueimp.net.shortcutDisplayFormDetails=
9 | extensions.autofillForms@blueimp.net.fieldRules=Nom d'utilisateur (?:(?:user)|(?:login)|(?:utilisateur))(?!\\w*pass) (?:) true true\nCourriel (?:mail)|(?:courriel) (?:) true true\nTitre (?:prefix\\w*name)|(?:name\\w*prefix)|(?:title)|(?:titre) (?:) true true\nPrénom (?:first\\w*name)|(?:name\\w*first)|(?:prenom) (?:) true true\nAutre prénom (?:middle\\w*name)|(?:name\\w*middle)|(?:autre\\w*prenom) (?:) true true\nNom de famille (?:last\\w*name)|(?:name\\w*last)|(?:nom\\w*famille) (?:) true true\nSuffixe (?:suffix\\w*name)|(?:name\\w*suffix)|(?:suffixe) (?:) true true\nNom complet (?:name)|(?:nom) (?:) true true\nAdresse (ligne 1) (?:(?:street)|(?:addr)|(?:adr))\\w*1 (?:) true true\nAdresse (ligne 2) (?:(?:street)|(?:addr)|(?:adr))\\w*2 (?:) true true\nAdresse (ligne 3) (?:(?:street)|(?:addr)|(?:adr))\\w*3 (?:) true true\nAdresse (complète) (?:street)|(?:addr)|(?:adr) (?:) true true\nVille (?:city)|(?:ville)|(?:cite) (?:) true true\nDépartement (?:state)|(?:prov)|(?:departement)|(?:region) (?:) true true\nCode postal (?:zip)|(?:post\\w*code)|(?:code\\w*post) (?:) true true\nCode du pays (?:country\\w*code)|(?:code\\w*pays) (?:) true true\nPays (?:country)|(?:pays) (?:) true true\nLangue lang (?:) true true\nDate de naissance (?:bday)|(?:birth\\w?day)|(?:dob\\w?day)|(?:birth\\w*1) (?:) true true\nMois de naissance (?:bmon)|(?:birth\\w?mon)|(?:dob\\w?mon)|(?:birth\\w*2) (?:) true true\nAnnée de naissance (?:byear)|(?:birth\\w?year)|(?:dob\\w?year)|(?:birth\\w*3) (?:) true true\nEntreprise (?:company)|(?:entreprise) (?:) true true\nEmploi (?:occupation)|(?:job)|(?:emploi) (?:) true true\nTéléphone (?:phone)|(?:tel) (?:) true true\nSite Web (?:web)|(?:homepage)|(?:www)|(?:url) (?:) true true
10 | extensions.autofillForms@blueimp.net.profileLabels=Par défaut
11 | extensions.autofillForms@blueimp.net.dynamicTags=
12 | extensions.autofillForms@blueimp.net.dynamicTagCodes=new Date().toLocaleString() navigator.userAgent navigator.language screen.width+'x'+screen.height this.getClipboardText()
13 | extensions.autofillForms@blueimp.net.regExpPasswordLabel=(?:pass)
14 | tooltip=Remplir les formulaires
15 | tooltipSubmit=Remplir et soumettre les formulaires
16 | tooltipAllTabs=Remplir les formulaires dans tous les onglets
17 | tooltipFromProfileSelection=Remplir les formulaires à partir de la sélection du profil
18 | tooltipProfile=Gestionnaire de profils
19 | tooltipSettings=Paramètres
20 | tooltipDisplayFormDetails=Afficher les détails du formulaire
21 | currentProfileLabel=Profil actuel :
22 | profileSelectionWindowTitle=Changer de profil
23 | profileSelectionFormFillTitle=Remplir les formulaires
24 | profileSelectionPrompt=Sélectionner le profil :
25 | contextMenuMore=Plus…
26 | invalidRegExpTitle=Expression régulière non valide
27 | invalidRegExpText=L'expression régulière que vous avez entrée n'est pas valable :
28 | containsRuleType=contient
29 | beginsWithRuleType=commence par
30 | endsWithRuleType=finit par
31 | equalsRuleType=vaut exactement
32 | alternativesSelectionWindowTitle=Sélectionner une alternative
33 | alternativesSelectionPrompt=Sélectionnez une alternative :
34 | importProfile=Importer un profil
35 | exportProfile=Exporter le profil
36 | importDynamicTags=Import Dynamic Tags
37 | exportDynamicTags=Export Dynamic Tags
38 | removeProfileTitle=Supprimer le profil
39 | removeProfileText=Voulez-vous vraiment supprimer le profil en cours ?
40 | removeFieldRulesTitle=Supprimer des règles
41 | removeFieldRulesText=Voulez-vous vraiment supprimer la ou les règles sélectionnées ?
42 | sortFieldRulesTitle=Trier les règles
43 | sortFieldRulesText=Voulez-vous vraiment réorganiser les règles ?
44 | removeRuleConditionTitle=Supprimer des conditions
45 | removeRuleConditionText=Voulez-vous vraiment supprimer la ou les conditions sélectionnées ?
46 | removeDynamicTagTitle=Enlever la balise dynamique
47 | removeDynamicTagText=Voulez-vous vraiment effacer la ou les balises dynamiques sélectionnées ?
48 | resetAllProfilesTitle=Réinitialiser tous les profils
49 | resetAllProfilesText=Voulez-vous vraiment réinitialiser tous les profils ?
50 | selectConfigDirectory=Choisir le dossier de configuration
51 | newConfigDirectoryNotEmptyTitle=Dossier non vide
52 | newConfigDirectoryNotEmptyText=Le nouveau dossier de configuration n'est pas vide. Voulez-vous écraser les fichiers de configuration existants ?
53 | importFromConfigDirectoryTitle=Importer depuis le dossier de configuration
54 | importFromConfigDirectoryText=Voulez-vous écraser les profils en utilisant les données du dossier de configuration ?
55 | command=Commande
56 | mousebutton=Bouton de souris
57 | mousebutton0=Bouton gauche de la souris
58 | mousebutton1=Bouton central de la souris
59 | mousebutton2=Bouton droit de la souris
60 | keyboardShortcut=Raccourci clavier
61 | alt=Alt
62 | control=Ctrl
63 | meta=Méta
64 | shift=Maj
65 | VK_CANCEL=Annuler
66 | VK_HELP=Aide
67 | VK_BACK=Retour
68 | VK_TAB=Tab
69 | VK_CLEAR=Effacer
70 | VK_RETURN=Entrée
71 | VK_ENTER=Entrée
72 | VK_PAUSE=Pause
73 | VK_CAPS_LOCK=Verr. maj.
74 | VK_ESCAPE=Échap
75 | VK_SPACE=Espace
76 | VK_PAGE_UP=Page préc.
77 | VK_PAGE_DOWN=Page suiv.
78 | VK_END=Fin
79 | VK_HOME=Début
80 | VK_LEFT=Gauche
81 | VK_UP=Haut
82 | VK_RIGHT=Droite
83 | VK_DOWN=Bas
84 | VK_PRINTSCREEN=Impr. écran
85 | VK_INSERT=Inser.
86 | VK_DELETE=Suppr.
87 | VK_NUM_LOCK=Verr. num.
88 | VK_SCROLL_LOCK=Arrêt défil.
89 |
--------------------------------------------------------------------------------
/chrome/locale/he-IL/autofillForms.dtd:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
8 |
9 |
10 |
11 |
12 |
13 |
14 |
15 |
16 |
17 |
18 |
19 |
20 |
21 |
22 |
23 |
24 |
25 |
26 |
27 |
28 |
29 |
30 |
31 |
32 |
33 |
34 |
35 |
36 |
37 |
38 |
39 |
40 |
41 |
42 |
43 |
44 |
45 |
46 |
47 |
48 |
49 |
50 |
51 |
52 |
53 |
54 |
55 |
56 |
57 |
58 |
59 |
60 |
61 |
62 |
63 |
64 |
65 |
66 |
67 |
68 |
69 |
70 |
71 |
72 |
73 |
74 |
75 |
76 |
77 |
78 |
79 |
80 |
81 |
82 |
83 |
84 |
85 |
86 |
87 |
88 |
89 |
90 |
91 |
92 |
93 |
94 |
95 |
96 |
97 |
98 |
99 |
100 |
101 |
102 |
103 |
--------------------------------------------------------------------------------
/chrome/locale/he-IL/autofillForms.properties:
--------------------------------------------------------------------------------
1 | extensions.autofillForms@blueimp.net.description=מלא את השדות אוטומטית
2 | extensions.autofillForms@blueimp.net.shortcut=alt+J
3 | extensions.autofillForms@blueimp.net.shortcutSubmit=
4 | extensions.autofillForms@blueimp.net.shortcutAllTabs=
5 | extensions.autofillForms@blueimp.net.shortcutFromProfileSelection=
6 | extensions.autofillForms@blueimp.net.shortcutProfile=control+alt+J
7 | extensions.autofillForms@blueimp.net.shortcutSettings=control+alt+shift+J
8 | extensions.autofillForms@blueimp.net.shortcutDisplayFormDetails=
9 | extensions.autofillForms@blueimp.net.fieldRules=Username (?:(?:user)|(?:login))(?!\\w*pass) (?:) true true\nE-mail mail (?:) true true\nTitle (?:prefix\\w*name)|(?:name\\w*prefix)|(?:title) (?:) true true\nFirst name (?:first\\w*name)|(?:name\\w*first) (?:) true true\nMiddle name (?:middle\\w*name)|(?:name\\w*middle) (?:) true true\nLast name (?:last\\w*name)|(?:name\\w*last) (?:) true true\nName suffix (?:suffix\\w*name)|(?:name\\w*suffix) (?:) true true\n(Full) name name (?:) true true\nStreet (Line 1) (?:(?:street)|(?:addr))\\w*1 (?:) true true\nStreet (Line 2) (?:(?:street)|(?:addr))\\w*2 (?:) true true\nStreet (Line 3) (?:(?:street)|(?:addr))\\w*3 (?:) true true\n(Full) street (?:street)|(?:addr) (?:) true true\nCity city (?:) true true\nState (?:state)|(?:prov)|(?:region) (?:) true true\nZIP/Postal code (?:zip)|(?:post\\w*code) (?:) true true\nCountry Code country\\w*code (?:) true true\nCountry country (?:) true true\nLanguage lang (?:) true true\nBirth Day (?:bday)|(?:birth\\w?day)|(?:dob\\w?day)|(?:birth\\w*1) (?:) true true\nBirth Month (?:bmon)|(?:birth\\w?mon)|(?:dob\\w?mon)|(?:birth\\w*2) (?:) true true\nBirth Year (?:byear)|(?:birth\\w?year)|(?:dob\\w?year)|(?:birth\\w*3) (?:) true true\nCompany company (?:) true true\nOccupation (?:occupation)|(?:job) (?:) true true\nPhone (?:phone)|(?:tel) (?:) true true\nHomepage (?:web)|(?:homepage)|(?:www)|(?:url) (?:) true true
10 | extensions.autofillForms@blueimp.net.profileLabels=ברירת מחדל
11 | extensions.autofillForms@blueimp.net.dynamicTags=
12 | extensions.autofillForms@blueimp.net.dynamicTagCodes=new Date().toLocaleString() navigator.userAgent navigator.language screen.width+'x'+screen.height this.getClipboardText()
13 | extensions.autofillForms@blueimp.net.regExpPasswordLabel=(?:pass)
14 | tooltip=Fill out forms
15 | tooltipSubmit=Fill out and submit forms
16 | tooltipAllTabs=Fill out forms on all tabs
17 | tooltipFromProfileSelection=Fill out forms from profile selection
18 | tooltipProfile=Profile Switcher
19 | tooltipSettings=Settings
20 | tooltipDisplayFormDetails=Display Form Details
21 | currentProfileLabel=Current profile:החלף משתמש
22 | profileSelectionWindowTitle=החלף משתמש
23 | profileSelectionFormFillTitle=Fill out forms
24 | profileSelectionPrompt=פתח עזרה
25 | contextMenuMore=More...
26 | invalidRegExpTitle=Invalid regular expression
27 | invalidRegExpText=The entered regular expression is not valid:
28 | containsRuleType=contains
29 | beginsWithRuleType=begins with
30 | endsWithRuleType=ends with
31 | equalsRuleType=equals
32 | alternativesSelectionWindowTitle=Select alternative
33 | alternativesSelectionPrompt=Select alternative:
34 | importProfile=Import Profile
35 | exportProfile=Export Profile
36 | importDynamicTags=Import Dynamic Tags
37 | exportDynamicTags=Export Dynamic Tags
38 | removeProfileTitle=Remove profile
39 | removeProfileText=Really delete the current profile?
40 | removeFieldRulesTitle=Remove field rules
41 | removeFieldRulesText=Really delete the selected field rules?
42 | sortFieldRulesTitle=Sort field rules
43 | sortFieldRulesText=Really set a new order for the field rules?
44 | removeRuleConditionTitle=Remove rule condition
45 | removeRuleConditionText=Really delete the selected rule condition?
46 | removeDynamicTagTitle=Remove dynamic tag
47 | removeDynamicTagText=Really delete the selected dynamic tag?
48 | resetAllProfilesTitle=Reset all profiles
49 | resetAllProfilesText=Really reset all profiles?
50 | selectConfigDirectory=Select config directory
51 | newConfigDirectoryNotEmptyTitle=Directory not empty
52 | newConfigDirectoryNotEmptyText=The new config directory is not empty. Do you want to overwrite existing config files?
53 | importFromConfigDirectoryTitle=Import from config directory
54 | importFromConfigDirectoryText=Do you want to overwrite the profiles with the data from the config directory?
55 | command=Command
56 | mousebutton=Mouse Button
57 | mousebutton0=Left Mouse Button
58 | mousebutton1=Middle Mouse Button
59 | mousebutton2=Right Mouse Button
60 | keyboardShortcut=Keyboard Shortcut
61 | alt=Alt
62 | control=Ctrl
63 | meta=Cmd
64 | shift=Shift
65 | VK_CANCEL=Cancel
66 | VK_HELP=Help
67 | VK_BACK=Back
68 | VK_TAB=Tab
69 | VK_CLEAR=Clear
70 | VK_RETURN=Return
71 | VK_ENTER=Enter
72 | VK_PAUSE=Pause
73 | VK_CAPS_LOCK=Caps Lock
74 | VK_ESCAPE=Esc
75 | VK_SPACE=Space
76 | VK_PAGE_UP=Page up
77 | VK_PAGE_DOWN=Page down
78 | VK_END=End
79 | VK_HOME=Home
80 | VK_LEFT=Left
81 | VK_UP=Up
82 | VK_RIGHT=Right
83 | VK_DOWN=Down
84 | VK_PRINTSCREEN=Print Scrn
85 | VK_INSERT=Insert
86 | VK_DELETE=Delete
87 | VK_NUM_LOCK=Num Lock
88 | VK_SCROLL_LOCK=Scroll Lock
89 |
--------------------------------------------------------------------------------
/chrome/locale/hr-HR/autofillForms.dtd:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
8 |
9 |
10 |
11 |
12 |
13 |
14 |
15 |
16 |
17 |
18 |
19 |
20 |
21 |
22 |
23 |
24 |
25 |
26 |
27 |
28 |
29 |
30 |
31 |
32 |
33 |
34 |
35 |
36 |
37 |
38 |
39 |
40 |
41 |
42 |
43 |
44 |
45 |
46 |
47 |
48 |
49 |
50 |
51 |
52 |
53 |
54 |
55 |
56 |
57 |
58 |
59 |
60 |
61 |
62 |
63 |
64 |
65 |
66 |
67 |
68 |
69 |
70 |
71 |
72 |
73 |
74 |
75 |
76 |
77 |
78 |
79 |
80 |
81 |
82 |
83 |
84 |
85 |
86 |
87 |
88 |
89 |
90 |
91 |
92 |
93 |
94 |
95 |
96 |
97 |
98 |
99 |
100 |
101 |
102 |
103 |
--------------------------------------------------------------------------------
/chrome/locale/hr-HR/autofillForms.properties:
--------------------------------------------------------------------------------
1 | extensions.autofillForms@blueimp.net.description=Automatski popunite web obrasce
2 | extensions.autofillForms@blueimp.net.shortcut=alt+J
3 | extensions.autofillForms@blueimp.net.shortcutSubmit=
4 | extensions.autofillForms@blueimp.net.shortcutAllTabs=
5 | extensions.autofillForms@blueimp.net.shortcutFromProfileSelection=
6 | extensions.autofillForms@blueimp.net.shortcutProfile=control+alt+J
7 | extensions.autofillForms@blueimp.net.shortcutSettings=control+alt+shift+J
8 | extensions.autofillForms@blueimp.net.shortcutDisplayFormDetails=
9 | extensions.autofillForms@blueimp.net.fieldRules=Username (?:(?:user)|(?:login))(?!\\w*pass) (?:) true true\nE-mail mail (?:) true true\nTitle (?:prefix\\w*name)|(?:name\\w*prefix)|(?:title) (?:) true true\nFirst name (?:first\\w*name)|(?:name\\w*first) (?:) true true\nMiddle name (?:middle\\w*name)|(?:name\\w*middle) (?:) true true\nLast name (?:last\\w*name)|(?:name\\w*last) (?:) true true\nName suffix (?:suffix\\w*name)|(?:name\\w*suffix) (?:) true true\n(Full) name name (?:) true true\nStreet (Line 1) (?:(?:street)|(?:addr))\\w*1 (?:) true true\nStreet (Line 2) (?:(?:street)|(?:addr))\\w*2 (?:) true true\nStreet (Line 3) (?:(?:street)|(?:addr))\\w*3 (?:) true true\n(Full) street (?:street)|(?:addr) (?:) true true\nCity city (?:) true true\nState (?:state)|(?:prov)|(?:region) (?:) true true\nZIP/Postal code (?:zip)|(?:post\\w*code) (?:) true true\nCountry Code country\\w*code (?:) true true\nCountry country (?:) true true\nLanguage lang (?:) true true\nBirth Day (?:bday)|(?:birth\\w?day)|(?:dob\\w?day)|(?:birth\\w*1) (?:) true true\nBirth Month (?:bmon)|(?:birth\\w?mon)|(?:dob\\w?mon)|(?:birth\\w*2) (?:) true true\nBirth Year (?:byear)|(?:birth\\w?year)|(?:dob\\w?year)|(?:birth\\w*3) (?:) true true\nCompany company (?:) true true\nOccupation (?:occupation)|(?:job) (?:) true true\nPhone (?:phone)|(?:tel) (?:) true true\nHomepage (?:web)|(?:homepage)|(?:www)|(?:url) (?:) true true
10 | extensions.autofillForms@blueimp.net.profileLabels=Default
11 | extensions.autofillForms@blueimp.net.dynamicTags=
12 | extensions.autofillForms@blueimp.net.dynamicTagCodes=new Date().toLocaleString() navigator.userAgent navigator.language screen.width+'x'+screen.height this.getClipboardText()
13 | extensions.autofillForms@blueimp.net.regExpPasswordLabel=(?:pass)
14 | tooltip=Fill out forms
15 | tooltipSubmit=Fill out and submit forms
16 | tooltipAllTabs=Fill out forms on all tabs
17 | tooltipFromProfileSelection=Fill out forms from profile selection
18 | tooltipProfile=Profile Switcher
19 | tooltipSettings=Settings
20 | tooltipDisplayFormDetails=Display Form Details
21 | currentProfileLabel=Current profile:
22 | profileSelectionWindowTitle=Switch Profile
23 | profileSelectionFormFillTitle=Fill out forms
24 | profileSelectionPrompt=Select Profile:
25 | contextMenuMore=More...
26 | invalidRegExpTitle=Neispravni regularni izraz
27 | invalidRegExpText=Uneseni regularni izraz nije valjan:
28 | containsRuleType=contains
29 | beginsWithRuleType=begins with
30 | endsWithRuleType=ends with
31 | equalsRuleType=equals
32 | alternativesSelectionWindowTitle=Select alternative
33 | alternativesSelectionPrompt=Select alternative:
34 | importProfile=Import Profile
35 | exportProfile=Export Profile
36 | importDynamicTags=Import Dynamic Tags
37 | exportDynamicTags=Export Dynamic Tags
38 | removeProfileTitle=Remove profile
39 | removeProfileText=Really delete the current profile?
40 | removeFieldRulesTitle=Remove field rules
41 | removeFieldRulesText=Really delete the selected field rules?
42 | sortFieldRulesTitle=Sort field rules
43 | sortFieldRulesText=Really set a new order for the field rules?
44 | removeRuleConditionTitle=Remove rule condition
45 | removeRuleConditionText=Really delete the selected rule condition?
46 | removeDynamicTagTitle=Remove dynamic tag
47 | removeDynamicTagText=Really delete the selected dynamic tag?
48 | resetAllProfilesTitle=Reset all profiles
49 | resetAllProfilesText=Really reset all profiles?
50 | selectConfigDirectory=Select config directory
51 | newConfigDirectoryNotEmptyTitle=Directory not empty
52 | newConfigDirectoryNotEmptyText=The new config directory is not empty. Do you want to overwrite existing config files?
53 | importFromConfigDirectoryTitle=Import from config directory
54 | importFromConfigDirectoryText=Do you want to overwrite the profiles with the data from the config directory?
55 | command=Command
56 | mousebutton=Mouse Button
57 | mousebutton0=Left Mouse Button
58 | mousebutton1=Middle Mouse Button
59 | mousebutton2=Right Mouse Button
60 | keyboardShortcut=Keyboard Shortcut
61 | alt=Alt
62 | control=Ctrl
63 | meta=Meta
64 | shift=Shift
65 | VK_CANCEL=Odustani
66 | VK_HELP=Pomoć
67 | VK_BACK=Natrag
68 | VK_TAB=Tab
69 | VK_CLEAR=Očisti
70 | VK_RETURN=Vrati
71 | VK_ENTER=Enter
72 | VK_PAUSE=Pauza
73 | VK_CAPS_LOCK=Velika slova
74 | VK_ESCAPE=Esc
75 | VK_SPACE=Razmaknica
76 | VK_PAGE_UP=Page up
77 | VK_PAGE_DOWN=Page down
78 | VK_END=End
79 | VK_HOME=Home
80 | VK_LEFT=Lijevo
81 | VK_UP=Gore
82 | VK_RIGHT=Desno
83 | VK_DOWN=Dolje
84 | VK_PRINTSCREEN=Print Scrn
85 | VK_INSERT=Insert
86 | VK_DELETE=Delete
87 | VK_NUM_LOCK=Num Lock
88 | VK_SCROLL_LOCK=Scroll Lock
89 |
--------------------------------------------------------------------------------
/chrome/locale/hu-HU/autofillForms.dtd:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
8 |
9 |
10 |
11 |
12 |
13 |
14 |
15 |
16 |
17 |
18 |
19 |
20 |
21 |
22 |
23 |
24 |
25 |
26 |
27 |
28 |
29 |
30 |
31 |
32 |
33 |
34 |
35 |
36 |
37 |
38 |
39 |
40 |
41 |
42 |
43 |
44 |
45 |
46 |
47 |
48 |
49 |
50 |
51 |
52 |
53 |
54 |
55 |
56 |
57 |
58 |
59 |
60 |
61 |
62 |
63 |
64 |
65 |
66 |
67 |
68 |
69 |
70 |
71 |
72 |
73 |
74 |
75 |
76 |
77 |
78 |
79 |
80 |
81 |
82 |
83 |
84 |
85 |
86 |
87 |
88 |
89 |
90 |
91 |
92 |
93 |
94 |
95 |
96 |
97 |
98 |
99 |
100 |
101 |
102 |
103 |
--------------------------------------------------------------------------------
/chrome/locale/hu-HU/autofillForms.properties:
--------------------------------------------------------------------------------
1 | extensions.autofillForms@blueimp.net.description=Űrlapadatok automatikus kitöltése
2 | extensions.autofillForms@blueimp.net.shortcut=alt+J
3 | extensions.autofillForms@blueimp.net.shortcutSubmit=
4 | extensions.autofillForms@blueimp.net.shortcutAllTabs=
5 | extensions.autofillForms@blueimp.net.shortcutFromProfileSelection=
6 | extensions.autofillForms@blueimp.net.shortcutProfile=control+alt+J
7 | extensions.autofillForms@blueimp.net.shortcutSettings=control+alt+shift+J
8 | extensions.autofillForms@blueimp.net.shortcutDisplayFormDetails=
9 | extensions.autofillForms@blueimp.net.fieldRules=Felhasználónév (?:(?:user)|(?:login))(?!\\w*pass) (?:) true true\nE-mail mail (?:) true true\nNév előtag (?:prefix\\w*name)|(?:name\\w*prefix)|(?:title) (?:) true true\nKeresztnév (?:first\\w*name)|(?:name\\w*first) (?:) true true\nKözépső név (?:middle\\w*name)|(?:name\\w*middle) (?:) true true\nVezetéknév (?:last\\w*name)|(?:name\\w*last) (?:) true true\nNév utótag (?:suffix\\w*name)|(?:name\\w*suffix) (?:) true true\n(Teljes) név name (?:) true true\nUtca (Sor 1) (?:(?:street)|(?:addr))\\w*1 (?:) true true\nUtca (Sor 2) (?:(?:street)|(?:addr))\\w*2 (?:) true true\nUtca (Sor 3) (?:(?:street)|(?:addr))\\w*3 (?:) true true\n(Teljes) utca (?:street)|(?:addr) (?:) true true\nVáros city (?:) true true\nMegye (?:state)|(?:prov)|(?:region) (?:) true true\nIrányítószám (?:zip)|(?:post\\w*code) (?:) true true\nOrszágkód country\\w*code (?:) true true\nOrszág country (?:) true true\nNyelv lang (?:) true true\nSzületési nap (?:bday)|(?:birth\\w?day)|(?:dob\\w?day)|(?:birth\\w*1) (?:) true true\nSzületési hónap (?:bmon)|(?:birth\\w?mon)|(?:dob\\w?mon)|(?:birth\\w*2) (?:) true true\nSzületési év (?:byear)|(?:birth\\w?year)|(?:dob\\w?year)|(?:birth\\w*3) (?:) true true\nCégnév company (?:) true true\nFoglalkozás (?:occupation)|(?:job) (?:) true true\nTelefon (?:phone)|(?:tel) (?:) true true\nHonlap (?:web)|(?:homepage)|(?:www)|(?:url) (?:) true true
10 | extensions.autofillForms@blueimp.net.profileLabels=Alapértelmezett
11 | extensions.autofillForms@blueimp.net.dynamicTags=
12 | extensions.autofillForms@blueimp.net.dynamicTagCodes=new Date().toLocaleString() navigator.userAgent navigator.language screen.width+'x'+screen.height this.getClipboardText()
13 | extensions.autofillForms@blueimp.net.regExpPasswordLabel=(?:pass)
14 | tooltip=Űrlapok kitöltése
15 | tooltipSubmit=Űrlapok kitöltése és küldése
16 | tooltipAllTabs=Űrlapok kitöltése minden lapon
17 | tooltipFromProfileSelection=Űrlapok kitöltése a kiválasztott profilokban
18 | tooltipProfile=Profil váltása
19 | tooltipSettings=Beállítások
20 | tooltipDisplayFormDetails=Űrlaprészletek megjelenításe
21 | currentProfileLabel=Jelenlegi profil:
22 | profileSelectionWindowTitle=Profil váltása
23 | profileSelectionFormFillTitle=Űrlapok kitöltése
24 | profileSelectionPrompt=Profil kiválasztása:
25 | contextMenuMore=Több...
26 | invalidRegExpTitle=Helytelen kifejezés
27 | invalidRegExpText=A beírt kifejezés helytelen:
28 | containsRuleType=tartalmazza
29 | beginsWithRuleType=kezdődik
30 | endsWithRuleType=végződik
31 | equalsRuleType=egyenlő
32 | alternativesSelectionWindowTitle=Alternatív kiválasztása
33 | alternativesSelectionPrompt=Alternatív kiválasztása:
34 | importProfile=Profil importálása
35 | exportProfile=Profil exportálása
36 | importDynamicTags=Import Dynamic Tags
37 | exportDynamicTags=Export Dynamic Tags
38 | removeProfileTitle=Profil eltávolítása
39 | removeProfileText=Valóban eltávolítja a jelenlegi profilt?
40 | removeFieldRulesTitle=Mezőszabályok eltávolítása
41 | removeFieldRulesText=Valóban eltávolítja a kiválasztott mezőszabályokat?
42 | sortFieldRulesTitle=Mezőszabályok rendezése
43 | sortFieldRulesText=Valóban módosítja a mezőszabályok rendezését?
44 | removeRuleConditionTitle=Szabályfeltételek eltávolítása
45 | removeRuleConditionText=Valóban eltávolítja a kiválasztott szabályfeltételeket?
46 | removeDynamicTagTitle=Dinamikus címke eltávolítása
47 | removeDynamicTagText=Valóban eltávolítja a kiválasztott dinamikus címkéket?
48 | resetAllProfilesTitle=Profilok alapértékeinek visszaállítása
49 | resetAllProfilesText=Valóban visszaállítja az összes profil alapértékeit?
50 | selectConfigDirectory=Konfigurációs mappa kiválasztása
51 | newConfigDirectoryNotEmptyTitle=A mappa nem üres
52 | newConfigDirectoryNotEmptyText=Az új konfigurációs mappa nem üres. Kívánja felülírni a már létező fájlokat?
53 | importFromConfigDirectoryTitle=Importálás a konfigurációs mappából
54 | importFromConfigDirectoryText=Kívánja felülírni a profilokat a konfigurációs mappa adataival?
55 | command=Parancs
56 | mousebutton=Egérgomb
57 | mousebutton0=Bal egérgomb
58 | mousebutton1=Középső egérgomb
59 | mousebutton2=Jobb egérgomb
60 | keyboardShortcut=Billentyűkombináció
61 | alt=Alt
62 | control=Ctrl
63 | meta=Cmd
64 | shift=Shift
65 | VK_CANCEL=Mégse
66 | VK_HELP=Súgó
67 | VK_BACK=Vissza
68 | VK_TAB=Tab
69 | VK_CLEAR=Tisztít
70 | VK_RETURN=Return
71 | VK_ENTER=Enter
72 | VK_PAUSE=Szünet
73 | VK_CAPS_LOCK=Caps Lock
74 | VK_ESCAPE=Esc
75 | VK_SPACE=Space
76 | VK_PAGE_UP=Page up
77 | VK_PAGE_DOWN=Page down
78 | VK_END=End
79 | VK_HOME=Home
80 | VK_LEFT=Left
81 | VK_UP=Up
82 | VK_RIGHT=Right
83 | VK_DOWN=Down
84 | VK_PRINTSCREEN=Print Scrn
85 | VK_INSERT=Insert
86 | VK_DELETE=Delete
87 | VK_NUM_LOCK=Num Lock
88 | VK_SCROLL_LOCK=Scroll Lock
89 |
--------------------------------------------------------------------------------
/chrome/locale/it-IT/autofillForms.properties:
--------------------------------------------------------------------------------
1 | extensions.autofillForms@blueimp.net.description=Permette di compilare automaticamente i moduli contenuti nelle pagine web
2 | extensions.autofillForms@blueimp.net.shortcut=alt+J
3 | extensions.autofillForms@blueimp.net.shortcutSubmit=
4 | extensions.autofillForms@blueimp.net.shortcutAllTabs=
5 | extensions.autofillForms@blueimp.net.shortcutFromProfileSelection=
6 | extensions.autofillForms@blueimp.net.shortcutProfile=control+alt+J
7 | extensions.autofillForms@blueimp.net.shortcutSettings=control+alt+shift+J
8 | extensions.autofillForms@blueimp.net.shortcutDisplayFormDetails=
9 | extensions.autofillForms@blueimp.net.fieldRules=Nome%20utente (?:(?:user)%7C(?:login))(?!%5Cw*pass) (?:) true true\nE-mail mail (?:) true true\nTitolo (?:prefix%5Cw*name)%7C(?:name%5Cw*prefix)%7C(?:title) (?:) true true\nNome (?:first%5Cw*name)%7C(?:name%5Cw*first) (?:) true true\nPrefisso (?:middle%5Cw*name)%7C(?:name%5Cw*middle) (?:) true true\nCognome (?:last%5Cw*name)%7C(?:name%5Cw*last) (?:) true true\nSuffisso (?:suffix%5Cw*name)%7C(?:name%5Cw*suffix) (?:) true true\nNome%20(completo) name (?:) true true\nIndirizzo%20(riga%201) (?:(?:street)%7C(?:addr))%5Cw*1 (?:) true true\nIndirizzo%20(riga%202) (?:(?:street)%7C(?:addr))%5Cw*2 (?:) true true\nIndirizzo%20(riga%203) (?:(?:street)%7C(?:addr))%5Cw*3 (?:) true true\nIndirizzo%20(completo) (?:street)%7C(?:addr) (?:) true true\nCitt%C3%A0 city (?:) true true\nStato (?:state)%7C(?:prov)%7C(?:region) (?:) true true\nCodice%20postale (?:zip)%7C(?:post%5Cw*code) (?:) true true\nIdentificativo%20nazione country%5Cw*code (?:) true true\nNazione country (?:) true true\nLingua lang (?:) true true\nGiorno%20di%20nascita (?:bday)%7C(?:birth%5Cw?day)%7C(?:dob%5Cw?day)%7C(?:birth%5Cw*1) (?:) true true\nMese%20di%20nascita (?:bmon)%7C(?:birth%5Cw?mon)%7C(?:dob%5Cw?mon)%7C(?:birth%5Cw*2) (?:) true true\nAnno%20di%20nascita (?:byear)%7C(?:birth%5Cw?year)%7C(?:dob%5Cw?year)%7C(?:birth%5Cw*3) (?:) true true\nSociet%C3%A0 company (?:) true true\nProfessione (?:occupation)%7C(?:job) (?:) true true\nTelefono (?:phone)%7C(?:tel) (?:) true true\nSito%20web (?:web)%7C(?:homepage)%7C(?:www)%7C(?:url) (?:) true true")
10 | extensions.autofillForms@blueimp.net.profileLabels=Predefinito
11 | extensions.autofillForms@blueimp.net.dynamicTags=
12 | extensions.autofillForms@blueimp.net.dynamicTagCodes=new Date().toLocaleString() navigator.userAgent navigator.language screen.width+'x'+screen.height this.getClipboardText()
13 | extensions.autofillForms@blueimp.net.regExpPasswordLabel=(?:pass)
14 | tooltip=Compila i moduli
15 | tooltipSubmit=Compila e invia i moduli
16 | tooltipAllTabs=Compila i moduli di tutte le schede
17 | tooltipFromProfileSelection=Compila i moduli selezionando un profilo
18 | tooltipProfile=Selettore dei profili
19 | tooltipSettings=Impostazioni
20 | tooltipDisplayFormDetails=Visualizza dettagli modulo
21 | currentProfileLabel=Profilo corrente:
22 | profileSelectionWindowTitle=Cambia profilo
23 | profileSelectionFormFillTitle=Compila i moduli
24 | profileSelectionPrompt=Seleziona profilo:
25 | contextMenuMore=Altre voci...
26 | invalidRegExpTitle=Espressione regolare non valida
27 | invalidRegExpText=L'espressione regolare inserita non è valida:
28 | containsRuleType=contiene
29 | beginsWithRuleType=inizia per
30 | endsWithRuleType=termina con
31 | equalsRuleType=è uguale
32 | alternativesSelectionWindowTitle=Seleziona alternativo
33 | alternativesSelectionPrompt=Seleziona alternativo:
34 | importProfile=Importa profilo
35 | exportProfile=Esporta profilo
36 | importDynamicTags=Import Dynamic Tags
37 | exportDynamicTags=Export Dynamic Tags
38 | removeProfileTitle=Elimina profilo
39 | removeProfileText=Cancellare il profilo corrente?
40 | removeFieldRulesTitle=Rimuovi le regole per il campo
41 | removeFieldRulesText=Eliminare le regole per il campo selezionato?
42 | sortFieldRulesTitle=Ordina le regole di campo
43 | sortFieldRulesText=Impostare un nuovo ordine per le regole di campo?
44 | removeRuleConditionTitle=Rimuovi la regola per la condizione
45 | removeRuleConditionText=Eliminare la regola per la condizione selezionata?
46 | removeDynamicTagTitle=Rimuovi etichetta dinamica
47 | removeDynamicTagText=Eliminare l'etichetta dinamica selezionata?
48 | resetAllProfilesTitle=Reimposta tutti i profili
49 | resetAllProfilesText=Reimpostare tutti i profili?
50 | selectConfigDirectory=Seleziona la cartella di configurazione
51 | newConfigDirectoryNotEmptyTitle=Cartella non vuota
52 | newConfigDirectoryNotEmptyText=La nuova cartella di configurazione non è vuota. Sovrascrivere i file di configurazione preesistenti?
53 | importFromConfigDirectoryTitle=Importazione da cartella di configurazione
54 | importFromConfigDirectoryText=Sovrascrivere i profili con i dati contenuti nella cartella di configurazione?
55 | command=Comando
56 | mousebutton=Tasto del mouse
57 | mousebutton0=Tasto sinistro del mouse
58 | mousebutton1=Tasto centrale del mouse
59 | mousebutton2=Tasto destro del mouse
60 | keyboardShortcut=Scorciatoia da tastiera
61 | alt=Alt
62 | control=Ctrl
63 | meta=Cmd
64 | shift=Maiusc
65 | VK_CANCEL=Annulla
66 | VK_HELP=Guida
67 | VK_BACK=Indietro
68 | VK_TAB=Tab
69 | VK_CLEAR=Cancella
70 | VK_RETURN=Invio
71 | VK_ENTER=Invio
72 | VK_PAUSE=Pausa
73 | VK_CAPS_LOCK=Bloc Maiusc
74 | VK_ESCAPE=Esc
75 | VK_SPACE=Barra spaziatrice
76 | VK_PAGE_UP=PgSu
77 | VK_PAGE_DOWN=PgGiù
78 | VK_END=Fine
79 | VK_HOME=Home
80 | VK_LEFT=Sinistra
81 | VK_UP=Su
82 | VK_RIGHT=Destra
83 | VK_DOWN=Giù
84 | VK_PRINTSCREEN=Stamp
85 | VK_INSERT=Ins
86 | VK_DELETE=Canc
87 | VK_NUM_LOCK=Bloc Num
88 | VK_SCROLL_LOCK=Bloc Scorr
89 |
--------------------------------------------------------------------------------
/chrome/locale/nl-NL/autofillForms.properties:
--------------------------------------------------------------------------------
1 | extensions.autofillForms@blueimp.net.description=Vult webformulieren automatisch in
2 | extensions.autofillForms@blueimp.net.shortcut=alt+J
3 | extensions.autofillForms@blueimp.net.shortcutSubmit=
4 | extensions.autofillForms@blueimp.net.shortcutAllTabs=
5 | extensions.autofillForms@blueimp.net.shortcutFromProfileSelection=
6 | extensions.autofillForms@blueimp.net.shortcutProfile=control+alt+J
7 | extensions.autofillForms@blueimp.net.shortcutSettings=control+alt+shift+J
8 | extensions.autofillForms@blueimp.net.shortcutDisplayFormDetails=
9 | extensions.autofillForms@blueimp.net.fieldRules=Gebruikersnaam (?:(?:user)%7C(?:login))(?!%5Cw*pass) (?:) true true\nE-mailadres mail (?:) true true\nTitel (?:prefix%5Cw*name)%7C(?:name%5Cw*prefix)%7C(?:title) (?:) true true\nVoornaam (?:first%5Cw*name)%7C(?:name%5Cw*first) (?:) true true\nMiddelste%20naam (?:middle%5Cw*name)%7C(?:name%5Cw*middle) (?:) true true\nAchternaam (?:last%5Cw*name)%7C(?:name%5Cw*last) (?:) true true\nNaam%20suffix (?:suffix%5Cw*name)%7C(?:name%5Cw*suffix) (?:) true true\n(Volledige)%20naam name (?:) true true\nStraat%20(regel%201) (?:(?:street)%7C(?:addr))%5Cw*1 (?:) true true\nStraat%20(regel%202) (?:(?:street)%7C(?:addr))%5Cw*2 (?:) true true\nStraat%20(regel%203) (?:(?:street)%7C(?:addr))%5Cw*3 (?:) true true\n(Volledige)%20straatnaam (?:street)%7C(?:addr) (?:) true true\nStad city (?:) true true\nStaat (?:state)%7C(?:prov)%7C(?:region) (?:) true true\nPostcode (?:zip)%7C(?:post%5Cw*code) (?:) true true\nLandcode country%5Cw*code (?:) true true\nLand country (?:) true true\nTaal lang (?:) true true\nGeboortedag (?:bday)%7C(?:birth%5Cw?day)%7C(?:dob%5Cw?day)%7C(?:birth%5Cw*1) (?:) true true\nGeboortemaand (?:bmon)%7C(?:birth%5Cw?mon)%7C(?:dob%5Cw?mon)%7C(?:birth%5Cw*2) (?:) true true\nGeboortejaar (?:byear)%7C(?:birth%5Cw?year)%7C(?:dob%5Cw?year)%7C(?:birth%5Cw*3) (?:) true true\nBedrijf company (?:) true true\nBeroep (?:occupation)%7C(?:job) (?:) true true\nTelefoonnummer (?:phone)%7C(?:tel) (?:) true true\nStartpagina (?:web)%7C(?:homepage)%7C(?:www)%7C(?:url) (?:) true true
10 | extensions.autofillForms@blueimp.net.profileLabels=Standaard
11 | extensions.autofillForms@blueimp.net.dynamicTags=
12 | extensions.autofillForms@blueimp.net.dynamicTagCodes=new Date().toLocaleString() navigator.userAgent navigator.language screen.width+'x'+screen.height this.getClipboardText()
13 | extensions.autofillForms@blueimp.net.regExpPasswordLabel=(?:pass)
14 | tooltip=Formulieren invullen
15 | tooltipSubmit=Formulieren invullen en indienen
16 | tooltipAllTabs=Formulieren op alle tabbladen invullen
17 | tooltipFromProfileSelection=Formulieren van profielselectie invullen
18 | tooltipProfile=Profiel wisselen
19 | tooltipSettings=Instellingen
20 | tooltipDisplayFormDetails=Formulierdetails weergeven
21 | currentProfileLabel=Huidig profiel:
22 | profileSelectionWindowTitle=Profiel wisselen
23 | profileSelectionFormFillTitle=Formulieren invullen
24 | profileSelectionPrompt=Profiel selecteren:
25 | contextMenuMore=Meer...
26 | invalidRegExpTitle=Ongeldige reguliere expressie
27 | invalidRegExpText=De ingevoerde reguliere expressie is niet geldig:
28 | containsRuleType=bevat
29 | beginsWithRuleType=begint met
30 | endsWithRuleType=eindigt op
31 | equalsRuleType=is gelijk aan
32 | alternativesSelectionWindowTitle=Alternatief selecteren
33 | alternativesSelectionPrompt=Selecteer alternatief:
34 | importProfile=Profiel importeren
35 | exportProfile=Profiel exporteren
36 | importDynamicTags=Import Dynamic Tags
37 | exportDynamicTags=Export Dynamic Tags
38 | removeProfileTitle=Profiel verwijderen
39 | removeProfileText=Huidig profiel daadwerkelijk verwijderen?
40 | removeFieldRulesTitle=Veldregels verwijderen
41 | removeFieldRulesText=Geselecteerde veldregels daadwerkelijk verwijderen?
42 | sortFieldRulesTitle=Veldregels sorteren
43 | sortFieldRulesText=Nieuwe volgorde voor veldregels instellen?
44 | removeRuleConditionTitle=Regelconditie verwijderen
45 | removeRuleConditionText=Geselecteerde regelconditie daadwerkelijk verwijderen?
46 | removeDynamicTagTitle=Dynamisch label verwijderen
47 | removeDynamicTagText=Geselecteerd dynamisch label daadwerkelijk verwijderen?
48 | resetAllProfilesTitle=Alle profielen opnieuw instellen
49 | resetAllProfilesText=Alle profielen opnieuw instellen?
50 | selectConfigDirectory=Map voor instellingen selecteren
51 | newConfigDirectoryNotEmptyTitle=Map is niet leeg
52 | newConfigDirectoryNotEmptyText=De nieuwe map voor instellingen is niet leeg. Wilt u bestaande configuratiebestanden overschrijven?
53 | importFromConfigDirectoryTitle=Importeren uit map voor instellingen
54 | importFromConfigDirectoryText=Wilt u de profielen overschrijven met de gegevens uit de map voor instellingen?
55 | command=Opdracht
56 | mousebutton=Muisknop
57 | mousebutton0=Linkermuisknop
58 | mousebutton1=Middelste muisknop
59 | mousebutton2=Rechtermuisknop
60 | keyboardShortcut=Sneltoets
61 | alt=Alt
62 | control=Ctrl
63 | meta=Meta
64 | shift=Shift
65 | VK_CANCEL=Annuleren
66 | VK_HELP=Help
67 | VK_BACK=Backspace
68 | VK_TAB=Tab
69 | VK_CLEAR=Clear
70 | VK_RETURN=Return
71 | VK_ENTER=Enter
72 | VK_PAUSE=Pause
73 | VK_CAPS_LOCK=CapsLock
74 | VK_ESCAPE=Esc
75 | VK_SPACE=Spatie
76 | VK_PAGE_UP=Page Up
77 | VK_PAGE_DOWN=Page Down
78 | VK_END=End
79 | VK_HOME=Home
80 | VK_LEFT=Links
81 | VK_UP=Omhoog
82 | VK_RIGHT=Rechts
83 | VK_DOWN=Omlaag
84 | VK_PRINTSCREEN=PrtScn
85 | VK_INSERT=Insert
86 | VK_DELETE=Delete
87 | VK_NUM_LOCK=Num Lock
88 | VK_SCROLL_LOCK=ScrLk
89 |
--------------------------------------------------------------------------------
/chrome/locale/pl-PL/autofillForms.properties:
--------------------------------------------------------------------------------
1 | extensions.autofillForms@blueimp.net.description=Wypełnia automatycznie formularze na stronach internetowych
2 | extensions.autofillForms@blueimp.net.shortcut=alt+J
3 | extensions.autofillForms@blueimp.net.shortcutSubmit=
4 | extensions.autofillForms@blueimp.net.shortcutAllTabs=
5 | extensions.autofillForms@blueimp.net.shortcutFromProfileSelection=
6 | extensions.autofillForms@blueimp.net.shortcutProfile=control+alt+J
7 | extensions.autofillForms@blueimp.net.shortcutSettings=control+alt+shift+J
8 | extensions.autofillForms@blueimp.net.shortcutDisplayFormDetails=
9 | extensions.autofillForms@blueimp.net.fieldRules=Nazwa użytkownika (?:(?:user)|(?:login))(?!\\w*pass) (?:) true true\nAdres e-mail mail (?:) true true\nTytuł (?:prefix\\w*name)|(?:name\\w*prefix)|(?:title) (?:) true true\nImię (?:first\\w*name)|(?:name\\w*first) (?:) true true\nDrugie imię (?:middle\\w*name)|(?:name\\w*middle) (?:) true true\nNazwisko (?:last\\w*name)|(?:name\\w*last) (?:) true true\nSufix nazwiska (?:suffix\\w*name)|(?:name\\w*suffix) (?:) true true\nImię i nazwisko name (?:) true true\nUlica (?:(?:street)|(?:addr))\\w*1 (?:) true true\nNr domu (?:(?:street)|(?:addr))\\w*2 (?:) true true\nNr mieszkania (?:(?:street)|(?:addr))\\w*3 (?:) true true\nPełny adres (?:street)|(?:addr) (?:) true true\nMiasto city (?:) true true\nWojewództwo (?:state)|(?:prov)|(?:region) (?:) true true\nKod pocztowy (?:zip)|(?:post\\w*code) (?:) true true\nKod kraju country\\w*code (?:) true true\nKraj country (?:) true true\nJęzyk lang (?:) true true\nDzień urodzenia (?:bday)|(?:birth\\w?day)|(?:dob\\w?day)|(?:birth\\w*1) (?:) true true\nMiesiąc urodzenia (?:bmon)|(?:birth\\w?mon)|(?:dob\\w?mon)|(?:birth\\w*2) (?:) true true\nRok urodzenia (?:byear)|(?:birth\\w?year)|(?:dob\\w?year)|(?:birth\\w*3) (?:) true true\nFirma company (?:) true true\nZawód (?:occupation)|(?:job) (?:) true true\nTelefon (?:phone)|(?:tel) (?:) true true\nStrona WWW (?:web)|(?:homepage)|(?:www)|(?:url) (?:) true true
10 | extensions.autofillForms@blueimp.net.profileLabels=Domyślny
11 | extensions.autofillForms@blueimp.net.dynamicTags=
12 | extensions.autofillForms@blueimp.net.dynamicTagCodes=new Date().toLocaleString() navigator.userAgent navigator.language screen.width+'x'+screen.height this.getClipboardText()
13 | extensions.autofillForms@blueimp.net.regExpPasswordLabel=(?:pass)
14 | tooltip=Wypełnij formularze
15 | tooltipSubmit=Wypełnij i wyślij formularze
16 | tooltipAllTabs=Wypełnij formularze we wszystkich kartach
17 | tooltipFromProfileSelection=Wypełnij formularze z profilu
18 | tooltipProfile=Przełącznik profili
19 | tooltipSettings=Ustawienia
20 | tooltipDisplayFormDetails=Wyświetla szczegóły formularza
21 | currentProfileLabel=Aktywny profil:
22 | profileSelectionWindowTitle=Zmiana profilu
23 | profileSelectionFormFillTitle=Wypełnij formularze
24 | profileSelectionPrompt=Wybierz profil:
25 | contextMenuMore=Więcej...
26 | invalidRegExpTitle=Nieprawidłowe wyrażenie regularne
27 | invalidRegExpText=Wprowadzone wyrażenie regularne jest nieprawidłowe
28 | containsRuleType=zawiera
29 | beginsWithRuleType=zaczyna się od
30 | endsWithRuleType=kończy się na
31 | equalsRuleType=równa się
32 | alternativesSelectionWindowTitle=Wybierz alternatywne
33 | alternativesSelectionPrompt=Wybierz alternatywne
34 | importProfile=Importuj profil
35 | exportProfile=Eksportuj profil
36 | importDynamicTags=Import Dynamic Tags
37 | exportDynamicTags=Export Dynamic Tags
38 | removeProfileTitle=Usuń profil
39 | removeProfileText=Czy na pewno chcesz usunąć ten profil?
40 | removeFieldRulesTitle=Usuń dane pola
41 | removeFieldRulesText=Czy na pewno chcesz usunąć dane wybranego pola?
42 | sortFieldRulesTitle=Sortuj dane pola
43 | sortFieldRulesText=Czy na pewno chcesz określić nową kolejność danych pola?
44 | removeRuleConditionTitle=Usuń składniki reguły
45 | removeRuleConditionText=Czy na pewno chcesz usunąć składniki wybranej reguły?
46 | removeDynamicTagTitle=Usuń dynamiczny znacznik
47 | removeDynamicTagText=Czy na pewno chcesz usunąć dynamiczny znacznik?
48 | resetAllProfilesTitle=Resetuj wszystkie profile
49 | resetAllProfilesText=Czy na pewno chcesz zresetować wszystkie profile?
50 | selectConfigDirectory=Wybierz katalog konfiguracyjny
51 | newConfigDirectoryNotEmptyTitle=Katalog nie jest pusty
52 | newConfigDirectoryNotEmptyText=Nowy katalog konfiguracyjny nie jest pusty. Czy chcesz zastąpić istniejące pliki konfiguracyjne?
53 | importFromConfigDirectoryTitle=Import z katalogu konfiguracyjnego
54 | importFromConfigDirectoryText=Czy chcesz zastąpić istniejące profile danymi z katalogu konfiguracyjnego?
55 | command=Command
56 | mousebutton=Przycisk myszy
57 | mousebutton0=Lewy przycisk myszy
58 | mousebutton1=Środkowy przycisk myszy
59 | mousebutton2=Prawy przycisk myszy
60 | keyboardShortcut=Skróty klawiaturowe
61 | alt=Alt
62 | control=Ctrl
63 | meta=Cmd
64 | shift=Shift
65 | VK_CANCEL=Cancel
66 | VK_HELP=Help
67 | VK_BACK=Back
68 | VK_TAB=Tab
69 | VK_CLEAR=Clear
70 | VK_RETURN=Return
71 | VK_ENTER=Enter
72 | VK_PAUSE=Pause
73 | VK_CAPS_LOCK=Caps Lock
74 | VK_ESCAPE=Esc
75 | VK_SPACE=Space
76 | VK_PAGE_UP=Page up
77 | VK_PAGE_DOWN=Page down
78 | VK_END=End
79 | VK_HOME=Home
80 | VK_LEFT=Left
81 | VK_UP=Up
82 | VK_RIGHT=Right
83 | VK_DOWN=Down
84 | VK_PRINTSCREEN=PrtScr
85 | VK_INSERT=Insert
86 | VK_DELETE=Delete
87 | VK_NUM_LOCK=Num Lock
88 | VK_SCROLL_LOCK=Scroll Lock
89 |
--------------------------------------------------------------------------------
/chrome/locale/pt-BR/autofillForms.dtd:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
8 |
9 |
10 |
11 |
12 |
13 |
14 |
15 |
16 |
17 |
18 |
19 |
20 |
21 |
22 |
23 |
24 |
25 |
26 |
27 |
28 |
29 |
30 |
31 |
32 |
33 |
34 |
35 |
36 |
37 |
38 |
39 |
40 |
41 |
42 |
43 |
44 |
45 |
46 |
47 |
48 |
49 |
50 |
51 |
52 |
53 |
54 |
55 |
56 |
57 |
58 |
59 |
60 |
61 |
62 |
63 |
64 |
65 |
66 |
67 |
68 |
69 |
70 |
71 |
72 |
73 |
74 |
75 |
76 |
77 |
78 |
79 |
80 |
81 |
82 |
83 |
84 |
85 |
86 |
87 |
88 |
89 |
90 |
91 |
92 |
93 |
94 |
95 |
96 |
97 |
98 |
99 |
100 |
101 |
102 |
103 |
--------------------------------------------------------------------------------
/chrome/locale/pt-BR/autofillForms.properties:
--------------------------------------------------------------------------------
1 | extensions.autofillForms@blueimp.net.description=Preencha automaticamente formulários da web
2 | extensions.autofillForms@blueimp.net.shortcut=alt+J
3 | extensions.autofillForms@blueimp.net.shortcutSubmit=
4 | extensions.autofillForms@blueimp.net.shortcutAllTabs=
5 | extensions.autofillForms@blueimp.net.shortcutFromProfileSelection=
6 | extensions.autofillForms@blueimp.net.shortcutProfile=ctrl+alt+J
7 | extensions.autofillForms@blueimp.net.shortcutSettings=ctrl+alt+J
8 | extensions.autofillForms@blueimp.net.shortcutDisplayFormDetails=
9 | extensions.autofillForms@blueimp.net.fieldRules=Username (?:(?:user)|(?:login))(?!\\w*pass) (?:) true true\nE-mail mail (?:) true true\nTitle (?:prefix\\w*name)|(?:name\\w*prefix)|(?:title) (?:) true true\nFirst name (?:first\\w*name)|(?:name\\w*first) (?:) true true\nMiddle name (?:middle\\w*name)|(?:name\\w*middle) (?:) true true\nLast name (?:last\\w*name)|(?:name\\w*last) (?:) true true\nName suffix (?:suffix\\w*name)|(?:name\\w*suffix) (?:) true true\n(Full) name name (?:) true true\nStreet (Line 1) (?:(?:street)|(?:addr))\\w*1 (?:) true true\nStreet (Line 2) (?:(?:street)|(?:addr))\\w*2 (?:) true true\nStreet (Line 3) (?:(?:street)|(?:addr))\\w*3 (?:) true true\n(Full) street (?:street)|(?:addr) (?:) true true\nCity city (?:) true true\nState (?:state)|(?:prov)|(?:region) (?:) true true\nZIP/Postal code (?:zip)|(?:post\\w*code) (?:) true true\nCountry Code country\\w*code (?:) true true\nCountry country (?:) true true\nLanguage lang (?:) true true\nBirth Day (?:bday)|(?:birth\\w?day)|(?:dob\\w?day)|(?:birth\\w*1) (?:) true true\nBirth Month (?:bmon)|(?:birth\\w?mon)|(?:dob\\w?mon)|(?:birth\\w*2) (?:) true true\nBirth Year (?:byear)|(?:birth\\w?year)|(?:dob\\w?year)|(?:birth\\w*3) (?:) true true\nCompany company (?:) true true\nOccupation (?:occupation)|(?:job) (?:) true true\nPhone (?:phone)|(?:tel) (?:) true true\nHomepage (?:web)|(?:homepage)|(?:www)|(?:url) (?:) true true
10 | extensions.autofillForms@blueimp.net.profileLabels=Default
11 | extensions.autofillForms@blueimp.net.dynamicTags=
12 | extensions.autofillForms@blueimp.net.dynamicTagCodes=new Date().toLocaleString() navigator.userAgent navigator.language screen.width+'x'+screen.height this.getClipboardText()
13 | extensions.autofillForms@blueimp.net.regExpPasswordLabel=(?:pass)
14 | tooltip=Preencher formulários
15 | tooltipSubmit=Preencher e enviar formulários
16 | tooltipAllTabs=Preencher formulários em todas as abas
17 | tooltipFromProfileSelection=Preencher formulários do perfil selecionado
18 | tooltipProfile=Gerenciar Perfis
19 | tooltipSettings=Configurações
20 | tooltipDisplayFormDetails=Display Form Details
21 | currentProfileLabel=Perfil atual
22 | profileSelectionWindowTitle=Alterar Perfil
23 | profileSelectionFormFillTitle=Preencher formulários
24 | profileSelectionPrompt=Selecionar Perfil:
25 | contextMenuMore=Mais...
26 | invalidRegExpTitle=Expressão regular inválida
27 | invalidRegExpText=The entered regular expression is not valid:
28 | containsRuleType=contém
29 | beginsWithRuleType=começa com
30 | endsWithRuleType=termina em
31 | equalsRuleType=igual
32 | alternativesSelectionWindowTitle=Selecionar alternativa
33 | alternativesSelectionPrompt=Selecione a alternativa:
34 | importProfile=Importar Perfil
35 | exportProfile=Exportar Perfil
36 | importDynamicTags=Import Dynamic Tags
37 | exportDynamicTags=Export Dynamic Tags
38 | removeProfileTitle=Remover Perfil
39 | removeProfileText=Deseja realmente remover o perfil atual?
40 | removeFieldRulesTitle=Remove field rules
41 | removeFieldRulesText=Really delete the selected field rules?
42 | sortFieldRulesTitle=Sort field rules
43 | sortFieldRulesText=Really set a new order for the field rules?
44 | removeRuleConditionTitle=Remove rule condition
45 | removeRuleConditionText=Really delete the selected rule condition?
46 | removeDynamicTagTitle=Remove dynamic tag
47 | removeDynamicTagText=Really delete the selected dynamic tag?
48 | resetAllProfilesTitle=Reset all profiles
49 | resetAllProfilesText=Really reset all profiles?
50 | selectConfigDirectory=Select config directory
51 | newConfigDirectoryNotEmptyTitle=Directory not empty
52 | newConfigDirectoryNotEmptyText=The new config directory is not empty. Do you want to overwrite existing config files?
53 | importFromConfigDirectoryTitle=Import from config directory
54 | importFromConfigDirectoryText=Do you want to overwrite the profiles with the data from the config directory?
55 | command=Comando
56 | mousebutton=Botão do Mouse
57 | mousebutton0=Left Mouse Button
58 | mousebutton1=Middle Mouse Button
59 | mousebutton2=Right Mouse Button
60 | keyboardShortcut=Keyboard Shortcut
61 | alt=Alt
62 | control=Ctrl
63 | meta=Cmd
64 | shift=Shift
65 | VK_CANCEL=Cancelar
66 | VK_HELP=Ajuda
67 | VK_BACK=Voltar
68 | VK_TAB=Tab
69 | VK_CLEAR=Limpar
70 | VK_RETURN=Return
71 | VK_ENTER=Enter
72 | VK_PAUSE=Pausar
73 | VK_CAPS_LOCK=Caps Lock
74 | VK_ESCAPE=Esc
75 | VK_SPACE=Espaço
76 | VK_PAGE_UP=Page up
77 | VK_PAGE_DOWN=Page down
78 | VK_END=End
79 | VK_HOME=Home
80 | VK_LEFT=Esquerda
81 | VK_UP=Cima
82 | VK_RIGHT=Direita
83 | VK_DOWN=Baixo
84 | VK_PRINTSCREEN=Print Screen
85 | VK_INSERT=Insert
86 | VK_DELETE=Delete
87 | VK_NUM_LOCK=Num Lock
88 | VK_SCROLL_LOCK=Scroll Lock
89 |
--------------------------------------------------------------------------------
/chrome/locale/ro-RO/autofillForms.dtd:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
8 |
9 |
10 |
11 |
12 |
13 |
14 |
15 |
16 |
17 |
18 |
19 |
20 |
21 |
22 |
23 |
24 |
25 |
26 |
27 |
28 |
29 |
30 |
31 |
32 |
33 |
34 |
35 |
36 |
37 |
38 |
39 |
40 |
41 |
42 |
43 |
44 |
45 |
46 |
47 |
48 |
49 |
50 |
51 |
52 |
53 |
54 |
55 |
56 |
57 |
58 |
59 |
60 |
61 |
62 |
63 |
64 |
65 |
66 |
67 |
68 |
69 |
70 |
71 |
72 |
73 |
74 |
75 |
76 |
77 |
78 |
79 |
80 |
81 |
82 |
83 |
84 |
85 |
86 |
87 |
88 |
89 |
90 |
91 |
92 |
93 |
94 |
95 |
96 |
97 |
98 |
99 |
100 |
101 |
102 |
103 |
--------------------------------------------------------------------------------
/chrome/locale/ro-RO/autofillForms.properties:
--------------------------------------------------------------------------------
1 | extensions.autofillForms@blueimp.net.description=Completează formularele automat
2 | extensions.autofillForms@blueimp.net.shortcut=alt+J
3 | extensions.autofillForms@blueimp.net.shortcutSubmit=
4 | extensions.autofillForms@blueimp.net.shortcutAllTabs=
5 | extensions.autofillForms@blueimp.net.shortcutFromProfileSelection=
6 | extensions.autofillForms@blueimp.net.shortcutProfile=control+alt+J
7 | extensions.autofillForms@blueimp.net.shortcutSettings=control+alt+shift+J
8 | extensions.autofillForms@blueimp.net.shortcutDisplayFormDetails=
9 | extensions.autofillForms@blueimp.net.fieldRules=Username (?:(?:user)|(?:login))(?!\\w*pass) (?:) true true\nE-mail mail (?:) true true\nTitle (?:prefix\\w*name)|(?:name\\w*prefix)|(?:title) (?:) true true\nFirst name (?:first\\w*name)|(?:name\\w*first) (?:) true true\nMiddle name (?:middle\\w*name)|(?:name\\w*middle) (?:) true true\nLast name (?:last\\w*name)|(?:name\\w*last) (?:) true true\nName suffix (?:suffix\\w*name)|(?:name\\w*suffix) (?:) true true\n(Full) name name (?:) true true\nStreet (Line 1) (?:(?:street)|(?:addr))\\w*1 (?:) true true\nStreet (Line 2) (?:(?:street)|(?:addr))\\w*2 (?:) true true\nStreet (Line 3) (?:(?:street)|(?:addr))\\w*3 (?:) true true\n(Full) street (?:street)|(?:addr) (?:) true true\nCity city (?:) true true\nState (?:state)|(?:prov)|(?:region) (?:) true true\nZIP/Postal code (?:zip)|(?:post\\w*code) (?:) true true\nCountry Code country\\w*code (?:) true true\nCountry country (?:) true true\nLanguage lang (?:) true true\nBirth Day (?:bday)|(?:birth\\w?day)|(?:dob\\w?day)|(?:birth\\w*1) (?:) true true\nBirth Month (?:bmon)|(?:birth\\w?mon)|(?:dob\\w?mon)|(?:birth\\w*2) (?:) true true\nBirth Year (?:byear)|(?:birth\\w?year)|(?:dob\\w?year)|(?:birth\\w*3) (?:) true true\nCompany company (?:) true true\nOccupation (?:occupation)|(?:job) (?:) true true\nPhone (?:phone)|(?:tel) (?:) true true\nHomepage (?:web)|(?:homepage)|(?:www)|(?:url) (?:) true true
10 | extensions.autofillForms@blueimp.net.profileLabels=Default
11 | extensions.autofillForms@blueimp.net.dynamicTags=
12 | extensions.autofillForms@blueimp.net.dynamicTagCodes=new Date().toLocaleString() navigator.userAgent navigator.language screen.width+'x'+screen.height this.getClipboardText()
13 | extensions.autofillForms@blueimp.net.regExpPasswordLabel=(?:pass)
14 | tooltip=Completează formularele
15 | tooltipSubmit=Completează şi trimite formularele
16 | tooltipAllTabs=Completează formularele din toate filele
17 | tooltipFromProfileSelection=Completează formularele din profilul selectat??
18 | tooltipProfile=Comutator profile
19 | tooltipSettings=Configuraţii
20 | tooltipDisplayFormDetails=Display Form Details
21 | currentProfileLabel=Profilul curent:
22 | profileSelectionWindowTitle=Comută profilele
23 | profileSelectionFormFillTitle=Completează formularele
24 | profileSelectionPrompt=Selectează profilul:
25 | contextMenuMore=Mai mult…
26 | invalidRegExpTitle=Expresie regulată incorectă
27 | invalidRegExpText=Expresia regulată introdusă este incorectă:
28 | containsRuleType=conţine
29 | beginsWithRuleType=începe cu
30 | endsWithRuleType=se termină cu
31 | equalsRuleType=egal cu
32 | alternativesSelectionWindowTitle=Select alternative
33 | alternativesSelectionPrompt=Select alternative:
34 | importProfile=Import Profile
35 | exportProfile=Export Profile
36 | importDynamicTags=Import Dynamic Tags
37 | exportDynamicTags=Export Dynamic Tags
38 | removeProfileTitle=Remove profile
39 | removeProfileText=Really delete the current profile?
40 | removeFieldRulesTitle=Remove field rules
41 | removeFieldRulesText=Really delete the selected field rules?
42 | sortFieldRulesTitle=Sort field rules
43 | sortFieldRulesText=Really set a new order for the field rules?
44 | removeRuleConditionTitle=Remove rule condition
45 | removeRuleConditionText=Really delete the selected rule condition?
46 | removeDynamicTagTitle=Remove dynamic tag
47 | removeDynamicTagText=Really delete the selected dynamic tag?
48 | resetAllProfilesTitle=Reset all profiles
49 | resetAllProfilesText=Really reset all profiles?
50 | selectConfigDirectory=Select config directory
51 | newConfigDirectoryNotEmptyTitle=Directory not empty
52 | newConfigDirectoryNotEmptyText=The new config directory is not empty. Do you want to overwrite existing config files?
53 | importFromConfigDirectoryTitle=Import from config directory
54 | importFromConfigDirectoryText=Do you want to overwrite the profiles with the data from the config directory?
55 | command=Command
56 | mousebutton=Mouse Button
57 | mousebutton0=Left Mouse Button
58 | mousebutton1=Middle Mouse Button
59 | mousebutton2=Right Mouse Button
60 | keyboardShortcut=Keyboard Shortcut
61 | alt=Alt
62 | control=Ctrl
63 | meta=Cmd
64 | shift=Shift
65 | VK_CANCEL=Cancel
66 | VK_HELP=Help
67 | VK_BACK=Back
68 | VK_TAB=Tab
69 | VK_CLEAR=Clear
70 | VK_RETURN=Return
71 | VK_ENTER=Enter
72 | VK_PAUSE=Pause
73 | VK_CAPS_LOCK=Caps Lock
74 | VK_ESCAPE=Esc
75 | VK_SPACE=Space
76 | VK_PAGE_UP=Page up
77 | VK_PAGE_DOWN=Page down
78 | VK_END=End
79 | VK_HOME=Home
80 | VK_LEFT=Left
81 | VK_UP=Up
82 | VK_RIGHT=Right
83 | VK_DOWN=Down
84 | VK_PRINTSCREEN=Print Scrn
85 | VK_INSERT=Insert
86 | VK_DELETE=Delete
87 | VK_NUM_LOCK=Num Lock
88 | VK_SCROLL_LOCK=Scroll Lock
89 |
--------------------------------------------------------------------------------
/chrome/locale/ru-RU/autofillForms.dtd:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
8 |
9 |
10 |
11 |
12 |
13 |
14 |
15 |
16 |
17 |
18 |
19 |
20 |
21 |
22 |
23 |
24 |
25 |
26 |
27 |
28 |
29 |
30 |
31 |
32 |
33 |
34 |
35 |
36 |
37 |
38 |
39 |
40 |
41 |
42 |
43 |
44 |
45 |
46 |
47 |
48 |
49 |
50 |
51 |
52 |
53 |
54 |
55 |
56 |
57 |
58 |
59 |
60 |
61 |
62 |
63 |
64 |
65 |
66 |
67 |
68 |
69 |
70 |
71 |
72 |
73 |
74 |
75 |
76 |
77 |
78 |
79 |
80 |
81 |
82 |
83 |
84 |
85 |
86 |
87 |
88 |
89 |
90 |
91 |
92 |
93 |
94 |
95 |
96 |
97 |
98 |
99 |
100 |
101 |
102 |
103 |
--------------------------------------------------------------------------------
/chrome/locale/ru-RU/autofillForms.properties:
--------------------------------------------------------------------------------
1 | extensions.autofillForms@blueimp.net.description=Заполняет веб-формы автоматически
2 | extensions.autofillForms@blueimp.net.shortcut=alt+J
3 | extensions.autofillForms@blueimp.net.shortcutSubmit=
4 | extensions.autofillForms@blueimp.net.shortcutAllTabs=
5 | extensions.autofillForms@blueimp.net.shortcutFromProfileSelection=
6 | extensions.autofillForms@blueimp.net.shortcutProfile=control+alt+J
7 | extensions.autofillForms@blueimp.net.shortcutSettings=control+alt+shift+J
8 | extensions.autofillForms@blueimp.net.shortcutDisplayFormDetails=
9 | extensions.autofillForms@blueimp.net.fieldRules=Username (?:(?:user)|(?:login))(?!\\w*pass) (?:) true true\nE-mail mail (?:) true true\nTitle (?:prefix\\w*name)|(?:name\\w*prefix)|(?:title) (?:) true true\nFirst name (?:first\\w*name)|(?:name\\w*first) (?:) true true\nMiddle name (?:middle\\w*name)|(?:name\\w*middle) (?:) true true\nLast name (?:last\\w*name)|(?:name\\w*last) (?:) true true\nName suffix (?:suffix\\w*name)|(?:name\\w*suffix) (?:) true true\n(Full) name name (?:) true true\nStreet (Line 1) (?:(?:street)|(?:addr))\\w*1 (?:) true true\nStreet (Line 2) (?:(?:street)|(?:addr))\\w*2 (?:) true true\nStreet (Line 3) (?:(?:street)|(?:addr))\\w*3 (?:) true true\n(Full) street (?:street)|(?:addr) (?:) true true\nCity city (?:) true true\nState (?:state)|(?:prov)|(?:region) (?:) true true\nZIP/Postal code (?:zip)|(?:post\\w*code) (?:) true true\nCountry Code country\\w*code (?:) true true\nCountry country (?:) true true\nLanguage lang (?:) true true\nBirth Day (?:bday)|(?:birth\\w?day)|(?:dob\\w?day)|(?:birth\\w*1) (?:) true true\nBirth Month (?:bmon)|(?:birth\\w?mon)|(?:dob\\w?mon)|(?:birth\\w*2) (?:) true true\nBirth Year (?:byear)|(?:birth\\w?year)|(?:dob\\w?year)|(?:birth\\w*3) (?:) true true\nCompany company (?:) true true\nOccupation (?:occupation)|(?:job) (?:) true true\nPhone (?:phone)|(?:tel) (?:) true true\nHomepage (?:web)|(?:homepage)|(?:www)|(?:url) (?:) true true
10 | extensions.autofillForms@blueimp.net.profileLabels=По умолчанию
11 | extensions.autofillForms@blueimp.net.dynamicTags=
12 | extensions.autofillForms@blueimp.net.dynamicTagCodes=new Date().toLocaleString() navigator.userAgent navigator.language screen.width+'x'+screen.height this.getClipboardText()
13 | extensions.autofillForms@blueimp.net.regExpPasswordLabel=(?:pass)
14 | tooltip=Fill out forms
15 | tooltipSubmit=Fill out and submit forms
16 | tooltipAllTabs=Fill out forms on all tabs
17 | tooltipFromProfileSelection=Fill out forms from profile selection
18 | tooltipProfile=Profile Switcher
19 | tooltipSettings=Settings
20 | tooltipDisplayFormDetails=Display Form Details
21 | currentProfileLabel=Текущий профиль:
22 | profileSelectionWindowTitle=Смена профиля
23 | profileSelectionFormFillTitle=Fill out forms
24 | profileSelectionPrompt=Выберите профиль:
25 | contextMenuMore=More...
26 | invalidRegExpTitle=Неверное регулярное выражение
27 | invalidRegExpText=Введённое регулярное выражение недействительно:
28 | containsRuleType=содержит
29 | beginsWithRuleType=начинается с
30 | endsWithRuleType=заканчивается
31 | equalsRuleType=равно
32 | alternativesSelectionWindowTitle=Select alternative
33 | alternativesSelectionPrompt=Select alternative:
34 | importProfile=Импорт профиля
35 | exportProfile=Экспорт профиля
36 | importDynamicTags=Import Dynamic Tags
37 | exportDynamicTags=Export Dynamic Tags
38 | removeProfileTitle=Remove profile
39 | removeProfileText=Really delete the current profile?
40 | removeFieldRulesTitle=Remove field rules
41 | removeFieldRulesText=Really delete the selected field rules?
42 | sortFieldRulesTitle=Sort field rules
43 | sortFieldRulesText=Really set a new order for the field rules?
44 | removeRuleConditionTitle=Remove rule condition
45 | removeRuleConditionText=Really delete the selected rule condition?
46 | removeDynamicTagTitle=Remove dynamic tag
47 | removeDynamicTagText=Really delete the selected dynamic tag?
48 | resetAllProfilesTitle=Reset all profiles
49 | resetAllProfilesText=Really reset all profiles?
50 | selectConfigDirectory=Select config directory
51 | newConfigDirectoryNotEmptyTitle=Directory not empty
52 | newConfigDirectoryNotEmptyText=The new config directory is not empty. Do you want to overwrite existing config files?
53 | importFromConfigDirectoryTitle=Import from config directory
54 | importFromConfigDirectoryText=Do you want to overwrite the profiles with the data from the config directory?
55 | command=Command
56 | mousebutton=Mouse Button
57 | mousebutton0=Left Mouse Button
58 | mousebutton1=Middle Mouse Button
59 | mousebutton2=Right Mouse Button
60 | keyboardShortcut=Keyboard Shortcut
61 | alt=Alt
62 | control=Ctrl
63 | meta=Cmd
64 | shift=Shift
65 | VK_CANCEL=Cancel
66 | VK_HELP=Help
67 | VK_BACK=Back
68 | VK_TAB=Tab
69 | VK_CLEAR=Clear
70 | VK_RETURN=Return
71 | VK_ENTER=Enter
72 | VK_PAUSE=Pause
73 | VK_CAPS_LOCK=Caps Lock
74 | VK_ESCAPE=Esc
75 | VK_SPACE=Space
76 | VK_PAGE_UP=Page up
77 | VK_PAGE_DOWN=Page down
78 | VK_END=End
79 | VK_HOME=Home
80 | VK_LEFT=Left
81 | VK_UP=Up
82 | VK_RIGHT=Right
83 | VK_DOWN=Down
84 | VK_PRINTSCREEN=Print Scrn
85 | VK_INSERT=Insert
86 | VK_DELETE=Delete
87 | VK_NUM_LOCK=Num Lock
88 | VK_SCROLL_LOCK=Scroll Lock
89 |
--------------------------------------------------------------------------------
/chrome/locale/sk-SK/autofillForms.dtd:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
8 |
9 |
10 |
11 |
12 |
13 |
14 |
15 |
16 |
17 |
18 |
19 |
20 |
21 |
22 |
23 |
24 |
25 |
26 |
27 |
28 |
29 |
30 |
31 |
32 |
33 |
34 |
35 |
36 |
37 |
38 |
39 |
40 |
41 |
42 |
43 |
44 |
45 |
46 |
47 |
48 |
49 |
50 |
51 |
52 |
53 |
54 |
55 |
56 |
57 |
58 |
59 |
60 |
61 |
62 |
63 |
64 |
65 |
66 |
67 |
68 |
69 |
70 |
71 |
72 |
73 |
74 |
75 |
76 |
77 |
78 |
79 |
80 |
81 |
82 |
83 |
84 |
85 |
86 |
87 |
88 |
89 |
90 |
91 |
92 |
93 |
94 |
95 |
96 |
97 |
98 |
99 |
100 |
101 |
102 |
103 |
--------------------------------------------------------------------------------
/chrome/locale/sk-SK/autofillForms.properties:
--------------------------------------------------------------------------------
1 | extensions.autofillForms@blueimp.net.description=Automaticky vyplní formuláre na internete
2 | extensions.autofillForms@blueimp.net.shortcut=alt+J
3 | extensions.autofillForms@blueimp.net.shortcutSubmit=
4 | extensions.autofillForms@blueimp.net.shortcutAllTabs=
5 | extensions.autofillForms@blueimp.net.shortcutFromProfileSelection=
6 | extensions.autofillForms@blueimp.net.shortcutProfile=control+alt+J
7 | extensions.autofillForms@blueimp.net.shortcutSettings=control+alt+shift+J
8 | extensions.autofillForms@blueimp.net.shortcutDisplayFormDetails=
9 | extensions.autofillForms@blueimp.net.fieldRules=Username (?:(?:user)|(?:login))(?!\\w*pass) (?:) true true\nE-mail mail (?:) true true\nTitle (?:prefix\\w*name)|(?:name\\w*prefix)|(?:title) (?:) true true\nFirst name (?:first\\w*name)|(?:name\\w*first) (?:) true true\nMiddle name (?:middle\\w*name)|(?:name\\w*middle) (?:) true true\nLast name (?:last\\w*name)|(?:name\\w*last) (?:) true true\nName suffix (?:suffix\\w*name)|(?:name\\w*suffix) (?:) true true\n(Full) name name (?:) true true\nStreet (Line 1) (?:(?:street)|(?:addr))\\w*1 (?:) true true\nStreet (Line 2) (?:(?:street)|(?:addr))\\w*2 (?:) true true\nStreet (Line 3) (?:(?:street)|(?:addr))\\w*3 (?:) true true\n(Full) street (?:street)|(?:addr) (?:) true true\nCity city (?:) true true\nState (?:state)|(?:prov)|(?:region) (?:) true true\nZIP/Postal code (?:zip)|(?:post\\w*code) (?:) true true\nCountry Code country\\w*code (?:) true true\nCountry country (?:) true true\nLanguage lang (?:) true true\nBirth Day (?:bday)|(?:birth\\w?day)|(?:dob\\w?day)|(?:birth\\w*1) (?:) true true\nBirth Month (?:bmon)|(?:birth\\w?mon)|(?:dob\\w?mon)|(?:birth\\w*2) (?:) true true\nBirth Year (?:byear)|(?:birth\\w?year)|(?:dob\\w?year)|(?:birth\\w*3) (?:) true true\nCompany company (?:) true true\nOccupation (?:occupation)|(?:job) (?:) true true\nPhone (?:phone)|(?:tel) (?:) true true\nHomepage (?:web)|(?:homepage)|(?:www)|(?:url) (?:) true true
10 | extensions.autofillForms@blueimp.net.profileLabels=Predvolené
11 | extensions.autofillForms@blueimp.net.dynamicTags=
12 | extensions.autofillForms@blueimp.net.dynamicTagCodes=new Date().toLocaleString() navigator.userAgent navigator.language screen.width+'x'+screen.height this.getClipboardText()
13 | extensions.autofillForms@blueimp.net.regExpPasswordLabel=(?:pass)
14 | tooltip=Fill out forms
15 | tooltipSubmit=Fill out and submit forms
16 | tooltipAllTabs=Fill out forms on all tabs
17 | tooltipFromProfileSelection=Fill out forms from profile selection
18 | tooltipProfile=Profile Switcher
19 | tooltipSettings=Settings
20 | tooltipDisplayFormDetails=Display Form Details
21 | currentProfileLabel=Aktuálny profil:
22 | profileSelectionWindowTitle=Prepnutie profilu
23 | profileSelectionFormFillTitle=Fill out forms
24 | profileSelectionPrompt=Vybrať profil:
25 | contextMenuMore=More...
26 | invalidRegExpTitle=Neplatný regulárny výraz
27 | invalidRegExpText=Zadaný regulárny výraz je neplatný:
28 | containsRuleType=obsahuje
29 | beginsWithRuleType=začína s
30 | endsWithRuleType=končí s
31 | equalsRuleType=rovná sa
32 | alternativesSelectionWindowTitle=Voľba alternatívy
33 | alternativesSelectionPrompt=Zvoľte alternatívu:
34 | importProfile=Importovať profil
35 | exportProfile=Exportovať profil
36 | importDynamicTags=Import Dynamic Tags
37 | exportDynamicTags=Export Dynamic Tags
38 | removeProfileTitle=Odstrániť profil
39 | removeProfileText=Naozaj odstrániť aktuálny profil?
40 | removeFieldRulesTitle=Odstránenie previdiel pre polia
41 | removeFieldRulesText=Naozaj odstrániť zvolené pravidlá pre polia?
42 | sortFieldRulesTitle=Sort field rules
43 | sortFieldRulesText=Really set a new order for the field rules?
44 | removeRuleConditionTitle=Odstránenie podmienky pre pravidlo
45 | removeRuleConditionText=Naozaj odstrániť zvolenú podmienku pre pravidlo?
46 | removeDynamicTagTitle=Odstránenie dynamického popisu
47 | removeDynamicTagText=Naozaj odstrániť zvolený dynamický popis?
48 | resetAllProfilesTitle=Reset all profiles
49 | resetAllProfilesText=Really reset all profiles?
50 | selectConfigDirectory=Select config directory
51 | newConfigDirectoryNotEmptyTitle=Directory not empty
52 | newConfigDirectoryNotEmptyText=The new config directory is not empty. Do you want to overwrite existing config files?
53 | importFromConfigDirectoryTitle=Import from config directory
54 | importFromConfigDirectoryText=Do you want to overwrite the profiles with the data from the config directory?
55 | command=Command
56 | mousebutton=Mouse Button
57 | mousebutton0=Left Mouse Button
58 | mousebutton1=Middle Mouse Button
59 | mousebutton2=Right Mouse Button
60 | keyboardShortcut=Keyboard Shortcut
61 | alt=Alt
62 | control=Ctrl
63 | meta=Cmd
64 | shift=Shift
65 | VK_CANCEL=Zrušiť
66 | VK_HELP=Pomoc
67 | VK_BACK=Späť
68 | VK_TAB=Tab
69 | VK_CLEAR=Vymazať
70 | VK_RETURN=Return
71 | VK_ENTER=Enter
72 | VK_PAUSE=Pozastaviť
73 | VK_CAPS_LOCK=Caps Lock
74 | VK_ESCAPE=Esc
75 | VK_SPACE=Medzerník
76 | VK_PAGE_UP=Page Up
77 | VK_PAGE_DOWN=Page Down
78 | VK_END=End
79 | VK_HOME=Home
80 | VK_LEFT=Šípka vľavo
81 | VK_UP=Šípka hore
82 | VK_RIGHT=Šípka vpravo
83 | VK_DOWN=Šípka dole
84 | VK_PRINTSCREEN=Print Screen
85 | VK_INSERT=Insert
86 | VK_DELETE=Delete
87 | VK_NUM_LOCK=Num Lock
88 | VK_SCROLL_LOCK=Scroll Lock
89 |
--------------------------------------------------------------------------------
/chrome/locale/sv-SE/autofillForms.dtd:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
8 |
9 |
10 |
11 |
12 |
13 |
14 |
15 |
16 |
17 |
18 |
19 |
20 |
21 |
22 |
23 |
24 |
25 |
26 |
27 |
28 |
29 |
30 |
31 |
32 |
33 |
34 |
35 |
36 |
37 |
38 |
39 |
40 |
41 |
42 |
43 |
44 |
45 |
46 |
47 |
48 |
49 |
50 |
51 |
52 |
53 |
54 |
55 |
56 |
57 |
58 |
59 |
60 |
61 |
62 |
63 |
64 |
65 |
66 |
67 |
68 |
69 |
70 |
71 |
72 |
73 |
74 |
75 |
76 |
77 |
78 |
79 |
80 |
81 |
82 |
83 |
84 |
85 |
86 |
87 |
88 |
89 |
90 |
91 |
92 |
93 |
94 |
95 |
96 |
97 |
98 |
99 |
100 |
101 |
102 |
103 |
--------------------------------------------------------------------------------
/chrome/locale/sv-SE/autofillForms.properties:
--------------------------------------------------------------------------------
1 | extensions.autofillForms@blueimp.net.description=Fyll in webbformulär automatiskt
2 | extensions.autofillForms@blueimp.net.shortcut=alt+j
3 | extensions.autofillForms@blueimp.net.shortcutSubmit=
4 | extensions.autofillForms@blueimp.net.shortcutAllTabs=
5 | extensions.autofillForms@blueimp.net.shortcutFromProfileSelection=
6 | extensions.autofillForms@blueimp.net.shortcutProfile=ctrl+alt+J
7 | extensions.autofillForms@blueimp.net.shortcutSettings=ctrl+alt+shift+j
8 | extensions.autofillForms@blueimp.net.shortcutDisplayFormDetails=
9 | extensions.autofillForms@blueimp.net.fieldRules=Username (?:(?:user)|(?:login))(?!\\w*pass) (?:) true true\nE-mail mail (?:) true true\nTitle (?:prefix\\w*name)|(?:name\\w*prefix)|(?:title) (?:) true true\nFirst name (?:first\\w*name)|(?:name\\w*first) (?:) true true\nMiddle name (?:middle\\w*name)|(?:name\\w*middle) (?:) true true\nLast name (?:last\\w*name)|(?:name\\w*last) (?:) true true\nName suffix (?:suffix\\w*name)|(?:name\\w*suffix) (?:) true true\n(Full) name name (?:) true true\nStreet (Line 1) (?:(?:street)|(?:addr))\\w*1 (?:) true true\nStreet (Line 2) (?:(?:street)|(?:addr))\\w*2 (?:) true true\nStreet (Line 3) (?:(?:street)|(?:addr))\\w*3 (?:) true true\n(Full) street (?:street)|(?:addr) (?:) true true\nCity city (?:) true true\nState (?:state)|(?:prov)|(?:region) (?:) true true\nZIP/Postal code (?:zip)|(?:post\\w*code) (?:) true true\nCountry Code country\\w*code (?:) true true\nCountry country (?:) true true\nLanguage lang (?:) true true\nBirth Day (?:bday)|(?:birth\\w?day)|(?:dob\\w?day)|(?:birth\\w*1) (?:) true true\nBirth Month (?:bmon)|(?:birth\\w?mon)|(?:dob\\w?mon)|(?:birth\\w*2) (?:) true true\nBirth Year (?:byear)|(?:birth\\w?year)|(?:dob\\w?year)|(?:birth\\w*3) (?:) true true\nCompany company (?:) true true\nOccupation (?:occupation)|(?:job) (?:) true true\nPhone (?:phone)|(?:tel) (?:) true true\nHomepage (?:web)|(?:homepage)|(?:www)|(?:url) (?:) true true
10 | extensions.autofillForms@blueimp.net.profileLabels=Förvalt
11 | extensions.autofillForms@blueimp.net.dynamicTags=
12 | extensions.autofillForms@blueimp.net.dynamicTagCodes=new Date().toLocaleString() navigator.userAgent navigator.language screen.width+'x'+screen.height this.getClipboardText()
13 | extensions.autofillForms@blueimp.net.regExpPasswordLabel=(?:pass)
14 | tooltip=Fyll formulär
15 | tooltipSubmit=Fyll in och välj formulär
16 | tooltipAllTabs=Fyll in formulär på alla tabbar
17 | tooltipFromProfileSelection=Fyll in formulär från profil urval
18 | tooltipProfile=Byta profil
19 | tooltipSettings=Inställningar
20 | tooltipDisplayFormDetails=Display Form Details
21 | currentProfileLabel=Nuvarande profil:
22 | profileSelectionWindowTitle=Byta Profil
23 | profileSelectionFormFillTitle=Fyll in formulär
24 | profileSelectionPrompt=Välj profil:
25 | contextMenuMore=Mer...
26 | invalidRegExpTitle=Invalid regular expression
27 | invalidRegExpText=The entered regular expression is not valid:
28 | containsRuleType=innehåller
29 | beginsWithRuleType=börjar med
30 | endsWithRuleType=slutar med
31 | equalsRuleType=lika med
32 | alternativesSelectionWindowTitle=Välj alternativ
33 | alternativesSelectionPrompt=Välj alternativ:
34 | importProfile=Importera profil
35 | exportProfile=Exportera profil
36 | importDynamicTags=Import Dynamic Tags
37 | exportDynamicTags=Export Dynamic Tags
38 | removeProfileTitle=Radera profil
39 | removeProfileText=Är du säker på att radera aktuella profilen?
40 | removeFieldRulesTitle=Radera fält regler
41 | removeFieldRulesText=Verkligen radera valda fält regler?
42 | sortFieldRulesTitle=Sortera fält regler
43 | sortFieldRulesText=Är du säker på att sätta en ny ordning på fält reglerna?
44 | removeRuleConditionTitle=Remove rule condition
45 | removeRuleConditionText=Really delete the selected rule condition?
46 | removeDynamicTagTitle=Radera dynamik tagg
47 | removeDynamicTagText=Verkligen radera valda dynamiska tagg?
48 | resetAllProfilesTitle=Omställa alla profiler
49 | resetAllProfilesText=Är du säker på att omställa alla profiler?
50 | selectConfigDirectory=Välj config katalog
51 | newConfigDirectoryNotEmptyTitle=Katalogen är inte tom
52 | newConfigDirectoryNotEmptyText=The new config directory is not empty. Do you want to overwrite existing config files?
53 | importFromConfigDirectoryTitle=Importera från config katalogen
54 | importFromConfigDirectoryText=Vill du skriva över profiler med data från config katalogen?
55 | command=Kommando
56 | mousebutton=Musknapp
57 | mousebutton0=Vänster musknapp
58 | mousebutton1=Mitten musknapp
59 | mousebutton2=Höger musknapp
60 | keyboardShortcut=Tangentbord genväg
61 | alt=Alt
62 | control=Ctrl
63 | meta=Cmd
64 | shift=Shift
65 | VK_CANCEL=Avbryt
66 | VK_HELP=Hjälp
67 | VK_BACK=Bak
68 | VK_TAB=Tab
69 | VK_CLEAR=Rensa
70 | VK_RETURN=Tillbaka
71 | VK_ENTER=Enter
72 | VK_PAUSE=Paus
73 | VK_CAPS_LOCK=Caps Lock
74 | VK_ESCAPE=Esc
75 | VK_SPACE=Mellanslag
76 | VK_PAGE_UP=Page up
77 | VK_PAGE_DOWN=Page down
78 | VK_END=End
79 | VK_HOME=Home
80 | VK_LEFT=Vänster
81 | VK_UP=Upp
82 | VK_RIGHT=Höger
83 | VK_DOWN=Ner
84 | VK_PRINTSCREEN=Print Scrn
85 | VK_INSERT=Instert
86 | VK_DELETE=Delete
87 | VK_NUM_LOCK=Num Lock
88 | VK_SCROLL_LOCK=Scroll Lock
89 |
--------------------------------------------------------------------------------
/chrome/locale/tr-TR/autofillForms.dtd:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
8 |
9 |
10 |
11 |
12 |
13 |
14 |
15 |
16 |
17 |
18 |
19 |
20 |
21 |
22 |
23 |
24 |
25 |
26 |
27 |
28 |
29 |
30 |
31 |
32 |
33 |
34 |
35 |
36 |
37 |
38 |
39 |
40 |
41 |
42 |
43 |
44 |
45 |
46 |
47 |
48 |
49 |
50 |
51 |
52 |
53 |
54 |
55 |
56 |
57 |
58 |
59 |
60 |
61 |
62 |
63 |
64 |
65 |
66 |
67 |
68 |
69 |
70 |
71 |
72 |
73 |
74 |
75 |
76 |
77 |
78 |
79 |
80 |
81 |
82 |
83 |
84 |
85 |
86 |
87 |
88 |
89 |
90 |
91 |
92 |
93 |
94 |
95 |
96 |
97 |
98 |
99 |
100 |
101 |
102 |
103 |
--------------------------------------------------------------------------------
/chrome/locale/tr-TR/autofillForms.properties:
--------------------------------------------------------------------------------
1 | extensions.autofillForms@blueimp.net.description=Web formlarını otomatik doldur
2 | extensions.autofillForms@blueimp.net.shortcut=alt+J
3 | extensions.autofillForms@blueimp.net.shortcutSubmit=
4 | extensions.autofillForms@blueimp.net.shortcutAllTabs=
5 | extensions.autofillForms@blueimp.net.shortcutFromProfileSelection=
6 | extensions.autofillForms@blueimp.net.shortcutProfile=control+alt+J
7 | extensions.autofillForms@blueimp.net.shortcutSettings=control+alt+shift+J
8 | extensions.autofillForms@blueimp.net.shortcutDisplayFormDetails=
9 | extensions.autofillForms@blueimp.net.fieldRules=Username (?:(?:user)|(?:login))(?!\\w*pass) (?:) true true\nE-mail mail (?:) true true\nTitle (?:prefix\\w*name)|(?:name\\w*prefix)|(?:title) (?:) true true\nFirst name (?:first\\w*name)|(?:name\\w*first) (?:) true true\nMiddle name (?:middle\\w*name)|(?:name\\w*middle) (?:) true true\nLast name (?:last\\w*name)|(?:name\\w*last) (?:) true true\nName suffix (?:suffix\\w*name)|(?:name\\w*suffix) (?:) true true\n(Full) name name (?:) true true\nStreet (Line 1) (?:(?:street)|(?:addr))\\w*1 (?:) true true\nStreet (Line 2) (?:(?:street)|(?:addr))\\w*2 (?:) true true\nStreet (Line 3) (?:(?:street)|(?:addr))\\w*3 (?:) true true\n(Full) street (?:street)|(?:addr) (?:) true true\nCity city (?:) true true\nState (?:state)|(?:prov)|(?:region) (?:) true true\nZIP/Postal code (?:zip)|(?:post\\w*code) (?:) true true\nCountry Code country\\w*code (?:) true true\nCountry country (?:) true true\nLanguage lang (?:) true true\nBirth Day (?:bday)|(?:birth\\w?day)|(?:dob\\w?day)|(?:birth\\w*1) (?:) true true\nBirth Month (?:bmon)|(?:birth\\w?mon)|(?:dob\\w?mon)|(?:birth\\w*2) (?:) true true\nBirth Year (?:byear)|(?:birth\\w?year)|(?:dob\\w?year)|(?:birth\\w*3) (?:) true true\nCompany company (?:) true true\nOccupation (?:occupation)|(?:job) (?:) true true\nPhone (?:phone)|(?:tel) (?:) true true\nHomepage (?:web)|(?:homepage)|(?:www)|(?:url) (?:) true true
10 | extensions.autofillForms@blueimp.net.profileLabels=Varsayılan
11 | extensions.autofillForms@blueimp.net.dynamicTags=
12 | extensions.autofillForms@blueimp.net.dynamicTagCodes=new Date().toLocaleString() navigator.userAgent navigator.language screen.width+'x'+screen.height this.getClipboardText()
13 | extensions.autofillForms@blueimp.net.regExpPasswordLabel=(?:pass)
14 | tooltip=Fill out forms
15 | tooltipSubmit=Fill out and submit forms
16 | tooltipAllTabs=Fill out forms on all tabs
17 | tooltipFromProfileSelection=Fill out forms from profile selection
18 | tooltipProfile=Profile Switcher
19 | tooltipSettings=Settings
20 | tooltipDisplayFormDetails=Display Form Details
21 | currentProfileLabel=Geçerli profil:
22 | profileSelectionWindowTitle=Profil Değiştir
23 | profileSelectionFormFillTitle=Fill out forms
24 | profileSelectionPrompt=Profil Seç
25 | contextMenuMore=More...
26 | invalidRegExpTitle=Hatalı ifade
27 | invalidRegExpText=Girilen ifade geçerli değil:
28 | containsRuleType=içeriyor
29 | beginsWithRuleType=ile başlıyor
30 | endsWithRuleType=ile bitiyor
31 | equalsRuleType=eşitlikler
32 | alternativesSelectionWindowTitle=Alternatif seç
33 | alternativesSelectionPrompt=Alternatif seç:
34 | importProfile=Profil Al
35 | exportProfile=Profili Ver
36 | importDynamicTags=Import Dynamic Tags
37 | exportDynamicTags=Export Dynamic Tags
38 | removeProfileTitle=Profil kaldır
39 | removeProfileText=Geçerli profili gerçekten silecek misiniz?
40 | removeFieldRulesTitle=Kuralları kaldır
41 | removeFieldRulesText=Seçili kuralları kaldırmak istiyor musunuz?
42 | sortFieldRulesTitle=Sort field rules
43 | sortFieldRulesText=Really set a new order for the field rules?
44 | removeRuleConditionTitle=Kural koşulunu kaldır
45 | removeRuleConditionText=Seçili kural koşulunu kaldırmak istiyor musunuz?
46 | removeDynamicTagTitle=Dinamik etiketi kaldır
47 | removeDynamicTagText=Seçili dinamik etiketi kaldırmak istiyor musunuz?
48 | resetAllProfilesTitle=Reset all profiles
49 | resetAllProfilesText=Really reset all profiles?
50 | selectConfigDirectory=Select config directory
51 | newConfigDirectoryNotEmptyTitle=Directory not empty
52 | newConfigDirectoryNotEmptyText=The new config directory is not empty. Do you want to overwrite existing config files?
53 | importFromConfigDirectoryTitle=Import from config directory
54 | importFromConfigDirectoryText=Do you want to overwrite the profiles with the data from the config directory?
55 | command=Command
56 | mousebutton=Mouse Button
57 | mousebutton0=Left Mouse Button
58 | mousebutton1=Middle Mouse Button
59 | mousebutton2=Right Mouse Button
60 | keyboardShortcut=Keyboard Shortcut
61 | alt=Alt
62 | control=Ctrl
63 | meta=Cmd
64 | shift=Shift
65 | VK_CANCEL=Vazgeç
66 | VK_HELP=Yardım
67 | VK_BACK=Geri
68 | VK_TAB=Tab
69 | VK_CLEAR=Temizle
70 | VK_RETURN=Return
71 | VK_ENTER=Enter
72 | VK_PAUSE=Pause
73 | VK_CAPS_LOCK=Caps Lock
74 | VK_ESCAPE=Esc
75 | VK_SPACE=Space
76 | VK_PAGE_UP=Page up
77 | VK_PAGE_DOWN=Page down
78 | VK_END=End
79 | VK_HOME=Home
80 | VK_LEFT=Sol
81 | VK_UP=Yukarı
82 | VK_RIGHT=Sağ
83 | VK_DOWN=Aşağı
84 | VK_PRINTSCREEN=Print Scrn
85 | VK_INSERT=Insert
86 | VK_DELETE=Delete
87 | VK_NUM_LOCK=Num Lock
88 | VK_SCROLL_LOCK=Scroll Lock
89 |
--------------------------------------------------------------------------------
/chrome/locale/zh-CN/autofillForms.dtd:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
8 |
9 |
10 |
11 |
12 |
13 |
14 |
15 |
16 |
17 |
18 |
19 |
20 |
21 |
22 |
23 |
24 |
25 |
26 |
27 |
28 |
29 |
30 |
31 |
32 |
33 |
34 |
35 |
36 |
37 |
38 |
39 |
40 |
41 |
42 |
43 |
44 |
45 |
46 |
47 |
48 |
49 |
50 |
51 |
52 |
53 |
54 |
55 |
56 |
57 |
58 |
59 |
60 |
61 |
62 |
63 |
64 |
65 |
66 |
67 |
68 |
69 |
70 |
71 |
72 |
73 |
74 |
75 |
76 |
77 |
78 |
79 |
80 |
81 |
82 |
83 |
84 |
85 |
86 |
87 |
88 |
89 |
90 |
91 |
92 |
93 |
94 |
95 |
96 |
97 |
98 |
99 |
100 |
101 |
102 |
103 |
--------------------------------------------------------------------------------
/chrome/locale/zh-CN/autofillForms.properties:
--------------------------------------------------------------------------------
1 | extensions.autofillForms@blueimp.net.description=自动填写表单
2 | extensions.autofillForms@blueimp.net.shortcut=alt+J
3 | extensions.autofillForms@blueimp.net.shortcutSubmit=
4 | extensions.autofillForms@blueimp.net.shortcutAllTabs=
5 | extensions.autofillForms@blueimp.net.shortcutFromProfileSelection=
6 | extensions.autofillForms@blueimp.net.shortcutProfile=control+alt+J
7 | extensions.autofillForms@blueimp.net.shortcutSettings=control+alt+shift+J
8 | extensions.autofillForms@blueimp.net.shortcutDisplayFormDetails=
9 | extensions.autofillForms@blueimp.net.fieldRules=Username (?:(?:user)|(?:login))(?!\\w*pass) (?:) true true\nE-mail mail (?:) true true\nTitle (?:prefix\\w*name)|(?:name\\w*prefix)|(?:title) (?:) true true\nFirst name (?:first\\w*name)|(?:name\\w*first) (?:) true true\nMiddle name (?:middle\\w*name)|(?:name\\w*middle) (?:) true true\nLast name (?:last\\w*name)|(?:name\\w*last) (?:) true true\nName suffix (?:suffix\\w*name)|(?:name\\w*suffix) (?:) true true\n(Full) name name (?:) true true\nStreet (Line 1) (?:(?:street)|(?:addr))\\w*1 (?:) true true\nStreet (Line 2) (?:(?:street)|(?:addr))\\w*2 (?:) true true\nStreet (Line 3) (?:(?:street)|(?:addr))\\w*3 (?:) true true\n(Full) street (?:street)|(?:addr) (?:) true true\nCity city (?:) true true\nState (?:state)|(?:prov)|(?:region) (?:) true true\nZIP/Postal code (?:zip)|(?:post\\w*code) (?:) true true\nCountry Code country\\w*code (?:) true true\nCountry country (?:) true true\nLanguage lang (?:) true true\nBirth Day (?:bday)|(?:birth\\w?day)|(?:dob\\w?day)|(?:birth\\w*1) (?:) true true\nBirth Month (?:bmon)|(?:birth\\w?mon)|(?:dob\\w?mon)|(?:birth\\w*2) (?:) true true\nBirth Year (?:byear)|(?:birth\\w?year)|(?:dob\\w?year)|(?:birth\\w*3) (?:) true true\nCompany company (?:) true true\nOccupation (?:occupation)|(?:job) (?:) true true\nPhone (?:phone)|(?:tel) (?:) true true\nHomepage (?:web)|(?:homepage)|(?:www)|(?:url) (?:) true true
10 | extensions.autofillForms@blueimp.net.profileLabels=默认
11 | extensions.autofillForms@blueimp.net.dynamicTags=
12 | extensions.autofillForms@blueimp.net.dynamicTagCodes=new Date().toLocaleString() navigator.userAgent navigator.language screen.width+'x'+screen.height this.getClipboardText()
13 | extensions.autofillForms@blueimp.net.regExpPasswordLabel=(?:pass)
14 | tooltip=Fill out forms
15 | tooltipSubmit=Fill out and submit forms
16 | tooltipAllTabs=Fill out forms on all tabs
17 | tooltipFromProfileSelection=Fill out forms from profile selection
18 | tooltipProfile=Profile Switcher
19 | tooltipSettings=Settings
20 | tooltipDisplayFormDetails=Display Form Details
21 | currentProfileLabel=当前身份信息
22 | profileSelectionWindowTitle=更换身份信息
23 | profileSelectionFormFillTitle=Fill out forms
24 | profileSelectionPrompt=选择身份信息
25 | contextMenuMore=More...
26 | invalidRegExpTitle=不合法的正则表达式
27 | invalidRegExpText=输入的正则表达式不合法
28 | containsRuleType=包含
29 | beginsWithRuleType=开始于
30 | endsWithRuleType=结束于
31 | equalsRuleType=等于
32 | alternativesSelectionWindowTitle=选择选项
33 | alternativesSelectionPrompt=选择选项:
34 | importProfile=导入身份信息
35 | exportProfile=导出身份信息
36 | importDynamicTags=Import Dynamic Tags
37 | exportDynamicTags=Export Dynamic Tags
38 | removeProfileTitle=移除身份信息
39 | removeProfileText=您真的要删除当前的身份信息?
40 | removeFieldRulesTitle=移除区域规则
41 | removeFieldRulesText=真的要删除选定的区域规则么?
42 | sortFieldRulesTitle=区域规则排序
43 | sortFieldRulesText=真的要给这些区域规则排序么?
44 | removeRuleConditionTitle=删除条件状态
45 | removeRuleConditionText=真的删除这些条件状态么?
46 | removeDynamicTagTitle=删除动态标签
47 | removeDynamicTagText=真的删除这些动态标签么?
48 | resetAllProfilesTitle=重置所有选项
49 | resetAllProfilesText=真的重置所有选项么?
50 | selectConfigDirectory=Select config directory
51 | newConfigDirectoryNotEmptyTitle=Directory not empty
52 | newConfigDirectoryNotEmptyText=The new config directory is not empty. Do you want to overwrite existing config files?
53 | importFromConfigDirectoryTitle=Import from config directory
54 | importFromConfigDirectoryText=Do you want to overwrite the profiles with the data from the config directory?
55 | command=Command
56 | mousebutton=Mouse Button
57 | mousebutton0=Left Mouse Button
58 | mousebutton1=Middle Mouse Button
59 | mousebutton2=Right Mouse Button
60 | keyboardShortcut=Keyboard Shortcut
61 | alt=alt
62 | control=Ctrl
63 | meta=Cmd
64 | shift=Shift
65 | VK_CANCEL=取消
66 | VK_HELP=帮助
67 | VK_BACK=Back
68 | VK_TAB=Tab
69 | VK_CLEAR=清除
70 | VK_RETURN=返回
71 | VK_ENTER=Enter
72 | VK_PAUSE=Pause
73 | VK_CAPS_LOCK=Caps Lock
74 | VK_ESCAPE=Esc
75 | VK_SPACE=Space
76 | VK_PAGE_UP=Page up
77 | VK_PAGE_DOWN=Page down
78 | VK_END=End
79 | VK_HOME=Home
80 | VK_LEFT=Left
81 | VK_UP=Up
82 | VK_RIGHT=Right
83 | VK_DOWN=Down
84 | VK_PRINTSCREEN=Print Screen
85 | VK_INSERT=Insert
86 | VK_DELETE=Delete
87 | VK_NUM_LOCK=Num Lock
88 | VK_SCROLL_LOCK=Scroll Lock
89 |
--------------------------------------------------------------------------------
/chrome/locale/zh-TW/autofillForms.dtd:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
8 |
9 |
10 |
11 |
12 |
13 |
14 |
15 |
16 |
17 |
18 |
19 |
20 |
21 |
22 |
23 |
24 |
25 |
26 |
27 |
28 |
29 |
30 |
31 |
32 |
33 |
34 |
35 |
36 |
37 |
38 |
39 |
40 |
41 |
42 |
43 |
44 |
45 |
46 |
47 |
48 |
49 |
50 |
51 |
52 |
53 |
54 |
55 |
56 |
57 |
58 |
59 |
60 |
61 |
62 |
63 |
64 |
65 |
66 |
67 |
68 |
69 |
70 |
71 |
72 |
73 |
74 |
75 |
76 |
77 |
78 |
79 |
80 |
81 |
82 |
83 |
84 |
85 |
86 |
87 |
88 |
89 |
90 |
91 |
92 |
93 |
94 |
95 |
96 |
97 |
98 |
99 |
100 |
101 |
102 |
103 |
--------------------------------------------------------------------------------
/chrome/locale/zh-TW/autofillForms.properties:
--------------------------------------------------------------------------------
1 | extensions.autofillForms@blueimp.net.description=自動填寫表單
2 | extensions.autofillForms@blueimp.net.shortcut=alt+J
3 | extensions.autofillForms@blueimp.net.shortcutSubmit=
4 | extensions.autofillForms@blueimp.net.shortcutAllTabs=
5 | extensions.autofillForms@blueimp.net.shortcutFromProfileSelection=
6 | extensions.autofillForms@blueimp.net.shortcutProfile=control+alt+J
7 | extensions.autofillForms@blueimp.net.shortcutSettings=control+alt+shift+J
8 | extensions.autofillForms@blueimp.net.shortcutDisplayFormDetails=
9 | extensions.autofillForms@blueimp.net.fieldRules=Username (?:(?:user)|(?:login))(?!\\w*pass) (?:) true true\nE-mail mail (?:) true true\nTitle (?:prefix\\w*name)|(?:name\\w*prefix)|(?:title) (?:) true true\nFirst name (?:first\\w*name)|(?:name\\w*first) (?:) true true\nMiddle name (?:middle\\w*name)|(?:name\\w*middle) (?:) true true\nLast name (?:last\\w*name)|(?:name\\w*last) (?:) true true\nName suffix (?:suffix\\w*name)|(?:name\\w*suffix) (?:) true true\n(Full) name name (?:) true true\nStreet (Line 1) (?:(?:street)|(?:addr))\\w*1 (?:) true true\nStreet (Line 2) (?:(?:street)|(?:addr))\\w*2 (?:) true true\nStreet (Line 3) (?:(?:street)|(?:addr))\\w*3 (?:) true true\n(Full) street (?:street)|(?:addr) (?:) true true\nCity city (?:) true true\nState (?:state)|(?:prov)|(?:region) (?:) true true\nZIP/Postal code (?:zip)|(?:post\\w*code) (?:) true true\nCountry Code country\\w*code (?:) true true\nCountry country (?:) true true\nLanguage lang (?:) true true\nBirth Day (?:bday)|(?:birth\\w?day)|(?:dob\\w?day)|(?:birth\\w*1) (?:) true true\nBirth Month (?:bmon)|(?:birth\\w?mon)|(?:dob\\w?mon)|(?:birth\\w*2) (?:) true true\nBirth Year (?:byear)|(?:birth\\w?year)|(?:dob\\w?year)|(?:birth\\w*3) (?:) true true\nCompany company (?:) true true\nOccupation (?:occupation)|(?:job) (?:) true true\nPhone (?:phone)|(?:tel) (?:) true true\nHomepage (?:web)|(?:homepage)|(?:www)|(?:url) (?:) true true
10 | extensions.autofillForms@blueimp.net.profileLabels=預設
11 | extensions.autofillForms@blueimp.net.dynamicTags=
12 | extensions.autofillForms@blueimp.net.dynamicTagCodes=new Date().toLocaleString() navigator.userAgent navigator.language screen.width+'x'+screen.height this.getClipboardText()
13 | extensions.autofillForms@blueimp.net.regExpPasswordLabel=(?:pass)
14 | tooltip=Fill out forms
15 | tooltipSubmit=Fill out and submit forms
16 | tooltipAllTabs=Fill out forms on all tabs
17 | tooltipFromProfileSelection=Fill out forms from profile selection
18 | tooltipProfile=Profile Switcher
19 | tooltipSettings=Settings
20 | tooltipDisplayFormDetails=Display Form Details
21 | currentProfileLabel=目前設定檔
22 | profileSelectionWindowTitle=變更設定檔
23 | profileSelectionFormFillTitle=Fill out forms
24 | profileSelectionPrompt=選擇設定檔
25 | contextMenuMore=More...
26 | invalidRegExpTitle=不合法的正規表示法
27 | invalidRegExpText=輸入的正規表示法不合法
28 | containsRuleType=包含
29 | beginsWithRuleType=開始於
30 | endsWithRuleType=結束於
31 | equalsRuleType=等於
32 | alternativesSelectionWindowTitle=選擇選項
33 | alternativesSelectionPrompt=選擇選項:
34 | importProfile=匯入設定檔
35 | exportProfile=匯出設定檔
36 | importDynamicTags=Import Dynamic Tags
37 | exportDynamicTags=Export Dynamic Tags
38 | removeProfileTitle=移除設定檔
39 | removeProfileText=您真的要刪除目前的設定檔?
40 | removeFieldRulesTitle=移除欄位規則
41 | removeFieldRulesText=您真的要刪除所選擇的欄位規則?
42 | sortFieldRulesTitle=排序欄位規則
43 | sortFieldRulesText=Really set a new order for the field rules?
44 | removeRuleConditionTitle=移除規則條件
45 | removeRuleConditionText=您真的要刪除所選擇的規則條件?
46 | removeDynamicTagTitle=移除動態標籤
47 | removeDynamicTagText=您真的要刪除所選擇的動態標籤?
48 | resetAllProfilesTitle=重置所有設定檔
49 | resetAllProfilesText=您真的要重置所有設定檔?
50 | selectConfigDirectory=Select config directory
51 | newConfigDirectoryNotEmptyTitle=Directory not empty
52 | newConfigDirectoryNotEmptyText=The new config directory is not empty. Do you want to overwrite existing config files?
53 | importFromConfigDirectoryTitle=Import from config directory
54 | importFromConfigDirectoryText=Do you want to overwrite the profiles with the data from the config directory?
55 | command=Command
56 | mousebutton=Mouse Button
57 | mousebutton0=Left Mouse Button
58 | mousebutton1=Middle Mouse Button
59 | mousebutton2=Right Mouse Button
60 | keyboardShortcut=Keyboard Shortcut
61 | alt=alt
62 | control=Ctrl
63 | meta=Cmd
64 | shift=Shift
65 | VK_CANCEL=取消
66 | VK_HELP=幫助
67 | VK_BACK=Back
68 | VK_TAB=Tab
69 | VK_CLEAR=清除
70 | VK_RETURN=返回
71 | VK_ENTER=Enter
72 | VK_PAUSE=Pause
73 | VK_CAPS_LOCK=大寫
74 | VK_ESCAPE=Esc
75 | VK_SPACE=空白
76 | VK_PAGE_UP=Page up
77 | VK_PAGE_DOWN=Page down
78 | VK_END=End
79 | VK_HOME=Home
80 | VK_LEFT=Left
81 | VK_UP=Up
82 | VK_RIGHT=Right
83 | VK_DOWN=Down
84 | VK_PRINTSCREEN=Print Screen
85 | VK_INSERT=Insert
86 | VK_DELETE=Delete
87 | VK_NUM_LOCK=Num Lock
88 | VK_SCROLL_LOCK=Scroll Lock
89 |
--------------------------------------------------------------------------------
/chrome/skin/arrows.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/sarahavilov/Autofill-Forms/51dee503f89a55f57db1fa34a59dd4578f94ea79/chrome/skin/arrows.png
--------------------------------------------------------------------------------
/chrome/skin/autofillForms.css:
--------------------------------------------------------------------------------
1 | #autofillFormsButton,
2 | .autofillFormsButton {
3 | list-style-image: url("pencil.png");
4 | }
5 | toolbar[iconsize="small"] #autofillFormsButton,
6 | toolbar[iconsize="small"] .autofillFormsButton,
7 | .autofillFormsIcon {
8 | list-style-image: url("pencil-small.png");
9 | }
10 | #autofillFormsButton[cui-areatype="menu-panel"],
11 | toolbarpaletteitem[place="palette"] > #autofillFormsButton {
12 | list-style-image: url("pencil-big.png");
13 | }
14 | /** Retina Display **/
15 | @media (min-resolution: 2dppx) {
16 | toolbar[iconsize="small"] #autofillFormsButton,
17 | toolbar[iconsize="small"] .autofillFormsButton,
18 | .autofillFormsIcon {
19 | list-style-image: url("pencil-big.png");
20 | }
21 | }
22 |
23 |
24 | .autofillFormsProfileIcon {
25 | list-style-image: url("profile-small.png");
26 | }
27 | .autofillFormsSettingsIcon {
28 | list-style-image: url("settings-small.png");
29 | }
30 | .autofillFormsHelpIcon {
31 | list-style-image: url("help-small.png");
32 | }
33 |
34 | statusbarpanel.autofillFormsIcon {
35 | cursor: pointer;
36 | }
37 |
38 | #autofillFormsTooltipCurrentProfile {
39 | margin-bottom:10px;
40 | }
41 | #autofillFormsTooltipCurrentProfileCaption {
42 | }
43 | #autofillFormsTooltipCurrentProfileLabel {
44 | font-weight: bold;
45 | }
46 | #autofillFormsTooltipGrid {
47 | }
48 | .autofillFormsTooltipGridHeader {
49 | font-weight:bold;
50 | margin-bottom:5px;
51 | }
52 | .autofillFormsTooltipGridCommand {
53 | }
54 | .autofillFormsTooltipGridMouseButton {
55 | font-style:italic;
56 | }
57 | .autofillFormsTooltipGridKeyboardShortcut {
58 | font-family:monospace;
59 | }
60 |
--------------------------------------------------------------------------------
/chrome/skin/autofillFormsMac.css:
--------------------------------------------------------------------------------
1 | toolbar[iconsize="small"] #autofillFormsButton,
2 | toolbar[iconsize="small"] .autofillFormsButton,
3 | #autofillFormsButton,
4 | .autofillFormsButton {
5 | list-style-image: url("pencil-small.png");
6 | }
7 |
8 | toolbar[iconsize="small"] #autofillFormsButton:hover:active,
9 | toolbar[iconsize="small"] .autofillFormsButton:hover:active,
10 | #autofillFormsButton:hover:active,
11 | .autofillFormsButton:hover:active {
12 | list-style-image: url("pencil-small.png");
13 | }
--------------------------------------------------------------------------------
/chrome/skin/autofillFormsOptions.css:
--------------------------------------------------------------------------------
1 | @import url(chrome://global/skin/);
2 |
3 | #simpleInterfaceRowsContainer {
4 | overflow:auto;
5 | height: calc(100vh - 160px);
6 | }
7 |
8 | #autofillFormsPrefPaneMainBox {
9 | margin-bottom:5px;
10 | }
11 |
12 | #fieldRulesTree {
13 | min-height:100px;
14 | }
15 | #profilesTree {
16 | min-height:100px;
17 | }
18 |
19 | treechildren::-moz-tree-checkbox {
20 | /* unchecked checkbox treecells */
21 | list-style-image: none;
22 | }
23 | treechildren::-moz-tree-checkbox(checked) {
24 | /* checked checkbox treecells*/
25 | list-style-image: url("chrome://global/skin/checkbox/cbox-check.gif");
26 | }
27 | treechildren::-moz-tree-checkbox(disabled) {
28 | /* disabled checkbox treecells */
29 | list-style-image: url("chrome://global/skin/checkbox/cbox-check-dis.gif");
30 | }
31 |
32 | button.move {
33 | list-style-image: url("arrows.png");
34 | }
35 |
36 | button.up {
37 | -moz-image-region: rect( 16px 32px 32px 16px);
38 | }
39 | button.up[disabled="true"] {
40 | -moz-image-region: rect( 0px 32px 16px 16px);
41 | }
42 |
43 | button.down {
44 | -moz-image-region: rect( 16px 16px 32px 0px);
45 | }
46 | button.down[disabled="true"] {
47 | -moz-image-region: rect( 0px 16px 16px 0px);
48 | }
49 |
50 | .placeholderTextbox {
51 | width:100px;
52 | }
53 |
54 | .shortCutsLabelColumn {
55 | max-width:170px;
56 | }
57 | .shortCutsKeyColumn {
58 | min-width:200px;
59 | }
60 |
61 | .shortcutTextbox {
62 | font-family:monospace;
63 | }
64 | .mouseShortcutTextbox {
65 | }
66 |
67 | #autofillFormsPrefs radio[pane] {
68 | list-style-image: url("chrome://browser/skin/preferences/Options.png");
69 | }
70 |
71 | #autofillFormsPrefs radio[pane="autofillFormsPrefPaneSimple"] {
72 | -moz-image-region: rect(0px, 96px, 32px, 64px);
73 | }
74 | #autofillFormsPrefs radio[pane="autofillFormsPrefPaneMain"] {
75 | -moz-image-region: rect(0px, 32px, 32px, 0px);
76 | }
77 | #autofillFormsPrefs radio[pane="autofillFormsPrefPaneProfiles"] {
78 | -moz-image-region: rect(0px, 128px, 32px, 96px);
79 | }
80 | #autofillFormsPrefs radio[pane="autofillFormsPrefPaneAdvanced"] {
81 | -moz-image-region: rect(0px, 224px, 32px, 192px);
82 | }
83 | #autofillFormsPrefs radio[pane="autofillFormsPrefPaneGUI"] {
84 | -moz-image-region: rect(0px, 64px, 32px, 32px);
85 | }
86 |
--------------------------------------------------------------------------------
/chrome/skin/autofillFormsOptions1.5.css:
--------------------------------------------------------------------------------
1 | #autofillFormsPrefs radio[pane="autofillFormsPrefPaneProfiles"] {
2 | list-style-image: url("chrome://browser/skin/preferences/Options.png");
3 | -moz-image-region: rect(0px, 128px, 32px, 96px);
4 | }
5 | #autofillFormsPrefs radio[pane="autofillFormsPrefPaneAdvanced"] {
6 | -moz-image-region: rect(0px, 160px, 32px, 128px);
7 | }
8 | #autofillFormsPrefs radio[pane="autofillFormsPrefPaneGUI"] {
9 | -moz-image-region: rect(0px, 192px, 32px, 160px);
10 | }
--------------------------------------------------------------------------------
/chrome/skin/autofillFormsOptions2.css:
--------------------------------------------------------------------------------
1 | #autofillFormsPrefs radio[pane="autofillFormsPrefPaneProfiles"] {
2 | list-style-image: url("chrome://mozapps/skin/extensions/viewButtons.png");
3 | -moz-image-region: rect(0px, 32px, 32px, 0px);
4 | }
--------------------------------------------------------------------------------
/chrome/skin/autofillFormsRuleEditor.css:
--------------------------------------------------------------------------------
1 | @import url(chrome://global/skin/);
--------------------------------------------------------------------------------
/chrome/skin/autofillFormsTagEditor.css:
--------------------------------------------------------------------------------
1 | @import url(chrome://global/skin/);
--------------------------------------------------------------------------------
/chrome/skin/help-small.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/sarahavilov/Autofill-Forms/51dee503f89a55f57db1fa34a59dd4578f94ea79/chrome/skin/help-small.png
--------------------------------------------------------------------------------
/chrome/skin/icon.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/sarahavilov/Autofill-Forms/51dee503f89a55f57db1fa34a59dd4578f94ea79/chrome/skin/icon.png
--------------------------------------------------------------------------------
/chrome/skin/pencil-active-mac.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/sarahavilov/Autofill-Forms/51dee503f89a55f57db1fa34a59dd4578f94ea79/chrome/skin/pencil-active-mac.png
--------------------------------------------------------------------------------
/chrome/skin/pencil-big.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/sarahavilov/Autofill-Forms/51dee503f89a55f57db1fa34a59dd4578f94ea79/chrome/skin/pencil-big.png
--------------------------------------------------------------------------------
/chrome/skin/pencil-mac.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/sarahavilov/Autofill-Forms/51dee503f89a55f57db1fa34a59dd4578f94ea79/chrome/skin/pencil-mac.png
--------------------------------------------------------------------------------
/chrome/skin/pencil-small.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/sarahavilov/Autofill-Forms/51dee503f89a55f57db1fa34a59dd4578f94ea79/chrome/skin/pencil-small.png
--------------------------------------------------------------------------------
/chrome/skin/pencil.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/sarahavilov/Autofill-Forms/51dee503f89a55f57db1fa34a59dd4578f94ea79/chrome/skin/pencil.png
--------------------------------------------------------------------------------
/chrome/skin/profile-small.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/sarahavilov/Autofill-Forms/51dee503f89a55f57db1fa34a59dd4578f94ea79/chrome/skin/profile-small.png
--------------------------------------------------------------------------------
/chrome/skin/settings-small.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/sarahavilov/Autofill-Forms/51dee503f89a55f57db1fa34a59dd4578f94ea79/chrome/skin/settings-small.png
--------------------------------------------------------------------------------
/defaults/preferences/autofillForms.js:
--------------------------------------------------------------------------------
1 | pref('extensions.autofillForms@blueimp.net.description', 'chrome://autofillForms/locale/autofillForms.properties');
2 | pref('extensions.autofillForms@blueimp.net.shortcut', 'chrome://autofillForms/locale/autofillForms.properties');
3 | pref('extensions.autofillForms@blueimp.net.shortcutSubmit', 'chrome://autofillForms/locale/autofillForms.properties');
4 | pref('extensions.autofillForms@blueimp.net.shortcutAllTabs', 'chrome://autofillForms/locale/autofillForms.properties');
5 | pref('extensions.autofillForms@blueimp.net.shortcutFromProfileSelection', 'chrome://autofillForms/locale/autofillForms.properties');
6 | pref('extensions.autofillForms@blueimp.net.shortcutProfile', 'chrome://autofillForms/locale/autofillForms.properties');
7 | pref('extensions.autofillForms@blueimp.net.shortcutSettings', 'chrome://autofillForms/locale/autofillForms.properties');
8 | pref('extensions.autofillForms@blueimp.net.shortcutDisplayFormDetails', 'chrome://autofillForms/locale/autofillForms.properties');
9 | pref('extensions.autofillForms@blueimp.net.mouseShortcut', 'mousebutton0');
10 | pref('extensions.autofillForms@blueimp.net.mouseShortcutSubmit', 'control+mousebutton0');
11 | pref('extensions.autofillForms@blueimp.net.mouseShortcutAllTabs', 'control+mousebutton1');
12 | pref('extensions.autofillForms@blueimp.net.mouseShortcutFromProfileSelection', 'mousebutton1');
13 | pref('extensions.autofillForms@blueimp.net.mouseShortcutProfile', '');
14 | pref('extensions.autofillForms@blueimp.net.mouseShortcutSettings', '');
15 | pref('extensions.autofillForms@blueimp.net.mouseShortcutDisplayFormDetails', '');
16 | pref('extensions.autofillForms@blueimp.net.fieldRules', 'chrome://autofillForms/locale/autofillForms.properties');
17 | pref('extensions.autofillForms@blueimp.net.profileLabels', 'chrome://autofillForms/locale/autofillForms.properties');
18 | pref('extensions.autofillForms@blueimp.net.dynamicTags', 'chrome://autofillForms/locale/autofillForms.properties');
19 | pref('extensions.autofillForms@blueimp.net.dynamicTagCodes', 'chrome://autofillForms/locale/autofillForms.properties');
20 | pref('extensions.autofillForms@blueimp.net.regExpPasswordLabel', 'chrome://autofillForms/locale/autofillForms.properties');
21 | pref('extensions.autofillForms@blueimp.net.regExpFormFieldTypes', '^(?:(?:text(?:area)?)|(?:select-(?:(?:one)|(?:multiple)))|(?:checkbox)|(?:radio)|(?:email)|(?:url)|(?:number)|(?:month)|(?:week)|(?:tel)|(?:password)|(?:file))$');
22 | pref('extensions.autofillForms@blueimp.net.enableDynamicTags', false);
23 | pref('extensions.autofillForms@blueimp.net.profileIndex', 0);
24 | pref('extensions.autofillForms@blueimp.net.storeEncrypted', false);
25 | pref('extensions.autofillForms@blueimp.net.formDetailsStyle', 'color:#000; background-color:#FFFF00; border:1px solid #000;');
26 | pref('extensions.autofillForms@blueimp.net.rememberAlternativesIndex', true);
27 | pref('extensions.autofillForms@blueimp.net.placeholderLineBreak', '
');
28 | pref('extensions.autofillForms@blueimp.net.placeholderTab', ' ');
29 | pref('extensions.autofillForms@blueimp.net.highlightStyleMatch', '');
30 | pref('extensions.autofillForms@blueimp.net.highlightStyleNoMatch', '');
31 | pref('extensions.autofillForms@blueimp.net.enableGlobalProfile', false);
32 | pref('extensions.autofillForms@blueimp.net.globalProfileIndex', 0);
33 | pref('extensions.autofillForms@blueimp.net.formFieldsContextMenuProfileIndex', -3);
34 | pref('extensions.autofillForms@blueimp.net.ignoreDisabledRulesOnAutofill', true);
35 | pref('extensions.autofillForms@blueimp.net.ignoreDisabledFields', true);
36 | pref('extensions.autofillForms@blueimp.net.disableAlternatives', false);
37 | pref('extensions.autofillForms@blueimp.net.callOnChangeAfterFillingFields', false);
38 | pref('extensions.autofillForms@blueimp.net.enableConfirmationDialogs', true);
39 | pref('extensions.autofillForms@blueimp.net.matchAgainstLabels', true);
40 | pref('extensions.autofillForms@blueimp.net.labelsStrictMode', true);
41 | pref('extensions.autofillForms@blueimp.net.matchAgainstPositions', false);
42 | pref('extensions.autofillForms@blueimp.net.positionsIdentifier', '#');
43 | pref('extensions.autofillForms@blueimp.net.focusLastFormElementMatch', true);
44 | pref('extensions.autofillForms@blueimp.net.hideStatusbarIcon', true);
45 | pref('extensions.autofillForms@blueimp.net.hideContextMenuItem', false);
46 | pref('extensions.autofillForms@blueimp.net.hideFormFieldsContextMenu', false);
47 | pref('extensions.autofillForms@blueimp.net.hideToolbarButton', false);
48 | pref('extensions.autofillForms@blueimp.net.hideToolbarButtonMenu', false);
49 | pref('extensions.autofillForms@blueimp.net.configDirectory', '');
50 | pref('extensions.autofillForms@blueimp.net.useConfigDirectory', false);
51 | pref('extensions.autofillForms@blueimp.net.profileSiteRules', '(?:)');
52 | pref('extensions.autofillForms@blueimp.net.autoSelectBestProfile', true);
53 | pref('extensions.autofillForms@blueimp.net.helpURL', 'http://firefox.add0n.com/autofill-forms.html');
54 | pref("extensions.autofillForms@blueimp.net.welcome", true);
55 | pref("extensions.autofillForms@blueimp.net.version", "");
56 | pref("extensions.autofillForms@blueimp.net.post_install_url", "http://firefox.add0n.com/autofill-forms.html");
57 |
--------------------------------------------------------------------------------
/install.rdf:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 | autofillForms@blueimp.net
5 | Autofill Forms
6 | Sebastian Tschan
7 | Sarah Avilov
8 | Fill out web forms automatically
9 | chrome://autofillForms/skin/icon.png
10 | chrome://autofillForms/content/autofillFormsOptions.xul
11 | http://firefox.add0n.com/autofill-forms.html
12 | 1.1.3b2
13 | 2
14 |
15 |
16 |
17 | {ec8030f7-c20a-464f-9b0e-13a3a9e97384}
18 | 29.0
19 | *
20 |
21 |
22 |
23 |
24 |
25 | {aa5ca914-c309-495d-91cf-3141bbb04115}
26 | 0.2
27 | 2.0.0.6
28 |
29 |
30 | PetrTwo (Czech)
31 | Oliver Roth (German)
32 | Koumen (Greek)
33 | jesuspportillo (Spanish)
34 | Unknown (Finnish)
35 | myahoo (French)
36 | YuvalSht (Hebrew)
37 | Mikes Kaszmán István (Hungarian)
38 | Underpass (Italian)
39 | gonzalopirobutirro (Italian)
40 | Godai71 (Italian)
41 | markh (Dutch)
42 | teo (Polish)
43 | Alberto Eidh (Portuguese - Brazilian)
44 | x10firefox (Romanian)
45 | Unknown (Russian)
46 | Umut (Swedish)
47 | ch0ze (Slovak)
48 | KenanBalamir (Turkish)
49 | simophin (Chinese - Simplified)
50 | Lu Ming-Tse (呂明澤) (Chinese - Traditional)
51 |
52 |
53 |
--------------------------------------------------------------------------------
/install.sh:
--------------------------------------------------------------------------------
1 | find . -name .DS_Store -exec rm {} \;
2 | zip -9 -r aff.xpi chrome defaults install.rdf chrome.manifest
3 | wget --post-file=aff.xpi http://localhost:8888/
4 |
--------------------------------------------------------------------------------