8 Commits

Author SHA1 Message Date
76992bd4f4 Version 4.0.11 2019-09-10 09:37:00 +02:00
dccd530475 Typo 2019-09-10 09:33:32 +02:00
f1fa01a0eb Add ja to locale list 2019-09-10 09:30:59 +02:00
7949142ef6 Japanese translation (#83) 2019-09-10 09:29:12 +02:00
af1da8fc0a Fix maximized state being refused with dims
Closes #84
2019-09-10 09:23:43 +02:00
39f4237cde Update Indonesian translation (#80) 2019-09-09 18:07:07 +02:00
b676ed74cd Update locale list 2019-09-08 21:30:21 +02:00
bf474877ca Add Italian translation (#49) 2019-09-08 21:27:42 +02:00
6 changed files with 2376 additions and 21 deletions

View File

@ -5,13 +5,14 @@
"en": "English (US) [en]",
"es": "Español (España) [es]",
"et": "Eesti Keel [et]",
"fr": "Français (FR) [fr]",
"fr": "Français [fr]",
"hu": "Magyar (HU) [hu]",
"id": "Bahasa Indonesia [id]",
"ja": "日本語 (JP) [ja]",
"ko": "한국어 [ko]",
"lt": "Lietuvių [lt]",
"nl": "Nederlands [nl]",
"pl": "Polski (PL) [pl]",
"pl": "Polski [pl]",
"pt": "Português (Brasil) [pt]",
"ru": "Русский [ru]",
"zh_CN": "简体中文 [zh_CN]",

View File

@ -7,6 +7,18 @@
"message": "id",
"description": "Language code the locale will use, e.g. de or en-GB or pt-BR"
},
"renamer_tags": {
"message": "Penanda Mask Penamaan",
"description": "Mask text; see mask button"
},
"renmask": {
"message": "Mask penamaan",
"description": "Renaming mask (long)"
},
"set_mask": {
"message": "Set Mask Penamaan",
"description": "Menu text; select window"
},
"addpaused": {
"message": "Tambahkan dalam kondisi terpause",
"description": "Action: Add paused"
@ -280,15 +292,15 @@
"description": "Message box title"
},
"filter_expression": {
"message": "Ekspres-Filter",
"message": "Ekspresi",
"description": "Message box label"
},
"filter_label": {
"message": "Label-Filter",
"message": "Label",
"description": "Message box label"
},
"filter_types": {
"message": "Tipe-Filter",
"message": "Tipe",
"description": "Message box label"
},
"filter_type_link": {
@ -320,7 +332,7 @@
"description": "Menu text"
},
"limited_to": {
"message": "Terbatas ke",
"message": "Batasi ke",
"description": "Label text; used in prefs/network"
},
"links": {
@ -362,11 +374,11 @@
"description": "Status text; Used in the mask column, select window"
},
"missing": {
"message": "Tidak Ada",
"message": "Hilang",
"description": "Status text in manager"
},
"move_bottom": {
"message": "Bawah",
"message": "Ke Bawah",
"description": "Action for moving a download to the bottom"
},
"move_down": {
@ -374,7 +386,7 @@
"description": "Action for moving a download down"
},
"move_top": {
"message": "Atas",
"message": "Ke Atas",
"description": "Action for moving a download to the top"
},
"move_up": {
@ -560,7 +572,7 @@
"description": "Menu text"
},
"remove_batch_downloads_question": {
"message": "Hapus semua unduhan dari kumpulan yang sama dengan unduhan terpilih?",
"message": "Hapus semua unduhan dari batch yang sama dengan unduhan terpilih?",
"description": "Messagebox text"
},
"remove_complete_downloads": {
@ -600,7 +612,7 @@
}
},
"remove_domain_downloads": {
"message": "Hapus Domain Ini",
"message": "Hapus Unduhan Dari Domain Ini",
"description": "Menu text"
},
"remove_domain_downloads_question": {
@ -630,7 +642,7 @@
"description": "Messagebox text"
},
"remove_failed_downloads": {
"message": "Gagal Menghapus",
"message": "Hapus Unduhan Gagal",
"description": "Menu text"
},
"remove_failed_downloads_question": {
@ -648,11 +660,11 @@
}
},
"remove_missing": {
"message": "Hapus Unduhan Yang Tidak Ada",
"message": "Hapus Unduhan Yang Hilang",
"description": "Menu text"
},
"remove_missing_downloads_question": {
"message": "Hapus semua unduhan yang tidak ada?",
"message": "Hapus semua unduhan yang hilang?",
"description": "Messagebox text"
},
"remove_paused_downloads": {
@ -664,7 +676,7 @@
"description": "Messagebox text"
},
"remove_selected_complete_downloads": {
"message": "Hapus Yang Selesai Di Pilihan",
"message": "Hapus Yang Selesai Dari Unduhan Terpilih",
"description": "Menu text"
},
"remove_selected_complete_downloads_question": {

1170
_locales/it/messages.json Normal file

File diff suppressed because it is too large Load Diff

1170
_locales/ja/messages.json Normal file

File diff suppressed because it is too large Load Diff

View File

@ -55,13 +55,15 @@ export class WindowStateTracker {
getOptions(options: any) {
const result = Object.assign(options, {
width: this.width,
height: this.height,
state: this.state,
});
if (this.top >= 0) {
result.top = this.top;
result.left = this.left;
if (result.state !== "maximized") {
result.width = this.width;
result.height = this.height;
if (this.top >= 0) {
result.top = this.top;
result.left = this.left;
}
}
return result;
}

View File

@ -1,7 +1,7 @@
{
"manifest_version": 2,
"name": "DownThemAll!",
"version": "4.0.10",
"version": "4.0.11",
"description": "__MSG_extensionDescription__",
"homepage_url": "https://downthemall.org/",