├── .gitignore ├── .ignore-ids ├── LICENSE ├── Makefile ├── README.md ├── TESTS.txt ├── TODO.txt ├── TRANSLATING.md ├── chrome.manifest ├── chrome ├── content │ ├── ask.js │ ├── ask.xul │ ├── backgrounding.js │ ├── backgrounding.xul │ ├── composeToolbar.js │ ├── composeToolbar.xul │ ├── composing.js │ ├── composing.xul │ ├── editor.css │ ├── editor.js │ ├── editor.xul │ ├── headerView.js │ ├── headerView.xul │ ├── headerViewTB68.xul │ ├── options.js │ ├── options.xul │ ├── prompt.js │ ├── prompt.xul │ ├── toolbarButton.png │ └── util.js ├── locale │ ├── bg-BG │ │ ├── ask.dtd │ │ ├── editor.dtd │ │ ├── headerView.dtd │ │ ├── prefwindow.dtd │ │ ├── prompt.dtd │ │ ├── prompt.properties │ │ └── sendlater3.properties │ ├── ca-ES │ │ ├── ask.dtd │ │ ├── editor.dtd │ │ ├── headerView.dtd │ │ ├── prefwindow.dtd │ │ ├── prompt.dtd │ │ ├── prompt.properties │ │ └── sendlater3.properties │ ├── cs-CZ │ │ ├── ask.dtd │ │ ├── editor.dtd │ │ ├── headerView.dtd │ │ ├── prefwindow.dtd │ │ ├── prompt.dtd │ │ ├── prompt.properties │ │ └── sendlater3.properties │ ├── da-DK │ │ ├── ask.dtd │ │ └── editor.dtd │ ├── de-DE │ │ ├── ask.dtd │ │ ├── editor.dtd │ │ ├── headerView.dtd │ │ ├── prefwindow.dtd │ │ ├── prompt.dtd │ │ ├── prompt.properties │ │ └── sendlater3.properties │ ├── el-GR │ │ ├── ask.dtd │ │ ├── editor.dtd │ │ ├── headerView.dtd │ │ ├── prefwindow.dtd │ │ ├── prompt.dtd │ │ ├── prompt.properties │ │ └── sendlater3.properties │ ├── en-US │ │ ├── ask.dtd │ │ ├── editor.dtd │ │ ├── headerView.dtd │ │ ├── prefwindow.dtd │ │ ├── prompt.dtd │ │ ├── prompt.properties │ │ └── sendlater3.properties │ ├── es-ES │ │ ├── ask.dtd │ │ ├── editor.dtd │ │ ├── headerView.dtd │ │ ├── prefwindow.dtd │ │ ├── prompt.dtd │ │ ├── prompt.properties │ │ └── sendlater3.properties │ ├── fi-FI │ │ ├── ask.dtd │ │ ├── editor.dtd │ │ ├── headerView.dtd │ │ ├── prefwindow.dtd │ │ ├── prompt.dtd │ │ ├── prompt.properties │ │ └── sendlater3.properties │ ├── fr-FR │ │ ├── ask.dtd │ │ ├── editor.dtd │ │ ├── headerView.dtd │ │ ├── prefwindow.dtd │ │ ├── prompt.dtd │ │ ├── prompt.properties │ │ └── sendlater3.properties │ ├── gl-ES │ │ ├── ask.dtd │ │ ├── editor.dtd │ │ ├── headerView.dtd │ │ ├── prefwindow.dtd │ │ ├── prompt.dtd │ │ ├── prompt.properties │ │ └── sendlater3.properties │ ├── he-IL │ │ ├── ask.dtd │ │ ├── editor.dtd │ │ ├── headerView.dtd │ │ ├── prefwindow.dtd │ │ ├── prompt.dtd │ │ ├── prompt.properties │ │ └── sendlater3.properties │ ├── hu-HU │ │ ├── ask.dtd │ │ ├── editor.dtd │ │ ├── headerView.dtd │ │ ├── prefwindow.dtd │ │ ├── prompt.dtd │ │ ├── prompt.properties │ │ └── sendlater3.properties │ ├── hy-AM │ │ ├── ask.dtd │ │ ├── headerView.dtd │ │ ├── prefwindow.dtd │ │ ├── prompt.dtd │ │ ├── prompt.properties │ │ └── sendlater3.properties │ ├── it-IT │ │ ├── ask.dtd │ │ ├── editor.dtd │ │ ├── headerView.dtd │ │ ├── prefwindow.dtd │ │ ├── prompt.dtd │ │ ├── prompt.properties │ │ └── sendlater3.properties │ ├── ja-JP │ │ ├── ask.dtd │ │ ├── editor.dtd │ │ ├── headerView.dtd │ │ ├── prefwindow.dtd │ │ ├── prompt.dtd │ │ ├── prompt.properties │ │ └── sendlater3.properties │ ├── nb-NO │ │ ├── ask.dtd │ │ ├── editor.dtd │ │ ├── headerView.dtd │ │ ├── prefwindow.dtd │ │ ├── prompt.dtd │ │ ├── prompt.properties │ │ └── sendlater3.properties │ ├── nl-NL │ │ ├── ask.dtd │ │ ├── editor.dtd │ │ ├── headerView.dtd │ │ ├── prefwindow.dtd │ │ ├── prompt.dtd │ │ ├── prompt.properties │ │ └── sendlater3.properties │ ├── pl-PL │ │ ├── ask.dtd │ │ ├── editor.dtd │ │ ├── headerView.dtd │ │ ├── prefwindow.dtd │ │ ├── prompt.dtd │ │ ├── prompt.properties │ │ └── sendlater3.properties │ ├── pt-BR │ │ ├── ask.dtd │ │ ├── editor.dtd │ │ ├── headerView.dtd │ │ ├── prefwindow.dtd │ │ ├── prompt.dtd │ │ ├── prompt.properties │ │ └── sendlater3.properties │ ├── pt-PT │ │ ├── ask.dtd │ │ ├── editor.dtd │ │ ├── headerView.dtd │ │ ├── prefwindow.dtd │ │ ├── prompt.dtd │ │ ├── prompt.properties │ │ └── sendlater3.properties │ ├── ro-RO │ │ ├── ask.dtd │ │ ├── editor.dtd │ │ ├── headerView.dtd │ │ ├── prefwindow.dtd │ │ ├── prompt.dtd │ │ ├── prompt.properties │ │ └── sendlater3.properties │ ├── ru-RU │ │ ├── ask.dtd │ │ ├── editor.dtd │ │ ├── headerView.dtd │ │ ├── prefwindow.dtd │ │ ├── prompt.dtd │ │ ├── prompt.properties │ │ └── sendlater3.properties │ ├── sv-SE │ │ ├── ask.dtd │ │ ├── editor.dtd │ │ ├── headerView.dtd │ │ ├── prefwindow.dtd │ │ ├── prompt.dtd │ │ ├── prompt.properties │ │ └── sendlater3.properties │ ├── tr-TR │ │ ├── ask.dtd │ │ ├── editor.dtd │ │ ├── headerView.dtd │ │ └── prompt.dtd │ ├── zh-CN │ │ ├── ask.dtd │ │ ├── editor.dtd │ │ ├── headerView.dtd │ │ ├── prefwindow.dtd │ │ ├── prompt.dtd │ │ ├── prompt.properties │ │ └── sendlater3.properties │ └── zh-TW │ │ ├── ask.dtd │ │ ├── editor.dtd │ │ ├── headerView.dtd │ │ ├── prefwindow.dtd │ │ ├── prompt.dtd │ │ ├── prompt.properties │ │ └── sendlater3.properties └── resource │ ├── dateparse.jsm │ ├── defaultPreferencesLoader.jsm │ ├── logging.jsm │ ├── sugar.js │ └── ufuncs.jsm ├── contrib └── scheduling-functions │ ├── DaysBeforeNthWeekday.slj │ ├── FirstFourDaysOfEachMonth.slj │ ├── NextChol.slj │ └── README.md ├── crowdin.yaml.template ├── defaults └── preferences │ └── sendlater3.js ├── exclude-manifest ├── icon.png ├── include-manifest ├── manifest.json ├── src ├── Green_arrow_right.svg.png ├── clock.jpg ├── l10n │ ├── bg-BG │ │ └── project_strings.csv │ ├── ca-ES │ │ └── project_strings.csv │ ├── cs-CZ │ │ └── project_strings.csv │ ├── da-DK │ │ └── project_strings.csv │ ├── de-DE │ │ └── project_strings.csv │ ├── el-GR │ │ └── project_strings.csv │ ├── en-US │ │ └── project_strings.csv │ ├── es-ES │ │ └── project_strings.csv │ ├── fi-FI │ │ └── project_strings.csv │ ├── fr-FR │ │ └── project_strings.csv │ ├── gl-ES │ │ └── project_strings.csv │ ├── he-IL │ │ └── project_strings.csv │ ├── hu-HU │ │ └── project_strings.csv │ ├── hy-AM │ │ └── project_strings.csv │ ├── it-IT │ │ └── project_strings.csv │ ├── ja-JP │ │ └── project_strings.csv │ ├── nb-NO │ │ └── project_strings.csv │ ├── nl-NL │ │ └── project_strings.csv │ ├── pl-PL │ │ └── project_strings.csv │ ├── pt-BR │ │ └── project_strings.csv │ ├── pt-PT │ │ └── project_strings.csv │ ├── ro-RO │ │ └── project_strings.csv │ ├── ru-RU │ │ └── project_strings.csv │ ├── sl-SI │ │ └── project_strings.csv │ ├── sv-SE │ │ └── project_strings.csv │ ├── tr-TR │ │ └── project_strings.csv │ ├── zh-CN │ │ └── project_strings.csv │ └── zh-TW │ │ └── project_strings.csv ├── logo-big.xcf ├── sample_cancel_button.jpg └── stamp.png └── utils ├── __init__.py ├── build-sugar.sh ├── check-accesskeys.py ├── check-locale-integration.py ├── check-locales.pl ├── check-manifests.sh ├── fix-addon-ids.pl ├── import-localized.pl ├── locale-headers.pl ├── locale_file.py ├── make-manifest-locales.pl └── propagate_strings.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jikamens/send-later/HEAD/.gitignore -------------------------------------------------------------------------------- /.ignore-ids: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jikamens/send-later/HEAD/.ignore-ids -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jikamens/send-later/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jikamens/send-later/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jikamens/send-later/HEAD/README.md -------------------------------------------------------------------------------- /TESTS.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jikamens/send-later/HEAD/TESTS.txt -------------------------------------------------------------------------------- /TODO.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jikamens/send-later/HEAD/TODO.txt -------------------------------------------------------------------------------- /TRANSLATING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jikamens/send-later/HEAD/TRANSLATING.md -------------------------------------------------------------------------------- /chrome.manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jikamens/send-later/HEAD/chrome.manifest -------------------------------------------------------------------------------- /chrome/content/ask.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jikamens/send-later/HEAD/chrome/content/ask.js -------------------------------------------------------------------------------- /chrome/content/ask.xul: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jikamens/send-later/HEAD/chrome/content/ask.xul -------------------------------------------------------------------------------- /chrome/content/backgrounding.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jikamens/send-later/HEAD/chrome/content/backgrounding.js -------------------------------------------------------------------------------- /chrome/content/backgrounding.xul: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jikamens/send-later/HEAD/chrome/content/backgrounding.xul -------------------------------------------------------------------------------- /chrome/content/composeToolbar.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jikamens/send-later/HEAD/chrome/content/composeToolbar.js -------------------------------------------------------------------------------- /chrome/content/composeToolbar.xul: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jikamens/send-later/HEAD/chrome/content/composeToolbar.xul -------------------------------------------------------------------------------- /chrome/content/composing.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jikamens/send-later/HEAD/chrome/content/composing.js -------------------------------------------------------------------------------- /chrome/content/composing.xul: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jikamens/send-later/HEAD/chrome/content/composing.xul -------------------------------------------------------------------------------- /chrome/content/editor.css: -------------------------------------------------------------------------------- 1 | #code { 2 | font-family: monospace; 3 | } 4 | -------------------------------------------------------------------------------- /chrome/content/editor.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jikamens/send-later/HEAD/chrome/content/editor.js -------------------------------------------------------------------------------- /chrome/content/editor.xul: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jikamens/send-later/HEAD/chrome/content/editor.xul -------------------------------------------------------------------------------- /chrome/content/headerView.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jikamens/send-later/HEAD/chrome/content/headerView.js -------------------------------------------------------------------------------- /chrome/content/headerView.xul: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jikamens/send-later/HEAD/chrome/content/headerView.xul -------------------------------------------------------------------------------- /chrome/content/headerViewTB68.xul: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jikamens/send-later/HEAD/chrome/content/headerViewTB68.xul -------------------------------------------------------------------------------- /chrome/content/options.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jikamens/send-later/HEAD/chrome/content/options.js -------------------------------------------------------------------------------- /chrome/content/options.xul: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jikamens/send-later/HEAD/chrome/content/options.xul -------------------------------------------------------------------------------- /chrome/content/prompt.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jikamens/send-later/HEAD/chrome/content/prompt.js -------------------------------------------------------------------------------- /chrome/content/prompt.xul: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jikamens/send-later/HEAD/chrome/content/prompt.xul -------------------------------------------------------------------------------- /chrome/content/toolbarButton.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jikamens/send-later/HEAD/chrome/content/toolbarButton.png -------------------------------------------------------------------------------- /chrome/content/util.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jikamens/send-later/HEAD/chrome/content/util.js -------------------------------------------------------------------------------- /chrome/locale/bg-BG/ask.dtd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jikamens/send-later/HEAD/chrome/locale/bg-BG/ask.dtd -------------------------------------------------------------------------------- /chrome/locale/bg-BG/editor.dtd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jikamens/send-later/HEAD/chrome/locale/bg-BG/editor.dtd -------------------------------------------------------------------------------- /chrome/locale/bg-BG/headerView.dtd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jikamens/send-later/HEAD/chrome/locale/bg-BG/headerView.dtd -------------------------------------------------------------------------------- /chrome/locale/bg-BG/prefwindow.dtd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jikamens/send-later/HEAD/chrome/locale/bg-BG/prefwindow.dtd -------------------------------------------------------------------------------- /chrome/locale/bg-BG/prompt.dtd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jikamens/send-later/HEAD/chrome/locale/bg-BG/prompt.dtd -------------------------------------------------------------------------------- /chrome/locale/bg-BG/prompt.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jikamens/send-later/HEAD/chrome/locale/bg-BG/prompt.properties -------------------------------------------------------------------------------- /chrome/locale/bg-BG/sendlater3.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jikamens/send-later/HEAD/chrome/locale/bg-BG/sendlater3.properties -------------------------------------------------------------------------------- /chrome/locale/ca-ES/ask.dtd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jikamens/send-later/HEAD/chrome/locale/ca-ES/ask.dtd -------------------------------------------------------------------------------- /chrome/locale/ca-ES/editor.dtd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jikamens/send-later/HEAD/chrome/locale/ca-ES/editor.dtd -------------------------------------------------------------------------------- /chrome/locale/ca-ES/headerView.dtd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jikamens/send-later/HEAD/chrome/locale/ca-ES/headerView.dtd -------------------------------------------------------------------------------- /chrome/locale/ca-ES/prefwindow.dtd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jikamens/send-later/HEAD/chrome/locale/ca-ES/prefwindow.dtd -------------------------------------------------------------------------------- /chrome/locale/ca-ES/prompt.dtd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jikamens/send-later/HEAD/chrome/locale/ca-ES/prompt.dtd -------------------------------------------------------------------------------- /chrome/locale/ca-ES/prompt.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jikamens/send-later/HEAD/chrome/locale/ca-ES/prompt.properties -------------------------------------------------------------------------------- /chrome/locale/ca-ES/sendlater3.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jikamens/send-later/HEAD/chrome/locale/ca-ES/sendlater3.properties -------------------------------------------------------------------------------- /chrome/locale/cs-CZ/ask.dtd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jikamens/send-later/HEAD/chrome/locale/cs-CZ/ask.dtd -------------------------------------------------------------------------------- /chrome/locale/cs-CZ/editor.dtd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jikamens/send-later/HEAD/chrome/locale/cs-CZ/editor.dtd -------------------------------------------------------------------------------- /chrome/locale/cs-CZ/headerView.dtd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jikamens/send-later/HEAD/chrome/locale/cs-CZ/headerView.dtd -------------------------------------------------------------------------------- /chrome/locale/cs-CZ/prefwindow.dtd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jikamens/send-later/HEAD/chrome/locale/cs-CZ/prefwindow.dtd -------------------------------------------------------------------------------- /chrome/locale/cs-CZ/prompt.dtd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jikamens/send-later/HEAD/chrome/locale/cs-CZ/prompt.dtd -------------------------------------------------------------------------------- /chrome/locale/cs-CZ/prompt.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jikamens/send-later/HEAD/chrome/locale/cs-CZ/prompt.properties -------------------------------------------------------------------------------- /chrome/locale/cs-CZ/sendlater3.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jikamens/send-later/HEAD/chrome/locale/cs-CZ/sendlater3.properties -------------------------------------------------------------------------------- /chrome/locale/da-DK/ask.dtd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jikamens/send-later/HEAD/chrome/locale/da-DK/ask.dtd -------------------------------------------------------------------------------- /chrome/locale/da-DK/editor.dtd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jikamens/send-later/HEAD/chrome/locale/da-DK/editor.dtd -------------------------------------------------------------------------------- /chrome/locale/de-DE/ask.dtd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jikamens/send-later/HEAD/chrome/locale/de-DE/ask.dtd -------------------------------------------------------------------------------- /chrome/locale/de-DE/editor.dtd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jikamens/send-later/HEAD/chrome/locale/de-DE/editor.dtd -------------------------------------------------------------------------------- /chrome/locale/de-DE/headerView.dtd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jikamens/send-later/HEAD/chrome/locale/de-DE/headerView.dtd -------------------------------------------------------------------------------- /chrome/locale/de-DE/prefwindow.dtd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jikamens/send-later/HEAD/chrome/locale/de-DE/prefwindow.dtd -------------------------------------------------------------------------------- /chrome/locale/de-DE/prompt.dtd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jikamens/send-later/HEAD/chrome/locale/de-DE/prompt.dtd -------------------------------------------------------------------------------- /chrome/locale/de-DE/prompt.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jikamens/send-later/HEAD/chrome/locale/de-DE/prompt.properties -------------------------------------------------------------------------------- /chrome/locale/de-DE/sendlater3.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jikamens/send-later/HEAD/chrome/locale/de-DE/sendlater3.properties -------------------------------------------------------------------------------- /chrome/locale/el-GR/ask.dtd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jikamens/send-later/HEAD/chrome/locale/el-GR/ask.dtd -------------------------------------------------------------------------------- /chrome/locale/el-GR/editor.dtd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jikamens/send-later/HEAD/chrome/locale/el-GR/editor.dtd -------------------------------------------------------------------------------- /chrome/locale/el-GR/headerView.dtd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jikamens/send-later/HEAD/chrome/locale/el-GR/headerView.dtd -------------------------------------------------------------------------------- /chrome/locale/el-GR/prefwindow.dtd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jikamens/send-later/HEAD/chrome/locale/el-GR/prefwindow.dtd -------------------------------------------------------------------------------- /chrome/locale/el-GR/prompt.dtd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jikamens/send-later/HEAD/chrome/locale/el-GR/prompt.dtd -------------------------------------------------------------------------------- /chrome/locale/el-GR/prompt.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jikamens/send-later/HEAD/chrome/locale/el-GR/prompt.properties -------------------------------------------------------------------------------- /chrome/locale/el-GR/sendlater3.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jikamens/send-later/HEAD/chrome/locale/el-GR/sendlater3.properties -------------------------------------------------------------------------------- /chrome/locale/en-US/ask.dtd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jikamens/send-later/HEAD/chrome/locale/en-US/ask.dtd -------------------------------------------------------------------------------- /chrome/locale/en-US/editor.dtd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jikamens/send-later/HEAD/chrome/locale/en-US/editor.dtd -------------------------------------------------------------------------------- /chrome/locale/en-US/headerView.dtd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jikamens/send-later/HEAD/chrome/locale/en-US/headerView.dtd -------------------------------------------------------------------------------- /chrome/locale/en-US/prefwindow.dtd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jikamens/send-later/HEAD/chrome/locale/en-US/prefwindow.dtd -------------------------------------------------------------------------------- /chrome/locale/en-US/prompt.dtd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jikamens/send-later/HEAD/chrome/locale/en-US/prompt.dtd -------------------------------------------------------------------------------- /chrome/locale/en-US/prompt.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jikamens/send-later/HEAD/chrome/locale/en-US/prompt.properties -------------------------------------------------------------------------------- /chrome/locale/en-US/sendlater3.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jikamens/send-later/HEAD/chrome/locale/en-US/sendlater3.properties -------------------------------------------------------------------------------- /chrome/locale/es-ES/ask.dtd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jikamens/send-later/HEAD/chrome/locale/es-ES/ask.dtd -------------------------------------------------------------------------------- /chrome/locale/es-ES/editor.dtd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jikamens/send-later/HEAD/chrome/locale/es-ES/editor.dtd -------------------------------------------------------------------------------- /chrome/locale/es-ES/headerView.dtd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jikamens/send-later/HEAD/chrome/locale/es-ES/headerView.dtd -------------------------------------------------------------------------------- /chrome/locale/es-ES/prefwindow.dtd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jikamens/send-later/HEAD/chrome/locale/es-ES/prefwindow.dtd -------------------------------------------------------------------------------- /chrome/locale/es-ES/prompt.dtd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jikamens/send-later/HEAD/chrome/locale/es-ES/prompt.dtd -------------------------------------------------------------------------------- /chrome/locale/es-ES/prompt.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jikamens/send-later/HEAD/chrome/locale/es-ES/prompt.properties -------------------------------------------------------------------------------- /chrome/locale/es-ES/sendlater3.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jikamens/send-later/HEAD/chrome/locale/es-ES/sendlater3.properties -------------------------------------------------------------------------------- /chrome/locale/fi-FI/ask.dtd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jikamens/send-later/HEAD/chrome/locale/fi-FI/ask.dtd -------------------------------------------------------------------------------- /chrome/locale/fi-FI/editor.dtd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jikamens/send-later/HEAD/chrome/locale/fi-FI/editor.dtd -------------------------------------------------------------------------------- /chrome/locale/fi-FI/headerView.dtd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jikamens/send-later/HEAD/chrome/locale/fi-FI/headerView.dtd -------------------------------------------------------------------------------- /chrome/locale/fi-FI/prefwindow.dtd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jikamens/send-later/HEAD/chrome/locale/fi-FI/prefwindow.dtd -------------------------------------------------------------------------------- /chrome/locale/fi-FI/prompt.dtd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jikamens/send-later/HEAD/chrome/locale/fi-FI/prompt.dtd -------------------------------------------------------------------------------- /chrome/locale/fi-FI/prompt.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jikamens/send-later/HEAD/chrome/locale/fi-FI/prompt.properties -------------------------------------------------------------------------------- /chrome/locale/fi-FI/sendlater3.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jikamens/send-later/HEAD/chrome/locale/fi-FI/sendlater3.properties -------------------------------------------------------------------------------- /chrome/locale/fr-FR/ask.dtd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jikamens/send-later/HEAD/chrome/locale/fr-FR/ask.dtd -------------------------------------------------------------------------------- /chrome/locale/fr-FR/editor.dtd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jikamens/send-later/HEAD/chrome/locale/fr-FR/editor.dtd -------------------------------------------------------------------------------- /chrome/locale/fr-FR/headerView.dtd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jikamens/send-later/HEAD/chrome/locale/fr-FR/headerView.dtd -------------------------------------------------------------------------------- /chrome/locale/fr-FR/prefwindow.dtd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jikamens/send-later/HEAD/chrome/locale/fr-FR/prefwindow.dtd -------------------------------------------------------------------------------- /chrome/locale/fr-FR/prompt.dtd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jikamens/send-later/HEAD/chrome/locale/fr-FR/prompt.dtd -------------------------------------------------------------------------------- /chrome/locale/fr-FR/prompt.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jikamens/send-later/HEAD/chrome/locale/fr-FR/prompt.properties -------------------------------------------------------------------------------- /chrome/locale/fr-FR/sendlater3.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jikamens/send-later/HEAD/chrome/locale/fr-FR/sendlater3.properties -------------------------------------------------------------------------------- /chrome/locale/gl-ES/ask.dtd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jikamens/send-later/HEAD/chrome/locale/gl-ES/ask.dtd -------------------------------------------------------------------------------- /chrome/locale/gl-ES/editor.dtd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jikamens/send-later/HEAD/chrome/locale/gl-ES/editor.dtd -------------------------------------------------------------------------------- /chrome/locale/gl-ES/headerView.dtd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jikamens/send-later/HEAD/chrome/locale/gl-ES/headerView.dtd -------------------------------------------------------------------------------- /chrome/locale/gl-ES/prefwindow.dtd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jikamens/send-later/HEAD/chrome/locale/gl-ES/prefwindow.dtd -------------------------------------------------------------------------------- /chrome/locale/gl-ES/prompt.dtd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jikamens/send-later/HEAD/chrome/locale/gl-ES/prompt.dtd -------------------------------------------------------------------------------- /chrome/locale/gl-ES/prompt.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jikamens/send-later/HEAD/chrome/locale/gl-ES/prompt.properties -------------------------------------------------------------------------------- /chrome/locale/gl-ES/sendlater3.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jikamens/send-later/HEAD/chrome/locale/gl-ES/sendlater3.properties -------------------------------------------------------------------------------- /chrome/locale/he-IL/ask.dtd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jikamens/send-later/HEAD/chrome/locale/he-IL/ask.dtd -------------------------------------------------------------------------------- /chrome/locale/he-IL/editor.dtd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jikamens/send-later/HEAD/chrome/locale/he-IL/editor.dtd -------------------------------------------------------------------------------- /chrome/locale/he-IL/headerView.dtd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jikamens/send-later/HEAD/chrome/locale/he-IL/headerView.dtd -------------------------------------------------------------------------------- /chrome/locale/he-IL/prefwindow.dtd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jikamens/send-later/HEAD/chrome/locale/he-IL/prefwindow.dtd -------------------------------------------------------------------------------- /chrome/locale/he-IL/prompt.dtd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jikamens/send-later/HEAD/chrome/locale/he-IL/prompt.dtd -------------------------------------------------------------------------------- /chrome/locale/he-IL/prompt.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jikamens/send-later/HEAD/chrome/locale/he-IL/prompt.properties -------------------------------------------------------------------------------- /chrome/locale/he-IL/sendlater3.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jikamens/send-later/HEAD/chrome/locale/he-IL/sendlater3.properties -------------------------------------------------------------------------------- /chrome/locale/hu-HU/ask.dtd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jikamens/send-later/HEAD/chrome/locale/hu-HU/ask.dtd -------------------------------------------------------------------------------- /chrome/locale/hu-HU/editor.dtd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jikamens/send-later/HEAD/chrome/locale/hu-HU/editor.dtd -------------------------------------------------------------------------------- /chrome/locale/hu-HU/headerView.dtd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jikamens/send-later/HEAD/chrome/locale/hu-HU/headerView.dtd -------------------------------------------------------------------------------- /chrome/locale/hu-HU/prefwindow.dtd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jikamens/send-later/HEAD/chrome/locale/hu-HU/prefwindow.dtd -------------------------------------------------------------------------------- /chrome/locale/hu-HU/prompt.dtd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jikamens/send-later/HEAD/chrome/locale/hu-HU/prompt.dtd -------------------------------------------------------------------------------- /chrome/locale/hu-HU/prompt.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jikamens/send-later/HEAD/chrome/locale/hu-HU/prompt.properties -------------------------------------------------------------------------------- /chrome/locale/hu-HU/sendlater3.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jikamens/send-later/HEAD/chrome/locale/hu-HU/sendlater3.properties -------------------------------------------------------------------------------- /chrome/locale/hy-AM/ask.dtd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jikamens/send-later/HEAD/chrome/locale/hy-AM/ask.dtd -------------------------------------------------------------------------------- /chrome/locale/hy-AM/headerView.dtd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jikamens/send-later/HEAD/chrome/locale/hy-AM/headerView.dtd -------------------------------------------------------------------------------- /chrome/locale/hy-AM/prefwindow.dtd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jikamens/send-later/HEAD/chrome/locale/hy-AM/prefwindow.dtd -------------------------------------------------------------------------------- /chrome/locale/hy-AM/prompt.dtd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jikamens/send-later/HEAD/chrome/locale/hy-AM/prompt.dtd -------------------------------------------------------------------------------- /chrome/locale/hy-AM/prompt.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jikamens/send-later/HEAD/chrome/locale/hy-AM/prompt.properties -------------------------------------------------------------------------------- /chrome/locale/hy-AM/sendlater3.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jikamens/send-later/HEAD/chrome/locale/hy-AM/sendlater3.properties -------------------------------------------------------------------------------- /chrome/locale/it-IT/ask.dtd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jikamens/send-later/HEAD/chrome/locale/it-IT/ask.dtd -------------------------------------------------------------------------------- /chrome/locale/it-IT/editor.dtd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jikamens/send-later/HEAD/chrome/locale/it-IT/editor.dtd -------------------------------------------------------------------------------- /chrome/locale/it-IT/headerView.dtd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jikamens/send-later/HEAD/chrome/locale/it-IT/headerView.dtd -------------------------------------------------------------------------------- /chrome/locale/it-IT/prefwindow.dtd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jikamens/send-later/HEAD/chrome/locale/it-IT/prefwindow.dtd -------------------------------------------------------------------------------- /chrome/locale/it-IT/prompt.dtd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jikamens/send-later/HEAD/chrome/locale/it-IT/prompt.dtd -------------------------------------------------------------------------------- /chrome/locale/it-IT/prompt.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jikamens/send-later/HEAD/chrome/locale/it-IT/prompt.properties -------------------------------------------------------------------------------- /chrome/locale/it-IT/sendlater3.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jikamens/send-later/HEAD/chrome/locale/it-IT/sendlater3.properties -------------------------------------------------------------------------------- /chrome/locale/ja-JP/ask.dtd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jikamens/send-later/HEAD/chrome/locale/ja-JP/ask.dtd -------------------------------------------------------------------------------- /chrome/locale/ja-JP/editor.dtd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jikamens/send-later/HEAD/chrome/locale/ja-JP/editor.dtd -------------------------------------------------------------------------------- /chrome/locale/ja-JP/headerView.dtd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jikamens/send-later/HEAD/chrome/locale/ja-JP/headerView.dtd -------------------------------------------------------------------------------- /chrome/locale/ja-JP/prefwindow.dtd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jikamens/send-later/HEAD/chrome/locale/ja-JP/prefwindow.dtd -------------------------------------------------------------------------------- /chrome/locale/ja-JP/prompt.dtd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jikamens/send-later/HEAD/chrome/locale/ja-JP/prompt.dtd -------------------------------------------------------------------------------- /chrome/locale/ja-JP/prompt.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jikamens/send-later/HEAD/chrome/locale/ja-JP/prompt.properties -------------------------------------------------------------------------------- /chrome/locale/ja-JP/sendlater3.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jikamens/send-later/HEAD/chrome/locale/ja-JP/sendlater3.properties -------------------------------------------------------------------------------- /chrome/locale/nb-NO/ask.dtd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jikamens/send-later/HEAD/chrome/locale/nb-NO/ask.dtd -------------------------------------------------------------------------------- /chrome/locale/nb-NO/editor.dtd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jikamens/send-later/HEAD/chrome/locale/nb-NO/editor.dtd -------------------------------------------------------------------------------- /chrome/locale/nb-NO/headerView.dtd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jikamens/send-later/HEAD/chrome/locale/nb-NO/headerView.dtd -------------------------------------------------------------------------------- /chrome/locale/nb-NO/prefwindow.dtd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jikamens/send-later/HEAD/chrome/locale/nb-NO/prefwindow.dtd -------------------------------------------------------------------------------- /chrome/locale/nb-NO/prompt.dtd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jikamens/send-later/HEAD/chrome/locale/nb-NO/prompt.dtd -------------------------------------------------------------------------------- /chrome/locale/nb-NO/prompt.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jikamens/send-later/HEAD/chrome/locale/nb-NO/prompt.properties -------------------------------------------------------------------------------- /chrome/locale/nb-NO/sendlater3.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jikamens/send-later/HEAD/chrome/locale/nb-NO/sendlater3.properties -------------------------------------------------------------------------------- /chrome/locale/nl-NL/ask.dtd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jikamens/send-later/HEAD/chrome/locale/nl-NL/ask.dtd -------------------------------------------------------------------------------- /chrome/locale/nl-NL/editor.dtd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jikamens/send-later/HEAD/chrome/locale/nl-NL/editor.dtd -------------------------------------------------------------------------------- /chrome/locale/nl-NL/headerView.dtd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jikamens/send-later/HEAD/chrome/locale/nl-NL/headerView.dtd -------------------------------------------------------------------------------- /chrome/locale/nl-NL/prefwindow.dtd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jikamens/send-later/HEAD/chrome/locale/nl-NL/prefwindow.dtd -------------------------------------------------------------------------------- /chrome/locale/nl-NL/prompt.dtd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jikamens/send-later/HEAD/chrome/locale/nl-NL/prompt.dtd -------------------------------------------------------------------------------- /chrome/locale/nl-NL/prompt.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jikamens/send-later/HEAD/chrome/locale/nl-NL/prompt.properties -------------------------------------------------------------------------------- /chrome/locale/nl-NL/sendlater3.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jikamens/send-later/HEAD/chrome/locale/nl-NL/sendlater3.properties -------------------------------------------------------------------------------- /chrome/locale/pl-PL/ask.dtd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jikamens/send-later/HEAD/chrome/locale/pl-PL/ask.dtd -------------------------------------------------------------------------------- /chrome/locale/pl-PL/editor.dtd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jikamens/send-later/HEAD/chrome/locale/pl-PL/editor.dtd -------------------------------------------------------------------------------- /chrome/locale/pl-PL/headerView.dtd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jikamens/send-later/HEAD/chrome/locale/pl-PL/headerView.dtd -------------------------------------------------------------------------------- /chrome/locale/pl-PL/prefwindow.dtd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jikamens/send-later/HEAD/chrome/locale/pl-PL/prefwindow.dtd -------------------------------------------------------------------------------- /chrome/locale/pl-PL/prompt.dtd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jikamens/send-later/HEAD/chrome/locale/pl-PL/prompt.dtd -------------------------------------------------------------------------------- /chrome/locale/pl-PL/prompt.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jikamens/send-later/HEAD/chrome/locale/pl-PL/prompt.properties -------------------------------------------------------------------------------- /chrome/locale/pl-PL/sendlater3.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jikamens/send-later/HEAD/chrome/locale/pl-PL/sendlater3.properties -------------------------------------------------------------------------------- /chrome/locale/pt-BR/ask.dtd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jikamens/send-later/HEAD/chrome/locale/pt-BR/ask.dtd -------------------------------------------------------------------------------- /chrome/locale/pt-BR/editor.dtd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jikamens/send-later/HEAD/chrome/locale/pt-BR/editor.dtd -------------------------------------------------------------------------------- /chrome/locale/pt-BR/headerView.dtd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jikamens/send-later/HEAD/chrome/locale/pt-BR/headerView.dtd -------------------------------------------------------------------------------- /chrome/locale/pt-BR/prefwindow.dtd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jikamens/send-later/HEAD/chrome/locale/pt-BR/prefwindow.dtd -------------------------------------------------------------------------------- /chrome/locale/pt-BR/prompt.dtd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jikamens/send-later/HEAD/chrome/locale/pt-BR/prompt.dtd -------------------------------------------------------------------------------- /chrome/locale/pt-BR/prompt.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jikamens/send-later/HEAD/chrome/locale/pt-BR/prompt.properties -------------------------------------------------------------------------------- /chrome/locale/pt-BR/sendlater3.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jikamens/send-later/HEAD/chrome/locale/pt-BR/sendlater3.properties -------------------------------------------------------------------------------- /chrome/locale/pt-PT/ask.dtd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jikamens/send-later/HEAD/chrome/locale/pt-PT/ask.dtd -------------------------------------------------------------------------------- /chrome/locale/pt-PT/editor.dtd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jikamens/send-later/HEAD/chrome/locale/pt-PT/editor.dtd -------------------------------------------------------------------------------- /chrome/locale/pt-PT/headerView.dtd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jikamens/send-later/HEAD/chrome/locale/pt-PT/headerView.dtd -------------------------------------------------------------------------------- /chrome/locale/pt-PT/prefwindow.dtd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jikamens/send-later/HEAD/chrome/locale/pt-PT/prefwindow.dtd -------------------------------------------------------------------------------- /chrome/locale/pt-PT/prompt.dtd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jikamens/send-later/HEAD/chrome/locale/pt-PT/prompt.dtd -------------------------------------------------------------------------------- /chrome/locale/pt-PT/prompt.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jikamens/send-later/HEAD/chrome/locale/pt-PT/prompt.properties -------------------------------------------------------------------------------- /chrome/locale/pt-PT/sendlater3.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jikamens/send-later/HEAD/chrome/locale/pt-PT/sendlater3.properties -------------------------------------------------------------------------------- /chrome/locale/ro-RO/ask.dtd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jikamens/send-later/HEAD/chrome/locale/ro-RO/ask.dtd -------------------------------------------------------------------------------- /chrome/locale/ro-RO/editor.dtd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jikamens/send-later/HEAD/chrome/locale/ro-RO/editor.dtd -------------------------------------------------------------------------------- /chrome/locale/ro-RO/headerView.dtd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jikamens/send-later/HEAD/chrome/locale/ro-RO/headerView.dtd -------------------------------------------------------------------------------- /chrome/locale/ro-RO/prefwindow.dtd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jikamens/send-later/HEAD/chrome/locale/ro-RO/prefwindow.dtd -------------------------------------------------------------------------------- /chrome/locale/ro-RO/prompt.dtd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jikamens/send-later/HEAD/chrome/locale/ro-RO/prompt.dtd -------------------------------------------------------------------------------- /chrome/locale/ro-RO/prompt.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jikamens/send-later/HEAD/chrome/locale/ro-RO/prompt.properties -------------------------------------------------------------------------------- /chrome/locale/ro-RO/sendlater3.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jikamens/send-later/HEAD/chrome/locale/ro-RO/sendlater3.properties -------------------------------------------------------------------------------- /chrome/locale/ru-RU/ask.dtd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jikamens/send-later/HEAD/chrome/locale/ru-RU/ask.dtd -------------------------------------------------------------------------------- /chrome/locale/ru-RU/editor.dtd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jikamens/send-later/HEAD/chrome/locale/ru-RU/editor.dtd -------------------------------------------------------------------------------- /chrome/locale/ru-RU/headerView.dtd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jikamens/send-later/HEAD/chrome/locale/ru-RU/headerView.dtd -------------------------------------------------------------------------------- /chrome/locale/ru-RU/prefwindow.dtd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jikamens/send-later/HEAD/chrome/locale/ru-RU/prefwindow.dtd -------------------------------------------------------------------------------- /chrome/locale/ru-RU/prompt.dtd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jikamens/send-later/HEAD/chrome/locale/ru-RU/prompt.dtd -------------------------------------------------------------------------------- /chrome/locale/ru-RU/prompt.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jikamens/send-later/HEAD/chrome/locale/ru-RU/prompt.properties -------------------------------------------------------------------------------- /chrome/locale/ru-RU/sendlater3.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jikamens/send-later/HEAD/chrome/locale/ru-RU/sendlater3.properties -------------------------------------------------------------------------------- /chrome/locale/sv-SE/ask.dtd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jikamens/send-later/HEAD/chrome/locale/sv-SE/ask.dtd -------------------------------------------------------------------------------- /chrome/locale/sv-SE/editor.dtd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jikamens/send-later/HEAD/chrome/locale/sv-SE/editor.dtd -------------------------------------------------------------------------------- /chrome/locale/sv-SE/headerView.dtd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jikamens/send-later/HEAD/chrome/locale/sv-SE/headerView.dtd -------------------------------------------------------------------------------- /chrome/locale/sv-SE/prefwindow.dtd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jikamens/send-later/HEAD/chrome/locale/sv-SE/prefwindow.dtd -------------------------------------------------------------------------------- /chrome/locale/sv-SE/prompt.dtd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jikamens/send-later/HEAD/chrome/locale/sv-SE/prompt.dtd -------------------------------------------------------------------------------- /chrome/locale/sv-SE/prompt.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jikamens/send-later/HEAD/chrome/locale/sv-SE/prompt.properties -------------------------------------------------------------------------------- /chrome/locale/sv-SE/sendlater3.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jikamens/send-later/HEAD/chrome/locale/sv-SE/sendlater3.properties -------------------------------------------------------------------------------- /chrome/locale/tr-TR/ask.dtd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jikamens/send-later/HEAD/chrome/locale/tr-TR/ask.dtd -------------------------------------------------------------------------------- /chrome/locale/tr-TR/editor.dtd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jikamens/send-later/HEAD/chrome/locale/tr-TR/editor.dtd -------------------------------------------------------------------------------- /chrome/locale/tr-TR/headerView.dtd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jikamens/send-later/HEAD/chrome/locale/tr-TR/headerView.dtd -------------------------------------------------------------------------------- /chrome/locale/tr-TR/prompt.dtd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jikamens/send-later/HEAD/chrome/locale/tr-TR/prompt.dtd -------------------------------------------------------------------------------- /chrome/locale/zh-CN/ask.dtd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jikamens/send-later/HEAD/chrome/locale/zh-CN/ask.dtd -------------------------------------------------------------------------------- /chrome/locale/zh-CN/editor.dtd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jikamens/send-later/HEAD/chrome/locale/zh-CN/editor.dtd -------------------------------------------------------------------------------- /chrome/locale/zh-CN/headerView.dtd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jikamens/send-later/HEAD/chrome/locale/zh-CN/headerView.dtd -------------------------------------------------------------------------------- /chrome/locale/zh-CN/prefwindow.dtd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jikamens/send-later/HEAD/chrome/locale/zh-CN/prefwindow.dtd -------------------------------------------------------------------------------- /chrome/locale/zh-CN/prompt.dtd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jikamens/send-later/HEAD/chrome/locale/zh-CN/prompt.dtd -------------------------------------------------------------------------------- /chrome/locale/zh-CN/prompt.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jikamens/send-later/HEAD/chrome/locale/zh-CN/prompt.properties -------------------------------------------------------------------------------- /chrome/locale/zh-CN/sendlater3.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jikamens/send-later/HEAD/chrome/locale/zh-CN/sendlater3.properties -------------------------------------------------------------------------------- /chrome/locale/zh-TW/ask.dtd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jikamens/send-later/HEAD/chrome/locale/zh-TW/ask.dtd -------------------------------------------------------------------------------- /chrome/locale/zh-TW/editor.dtd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jikamens/send-later/HEAD/chrome/locale/zh-TW/editor.dtd -------------------------------------------------------------------------------- /chrome/locale/zh-TW/headerView.dtd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jikamens/send-later/HEAD/chrome/locale/zh-TW/headerView.dtd -------------------------------------------------------------------------------- /chrome/locale/zh-TW/prefwindow.dtd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jikamens/send-later/HEAD/chrome/locale/zh-TW/prefwindow.dtd -------------------------------------------------------------------------------- /chrome/locale/zh-TW/prompt.dtd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jikamens/send-later/HEAD/chrome/locale/zh-TW/prompt.dtd -------------------------------------------------------------------------------- /chrome/locale/zh-TW/prompt.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jikamens/send-later/HEAD/chrome/locale/zh-TW/prompt.properties -------------------------------------------------------------------------------- /chrome/locale/zh-TW/sendlater3.properties: -------------------------------------------------------------------------------- 1 | # -*- coding: utf-8 -*- 2 | extensions.sendlater3@kamens.us.description=用來預定傳送信件的時間寄信 3 | -------------------------------------------------------------------------------- /chrome/resource/dateparse.jsm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jikamens/send-later/HEAD/chrome/resource/dateparse.jsm -------------------------------------------------------------------------------- /chrome/resource/defaultPreferencesLoader.jsm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jikamens/send-later/HEAD/chrome/resource/defaultPreferencesLoader.jsm -------------------------------------------------------------------------------- /chrome/resource/logging.jsm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jikamens/send-later/HEAD/chrome/resource/logging.jsm -------------------------------------------------------------------------------- /chrome/resource/sugar.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jikamens/send-later/HEAD/chrome/resource/sugar.js -------------------------------------------------------------------------------- /chrome/resource/ufuncs.jsm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jikamens/send-later/HEAD/chrome/resource/ufuncs.jsm -------------------------------------------------------------------------------- /contrib/scheduling-functions/DaysBeforeNthWeekday.slj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jikamens/send-later/HEAD/contrib/scheduling-functions/DaysBeforeNthWeekday.slj -------------------------------------------------------------------------------- /contrib/scheduling-functions/FirstFourDaysOfEachMonth.slj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jikamens/send-later/HEAD/contrib/scheduling-functions/FirstFourDaysOfEachMonth.slj -------------------------------------------------------------------------------- /contrib/scheduling-functions/NextChol.slj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jikamens/send-later/HEAD/contrib/scheduling-functions/NextChol.slj -------------------------------------------------------------------------------- /contrib/scheduling-functions/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jikamens/send-later/HEAD/contrib/scheduling-functions/README.md -------------------------------------------------------------------------------- /crowdin.yaml.template: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jikamens/send-later/HEAD/crowdin.yaml.template -------------------------------------------------------------------------------- /defaults/preferences/sendlater3.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jikamens/send-later/HEAD/defaults/preferences/sendlater3.js -------------------------------------------------------------------------------- /exclude-manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jikamens/send-later/HEAD/exclude-manifest -------------------------------------------------------------------------------- /icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jikamens/send-later/HEAD/icon.png -------------------------------------------------------------------------------- /include-manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jikamens/send-later/HEAD/include-manifest -------------------------------------------------------------------------------- /manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jikamens/send-later/HEAD/manifest.json -------------------------------------------------------------------------------- /src/Green_arrow_right.svg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jikamens/send-later/HEAD/src/Green_arrow_right.svg.png -------------------------------------------------------------------------------- /src/clock.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jikamens/send-later/HEAD/src/clock.jpg -------------------------------------------------------------------------------- /src/l10n/bg-BG/project_strings.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jikamens/send-later/HEAD/src/l10n/bg-BG/project_strings.csv -------------------------------------------------------------------------------- /src/l10n/ca-ES/project_strings.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jikamens/send-later/HEAD/src/l10n/ca-ES/project_strings.csv -------------------------------------------------------------------------------- /src/l10n/cs-CZ/project_strings.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jikamens/send-later/HEAD/src/l10n/cs-CZ/project_strings.csv -------------------------------------------------------------------------------- /src/l10n/da-DK/project_strings.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jikamens/send-later/HEAD/src/l10n/da-DK/project_strings.csv -------------------------------------------------------------------------------- /src/l10n/de-DE/project_strings.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jikamens/send-later/HEAD/src/l10n/de-DE/project_strings.csv -------------------------------------------------------------------------------- /src/l10n/el-GR/project_strings.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jikamens/send-later/HEAD/src/l10n/el-GR/project_strings.csv -------------------------------------------------------------------------------- /src/l10n/en-US/project_strings.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jikamens/send-later/HEAD/src/l10n/en-US/project_strings.csv -------------------------------------------------------------------------------- /src/l10n/es-ES/project_strings.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jikamens/send-later/HEAD/src/l10n/es-ES/project_strings.csv -------------------------------------------------------------------------------- /src/l10n/fi-FI/project_strings.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jikamens/send-later/HEAD/src/l10n/fi-FI/project_strings.csv -------------------------------------------------------------------------------- /src/l10n/fr-FR/project_strings.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jikamens/send-later/HEAD/src/l10n/fr-FR/project_strings.csv -------------------------------------------------------------------------------- /src/l10n/gl-ES/project_strings.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jikamens/send-later/HEAD/src/l10n/gl-ES/project_strings.csv -------------------------------------------------------------------------------- /src/l10n/he-IL/project_strings.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jikamens/send-later/HEAD/src/l10n/he-IL/project_strings.csv -------------------------------------------------------------------------------- /src/l10n/hu-HU/project_strings.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jikamens/send-later/HEAD/src/l10n/hu-HU/project_strings.csv -------------------------------------------------------------------------------- /src/l10n/hy-AM/project_strings.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jikamens/send-later/HEAD/src/l10n/hy-AM/project_strings.csv -------------------------------------------------------------------------------- /src/l10n/it-IT/project_strings.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jikamens/send-later/HEAD/src/l10n/it-IT/project_strings.csv -------------------------------------------------------------------------------- /src/l10n/ja-JP/project_strings.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jikamens/send-later/HEAD/src/l10n/ja-JP/project_strings.csv -------------------------------------------------------------------------------- /src/l10n/nb-NO/project_strings.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jikamens/send-later/HEAD/src/l10n/nb-NO/project_strings.csv -------------------------------------------------------------------------------- /src/l10n/nl-NL/project_strings.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jikamens/send-later/HEAD/src/l10n/nl-NL/project_strings.csv -------------------------------------------------------------------------------- /src/l10n/pl-PL/project_strings.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jikamens/send-later/HEAD/src/l10n/pl-PL/project_strings.csv -------------------------------------------------------------------------------- /src/l10n/pt-BR/project_strings.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jikamens/send-later/HEAD/src/l10n/pt-BR/project_strings.csv -------------------------------------------------------------------------------- /src/l10n/pt-PT/project_strings.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jikamens/send-later/HEAD/src/l10n/pt-PT/project_strings.csv -------------------------------------------------------------------------------- /src/l10n/ro-RO/project_strings.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jikamens/send-later/HEAD/src/l10n/ro-RO/project_strings.csv -------------------------------------------------------------------------------- /src/l10n/ru-RU/project_strings.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jikamens/send-later/HEAD/src/l10n/ru-RU/project_strings.csv -------------------------------------------------------------------------------- /src/l10n/sl-SI/project_strings.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jikamens/send-later/HEAD/src/l10n/sl-SI/project_strings.csv -------------------------------------------------------------------------------- /src/l10n/sv-SE/project_strings.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jikamens/send-later/HEAD/src/l10n/sv-SE/project_strings.csv -------------------------------------------------------------------------------- /src/l10n/tr-TR/project_strings.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jikamens/send-later/HEAD/src/l10n/tr-TR/project_strings.csv -------------------------------------------------------------------------------- /src/l10n/zh-CN/project_strings.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jikamens/send-later/HEAD/src/l10n/zh-CN/project_strings.csv -------------------------------------------------------------------------------- /src/l10n/zh-TW/project_strings.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jikamens/send-later/HEAD/src/l10n/zh-TW/project_strings.csv -------------------------------------------------------------------------------- /src/logo-big.xcf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jikamens/send-later/HEAD/src/logo-big.xcf -------------------------------------------------------------------------------- /src/sample_cancel_button.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jikamens/send-later/HEAD/src/sample_cancel_button.jpg -------------------------------------------------------------------------------- /src/stamp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jikamens/send-later/HEAD/src/stamp.png -------------------------------------------------------------------------------- /utils/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /utils/build-sugar.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jikamens/send-later/HEAD/utils/build-sugar.sh -------------------------------------------------------------------------------- /utils/check-accesskeys.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jikamens/send-later/HEAD/utils/check-accesskeys.py -------------------------------------------------------------------------------- /utils/check-locale-integration.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jikamens/send-later/HEAD/utils/check-locale-integration.py -------------------------------------------------------------------------------- /utils/check-locales.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jikamens/send-later/HEAD/utils/check-locales.pl -------------------------------------------------------------------------------- /utils/check-manifests.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jikamens/send-later/HEAD/utils/check-manifests.sh -------------------------------------------------------------------------------- /utils/fix-addon-ids.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jikamens/send-later/HEAD/utils/fix-addon-ids.pl -------------------------------------------------------------------------------- /utils/import-localized.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jikamens/send-later/HEAD/utils/import-localized.pl -------------------------------------------------------------------------------- /utils/locale-headers.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jikamens/send-later/HEAD/utils/locale-headers.pl -------------------------------------------------------------------------------- /utils/locale_file.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jikamens/send-later/HEAD/utils/locale_file.py -------------------------------------------------------------------------------- /utils/make-manifest-locales.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jikamens/send-later/HEAD/utils/make-manifest-locales.pl -------------------------------------------------------------------------------- /utils/propagate_strings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jikamens/send-later/HEAD/utils/propagate_strings.py --------------------------------------------------------------------------------