]> source.dussan.org Git - nextcloud-server.git/commitdiff
Simple translation for gallery
authorBartek Przybylski <bart.p.pl@gmail.com>
Sun, 15 Jan 2012 11:11:04 +0000 (12:11 +0100)
committerBartek Przybylski <bart.p.pl@gmail.com>
Sun, 15 Jan 2012 11:15:22 +0000 (12:15 +0100)
apps/contacts/l10n/pl.php
apps/gallery/appinfo/app.php
apps/gallery/l10n/de.php [new file with mode: 0644]
apps/gallery/l10n/pl.php [new file with mode: 0644]
apps/gallery/templates/index.php
apps/gallery/templates/view_album.php

index 0302b0e3eea04a2515391a0c35cfb658ac55d190..43ee14f930e1982a1583777c6db94e377bad4a22 100644 (file)
@@ -1,4 +1,7 @@
 <?php $TRANSLATIONS = array(
+"Contacts" => "Kontakty",
+"Addressbooks" => "Książki adresowe",
+"Add" => "Dodaj",
 "This is not your addressbook." => "To nie jest twoja książka adresowa.",
 "Contact could not be found." => "Kontakt nie znaleziony.",
 "vCard could not be read." => "Nie można odczytać vCard.",
index 9c665fd3500f34b6ffb3554a01d4a2ece3654cdf..da8722744972107f8a26b0686624a012b40bc36a 100644 (file)
@@ -26,6 +26,8 @@ OC::$CLASSPATH['OC_Gallery_Photo'] = 'apps/gallery/lib/photo.php';
 OC::$CLASSPATH['OC_Gallery_Scanner'] = 'apps/gallery/lib/scanner.php';
 OC::$CLASSPATH['OC_Gallery_Hooks_Handlers'] = 'apps/gallery/lib/hooks_handlers.php';
 
+$l = new OC_L10N('gallery');
+
 OC_App::register(array(
   'order' => 20,
   'id' => 'gallery',
@@ -36,7 +38,7 @@ OC_App::addNavigationEntry( array(
  'order' => 20,
  'href' => OC_Helper::linkTo('gallery', 'index.php'),
  'icon' => OC_Helper::imagePath('core', 'places/picture.svg'),
- 'name' => 'Gallery'));
+ 'name' => $l->t('Gallery')));
 
  class OC_GallerySearchProvider extends OC_Search_Provider{
        function search($query){
diff --git a/apps/gallery/l10n/de.php b/apps/gallery/l10n/de.php
new file mode 100644 (file)
index 0000000..4ca5c83
--- /dev/null
@@ -0,0 +1,5 @@
+<?php $TRANSLATIONS = array(
+  "Gallery" => "Galerie",
+  "Back" => "Zurück"
+);
+?>
diff --git a/apps/gallery/l10n/pl.php b/apps/gallery/l10n/pl.php
new file mode 100644 (file)
index 0000000..d0c51c0
--- /dev/null
@@ -0,0 +1,6 @@
+<?php $TRANSLATIONS = array(
+  "Gallery" => "Galeria",
+  "Rescan" => "Przeskanuj",
+  "Back" => "Wróć"
+);
+?>
index 7c6e91a468eab23b3ea3212b55fc43b74f007cc0..eb6ebd1bb7b69381c52e7e2950418ecca1d5e8c0 100644 (file)
@@ -2,11 +2,12 @@
 OC_Util::addStyle('gallery', 'styles');
 OC_Util::addScript('gallery', 'albums');
 OC_Util::addScript('gallery', 'album_cover');
+$l = new OC_L10N('gallery');
 ?>
 
 <div id="notification"><div id="gallery_notification_text">Creating thumbnails</div></div>
 <div id="controls">
-  <input type="button" value="Rescan" onclick="javascript:scanForAlbums();" />
+  <input type="button" value="<?php echo $l->t('Rescan');?>" onclick="javascript:scanForAlbums();" />
   <br/>
 </div>
 <div id="gallery_list">
index 4acc965269cc2574a6fb5921ede6e54c1b79debb..7e3a67df4e4bb073ab9b6ee236e5ce0f98243507 100644 (file)
@@ -5,6 +5,7 @@ OC_Util::addScript('gallery', 'album_cover');
 OC_Util::addScript('files_imageviewer', 'jquery.mousewheel-3.0.4.pack');
 OC_Util::addScript('files_imageviewer', 'jquery.fancybox-1.3.4.pack');
 OC_Util::addStyle( 'files_imageviewer', 'jquery.fancybox-1.3.4' );
+$l = new OC_L10N('gallery');
 ?>
 <script type="text/javascript">
   $(document).ready(function() {
@@ -15,7 +16,7 @@ OC_Util::addStyle( 'files_imageviewer', 'jquery.fancybox-1.3.4' );
 </script>
 
 <div id="controls">
-  <a href="?"><input type="button" value="Back" /></a>
+  <a href="?"><input type="button" value="<? echo $l->t('Back');?>" /></a>
 <br/>
 </div>