Admin menu translated

This commit is contained in:
sb0001 2021-11-01 10:58:51 +01:00
commit f082644aa1
18 changed files with 56 additions and 5 deletions

View file

@ -255,3 +255,6 @@ of="of"
Edit_post="Edit"
View_post="View"
Posts_by="Posts by"
Pages="Pages"
Menu="Menu"
Popular="Popular"

View file

@ -49,7 +49,7 @@ Popular_posts = "Beliebte Beiträge"
Popular_tags = "Beliebte Tags"
Posted_in = "Veröffentlicht unter"
Posted_on = "Veröffentlicht am"
Posts = "Beiträge"
Posts = "Inhalte"
Prev = "Voriger"
Prev_post = "Vorheriger Beitrag"
Publish = "Veröffentlichen"
@ -215,7 +215,7 @@ Your_New_Config_Key="Your New Config Key"
Your_New_Value="Your New Value"
Related_widget_posts_at_most="Maximale Anzahl von Beiträgen im Widget Ähnliche Beiträge"
Recent_posts_widget_at_most="Maximale Anzahl von Beiträgen im Widget Letzte Beiträge"
Popular_posts_widget="Widget Beliebte Beiträge"
Popular_posts_widget="Zugriffszähler aktivieren und Widget Beliebte Beiträge einblenden"
Popular_posts_widget_at_most="Maximale Anzahl von Beiträgen im Widget Beliebte Beiträge"
Comments="Kommentare"
To_using_Disqus_or_Facebook_comment_you_need_to_provide_Disqus_shortname_or_Facebook_App_ID="To using Disqus or Facebook comment you need to provide Disqus shortname or Facebook App ID."
@ -253,3 +253,6 @@ of="von"
Edit_post="Bearbeiten"
View_post="Ansicht"
Posts_by="Beiträge von"
Pages="Seiten"
Menu="Menüs"
Popular="Zugriffe"

View file

@ -253,3 +253,6 @@ of="of"
Edit_post="Edit"
View_post="View"
Posts_by="Posts by"
Pages="Pages"
Menu="Menu"
Popular="Popular"

View file

@ -252,3 +252,6 @@ of="of"
Edit_post="Edit"
View_post="View"
Posts_by="Posts by"
Pages="Pages"
Menu="Menu"
Popular="Popular"

View file

@ -253,3 +253,6 @@ of="de"
Edit_post="Edit"
View_post="View"
Posts_by="Posts by"
Pages="Pages"
Menu="Menu"
Popular="Popular"

View file

@ -253,3 +253,6 @@ of="of"
Edit_post="Edit"
View_post="View"
Posts_by="Posts by"
Pages="Pages"
Menu="Menu"
Popular="Popular"

View file

@ -253,3 +253,6 @@ of="of"
Edit_post="Edit"
View_post="View"
Posts_by="Posts by"
Pages="Pages"
Menu="Menu"
Popular="Popular"

View file

@ -253,3 +253,6 @@ of="of"
Edit_post="Edit"
View_post="View"
Posts_by="Posts by"
Pages="Pages"
Menu="Menu"
Popular="Popular"

View file

@ -253,3 +253,6 @@ of="of"
Edit_post="Edit"
View_post="View"
Posts_by="Posts by"
Pages="Pages"
Menu="Menu"
Popular="Popular"

View file

@ -253,3 +253,6 @@ of="of"
Edit_post="Edit"
View_post="View"
Posts_by="Posts by"
Pages="Pages"
Menu="Menu"
Popular="Popular"

View file

@ -253,3 +253,6 @@ of="of"
Edit_post="Edit"
View_post="View"
Posts_by="Posts by"
Pages="Pages"
Menu="Menu"
Popular="Popular"

View file

@ -254,3 +254,6 @@ of="of"
Edit_post="Edit"
View_post="View"
Posts_by="Posts by"
Pages="Pages"
Menu="Menu"
Popular="Popular"

View file

@ -253,3 +253,6 @@ of="of"
Edit_post="Edit"
View_post="View"
Posts_by="Posts by"
Pages="Pages"
Menu="Menu"
Popular="Popular"

View file

@ -254,3 +254,6 @@ of="of"
Edit_post="Edit"
View_post="View"
Posts_by="Posts by"
Pages="Pages"
Menu="Menu"
Popular="Popular"

View file

@ -271,3 +271,6 @@ of="of"
Edit_post="Edit"
View_post="View"
Posts_by="Posts by"
Pages="Pages"
Menu="Menu"
Popular="Popular"

View file

@ -253,3 +253,6 @@ of="of"
Edit_post="Edit"
View_post="View"
Posts_by="Posts by"
Pages="Pages"
Menu="Menu"
Popular="Popular"

View file

@ -253,3 +253,6 @@ of="of"
Edit_post="Edit"
View_post="View"
Posts_by="Posts by"
Pages="Pages"
Menu="Menu"
Popular="Popular"

View file

@ -2897,15 +2897,15 @@ EOF;
if ($role === 'admin') {
echo '<li class="tb-posts"><a href="' . $base . 'admin/posts">' . i18n('Posts') . '</a></li>';
if (config('views.counter') == 'true') {
echo '<li class="tb-popular"><a href="' . $base . 'admin/popular">Popular</a></li>';
echo '<li class="tb-popular"><a href="' . $base . 'admin/popular">' . i18n('Popular') . '</a></li>';
}
}
echo '<li class="tb-mine"><a href="' . $base . 'admin/pages">Pages</a></li>';
echo '<li class="tb-mine"><a href="' . $base . 'admin/pages">' . i18n('Pages') . '</a></li>';
echo '<li class="tb-draft"><a href="' . $base . 'admin/draft">' . i18n('Draft') . '</a></li>';
if ($role === 'admin') {
echo '<li class="tb-categories"><a href="' . $base . 'admin/categories">' . i18n('Categories') . '</a></li>';
}
echo '<li class="tb-import"><a href="' . $base . 'admin/menu">Menu</a></li>';
echo '<li class="tb-import"><a href="' . $base . 'admin/menu">' . i18n('Menu') . '</a></li>';
if ($role === 'admin') {
echo '<li class="tb-config"><a href="' . $base . 'admin/config">' . i18n('Config') . '</a></li>';
}