From 362c248f44630ef1624acc5e92dcd93cf9580faa Mon Sep 17 00:00:00 2001 From: Mike khiretskiy Date: Mon, 19 May 2014 17:18:34 +0400 Subject: [PATCH] Sync translates --- update/utils/cl_update.py | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/update/utils/cl_update.py b/update/utils/cl_update.py index 98cf5a5..35ff534 100644 --- a/update/utils/cl_update.py +++ b/update/utils/cl_update.py @@ -209,19 +209,19 @@ class ClUpdateAction(Action): 'tasks': [ {'name': 'sync_reps', 'foreach': 'cl_update_sync_rep', - 'message': __("Syncing {eachvar:capitalize} repository"), + 'message': __("Syncing the {eachvar:capitalize} repository"), 'method': 'Update.syncRepositories(eachvar)', 'condition': lambda Get: Get('cl_update_sync_rep') }, {'name': 'sync_other_reps', 'foreach': 'cl_update_other_rep_name', - 'message': __("Syncing {eachvar:capitalize} repository"), + 'message': __("Syncing the {eachvar:capitalize} repository"), 'method': 'Update.syncLaymanRepository(eachvar)', 'condition': lambda Get: Get('cl_update_other_set') == 'on' }, {'name': 'sync_reps:regen_cache', 'foreach': 'cl_update_sync_overlay_rep', - 'message': __("Updating {eachvar:capitalize} repository cache"), + 'message': __("Updating the {eachvar:capitalize} repository cache"), 'essential': False, 'method': 'Update.regenCache(eachvar)', 'condition': ( @@ -231,7 +231,7 @@ class ClUpdateAction(Action): }, {'name': 'sync_other_reps:regen_other_cache', 'foreach': 'cl_update_other_rep_name', - 'message': __("Updating {eachvar:capitalize} repository cache"), + 'message': __("Updating the {eachvar:capitalize} repository cache"), 'method': 'Update.regenCache(eachvar)', 'essential': False, },