diff options
author | Matthew Barnes <mbarnes@src.gnome.org> | 2008-12-28 12:16:48 +0800 |
---|---|---|
committer | Matthew Barnes <mbarnes@src.gnome.org> | 2008-12-28 12:16:48 +0800 |
commit | a6c6f6d90674cf789a114768f8597086b572ffae (patch) | |
tree | deba09b296186f3695a51cec37ae1a71b394fe6c /calendar | |
parent | 8e2b445e9dd2ec76be420bfffdf13bbacae14a3e (diff) | |
download | gsoc2013-evolution-a6c6f6d90674cf789a114768f8597086b572ffae.tar.gz gsoc2013-evolution-a6c6f6d90674cf789a114768f8597086b572ffae.tar.zst gsoc2013-evolution-a6c6f6d90674cf789a114768f8597086b572ffae.zip |
Solve a translation issue related to the New menu.
svn path=/branches/kill-bonobo/; revision=36934
Diffstat (limited to 'calendar')
-rw-r--r-- | calendar/modules/e-cal-shell-module.c | 8 | ||||
-rw-r--r-- | calendar/modules/e-memo-shell-module.c | 4 | ||||
-rw-r--r-- | calendar/modules/e-task-shell-module.c | 4 |
3 files changed, 8 insertions, 8 deletions
diff --git a/calendar/modules/e-cal-shell-module.c b/calendar/modules/e-cal-shell-module.c index b6e1aa4208..d4fed663be 100644 --- a/calendar/modules/e-cal-shell-module.c +++ b/calendar/modules/e-cal-shell-module.c @@ -376,21 +376,21 @@ static GtkActionEntry item_entries[] = { { "event-new", "appointment-new", - N_("_Appointment"), /* XXX Need C_() here */ + NC_("New", "_Appointment"), "<Control>a", N_("Create a new appointment"), G_CALLBACK (action_event_new_cb) }, { "event-all-day-new", "stock_new-24h-appointment", - N_("All Day A_ppointment"), + NC_("New", "All Day A_ppointment"), NULL, N_("Create a new all-day appointment"), G_CALLBACK (action_event_new_cb) }, { "event-meeting-new", "stock_new-meeting", - N_("M_eeting"), + NC_("New", "M_eeting"), "<Control>e", N_("Create a new meeting request"), G_CALLBACK (action_event_new_cb) } @@ -400,7 +400,7 @@ static GtkActionEntry source_entries[] = { { "calendar-new", "x-office-calendar", - N_("Cale_ndar"), + NC_("New", "Cale_ndar"), NULL, N_("Create a new calendar"), G_CALLBACK (action_calendar_new_cb) } diff --git a/calendar/modules/e-memo-shell-module.c b/calendar/modules/e-memo-shell-module.c index 9f6c45b695..a82a8c5235 100644 --- a/calendar/modules/e-memo-shell-module.c +++ b/calendar/modules/e-memo-shell-module.c @@ -282,7 +282,7 @@ static GtkActionEntry item_entries[] = { { "memo-new", "stock_insert-note", - N_("Mem_o"), /* XXX Need C_() here */ + NC_("New", "Mem_o"), "<Shift><Control>o", N_("Create a new memo"), G_CALLBACK (action_memo_new_cb) }, @@ -299,7 +299,7 @@ static GtkActionEntry source_entries[] = { { "memo-list-new", "stock_notes", - N_("Memo Li_st"), + NC_("New", "Memo Li_st"), NULL, N_("Create a new memo list"), G_CALLBACK (action_memo_list_new_cb) } diff --git a/calendar/modules/e-task-shell-module.c b/calendar/modules/e-task-shell-module.c index 9ed38b0cad..dbcb58104b 100644 --- a/calendar/modules/e-task-shell-module.c +++ b/calendar/modules/e-task-shell-module.c @@ -282,7 +282,7 @@ static GtkActionEntry item_entries[] = { { "task-new", "stock_task", - N_("_Task"), /* XXX Need C_() here */ + NC_("New", "_Task"), "<Shift><Control>t", N_("Create a new task"), G_CALLBACK (action_task_new_cb) }, @@ -299,7 +299,7 @@ static GtkActionEntry source_entries[] = { { "task-list-new", "stock_todo", - N_("Tas_k List"), + NC_("New", "Tas_k List"), NULL, N_("Create a new task list"), G_CALLBACK (action_task_list_new_cb) } |