diff options
author | Jan-Christoph Borchardt <jan@unhosted.org> | 2012-03-30 18:15:03 +0200 |
---|---|---|
committer | Jan-Christoph Borchardt <jan@unhosted.org> | 2012-03-30 18:18:37 +0200 |
commit | dde5660915232102f531ba5309ad691e9932b150 (patch) | |
tree | 7a8a013dd702d4eb640420970554d10a656c07a1 /apps/gallery | |
parent | 011132feb33b4f7954eb5df5e2283e9c8f8ae944 (diff) | |
download | nextcloud-server-dde5660915232102f531ba5309ad691e9932b150.tar.gz nextcloud-server-dde5660915232102f531ba5309ad691e9932b150.zip |
renamed Gallery to Pictures, still needs to be changed in the code to also reflect in the path
Diffstat (limited to 'apps/gallery')
-rw-r--r-- | apps/gallery/appinfo/app.php | 4 | ||||
-rw-r--r-- | apps/gallery/appinfo/info.xml | 4 |
2 files changed, 4 insertions, 4 deletions
diff --git a/apps/gallery/appinfo/app.php b/apps/gallery/appinfo/app.php index 3e7e38301cf..f7e0651275e 100644 --- a/apps/gallery/appinfo/app.php +++ b/apps/gallery/appinfo/app.php @@ -32,14 +32,14 @@ $l = new OC_L10N('gallery'); OC_App::register(array( 'order' => 20, 'id' => 'gallery', - 'name' => 'Gallery')); + 'name' => 'Pictures')); OC_App::addNavigationEntry( array( 'id' => 'gallery_index', 'order' => 20, 'href' => OC_Helper::linkTo('gallery', 'index.php'), 'icon' => OC_Helper::imagePath('core', 'places/picture.svg'), - 'name' => $l->t('Gallery'))); + 'name' => $l->t('Pictures'))); class OC_GallerySearchProvider implements OC_Search_Provider{ static function search($query){ diff --git a/apps/gallery/appinfo/info.xml b/apps/gallery/appinfo/info.xml index 19c5dc8b25e..4c8c1cee242 100644 --- a/apps/gallery/appinfo/info.xml +++ b/apps/gallery/appinfo/info.xml @@ -1,11 +1,11 @@ <?xml version="1.0"?> <info> <id>gallery</id> - <name>Gallery</name> + <name>Pictures</name> <version>0.4</version> <licence>AGPL</licence> <author>Bartek Przybylski</author> <require>2</require> - <description>Gallery application for ownCloud</description> + <description>Dedicated pictures application</description> <default_enable/> </info> |