From 187014b64efb620a1c6a64a800f01967c45cb335 Mon Sep 17 00:00:00 2001 From: Robert Gagnon <rgagnon@ariel.nae02.bcs.viasat.io> Date: Thu, 30 Mar 2023 15:22:54 +0000 Subject: [PATCH] Fix "lenght" typo. Correct spelling is "length" Fix Locale specific word "favourite" for en_US. Correct spelling is "favorite" (without the "u") --- app/admin/firewall-zones/settings.php | 2 +- app/install/postinstall_submit.php | 2 +- .../Spreadsheet/Excel/Writer/Workbook.php | 2 +- functions/classes/class.FirewallZones.php | 10 ++++----- .../locale/de_DE.UTF-8/LC_MESSAGES/phpipam.mo | Bin 249045 -> 249045 bytes .../locale/de_DE.UTF-8/LC_MESSAGES/phpipam.po | 2 +- .../locale/en_GB.UTF-8/LC_MESSAGES/phpipam.po | 7 ++----- .../locale/en_US.UTF-8/LC_MESSAGES/phpipam.mo | Bin 143 -> 728 bytes .../locale/en_US.UTF-8/LC_MESSAGES/phpipam.po | 19 ++++++++---------- .../locale/fr_FR.UTF-8/LC_MESSAGES/phpipam.mo | Bin 181801 -> 181801 bytes .../locale/fr_FR.UTF-8/LC_MESSAGES/phpipam.po | 2 +- .../locale/it_IT.UTF-8/LC_MESSAGES/phpipam.mo | Bin 175804 -> 175804 bytes .../locale/it_IT.UTF-8/LC_MESSAGES/phpipam.po | 2 +- .../locale/ja_JP.UTF-8/LC_MESSAGES/phpipam.mo | Bin 185281 -> 185281 bytes .../locale/ja_JP.UTF-8/LC_MESSAGES/phpipam.po | 2 +- .../locale/nl_NL.UTF-8/LC_MESSAGES/phpipam.mo | Bin 136163 -> 136163 bytes .../locale/nl_NL.UTF-8/LC_MESSAGES/phpipam.po | 2 +- .../locale/ru_RU.UTF-8/LC_MESSAGES/phpipam.mo | Bin 359286 -> 359286 bytes .../locale/ru_RU.UTF-8/LC_MESSAGES/phpipam.po | 4 ++-- .../locale/zh_CN.UTF-8/LC_MESSAGES/phpipam.mo | Bin 185706 -> 185706 bytes .../locale/zh_CN.UTF-8/LC_MESSAGES/phpipam.po | 4 ++-- .../locale/zh_TW.UTF-8/LC_MESSAGES/phpipam.mo | Bin 194052 -> 194052 bytes .../locale/zh_TW.UTF-8/LC_MESSAGES/phpipam.po | 6 +++--- 23 files changed, 30 insertions(+), 36 deletions(-) diff --git a/app/admin/firewall-zones/settings.php b/app/admin/firewall-zones/settings.php index 4d6e26de..860d7d63 100644 --- a/app/admin/firewall-zones/settings.php +++ b/app/admin/firewall-zones/settings.php @@ -124,7 +124,7 @@ $(function() { <input type="text" class="form-control input-sm" name="zoneLength" value="<?php print $firewallZoneSettings['zoneLength']; ?>"> </td> <td> - <span class="text-muted"><?php print _("Choose a maximum lenght of the zone name.<br>The default: 3, maximum: 31 characters.<br>(keep in mind that your firewall may have a limit for the length of zone names or address objects )"); ?></span> + <span class="text-muted"><?php print _("Choose a maximum length of the zone name.<br>The default: 3, maximum: 31 characters.<br>(keep in mind that your firewall may have a limit for the length of zone names or address objects )"); ?></span> </td> </tr> diff --git a/app/install/postinstall_submit.php b/app/install/postinstall_submit.php index 92a4f93b..07e61ff3 100755 --- a/app/install/postinstall_submit.php +++ b/app/install/postinstall_submit.php @@ -21,7 +21,7 @@ if($admin->password!='$6$rounds=3000$JQEE6dL9NpvjeFs4$RK5X3oa28.Uzt/h5VAfdrsvlVe } # update else { - # check lenghts + # check lengths if(strlen($_POST['password1'])<8) { $Result->show("danger", _("Password must be at least 8 characters long!"), true); } if(strlen($_POST['password2'])<8) { $Result->show("danger", _("Password must be at least 8 characters long!"), true); } diff --git a/functions/PEAR/Spreadsheet/Excel/Writer/Workbook.php b/functions/PEAR/Spreadsheet/Excel/Writer/Workbook.php index b1a09cd9..4b3cbf50 100755 --- a/functions/PEAR/Spreadsheet/Excel/Writer/Workbook.php +++ b/functions/PEAR/Spreadsheet/Excel/Writer/Workbook.php @@ -624,7 +624,7 @@ class Spreadsheet_Excel_Writer_Workbook extends Spreadsheet_Excel_Writer_BIFFwri if ($this->_country_code != -1) { $offset += 8; // adding COUNTRY record } - // add the lenght of SUPBOOK, EXTERNSHEET and NAME records + // add the length of SUPBOOK, EXTERNSHEET and NAME records //$offset += 8; // FIXME: calculate real value when storing the records } $total_worksheets = count($this->_worksheets); diff --git a/functions/classes/class.FirewallZones.php b/functions/classes/class.FirewallZones.php index 275ac310..fc44b507 100644 --- a/functions/classes/class.FirewallZones.php +++ b/functions/classes/class.FirewallZones.php @@ -275,7 +275,7 @@ class FirewallZones extends Common_functions { # add some padding if it is activated and the zone generatore is not text if($mappings[$key]->padding == 1 && $mappings[$key]->generator != 2){ # remove leading zeros (padding) and raise the value in case of any zone name length changes - # add some padding to reach the maximum zone name lenght + # add some padding to reach the maximum zone name length $mappings[$key]->zone = str_pad(ltrim($mappings[$key]->zone,0),$mappings[$key]->length,"0",STR_PAD_LEFT); } # inject network informations @@ -349,7 +349,7 @@ class FirewallZones extends Common_functions { # add some padding if it is activated and the zone generatore is not text if($mapping[$key]->padding == 1 && $mapping[$key]->generator != 2){ # remove leading zeros (padding) and raise the value in case of any zone name length changes - # add some padding to reach the maximum zone name lenght + # add some padding to reach the maximum zone name length $mapping[$key]->zone = str_pad(ltrim($mapping[$key]->zone,0),$mapping[$key]->length,"0",STR_PAD_LEFT); } # inject network informations @@ -427,7 +427,7 @@ class FirewallZones extends Common_functions { # add some padding if it is activated and the zone generatore is not text if($info[$key]->padding == 1 && $info[$key]->generator != 2){ # remove leading zeros (padding) and raise the value in case of any zone name length changes - # add some padding to reach the maximum zone name lenght + # add some padding to reach the maximum zone name length $info[$key]->zone = str_pad(ltrim($info[$key]->zone,0),$info[$key]->length,"0",STR_PAD_LEFT); } } @@ -478,7 +478,7 @@ class FirewallZones extends Common_functions { # add some padding if it is activated and the zone generatore is not text if($zones[$key]->padding == 1 && $zones[$key]->generator != 2){ # remove leading zeros (padding) and raise the value in case of any zone name length changes - # add some padding to reach the maximum zone name lenght + # add some padding to reach the maximum zone name length $zones[$key]->zone = str_pad(ltrim($zones[$key]->zone,0),$zones[$key]->length,"0",STR_PAD_LEFT); } # inject network informations @@ -538,7 +538,7 @@ class FirewallZones extends Common_functions { # add some padding if it is activated and the zone generatore is not text if($zone[$key]->padding == 1 && $zone[$key]->generator != 2){ # remove leading zeros (padding) and raise the value in case of any zone name length changes - # add some padding to reach the maximum zone name lenght + # add some padding to reach the maximum zone name length $zone[$key]->zone = str_pad(ltrim($zone[$key]->zone,0),$zone[$key]->length,"0",STR_PAD_LEFT); } # inject network informations diff --git a/functions/locale/de_DE.UTF-8/LC_MESSAGES/phpipam.mo b/functions/locale/de_DE.UTF-8/LC_MESSAGES/phpipam.mo index 300c391901087a1cfb3c85075584c17bba9ef693..8dca767e38f26542483a6df9755392ec2b2e0d75 100644 GIT binary patch delta 57 zcmcaQlmF^W{tYVknHU&0tKDD6!j!@~`P$=MOsXuKCp~$`&eXxUx#^9D15-&x`x+g_ P_BA?8+t=tYYc2o)v8Wc} delta 57 zcmcaQlmF^W{tYVknNnCctKDD6!qmYy`P$=MObiU0Cp~$`&ZNq+x#^9D15-vx`x+g_ P_BA?8+t=tYYc2o)yQ3E3 diff --git a/functions/locale/de_DE.UTF-8/LC_MESSAGES/phpipam.po b/functions/locale/de_DE.UTF-8/LC_MESSAGES/phpipam.po index 2d4648b6..7e3fa9ee 100644 --- a/functions/locale/de_DE.UTF-8/LC_MESSAGES/phpipam.po +++ b/functions/locale/de_DE.UTF-8/LC_MESSAGES/phpipam.po @@ -3817,7 +3817,7 @@ msgstr "Maximale Länge Zonennamen" #: app/admin/firewall-zones/settings.php:127 msgid "" -"Choose a maximum lenght of the zone name.<br>The default: 3, maximum: 31 " +"Choose a maximum length of the zone name.<br>The default: 3, maximum: 31 " "characters.<br>(keep in mind that your firewall may have a limit for the " "length of zone names or address objects )" msgstr "" diff --git a/functions/locale/en_GB.UTF-8/LC_MESSAGES/phpipam.po b/functions/locale/en_GB.UTF-8/LC_MESSAGES/phpipam.po index c7b73619..e6dba6dc 100644 --- a/functions/locale/en_GB.UTF-8/LC_MESSAGES/phpipam.po +++ b/functions/locale/en_GB.UTF-8/LC_MESSAGES/phpipam.po @@ -6267,7 +6267,7 @@ msgstr "" msgid "Maximum zone name length" msgstr "" -msgid "Choose a maximum lenght of the zone name.<br>The default length is 3, the maximum is 31 characters.<br>(keep in mind that your firewall may have a limit for the length of zone names or address objects )" +msgid "Choose a maximum length of the zone name.<br>The default length is 3, the maximum is 31 characters.<br>(keep in mind that your firewall may have a limit for the length of zone names or address objects )" msgstr "" msgid "IPv4 address type alias" @@ -7698,9 +7698,6 @@ msgstr "" msgid "General" msgstr "" -msgid "Availability" -msgstr "" - msgid "Rack details" msgstr "" @@ -8305,4 +8302,4 @@ msgid "Attributes not found" msgstr "" msgid "phpIPAM settings" -msgstr "" \ No newline at end of file +msgstr "" diff --git a/functions/locale/en_US.UTF-8/LC_MESSAGES/phpipam.mo b/functions/locale/en_US.UTF-8/LC_MESSAGES/phpipam.mo index 3d88dd6c006be3421caba1f301e2c7c5308631b7..7b6752df63d589fa65300813212e1ba7d73fc6d1 100644 GIT binary patch literal 728 zcmca7#4?qEfq{X8fq_AWfq@~0fq{XWfq`KT0|SE;0|Ube1_lOs1_p-53=9n73=9m+ zj0_Ay3=9m?j0_Bd3=9l<j0_C23=9koj0_B(3=9l$j0_BV3=9k_7#SEO85kI@Gcqv9 zF)%QEWMp6vV_;wqV1npVXJTLwU|?XdWP;f1#l*ni!N9<f&cwi=&cML1fr){Ek%57M z3FJ7Cy-*tDP7srYfq{XYfq{XIfq{XQfq}s}Co?%)p(I}+F(m~=r6rc-mlkD~q!uHj zic)j)%Tg86it=+6kmOy9it>vTQd2TZGV{_A5)5uIBNXydOUm<$vWt;~ic6F7QcH>% z{PGbx6rh3%#i==|$t9^N43YVz3dxCiU`N3uOOSLFD<oAaB!ip|vbwk=u}C2^IX_P! zGY@K(LP}~$VrEV;*rb$vg}nR{g^a|qRE2Vo-xLy)lT(X}71HvH6iPBOi(w8`NB9{j zI6yk^ga$+!GcZ8nV2^_sFdHC20TzM!3l<W{VnhW5NCWZV;Fp=3cyyscK~Z8^X0k$6 dqC!DtabjLpszRAUNouY_er{3f(S2E^3;->s&kO(n delta 68 zcmcb?+RtcyPl#nI0|NsCBLf423<Cp$3IhWJGXn#I4g&*&9s>h|1p@<vIs*ekI#dlv REdv9?<mHS8lQ%GF000Sv2WtQT diff --git a/functions/locale/en_US.UTF-8/LC_MESSAGES/phpipam.po b/functions/locale/en_US.UTF-8/LC_MESSAGES/phpipam.po index f2e31422..a68c4d6e 100644 --- a/functions/locale/en_US.UTF-8/LC_MESSAGES/phpipam.po +++ b/functions/locale/en_US.UTF-8/LC_MESSAGES/phpipam.po @@ -4353,27 +4353,27 @@ msgstr "" #: functions/functions-common.php msgid "Favourite subnets" -msgstr "" +msgstr "Favorite subnets" msgid "No favourite subnets selected" -msgstr "" +msgstr "No favorite subnets selected" msgid "You can add subnets to favourites by clicking star icon in subnet details" -msgstr "" +msgstr "You can add subnets to favorites by clicking star icon in subnet details" msgid "Click to remove from favourites" -msgstr "" +msgstr "Click to remove from favorites" msgid "Click to add to favourites" -msgstr "" +msgstr "Click to add to favorites" #: site/tools/favouriteEdit.php msgid "Error editing favourite" -msgstr "" +msgstr "Error editing favorite" #: site/sections.php msgid "Favourite networks" -msgstr "" +msgstr "Favorite networks" #: site/ipaddr/ipDetailsChangelog.php msgid "Changelog" @@ -6267,7 +6267,7 @@ msgstr "" msgid "Maximum zone name length" msgstr "" -msgid "Choose a maximum lenght of the zone name.<br>The default length is 3, the maximum is 31 characters.<br>(keep in mind that your firewall may have a limit for the length of zone names or address objects )" +msgid "Choose a maximum length of the zone name.<br>The default length is 3, the maximum is 31 characters.<br>(keep in mind that your firewall may have a limit for the length of zone names or address objects )" msgstr "" msgid "IPv4 address type alias" @@ -7698,9 +7698,6 @@ msgstr "" msgid "General" msgstr "" -msgid "Availability" -msgstr "" - msgid "Rack details" msgstr "" diff --git a/functions/locale/fr_FR.UTF-8/LC_MESSAGES/phpipam.mo b/functions/locale/fr_FR.UTF-8/LC_MESSAGES/phpipam.mo index 6aab13ff1dcd0314b50f1e4d09d2ea3483a40ddf..cbc5bc92fa519d345f080753502a756a30142fb4 100644 GIT binary patch delta 77 zcmZ44!@aVHdxODrCVs}vM$>PxFzx2p%r{4fi|HiWW~F6^7?~ItHa}bbj+JRO$L4Em kA8|6>X5YMPJ0Ba<KIYA*_Hsxum1HzuxxW3%b;i(l0CA}wsQ>@~ delta 77 zcmZ44!@aVHdxODrrju-&ji%pXVPas|%r{4fi|ID|W~F6^7@1acY<{-<9V^p5=FQjE kKH_BB&9Qmcc0M*He#XtG_HsxuWt22uxxW3%b;i(l0Ez`4sQ>@~ diff --git a/functions/locale/fr_FR.UTF-8/LC_MESSAGES/phpipam.po b/functions/locale/fr_FR.UTF-8/LC_MESSAGES/phpipam.po index 895ad575..0c61d22f 100644 --- a/functions/locale/fr_FR.UTF-8/LC_MESSAGES/phpipam.po +++ b/functions/locale/fr_FR.UTF-8/LC_MESSAGES/phpipam.po @@ -6130,7 +6130,7 @@ msgid "Maximum zone name length" msgstr "Longeur maximum de nom de zone" msgid "" -"Choose a maximum lenght of the zone name.<br>The default length is 3, the maximum is 31 characters.<br>(keep " +"Choose a maximum length of the zone name.<br>The default length is 3, the maximum is 31 characters.<br>(keep " "in mind that your firewall may have a limit for the length of zone names or address objects )" msgstr "" "Choisissez une longueur maximale pour les noms de zone. <br> la longueur par défaut est 3, le maximum est de " diff --git a/functions/locale/it_IT.UTF-8/LC_MESSAGES/phpipam.mo b/functions/locale/it_IT.UTF-8/LC_MESSAGES/phpipam.mo index 665c007c0155b9f4e2cf76ac42f98992dc90529d..f38bb2511fa00e23ba01dda196058605ac6223ef 100644 GIT binary patch delta 82 zcmdmUmut^mt_=#alo&V|7-ZNP7<w2O7?Kzn7;bSefI&Jt1H)Yw28M5po1JEbNihm+ kp1CEMk#YCtw_9D985uSk?QEB4D#>WxePjFX8;p$C0C|cTEC2ui delta 82 zcmdmUmut^mt_=#aly);RFvzeoF!V4mFeEWDFx=u`0E2XP28O#VAm(PLSz%I)-!{+O i63oabu=(v)7iLC|%|<)h<(V={ns?vWzWW9v<23-1D;X>R diff --git a/functions/locale/it_IT.UTF-8/LC_MESSAGES/phpipam.po b/functions/locale/it_IT.UTF-8/LC_MESSAGES/phpipam.po index 7e9484bb..d7ba051c 100644 --- a/functions/locale/it_IT.UTF-8/LC_MESSAGES/phpipam.po +++ b/functions/locale/it_IT.UTF-8/LC_MESSAGES/phpipam.po @@ -5992,7 +5992,7 @@ msgstr "Tipo dispositivo non valido." msgid "Maximum zone name length" msgstr "Lunghezza massima nome zona" -msgid "Choose a maximum lenght of the zone name.<br>The default length is 3, the maximum is 31 characters.<br>(keep in mind that your firewall may have a limit for the length of zone names or address objects )" +msgid "Choose a maximum length of the zone name.<br>The default length is 3, the maximum is 31 characters.<br>(keep in mind that your firewall may have a limit for the length of zone names or address objects )" msgstr "" "Scegli una lunghezza massima per il nome della zona.<br>La lunghezza predefinita è 3, il massimo è 32 caratteri.<br>(considerare che il firewall potrebbe avere dei limiti per la lunghezza dei nomi zona o " "degli address objects)" diff --git a/functions/locale/ja_JP.UTF-8/LC_MESSAGES/phpipam.mo b/functions/locale/ja_JP.UTF-8/LC_MESSAGES/phpipam.mo index 581ea9e58495f82e4b91728602867102f084ec54..0dace208a67181aecdadd6449951873f2bc6f6b1 100644 GIT binary patch delta 66 zcmX@OocrK%?hQO0ObiU0`8t@Cd3hKa7$O)M7@}Dj7;GlXuKvvA&OTXaO%jtB+vc)0 XG4f0$8O>Ktw_iEUxc$m$rnl?>b!Zjb delta 66 zcmX@OocrK%?hQO0Oz!NP`8t@Cc^McO7$O)M7@}Dj7{n&auKvtq!!}uHO%f9i<L0t8 XG4f0qCCyh(w_iEUxc$m$rnl?>d*c<{ diff --git a/functions/locale/ja_JP.UTF-8/LC_MESSAGES/phpipam.po b/functions/locale/ja_JP.UTF-8/LC_MESSAGES/phpipam.po index 7d025c16..854157c6 100644 --- a/functions/locale/ja_JP.UTF-8/LC_MESSAGES/phpipam.po +++ b/functions/locale/ja_JP.UTF-8/LC_MESSAGES/phpipam.po @@ -5296,7 +5296,7 @@ msgid "Maximum zone name length" msgstr "最大ゾーン名の長さ" #: /var/www/phpipam/app/admin/firewall-zones/settings.php:127 -msgid "Choose a maximum lenght of the zone name.<br>The default: 3, maximum: 31 " +msgid "Choose a maximum length of the zone name.<br>The default: 3, maximum: 31 " "characters.<br>(keep in mind that your firewall may have a limit for the " "length of zone names or address objects )" msgstr "ゾーン名の最大長を選択します<br>デフォルトの長さは3文字、最大値は31文字です" diff --git a/functions/locale/nl_NL.UTF-8/LC_MESSAGES/phpipam.mo b/functions/locale/nl_NL.UTF-8/LC_MESSAGES/phpipam.mo index df6c312dfb4474cbc56ba39c726fa6b2ef8cbcaf..d34ac71489044a8c423f5278d3243b2930e722dc 100644 GIT binary patch delta 59 zcmaF7oa6Cwjtwr=Or|WG-Kv?GnHU&0d)3Y2WnyOA{H*&QBjc6HPkZy3w3#=D^|ebf Qm1H#EU%vhRaz>UM0Fs3k-v9sr delta 59 zcmaF7oa6Cwjtwr=Oxnzw-Kv?GnV8u&d)3Y2Win;i{H*&QBO}A)r@i@1R~R;j^|ebf QWt24EU%vhRaz>UM0FRv(-v9sr diff --git a/functions/locale/nl_NL.UTF-8/LC_MESSAGES/phpipam.po b/functions/locale/nl_NL.UTF-8/LC_MESSAGES/phpipam.po index 0838cd4b..1e4b2f42 100644 --- a/functions/locale/nl_NL.UTF-8/LC_MESSAGES/phpipam.po +++ b/functions/locale/nl_NL.UTF-8/LC_MESSAGES/phpipam.po @@ -6597,7 +6597,7 @@ msgid "Maximum zone name length" msgstr "Maximale lengte van de zonenaam" msgid "" -"Choose a maximum lenght of the zone name.<br>The default length is 3, the " +"Choose a maximum length of the zone name.<br>The default length is 3, the " "maximum is 31 characters.<br>(keep in mind that your firewall may have a " "limit for the length of zone names or address objects )" msgstr "" diff --git a/functions/locale/ru_RU.UTF-8/LC_MESSAGES/phpipam.mo b/functions/locale/ru_RU.UTF-8/LC_MESSAGES/phpipam.mo index a3e3c2fc81a1f502509858f2efbe2e5a32b7f00f..edeb223241990f37c8d705c8ed40c2a6417ed39c 100644 GIT binary patch delta 123 zcmezNP4wG0(G4oEnN-;}tGzB_WIDpQdDa^#W~QTzo436W<7MLF+syaZPmGCyVSAh~ zqY^7q8t?Wd3C4A7OcQvv8_6@C;$-UMoc>RPaS}+$Bu&OhW2Taf>2G5gPeN(M_M5Sc X?KfkY+Hb}(x8ICq*?u#Yb*?M`%AhPo delta 123 zcmezNP4wG0(G4oEnbLSStGzB_WKw0@JnM}VGt&f~&D-9G@iH+mZ07sxC&tvrxjjyp zQHhm_fnj@-1mik3CN941M)HiOIGK(xPXDLDIEm>f<Mv6KjFHAn870%-#xS0Q(u(aj ZV;S3T#xk|vjAd@W8OyT$W-RMmSpcseEJXkS diff --git a/functions/locale/ru_RU.UTF-8/LC_MESSAGES/phpipam.po b/functions/locale/ru_RU.UTF-8/LC_MESSAGES/phpipam.po index 44da26ce..75dacdb7 100644 --- a/functions/locale/ru_RU.UTF-8/LC_MESSAGES/phpipam.po +++ b/functions/locale/ru_RU.UTF-8/LC_MESSAGES/phpipam.po @@ -11026,7 +11026,7 @@ msgid "Maximum zone name length" msgstr "Максимальная длина имени зоны" #: app/admin/firewall-zones/settings.php:127 -msgid "Choose a maximum lenght of the zone name.<br>The default length is 3, the maximum is 31 characters.<br>(keep in mind that your firewall may have a limit for the length of zone names or address objects )" +msgid "Choose a maximum length of the zone name.<br>The default length is 3, the maximum is 31 characters.<br>(keep in mind that your firewall may have a limit for the length of zone names or address objects )" msgstr "Выберите максимальную длину имени зоны.<br>Дефолтная длина 3, максимальная - 31 символ.<br>(учтите, что ваш фаервол может иметь лимит длины имени зоны или объекта адреса )" #: app/admin/firewall-zones/settings.php:206 @@ -12299,7 +12299,7 @@ msgstr "Неверное название подсети. Не манипули msgid "Zone settings" msgstr "Установки Зоны" -msgid "Choose a maximum lenght of the zone name.<br>The default: 3, maximum: 31 characters.<br>(keep in mind that your firewall may have a limit for the length of zone names or address objects )" +msgid "Choose a maximum length of the zone name.<br>The default: 3, maximum: 31 characters.<br>(keep in mind that your firewall may have a limit for the length of zone names or address objects )" msgstr "Выберите максимальную длину имени зоны.<br>По-умолчанию:3, максимум:31 символ. <br>(учтите, что ваш фаервол может иметь ограничение на длину имени зоны или объектов адреса)" msgid "Generate zone names automaticaly with the setting "decimal" or "hex".<br>The maximum value for a zone in hex mode would be ffffffff (4294967295 zones).<br>To use your own unique zone names you can choose the option "text"." diff --git a/functions/locale/zh_CN.UTF-8/LC_MESSAGES/phpipam.mo b/functions/locale/zh_CN.UTF-8/LC_MESSAGES/phpipam.mo index fb76c1b3dd59b9d25e876fe79e26625d8a6bfc02..ceac86d8f9346a99776dbe2c93779e12d0aba3d5 100644 GIT binary patch delta 95 zcmaF0iu=_n?hPFqnHU&0cWvb32GO(jNU<~C+`RShViqQOmd#No!kC%Xvv1yXI*XOb wopH0=MI~;gI?l~bcdVG0+!#04-P4z6D#@6<{_jZ$rPw_C-}c%67|&k=0M>&iJ^%m! delta 95 zcmaF0iu=_n?hPFqnQk&}?%K%5%~Z#^dDb2&c1HKjTMsX0VRB>K9Cad$nTdg6^QO~T wtW4|KH_KgA;%1U(+3a-3iU}lMcTZoQDWhca`oAY3lw$Mjf7@sOV?2Ki0RH?ZJ^%m! diff --git a/functions/locale/zh_CN.UTF-8/LC_MESSAGES/phpipam.po b/functions/locale/zh_CN.UTF-8/LC_MESSAGES/phpipam.po index a55cb5bf..85100d45 100644 --- a/functions/locale/zh_CN.UTF-8/LC_MESSAGES/phpipam.po +++ b/functions/locale/zh_CN.UTF-8/LC_MESSAGES/phpipam.po @@ -4876,7 +4876,7 @@ msgstr "无效的设备类型" msgid "Maximum zone name length" msgstr "最大区域名称长度" -msgid "Choose a maximum lenght of the zone name.<br>The default length is 3, the maximum is 31 characters.<br>(keep in mind that your firewall may have a limit for the length of zone names or address objects )" +msgid "Choose a maximum length of the zone name.<br>The default length is 3, the maximum is 31 characters.<br>(keep in mind that your firewall may have a limit for the length of zone names or address objects )" msgstr "选择区域名称的最大长度。<br>默认长度为3,最多为31个字符。<br>(请注意,防火墙可能对区域名称或地址对象的长度有限制)" msgid "IPv4 address type alias" @@ -5521,7 +5521,7 @@ msgstr "子网名称无效。 不要操纵POST值!" msgid "Zone settings" msgstr "区域设置" -msgid "Choose a maximum lenght of the zone name.<br>The default: 3, maximum: 31 characters.<br>(keep in mind that your firewall may have a limit for the length of zone names or address objects )" +msgid "Choose a maximum length of the zone name.<br>The default: 3, maximum: 31 characters.<br>(keep in mind that your firewall may have a limit for the length of zone names or address objects )" msgstr "选择区域名称的最大长度。<br>默认值:3,最大值:31个字符。<br>(请记住,防火墙可能对区域名称或地址对象的长度有限制)" msgid "Generate zone names automaticaly with the setting "decimal" or "hex".<br>The maximum value for a zone in hex mode would be ffffffff (4294967295 zones).<br>To use your own unique zone names you can choose the option "text"." diff --git a/functions/locale/zh_TW.UTF-8/LC_MESSAGES/phpipam.mo b/functions/locale/zh_TW.UTF-8/LC_MESSAGES/phpipam.mo index a233432200e47f3248ae2eca352c710a9e117940..5ba628e3f8cc8015c9ba2577609bd29d288917d8 100644 GIT binary patch delta 98 zcmZp9!`<?Rdjrb`CI*JhY#WpqnL-&iYi;D?VLHP#*=p}9CO)>!&-U(OWvXS_yy$Qn z6H^G|X02nlM433*H?!S2#|hGQ?P;9?Q%S~jMRrET>E&#UE0{_$+7;Ouw=1$UJ$?rO DlQ$uB delta 98 zcmZp9!`<?Rdjrb`rVz%>Y#WpqnfTZ?Yi;D?VPasIY_)e46DRxTXM1<CGBGf0UUayP ziK&)lv(~X&qD*JFHnZJ1$H^4RxcS=CIt8YTlIe=<jEd9C*%((aWt6llvNLX1WM_K( F4ghrmA#?x$ diff --git a/functions/locale/zh_TW.UTF-8/LC_MESSAGES/phpipam.po b/functions/locale/zh_TW.UTF-8/LC_MESSAGES/phpipam.po index 5cc4c482..c3906bca 100644 --- a/functions/locale/zh_TW.UTF-8/LC_MESSAGES/phpipam.po +++ b/functions/locale/zh_TW.UTF-8/LC_MESSAGES/phpipam.po @@ -6376,7 +6376,7 @@ msgid "Maximum zone name length" msgstr "區域名稱最大長度" msgid "" -"Choose a maximum lenght of the zone name.<br>The default length is 3, the " +"Choose a maximum length of the zone name.<br>The default length is 3, the " "maximum is 31 characters.<br>(keep in mind that your firewall may have a " "limit for the length of zone names or address objects )" msgstr "" @@ -7058,7 +7058,7 @@ msgid "Zone settings" msgstr "區域設定" msgid "" -"Choose a maximum lenght of the zone name.<br>The default: 3, maximum: 31 " +"Choose a maximum length of the zone name.<br>The default: 3, maximum: 31 " "characters.<br>(keep in mind that your firewall may have a limit for the " "length of zone names or address objects )" msgstr "" @@ -9902,4 +9902,4 @@ msgid "First IP Address available" msgstr "第一個可用的 IP 位址" msgid "Select server" -msgstr "選擇伺服器" \ No newline at end of file +msgstr "選擇伺服器" -- GitLab