Translate the priority string

This commit is contained in:
Pierre Pronchery 2015-04-21 01:04:50 +02:00
parent 48cf3e4e19
commit a23a9accc6

View File

@ -245,7 +245,7 @@ static void _new_view(Todo * todo)
gtk_list_store_append(todo->priorities, &iter);
gtk_list_store_set(todo->priorities, &iter,
0, _todo_priorities[i].priority,
1, _todo_priorities[i].title, -1);
1, _(_todo_priorities[i].title), -1);
}
todo->filter = gtk_tree_model_filter_new(GTK_TREE_MODEL(todo->store),
NULL);