Skip to content

Commit

Permalink
Merge pull request #13433 from owncloud/favoritesl10n
Browse files Browse the repository at this point in the history
fix unlocalized favorites browser title and alttext
  • Loading branch information
LukasReschke committed Jan 18, 2015
2 parents 8285744 + d253ef5 commit 48126c3
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion apps/files/js/favoritesfilelist.js
Original file line number Diff line number Diff line change
Expand Up @@ -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,
Expand Down
2 changes: 1 addition & 1 deletion apps/files/js/tagsplugin.js
Original file line number Diff line number Diff line change
Expand Up @@ -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)
});
}
Expand Down

0 comments on commit 48126c3

Please sign in to comment.