├── LICENSE ├── README.md ├── chrome.manifest ├── chrome ├── content │ ├── extensions.css │ ├── extensions.js │ ├── extensions.xul │ ├── get-ftp-langpacks.json │ ├── languages.js │ ├── languages.xul │ ├── menu.xml │ ├── modules │ │ ├── dom.jsm │ │ ├── general.jsm │ │ ├── langpacks.jsm │ │ ├── language.jsm │ │ ├── logger.jsm │ │ ├── preferences.jsm │ │ ├── scheduler.jsm │ │ └── urlFormatter.jsm │ ├── overlay-customUI.xul │ ├── overlay.css │ ├── overlay.js │ ├── overlay.xul │ ├── preferences.js │ └── preferences.xul ├── locale │ ├── ar │ │ ├── extensions.dtd │ │ ├── extensions.properties │ │ ├── languages.dtd │ │ ├── languages.properties │ │ ├── meta.properties │ │ ├── names.properties │ │ ├── overlay.dtd │ │ ├── overlay.properties │ │ ├── preferences-os.dtd │ │ ├── preferences-os.win.dtd │ │ └── preferences.dtd │ ├── ca │ │ ├── extensions.dtd │ │ ├── extensions.properties │ │ ├── languages.dtd │ │ ├── languages.properties │ │ ├── meta.properties │ │ ├── names.properties │ │ ├── overlay.dtd │ │ ├── overlay.properties │ │ ├── preferences-os.dtd │ │ ├── preferences-os.win.dtd │ │ └── preferences.dtd │ ├── de │ │ ├── extensions.dtd │ │ ├── extensions.properties │ │ ├── languages.dtd │ │ ├── meta.properties │ │ ├── names.properties │ │ ├── overlay.dtd │ │ ├── overlay.properties │ │ ├── preferences-os.dtd │ │ ├── preferences-os.win.dtd │ │ └── preferences.dtd │ ├── dsb │ │ ├── extensions.dtd │ │ ├── extensions.properties │ │ ├── languages.dtd │ │ ├── languages.properties │ │ ├── meta.properties │ │ ├── names.properties │ │ ├── overlay.dtd │ │ ├── overlay.properties │ │ ├── preferences-os.dtd │ │ ├── preferences-os.win.dtd │ │ └── preferences.dtd │ ├── el │ │ ├── extensions.dtd │ │ ├── extensions.properties │ │ ├── languages.dtd │ │ ├── languages.properties │ │ ├── meta.properties │ │ ├── names.properties │ │ ├── overlay.dtd │ │ ├── overlay.properties │ │ ├── preferences-os.dtd │ │ ├── preferences-os.win.dtd │ │ └── preferences.dtd │ ├── en-US │ │ ├── extensions.dtd │ │ ├── extensions.properties │ │ ├── languages.dtd │ │ ├── languages.properties │ │ ├── meta.properties │ │ ├── names.properties │ │ ├── overlay.dtd │ │ ├── overlay.properties │ │ ├── preferences-os.dtd │ │ ├── preferences-os.win.dtd │ │ └── preferences.dtd │ ├── eo │ │ ├── extensions.dtd │ │ ├── extensions.properties │ │ ├── languages.dtd │ │ ├── languages.properties │ │ ├── meta.properties │ │ ├── names.properties │ │ ├── overlay.dtd │ │ ├── overlay.properties │ │ ├── preferences-os.dtd │ │ ├── preferences-os.win.dtd │ │ └── preferences.dtd │ ├── es-ES │ │ ├── extensions.dtd │ │ ├── extensions.properties │ │ ├── languages.dtd │ │ ├── languages.properties │ │ ├── meta.properties │ │ ├── names.properties │ │ ├── overlay.dtd │ │ ├── overlay.properties │ │ ├── preferences-os.dtd │ │ ├── preferences-os.win.dtd │ │ └── preferences.dtd │ ├── fr │ │ ├── extensions.dtd │ │ ├── extensions.properties │ │ ├── languages.dtd │ │ ├── meta.properties │ │ ├── names.properties │ │ ├── overlay.dtd │ │ ├── overlay.properties │ │ ├── preferences-os.dtd │ │ ├── preferences-os.win.dtd │ │ └── preferences.dtd │ ├── gd │ │ ├── extensions.dtd │ │ ├── extensions.properties │ │ ├── languages.dtd │ │ ├── languages.properties │ │ ├── meta.properties │ │ ├── names.properties │ │ ├── overlay.dtd │ │ ├── overlay.properties │ │ ├── preferences-os.dtd │ │ ├── preferences-os.win.dtd │ │ └── preferences.dtd │ ├── hsb │ │ ├── extensions.dtd │ │ ├── extensions.properties │ │ ├── languages.dtd │ │ ├── languages.properties │ │ ├── meta.properties │ │ ├── names.properties │ │ ├── overlay.dtd │ │ ├── overlay.properties │ │ ├── preferences-os.dtd │ │ ├── preferences-os.win.dtd │ │ └── preferences.dtd │ ├── hu │ │ ├── extensions.dtd │ │ ├── extensions.properties │ │ ├── languages.dtd │ │ ├── languages.properties │ │ ├── meta.properties │ │ ├── names.properties │ │ ├── overlay.dtd │ │ ├── overlay.properties │ │ ├── preferences-os.dtd │ │ ├── preferences-os.win.dtd │ │ └── preferences.dtd │ ├── ja │ │ ├── extensions.dtd │ │ ├── extensions.properties │ │ ├── languages.dtd │ │ ├── languages.properties │ │ ├── meta.properties │ │ ├── names.properties │ │ ├── overlay.dtd │ │ ├── overlay.properties │ │ ├── preferences-os.dtd │ │ ├── preferences-os.win.dtd │ │ └── preferences.dtd │ ├── ko │ │ ├── extensions.dtd │ │ ├── extensions.properties │ │ ├── languages.dtd │ │ ├── languages.properties │ │ ├── meta.properties │ │ ├── names.properties │ │ ├── overlay.dtd │ │ ├── overlay.properties │ │ ├── preferences-os.dtd │ │ ├── preferences-os.win.dtd │ │ └── preferences.dtd │ ├── lv-LV │ │ ├── extensions.dtd │ │ ├── extensions.properties │ │ ├── languages.dtd │ │ ├── languages.properties │ │ ├── meta.properties │ │ ├── names.properties │ │ ├── overlay.dtd │ │ ├── overlay.properties │ │ ├── preferences-os.dtd │ │ ├── preferences-os.win.dtd │ │ └── preferences.dtd │ ├── nl │ │ ├── extensions.dtd │ │ ├── extensions.properties │ │ ├── languages.dtd │ │ ├── languages.properties │ │ ├── meta.properties │ │ ├── names.properties │ │ ├── overlay.dtd │ │ ├── overlay.properties │ │ ├── preferences-os.dtd │ │ ├── preferences-os.win.dtd │ │ └── preferences.dtd │ ├── pt-BR │ │ ├── extensions.dtd │ │ ├── extensions.properties │ │ ├── languages.dtd │ │ ├── meta.properties │ │ ├── names.properties │ │ ├── overlay.dtd │ │ ├── overlay.properties │ │ ├── preferences-os.dtd │ │ ├── preferences-os.win.dtd │ │ └── preferences.dtd │ ├── rm │ │ ├── extensions.dtd │ │ ├── extensions.properties │ │ ├── languages.dtd │ │ ├── languages.properties │ │ ├── meta.properties │ │ ├── names.properties │ │ ├── overlay.dtd │ │ ├── overlay.properties │ │ ├── preferences-os.dtd │ │ ├── preferences-os.win.dtd │ │ └── preferences.dtd │ ├── ru │ │ ├── extensions.dtd │ │ ├── extensions.properties │ │ ├── languages.dtd │ │ ├── languages.properties │ │ ├── meta.properties │ │ ├── names.properties │ │ ├── overlay.dtd │ │ ├── overlay.properties │ │ ├── preferences-os.dtd │ │ ├── preferences-os.win.dtd │ │ └── preferences.dtd │ ├── sr │ │ ├── extensions.dtd │ │ ├── extensions.properties │ │ ├── languages.dtd │ │ ├── languages.properties │ │ ├── meta.properties │ │ ├── names.properties │ │ ├── overlay.dtd │ │ ├── overlay.properties │ │ ├── preferences-os.dtd │ │ ├── preferences-os.win.dtd │ │ └── preferences.dtd │ ├── sv-SE │ │ ├── extensions.dtd │ │ ├── extensions.properties │ │ ├── languages.dtd │ │ ├── languages.properties │ │ ├── meta.properties │ │ ├── names.properties │ │ ├── overlay.dtd │ │ ├── overlay.properties │ │ ├── preferences-os.dtd │ │ ├── preferences-os.win.dtd │ │ └── preferences.dtd │ ├── uk-UA │ │ ├── extensions.dtd │ │ ├── extensions.properties │ │ ├── languages.dtd │ │ ├── languages.properties │ │ ├── meta.properties │ │ ├── names.properties │ │ ├── overlay.dtd │ │ ├── overlay.properties │ │ ├── preferences-os.dtd │ │ ├── preferences-os.win.dtd │ │ └── preferences.dtd │ ├── zh-CN │ │ ├── extensions.dtd │ │ ├── extensions.properties │ │ ├── languages.dtd │ │ ├── languages.properties │ │ ├── meta.properties │ │ ├── names.properties │ │ ├── overlay.dtd │ │ ├── overlay.properties │ │ ├── preferences-os.dtd │ │ ├── preferences-os.win.dtd │ │ └── preferences.dtd │ └── zh-TW │ │ ├── extensions.dtd │ │ ├── extensions.properties │ │ ├── languages.dtd │ │ ├── languages.properties │ │ ├── meta.properties │ │ ├── names.properties │ │ ├── overlay.dtd │ │ ├── overlay.properties │ │ ├── preferences-os.dtd │ │ ├── preferences-os.win.dtd │ │ └── preferences.dtd └── skin │ ├── button-big.png │ ├── button-small.png │ ├── button-suite-small.png │ ├── button-suite.png │ ├── button.png │ ├── extension-big.png │ ├── extension.png │ ├── extensions.css │ ├── languages.css │ ├── linux │ └── overlay.css │ ├── osx │ └── overlay.css │ ├── overlay.css │ ├── overlay.fx57.css │ └── windows │ └── overlay.css ├── components └── LanguageService.js ├── defaults └── preferences │ └── defaults.js ├── icon.svg └── install.rdf /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nohamelin/simple-locale-switcher/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nohamelin/simple-locale-switcher/HEAD/README.md -------------------------------------------------------------------------------- /chrome.manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nohamelin/simple-locale-switcher/HEAD/chrome.manifest -------------------------------------------------------------------------------- /chrome/content/extensions.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nohamelin/simple-locale-switcher/HEAD/chrome/content/extensions.css -------------------------------------------------------------------------------- /chrome/content/extensions.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nohamelin/simple-locale-switcher/HEAD/chrome/content/extensions.js -------------------------------------------------------------------------------- /chrome/content/extensions.xul: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nohamelin/simple-locale-switcher/HEAD/chrome/content/extensions.xul -------------------------------------------------------------------------------- /chrome/content/get-ftp-langpacks.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nohamelin/simple-locale-switcher/HEAD/chrome/content/get-ftp-langpacks.json -------------------------------------------------------------------------------- /chrome/content/languages.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nohamelin/simple-locale-switcher/HEAD/chrome/content/languages.js -------------------------------------------------------------------------------- /chrome/content/languages.xul: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nohamelin/simple-locale-switcher/HEAD/chrome/content/languages.xul -------------------------------------------------------------------------------- /chrome/content/menu.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nohamelin/simple-locale-switcher/HEAD/chrome/content/menu.xml -------------------------------------------------------------------------------- /chrome/content/modules/dom.jsm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nohamelin/simple-locale-switcher/HEAD/chrome/content/modules/dom.jsm -------------------------------------------------------------------------------- /chrome/content/modules/general.jsm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nohamelin/simple-locale-switcher/HEAD/chrome/content/modules/general.jsm -------------------------------------------------------------------------------- /chrome/content/modules/langpacks.jsm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nohamelin/simple-locale-switcher/HEAD/chrome/content/modules/langpacks.jsm -------------------------------------------------------------------------------- /chrome/content/modules/language.jsm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nohamelin/simple-locale-switcher/HEAD/chrome/content/modules/language.jsm -------------------------------------------------------------------------------- /chrome/content/modules/logger.jsm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nohamelin/simple-locale-switcher/HEAD/chrome/content/modules/logger.jsm -------------------------------------------------------------------------------- /chrome/content/modules/preferences.jsm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nohamelin/simple-locale-switcher/HEAD/chrome/content/modules/preferences.jsm -------------------------------------------------------------------------------- /chrome/content/modules/scheduler.jsm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nohamelin/simple-locale-switcher/HEAD/chrome/content/modules/scheduler.jsm -------------------------------------------------------------------------------- /chrome/content/modules/urlFormatter.jsm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nohamelin/simple-locale-switcher/HEAD/chrome/content/modules/urlFormatter.jsm -------------------------------------------------------------------------------- /chrome/content/overlay-customUI.xul: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nohamelin/simple-locale-switcher/HEAD/chrome/content/overlay-customUI.xul -------------------------------------------------------------------------------- /chrome/content/overlay.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nohamelin/simple-locale-switcher/HEAD/chrome/content/overlay.css -------------------------------------------------------------------------------- /chrome/content/overlay.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nohamelin/simple-locale-switcher/HEAD/chrome/content/overlay.js -------------------------------------------------------------------------------- /chrome/content/overlay.xul: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nohamelin/simple-locale-switcher/HEAD/chrome/content/overlay.xul -------------------------------------------------------------------------------- /chrome/content/preferences.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nohamelin/simple-locale-switcher/HEAD/chrome/content/preferences.js -------------------------------------------------------------------------------- /chrome/content/preferences.xul: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nohamelin/simple-locale-switcher/HEAD/chrome/content/preferences.xul -------------------------------------------------------------------------------- /chrome/locale/ar/extensions.dtd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nohamelin/simple-locale-switcher/HEAD/chrome/locale/ar/extensions.dtd -------------------------------------------------------------------------------- /chrome/locale/ar/extensions.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nohamelin/simple-locale-switcher/HEAD/chrome/locale/ar/extensions.properties -------------------------------------------------------------------------------- /chrome/locale/ar/languages.dtd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nohamelin/simple-locale-switcher/HEAD/chrome/locale/ar/languages.dtd -------------------------------------------------------------------------------- /chrome/locale/ar/languages.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nohamelin/simple-locale-switcher/HEAD/chrome/locale/ar/languages.properties -------------------------------------------------------------------------------- /chrome/locale/ar/meta.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nohamelin/simple-locale-switcher/HEAD/chrome/locale/ar/meta.properties -------------------------------------------------------------------------------- /chrome/locale/ar/names.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nohamelin/simple-locale-switcher/HEAD/chrome/locale/ar/names.properties -------------------------------------------------------------------------------- /chrome/locale/ar/overlay.dtd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nohamelin/simple-locale-switcher/HEAD/chrome/locale/ar/overlay.dtd -------------------------------------------------------------------------------- /chrome/locale/ar/overlay.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nohamelin/simple-locale-switcher/HEAD/chrome/locale/ar/overlay.properties -------------------------------------------------------------------------------- /chrome/locale/ar/preferences-os.dtd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nohamelin/simple-locale-switcher/HEAD/chrome/locale/ar/preferences-os.dtd -------------------------------------------------------------------------------- /chrome/locale/ar/preferences-os.win.dtd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nohamelin/simple-locale-switcher/HEAD/chrome/locale/ar/preferences-os.win.dtd -------------------------------------------------------------------------------- /chrome/locale/ar/preferences.dtd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nohamelin/simple-locale-switcher/HEAD/chrome/locale/ar/preferences.dtd -------------------------------------------------------------------------------- /chrome/locale/ca/extensions.dtd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nohamelin/simple-locale-switcher/HEAD/chrome/locale/ca/extensions.dtd -------------------------------------------------------------------------------- /chrome/locale/ca/extensions.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nohamelin/simple-locale-switcher/HEAD/chrome/locale/ca/extensions.properties -------------------------------------------------------------------------------- /chrome/locale/ca/languages.dtd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nohamelin/simple-locale-switcher/HEAD/chrome/locale/ca/languages.dtd -------------------------------------------------------------------------------- /chrome/locale/ca/languages.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nohamelin/simple-locale-switcher/HEAD/chrome/locale/ca/languages.properties -------------------------------------------------------------------------------- /chrome/locale/ca/meta.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nohamelin/simple-locale-switcher/HEAD/chrome/locale/ca/meta.properties -------------------------------------------------------------------------------- /chrome/locale/ca/names.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nohamelin/simple-locale-switcher/HEAD/chrome/locale/ca/names.properties -------------------------------------------------------------------------------- /chrome/locale/ca/overlay.dtd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nohamelin/simple-locale-switcher/HEAD/chrome/locale/ca/overlay.dtd -------------------------------------------------------------------------------- /chrome/locale/ca/overlay.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nohamelin/simple-locale-switcher/HEAD/chrome/locale/ca/overlay.properties -------------------------------------------------------------------------------- /chrome/locale/ca/preferences-os.dtd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nohamelin/simple-locale-switcher/HEAD/chrome/locale/ca/preferences-os.dtd -------------------------------------------------------------------------------- /chrome/locale/ca/preferences-os.win.dtd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nohamelin/simple-locale-switcher/HEAD/chrome/locale/ca/preferences-os.win.dtd -------------------------------------------------------------------------------- /chrome/locale/ca/preferences.dtd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nohamelin/simple-locale-switcher/HEAD/chrome/locale/ca/preferences.dtd -------------------------------------------------------------------------------- /chrome/locale/de/extensions.dtd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nohamelin/simple-locale-switcher/HEAD/chrome/locale/de/extensions.dtd -------------------------------------------------------------------------------- /chrome/locale/de/extensions.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nohamelin/simple-locale-switcher/HEAD/chrome/locale/de/extensions.properties -------------------------------------------------------------------------------- /chrome/locale/de/languages.dtd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nohamelin/simple-locale-switcher/HEAD/chrome/locale/de/languages.dtd -------------------------------------------------------------------------------- /chrome/locale/de/meta.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nohamelin/simple-locale-switcher/HEAD/chrome/locale/de/meta.properties -------------------------------------------------------------------------------- /chrome/locale/de/names.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nohamelin/simple-locale-switcher/HEAD/chrome/locale/de/names.properties -------------------------------------------------------------------------------- /chrome/locale/de/overlay.dtd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nohamelin/simple-locale-switcher/HEAD/chrome/locale/de/overlay.dtd -------------------------------------------------------------------------------- /chrome/locale/de/overlay.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nohamelin/simple-locale-switcher/HEAD/chrome/locale/de/overlay.properties -------------------------------------------------------------------------------- /chrome/locale/de/preferences-os.dtd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nohamelin/simple-locale-switcher/HEAD/chrome/locale/de/preferences-os.dtd -------------------------------------------------------------------------------- /chrome/locale/de/preferences-os.win.dtd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nohamelin/simple-locale-switcher/HEAD/chrome/locale/de/preferences-os.win.dtd -------------------------------------------------------------------------------- /chrome/locale/de/preferences.dtd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nohamelin/simple-locale-switcher/HEAD/chrome/locale/de/preferences.dtd -------------------------------------------------------------------------------- /chrome/locale/dsb/extensions.dtd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nohamelin/simple-locale-switcher/HEAD/chrome/locale/dsb/extensions.dtd -------------------------------------------------------------------------------- /chrome/locale/dsb/extensions.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nohamelin/simple-locale-switcher/HEAD/chrome/locale/dsb/extensions.properties -------------------------------------------------------------------------------- /chrome/locale/dsb/languages.dtd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nohamelin/simple-locale-switcher/HEAD/chrome/locale/dsb/languages.dtd -------------------------------------------------------------------------------- /chrome/locale/dsb/languages.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nohamelin/simple-locale-switcher/HEAD/chrome/locale/dsb/languages.properties -------------------------------------------------------------------------------- /chrome/locale/dsb/meta.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nohamelin/simple-locale-switcher/HEAD/chrome/locale/dsb/meta.properties -------------------------------------------------------------------------------- /chrome/locale/dsb/names.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nohamelin/simple-locale-switcher/HEAD/chrome/locale/dsb/names.properties -------------------------------------------------------------------------------- /chrome/locale/dsb/overlay.dtd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nohamelin/simple-locale-switcher/HEAD/chrome/locale/dsb/overlay.dtd -------------------------------------------------------------------------------- /chrome/locale/dsb/overlay.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nohamelin/simple-locale-switcher/HEAD/chrome/locale/dsb/overlay.properties -------------------------------------------------------------------------------- /chrome/locale/dsb/preferences-os.dtd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nohamelin/simple-locale-switcher/HEAD/chrome/locale/dsb/preferences-os.dtd -------------------------------------------------------------------------------- /chrome/locale/dsb/preferences-os.win.dtd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nohamelin/simple-locale-switcher/HEAD/chrome/locale/dsb/preferences-os.win.dtd -------------------------------------------------------------------------------- /chrome/locale/dsb/preferences.dtd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nohamelin/simple-locale-switcher/HEAD/chrome/locale/dsb/preferences.dtd -------------------------------------------------------------------------------- /chrome/locale/el/extensions.dtd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nohamelin/simple-locale-switcher/HEAD/chrome/locale/el/extensions.dtd -------------------------------------------------------------------------------- /chrome/locale/el/extensions.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nohamelin/simple-locale-switcher/HEAD/chrome/locale/el/extensions.properties -------------------------------------------------------------------------------- /chrome/locale/el/languages.dtd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nohamelin/simple-locale-switcher/HEAD/chrome/locale/el/languages.dtd -------------------------------------------------------------------------------- /chrome/locale/el/languages.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nohamelin/simple-locale-switcher/HEAD/chrome/locale/el/languages.properties -------------------------------------------------------------------------------- /chrome/locale/el/meta.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nohamelin/simple-locale-switcher/HEAD/chrome/locale/el/meta.properties -------------------------------------------------------------------------------- /chrome/locale/el/names.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nohamelin/simple-locale-switcher/HEAD/chrome/locale/el/names.properties -------------------------------------------------------------------------------- /chrome/locale/el/overlay.dtd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nohamelin/simple-locale-switcher/HEAD/chrome/locale/el/overlay.dtd -------------------------------------------------------------------------------- /chrome/locale/el/overlay.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nohamelin/simple-locale-switcher/HEAD/chrome/locale/el/overlay.properties -------------------------------------------------------------------------------- /chrome/locale/el/preferences-os.dtd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nohamelin/simple-locale-switcher/HEAD/chrome/locale/el/preferences-os.dtd -------------------------------------------------------------------------------- /chrome/locale/el/preferences-os.win.dtd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nohamelin/simple-locale-switcher/HEAD/chrome/locale/el/preferences-os.win.dtd -------------------------------------------------------------------------------- /chrome/locale/el/preferences.dtd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nohamelin/simple-locale-switcher/HEAD/chrome/locale/el/preferences.dtd -------------------------------------------------------------------------------- /chrome/locale/en-US/extensions.dtd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nohamelin/simple-locale-switcher/HEAD/chrome/locale/en-US/extensions.dtd -------------------------------------------------------------------------------- /chrome/locale/en-US/extensions.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nohamelin/simple-locale-switcher/HEAD/chrome/locale/en-US/extensions.properties -------------------------------------------------------------------------------- /chrome/locale/en-US/languages.dtd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nohamelin/simple-locale-switcher/HEAD/chrome/locale/en-US/languages.dtd -------------------------------------------------------------------------------- /chrome/locale/en-US/languages.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nohamelin/simple-locale-switcher/HEAD/chrome/locale/en-US/languages.properties -------------------------------------------------------------------------------- /chrome/locale/en-US/meta.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nohamelin/simple-locale-switcher/HEAD/chrome/locale/en-US/meta.properties -------------------------------------------------------------------------------- /chrome/locale/en-US/names.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nohamelin/simple-locale-switcher/HEAD/chrome/locale/en-US/names.properties -------------------------------------------------------------------------------- /chrome/locale/en-US/overlay.dtd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nohamelin/simple-locale-switcher/HEAD/chrome/locale/en-US/overlay.dtd -------------------------------------------------------------------------------- /chrome/locale/en-US/overlay.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nohamelin/simple-locale-switcher/HEAD/chrome/locale/en-US/overlay.properties -------------------------------------------------------------------------------- /chrome/locale/en-US/preferences-os.dtd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nohamelin/simple-locale-switcher/HEAD/chrome/locale/en-US/preferences-os.dtd -------------------------------------------------------------------------------- /chrome/locale/en-US/preferences-os.win.dtd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nohamelin/simple-locale-switcher/HEAD/chrome/locale/en-US/preferences-os.win.dtd -------------------------------------------------------------------------------- /chrome/locale/en-US/preferences.dtd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nohamelin/simple-locale-switcher/HEAD/chrome/locale/en-US/preferences.dtd -------------------------------------------------------------------------------- /chrome/locale/eo/extensions.dtd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nohamelin/simple-locale-switcher/HEAD/chrome/locale/eo/extensions.dtd -------------------------------------------------------------------------------- /chrome/locale/eo/extensions.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nohamelin/simple-locale-switcher/HEAD/chrome/locale/eo/extensions.properties -------------------------------------------------------------------------------- /chrome/locale/eo/languages.dtd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nohamelin/simple-locale-switcher/HEAD/chrome/locale/eo/languages.dtd -------------------------------------------------------------------------------- /chrome/locale/eo/languages.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nohamelin/simple-locale-switcher/HEAD/chrome/locale/eo/languages.properties -------------------------------------------------------------------------------- /chrome/locale/eo/meta.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nohamelin/simple-locale-switcher/HEAD/chrome/locale/eo/meta.properties -------------------------------------------------------------------------------- /chrome/locale/eo/names.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nohamelin/simple-locale-switcher/HEAD/chrome/locale/eo/names.properties -------------------------------------------------------------------------------- /chrome/locale/eo/overlay.dtd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nohamelin/simple-locale-switcher/HEAD/chrome/locale/eo/overlay.dtd -------------------------------------------------------------------------------- /chrome/locale/eo/overlay.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nohamelin/simple-locale-switcher/HEAD/chrome/locale/eo/overlay.properties -------------------------------------------------------------------------------- /chrome/locale/eo/preferences-os.dtd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nohamelin/simple-locale-switcher/HEAD/chrome/locale/eo/preferences-os.dtd -------------------------------------------------------------------------------- /chrome/locale/eo/preferences-os.win.dtd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nohamelin/simple-locale-switcher/HEAD/chrome/locale/eo/preferences-os.win.dtd -------------------------------------------------------------------------------- /chrome/locale/eo/preferences.dtd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nohamelin/simple-locale-switcher/HEAD/chrome/locale/eo/preferences.dtd -------------------------------------------------------------------------------- /chrome/locale/es-ES/extensions.dtd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nohamelin/simple-locale-switcher/HEAD/chrome/locale/es-ES/extensions.dtd -------------------------------------------------------------------------------- /chrome/locale/es-ES/extensions.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nohamelin/simple-locale-switcher/HEAD/chrome/locale/es-ES/extensions.properties -------------------------------------------------------------------------------- /chrome/locale/es-ES/languages.dtd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nohamelin/simple-locale-switcher/HEAD/chrome/locale/es-ES/languages.dtd -------------------------------------------------------------------------------- /chrome/locale/es-ES/languages.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nohamelin/simple-locale-switcher/HEAD/chrome/locale/es-ES/languages.properties -------------------------------------------------------------------------------- /chrome/locale/es-ES/meta.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nohamelin/simple-locale-switcher/HEAD/chrome/locale/es-ES/meta.properties -------------------------------------------------------------------------------- /chrome/locale/es-ES/names.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nohamelin/simple-locale-switcher/HEAD/chrome/locale/es-ES/names.properties -------------------------------------------------------------------------------- /chrome/locale/es-ES/overlay.dtd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nohamelin/simple-locale-switcher/HEAD/chrome/locale/es-ES/overlay.dtd -------------------------------------------------------------------------------- /chrome/locale/es-ES/overlay.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nohamelin/simple-locale-switcher/HEAD/chrome/locale/es-ES/overlay.properties -------------------------------------------------------------------------------- /chrome/locale/es-ES/preferences-os.dtd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nohamelin/simple-locale-switcher/HEAD/chrome/locale/es-ES/preferences-os.dtd -------------------------------------------------------------------------------- /chrome/locale/es-ES/preferences-os.win.dtd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nohamelin/simple-locale-switcher/HEAD/chrome/locale/es-ES/preferences-os.win.dtd -------------------------------------------------------------------------------- /chrome/locale/es-ES/preferences.dtd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nohamelin/simple-locale-switcher/HEAD/chrome/locale/es-ES/preferences.dtd -------------------------------------------------------------------------------- /chrome/locale/fr/extensions.dtd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nohamelin/simple-locale-switcher/HEAD/chrome/locale/fr/extensions.dtd -------------------------------------------------------------------------------- /chrome/locale/fr/extensions.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nohamelin/simple-locale-switcher/HEAD/chrome/locale/fr/extensions.properties -------------------------------------------------------------------------------- /chrome/locale/fr/languages.dtd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nohamelin/simple-locale-switcher/HEAD/chrome/locale/fr/languages.dtd -------------------------------------------------------------------------------- /chrome/locale/fr/meta.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nohamelin/simple-locale-switcher/HEAD/chrome/locale/fr/meta.properties -------------------------------------------------------------------------------- /chrome/locale/fr/names.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nohamelin/simple-locale-switcher/HEAD/chrome/locale/fr/names.properties -------------------------------------------------------------------------------- /chrome/locale/fr/overlay.dtd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nohamelin/simple-locale-switcher/HEAD/chrome/locale/fr/overlay.dtd -------------------------------------------------------------------------------- /chrome/locale/fr/overlay.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nohamelin/simple-locale-switcher/HEAD/chrome/locale/fr/overlay.properties -------------------------------------------------------------------------------- /chrome/locale/fr/preferences-os.dtd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nohamelin/simple-locale-switcher/HEAD/chrome/locale/fr/preferences-os.dtd -------------------------------------------------------------------------------- /chrome/locale/fr/preferences-os.win.dtd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nohamelin/simple-locale-switcher/HEAD/chrome/locale/fr/preferences-os.win.dtd -------------------------------------------------------------------------------- /chrome/locale/fr/preferences.dtd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nohamelin/simple-locale-switcher/HEAD/chrome/locale/fr/preferences.dtd -------------------------------------------------------------------------------- /chrome/locale/gd/extensions.dtd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nohamelin/simple-locale-switcher/HEAD/chrome/locale/gd/extensions.dtd -------------------------------------------------------------------------------- /chrome/locale/gd/extensions.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nohamelin/simple-locale-switcher/HEAD/chrome/locale/gd/extensions.properties -------------------------------------------------------------------------------- /chrome/locale/gd/languages.dtd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nohamelin/simple-locale-switcher/HEAD/chrome/locale/gd/languages.dtd -------------------------------------------------------------------------------- /chrome/locale/gd/languages.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nohamelin/simple-locale-switcher/HEAD/chrome/locale/gd/languages.properties -------------------------------------------------------------------------------- /chrome/locale/gd/meta.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nohamelin/simple-locale-switcher/HEAD/chrome/locale/gd/meta.properties -------------------------------------------------------------------------------- /chrome/locale/gd/names.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nohamelin/simple-locale-switcher/HEAD/chrome/locale/gd/names.properties -------------------------------------------------------------------------------- /chrome/locale/gd/overlay.dtd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nohamelin/simple-locale-switcher/HEAD/chrome/locale/gd/overlay.dtd -------------------------------------------------------------------------------- /chrome/locale/gd/overlay.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nohamelin/simple-locale-switcher/HEAD/chrome/locale/gd/overlay.properties -------------------------------------------------------------------------------- /chrome/locale/gd/preferences-os.dtd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nohamelin/simple-locale-switcher/HEAD/chrome/locale/gd/preferences-os.dtd -------------------------------------------------------------------------------- /chrome/locale/gd/preferences-os.win.dtd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nohamelin/simple-locale-switcher/HEAD/chrome/locale/gd/preferences-os.win.dtd -------------------------------------------------------------------------------- /chrome/locale/gd/preferences.dtd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nohamelin/simple-locale-switcher/HEAD/chrome/locale/gd/preferences.dtd -------------------------------------------------------------------------------- /chrome/locale/hsb/extensions.dtd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nohamelin/simple-locale-switcher/HEAD/chrome/locale/hsb/extensions.dtd -------------------------------------------------------------------------------- /chrome/locale/hsb/extensions.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nohamelin/simple-locale-switcher/HEAD/chrome/locale/hsb/extensions.properties -------------------------------------------------------------------------------- /chrome/locale/hsb/languages.dtd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nohamelin/simple-locale-switcher/HEAD/chrome/locale/hsb/languages.dtd -------------------------------------------------------------------------------- /chrome/locale/hsb/languages.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nohamelin/simple-locale-switcher/HEAD/chrome/locale/hsb/languages.properties -------------------------------------------------------------------------------- /chrome/locale/hsb/meta.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nohamelin/simple-locale-switcher/HEAD/chrome/locale/hsb/meta.properties -------------------------------------------------------------------------------- /chrome/locale/hsb/names.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nohamelin/simple-locale-switcher/HEAD/chrome/locale/hsb/names.properties -------------------------------------------------------------------------------- /chrome/locale/hsb/overlay.dtd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nohamelin/simple-locale-switcher/HEAD/chrome/locale/hsb/overlay.dtd -------------------------------------------------------------------------------- /chrome/locale/hsb/overlay.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nohamelin/simple-locale-switcher/HEAD/chrome/locale/hsb/overlay.properties -------------------------------------------------------------------------------- /chrome/locale/hsb/preferences-os.dtd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nohamelin/simple-locale-switcher/HEAD/chrome/locale/hsb/preferences-os.dtd -------------------------------------------------------------------------------- /chrome/locale/hsb/preferences-os.win.dtd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nohamelin/simple-locale-switcher/HEAD/chrome/locale/hsb/preferences-os.win.dtd -------------------------------------------------------------------------------- /chrome/locale/hsb/preferences.dtd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nohamelin/simple-locale-switcher/HEAD/chrome/locale/hsb/preferences.dtd -------------------------------------------------------------------------------- /chrome/locale/hu/extensions.dtd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nohamelin/simple-locale-switcher/HEAD/chrome/locale/hu/extensions.dtd -------------------------------------------------------------------------------- /chrome/locale/hu/extensions.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nohamelin/simple-locale-switcher/HEAD/chrome/locale/hu/extensions.properties -------------------------------------------------------------------------------- /chrome/locale/hu/languages.dtd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nohamelin/simple-locale-switcher/HEAD/chrome/locale/hu/languages.dtd -------------------------------------------------------------------------------- /chrome/locale/hu/languages.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nohamelin/simple-locale-switcher/HEAD/chrome/locale/hu/languages.properties -------------------------------------------------------------------------------- /chrome/locale/hu/meta.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nohamelin/simple-locale-switcher/HEAD/chrome/locale/hu/meta.properties -------------------------------------------------------------------------------- /chrome/locale/hu/names.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nohamelin/simple-locale-switcher/HEAD/chrome/locale/hu/names.properties -------------------------------------------------------------------------------- /chrome/locale/hu/overlay.dtd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nohamelin/simple-locale-switcher/HEAD/chrome/locale/hu/overlay.dtd -------------------------------------------------------------------------------- /chrome/locale/hu/overlay.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nohamelin/simple-locale-switcher/HEAD/chrome/locale/hu/overlay.properties -------------------------------------------------------------------------------- /chrome/locale/hu/preferences-os.dtd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nohamelin/simple-locale-switcher/HEAD/chrome/locale/hu/preferences-os.dtd -------------------------------------------------------------------------------- /chrome/locale/hu/preferences-os.win.dtd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nohamelin/simple-locale-switcher/HEAD/chrome/locale/hu/preferences-os.win.dtd -------------------------------------------------------------------------------- /chrome/locale/hu/preferences.dtd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nohamelin/simple-locale-switcher/HEAD/chrome/locale/hu/preferences.dtd -------------------------------------------------------------------------------- /chrome/locale/ja/extensions.dtd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nohamelin/simple-locale-switcher/HEAD/chrome/locale/ja/extensions.dtd -------------------------------------------------------------------------------- /chrome/locale/ja/extensions.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nohamelin/simple-locale-switcher/HEAD/chrome/locale/ja/extensions.properties -------------------------------------------------------------------------------- /chrome/locale/ja/languages.dtd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nohamelin/simple-locale-switcher/HEAD/chrome/locale/ja/languages.dtd -------------------------------------------------------------------------------- /chrome/locale/ja/languages.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nohamelin/simple-locale-switcher/HEAD/chrome/locale/ja/languages.properties -------------------------------------------------------------------------------- /chrome/locale/ja/meta.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nohamelin/simple-locale-switcher/HEAD/chrome/locale/ja/meta.properties -------------------------------------------------------------------------------- /chrome/locale/ja/names.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nohamelin/simple-locale-switcher/HEAD/chrome/locale/ja/names.properties -------------------------------------------------------------------------------- /chrome/locale/ja/overlay.dtd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nohamelin/simple-locale-switcher/HEAD/chrome/locale/ja/overlay.dtd -------------------------------------------------------------------------------- /chrome/locale/ja/overlay.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nohamelin/simple-locale-switcher/HEAD/chrome/locale/ja/overlay.properties -------------------------------------------------------------------------------- /chrome/locale/ja/preferences-os.dtd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nohamelin/simple-locale-switcher/HEAD/chrome/locale/ja/preferences-os.dtd -------------------------------------------------------------------------------- /chrome/locale/ja/preferences-os.win.dtd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nohamelin/simple-locale-switcher/HEAD/chrome/locale/ja/preferences-os.win.dtd -------------------------------------------------------------------------------- /chrome/locale/ja/preferences.dtd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nohamelin/simple-locale-switcher/HEAD/chrome/locale/ja/preferences.dtd -------------------------------------------------------------------------------- /chrome/locale/ko/extensions.dtd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nohamelin/simple-locale-switcher/HEAD/chrome/locale/ko/extensions.dtd -------------------------------------------------------------------------------- /chrome/locale/ko/extensions.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nohamelin/simple-locale-switcher/HEAD/chrome/locale/ko/extensions.properties -------------------------------------------------------------------------------- /chrome/locale/ko/languages.dtd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nohamelin/simple-locale-switcher/HEAD/chrome/locale/ko/languages.dtd -------------------------------------------------------------------------------- /chrome/locale/ko/languages.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nohamelin/simple-locale-switcher/HEAD/chrome/locale/ko/languages.properties -------------------------------------------------------------------------------- /chrome/locale/ko/meta.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nohamelin/simple-locale-switcher/HEAD/chrome/locale/ko/meta.properties -------------------------------------------------------------------------------- /chrome/locale/ko/names.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nohamelin/simple-locale-switcher/HEAD/chrome/locale/ko/names.properties -------------------------------------------------------------------------------- /chrome/locale/ko/overlay.dtd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nohamelin/simple-locale-switcher/HEAD/chrome/locale/ko/overlay.dtd -------------------------------------------------------------------------------- /chrome/locale/ko/overlay.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nohamelin/simple-locale-switcher/HEAD/chrome/locale/ko/overlay.properties -------------------------------------------------------------------------------- /chrome/locale/ko/preferences-os.dtd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nohamelin/simple-locale-switcher/HEAD/chrome/locale/ko/preferences-os.dtd -------------------------------------------------------------------------------- /chrome/locale/ko/preferences-os.win.dtd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nohamelin/simple-locale-switcher/HEAD/chrome/locale/ko/preferences-os.win.dtd -------------------------------------------------------------------------------- /chrome/locale/ko/preferences.dtd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nohamelin/simple-locale-switcher/HEAD/chrome/locale/ko/preferences.dtd -------------------------------------------------------------------------------- /chrome/locale/lv-LV/extensions.dtd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nohamelin/simple-locale-switcher/HEAD/chrome/locale/lv-LV/extensions.dtd -------------------------------------------------------------------------------- /chrome/locale/lv-LV/extensions.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nohamelin/simple-locale-switcher/HEAD/chrome/locale/lv-LV/extensions.properties -------------------------------------------------------------------------------- /chrome/locale/lv-LV/languages.dtd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nohamelin/simple-locale-switcher/HEAD/chrome/locale/lv-LV/languages.dtd -------------------------------------------------------------------------------- /chrome/locale/lv-LV/languages.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nohamelin/simple-locale-switcher/HEAD/chrome/locale/lv-LV/languages.properties -------------------------------------------------------------------------------- /chrome/locale/lv-LV/meta.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nohamelin/simple-locale-switcher/HEAD/chrome/locale/lv-LV/meta.properties -------------------------------------------------------------------------------- /chrome/locale/lv-LV/names.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nohamelin/simple-locale-switcher/HEAD/chrome/locale/lv-LV/names.properties -------------------------------------------------------------------------------- /chrome/locale/lv-LV/overlay.dtd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nohamelin/simple-locale-switcher/HEAD/chrome/locale/lv-LV/overlay.dtd -------------------------------------------------------------------------------- /chrome/locale/lv-LV/overlay.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nohamelin/simple-locale-switcher/HEAD/chrome/locale/lv-LV/overlay.properties -------------------------------------------------------------------------------- /chrome/locale/lv-LV/preferences-os.dtd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nohamelin/simple-locale-switcher/HEAD/chrome/locale/lv-LV/preferences-os.dtd -------------------------------------------------------------------------------- /chrome/locale/lv-LV/preferences-os.win.dtd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nohamelin/simple-locale-switcher/HEAD/chrome/locale/lv-LV/preferences-os.win.dtd -------------------------------------------------------------------------------- /chrome/locale/lv-LV/preferences.dtd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nohamelin/simple-locale-switcher/HEAD/chrome/locale/lv-LV/preferences.dtd -------------------------------------------------------------------------------- /chrome/locale/nl/extensions.dtd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nohamelin/simple-locale-switcher/HEAD/chrome/locale/nl/extensions.dtd -------------------------------------------------------------------------------- /chrome/locale/nl/extensions.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nohamelin/simple-locale-switcher/HEAD/chrome/locale/nl/extensions.properties -------------------------------------------------------------------------------- /chrome/locale/nl/languages.dtd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nohamelin/simple-locale-switcher/HEAD/chrome/locale/nl/languages.dtd -------------------------------------------------------------------------------- /chrome/locale/nl/languages.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nohamelin/simple-locale-switcher/HEAD/chrome/locale/nl/languages.properties -------------------------------------------------------------------------------- /chrome/locale/nl/meta.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nohamelin/simple-locale-switcher/HEAD/chrome/locale/nl/meta.properties -------------------------------------------------------------------------------- /chrome/locale/nl/names.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nohamelin/simple-locale-switcher/HEAD/chrome/locale/nl/names.properties -------------------------------------------------------------------------------- /chrome/locale/nl/overlay.dtd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nohamelin/simple-locale-switcher/HEAD/chrome/locale/nl/overlay.dtd -------------------------------------------------------------------------------- /chrome/locale/nl/overlay.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nohamelin/simple-locale-switcher/HEAD/chrome/locale/nl/overlay.properties -------------------------------------------------------------------------------- /chrome/locale/nl/preferences-os.dtd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nohamelin/simple-locale-switcher/HEAD/chrome/locale/nl/preferences-os.dtd -------------------------------------------------------------------------------- /chrome/locale/nl/preferences-os.win.dtd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nohamelin/simple-locale-switcher/HEAD/chrome/locale/nl/preferences-os.win.dtd -------------------------------------------------------------------------------- /chrome/locale/nl/preferences.dtd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nohamelin/simple-locale-switcher/HEAD/chrome/locale/nl/preferences.dtd -------------------------------------------------------------------------------- /chrome/locale/pt-BR/extensions.dtd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nohamelin/simple-locale-switcher/HEAD/chrome/locale/pt-BR/extensions.dtd -------------------------------------------------------------------------------- /chrome/locale/pt-BR/extensions.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nohamelin/simple-locale-switcher/HEAD/chrome/locale/pt-BR/extensions.properties -------------------------------------------------------------------------------- /chrome/locale/pt-BR/languages.dtd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nohamelin/simple-locale-switcher/HEAD/chrome/locale/pt-BR/languages.dtd -------------------------------------------------------------------------------- /chrome/locale/pt-BR/meta.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nohamelin/simple-locale-switcher/HEAD/chrome/locale/pt-BR/meta.properties -------------------------------------------------------------------------------- /chrome/locale/pt-BR/names.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nohamelin/simple-locale-switcher/HEAD/chrome/locale/pt-BR/names.properties -------------------------------------------------------------------------------- /chrome/locale/pt-BR/overlay.dtd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nohamelin/simple-locale-switcher/HEAD/chrome/locale/pt-BR/overlay.dtd -------------------------------------------------------------------------------- /chrome/locale/pt-BR/overlay.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nohamelin/simple-locale-switcher/HEAD/chrome/locale/pt-BR/overlay.properties -------------------------------------------------------------------------------- /chrome/locale/pt-BR/preferences-os.dtd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nohamelin/simple-locale-switcher/HEAD/chrome/locale/pt-BR/preferences-os.dtd -------------------------------------------------------------------------------- /chrome/locale/pt-BR/preferences-os.win.dtd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nohamelin/simple-locale-switcher/HEAD/chrome/locale/pt-BR/preferences-os.win.dtd -------------------------------------------------------------------------------- /chrome/locale/pt-BR/preferences.dtd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nohamelin/simple-locale-switcher/HEAD/chrome/locale/pt-BR/preferences.dtd -------------------------------------------------------------------------------- /chrome/locale/rm/extensions.dtd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nohamelin/simple-locale-switcher/HEAD/chrome/locale/rm/extensions.dtd -------------------------------------------------------------------------------- /chrome/locale/rm/extensions.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nohamelin/simple-locale-switcher/HEAD/chrome/locale/rm/extensions.properties -------------------------------------------------------------------------------- /chrome/locale/rm/languages.dtd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nohamelin/simple-locale-switcher/HEAD/chrome/locale/rm/languages.dtd -------------------------------------------------------------------------------- /chrome/locale/rm/languages.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nohamelin/simple-locale-switcher/HEAD/chrome/locale/rm/languages.properties -------------------------------------------------------------------------------- /chrome/locale/rm/meta.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nohamelin/simple-locale-switcher/HEAD/chrome/locale/rm/meta.properties -------------------------------------------------------------------------------- /chrome/locale/rm/names.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nohamelin/simple-locale-switcher/HEAD/chrome/locale/rm/names.properties -------------------------------------------------------------------------------- /chrome/locale/rm/overlay.dtd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nohamelin/simple-locale-switcher/HEAD/chrome/locale/rm/overlay.dtd -------------------------------------------------------------------------------- /chrome/locale/rm/overlay.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nohamelin/simple-locale-switcher/HEAD/chrome/locale/rm/overlay.properties -------------------------------------------------------------------------------- /chrome/locale/rm/preferences-os.dtd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nohamelin/simple-locale-switcher/HEAD/chrome/locale/rm/preferences-os.dtd -------------------------------------------------------------------------------- /chrome/locale/rm/preferences-os.win.dtd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nohamelin/simple-locale-switcher/HEAD/chrome/locale/rm/preferences-os.win.dtd -------------------------------------------------------------------------------- /chrome/locale/rm/preferences.dtd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nohamelin/simple-locale-switcher/HEAD/chrome/locale/rm/preferences.dtd -------------------------------------------------------------------------------- /chrome/locale/ru/extensions.dtd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nohamelin/simple-locale-switcher/HEAD/chrome/locale/ru/extensions.dtd -------------------------------------------------------------------------------- /chrome/locale/ru/extensions.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nohamelin/simple-locale-switcher/HEAD/chrome/locale/ru/extensions.properties -------------------------------------------------------------------------------- /chrome/locale/ru/languages.dtd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nohamelin/simple-locale-switcher/HEAD/chrome/locale/ru/languages.dtd -------------------------------------------------------------------------------- /chrome/locale/ru/languages.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nohamelin/simple-locale-switcher/HEAD/chrome/locale/ru/languages.properties -------------------------------------------------------------------------------- /chrome/locale/ru/meta.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nohamelin/simple-locale-switcher/HEAD/chrome/locale/ru/meta.properties -------------------------------------------------------------------------------- /chrome/locale/ru/names.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nohamelin/simple-locale-switcher/HEAD/chrome/locale/ru/names.properties -------------------------------------------------------------------------------- /chrome/locale/ru/overlay.dtd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nohamelin/simple-locale-switcher/HEAD/chrome/locale/ru/overlay.dtd -------------------------------------------------------------------------------- /chrome/locale/ru/overlay.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nohamelin/simple-locale-switcher/HEAD/chrome/locale/ru/overlay.properties -------------------------------------------------------------------------------- /chrome/locale/ru/preferences-os.dtd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nohamelin/simple-locale-switcher/HEAD/chrome/locale/ru/preferences-os.dtd -------------------------------------------------------------------------------- /chrome/locale/ru/preferences-os.win.dtd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nohamelin/simple-locale-switcher/HEAD/chrome/locale/ru/preferences-os.win.dtd -------------------------------------------------------------------------------- /chrome/locale/ru/preferences.dtd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nohamelin/simple-locale-switcher/HEAD/chrome/locale/ru/preferences.dtd -------------------------------------------------------------------------------- /chrome/locale/sr/extensions.dtd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nohamelin/simple-locale-switcher/HEAD/chrome/locale/sr/extensions.dtd -------------------------------------------------------------------------------- /chrome/locale/sr/extensions.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nohamelin/simple-locale-switcher/HEAD/chrome/locale/sr/extensions.properties -------------------------------------------------------------------------------- /chrome/locale/sr/languages.dtd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nohamelin/simple-locale-switcher/HEAD/chrome/locale/sr/languages.dtd -------------------------------------------------------------------------------- /chrome/locale/sr/languages.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nohamelin/simple-locale-switcher/HEAD/chrome/locale/sr/languages.properties -------------------------------------------------------------------------------- /chrome/locale/sr/meta.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nohamelin/simple-locale-switcher/HEAD/chrome/locale/sr/meta.properties -------------------------------------------------------------------------------- /chrome/locale/sr/names.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nohamelin/simple-locale-switcher/HEAD/chrome/locale/sr/names.properties -------------------------------------------------------------------------------- /chrome/locale/sr/overlay.dtd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nohamelin/simple-locale-switcher/HEAD/chrome/locale/sr/overlay.dtd -------------------------------------------------------------------------------- /chrome/locale/sr/overlay.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nohamelin/simple-locale-switcher/HEAD/chrome/locale/sr/overlay.properties -------------------------------------------------------------------------------- /chrome/locale/sr/preferences-os.dtd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nohamelin/simple-locale-switcher/HEAD/chrome/locale/sr/preferences-os.dtd -------------------------------------------------------------------------------- /chrome/locale/sr/preferences-os.win.dtd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nohamelin/simple-locale-switcher/HEAD/chrome/locale/sr/preferences-os.win.dtd -------------------------------------------------------------------------------- /chrome/locale/sr/preferences.dtd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nohamelin/simple-locale-switcher/HEAD/chrome/locale/sr/preferences.dtd -------------------------------------------------------------------------------- /chrome/locale/sv-SE/extensions.dtd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nohamelin/simple-locale-switcher/HEAD/chrome/locale/sv-SE/extensions.dtd -------------------------------------------------------------------------------- /chrome/locale/sv-SE/extensions.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nohamelin/simple-locale-switcher/HEAD/chrome/locale/sv-SE/extensions.properties -------------------------------------------------------------------------------- /chrome/locale/sv-SE/languages.dtd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nohamelin/simple-locale-switcher/HEAD/chrome/locale/sv-SE/languages.dtd -------------------------------------------------------------------------------- /chrome/locale/sv-SE/languages.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nohamelin/simple-locale-switcher/HEAD/chrome/locale/sv-SE/languages.properties -------------------------------------------------------------------------------- /chrome/locale/sv-SE/meta.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nohamelin/simple-locale-switcher/HEAD/chrome/locale/sv-SE/meta.properties -------------------------------------------------------------------------------- /chrome/locale/sv-SE/names.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nohamelin/simple-locale-switcher/HEAD/chrome/locale/sv-SE/names.properties -------------------------------------------------------------------------------- /chrome/locale/sv-SE/overlay.dtd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nohamelin/simple-locale-switcher/HEAD/chrome/locale/sv-SE/overlay.dtd -------------------------------------------------------------------------------- /chrome/locale/sv-SE/overlay.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nohamelin/simple-locale-switcher/HEAD/chrome/locale/sv-SE/overlay.properties -------------------------------------------------------------------------------- /chrome/locale/sv-SE/preferences-os.dtd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nohamelin/simple-locale-switcher/HEAD/chrome/locale/sv-SE/preferences-os.dtd -------------------------------------------------------------------------------- /chrome/locale/sv-SE/preferences-os.win.dtd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nohamelin/simple-locale-switcher/HEAD/chrome/locale/sv-SE/preferences-os.win.dtd -------------------------------------------------------------------------------- /chrome/locale/sv-SE/preferences.dtd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nohamelin/simple-locale-switcher/HEAD/chrome/locale/sv-SE/preferences.dtd -------------------------------------------------------------------------------- /chrome/locale/uk-UA/extensions.dtd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nohamelin/simple-locale-switcher/HEAD/chrome/locale/uk-UA/extensions.dtd -------------------------------------------------------------------------------- /chrome/locale/uk-UA/extensions.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nohamelin/simple-locale-switcher/HEAD/chrome/locale/uk-UA/extensions.properties -------------------------------------------------------------------------------- /chrome/locale/uk-UA/languages.dtd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nohamelin/simple-locale-switcher/HEAD/chrome/locale/uk-UA/languages.dtd -------------------------------------------------------------------------------- /chrome/locale/uk-UA/languages.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nohamelin/simple-locale-switcher/HEAD/chrome/locale/uk-UA/languages.properties -------------------------------------------------------------------------------- /chrome/locale/uk-UA/meta.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nohamelin/simple-locale-switcher/HEAD/chrome/locale/uk-UA/meta.properties -------------------------------------------------------------------------------- /chrome/locale/uk-UA/names.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nohamelin/simple-locale-switcher/HEAD/chrome/locale/uk-UA/names.properties -------------------------------------------------------------------------------- /chrome/locale/uk-UA/overlay.dtd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nohamelin/simple-locale-switcher/HEAD/chrome/locale/uk-UA/overlay.dtd -------------------------------------------------------------------------------- /chrome/locale/uk-UA/overlay.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nohamelin/simple-locale-switcher/HEAD/chrome/locale/uk-UA/overlay.properties -------------------------------------------------------------------------------- /chrome/locale/uk-UA/preferences-os.dtd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nohamelin/simple-locale-switcher/HEAD/chrome/locale/uk-UA/preferences-os.dtd -------------------------------------------------------------------------------- /chrome/locale/uk-UA/preferences-os.win.dtd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nohamelin/simple-locale-switcher/HEAD/chrome/locale/uk-UA/preferences-os.win.dtd -------------------------------------------------------------------------------- /chrome/locale/uk-UA/preferences.dtd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nohamelin/simple-locale-switcher/HEAD/chrome/locale/uk-UA/preferences.dtd -------------------------------------------------------------------------------- /chrome/locale/zh-CN/extensions.dtd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nohamelin/simple-locale-switcher/HEAD/chrome/locale/zh-CN/extensions.dtd -------------------------------------------------------------------------------- /chrome/locale/zh-CN/extensions.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nohamelin/simple-locale-switcher/HEAD/chrome/locale/zh-CN/extensions.properties -------------------------------------------------------------------------------- /chrome/locale/zh-CN/languages.dtd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nohamelin/simple-locale-switcher/HEAD/chrome/locale/zh-CN/languages.dtd -------------------------------------------------------------------------------- /chrome/locale/zh-CN/languages.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nohamelin/simple-locale-switcher/HEAD/chrome/locale/zh-CN/languages.properties -------------------------------------------------------------------------------- /chrome/locale/zh-CN/meta.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nohamelin/simple-locale-switcher/HEAD/chrome/locale/zh-CN/meta.properties -------------------------------------------------------------------------------- /chrome/locale/zh-CN/names.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nohamelin/simple-locale-switcher/HEAD/chrome/locale/zh-CN/names.properties -------------------------------------------------------------------------------- /chrome/locale/zh-CN/overlay.dtd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nohamelin/simple-locale-switcher/HEAD/chrome/locale/zh-CN/overlay.dtd -------------------------------------------------------------------------------- /chrome/locale/zh-CN/overlay.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nohamelin/simple-locale-switcher/HEAD/chrome/locale/zh-CN/overlay.properties -------------------------------------------------------------------------------- /chrome/locale/zh-CN/preferences-os.dtd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nohamelin/simple-locale-switcher/HEAD/chrome/locale/zh-CN/preferences-os.dtd -------------------------------------------------------------------------------- /chrome/locale/zh-CN/preferences-os.win.dtd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nohamelin/simple-locale-switcher/HEAD/chrome/locale/zh-CN/preferences-os.win.dtd -------------------------------------------------------------------------------- /chrome/locale/zh-CN/preferences.dtd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nohamelin/simple-locale-switcher/HEAD/chrome/locale/zh-CN/preferences.dtd -------------------------------------------------------------------------------- /chrome/locale/zh-TW/extensions.dtd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nohamelin/simple-locale-switcher/HEAD/chrome/locale/zh-TW/extensions.dtd -------------------------------------------------------------------------------- /chrome/locale/zh-TW/extensions.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nohamelin/simple-locale-switcher/HEAD/chrome/locale/zh-TW/extensions.properties -------------------------------------------------------------------------------- /chrome/locale/zh-TW/languages.dtd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nohamelin/simple-locale-switcher/HEAD/chrome/locale/zh-TW/languages.dtd -------------------------------------------------------------------------------- /chrome/locale/zh-TW/languages.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nohamelin/simple-locale-switcher/HEAD/chrome/locale/zh-TW/languages.properties -------------------------------------------------------------------------------- /chrome/locale/zh-TW/meta.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nohamelin/simple-locale-switcher/HEAD/chrome/locale/zh-TW/meta.properties -------------------------------------------------------------------------------- /chrome/locale/zh-TW/names.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nohamelin/simple-locale-switcher/HEAD/chrome/locale/zh-TW/names.properties -------------------------------------------------------------------------------- /chrome/locale/zh-TW/overlay.dtd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nohamelin/simple-locale-switcher/HEAD/chrome/locale/zh-TW/overlay.dtd -------------------------------------------------------------------------------- /chrome/locale/zh-TW/overlay.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nohamelin/simple-locale-switcher/HEAD/chrome/locale/zh-TW/overlay.properties -------------------------------------------------------------------------------- /chrome/locale/zh-TW/preferences-os.dtd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nohamelin/simple-locale-switcher/HEAD/chrome/locale/zh-TW/preferences-os.dtd -------------------------------------------------------------------------------- /chrome/locale/zh-TW/preferences-os.win.dtd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nohamelin/simple-locale-switcher/HEAD/chrome/locale/zh-TW/preferences-os.win.dtd -------------------------------------------------------------------------------- /chrome/locale/zh-TW/preferences.dtd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nohamelin/simple-locale-switcher/HEAD/chrome/locale/zh-TW/preferences.dtd -------------------------------------------------------------------------------- /chrome/skin/button-big.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nohamelin/simple-locale-switcher/HEAD/chrome/skin/button-big.png -------------------------------------------------------------------------------- /chrome/skin/button-small.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nohamelin/simple-locale-switcher/HEAD/chrome/skin/button-small.png -------------------------------------------------------------------------------- /chrome/skin/button-suite-small.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nohamelin/simple-locale-switcher/HEAD/chrome/skin/button-suite-small.png -------------------------------------------------------------------------------- /chrome/skin/button-suite.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nohamelin/simple-locale-switcher/HEAD/chrome/skin/button-suite.png -------------------------------------------------------------------------------- /chrome/skin/button.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nohamelin/simple-locale-switcher/HEAD/chrome/skin/button.png -------------------------------------------------------------------------------- /chrome/skin/extension-big.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nohamelin/simple-locale-switcher/HEAD/chrome/skin/extension-big.png -------------------------------------------------------------------------------- /chrome/skin/extension.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nohamelin/simple-locale-switcher/HEAD/chrome/skin/extension.png -------------------------------------------------------------------------------- /chrome/skin/extensions.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nohamelin/simple-locale-switcher/HEAD/chrome/skin/extensions.css -------------------------------------------------------------------------------- /chrome/skin/languages.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nohamelin/simple-locale-switcher/HEAD/chrome/skin/languages.css -------------------------------------------------------------------------------- /chrome/skin/linux/overlay.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nohamelin/simple-locale-switcher/HEAD/chrome/skin/linux/overlay.css -------------------------------------------------------------------------------- /chrome/skin/osx/overlay.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nohamelin/simple-locale-switcher/HEAD/chrome/skin/osx/overlay.css -------------------------------------------------------------------------------- /chrome/skin/overlay.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nohamelin/simple-locale-switcher/HEAD/chrome/skin/overlay.css -------------------------------------------------------------------------------- /chrome/skin/overlay.fx57.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nohamelin/simple-locale-switcher/HEAD/chrome/skin/overlay.fx57.css -------------------------------------------------------------------------------- /chrome/skin/windows/overlay.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nohamelin/simple-locale-switcher/HEAD/chrome/skin/windows/overlay.css -------------------------------------------------------------------------------- /components/LanguageService.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nohamelin/simple-locale-switcher/HEAD/components/LanguageService.js -------------------------------------------------------------------------------- /defaults/preferences/defaults.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nohamelin/simple-locale-switcher/HEAD/defaults/preferences/defaults.js -------------------------------------------------------------------------------- /icon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nohamelin/simple-locale-switcher/HEAD/icon.svg -------------------------------------------------------------------------------- /install.rdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nohamelin/simple-locale-switcher/HEAD/install.rdf --------------------------------------------------------------------------------