From cd67e0bee76237551154516e9d1af4024097af79 Mon Sep 17 00:00:00 2001 From: titanism <101466223+titanism@users.noreply.github.com> Date: Fri, 30 Aug 2024 16:49:58 -0500 Subject: [PATCH] fix: removed default value for quota --- app/models/aliases.js | 1 - app/models/domains.js | 1 - .../my-account/domains/aliases/_table.pug | 55 +++++++++---------- locales/ar.json | 3 +- locales/cs.json | 3 +- locales/da.json | 3 +- locales/de.json | 3 +- locales/en.json | 3 +- locales/es.json | 3 +- locales/fi.json | 3 +- locales/fr.json | 3 +- locales/he.json | 3 +- locales/hu.json | 3 +- locales/id.json | 3 +- locales/it.json | 3 +- locales/ja.json | 3 +- locales/ko.json | 3 +- locales/nl.json | 3 +- locales/no.json | 3 +- locales/pl.json | 3 +- locales/pt.json | 3 +- locales/ru.json | 3 +- locales/sv.json | 3 +- locales/th.json | 3 +- locales/tr.json | 3 +- locales/uk.json | 3 +- locales/vi.json | 3 +- locales/zh.json | 3 +- 28 files changed, 77 insertions(+), 55 deletions(-) diff --git a/app/models/aliases.js b/app/models/aliases.js index 852381f14e..6b0e008f7e 100644 --- a/app/models/aliases.js +++ b/app/models/aliases.js @@ -95,7 +95,6 @@ const Aliases = new mongoose.Schema({ // alias specific max quota (set by admins only) max_quota: { type: Number, - default: config.maxQuotaPerAlias, min: 0, // // NOTE: hard-coded max of 100 GB (safeguard) diff --git a/app/models/domains.js b/app/models/domains.js index b5fa7151b4..7fe569ed96 100644 --- a/app/models/domains.js +++ b/app/models/domains.js @@ -225,7 +225,6 @@ const Domains = new mongoose.Schema({ // domain specific max quota per alias max_quota_per_alias: { type: Number, - default: config.maxQuotaPerAlias, min: 0, // // NOTE: hard-coded max of 100 GB (safeguard) diff --git a/app/views/my-account/domains/aliases/_table.pug b/app/views/my-account/domains/aliases/_table.pug index 74575cf152..c5d7f9ec9e 100644 --- a/app/views/my-account/domains/aliases/_table.pug +++ b/app/views/my-account/domains/aliases/_table.pug @@ -22,39 +22,38 @@ mixin renderProgressBar(domain, alias, isMobile = false) else if aliasPercentage >= 60 - aliasProgressClass = "bg-warning"; - aliasTextClass = "text-warning"; - if aliasPercentage > 0 - .progress.bg-light.border.border-dark - //- render alias portion - .progress-bar.min-width-25( - class=aliasProgressClass, - data-width=`${aliasPercentage}%`, - aria-valuenow=aliasPercentage, + .progress.bg-light.border.border-dark + //- render alias portion + .progress-bar.min-width-25( + class=aliasProgressClass, + data-width=`${aliasPercentage || 1}%`, + aria-valuenow=aliasPercentage || 1, + aria-valuemin=0, + aria-valuemax=100, + data-toggle="tooltip", + data-title=t("Storage used by this alias"), + data-placement="bottom", + role="button" + )= `${aliasPercentage === 0 ? "<1%" : aliasPercentage}%` + //- render remaining portion + if aliasPercentage !== 100 + .progress-bar.bg-success.min-width-25( + data-width=`${100 - (aliasPercentage || 1)}%`, + aria-valuenow=100 - (aliasPercentage || 1), aria-valuemin=0, aria-valuemax=100, data-toggle="tooltip", - data-title=t("Storage used by this alias"), + data-title=t("Available storage"), data-placement="bottom", role="button" - )= `${aliasPercentage}%` - //- render remaining portion - if aliasPercentage !== 100 - .progress-bar.bg-success.min-width-25( - data-width=`${100 - aliasPercentage}%`, - aria-valuenow=100 - aliasPercentage, - aria-valuemin=0, - aria-valuemax=100, - data-toggle="tooltip", - data-title=t("Available storage"), - data-placement="bottom", - role="button" - )= `${100 - aliasPercentage}%` - ul.list-unstyled.small.mt-1 - li(class=aliasTextClass) - = bytes(alias.storage_used) - = " / " - = bytes(alias.max_quota) - = " " - = t("alias quota") + )= `${100 - aliasPercentage}%` + ul.list-unstyled.small.mt-1 + li(class=aliasTextClass) + = bytes(alias.storage_used) + = " / " + = bytes(alias.max_quota) + = " " + = t("alias quota") //- render normal progress bar - let percentage = Math.round((domain.storage_used / domain.storage_quota) * 100); diff --git a/locales/ar.json b/locales/ar.json index 0f65c8a280..377d06f0e9 100644 --- a/locales/ar.json +++ b/locales/ar.json @@ -10317,5 +10317,6 @@ "Domain admins can update the storage quota for this alias. Leave blank and hit save to reset it to the current domain's maximum storage quota of %s. Enter a human-friendly string such as \"1GB\" – note that we use bytes to parse the value to a Number. If you would like to update the max storage quota across all aliases for this domain, then go to the domain's Settings page.": "يمكن لمسؤولي المجال تحديث حصة التخزين لهذا الاسم المستعار. اتركه فارغًا واضغط على حفظ لإعادة تعيينه إلى الحد الأقصى لحصة التخزين للمجال الحالي بنسبة %s . أدخل سلسلة سهلة الفهم مثل "1 جيجابايت" - لاحظ أننا نستخدم bytes لتحليل القيمة إلى رقم. إذا كنت ترغب في تحديث الحد الأقصى لحصة التخزين عبر جميع الأسماء المستعارة لهذا المجال، فانتقل إلى صفحة إعدادات المجال.", "The quota for %s of %s exceeds the domain's maximum quota of %s.": "حصة %s من %s تتجاوز الحد الأقصى لحصة النطاق وهي %s .", "The quota for %s of %s exceeds the maximum quota of from admins of the domain.": "الحصة المخصصة لـ %s من %s تتجاوز الحصة القصوى المخصصة لـ من مسؤولي المجال.", - "Bytes were invalid, must be a string such as \"1 GB\" or \"100 MB\".": "كانت البايتات غير صالحة، يجب أن تكون سلسلة مثل \"1 جيجابايت\" أو \"100 ميجابايت\"." + "Bytes were invalid, must be a string such as \"1 GB\" or \"100 MB\".": "كانت البايتات غير صالحة، يجب أن تكون سلسلة مثل \"1 جيجابايت\" أو \"100 ميجابايت\".", + "alias quota": "حصة الاسم المستعار" } \ No newline at end of file diff --git a/locales/cs.json b/locales/cs.json index 95c5c81856..edefdc5556 100644 --- a/locales/cs.json +++ b/locales/cs.json @@ -10317,5 +10317,6 @@ "Domain admins can update the storage quota for this alias. Leave blank and hit save to reset it to the current domain's maximum storage quota of %s. Enter a human-friendly string such as \"1GB\" – note that we use bytes to parse the value to a Number. If you would like to update the max storage quota across all aliases for this domain, then go to the domain's Settings page.": "Správci domény mohou aktualizovat kvótu úložiště pro tento alias. Ponechte prázdné a stisknutím tlačítka Uložit jej resetujte na maximální kvótu úložiště aktuální domény %s . Zadejte řetězec vhodný pro člověka, například „1 GB“ – všimněte si, že k analýze hodnoty na číslo používáme bytes . Pokud byste chtěli aktualizovat maximální kvótu úložiště pro všechny aliasy pro tuto doménu, přejděte na stránku Nastavení domény.", "The quota for %s of %s exceeds the domain's maximum quota of %s.": "Kvóta pro %s z %s překračuje maximální kvótu domény %s .", "The quota for %s of %s exceeds the maximum quota of from admins of the domain.": "Kvóta pro %s z %s překračuje maximální kvótu od administrátorů domény.", - "Bytes were invalid, must be a string such as \"1 GB\" or \"100 MB\".": "Bajty byly neplatné, musí to být řetězec, například „1 GB“ nebo „100 MB“." + "Bytes were invalid, must be a string such as \"1 GB\" or \"100 MB\".": "Bajty byly neplatné, musí to být řetězec, například „1 GB“ nebo „100 MB“.", + "alias quota": "alias kvóta" } \ No newline at end of file diff --git a/locales/da.json b/locales/da.json index f4f558a810..da9d14cbb8 100644 --- a/locales/da.json +++ b/locales/da.json @@ -7305,5 +7305,6 @@ "Verified": "Verificeret", "The quota for %s of %s exceeds the domain's maximum quota of %s.": "Kvoten for %s af %s overstiger domænets maksimale kvote på %s .", "The quota for %s of %s exceeds the maximum quota of from admins of the domain.": "Kvoten for %s af %s overstiger den maksimale kvote på fra domænets administratorer.", - "Bytes were invalid, must be a string such as \"1 GB\" or \"100 MB\".": "Bytes var ugyldige, skal være en streng såsom \"1 GB\" eller \"100 MB\"." + "Bytes were invalid, must be a string such as \"1 GB\" or \"100 MB\".": "Bytes var ugyldige, skal være en streng såsom \"1 GB\" eller \"100 MB\".", + "alias quota": "alias kvote" } \ No newline at end of file diff --git a/locales/de.json b/locales/de.json index 3307bf79e5..3328adce08 100644 --- a/locales/de.json +++ b/locales/de.json @@ -9356,5 +9356,6 @@ "Domain admins can update the storage quota for this alias. Leave blank and hit save to reset it to the current domain's maximum storage quota of %s. Enter a human-friendly string such as \"1GB\" – note that we use bytes to parse the value to a Number. If you would like to update the max storage quota across all aliases for this domain, then go to the domain's Settings page.": "Domänenadministratoren können das Speicherkontingent für diesen Alias aktualisieren. Lassen Sie das Feld leer und klicken Sie auf „Speichern“, um es auf das maximale Speicherkontingent der aktuellen Domäne von %s zurückzusetzen. Geben Sie eine benutzerfreundliche Zeichenfolge wie „1 GB“ ein. Beachten Sie, dass wir bytes verwenden, um den Wert in eine Zahl umzuwandeln. Wenn Sie das maximale Speicherkontingent für alle Aliase dieser Domäne aktualisieren möchten, wechseln Sie zur Seite „Einstellungen“ der Domäne.", "The quota for %s of %s exceeds the domain's maximum quota of %s.": "Das Kontingent für %s von %s überschreitet das maximale Kontingent der Domäne von %s .", "The quota for %s of %s exceeds the maximum quota of from admins of the domain.": "Das Kontingent für %s von %s überschreitet das maximale Kontingent von von Admins der Domäne.", - "Bytes were invalid, must be a string such as \"1 GB\" or \"100 MB\".": "Die Bytes waren ungültig. Es muss sich um eine Zeichenfolge wie „1 GB“ oder „100 MB“ handeln." + "Bytes were invalid, must be a string such as \"1 GB\" or \"100 MB\".": "Die Bytes waren ungültig. Es muss sich um eine Zeichenfolge wie „1 GB“ oder „100 MB“ handeln.", + "alias quota": "Alias-Kontingent" } \ No newline at end of file diff --git a/locales/en.json b/locales/en.json index 01eb7d4d38..f6290acfbc 100644 --- a/locales/en.json +++ b/locales/en.json @@ -6698,5 +6698,6 @@ "Domain admins can update the maximum storage quota across all aliases. Enter a human-friendly string such as \"1GB\" – note that we use bytes to parse the value to a Number. Domain admins can set maximum storage quota limits on a per alias basis by editing the alias directly.": "Domain admins can update the maximum storage quota across all aliases. Enter a human-friendly string such as \"1GB\" – note that we use bytes to parse the value to a Number. Domain admins can set maximum storage quota limits on a per alias basis by editing the alias directly.", "Storage Max Quota": "Storage Max Quota", "Domain admins can update the storage quota for this alias. Leave blank and hit save to reset it to the current domain's maximum storage quota of %s. Enter a human-friendly string such as \"1GB\" – note that we use bytes to parse the value to a Number. If you would like to update the max storage quota across all aliases for this domain, then go to the domain's Settings page.": "Domain admins can update the storage quota for this alias. Leave blank and hit save to reset it to the current domain's maximum storage quota of %s. Enter a human-friendly string such as \"1GB\" – note that we use bytes to parse the value to a Number. If you would like to update the max storage quota across all aliases for this domain, then go to the domain's Settings page.", - "Alias does not exist on the domain.": "Alias does not exist on the domain." + "Alias does not exist on the domain.": "Alias does not exist on the domain.", + "alias quota": "alias quota" } \ No newline at end of file diff --git a/locales/es.json b/locales/es.json index e0c8d480d4..8e1fd060ea 100644 --- a/locales/es.json +++ b/locales/es.json @@ -10315,5 +10315,6 @@ "Domain admins can update the storage quota for this alias. Leave blank and hit save to reset it to the current domain's maximum storage quota of %s. Enter a human-friendly string such as \"1GB\" – note that we use bytes to parse the value to a Number. If you would like to update the max storage quota across all aliases for this domain, then go to the domain's Settings page.": "Los administradores de dominio pueden actualizar la cuota de almacenamiento para este alias. Déjelo en blanco y presione Guardar para restablecerlo a la cuota de almacenamiento máxima del dominio actual de %s . Ingrese una cadena de caracteres descriptiva como "1 GB"; tenga en cuenta que usamos bytes para analizar el valor como un número. Si desea actualizar la cuota de almacenamiento máxima en todos los alias de este dominio, vaya a la página Configuración del dominio.", "The quota for %s of %s exceeds the domain's maximum quota of %s.": "La cuota para %s de %s excede la cuota máxima del dominio de %s .", "The quota for %s of %s exceeds the maximum quota of from admins of the domain.": "La cuota para %s de %s excede la cuota máxima de de los administradores del dominio.", - "Bytes were invalid, must be a string such as \"1 GB\" or \"100 MB\".": "Los bytes no son válidos, debe ser una cadena como \"1 GB\" o \"100 MB\"." + "Bytes were invalid, must be a string such as \"1 GB\" or \"100 MB\".": "Los bytes no son válidos, debe ser una cadena como \"1 GB\" o \"100 MB\".", + "alias quota": "alias cuota" } \ No newline at end of file diff --git a/locales/fi.json b/locales/fi.json index 8369ef2e23..5533c6b481 100644 --- a/locales/fi.json +++ b/locales/fi.json @@ -10164,5 +10164,6 @@ "Domain admins can update the storage quota for this alias. Leave blank and hit save to reset it to the current domain's maximum storage quota of %s. Enter a human-friendly string such as \"1GB\" – note that we use bytes to parse the value to a Number. If you would like to update the max storage quota across all aliases for this domain, then go to the domain's Settings page.": "Verkkotunnuksen järjestelmänvalvojat voivat päivittää tämän aliaksen tallennuskiintiön. Jätä tyhjäksi ja paina Tallenna palauttaaksesi sen nykyisen verkkotunnuksen enimmäistallennuskiintiöön %s . Kirjoita ihmisystävällinen merkkijono, kuten "1 Gt" – huomaa, että käytämme bytes jäsentääksemme arvon numeroksi. Jos haluat päivittää tämän verkkotunnuksen kaikkien aliasten enimmäistallennuskiintiön, siirry verkkotunnuksen Asetukset-sivulle.", "The quota for %s of %s exceeds the domain's maximum quota of %s.": "Kohteen %s kiintiö %s ylittää verkkotunnuksen enimmäiskiintiön %s .", "The quota for %s of %s exceeds the maximum quota of from admins of the domain.": "%s n kiintiö %s ylittää enimmäiskiintiön verkkotunnuksen ylläpitäjiltä.", - "Bytes were invalid, must be a string such as \"1 GB\" or \"100 MB\".": "Tavut olivat virheellisiä, täytyy olla merkkijono, kuten \"1 Gt\" tai \"100 MB\"." + "Bytes were invalid, must be a string such as \"1 GB\" or \"100 MB\".": "Tavut olivat virheellisiä, täytyy olla merkkijono, kuten \"1 Gt\" tai \"100 MB\".", + "alias quota": "aliaskiintiö" } \ No newline at end of file diff --git a/locales/fr.json b/locales/fr.json index da2ae63114..f420575c7c 100644 --- a/locales/fr.json +++ b/locales/fr.json @@ -7842,5 +7842,6 @@ "Verified": "Vérifié", "The quota for %s of %s exceeds the domain's maximum quota of %s.": "Le quota pour %s de %s dépasse le quota maximum du domaine de %s .", "The quota for %s of %s exceeds the maximum quota of from admins of the domain.": "Le quota pour %s de %s dépasse le quota maximum de des administrateurs du domaine.", - "Bytes were invalid, must be a string such as \"1 GB\" or \"100 MB\".": "Les octets n'étaient pas valides, il doit s'agir d'une chaîne telle que « 1 Go » ou « 100 Mo »." + "Bytes were invalid, must be a string such as \"1 GB\" or \"100 MB\".": "Les octets n'étaient pas valides, il doit s'agir d'une chaîne telle que « 1 Go » ou « 100 Mo ».", + "alias quota": "quota d'alias" } \ No newline at end of file diff --git a/locales/he.json b/locales/he.json index 3598ea9601..397855998b 100644 --- a/locales/he.json +++ b/locales/he.json @@ -8338,5 +8338,6 @@ "Verified": "מְאוּמָת", "The quota for %s of %s exceeds the domain's maximum quota of %s.": "המכסה עבור %s מתוך %s חורגת מהמכסה המקסימלית של הדומיין של %s .", "The quota for %s of %s exceeds the maximum quota of from admins of the domain.": "המכסה עבור %s מתוך %s חורגת מהמכסה המקסימלית של ממנהלי הדומיין.", - "Bytes were invalid, must be a string such as \"1 GB\" or \"100 MB\".": "הבתים היו לא חוקיים, חייבים להיות מחרוזת כגון \"1 GB\" או \"100 MB\"." + "Bytes were invalid, must be a string such as \"1 GB\" or \"100 MB\".": "הבתים היו לא חוקיים, חייבים להיות מחרוזת כגון \"1 GB\" או \"100 MB\".", + "alias quota": "כינוי מכסה" } \ No newline at end of file diff --git a/locales/hu.json b/locales/hu.json index bf69f5dbc7..28766c80c6 100644 --- a/locales/hu.json +++ b/locales/hu.json @@ -10317,5 +10317,6 @@ "Domain admins can update the storage quota for this alias. Leave blank and hit save to reset it to the current domain's maximum storage quota of %s. Enter a human-friendly string such as \"1GB\" – note that we use bytes to parse the value to a Number. If you would like to update the max storage quota across all aliases for this domain, then go to the domain's Settings page.": "A domain rendszergazdái frissíthetik ennek az aliasnak a tárhelykvótáját. Hagyja üresen, és nyomja meg a Mentés gombot, hogy visszaállítsa az aktuális domain maximális tárhelykvótáját %s . Adjon meg egy emberbarát karakterláncot, például „1 GB” – vegye figyelembe, hogy bytes használunk az érték számmá értelmezéséhez. Ha frissíteni szeretné a maximális tárhelykvótát a domain összes álnevére vonatkozóan, lépjen a domain Beállítások oldalára.", "The quota for %s of %s exceeds the domain's maximum quota of %s.": "A %s %s kvótája meghaladja a domain maximális %s kvótáját.", "The quota for %s of %s exceeds the maximum quota of from admins of the domain.": "A %s %s kvótája meghaladja a maximális kvótát a domain rendszergazdáitól.", - "Bytes were invalid, must be a string such as \"1 GB\" or \"100 MB\".": "A bájtok érvénytelenek voltak, olyan karakterláncnak kell lennie, mint például „1 GB” vagy „100 MB”." + "Bytes were invalid, must be a string such as \"1 GB\" or \"100 MB\".": "A bájtok érvénytelenek voltak, olyan karakterláncnak kell lennie, mint például „1 GB” vagy „100 MB”.", + "alias quota": "alias kvóta" } \ No newline at end of file diff --git a/locales/id.json b/locales/id.json index 3f3a4f15af..6e4608e661 100644 --- a/locales/id.json +++ b/locales/id.json @@ -10317,5 +10317,6 @@ "Domain admins can update the storage quota for this alias. Leave blank and hit save to reset it to the current domain's maximum storage quota of %s. Enter a human-friendly string such as \"1GB\" – note that we use bytes to parse the value to a Number. If you would like to update the max storage quota across all aliases for this domain, then go to the domain's Settings page.": "Admin domain dapat memperbarui kuota penyimpanan untuk alias ini. Kosongkan dan tekan simpan untuk menyetel ulang ke kuota penyimpanan maksimum domain saat ini sebesar %s . Masukkan string yang mudah dipahami seperti "1GB" – perhatikan bahwa kami menggunakan bytes untuk mengurai nilai menjadi Angka. Jika Anda ingin memperbarui kuota penyimpanan maksimum di semua alias untuk domain ini, buka halaman Pengaturan domain.", "The quota for %s of %s exceeds the domain's maximum quota of %s.": "Kuota untuk %s dari %s melebihi kuota maksimum domain sebesar %s .", "The quota for %s of %s exceeds the maximum quota of from admins of the domain.": "Kuota untuk %s dari %s melebihi kuota maksimum dari admin domain.", - "Bytes were invalid, must be a string such as \"1 GB\" or \"100 MB\".": "Byte tidak valid, harus berupa string seperti \"1 GB\" atau \"100 MB\"." + "Bytes were invalid, must be a string such as \"1 GB\" or \"100 MB\".": "Byte tidak valid, harus berupa string seperti \"1 GB\" atau \"100 MB\".", + "alias quota": "alias kuota" } \ No newline at end of file diff --git a/locales/it.json b/locales/it.json index 9c479df00b..3f1902d2c3 100644 --- a/locales/it.json +++ b/locales/it.json @@ -10317,5 +10317,6 @@ "Domain admins can update the storage quota for this alias. Leave blank and hit save to reset it to the current domain's maximum storage quota of %s. Enter a human-friendly string such as \"1GB\" – note that we use bytes to parse the value to a Number. If you would like to update the max storage quota across all aliases for this domain, then go to the domain's Settings page.": "Gli amministratori di dominio possono aggiornare la quota di archiviazione per questo alias. Lascia vuoto e premi salva per reimpostarla sulla quota di archiviazione massima del dominio corrente di %s . Inserisci una stringa di facile comprensione come "1 GB" (nota che utilizziamo bytes per analizzare il valore in un numero). Se desideri aggiornare la quota di archiviazione massima su tutti gli alias per questo dominio, vai alla pagina Impostazioni del dominio.", "The quota for %s of %s exceeds the domain's maximum quota of %s.": "La quota per %s di %s supera la quota massima del dominio di %s .", "The quota for %s of %s exceeds the maximum quota of from admins of the domain.": "La quota per %s di %s supera la quota massima di dagli amministratori del dominio.", - "Bytes were invalid, must be a string such as \"1 GB\" or \"100 MB\".": "I byte non sono validi, deve essere una stringa come \"1 GB\" o \"100 MB\"." + "Bytes were invalid, must be a string such as \"1 GB\" or \"100 MB\".": "I byte non sono validi, deve essere una stringa come \"1 GB\" o \"100 MB\".", + "alias quota": "quota alias" } \ No newline at end of file diff --git a/locales/ja.json b/locales/ja.json index b47b04a7c4..775c9fe2c1 100644 --- a/locales/ja.json +++ b/locales/ja.json @@ -10317,5 +10317,6 @@ "Domain admins can update the storage quota for this alias. Leave blank and hit save to reset it to the current domain's maximum storage quota of %s. Enter a human-friendly string such as \"1GB\" – note that we use bytes to parse the value to a Number. If you would like to update the max storage quota across all aliases for this domain, then go to the domain's Settings page.": "ドメイン管理者は、このエイリアスのストレージ クォータを更新できます。空白のままにして [保存] をクリックすると、現在のドメインの最大ストレージ クォータである%sにリセットされます。「1GB」などのわかりやすい文字列を入力します。値を数値に解析するためにbytesが使用されることに注意してください。このドメインのすべてのエイリアスの最大ストレージ クォータを更新する場合は、ドメインの設定ページに移動してください。", "The quota for %s of %s exceeds the domain's maximum quota of %s.": "% %s %sのクォータがドメインの最大クォータ%sを超えています。", "The quota for %s of %s exceeds the maximum quota of from admins of the domain.": "% %s %sのクォータが最大クォータを超えていますドメインの管理者から。", - "Bytes were invalid, must be a string such as \"1 GB\" or \"100 MB\".": "バイトが無効です。「1 GB」や「100 MB」などの文字列である必要があります。" + "Bytes were invalid, must be a string such as \"1 GB\" or \"100 MB\".": "バイトが無効です。「1 GB」や「100 MB」などの文字列である必要があります。", + "alias quota": "エイリアスクォータ" } \ No newline at end of file diff --git a/locales/ko.json b/locales/ko.json index b43358e92b..fb1f02945b 100644 --- a/locales/ko.json +++ b/locales/ko.json @@ -10317,5 +10317,6 @@ "Domain admins can update the storage quota for this alias. Leave blank and hit save to reset it to the current domain's maximum storage quota of %s. Enter a human-friendly string such as \"1GB\" – note that we use bytes to parse the value to a Number. If you would like to update the max storage quota across all aliases for this domain, then go to the domain's Settings page.": "도메인 관리자는 이 별칭에 대한 저장소 할당량을 업데이트할 수 있습니다. 비워두고 저장을 눌러 현재 도메인의 최대 저장소 할당량인 %s 로 재설정합니다. "1GB"와 같이 인간 친화적인 문자열을 입력합니다. 값을 숫자로 구문 분석하는 데 bytes 사용한다는 점에 유의하세요. 이 도메인의 모든 별칭에서 최대 저장소 할당량을 업데이트하려면 도메인의 설정 페이지로 이동합니다.", "The quota for %s of %s exceeds the domain's maximum quota of %s.": "%s%s s 할당량이 도메인의 최대 할당량인 %s 을 초과합니다.", "The quota for %s of %s exceeds the maximum quota of from admins of the domain.": "%s의 %s %s 에 대한 할당량이 최대 할당량을 초과합니다. 도메인 관리자로부터.", - "Bytes were invalid, must be a string such as \"1 GB\" or \"100 MB\".": "바이트가 잘못되었습니다. \"1 GB\" 또는 \"100 MB\"와 같은 문자열이어야 합니다." + "Bytes were invalid, must be a string such as \"1 GB\" or \"100 MB\".": "바이트가 잘못되었습니다. \"1 GB\" 또는 \"100 MB\"와 같은 문자열이어야 합니다.", + "alias quota": "별칭 할당량" } \ No newline at end of file diff --git a/locales/nl.json b/locales/nl.json index 8aa49258d9..96cf240dd8 100644 --- a/locales/nl.json +++ b/locales/nl.json @@ -10317,5 +10317,6 @@ "Domain admins can update the storage quota for this alias. Leave blank and hit save to reset it to the current domain's maximum storage quota of %s. Enter a human-friendly string such as \"1GB\" – note that we use bytes to parse the value to a Number. If you would like to update the max storage quota across all aliases for this domain, then go to the domain's Settings page.": "Domeinbeheerders kunnen de opslagquota voor deze alias bijwerken. Laat dit leeg en klik op opslaan om het opnieuw in te stellen op de maximale opslagquota van het huidige domein van %s . Voer een mensvriendelijke string in, zoals "1GB" – let op dat we bytes gebruiken om de waarde te parseren naar een getal. Als u de maximale opslagquota voor alle aliassen voor dit domein wilt bijwerken, ga dan naar de pagina Instellingen van het domein.", "The quota for %s of %s exceeds the domain's maximum quota of %s.": "Het quotum voor %s van %s overschrijdt het maximale quotum van het domein van %s .", "The quota for %s of %s exceeds the maximum quota of from admins of the domain.": "Het quotum voor %s van %s overschrijdt het maximumquotum van van beheerders van het domein.", - "Bytes were invalid, must be a string such as \"1 GB\" or \"100 MB\".": "Bytes zijn ongeldig, moet een tekenreeks zijn, bijvoorbeeld \"1 GB\" of \"100 MB\"." + "Bytes were invalid, must be a string such as \"1 GB\" or \"100 MB\".": "Bytes zijn ongeldig, moet een tekenreeks zijn, bijvoorbeeld \"1 GB\" of \"100 MB\".", + "alias quota": "alias quotum" } \ No newline at end of file diff --git a/locales/no.json b/locales/no.json index ed01c01fe9..bea17f087c 100644 --- a/locales/no.json +++ b/locales/no.json @@ -10322,5 +10322,6 @@ "Domain admins can update the storage quota for this alias. Leave blank and hit save to reset it to the current domain's maximum storage quota of %s. Enter a human-friendly string such as \"1GB\" – note that we use bytes to parse the value to a Number. If you would like to update the max storage quota across all aliases for this domain, then go to the domain's Settings page.": "Domeneadministratorer kan oppdatere lagringskvoten for dette aliaset. La stå tomt og trykk lagre for å tilbakestille det til gjeldende domenes maksimale lagringskvote på %s . Skriv inn en menneskevennlig streng som "1GB" - merk at vi bruker bytes for å analysere verdien til et tall. Hvis du vil oppdatere den maksimale lagringskvoten på tvers av alle aliaser for dette domenet, går du til domenets Innstillinger-side.", "The quota for %s of %s exceeds the domain's maximum quota of %s.": "Kvoten for %s av %s overskrider domenets maksimale kvote på %s .", "The quota for %s of %s exceeds the maximum quota of from admins of the domain.": "Kvoten for %s av %s overskrider maksimumskvoten på fra administratorer av domenet.", - "Bytes were invalid, must be a string such as \"1 GB\" or \"100 MB\".": "Byte var ugyldige, må være en streng som \"1 GB\" eller \"100 MB\"." + "Bytes were invalid, must be a string such as \"1 GB\" or \"100 MB\".": "Byte var ugyldige, må være en streng som \"1 GB\" eller \"100 MB\".", + "alias quota": "alias kvote" } \ No newline at end of file diff --git a/locales/pl.json b/locales/pl.json index d4182cfcbe..a473219275 100644 --- a/locales/pl.json +++ b/locales/pl.json @@ -10317,5 +10317,6 @@ "Domain admins can update the storage quota for this alias. Leave blank and hit save to reset it to the current domain's maximum storage quota of %s. Enter a human-friendly string such as \"1GB\" – note that we use bytes to parse the value to a Number. If you would like to update the max storage quota across all aliases for this domain, then go to the domain's Settings page.": "Administratorzy domeny mogą aktualizować limit pamięci dla tego aliasu. Pozostaw puste pole i naciśnij przycisk Zapisz, aby zresetować go do maksymalnego limitu pamięci dla bieżącej domeny wynoszącego %s . Wprowadź przyjazny dla człowieka ciąg znaków, taki jak „1 GB” – pamiętaj, że używamy bytes do parsowania wartości na liczbę. Jeśli chcesz zaktualizować maksymalny limit pamięci dla wszystkich aliasów dla tej domeny, przejdź do strony Ustawienia domeny.", "The quota for %s of %s exceeds the domain's maximum quota of %s.": "Kwota %s dla %s przekracza maksymalną kwotę domeny wynoszącą %s .", "The quota for %s of %s exceeds the maximum quota of from admins of the domain.": "Kwota dla %s %s przekracza maksymalną kwotę od administratorów domeny.", - "Bytes were invalid, must be a string such as \"1 GB\" or \"100 MB\".": "Bajty są nieprawidłowe, musi to być ciąg znaków, np. „1 GB” lub „100 MB”." + "Bytes were invalid, must be a string such as \"1 GB\" or \"100 MB\".": "Bajty są nieprawidłowe, musi to być ciąg znaków, np. „1 GB” lub „100 MB”.", + "alias quota": "kwota aliasu" } \ No newline at end of file diff --git a/locales/pt.json b/locales/pt.json index 74c1620db7..f832e63a03 100644 --- a/locales/pt.json +++ b/locales/pt.json @@ -10317,5 +10317,6 @@ "Domain admins can update the storage quota for this alias. Leave blank and hit save to reset it to the current domain's maximum storage quota of %s. Enter a human-friendly string such as \"1GB\" – note that we use bytes to parse the value to a Number. If you would like to update the max storage quota across all aliases for this domain, then go to the domain's Settings page.": "Os administradores de domínio podem atualizar a cota de armazenamento para este alias. Deixe em branco e clique em salvar para redefini-lo para a cota máxima de armazenamento do domínio atual de %s . Insira uma string amigável, como "1 GB" – observe que usamos bytes para analisar o valor para um número. Se você quiser atualizar a cota máxima de armazenamento em todos os aliases para este domínio, vá para a página Configurações do domínio.", "The quota for %s of %s exceeds the domain's maximum quota of %s.": "A cota de %s de %s excede a cota máxima do domínio de %s .", "The quota for %s of %s exceeds the maximum quota of from admins of the domain.": "A cota para %s de %s excede a cota máxima de dos administradores do domínio.", - "Bytes were invalid, must be a string such as \"1 GB\" or \"100 MB\".": "Bytes eram inválidos, deve ser uma string como \"1 GB\" ou \"100 MB\"." + "Bytes were invalid, must be a string such as \"1 GB\" or \"100 MB\".": "Bytes eram inválidos, deve ser uma string como \"1 GB\" ou \"100 MB\".", + "alias quota": "cota de alias" } \ No newline at end of file diff --git a/locales/ru.json b/locales/ru.json index 98610e4a9f..c7935cb5f1 100644 --- a/locales/ru.json +++ b/locales/ru.json @@ -10317,5 +10317,6 @@ "Domain admins can update the storage quota for this alias. Leave blank and hit save to reset it to the current domain's maximum storage quota of %s. Enter a human-friendly string such as \"1GB\" – note that we use bytes to parse the value to a Number. If you would like to update the max storage quota across all aliases for this domain, then go to the domain's Settings page.": "Администраторы домена могут обновить квоту хранения для этого псевдонима. Оставьте поле пустым и нажмите «Сохранить», чтобы сбросить его до максимальной квоты хранения текущего домена %s . Введите понятную человеку строку, например «1 ГБ» — обратите внимание, что мы используем bytes для преобразования значения в число. Если вы хотите обновить максимальную квоту хранения для всех псевдонимов этого домена, перейдите на страницу настроек домена.", "The quota for %s of %s exceeds the domain's maximum quota of %s.": "Квота для %s %s превышает максимальную квоту домена %s .", "The quota for %s of %s exceeds the maximum quota of from admins of the domain.": "Квота для %s %s превышает максимальную квоту от администраторов домена.", - "Bytes were invalid, must be a string such as \"1 GB\" or \"100 MB\".": "Недопустимые байты, должна быть строка, например «1 ГБ» или «100 МБ»." + "Bytes were invalid, must be a string such as \"1 GB\" or \"100 MB\".": "Недопустимые байты, должна быть строка, например «1 ГБ» или «100 МБ».", + "alias quota": "квота псевдонимов" } \ No newline at end of file diff --git a/locales/sv.json b/locales/sv.json index 6408080a83..d2921b60b1 100644 --- a/locales/sv.json +++ b/locales/sv.json @@ -10317,5 +10317,6 @@ "Domain admins can update the storage quota for this alias. Leave blank and hit save to reset it to the current domain's maximum storage quota of %s. Enter a human-friendly string such as \"1GB\" – note that we use bytes to parse the value to a Number. If you would like to update the max storage quota across all aliases for this domain, then go to the domain's Settings page.": "Domänadministratörer kan uppdatera lagringskvoten för detta alias. Lämna tomt och tryck på spara för att återställa den till den aktuella domänens maximala lagringskvot på %s . Ange en människovänlig sträng som "1GB" – observera att vi använder bytes för att analysera värdet till ett nummer. Om du vill uppdatera den maximala lagringskvoten för alla alias för den här domänen, gå till domänens Inställningar-sida.", "The quota for %s of %s exceeds the domain's maximum quota of %s.": "Kvoten för %s av %s överskrider domänens maximala kvot på %s .", "The quota for %s of %s exceeds the maximum quota of from admins of the domain.": "Kvoten för %s av %s överskrider den maximala kvoten på från domänens administratörer.", - "Bytes were invalid, must be a string such as \"1 GB\" or \"100 MB\".": "Byte var ogiltiga, måste vara en sträng som \"1 GB\" eller \"100 MB\"." + "Bytes were invalid, must be a string such as \"1 GB\" or \"100 MB\".": "Byte var ogiltiga, måste vara en sträng som \"1 GB\" eller \"100 MB\".", + "alias quota": "alias kvot" } \ No newline at end of file diff --git a/locales/th.json b/locales/th.json index 414aa3656d..ba99e091fb 100644 --- a/locales/th.json +++ b/locales/th.json @@ -10317,5 +10317,6 @@ "Domain admins can update the storage quota for this alias. Leave blank and hit save to reset it to the current domain's maximum storage quota of %s. Enter a human-friendly string such as \"1GB\" – note that we use bytes to parse the value to a Number. If you would like to update the max storage quota across all aliases for this domain, then go to the domain's Settings page.": "ผู้ดูแลโดเมนสามารถอัปเดตโควตาพื้นที่เก็บข้อมูลสำหรับนามแฝงนี้ได้ ปล่อยว่างไว้แล้วกดบันทึกเพื่อรีเซ็ตโควตาเป็นโควตาพื้นที่เก็บข้อมูลสูงสุดของโดเมนปัจจุบันที่ %s ป้อนสตริงที่มนุษย์สามารถเข้าใจได้ เช่น "1GB" โปรดทราบว่าเราใช้ bytes เพื่อแยกค่าเป็นตัวเลข หากคุณต้องการอัปเดตโควตาพื้นที่เก็บข้อมูลสูงสุดสำหรับนามแฝงทั้งหมดสำหรับโดเมนนี้ ให้ไปที่หน้าการตั้งค่าของโดเมน", "The quota for %s of %s exceeds the domain's maximum quota of %s.": "โควตาสำหรับ %s ของ %s เกินโควตาสูงสุดของโดเมนที่ %s", "The quota for %s of %s exceeds the maximum quota of from admins of the domain.": "โควตาสำหรับ %s ของ %s เกินโควตาสูงสุดของ จากผู้ดูแลระบบโดเมน", - "Bytes were invalid, must be a string such as \"1 GB\" or \"100 MB\".": "ไบต์ไม่ถูกต้อง ต้องเป็นสตริงเช่น \"1 GB\" หรือ \"100 MB\"" + "Bytes were invalid, must be a string such as \"1 GB\" or \"100 MB\".": "ไบต์ไม่ถูกต้อง ต้องเป็นสตริงเช่น \"1 GB\" หรือ \"100 MB\"", + "alias quota": "โควตาชื่อเล่น" } \ No newline at end of file diff --git a/locales/tr.json b/locales/tr.json index c4140876bf..12952eb84a 100644 --- a/locales/tr.json +++ b/locales/tr.json @@ -10317,5 +10317,6 @@ "Domain admins can update the storage quota for this alias. Leave blank and hit save to reset it to the current domain's maximum storage quota of %s. Enter a human-friendly string such as \"1GB\" – note that we use bytes to parse the value to a Number. If you would like to update the max storage quota across all aliases for this domain, then go to the domain's Settings page.": "Alan adı yöneticileri bu takma ad için depolama kotasını güncelleyebilir. Boş bırakın ve geçerli alanın maksimum depolama kotası olan %s değerine sıfırlamak için kaydet'e tıklayın. "1 GB" gibi insan dostu bir dize girin; değeri bir Sayıya ayrıştırmak için bytes kullandığımızı unutmayın. Bu alan adı için tüm takma adlardaki maksimum depolama kotasını güncellemek istiyorsanız, alan adının Ayarlar sayfasına gidin.", "The quota for %s of %s exceeds the domain's maximum quota of %s.": "%s s'nin %s kotası, etki alanının %s olan maksimum kotasını aşıyor.", "The quota for %s of %s exceeds the maximum quota of from admins of the domain.": "%s s'nin %s kotası, maksimum kotayı aşıyor Alan adının yöneticilerinden.", - "Bytes were invalid, must be a string such as \"1 GB\" or \"100 MB\".": "Baytlar geçersiz, \"1 GB\" veya \"100 MB\" gibi bir dize olmalı." + "Bytes were invalid, must be a string such as \"1 GB\" or \"100 MB\".": "Baytlar geçersiz, \"1 GB\" veya \"100 MB\" gibi bir dize olmalı.", + "alias quota": "takma ad kotası" } \ No newline at end of file diff --git a/locales/uk.json b/locales/uk.json index db6fd1a3eb..3b752c232b 100644 --- a/locales/uk.json +++ b/locales/uk.json @@ -10317,5 +10317,6 @@ "Domain admins can update the storage quota for this alias. Leave blank and hit save to reset it to the current domain's maximum storage quota of %s. Enter a human-friendly string such as \"1GB\" – note that we use bytes to parse the value to a Number. If you would like to update the max storage quota across all aliases for this domain, then go to the domain's Settings page.": "Адміністратори домену можуть оновити квоту пам’яті для цього псевдоніма. Залиште поле порожнім і натисніть «Зберегти», щоб скинути його до максимальної квоти зберігання поточного домену %s . Введіть зрозумілий для людини рядок, як-от "1GB" – зверніть увагу, що ми використовуємо bytes для аналізу значення до числа. Якщо ви хочете оновити максимальну квоту пам’яті для всіх псевдонімів цього домену, перейдіть на сторінку налаштувань домену.", "The quota for %s of %s exceeds the domain's maximum quota of %s.": "Квота для %s з %s перевищує максимальну квоту домену %s .", "The quota for %s of %s exceeds the maximum quota of from admins of the domain.": "Квота для %s з %s перевищує максимальну квоту від адмінів домену.", - "Bytes were invalid, must be a string such as \"1 GB\" or \"100 MB\".": "Байти недійсні, це має бути рядок, наприклад \"1 ГБ\" або \"100 МБ\"." + "Bytes were invalid, must be a string such as \"1 GB\" or \"100 MB\".": "Байти недійсні, це має бути рядок, наприклад \"1 ГБ\" або \"100 МБ\".", + "alias quota": "квота псевдоніма" } \ No newline at end of file diff --git a/locales/vi.json b/locales/vi.json index 387cad586c..8019a848cd 100644 --- a/locales/vi.json +++ b/locales/vi.json @@ -7847,5 +7847,6 @@ "Verified": "Đã xác minh", "The quota for %s of %s exceeds the domain's maximum quota of %s.": "Hạn ngạch cho %s%s vượt quá hạn ngạch tối đa của miền là %s .", "The quota for %s of %s exceeds the maximum quota of from admins of the domain.": "Hạn ngạch cho %s của %s vượt quá hạn ngạch tối đa của từ người quản trị miền.", - "Bytes were invalid, must be a string such as \"1 GB\" or \"100 MB\".": "Byte không hợp lệ, phải là chuỗi như \"1 GB\" hoặc \"100 MB\"." + "Bytes were invalid, must be a string such as \"1 GB\" or \"100 MB\".": "Byte không hợp lệ, phải là chuỗi như \"1 GB\" hoặc \"100 MB\".", + "alias quota": "hạn ngạch bí danh" } \ No newline at end of file diff --git a/locales/zh.json b/locales/zh.json index aac229867f..0c50ee0900 100644 --- a/locales/zh.json +++ b/locales/zh.json @@ -10010,5 +10010,6 @@ "Domain admins can update the storage quota for this alias. Leave blank and hit save to reset it to the current domain's maximum storage quota of %s. Enter a human-friendly string such as \"1GB\" – note that we use bytes to parse the value to a Number. If you would like to update the max storage quota across all aliases for this domain, then go to the domain's Settings page.": "域管理员可以更新此别名的存储配额。保留空白并点击保存以将其重置为当前域的最大存储配额%s 。输入一个人性化的字符串,例如“1GB”——请注意,我们使用bytes将值解析为数字。如果您想更新此域的所有别名的最大存储配额,请转到域的“设置”页面。", "The quota for %s of %s exceeds the domain's maximum quota of %s.": "%s (共%s的配额超出了域的最大配额%s 。", "The quota for %s of %s exceeds the maximum quota of from admins of the domain.": "%s%s配额超出了来自域管理员。", - "Bytes were invalid, must be a string such as \"1 GB\" or \"100 MB\".": "字节无效,必须是诸如“1 GB”或“100 MB”之类的字符串。" + "Bytes were invalid, must be a string such as \"1 GB\" or \"100 MB\".": "字节无效,必须是诸如“1 GB”或“100 MB”之类的字符串。", + "alias quota": "别名配额" } \ No newline at end of file