mirror of
https://github.com/ether/etherpad-lite.git
synced 2025-04-24 17:36:14 -04:00

Not every string was localized: * `/admin/plugins` has some CSS magic to draw the tables of plugins differently on narrow (mobile) screens, and the l10n library we use does not support that particular magic. The strings that were not localized are "Name", "Description", "Version", and "Time". These strings are only stuck in English when the page is viewed on a narrow screen; normal desktop users will see translated strings. The CSS magic ought to be replaced with something more robust (lots of nested `div`s); those remaining strings can be localized whenever that happens. * Strings from external sources such as plugin descriptions, error messages, and `settings.json` comments are not localized.
28 lines
1.1 KiB
HTML
28 lines
1.1 KiB
HTML
<!doctype html>
|
|
<html>
|
|
<head>
|
|
<title data-l10n-id="admin.page-title">Admin Dashboard - Etherpad</title>
|
|
<meta name="viewport" content="width=device-width">
|
|
<link rel="stylesheet" href="../static/css/admin.css">
|
|
<script src="../static/js/jquery.js"></script>
|
|
<script src="../socket.io/socket.io.js"></script>
|
|
<link rel="localizations" type="application/l10n+json" href="../locales.json" />
|
|
<script src="../static/js/html10n.js"></script>
|
|
<script src="../static/js/l10n.js"></script>
|
|
</head>
|
|
<body>
|
|
<div id="wrapper">
|
|
<div class="menu">
|
|
<h1><a href="../">Etherpad</a></h1>
|
|
<ul>
|
|
<% e.begin_block("adminMenu"); %>
|
|
<li><a href="plugins" data-l10n-id="admin_plugins">Plugin manager</a></li>
|
|
<li><a href="settings" data-l10n-id="admin_settings">Settings</a></li>
|
|
<li><a href="plugins/info" data-l10n-id="admin_plugins_info">Troubleshooting information</a></li>
|
|
<% e.end_block(); %>
|
|
</ul>
|
|
</div>
|
|
</div>
|
|
<div style="display:none"><a href="/javascript" data-jslicense="1">JavaScript license information</a></div>
|
|
</body>
|
|
</html>
|