remove clientSideStrings part, stringNotFound added to locales/en/app.json, should be added to other languages, readme updated, $rootscope.translations removed

This commit is contained in:
Matteo Pagliazzi
2013-11-14 14:41:42 +01:00
parent c75bfaa4d9
commit 0c40d44de7
22 changed files with 41 additions and 90 deletions

View File

@@ -131,21 +131,21 @@ habitrpg
scope.main = attrs.main;
$rootScope.lists = [
{
header: 'Habits',
header: env.t('Habits'),
type: 'habit',
placeHolder: 'New Habit'
placeHolder: env.t('newHabit')
}, {
header: 'Dailies',
header: env.t('Dailies'),
type: 'daily',
placeHolder: 'New Daily'
placeHolder: env.t('newDaily')
}, {
header: 'To-Dos',
header: env.t('Todos'),
type: 'todo',
placeHolder: 'New To-Do'
placeHolder: env.t('newTodo')
}, {
header: 'Rewards',
header: env.t('Rewards'),
type: 'reward',
placeHolder: 'New Reward'
placeHolder: env.t('newReward')
}
];