diff options
author | Robin Appelman <icewind1991@gmail.com> | 2011-08-09 17:54:02 +0200 |
---|---|---|
committer | Robin Appelman <icewind1991@gmail.com> | 2011-08-10 14:03:54 +0200 |
commit | 9059b559791b9f5333c24815c4bfd77cc6201c5e (patch) | |
tree | f0b0ca5d7f60707650d81dac2c2a61091d7c2709 /files/appinfo/app.php | |
parent | 32be4746f8514e06e838b4aa0ee45cb832df1b2c (diff) | |
download | nextcloud-server-9059b559791b9f5333c24815c4bfd77cc6201c5e.tar.gz nextcloud-server-9059b559791b9f5333c24815c4bfd77cc6201c5e.zip |
make more strings translatable
Diffstat (limited to 'files/appinfo/app.php')
-rw-r--r-- | files/appinfo/app.php | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/files/appinfo/app.php b/files/appinfo/app.php index a4cec3d6ec2..94cd43ab0a2 100644 --- a/files/appinfo/app.php +++ b/files/appinfo/app.php @@ -1,7 +1,9 @@ <?php +$l=new OC_L10N('files'); + OC_App::register( array( "order" => 2, "id" => "files", "name" => "Files" )); -OC_App::addNavigationEntry( array( "id" => "files_index", "order" => 1, "href" => OC_Helper::linkTo( "files", "index.php" ), "icon" => OC_Helper::imagePath( "files", "home.png" ), "name" => "Files" )); +OC_App::addNavigationEntry( array( "id" => "files_index", "order" => 1, "href" => OC_Helper::linkTo( "files", "index.php" ), "icon" => OC_Helper::imagePath( "files", "home.png" ), "name" => $l->t("Files") )); ?> |