diff options
Diffstat (limited to 'modules/luci-mod-freifunk')
7 files changed, 122 insertions, 153 deletions
diff --git a/modules/luci-mod-freifunk/htdocs/luci-static/flashing.html b/modules/luci-mod-freifunk/htdocs/luci-static/flashing.html index 43e51236d7..f9e882ff30 100644 --- a/modules/luci-mod-freifunk/htdocs/luci-static/flashing.html +++ b/modules/luci-mod-freifunk/htdocs/luci-static/flashing.html @@ -45,7 +45,7 @@ if( time_remaining <= 0 ) { window.clearInterval(interval); - location.href = 'http://' + location.hostname + '/'; + location.href = 'http://' + location.host + '/'; } else { diff --git a/modules/luci-mod-freifunk/htdocs/luci-static/resources/OSMLatLon.htm b/modules/luci-mod-freifunk/htdocs/luci-static/resources/OSMLatLon.htm index 18be30be35..9f017c9e72 100644 --- a/modules/luci-mod-freifunk/htdocs/luci-static/resources/OSMLatLon.htm +++ b/modules/luci-mod-freifunk/htdocs/luci-static/resources/OSMLatLon.htm @@ -6,7 +6,7 @@ <script type="text/javascript" src="http://www.openstreetmap.org/openlayers/OpenStreetMap.js"></script> <script type="text/javascript" src="osm.js"></script> </head> -<body onload="init();drawmap();" style="padding:0px; margin:0px"> +<body onload="init();drawmap();" style="padding:0px; margin:0px"> <div id="map"></div> <div style="position:absolute; bottom:0%; width:100%; background:url('cbi/black_60.png'); font-size:10px; color:#fff;z-index:1000"> Map by <a href="http://www.openstreetmap.org" title="www.openstreetmap.org" style="color:#fff;" >openstreetmap.org</a>, License CC-BY-SA @@ -16,5 +16,4 @@ Longitude: <input id="osmlon" name="osmlon" type="text" size="20" style="font-size:10px;"> </span> </div> - </body> diff --git a/modules/luci-mod-freifunk/luasrc/controller/freifunk/freifunk.lua b/modules/luci-mod-freifunk/luasrc/controller/freifunk/freifunk.lua index 84669dce84..adad7508bc 100644 --- a/modules/luci-mod-freifunk/luasrc/controller/freifunk/freifunk.lua +++ b/modules/luci-mod-freifunk/luasrc/controller/freifunk/freifunk.lua @@ -70,14 +70,14 @@ function index() page.target = cbi("freifunk/basics") page.title = _("Basic Settings") page.order = 5 - + page = node("admin", "freifunk", "basics", "profile") page.target = cbi("freifunk/profile") page.title = _("Profile") page.order = 10 page = node("admin", "freifunk", "basics", "profile_expert") - page.target = cbi("freifunk/profile_expert") + page.target = form("freifunk/profile_expert") page.title = _("Profile (Expert)") page.order = 20 @@ -102,7 +102,7 @@ function zeroes() local zeroes = string.rep(string.char(0), 8192) local cnt = 0 local lim = 1024 * 1024 * 1024 - + http.prepare_content("application/x-many-zeroes") while cnt < lim do @@ -188,7 +188,6 @@ function jsonstatus() root.network = {} root.wireless = {devices = {}, interfaces = {}, status = {}} local wifs = root.wireless.interfaces - local netdata = luci.sys.net.deviceinfo() or {} for _, vif in ipairs(ffwifs) do root.network[vif] = cursor:get_all("network", vif) diff --git a/modules/luci-mod-freifunk/luasrc/view/freifunk/contact.htm b/modules/luci-mod-freifunk/luasrc/view/freifunk/contact.htm index 1add595c6c..dca35376cb 100644 --- a/modules/luci-mod-freifunk/luasrc/view/freifunk/contact.htm +++ b/modules/luci-mod-freifunk/luasrc/view/freifunk/contact.htm @@ -31,33 +31,33 @@ end <fieldset xmlns="http://www.w3.org/1999/xhtml" class="cbi-section"> <legend><%:Operator%></legend> - <table cellspacing="10" width="100%" style="text-align:left"> - <tr><th width="33%"><%:Nickname%>:</th><td><%=nickname%></td></tr> - <tr><th width="33%"><%:Realname%>:</th><td><%=name%></td></tr> - <tr><th width="33%"><%:Homepage%>:</th><td> + <div class="table" cellspacing="10" width="100%" style="text-align:left"> + <div class="tr"><div class="th" width="33%"><%:Nickname%>:</div><div class="td"><%=nickname%></div></div> + <div class="tr"><div class="th" width="33%"><%:Realname%>:</div><div class="td"><%=name%></div></div> + <div class="tr"><div class="th" width="33%"><%:Homepage%>:</div><div class="td"> <% for k, v in ipairs(homepage) do %> <a href="<%=v%>"><%=v%></a><br /> <% end %> - </td></tr> - <tr><th width="33%"><%:E-Mail%>:</th><td><a href="mailto:<%=mail%>"><%=mail%></a></td></tr> - <tr><th width="33%"><%:Phone%>:</th><td><%=phone%></td></tr> - </table> + </div></div> + <div class="tr"><div class="th" width="33%"><%:E-Mail%>:</div><div class="td"><a href="mailto:<%=mail%>"><%=mail%></a></div></div> + <div class="tr"><div class="th" width="33%"><%:Phone%>:</div><div class="td"><%=phone%></div></div> + </div> </fieldset> <fieldset xmlns="http://www.w3.org/1999/xhtml" class="cbi-section"> <legend><%:Location%></legend> - <table cellspacing="10" width="100%" style="text-align:left"> - <tr><th width="33%"><%:Location%>:</th><td><%=location%></td></tr> - <tr><th width="33%"><%:Coordinates%>:</th><td><%=lat%> <%=lon%> (<a href="<%=pcdata(luci.dispatcher.build_url("freifunk/map"))%>"><%:Show on map%>)</a></td></tr> - </table> + <div class="table" cellspacing="10" width="100%" style="text-align:left"> + <div class="tr"><div class="th" width="33%"><%:Location%>:</div><div class="td"><%=location%></div></div> + <div class="tr"><div class="th" width="33%"><%:Coordinates%>:</div><div class="td"><%=lat%> <%=lon%> (<a href="<%=pcdata(luci.dispatcher.build_url("freifunk/map"))%>"><%:Show on map%>)</a></div></div> + </div> </fieldset> <% if note then %> <fieldset xmlns="http://www.w3.org/1999/xhtml" class="cbi-section"> <legend><%:Notice%></legend> - <table cellspacing="10" width="100%" style="text-align:left"> - <tr><td><%=note%></td></tr> - </table> + <div class="table" cellspacing="10" width="100%" style="text-align:left"> + <div class="tr"><div class="td"><%=note%></div></div> + </div> </fieldset> <%end%> diff --git a/modules/luci-mod-freifunk/luasrc/view/freifunk/public_status.htm b/modules/luci-mod-freifunk/luasrc/view/freifunk/public_status.htm index 1dc1d8b0d1..572f8585d1 100644 --- a/modules/luci-mod-freifunk/luasrc/view/freifunk/public_status.htm +++ b/modules/luci-mod-freifunk/luasrc/view/freifunk/public_status.htm @@ -110,7 +110,6 @@ end <%+header%> -<script type="text/javascript" src="<%=resource%>/cbi.js"></script> <script type="text/javascript">//<![CDATA[ XHR.poll(<%=interval%> , '<%=REQUEST_URI%>', { status: 1 }, @@ -238,25 +237,25 @@ end <h2><%:Wireless Overview%></h2> <% if not has_iwinfo then %> - <div class="errorbox"> - <strong><%:Package libiwinfo required!%></strong><br /> - <%_The <em>libiwinfo</em> package is not installed. You must install this component for working wireless configuration!%> + <div class="alert-message warning"> + <h4><%:Package libiwinfo required!%></h4> + <p><%_The <em>libiwinfo</em> package is not installed. You must install this component for working wireless configuration!%></p> </div> <% end %> <div class="cbi-section"> <div class="cbi-section-node"> - <table class="cbi-section-table"> - <tr class="cbi-section-table-titles"> - <th class="cbi-section-table-cell"><%:Signal%></th> - <th class="cbi-section-table-cell"><%:Bitrate%></th> - <th class="cbi-section-table-cell"><%:SSID%></th> - <th class="cbi-section-table-cell"><%:BSSID%></th> - <th class="cbi-section-table-cell"><%:Channel%></th> - <th class="cbi-section-table-cell"><%:Mode%></th> - <th class="cbi-section-table-cell"><%:TX%>-<%:Power%></th> - <th class="cbi-section-table-cell"><%:Interface%></th> - </tr> + <div class="table cbi-section-table"> + <div class="tr cbi-section-table-titles"> + <div class="th cbi-section-table-cell"><%:Signal%></div> + <div class="th cbi-section-table-cell"><%:Bitrate%></div> + <div class="th cbi-section-table-cell"><%:SSID%></div> + <div class="th cbi-section-table-cell"><%:BSSID%></div> + <div class="th cbi-section-table-cell"><%:Channel%></div> + <div class="th cbi-section-table-cell"><%:Mode%></div> + <div class="th cbi-section-table-cell"><%:TX%>-<%:Power%></div> + <div class="th cbi-section-table-cell"><%:Interface%></div> + </div> <% for _, dev in ipairs(devices) do local net @@ -301,20 +300,20 @@ end end local interface = net.iwinfo.ifname or "N/A" %> - <tr class="cbi-section-table-row cbi-rowstyle-1"> - <td class="cbi-value-field" id="<%=net:ifname()%>-signal"><%=signal_string%></td> - <td class="cbi-value-field" id="<%=net:ifname()%>-bitrate"><%=bitrate%></td> - <td class="cbi-value-field" id="<%=net:ifname()%>-ssid"><%=ssid%></td> - <td class="cbi-value-field" id="<%=net:ifname()%>-bssid"><%=bssid%></td> - <td class="cbi-value-field" id="<%=net:ifname()%>-channel"><%=chan%></td> - <td class="cbi-value-field" id="<%=net:ifname()%>-mode"><%=mode%></td> - <td class="cbi-value-field" id="<%=net:ifname()%>-txpower"><%=txpwr%></td> - <td class="cbi-value-field"><%=interface%></td> - </tr> + <div class="tr cbi-section-table-row cbi-rowstyle-1"> + <div class="td cbi-value-field" id="<%=net:ifname()%>-signal"><%=signal_string%></div> + <div class="td cbi-value-field" id="<%=net:ifname()%>-bitrate"><%=bitrate%></div> + <div class="td cbi-value-field" id="<%=net:ifname()%>-ssid"><%=ssid%></div> + <div class="td cbi-value-field" id="<%=net:ifname()%>-bssid"><%=bssid%></div> + <div class="td cbi-value-field" id="<%=net:ifname()%>-channel"><%=chan%></div> + <div class="td cbi-value-field" id="<%=net:ifname()%>-mode"><%=mode%></div> + <div class="td cbi-value-field" id="<%=net:ifname()%>-txpower"><%=txpwr%></div> + <div class="td cbi-value-field"><%=interface%></div> + </div> <% end end end %> - </table> + </div> </div> </div> </div> @@ -328,35 +327,35 @@ end <% if not def4 and not def6 then %> <%:No default routes known.%> <%else%> - <table class="cbi-section-table"> - <tr class="cbi-section-table-titles"> - <th class="cbi-section-table-cell"><%:Network%></th> - <th class="cbi-section-table-cell"><%:Interface%></th> - <th class="cbi-section-table-cell"><%:Gateway%></th> - <th class="cbi-section-table-cell"><%:Metric%></th> - </tr> + <div class="table cbi-section-table"> + <div class="tr cbi-section-table-titles"> + <div class="th cbi-section-table-cell"><%:Network%></div> + <div class="th cbi-section-table-cell"><%:Interface%></div> + <div class="th cbi-section-table-cell"><%:Gateway%></div> + <div class="th cbi-section-table-cell"><%:Metric%></div> + </div> <% if def4 then %> - <tr class="cbi-section-table-row cbi-rowstyle-1"> - <td class="cbi-value-field" id="v4dst"><%=def4.dest%></td> - <td class="cbi-value-field" id="v4dev"><%=def4.dev%></td> - <td class="cbi-value-field" id="v4gw"><%=def4.gateway%></td> - <td class="cbi-value-field" id="v4metr"><%=def4.metr%></td> - </tr> + <div class="tr cbi-section-table-row cbi-rowstyle-1"> + <div class="td cbi-value-field" id="v4dst"><%=def4.dest%></div> + <div class="td cbi-value-field" id="v4dev"><%=def4.dev%></div> + <div class="td cbi-value-field" id="v4gw"><%=def4.gateway%></div> + <div class="td cbi-value-field" id="v4metr"><%=def4.metr%></div> + </div> <% end if def6 then %> - <tr class="cbi-section-table-row cbi-rowstyle-2"> - <td class="cbi-value-field" id="v6dst"><%=def6.dest%></td> - <td class="cbi-value-field" id="v6dev"><%=def6.dev%></td> - <td class="cbi-value-field" id="v6gw"><%=def6.gateway%></td> - <td class="cbi-value-field" id="v6metr"><%=def6.metr%></td> - </tr> + <div class="tr cbi-section-table-row cbi-rowstyle-2"> + <div class="td cbi-value-field" id="v6dst"><%=def6.dest%></div> + <div class="td cbi-value-field" id="v6dev"><%=def6.dev%></div> + <div class="td cbi-value-field" id="v6gw"><%=def6.gateway%></div> + <div class="td cbi-value-field" id="v6metr"><%=def6.metr%></div> + </div> <% end %> - </table> + </div> <% end %> </div> </div> diff --git a/modules/luci-mod-freifunk/po/ru/freifunk.po b/modules/luci-mod-freifunk/po/ru/freifunk.po index 0943a3b485..f9b44a2c61 100644 --- a/modules/luci-mod-freifunk/po/ru/freifunk.po +++ b/modules/luci-mod-freifunk/po/ru/freifunk.po @@ -1,34 +1,32 @@ msgid "" msgstr "" +"Content-Type: text/plain; charset=UTF-8\n" "Project-Id-Version: LuCI: freifunk\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2009-05-19 19:36+0200\n" -"PO-Revision-Date: 2013-09-06 09:41+0200\n" -"Last-Translator: datasheet <michael.gritsaenko@gmail.com>\n" -"Language-Team: Russian <x12ozmouse@ya.ru>\n" -"Language: ru\n" +"POT-Creation-Date: 2013-09-06 09:41+0200\n" +"PO-Revision-Date: 2018-01-30 17:02+0300\n" +"Last-Translator: Vladimir aka sunny <picfun@ya.ru>\n" +"Language-Team: http://cyber-place.ru\n" "MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%" -"10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" -"X-Generator: Pootle 2.0.6\n" -"X-Poedit-SourceCharset: UTF-8\n" +"Language: ru\n" +"X-Generator: Poedit 1.8.7.1\n" +"Project-Info: Это технический перевод, не дословный. Главное-удобный русский " +"интерфейс, все проверялось в графическом режиме, совместим с другими apps\n" msgid "BSSID" msgstr "BSSID" msgid "Bad (ETX > 10)" -msgstr "Плохой (ETX > 10)" +msgstr "Плохо (ETX > 10)" msgid "Basic Settings" -msgstr "Базовые настройки" +msgstr "Основные настройки" msgid "Basic settings" -msgstr "Базовые настройки" +msgstr "Основные настройки" msgid "Basic settings are incomplete. Please go to" -msgstr "Базовые настройки не верны. Пожалуйста, перейдите в" +msgstr "Основные настройки не верны. Пожалуйста, перейдите в" msgid "Basic system settings" msgstr "Основные настройки системы" @@ -60,7 +58,7 @@ msgid "Confirm Upgrade" msgstr "Подтвердить обновление" msgid "Contact" -msgstr "Контактная информация" +msgstr "Контакты для связи" msgid "Contact information is incomplete. Please go to" msgstr "Контактная информация не верна. Пожалуйста, перейдите в" @@ -81,7 +79,7 @@ msgid "Diversity is enabled for device" msgstr "Неопределенность пути включена" msgid "E-Mail" -msgstr "Эл. почта" +msgstr "E-Mail" msgid "ESSID" msgstr "ESSID" @@ -94,6 +92,8 @@ msgstr "Включить IPv6" msgid "Enable a virtual access point (VAP) by default if possible." msgstr "" +"Включить виртуальную точку доступа (VAP) с настройками по умолчанию, если " +"это возможно." msgid "Error" msgstr "Ошибка" @@ -105,7 +105,7 @@ msgid "Freifunk" msgstr "Freifunk" msgid "Freifunk Overview" -msgstr "Обзор Freifunk" +msgstr "Главное меню Freifunk" msgid "Freifunk Remote Update" msgstr "Удалённое обновление Freifunk" @@ -117,11 +117,10 @@ msgid "Go to" msgstr "Перейти" msgid "Good (2 < ETX < 4)" -msgstr "Хороший (2 < ETX < 4)" +msgstr "Хорошо (2 < ETX < 4)" -#, fuzzy msgid "Green" -msgstr "Зелёный" +msgstr "Зеленый" msgid "Hello and welcome in the network of" msgstr "Здравствуйте и добро пожаловать в сеть" @@ -135,9 +134,8 @@ msgstr "Домашняя страница" msgid "Hostname" msgstr "Имя хоста" -#, fuzzy msgid "IPv6 Config" -msgstr "Конфигурация IPv6" +msgstr "Настройка IPv6" msgid "IPv6 Prefix" msgstr "Префикс IPv6" @@ -162,30 +160,29 @@ msgid "" "Internet access depends on technical and organisational conditions and may " "or may not work for you." msgstr "" -"Доступ в интернет зависит от технических и организационных условий и может " +"Доступ в Интернет зависит от технических и организационных условий и может " "быть не доступен для вас." -# It - access point msgid "It is operated by" -msgstr "Она управляется" +msgstr "Точка доступа управляется" msgid "Keep configuration" -msgstr "Сохранить конфигурацию" +msgstr "Сохранить настройки" msgid "Latitude" msgstr "Широта" msgid "Legend" -msgstr "Надпись" +msgstr "События" msgid "Load" msgstr "Загрузка" msgid "Local Time" -msgstr "Местное время" +msgstr "Дата и время" msgid "Location" -msgstr "Местоположение" +msgstr "Расположение" msgid "Longitude" msgstr "Долгота" @@ -197,10 +194,10 @@ msgid "Map Error" msgstr "Ошибка карты" msgid "Memory" -msgstr "Память" +msgstr "Оперативная память (RAM)" msgid "Mesh prefix" -msgstr "Префикс ячейки" +msgstr "Mesh префикс" msgid "Metric" msgstr "Метрика" @@ -212,16 +209,16 @@ msgid "Network" msgstr "Сеть" msgid "Network for client DHCP addresses" -msgstr "Сеть для клиентских DHCP-адресов" +msgstr "Сеть для клиентских<br />DHCP-адресов" msgid "Nickname" -msgstr "Псевдоним" +msgstr "Никнейм" msgid "No default routes known." msgstr "Маршруты по умолчанию не известны." msgid "Notice" -msgstr "Внимание" +msgstr "Заметка" msgid "OLSR" msgstr "OLSR" @@ -229,15 +226,14 @@ msgstr "OLSR" msgid "Operator" msgstr "Оператор" -#, fuzzy msgid "Orange" msgstr "Оранжевый" msgid "Overview" -msgstr "Обзор" +msgstr "Главное меню" msgid "Package libiwinfo required!" -msgstr "Требуется libiwinfo!" +msgstr "Требуется пакет libiwinfo!" msgid "Phone" msgstr "Телефон" @@ -252,7 +248,7 @@ msgid "Power" msgstr "Питание" msgid "Processor" -msgstr "Процессор" +msgstr "CPU" msgid "Profile" msgstr "Профиль" @@ -263,7 +259,6 @@ msgstr "Профиль (эксперт)" msgid "Realname" msgstr "Имя" -#, fuzzy msgid "Red" msgstr "Красный" @@ -275,7 +270,7 @@ msgid "" "up if you are connected to the Internet." msgstr "" "Укажите ваше местоположение на карте с помощью щелчка мыши. Карта будет " -"показана только если вы подключены к интернету." +"показана только если вы подключены к Интернету." msgid "Show OpenStreetMap" msgstr "Показать карту OpenStreetMap" @@ -296,16 +291,16 @@ msgid "Statistics" msgstr "Статистика" msgid "Status" -msgstr "Статус" +msgstr "Состояние" msgid "Still usable (4 < ETX < 10)" -msgstr "" +msgstr "Еще можно использовать (4 < ETX < 10)" msgid "System" msgstr "Система" msgid "TX" -msgstr "TX" +msgstr "Передача (TX)" msgid "" "The <em>libiwinfo</em> package is not installed. You must install this " @@ -319,9 +314,9 @@ msgid "" "network.<br /> Please make sure that the nameservice plugin is properly " "configured and that the <em>latlon_file</em> option is enabled." msgstr "" -"Сервис OLSRd не сконфигурирован на получение данных о местоположении из сети." -"<br /> Пожалуйста, удостоверьтесь, что модуль пространства имён настроен " -"правильно и что опция <em>latlon_file</em> включена." +"Сервис OLSRd не настроен на получение данных о местоположении из сети.<br /> " +"Пожалуйста, удостоверьтесь, что модуль пространства имён настроен правильно " +"и что опция <em>latlon_file</em> включена." msgid "The installed firmware is the most recent version." msgstr "Установлена прошивка самой последней версии." @@ -331,12 +326,12 @@ msgid "" "settings define the default values for the wizard and DO NOT affect the " "actual configuration of the router." msgstr "" -"Это базовые настройки вашего сообщества. Они определяют стандартные " -"настройки для мастера установки и НЕ влияют на конечную конфигурацию " +"Это основные настройки вашего сообщества. Они определяют стандартные " +"настройки для 'Мастера настройки Mesh сети' и НЕ влияют на конечные настройки " "маршрутизатора." msgid "These are the settings of your local community." -msgstr "Это настройки для вашего сообщества." +msgstr "Здесь вы сможете настроить ваше сообщество." msgid "" "These pages will assist you in setting up your router for Freifunk or " @@ -358,27 +353,26 @@ msgid "Uptime" msgstr "Время работы" msgid "VAP" -msgstr "" +msgstr "Виртуальная точка доступа (VAP)" msgid "Verify downloaded images" msgstr "Проверять загруженные образы" msgid "Very good (ETX < 2)" -msgstr "Очень хороший (ETX < 2)" +msgstr "Очень хорошо (ETX < 2)" msgid "" "We are an initiative to establish a free, independent and open wireless mesh " "network." msgstr "" "Мы - это сообщество, цель которого создать бесплатную, независимую и " -"открытую беспроводную ячеистую сеть." +"открытую беспроводную Mesh сеть." msgid "Wireless Overview" -msgstr "Обзор беспроводных сетей" +msgstr "Список беспроводных сетей" -#, fuzzy msgid "Yellow" -msgstr "Жёлтый" +msgstr "Желтый" msgid "" "You can display additional content on the public index page by inserting " @@ -394,7 +388,8 @@ msgid "" msgstr "Вы можете найти дополнительную информацию о Freifunk по адресу" msgid "You can manually edit the selected community profile here." -msgstr "Здесь вы можете редактировать выбранный профиль сообщества." +msgstr "" +"Здесь вы сможете отредактировать config файл выбранного профиля сообщества." msgid "" "You need to select a profile before you can edit it. To select a profile go " @@ -426,26 +421,3 @@ msgstr "использовано" msgid "wireless settings" msgstr "настройки беспроводной сети" - -#~ msgid "" -#~ "No services can be shown, because olsrd is not running or the olsrd-" -#~ "nameservice Plugin is not loaded." -#~ msgstr "" -#~ "Сервис не может быть показан, так как oslrd не запущен или модуль olsrd-" -#~ "nameservice не загружен." - -#~ msgid "Services" -#~ msgstr "Службы" - -#~ msgid "Source" -#~ msgstr "Источник" - -#~ msgid "" -#~ "The <em>libiwinfo-lua</em> package is not installed. You must install " -#~ "this component for working wireless configuration!" -#~ msgstr "" -#~ "Пакет <em>libiwinfo-lua</em> не установлен. Вам необходимо установить " -#~ "этот компонент для настройки беспроводной сети!" - -#~ msgid "Url" -#~ msgstr "Url" diff --git a/modules/luci-mod-freifunk/po/zh-cn/freifunk.po b/modules/luci-mod-freifunk/po/zh-cn/freifunk.po index 2d58b1653b..d273055d12 100644 --- a/modules/luci-mod-freifunk/po/zh-cn/freifunk.po +++ b/modules/luci-mod-freifunk/po/zh-cn/freifunk.po @@ -143,7 +143,7 @@ msgid "If selected then the default content element is not shown." msgstr "如果选中,那么默认内容元素将不显示。" msgid "If you are interested in our project then contact the local community" -msgstr "如果你对我们的项目感兴趣,请联系当地的社区" +msgstr "如果您对我们的项目感兴趣,请联系当地的社区" msgid "Index Page" msgstr "索引页" @@ -155,7 +155,7 @@ msgid "" "Internet access depends on technical and organisational conditions and may " "or may not work for you." msgstr "" -"访问因特网取决于技术和机构的前提,可能会、也可能不会像你设想的那样运作。" +"访问因特网取决于技术和机构的前提,可能会、也可能不会像您设想的那样运作。" msgid "It is operated by" msgstr "它是由" @@ -324,7 +324,7 @@ msgstr "当地社区设置。" msgid "" "These pages will assist you in setting up your router for Freifunk or " "similar wireless community networks." -msgstr "这些页面将帮助你设置路由器Freifunk或类似的无线社区网络。" +msgstr "这些页面将帮助您设置路由器Freifunk或类似的无线社区网络。" msgid "This is the access point" msgstr "AP" @@ -368,7 +368,7 @@ msgstr "" msgid "" "You can find further information about the global Freifunk initiative at" -msgstr "你可以找到更多有关全球Freifunk活动的信息" +msgstr "您可以找到更多有关全球Freifunk活动的信息" msgid "You can manually edit the selected community profile here." msgstr "您可以在这里手动编辑所选社区配置文件。" @@ -376,7 +376,7 @@ msgstr "您可以在这里手动编辑所选社区配置文件。" msgid "" "You need to select a profile before you can edit it. To select a profile go " "to" -msgstr "编辑它之前,你需要选择一个配置文件。选择配置文件" +msgstr "编辑它之前,您需要选择一个配置文件。选择配置文件" msgid "and fill out all required fields." msgstr "填写所有必填字段。" |