Skip to content
Snippets Groups Projects
Commit 48126c3f authored by Lukas Reschke's avatar Lukas Reschke
Browse files

Merge pull request #13433 from owncloud/favoritesl10n

fix unlocalized favorites browser title and alttext
parents 8285744e d253ef51
No related branches found
No related tags found
No related merge requests found
......@@ -28,7 +28,7 @@ $(document).ready(function() {
FavoritesFileList.prototype = _.extend({}, OCA.Files.FileList.prototype,
/** @lends OCA.Files.FavoritesFileList.prototype */ {
id: 'favorites',
appName: 'Favorites',
appName: t('files','Favorites'),
_clientSideSort: true,
_allowSelection: false,
......
......@@ -40,7 +40,7 @@
}
return this._template({
isFavorite: state,
altText: state ? t('core', 'Favorited') : t('core', 'Favorite'),
altText: state ? t('files', 'Favorited') : t('files', 'Favorite'),
imgFile: getStarImage(state)
});
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment