* Prepare german translation cleanup
[project/luci.git] / modules / admin-core / luasrc / view / admin_system / packages.htm
index 49c46a0..685c3d1 100644 (file)
@@ -1,31 +1,31 @@
 <%+header%>
-<h1><%:system System%></h1>
-<h2><%:a_s_packages Paketverwaltung%></h2>
+<h1><%:system%></h1>
+<h2><%:a_s_packages%></h2>
 
 <br />
 
 <% if install or remove or update or upgrade then %>
-<div class="code"><strong><%:status Status%>:</strong><br />
+<div class="code"><strong><%:status%>:</strong><br />
 <% if update then %>
-       <%:a_s_packages_update Paketlisten aktualisieren%>: <% if update == 0 then %><span class="ok"><%:ok OK%></span><% else %><span class="error"><%:error Fehler%> (<%:code Code%> <%=update%>)</span><% end %><br />
+       <%:a_s_packages_update%>: <% if update == 0 then %><span class="ok"><%:ok%></span><% else %><span class="error"><%:error%> (<%:code%> <%=update%>)</span><% end %><br />
 <% end %>
 <% if upgrade then%>
-       <%:a_s_packages_upgrade Installierte Pakete aktualisieren%>: <% if upgrade == 0 then %><span class="ok"><%:ok OK%></span><% else %><span class="error"><%:error Fehler%> (<%:code Code%> <%=upgrade%>)</span><% end %><br />
+       <%:a_s_packages_upgrade%>: <% if upgrade == 0 then %><span class="ok"><%:ok%></span><% else %><span class="error"><%:error%> (<%:code%> <%=upgrade%>)</span><% end %><br />
 <% end %>
 <% if install then for k,v in pairs(install) do %>
-       <%:a_s_packages_install Installation von%> '<%=k%>': <% if v == 0 then %><span class="ok"><%:ok OK%></span><% else %><span class="error"><%:error Fehler%> (<%:code Code%> <%=v%>)</span><% end %><br />
+       <%:a_s_packages_install%> '<%=k%>': <% if v == 0 then %><span class="ok"><%:ok%></span><% else %><span class="error"><%:error%> (<%:code%> <%=v%>)</span><% end %><br />
 <% end end %>
 <% if remove then for k,v in pairs(remove) do %>
-       <%:a_s_packages_remove Deinstallation von%> '<%=k%>': <% if v == 0 then %><span class="ok"><%:ok OK%></span><% else %><span class="error"><%:error Fehler%> (<%:code Code%> <%=v%>)</span><% end %><br />
+       <%:a_s_packages_remove%> '<%=k%>': <% if v == 0 then %><span class="ok"><%:ok%></span><% else %><span class="error"><%:error%> (<%:code%> <%=v%>)</span><% end %><br />
 <% end end %>
 </div>
 <br />
 <% end %>
 
 <div>
-<a href="<%=controller%>/admin/system/packages/ipkg"><%:a_s_packages_ipkg Paketlisten und Installationsziele bearbeiten%></a><br />
-<a href="<%=controller%>/admin/system/packages?update=1"><%:a_s_packages_updatelist Paketlisten aktualisieren%></a><br />
-<a href="<%=controller%>/admin/system/packages?upgrade=1"><%:a_s_packages_upgrade Installierte Pakete aktualisieren%></a>
+<a href="<%=controller%>/admin/system/packages/ipkg"><%:a_s_packages_ipkg%></a><br />
+<a href="<%=controller%>/admin/system/packages?update=1"><%:a_s_packages_updatelist%></a><br />
+<a href="<%=controller%>/admin/system/packages?upgrade=1"><%:a_s_packages_upgrade%></a>
 </div>
 
 <br />
 
 <form method="post" action="<%=controller%>/admin/system/packages">
        <div>
-               <span class="bold"><%:a_s_packages_installurl Paket herunterladen und installieren%>:</span><br />
+               <span class="bold"><%:a_s_packages_installurl%>:</span><br />
                <input type="text" name="url" size="30" value="" />
-               <input type="submit" name="submit" value="<%:ok OK%>" />
+               <input type="submit" name="submit" value="<%:ok%>" />
        </div>
        
        <br />
        <br />
 
        <div>
-               <span class="bold"><%:filter Filter%>:</span>
+               <span class="bold"><%:filter%>:</span>
                <input type="text" name="query" size="20" value="<%=query%>" />
-               <input type="submit" name="search" value="<%:a_s_packages_search Paket suchen%>" />
-               <input type="submit" name="submit" value="<%:a_s_packages_do Aktionen ausführen%>" />
+               <input type="submit" name="search" value="<%:a_s_packages_search%>" />
+               <input type="submit" name="submit" value="<%:a_s_packages_do%>" />
        </div>
        
        <br />
        <div>
        <table style="font-size: 0.8em">
                <tr>
-                       <th><%:a_s_packages_name Paketname%></th>
-                       <th><%:version Version%></th>
-                       <th><%:install Installieren%></th>
-                       <th><%:delete Löschen%></th>
-                       <th><%:descr Beschreibung%></th>
+                       <th><%:a_s_packages_name%></th>
+                       <th><%:version%></th>
+                       <th><%:install%></th>
+                       <th><%:delete%></th>
+                       <th><%:descr%></th>
                </tr>
                <% for k, pkg in pairs(pkgs) do %>      
                <tr>
                        <td><%=pkg.Package%></td>
                        <td><%=pkg.Version%></td>
-                       <td><% if not pkg.Status or not pkg.Status.installed then %><input type="checkbox" name="install.<%=pkg.Package%>" value="1" /><% else %><%:installed installiert%><% end %></td>
-                       <td><% if pkg.Status and pkg.Status.installed then %><input type="checkbox" name="remove.<%=pkg.Package%>" value="1" /><% else %><%:notinstalled nicht installiert%><% end %></td>
+                       <td><% if not pkg.Status or not pkg.Status.installed then %><input type="checkbox" name="install.<%=pkg.Package%>" value="1" /><% else %><%:installed%><% end %></td>
+                       <td><% if pkg.Status and pkg.Status.installed then %><input type="checkbox" name="remove.<%=pkg.Package%>" value="1" /><% else %><%:notinstalled%><% end %></td>
                        <td><%=pkg.Description%></td>
                </tr>
                <% end %>
        </table>
        </div>
        <br />
-       <input type="submit" name="submit" value="<%:a_s_packages_do Aktionen ausführen%>" />
+       <input type="submit" name="submit" value="<%:a_s_packages_do%>" />
 </form>
 <%+footer%>
\ No newline at end of file