diff options
author | Robin Appelman <icewind1991@gmail.com> | 2011-08-18 15:31:26 +0200 |
---|---|---|
committer | Robin Appelman <icewind1991@gmail.com> | 2011-08-18 15:31:26 +0200 |
commit | 31bcb2bd92f7e8c6170eafc71966071d65a665d7 (patch) | |
tree | 1c390aa56d7510a299ba4f278ca3336a8a7f7332 /core/strings.php | |
parent | 2ee9e80afe7a8bd0788e659c90e58f81995d690b (diff) | |
download | nextcloud-server-31bcb2bd92f7e8c6170eafc71966071d65a665d7.tar.gz nextcloud-server-31bcb2bd92f7e8c6170eafc71966071d65a665d7.zip |
make entries in settings navigation translatable
Diffstat (limited to 'core/strings.php')
-rw-r--r-- | core/strings.php | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/core/strings.php b/core/strings.php new file mode 100644 index 00000000000..6fe1cfd5367 --- /dev/null +++ b/core/strings.php @@ -0,0 +1,9 @@ +<?php + +//some strings that are used in /lib but wont be translatable unless they are in /core to +$l=new OC_L10N('core'); +$l->t("Users"); +$l->t("Apps"); +$l->t("Help"); +$l->t("Personal"); +?>
\ No newline at end of file |