Hi George,<div><br></div><div>it's just a guess but I think appid should be in lowercase: </div><div><br></div><div>$l=OC_L10N::get('notes');</div><div><br></div><div><br></div><div><br></div><div>---</div><div>
Victor<br><br><div class="gmail_quote">On Thu, Dec 20, 2012 at 10:51 PM, George Ruinelli <span dir="ltr"><<a href="mailto:george@ruinelli.ch" target="_blank">george@ruinelli.ch</a>></span> wrote:<br><blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex">
Hi all<br>
<br>
I am trying to figure out how I can provide a translated version of my apps<br>
name on the left side in the OwnCloud navigation.<br>
<br>
I created a translation file de.php in l10n which contains all needed strings:<br>
------------------------------<br>
<?php $TRANSLATIONS = array(<br>
"Notes" => "Notizen",<br>
"Add Note" => "Notiz hinzufügen",<br>
...<br>
);<br>
<br>
<br>
In appsinfo/apps.php, I have the following:<br>
------------------------------<br>
<?php<br>
$l=OC_L10N::get('Notes');<br>
<br>
OCP\App::addNavigationEntry( array(<br>
  'id' => 'notes_index',<br>
  'order' => 11,<br>
  'href' => OCP\Util::linkTo( 'notes', 'index.php' ),<br>
  'icon' => OCP\Util::imagePath( 'notes', 'icon.png' ),<br>
  'name' => $l->t('Notes'))<br>
);<br>
------------------------------<br>
<br>
The texts in the app itself get translated, how ever the apps name in the<br>
navigation stays in the original language.<br>
If somebody wants to test it, simply install<br>
<a href="http://apps.owncloud.com/content/show.php/Notes?content=155599" target="_blank">http://apps.owncloud.com/content/show.php/Notes?content=155599</a> and switch the<br>
language to German.<br>
<br>
Thanx for any hints<br>
_______________________________________________<br>
Owncloud mailing list<br>
<a href="mailto:Owncloud@kde.org">Owncloud@kde.org</a><br>
<a href="https://mail.kde.org/mailman/listinfo/owncloud" target="_blank">https://mail.kde.org/mailman/listinfo/owncloud</a><br>
</blockquote></div><br></div>