diff options
Diffstat (limited to 'view')
-rw-r--r-- | view/nl/hmessages.po | 2 | ||||
-rw-r--r-- | view/nl/hstrings.php | 2 | ||||
-rw-r--r-- | view/php/full.php | 9 |
3 files changed, 7 insertions, 6 deletions
diff --git a/view/nl/hmessages.po b/view/nl/hmessages.po index 5d22d74a5..c98121122 100644 --- a/view/nl/hmessages.po +++ b/view/nl/hmessages.po @@ -8378,7 +8378,7 @@ msgstr "Afleveringsrapport" msgid "%d comment" msgid_plural "%d comments" msgstr[0] "%d reactie" -msgstr[1] "%d reacties getoond" +msgstr[1] "%d reacties" #: ../../Zotlabs/Lib/ThreadItem.php:343 ../../Zotlabs/Lib/ThreadItem.php:344 #, php-format diff --git a/view/nl/hstrings.php b/view/nl/hstrings.php index 07ecb0602..3581950aa 100644 --- a/view/nl/hstrings.php +++ b/view/nl/hstrings.php @@ -1816,7 +1816,7 @@ App::$strings["share"] = "delen"; App::$strings["Delivery Report"] = "Afleveringsrapport"; App::$strings["%d comment"] = array( 0 => "%d reactie", - 1 => "%d reacties getoond", + 1 => "%d reacties", ); App::$strings["View %s's profile - %s"] = "Profiel van %s bekijken - %s"; App::$strings["to"] = "aan"; diff --git a/view/php/full.php b/view/php/full.php index 094874766..1a9cd9a84 100644 --- a/view/php/full.php +++ b/view/php/full.php @@ -1,14 +1,15 @@ -<!DOCTYPE html> +<!DOCTYPE html > <html prefix="og: http://ogp.me/ns#"> <head> <title><?php if(x($page,'title')) echo $page['title'] ?></title> <script>var baseurl="<?php echo z_root() ?>";</script> <?php if(x($page,'htmlhead')) echo $page['htmlhead'] ?> </head> -<body> +<body <?php if($page['direction']) echo 'dir="rtl"' ?> > + <?php if(x($page,'banner')) echo $page['banner']; ?> <header><?php if(x($page,'header')) echo $page['header']; ?></header> - <nav class="navbar fixed-top navbar-expand-md navbar-dark bg-dark"><?php if(x($page,'nav')) echo $page['nav']; ?></nav> - <section><?php if(x($page,'content')) echo $page['content']; ?> + <nav class="navbar fixed-top navbar-expand-lg navbar-dark bg-dark"><?php if(x($page,'nav')) echo $page['nav']; ?></nav> + <section id="region_2"><?php if(x($page,'content')) echo $page['content']; ?> <div id="page-footer"></div> </section> </body> |