summaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
authorBalázs Úr <balazs@urbalazs.hu>2020-01-09 00:41:49 +0100
committerBalázs Úr <balazs@urbalazs.hu>2020-01-09 00:41:49 +0100
commitd3b5abcbcf2db7ba289170c87b66a4a6964908d5 (patch)
tree4b66a0676ac08e58177dbb01fffec569bfff1b9f
parentec5ad620d6b67d91102889927165b0a5e6f96695 (diff)
luci-app-olsr: fix typo
Signed-off-by: Balázs Úr <balazs@urbalazs.hu>
-rw-r--r--applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua4
-rw-r--r--applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua4
-rw-r--r--applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua4
-rw-r--r--applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface6.lua4
-rw-r--r--applications/luci-app-olsr/po/bg/olsr.po4
-rw-r--r--applications/luci-app-olsr/po/ca/olsr.po4
-rw-r--r--applications/luci-app-olsr/po/cs/olsr.po4
-rw-r--r--applications/luci-app-olsr/po/de/olsr.po4
-rw-r--r--applications/luci-app-olsr/po/el/olsr.po4
-rw-r--r--applications/luci-app-olsr/po/en/olsr.po4
-rw-r--r--applications/luci-app-olsr/po/es/olsr.po4
-rw-r--r--applications/luci-app-olsr/po/fr/olsr.po4
-rw-r--r--applications/luci-app-olsr/po/he/olsr.po4
-rw-r--r--applications/luci-app-olsr/po/hi/olsr.po4
-rw-r--r--applications/luci-app-olsr/po/hu/olsr.po4
-rw-r--r--applications/luci-app-olsr/po/it/olsr.po4
-rw-r--r--applications/luci-app-olsr/po/ja/olsr.po4
-rw-r--r--applications/luci-app-olsr/po/ko/olsr.po4
-rw-r--r--applications/luci-app-olsr/po/mr/olsr.po4
-rw-r--r--applications/luci-app-olsr/po/ms/olsr.po4
-rw-r--r--applications/luci-app-olsr/po/no/olsr.po4
-rw-r--r--applications/luci-app-olsr/po/pl/olsr.po4
-rw-r--r--applications/luci-app-olsr/po/pt-br/olsr.po4
-rw-r--r--applications/luci-app-olsr/po/pt/olsr.po4
-rw-r--r--applications/luci-app-olsr/po/ro/olsr.po4
-rw-r--r--applications/luci-app-olsr/po/ru/olsr.po4
-rw-r--r--applications/luci-app-olsr/po/sk/olsr.po4
-rw-r--r--applications/luci-app-olsr/po/sv/olsr.po4
-rw-r--r--applications/luci-app-olsr/po/templates/olsr.pot4
-rw-r--r--applications/luci-app-olsr/po/tr/olsr.po4
-rw-r--r--applications/luci-app-olsr/po/uk/olsr.po4
-rw-r--r--applications/luci-app-olsr/po/vi/olsr.po4
-rw-r--r--applications/luci-app-olsr/po/zh-cn/olsr.po4
-rw-r--r--applications/luci-app-olsr/po/zh-tw/olsr.po4
34 files changed, 68 insertions, 68 deletions
diff --git a/applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua b/applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua
index 79c9d5da6..bc04dbdc9 100644
--- a/applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua
+++ b/applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua
@@ -224,8 +224,8 @@ i:tab("addrs", translate("IP Addresses"))
i:tab("timing", translate("Timing and Validity"))
mode = i:taboption("general", ListValue, "Mode", translate("Mode"),
- translate("Interface Mode is used to prevent unnecessary packet forwarding on switched ethernet interfaces. "..
- "valid Modes are \"mesh\" and \"ether\". Default is \"mesh\"."))
+ translate("Interface mode is used to prevent unnecessary packet forwarding on switched ethernet interfaces. "..
+ "Valid modes are \"mesh\" and \"ether\". Default is \"mesh\"."))
mode:value("mesh")
mode:value("ether")
mode.optional = true
diff --git a/applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua b/applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua
index bb3567677..8418a07ba 100644
--- a/applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua
+++ b/applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua
@@ -218,8 +218,8 @@ i:tab("addrs", translate("IP Addresses"))
i:tab("timing", translate("Timing and Validity"))
mode = i:taboption("general", ListValue, "Mode", translate("Mode"),
- translate("Interface Mode is used to prevent unnecessary packet forwarding on switched ethernet interfaces. "..
- "valid Modes are \"mesh\" and \"ether\". Default is \"mesh\"."))
+ translate("Interface mode is used to prevent unnecessary packet forwarding on switched ethernet interfaces. "..
+ "Valid modes are \"mesh\" and \"ether\". Default is \"mesh\"."))
mode:value("mesh")
mode:value("ether")
mode.optional = true
diff --git a/applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua b/applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua
index 7de2ad9b4..df757c641 100644
--- a/applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua
+++ b/applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua
@@ -49,8 +49,8 @@ network.widget = "radio"
network.nocreate = true
mode = i:taboption("general", ListValue, "Mode", translate("Mode"),
- translate("Interface Mode is used to prevent unnecessary packet forwarding on switched ethernet interfaces. "..
- "valid Modes are \"mesh\" and \"ether\". Default is \"mesh\"."))
+ translate("Interface mode is used to prevent unnecessary packet forwarding on switched ethernet interfaces. "..
+ "Valid modes are \"mesh\" and \"ether\". Default is \"mesh\"."))
mode:value("mesh")
mode:value("ether")
mode.optional = true
diff --git a/applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface6.lua b/applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface6.lua
index 00f242df1..77e423d93 100644
--- a/applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface6.lua
+++ b/applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface6.lua
@@ -49,8 +49,8 @@ network.widget = "radio"
network.nocreate = true
mode = i:taboption("general", ListValue, "Mode", translate("Mode"),
- translate("Interface Mode is used to prevent unnecessary packet forwarding on switched ethernet interfaces. "..
- "valid Modes are \"mesh\" and \"ether\". Default is \"mesh\"."))
+ translate("Interface mode is used to prevent unnecessary packet forwarding on switched ethernet interfaces. "..
+ "Valid modes are \"mesh\" and \"ether\". Default is \"mesh\"."))
mode:value("mesh")
mode:value("ether")
mode.optional = true
diff --git a/applications/luci-app-olsr/po/bg/olsr.po b/applications/luci-app-olsr/po/bg/olsr.po
index 123ac0644..78e52aca7 100644
--- a/applications/luci-app-olsr/po/bg/olsr.po
+++ b/applications/luci-app-olsr/po/bg/olsr.po
@@ -415,8 +415,8 @@ msgstr ""
#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:52
#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface6.lua:52
msgid ""
-"Interface Mode is used to prevent unnecessary packet forwarding on switched "
-"ethernet interfaces. valid Modes are \"mesh\" and \"ether\". Default is "
+"Interface mode is used to prevent unnecessary packet forwarding on switched "
+"ethernet interfaces. Valid modes are \"mesh\" and \"ether\". Default is "
"\"mesh\"."
msgstr ""
diff --git a/applications/luci-app-olsr/po/ca/olsr.po b/applications/luci-app-olsr/po/ca/olsr.po
index da1ae9d98..dfed601a4 100644
--- a/applications/luci-app-olsr/po/ca/olsr.po
+++ b/applications/luci-app-olsr/po/ca/olsr.po
@@ -420,8 +420,8 @@ msgstr "Interfície"
#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:52
#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface6.lua:52
msgid ""
-"Interface Mode is used to prevent unnecessary packet forwarding on switched "
-"ethernet interfaces. valid Modes are \"mesh\" and \"ether\". Default is "
+"Interface mode is used to prevent unnecessary packet forwarding on switched "
+"ethernet interfaces. Valid modes are \"mesh\" and \"ether\". Default is "
"\"mesh\"."
msgstr ""
diff --git a/applications/luci-app-olsr/po/cs/olsr.po b/applications/luci-app-olsr/po/cs/olsr.po
index 9792cce43..57bf52017 100644
--- a/applications/luci-app-olsr/po/cs/olsr.po
+++ b/applications/luci-app-olsr/po/cs/olsr.po
@@ -415,8 +415,8 @@ msgstr "Rozhraní"
#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:52
#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface6.lua:52
msgid ""
-"Interface Mode is used to prevent unnecessary packet forwarding on switched "
-"ethernet interfaces. valid Modes are \"mesh\" and \"ether\". Default is "
+"Interface mode is used to prevent unnecessary packet forwarding on switched "
+"ethernet interfaces. Valid modes are \"mesh\" and \"ether\". Default is "
"\"mesh\"."
msgstr ""
diff --git a/applications/luci-app-olsr/po/de/olsr.po b/applications/luci-app-olsr/po/de/olsr.po
index 5591eed16..408b83f2a 100644
--- a/applications/luci-app-olsr/po/de/olsr.po
+++ b/applications/luci-app-olsr/po/de/olsr.po
@@ -460,8 +460,8 @@ msgstr "Schnittstelle"
#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:52
#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface6.lua:52
msgid ""
-"Interface Mode is used to prevent unnecessary packet forwarding on switched "
-"ethernet interfaces. valid Modes are \"mesh\" and \"ether\". Default is "
+"Interface mode is used to prevent unnecessary packet forwarding on switched "
+"ethernet interfaces. Valid modes are \"mesh\" and \"ether\". Default is "
"\"mesh\"."
msgstr ""
"Mit dieser Einstellung kann unnötiges Forwarden von Paketen auf geswitchten "
diff --git a/applications/luci-app-olsr/po/el/olsr.po b/applications/luci-app-olsr/po/el/olsr.po
index 11bfd1f14..712273e56 100644
--- a/applications/luci-app-olsr/po/el/olsr.po
+++ b/applications/luci-app-olsr/po/el/olsr.po
@@ -417,8 +417,8 @@ msgstr "Διεπαφή"
#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:52
#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface6.lua:52
msgid ""
-"Interface Mode is used to prevent unnecessary packet forwarding on switched "
-"ethernet interfaces. valid Modes are \"mesh\" and \"ether\". Default is "
+"Interface mode is used to prevent unnecessary packet forwarding on switched "
+"ethernet interfaces. Valid modes are \"mesh\" and \"ether\". Default is "
"\"mesh\"."
msgstr ""
diff --git a/applications/luci-app-olsr/po/en/olsr.po b/applications/luci-app-olsr/po/en/olsr.po
index b28157eb5..7b7ea67a3 100644
--- a/applications/luci-app-olsr/po/en/olsr.po
+++ b/applications/luci-app-olsr/po/en/olsr.po
@@ -417,8 +417,8 @@ msgstr ""
#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:52
#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface6.lua:52
msgid ""
-"Interface Mode is used to prevent unnecessary packet forwarding on switched "
-"ethernet interfaces. valid Modes are \"mesh\" and \"ether\". Default is "
+"Interface mode is used to prevent unnecessary packet forwarding on switched "
+"ethernet interfaces. Valid modes are \"mesh\" and \"ether\". Default is "
"\"mesh\"."
msgstr ""
diff --git a/applications/luci-app-olsr/po/es/olsr.po b/applications/luci-app-olsr/po/es/olsr.po
index db5ea7e89..bb58b0b29 100644
--- a/applications/luci-app-olsr/po/es/olsr.po
+++ b/applications/luci-app-olsr/po/es/olsr.po
@@ -452,8 +452,8 @@ msgstr "Interfaz"
#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:52
#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface6.lua:52
msgid ""
-"Interface Mode is used to prevent unnecessary packet forwarding on switched "
-"ethernet interfaces. valid Modes are \"mesh\" and \"ether\". Default is "
+"Interface mode is used to prevent unnecessary packet forwarding on switched "
+"ethernet interfaces. Valid modes are \"mesh\" and \"ether\". Default is "
"\"mesh\"."
msgstr ""
"El modo de interfaz se usar para evitar traspaso innecesario de paquetes en "
diff --git a/applications/luci-app-olsr/po/fr/olsr.po b/applications/luci-app-olsr/po/fr/olsr.po
index 6c0f3032d..0dba49abc 100644
--- a/applications/luci-app-olsr/po/fr/olsr.po
+++ b/applications/luci-app-olsr/po/fr/olsr.po
@@ -417,8 +417,8 @@ msgstr "Interface"
#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:52
#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface6.lua:52
msgid ""
-"Interface Mode is used to prevent unnecessary packet forwarding on switched "
-"ethernet interfaces. valid Modes are \"mesh\" and \"ether\". Default is "
+"Interface mode is used to prevent unnecessary packet forwarding on switched "
+"ethernet interfaces. Valid modes are \"mesh\" and \"ether\". Default is "
"\"mesh\"."
msgstr ""
diff --git a/applications/luci-app-olsr/po/he/olsr.po b/applications/luci-app-olsr/po/he/olsr.po
index d3cc11444..8bad7e980 100644
--- a/applications/luci-app-olsr/po/he/olsr.po
+++ b/applications/luci-app-olsr/po/he/olsr.po
@@ -411,8 +411,8 @@ msgstr ""
#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:52
#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface6.lua:52
msgid ""
-"Interface Mode is used to prevent unnecessary packet forwarding on switched "
-"ethernet interfaces. valid Modes are \"mesh\" and \"ether\". Default is "
+"Interface mode is used to prevent unnecessary packet forwarding on switched "
+"ethernet interfaces. Valid modes are \"mesh\" and \"ether\". Default is "
"\"mesh\"."
msgstr ""
diff --git a/applications/luci-app-olsr/po/hi/olsr.po b/applications/luci-app-olsr/po/hi/olsr.po
index 34494aad8..fc21ff83e 100644
--- a/applications/luci-app-olsr/po/hi/olsr.po
+++ b/applications/luci-app-olsr/po/hi/olsr.po
@@ -415,8 +415,8 @@ msgstr ""
#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:52
#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface6.lua:52
msgid ""
-"Interface Mode is used to prevent unnecessary packet forwarding on switched "
-"ethernet interfaces. valid Modes are \"mesh\" and \"ether\". Default is "
+"Interface mode is used to prevent unnecessary packet forwarding on switched "
+"ethernet interfaces. Valid modes are \"mesh\" and \"ether\". Default is "
"\"mesh\"."
msgstr ""
diff --git a/applications/luci-app-olsr/po/hu/olsr.po b/applications/luci-app-olsr/po/hu/olsr.po
index 748c10243..3b0297f87 100644
--- a/applications/luci-app-olsr/po/hu/olsr.po
+++ b/applications/luci-app-olsr/po/hu/olsr.po
@@ -461,8 +461,8 @@ msgstr "Csatoló"
#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface6.lua:52
#, fuzzy
msgid ""
-"Interface Mode is used to prevent unnecessary packet forwarding on switched "
-"ethernet interfaces. valid Modes are \"mesh\" and \"ether\". Default is "
+"Interface mode is used to prevent unnecessary packet forwarding on switched "
+"ethernet interfaces. Valid modes are \"mesh\" and \"ether\". Default is "
"\"mesh\"."
msgstr ""
"A csatoló módját arra használják, hogy megakadályozzák a szükségtelen "
diff --git a/applications/luci-app-olsr/po/it/olsr.po b/applications/luci-app-olsr/po/it/olsr.po
index 9fd90e1ea..954612356 100644
--- a/applications/luci-app-olsr/po/it/olsr.po
+++ b/applications/luci-app-olsr/po/it/olsr.po
@@ -441,8 +441,8 @@ msgstr "Interfaccia"
#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:52
#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface6.lua:52
msgid ""
-"Interface Mode is used to prevent unnecessary packet forwarding on switched "
-"ethernet interfaces. valid Modes are \"mesh\" and \"ether\". Default is "
+"Interface mode is used to prevent unnecessary packet forwarding on switched "
+"ethernet interfaces. Valid modes are \"mesh\" and \"ether\". Default is "
"\"mesh\"."
msgstr ""
diff --git a/applications/luci-app-olsr/po/ja/olsr.po b/applications/luci-app-olsr/po/ja/olsr.po
index ac028e5f0..a24617ee2 100644
--- a/applications/luci-app-olsr/po/ja/olsr.po
+++ b/applications/luci-app-olsr/po/ja/olsr.po
@@ -449,8 +449,8 @@ msgstr "インターフェース"
#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:52
#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface6.lua:52
msgid ""
-"Interface Mode is used to prevent unnecessary packet forwarding on switched "
-"ethernet interfaces. valid Modes are \"mesh\" and \"ether\". Default is "
+"Interface mode is used to prevent unnecessary packet forwarding on switched "
+"ethernet interfaces. Valid modes are \"mesh\" and \"ether\". Default is "
"\"mesh\"."
msgstr ""
"インターフェースモードは、スイッチ上のイーサネットインターフェースに不必要な"
diff --git a/applications/luci-app-olsr/po/ko/olsr.po b/applications/luci-app-olsr/po/ko/olsr.po
index bb211c53d..2598986e7 100644
--- a/applications/luci-app-olsr/po/ko/olsr.po
+++ b/applications/luci-app-olsr/po/ko/olsr.po
@@ -415,8 +415,8 @@ msgstr ""
#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:52
#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface6.lua:52
msgid ""
-"Interface Mode is used to prevent unnecessary packet forwarding on switched "
-"ethernet interfaces. valid Modes are \"mesh\" and \"ether\". Default is "
+"Interface mode is used to prevent unnecessary packet forwarding on switched "
+"ethernet interfaces. Valid modes are \"mesh\" and \"ether\". Default is "
"\"mesh\"."
msgstr ""
diff --git a/applications/luci-app-olsr/po/mr/olsr.po b/applications/luci-app-olsr/po/mr/olsr.po
index 1ff1cc8c9..d4c84d657 100644
--- a/applications/luci-app-olsr/po/mr/olsr.po
+++ b/applications/luci-app-olsr/po/mr/olsr.po
@@ -417,8 +417,8 @@ msgstr ""
#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:52
#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface6.lua:52
msgid ""
-"Interface Mode is used to prevent unnecessary packet forwarding on switched "
-"ethernet interfaces. valid Modes are \"mesh\" and \"ether\". Default is "
+"Interface mode is used to prevent unnecessary packet forwarding on switched "
+"ethernet interfaces. Valid modes are \"mesh\" and \"ether\". Default is "
"\"mesh\"."
msgstr ""
diff --git a/applications/luci-app-olsr/po/ms/olsr.po b/applications/luci-app-olsr/po/ms/olsr.po
index 418452e34..810ad73e5 100644
--- a/applications/luci-app-olsr/po/ms/olsr.po
+++ b/applications/luci-app-olsr/po/ms/olsr.po
@@ -410,8 +410,8 @@ msgstr ""
#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:52
#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface6.lua:52
msgid ""
-"Interface Mode is used to prevent unnecessary packet forwarding on switched "
-"ethernet interfaces. valid Modes are \"mesh\" and \"ether\". Default is "
+"Interface mode is used to prevent unnecessary packet forwarding on switched "
+"ethernet interfaces. Valid modes are \"mesh\" and \"ether\". Default is "
"\"mesh\"."
msgstr ""
diff --git a/applications/luci-app-olsr/po/no/olsr.po b/applications/luci-app-olsr/po/no/olsr.po
index 735538cfc..d3d7c4f5f 100644
--- a/applications/luci-app-olsr/po/no/olsr.po
+++ b/applications/luci-app-olsr/po/no/olsr.po
@@ -415,8 +415,8 @@ msgstr ""
#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:52
#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface6.lua:52
msgid ""
-"Interface Mode is used to prevent unnecessary packet forwarding on switched "
-"ethernet interfaces. valid Modes are \"mesh\" and \"ether\". Default is "
+"Interface mode is used to prevent unnecessary packet forwarding on switched "
+"ethernet interfaces. Valid modes are \"mesh\" and \"ether\". Default is "
"\"mesh\"."
msgstr ""
diff --git a/applications/luci-app-olsr/po/pl/olsr.po b/applications/luci-app-olsr/po/pl/olsr.po
index 9c2327558..97dc579c5 100644
--- a/applications/luci-app-olsr/po/pl/olsr.po
+++ b/applications/luci-app-olsr/po/pl/olsr.po
@@ -446,8 +446,8 @@ msgstr "Interfejs"
#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:52
#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface6.lua:52
msgid ""
-"Interface Mode is used to prevent unnecessary packet forwarding on switched "
-"ethernet interfaces. valid Modes are \"mesh\" and \"ether\". Default is "
+"Interface mode is used to prevent unnecessary packet forwarding on switched "
+"ethernet interfaces. Valid modes are \"mesh\" and \"ether\". Default is "
"\"mesh\"."
msgstr ""
"Tryb interfejsu jest używany, aby zapobiec niepotrzebnemu przekazywaniu "
diff --git a/applications/luci-app-olsr/po/pt-br/olsr.po b/applications/luci-app-olsr/po/pt-br/olsr.po
index 67a5e7445..3698ab513 100644
--- a/applications/luci-app-olsr/po/pt-br/olsr.po
+++ b/applications/luci-app-olsr/po/pt-br/olsr.po
@@ -484,8 +484,8 @@ msgstr "Interface"
#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:52
#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface6.lua:52
msgid ""
-"Interface Mode is used to prevent unnecessary packet forwarding on switched "
-"ethernet interfaces. valid Modes are \"mesh\" and \"ether\". Default is "
+"Interface mode is used to prevent unnecessary packet forwarding on switched "
+"ethernet interfaces. Valid modes are \"mesh\" and \"ether\". Default is "
"\"mesh\"."
msgstr ""
"Modo da Interface é usado para evitar o encaminhamento desnecessário de "
diff --git a/applications/luci-app-olsr/po/pt/olsr.po b/applications/luci-app-olsr/po/pt/olsr.po
index fa1e869dd..5b38c283f 100644
--- a/applications/luci-app-olsr/po/pt/olsr.po
+++ b/applications/luci-app-olsr/po/pt/olsr.po
@@ -464,8 +464,8 @@ msgstr "Interface"
#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:52
#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface6.lua:52
msgid ""
-"Interface Mode is used to prevent unnecessary packet forwarding on switched "
-"ethernet interfaces. valid Modes are \"mesh\" and \"ether\". Default is "
+"Interface mode is used to prevent unnecessary packet forwarding on switched "
+"ethernet interfaces. Valid modes are \"mesh\" and \"ether\". Default is "
"\"mesh\"."
msgstr ""
"O Modo de Interface é usado para para prevenir encaminhamentos "
diff --git a/applications/luci-app-olsr/po/ro/olsr.po b/applications/luci-app-olsr/po/ro/olsr.po
index fc9a5ae19..a4f6ca6d6 100644
--- a/applications/luci-app-olsr/po/ro/olsr.po
+++ b/applications/luci-app-olsr/po/ro/olsr.po
@@ -416,8 +416,8 @@ msgstr "Interfaţă"
#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:52
#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface6.lua:52
msgid ""
-"Interface Mode is used to prevent unnecessary packet forwarding on switched "
-"ethernet interfaces. valid Modes are \"mesh\" and \"ether\". Default is "
+"Interface mode is used to prevent unnecessary packet forwarding on switched "
+"ethernet interfaces. Valid modes are \"mesh\" and \"ether\". Default is "
"\"mesh\"."
msgstr ""
diff --git a/applications/luci-app-olsr/po/ru/olsr.po b/applications/luci-app-olsr/po/ru/olsr.po
index 9bb112a4e..c90d9aaf1 100644
--- a/applications/luci-app-olsr/po/ru/olsr.po
+++ b/applications/luci-app-olsr/po/ru/olsr.po
@@ -461,8 +461,8 @@ msgstr "Интерфейс"
#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:52
#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface6.lua:52
msgid ""
-"Interface Mode is used to prevent unnecessary packet forwarding on switched "
-"ethernet interfaces. valid Modes are \"mesh\" and \"ether\". Default is "
+"Interface mode is used to prevent unnecessary packet forwarding on switched "
+"ethernet interfaces. Valid modes are \"mesh\" and \"ether\". Default is "
"\"mesh\"."
msgstr ""
"Режим интерфейса используется для предотвращения ненужных перенаправлений на "
diff --git a/applications/luci-app-olsr/po/sk/olsr.po b/applications/luci-app-olsr/po/sk/olsr.po
index bbb43e6fb..87f14a2d7 100644
--- a/applications/luci-app-olsr/po/sk/olsr.po
+++ b/applications/luci-app-olsr/po/sk/olsr.po
@@ -415,8 +415,8 @@ msgstr ""
#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:52
#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface6.lua:52
msgid ""
-"Interface Mode is used to prevent unnecessary packet forwarding on switched "
-"ethernet interfaces. valid Modes are \"mesh\" and \"ether\". Default is "
+"Interface mode is used to prevent unnecessary packet forwarding on switched "
+"ethernet interfaces. Valid modes are \"mesh\" and \"ether\". Default is "
"\"mesh\"."
msgstr ""
diff --git a/applications/luci-app-olsr/po/sv/olsr.po b/applications/luci-app-olsr/po/sv/olsr.po
index 939c55a56..1bb4d8c6f 100644
--- a/applications/luci-app-olsr/po/sv/olsr.po
+++ b/applications/luci-app-olsr/po/sv/olsr.po
@@ -417,8 +417,8 @@ msgstr "Gränssnitt"
#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:52
#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface6.lua:52
msgid ""
-"Interface Mode is used to prevent unnecessary packet forwarding on switched "
-"ethernet interfaces. valid Modes are \"mesh\" and \"ether\". Default is "
+"Interface mode is used to prevent unnecessary packet forwarding on switched "
+"ethernet interfaces. Valid modes are \"mesh\" and \"ether\". Default is "
"\"mesh\"."
msgstr ""
diff --git a/applications/luci-app-olsr/po/templates/olsr.pot b/applications/luci-app-olsr/po/templates/olsr.pot
index eee014d67..8f94e51d0 100644
--- a/applications/luci-app-olsr/po/templates/olsr.pot
+++ b/applications/luci-app-olsr/po/templates/olsr.pot
@@ -404,8 +404,8 @@ msgstr ""
#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:52
#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface6.lua:52
msgid ""
-"Interface Mode is used to prevent unnecessary packet forwarding on switched "
-"ethernet interfaces. valid Modes are \"mesh\" and \"ether\". Default is "
+"Interface mode is used to prevent unnecessary packet forwarding on switched "
+"ethernet interfaces. Valid modes are \"mesh\" and \"ether\". Default is "
"\"mesh\"."
msgstr ""
diff --git a/applications/luci-app-olsr/po/tr/olsr.po b/applications/luci-app-olsr/po/tr/olsr.po
index c5eb54aa5..c988bb723 100644
--- a/applications/luci-app-olsr/po/tr/olsr.po
+++ b/applications/luci-app-olsr/po/tr/olsr.po
@@ -411,8 +411,8 @@ msgstr ""
#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:52
#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface6.lua:52
msgid ""
-"Interface Mode is used to prevent unnecessary packet forwarding on switched "
-"ethernet interfaces. valid Modes are \"mesh\" and \"ether\". Default is "
+"Interface mode is used to prevent unnecessary packet forwarding on switched "
+"ethernet interfaces. Valid modes are \"mesh\" and \"ether\". Default is "
"\"mesh\"."
msgstr ""
diff --git a/applications/luci-app-olsr/po/uk/olsr.po b/applications/luci-app-olsr/po/uk/olsr.po
index 121f7c4f4..46abbfe88 100644
--- a/applications/luci-app-olsr/po/uk/olsr.po
+++ b/applications/luci-app-olsr/po/uk/olsr.po
@@ -416,8 +416,8 @@ msgstr "Інтерфейс"
#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:52
#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface6.lua:52
msgid ""
-"Interface Mode is used to prevent unnecessary packet forwarding on switched "
-"ethernet interfaces. valid Modes are \"mesh\" and \"ether\". Default is "
+"Interface mode is used to prevent unnecessary packet forwarding on switched "
+"ethernet interfaces. Valid modes are \"mesh\" and \"ether\". Default is "
"\"mesh\"."
msgstr ""
diff --git a/applications/luci-app-olsr/po/vi/olsr.po b/applications/luci-app-olsr/po/vi/olsr.po
index b1b11ea15..1f16910f9 100644
--- a/applications/luci-app-olsr/po/vi/olsr.po
+++ b/applications/luci-app-olsr/po/vi/olsr.po
@@ -420,8 +420,8 @@ msgstr ""
#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:52
#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface6.lua:52
msgid ""
-"Interface Mode is used to prevent unnecessary packet forwarding on switched "
-"ethernet interfaces. valid Modes are \"mesh\" and \"ether\". Default is "
+"Interface mode is used to prevent unnecessary packet forwarding on switched "
+"ethernet interfaces. Valid modes are \"mesh\" and \"ether\". Default is "
"\"mesh\"."
msgstr ""
diff --git a/applications/luci-app-olsr/po/zh-cn/olsr.po b/applications/luci-app-olsr/po/zh-cn/olsr.po
index 204d5d2c5..7dea7dd45 100644
--- a/applications/luci-app-olsr/po/zh-cn/olsr.po
+++ b/applications/luci-app-olsr/po/zh-cn/olsr.po
@@ -434,8 +434,8 @@ msgstr "接口"
#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:52
#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface6.lua:52
msgid ""
-"Interface Mode is used to prevent unnecessary packet forwarding on switched "
-"ethernet interfaces. valid Modes are \"mesh\" and \"ether\". Default is "
+"Interface mode is used to prevent unnecessary packet forwarding on switched "
+"ethernet interfaces. Valid modes are \"mesh\" and \"ether\". Default is "
"\"mesh\"."
msgstr ""
"接口模式用于防止以太网交换机接口上不必要的数据包转发。有效模式"
diff --git a/applications/luci-app-olsr/po/zh-tw/olsr.po b/applications/luci-app-olsr/po/zh-tw/olsr.po
index 8d2d7889e..3927dc1de 100644
--- a/applications/luci-app-olsr/po/zh-tw/olsr.po
+++ b/applications/luci-app-olsr/po/zh-tw/olsr.po
@@ -433,8 +433,8 @@ msgstr "介面"
#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:52
#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface6.lua:52
msgid ""
-"Interface Mode is used to prevent unnecessary packet forwarding on switched "
-"ethernet interfaces. valid Modes are \"mesh\" and \"ether\". Default is "
+"Interface mode is used to prevent unnecessary packet forwarding on switched "
+"ethernet interfaces. Valid modes are \"mesh\" and \"ether\". Default is "
"\"mesh\"."
msgstr ""
"介面模式用於防止乙太網交換機介面上不必要的資料包轉發。有效模式"