diff --git a/modules/consentAdmin/hooks/hook_configpage.php b/modules/consentAdmin/hooks/hook_configpage.php index f4db9b01d4e38b67c86897fa8a870e55a6df1088..44ced16f2bf42b2d2ddf058aa581c182dfee57f7 100644 --- a/modules/consentAdmin/hooks/hook_configpage.php +++ b/modules/consentAdmin/hooks/hook_configpage.php @@ -7,13 +7,9 @@ function consentAdmin_hook_configpage(\SimpleSAML\XHTML\Template &$template) { - $template->data['links_config']['consentAdmin'] = [ + $template->data['links']['consentAdmin'] = [ 'href' => SimpleSAML\Module::getModuleURL('consentAdmin/consentAdmin.php'), - 'text' => '{consentAdmin:consentadmin:link_consentAdmin}', + 'text' => \SimpleSAML\Locale\Translate::noop('Consent administration'), ]; - - $config = \SimpleSAML\Configuration::getInstance(); - if ($config->getBoolean('usenewui', false)) { - $template->getLocalization()->addModuleDomain('consentAdmin'); - } + $template->getLocalization()->addModuleDomain('consentAdmin'); } diff --git a/modules/consentAdmin/hooks/hook_frontpage.php b/modules/consentAdmin/hooks/hook_frontpage.php new file mode 100644 index 0000000000000000000000000000000000000000..b1903a580ab08beeed8ecc3b742b09a1ea3cf67a --- /dev/null +++ b/modules/consentAdmin/hooks/hook_frontpage.php @@ -0,0 +1,18 @@ +<?php +/** + * Hook to add the consentAdmin module to the frontpage. + * + * @param array &$links The links on the frontpage, split into sections. + */ + +function consentAdmin_hook_frontpage(&$links) +{ + assert(is_array($links)); + assert(array_key_exists('links', $links)); + + $links['config'][] = [ + 'href' => SimpleSAML\Module::getModuleURL('consentAdmin/consentAdmin.php'), + 'text' => '{consentAdmin:consentadmin:link_consentAdmin}', + ]; +} + diff --git a/modules/consentAdmin/locales/en/LC_MESSAGES/consentAdmin.po b/modules/consentAdmin/locales/en/LC_MESSAGES/consentAdmin.po index ea3d3207f8797a56112448c1a83f502544d8d7cd..8d8ec9af93c686b3ec07d8a739bf131605bde62f 100644 --- a/modules/consentAdmin/locales/en/LC_MESSAGES/consentAdmin.po +++ b/modules/consentAdmin/locales/en/LC_MESSAGES/consentAdmin.po @@ -168,3 +168,6 @@ msgstr "show/hide attributes" msgid "Organisation" msgstr "Organisation" +msgid "Consent administration" +msgstr "Consent administration" + diff --git a/modules/consentAdmin/locales/es/LC_MESSAGES/consentAdmin.po b/modules/consentAdmin/locales/es/LC_MESSAGES/consentAdmin.po index 6d937dde8fbd11e3432a25e23aca819de8925cef..21b40476c638ab89b898d2d6f48622ffd5197195 100644 --- a/modules/consentAdmin/locales/es/LC_MESSAGES/consentAdmin.po +++ b/modules/consentAdmin/locales/es/LC_MESSAGES/consentAdmin.po @@ -162,3 +162,5 @@ msgstr "Mostrar/ocultar atributos" msgid "Organisation" msgstr "OrganizaciĂłn" +msgid "Consent administration" +msgstr "AdministraciĂłn del consentimiento" diff --git a/modules/consentAdmin/locales/nb/LC_MESSAGES/consentAdmin.po b/modules/consentAdmin/locales/nb/LC_MESSAGES/consentAdmin.po index d981bba9d2827e2f8b6cb04274cb75b6f7263237..a82000525acd691440e258632c8f5454c12b95b1 100644 --- a/modules/consentAdmin/locales/nb/LC_MESSAGES/consentAdmin.po +++ b/modules/consentAdmin/locales/nb/LC_MESSAGES/consentAdmin.po @@ -158,3 +158,5 @@ msgstr "vis/skjul persondata" msgid "Organisation" msgstr "Organisasjon" +msgid "Consent administration" +msgstr "Samtykke administrasjon" diff --git a/modules/consentAdmin/locales/nn/LC_MESSAGES/consentAdmin.po b/modules/consentAdmin/locales/nn/LC_MESSAGES/consentAdmin.po index dcfd7cba639b552d509c9cf1116c7db5571215ad..e4a7127178514f308ec098b0fc6a26d6e73f4094 100644 --- a/modules/consentAdmin/locales/nn/LC_MESSAGES/consentAdmin.po +++ b/modules/consentAdmin/locales/nn/LC_MESSAGES/consentAdmin.po @@ -158,3 +158,5 @@ msgstr "vis/skjul personinformasjon" msgid "Organisation" msgstr "Organisasjon" +msgid "Consent administration" +msgstr "Samtykke administrasjon" diff --git a/modules/core/www/frontpage_config.php b/modules/core/www/frontpage_config.php index d01ade0c366ee63bfae789888419ffd67f88e756..d1c4480dc94c4c7d5b0ba5263bd86db2bdab03a3 100644 --- a/modules/core/www/frontpage_config.php +++ b/modules/core/www/frontpage_config.php @@ -199,6 +199,4 @@ $t->data['requiredmap'] = [ $t->data['version'] = $config->getVersion(); $t->data['directory'] = dirname(dirname(dirname(dirname(__FILE__)))); -\SimpleSAML\Module::callHooks('configpage', $t); - $t->show(); diff --git a/modules/cron/hooks/hook_configpage.php b/modules/cron/hooks/hook_configpage.php index 474c6acbc96ff5181d5eef298aecb833e3f3e3ac..dc3c8400b7169e66c4b4cd97756e1a0cbeccca4e 100644 --- a/modules/cron/hooks/hook_configpage.php +++ b/modules/cron/hooks/hook_configpage.php @@ -7,13 +7,9 @@ function cron_hook_configpage(\SimpleSAML\XHTML\Template &$template) { - $template->data['links_config']['cron'] = [ + $template->data['links']['cron'] = [ 'href' => SimpleSAML\Module::getModuleURL('cron/croninfo.php'), - 'text' => '{cron:cron:link_cron}', + 'text' => \SimpleSAML\Locale\Translate::noop('Cron module information page'), ]; - - $config = \SimpleSAML\Configuration::getInstance(); - if ($config->getBoolean('usenewui', false)) { - $template->getLocalization()->addModuleDomain('cron'); - } + $template->getLocalization()->addModuleDomain('cron'); } diff --git a/modules/cron/hooks/hook_frontpage.php b/modules/cron/hooks/hook_frontpage.php new file mode 100644 index 0000000000000000000000000000000000000000..73fcd215b74521dfb827f505f5896ec49a47de39 --- /dev/null +++ b/modules/cron/hooks/hook_frontpage.php @@ -0,0 +1,18 @@ +<?php +/** + * Hook to add the modinfo module to the frontpage. + * + * @param array &$links The links on the frontpage, split into sections. + */ + +function cron_hook_frontpage(&$links) +{ + assert(is_array($links)); + assert(array_key_exists('links', $links)); + + $links['config'][] = [ + 'href' => SimpleSAML\Module::getModuleURL('cron/croninfo.php'), + 'text' => '{cron:cron:link_cron}', + ]; +} + diff --git a/modules/cron/locales/en/LC_MESSAGES/cron.po b/modules/cron/locales/en/LC_MESSAGES/cron.po index aa2e95e781bc6eeb685270a9eabd4a1c67298e62..d55e2ff67f09a42d1ef7e7549822f9ba2c8c7d5c 100644 --- a/modules/cron/locales/en/LC_MESSAGES/cron.po +++ b/modules/cron/locales/en/LC_MESSAGES/cron.po @@ -65,3 +65,6 @@ msgstr "Cron result page" msgid "{cron:cron:link_cron}" msgstr "Cron module information page" + +msgid "Cron module information page" +msgstr "Cron module information page" diff --git a/modules/cron/locales/es/LC_MESSAGES/cron.po b/modules/cron/locales/es/LC_MESSAGES/cron.po index 5a8b9dbe15559290ea6e01189bacdb0531734147..826d86fe88d21a59ec7f4c1cfa0454b4a54dfae4 100644 --- a/modules/cron/locales/es/LC_MESSAGES/cron.po +++ b/modules/cron/locales/es/LC_MESSAGES/cron.po @@ -65,3 +65,6 @@ msgstr "Página de resultado del cron" msgid "{cron:cron:link_cron}" msgstr "Informe de cron" + +msgid "Cron module information page" +msgstr "Informe de cron" diff --git a/modules/cron/locales/nb/LC_MESSAGES/cron.po b/modules/cron/locales/nb/LC_MESSAGES/cron.po index aaec4ad381ac2f62a6bf1e93249ee1b6e41e28c6..224c14a3176d79c8f1c36142630942d4a3eebd0a 100644 --- a/modules/cron/locales/nb/LC_MESSAGES/cron.po +++ b/modules/cron/locales/nb/LC_MESSAGES/cron.po @@ -65,3 +65,6 @@ msgstr "Cron resultatside" msgid "{cron:cron:link_cron}" msgstr "Informasjon om cron" + +msgid "Cron module information page" +msgstr "Informasjon om cron" diff --git a/modules/cron/locales/nn/LC_MESSAGES/cron.po b/modules/cron/locales/nn/LC_MESSAGES/cron.po index 5aeba2dd6673ef0281da7d97d1f06fd44d9ea502..a326b56cbf1720586f3b2f3bd24cd28f2dd0208e 100644 --- a/modules/cron/locales/nn/LC_MESSAGES/cron.po +++ b/modules/cron/locales/nn/LC_MESSAGES/cron.po @@ -65,3 +65,6 @@ msgstr "Cron resultatside" msgid "{cron:cron:link_cron}" msgstr "Informasjon om cron" + +msgid "Cron module information page" +msgstr "Informasjon om cron" diff --git a/modules/memcacheMonitor/hooks/hook_configpage.php b/modules/memcacheMonitor/hooks/hook_configpage.php index 9e9689b08acd92fad2f6cd2d4ce73495d572d110..4debe964ee90ecd9d41b781763738c0beb1f6240 100644 --- a/modules/memcacheMonitor/hooks/hook_configpage.php +++ b/modules/memcacheMonitor/hooks/hook_configpage.php @@ -7,13 +7,9 @@ function memcacheMonitor_hook_configpage(\SimpleSAML\XHTML\Template &$template) { - $template->data['links_config']['memcacheMonitor'] = [ + $template->data['links']['memcacheMonitor'] = [ 'href' => SimpleSAML\Module::getModuleURL('memcacheMonitor/memcachestat.php'), - 'text' => '{memcacheMonitor:memcachestat:link_memcacheMonitor}', + 'text' => \SimpleSAML\Locale\Translate::noop('Memcache statistics'), ]; - - $config = \SimpleSAML\Configuration::getInstance(); - if ($config->getBoolean('usenewui', false)) { - $template->getLocalization()->addModuleDomain('memcacheMonitor'); - } + $template->getLocalization()->addModuleDomain('memcacheMonitor'); } diff --git a/modules/memcacheMonitor/hooks/hook_frontpage.php b/modules/memcacheMonitor/hooks/hook_frontpage.php new file mode 100644 index 0000000000000000000000000000000000000000..d25437327aaad82653f3a517a8ecc9051d22dc38 --- /dev/null +++ b/modules/memcacheMonitor/hooks/hook_frontpage.php @@ -0,0 +1,18 @@ +<?php +/** + * Hook to add the simple consenet admin module to the frontpage. + * + * @param array &$links The links on the frontpage, split into sections. + */ + +function memcacheMonitor_hook_frontpage(&$links) +{ + assert(is_array($links)); + assert(array_key_exists('links', $links)); + + $links['config'][] = [ + 'href' => SimpleSAML\Module::getModuleURL('memcacheMonitor/memcachestat.php'), + 'text' => '{memcacheMonitor:memcachestat:link_memcacheMonitor}', + ]; +} + diff --git a/modules/memcacheMonitor/locales/en/LC_MESSAGES/memcacheMonitor.po b/modules/memcacheMonitor/locales/en/LC_MESSAGES/memcacheMonitor.po index 29afe1b3b2b5017c28ffc52e0f64d763adbee9c4..0c5bd95e44168aa5fe0c01571eb64b5c4448608a 100644 --- a/modules/memcacheMonitor/locales/en/LC_MESSAGES/memcacheMonitor.po +++ b/modules/memcacheMonitor/locales/en/LC_MESSAGES/memcacheMonitor.po @@ -266,3 +266,6 @@ msgstr "Total connections" msgid "{memcacheMonitor:memcachestat:link_memcacheMonitor}" msgstr "Memcache statistics" + +msgid "Memcache statistics" +msgstr "Memcache statistics" diff --git a/modules/memcacheMonitor/locales/es/LC_MESSAGES/memcacheMonitor.po b/modules/memcacheMonitor/locales/es/LC_MESSAGES/memcacheMonitor.po index e9e23f7be4c6fdb1d050008f4b67bbba1e25f05d..0912705f30ec84770aadc406464b7c187e672cef 100644 --- a/modules/memcacheMonitor/locales/es/LC_MESSAGES/memcacheMonitor.po +++ b/modules/memcacheMonitor/locales/es/LC_MESSAGES/memcacheMonitor.po @@ -131,3 +131,6 @@ msgstr "Total de conexiones" msgid "{memcacheMonitor:memcachestat:link_memcacheMonitor}" msgstr "EstadĂsticas de memcache" + +msgid "Memcache statistics" +msgstr "EstadĂsticas de memcache" diff --git a/modules/memcacheMonitor/locales/nb/LC_MESSAGES/memcacheMonitor.po b/modules/memcacheMonitor/locales/nb/LC_MESSAGES/memcacheMonitor.po index accddc9276462489be5d65cc77bf4c0893409416..659cdd1ce29511a36aba7885c1d4c8c9857f4da8 100644 --- a/modules/memcacheMonitor/locales/nb/LC_MESSAGES/memcacheMonitor.po +++ b/modules/memcacheMonitor/locales/nb/LC_MESSAGES/memcacheMonitor.po @@ -131,3 +131,6 @@ msgstr "Totalt antall forbindelser" msgid "{memcacheMonitor:memcachestat:link_memcacheMonitor}" msgstr "Memcache statistikker" + +msgid "Memcache statistics" +msgstr "Memcache statistikker" diff --git a/modules/memcacheMonitor/locales/nn/LC_MESSAGES/memcacheMonitor.po b/modules/memcacheMonitor/locales/nn/LC_MESSAGES/memcacheMonitor.po index b54c5153182c0b6d50a93d1ba4e255cd9427f111..3b17ef3e621a4f82ef337f8e0bd8ffc32b86cf63 100644 --- a/modules/memcacheMonitor/locales/nn/LC_MESSAGES/memcacheMonitor.po +++ b/modules/memcacheMonitor/locales/nn/LC_MESSAGES/memcacheMonitor.po @@ -131,3 +131,6 @@ msgstr "Opne tilkoplingar (totalt)" msgid "{memcacheMonitor:memcachestat:link_memcacheMonitor}" msgstr "Memcache statistikkar" + +msgid "Memcache statistics" +msgstr "Memcache statistikkar" diff --git a/modules/sanitycheck/hooks/hook_configpage.php b/modules/sanitycheck/hooks/hook_configpage.php index 18b20e114521a5f6dea2aa2a4a5f82ca938f5563..cab7fbf1dcc944d830641a4a29ec2d3dd55e7e66 100644 --- a/modules/sanitycheck/hooks/hook_configpage.php +++ b/modules/sanitycheck/hooks/hook_configpage.php @@ -6,13 +6,9 @@ */ function sanitycheck_hook_configpage(\SimpleSAML\XHTML\Template &$template) { - $template->data['links_config']['sanitycheck'] = [ + $template->data['links']['sanitycheck'] = [ 'href' => SimpleSAML\Module::getModuleURL('sanitycheck/index.php'), - 'text' => '{sanitycheck:strings:link_sanitycheck}', + 'text' => \SimpleSAML\Locale\Translate::noop('Sanity check of your SimpleSAMLphp setup'), ]; - - $config = \SimpleSAML\Configuration::getInstance(); - if ($config->getBoolean('usenewui', false)) { - $template->getLocalization()->addModuleDomain('sanitycheck'); - } + $template->getLocalization()->addModuleDomain('sanitycheck'); } diff --git a/modules/sanitycheck/hooks/hook_frontpage.php b/modules/sanitycheck/hooks/hook_frontpage.php new file mode 100644 index 0000000000000000000000000000000000000000..1e860e6e68234e8fbca4688fda72ee8e15b216d5 --- /dev/null +++ b/modules/sanitycheck/hooks/hook_frontpage.php @@ -0,0 +1,17 @@ +<?php +/** + * Hook to add the modinfo module to the frontpage. + * + * @param array &$links The links on the frontpage, split into sections. + */ +function sanitycheck_hook_frontpage(&$links) +{ + assert(is_array($links)); + assert(array_key_exists('links', $links)); + + $links['config']['sanitycheck'] = [ + 'href' => SimpleSAML\Module::getModuleURL('sanitycheck/index.php'), + 'text' => '{sanitycheck:strings:link_sanitycheck}', + ]; +} + diff --git a/modules/sanitycheck/locales/en/LC_MESSAGES/sanitycheck.po b/modules/sanitycheck/locales/en/LC_MESSAGES/sanitycheck.po index 7f1cd2174fe391f10f0bcb7d41ea4990b50bea32..140725668de0b59cdd3866c9f099602c0d179f5d 100644 --- a/modules/sanitycheck/locales/en/LC_MESSAGES/sanitycheck.po +++ b/modules/sanitycheck/locales/en/LC_MESSAGES/sanitycheck.po @@ -5,4 +5,7 @@ msgid "These checks succeeded:" msgstr "These checks succeeded:" msgid "{sanitycheck:strings:link_sanitycheck}" +msgstr "Sanity check of your SimpleSAMLphp setup" + +msgid "Sanity check of your SimpleSAMLphp setup" msgstr "Sanity check of your SimpleSAMLphp setup" \ No newline at end of file diff --git a/modules/sanitycheck/locales/es/LC_MESSAGES/sanitycheck.po b/modules/sanitycheck/locales/es/LC_MESSAGES/sanitycheck.po index 0a98c4369b8c182144c3b08c0bdcfb184ce78962..8ccf3453db844db2aa394de45e7da54cb4b6da83 100644 --- a/modules/sanitycheck/locales/es/LC_MESSAGES/sanitycheck.po +++ b/modules/sanitycheck/locales/es/LC_MESSAGES/sanitycheck.po @@ -6,3 +6,6 @@ msgstr "Las siguientes comprobaciones fueron satisfactorias:" msgid "{sanitycheck:strings:link_sanitycheck}" msgstr "Comprobaciones básicas de la instalaciĂłn" + +msgid "Sanity check of your SimpleSAMLphp setup" +msgstr "Comprobaciones básicas de la instalaciĂłn" diff --git a/modules/sanitycheck/locales/nb/LC_MESSAGES/sanitycheck.po b/modules/sanitycheck/locales/nb/LC_MESSAGES/sanitycheck.po index c582429c3ca084cf95884f3f46e715d7ff4039e0..eed8799443a3aaf137c3fb919507338934461357 100644 --- a/modules/sanitycheck/locales/nb/LC_MESSAGES/sanitycheck.po +++ b/modules/sanitycheck/locales/nb/LC_MESSAGES/sanitycheck.po @@ -6,3 +6,6 @@ msgstr "Disse sjekkene var suksessfulle:" msgid "{sanitycheck:strings:link_sanitycheck}" msgstr "Sjekk din installasjon" + +msgid "Sanity check of your SimpleSAMLphp setup" +msgstr "Sjekk din installasjon" diff --git a/modules/sanitycheck/locales/nn/LC_MESSAGES/sanitycheck.po b/modules/sanitycheck/locales/nn/LC_MESSAGES/sanitycheck.po index f49cb022617d7c7ebfd4a853d915b83561e5bc78..e3e4c989f91924dfcc967c6eb6365f954a370855 100644 --- a/modules/sanitycheck/locales/nn/LC_MESSAGES/sanitycheck.po +++ b/modules/sanitycheck/locales/nn/LC_MESSAGES/sanitycheck.po @@ -6,3 +6,6 @@ msgstr "Desse sjekkane var suksessfulle:" msgid "{sanitycheck:strings:link_sanitycheck}" msgstr "Sjekk din installasjon" + +msgid "Sanity check of your SimpleSAMLphp setup" +msgstr "Sjekk din installasjon" diff --git a/modules/statistics/hooks/hook_configpage.php b/modules/statistics/hooks/hook_configpage.php index 33a93f1b149be0b0caef85caef14926a7897267e..d9c1f1df7898b6b90d8c3f9cf6a869a47c63ff72 100644 --- a/modules/statistics/hooks/hook_configpage.php +++ b/modules/statistics/hooks/hook_configpage.php @@ -6,18 +6,13 @@ */ function statistics_hook_configpage(\SimpleSAML\XHTML\Template &$template) { - $template->data['links_config']['statistics'] = [ + $template->data['links']['statistics'] = [ 'href' => SimpleSAML\Module::getModuleURL('statistics/showstats.php'), - 'text' => '{statistics:statistics:link_statistics}', + 'text' => \SimpleSAML\Locale\Translate::noop('Show statistics'), ]; - $template->data['links_config']['statisticsmeta'] = [ + $template->data['links']['statisticsmeta'] = [ 'href' => SimpleSAML\Module::getModuleURL('statistics/statmeta.php'), - 'text' => '{statistics:statistics:link_statistics_metadata}', - 'shorttext' => ['en' => 'Statistics metadata', 'no' => 'Statistikk metadata'], + 'text' => \SimpleSAML\Locale\Translate::noop('Show statistics metadata'), ]; - - $config = \SimpleSAML\Configuration::getInstance(); - if ($config->getBoolean('usenewui', false)) { - $template->getLocalization()->addModuleDomain('statistics'); - } + $template->getLocalization()->addModuleDomain('statistics'); } diff --git a/modules/statistics/hooks/hook_frontpage.php b/modules/statistics/hooks/hook_frontpage.php new file mode 100644 index 0000000000000000000000000000000000000000..2dade3b2af4c7e9cbf5422819fa44ac18a9d580a --- /dev/null +++ b/modules/statistics/hooks/hook_frontpage.php @@ -0,0 +1,22 @@ +<?php +/** + * Hook to add the modinfo module to the frontpage. + * + * @param array &$links The links on the frontpage, split into sections. + */ +function statistics_hook_frontpage(&$links) +{ + assert(is_array($links)); + assert(array_key_exists('links', $links)); + + $links['config']['statistics'] = [ + 'href' => SimpleSAML\Module::getModuleURL('statistics/showstats.php'), + 'text' => '{statistics:statistics:link_statistics}', + ]; + $links['config']['statisticsmeta'] = [ + 'href' => SimpleSAML\Module::getModuleURL('statistics/statmeta.php'), + 'text' => '{statistics:statistics:link_statistics_metadata}', + 'shorttext' => ['en' => 'Statistics metadata', 'no' => 'Statistikk metadata'], + ]; +} + diff --git a/modules/statistics/locales/en/LC_MESSAGES/statistics.po b/modules/statistics/locales/en/LC_MESSAGES/statistics.po index 9c5a14b57f9925477b9a8d3cbf2a242aaff790fe..8dee6fd55264775750189843f14e237e88acbaad 100644 --- a/modules/statistics/locales/en/LC_MESSAGES/statistics.po +++ b/modules/statistics/locales/en/LC_MESSAGES/statistics.po @@ -2,4 +2,10 @@ msgid "{statistics:statistics:link_statistics" msgstr "Show statistics" msgid "{statistics:statistics:link_statistics_metadata" +msgstr "Show statistics metadata" + +msgid "Show statistics" +msgstr "Show statistics" + +msgid "Show statistics metadata" msgstr "Show statistics metadata" \ No newline at end of file diff --git a/modules/statistics/locales/es/LC_MESSAGES/statistics.po b/modules/statistics/locales/es/LC_MESSAGES/statistics.po index 23f72c387e01c4cf3155131b564990743a526776..871d8251855b584a8b9cd1ca95dbefa1d609d383 100644 --- a/modules/statistics/locales/es/LC_MESSAGES/statistics.po +++ b/modules/statistics/locales/es/LC_MESSAGES/statistics.po @@ -2,4 +2,10 @@ msgid "{statistics:statistics:link_statistics" msgstr "Mostrar estadĂsticas" msgid "{statistics:statistics:link_statistics_metadata" +msgstr "Mostrar metadatos de las estadĂsticas" + +msgid "Show statistics" +msgstr "Mostrar estadĂsticas" + +msgid "Show statistics metadata" msgstr "Mostrar metadatos de las estadĂsticas" \ No newline at end of file diff --git a/modules/statistics/locales/nb/LC_MESSAGES/statistics.po b/modules/statistics/locales/nb/LC_MESSAGES/statistics.po index c2686f160da56992cfbef90ab01ab39f472bda4e..f6704778553d62d21ebc32a90d3c96a3593b49e4 100644 --- a/modules/statistics/locales/nb/LC_MESSAGES/statistics.po +++ b/modules/statistics/locales/nb/LC_MESSAGES/statistics.po @@ -3,3 +3,9 @@ msgstr "Vis statistikker" msgid "{statistics:statistics:link_statistics_metadata" msgstr "Vis metadata om statistikker" + +msgid "Show statistics" +msgstr "Vis statistikker" + +msgid "Show statistics metadata" +msgstr "Vis metadata om statistikker" diff --git a/modules/statistics/locales/nn/LC_MESSAGES/statistics.po b/modules/statistics/locales/nn/LC_MESSAGES/statistics.po index 30cd4a568bebf6d2fa7acd6645dc56e759d242aa..6fb2e3bf4f2e2957a2d28865fd8edc67d895de9e 100644 --- a/modules/statistics/locales/nn/LC_MESSAGES/statistics.po +++ b/modules/statistics/locales/nn/LC_MESSAGES/statistics.po @@ -3,3 +3,9 @@ msgstr "Vis statistikkar" msgid "{statistics:statistics:link_statistics_metadata" msgstr "Vis metadata om statistikkar" + +msgid "Show statistics" +msgstr "Vis statistikkar" + +msgid "Show statistics metadata" +msgstr "Vis metadata om statistikkar"