Skip to content

Commit

Permalink
Use translatable strings
Browse files Browse the repository at this point in the history
Signed-off-by: Jonas Dujava <jonas.dujava@gmail.com>
  • Loading branch information
jdujava authored and sebastinas committed Jul 10, 2024
1 parent 562f3bb commit 326711b
Show file tree
Hide file tree
Showing 25 changed files with 2,959 additions and 2,402 deletions.
224 changes: 124 additions & 100 deletions po/ar.po

Large diffs are not rendered by default.

223 changes: 123 additions & 100 deletions po/ca.po

Large diffs are not rendered by default.

224 changes: 124 additions & 100 deletions po/cs.po

Large diffs are not rendered by default.

224 changes: 124 additions & 100 deletions po/de.po

Large diffs are not rendered by default.

223 changes: 123 additions & 100 deletions po/el.po

Large diffs are not rendered by default.

223 changes: 123 additions & 100 deletions po/eo.po

Large diffs are not rendered by default.

224 changes: 124 additions & 100 deletions po/es.po

Large diffs are not rendered by default.

223 changes: 123 additions & 100 deletions po/es_CL.po

Large diffs are not rendered by default.

221 changes: 121 additions & 100 deletions po/et.po

Large diffs are not rendered by default.

224 changes: 124 additions & 100 deletions po/fr.po

Large diffs are not rendered by default.

221 changes: 121 additions & 100 deletions po/he.po

Large diffs are not rendered by default.

221 changes: 121 additions & 100 deletions po/hr.po

Large diffs are not rendered by default.

223 changes: 123 additions & 100 deletions po/id_ID.po

Large diffs are not rendered by default.

224 changes: 124 additions & 100 deletions po/it.po

Large diffs are not rendered by default.

223 changes: 123 additions & 100 deletions po/lt.po

Large diffs are not rendered by default.

224 changes: 124 additions & 100 deletions po/nl.po

Large diffs are not rendered by default.

223 changes: 123 additions & 100 deletions po/no.po

Large diffs are not rendered by default.

223 changes: 123 additions & 100 deletions po/pl.po

Large diffs are not rendered by default.

223 changes: 123 additions & 100 deletions po/pt_BR.po

Large diffs are not rendered by default.

224 changes: 124 additions & 100 deletions po/ru.po

Large diffs are not rendered by default.

224 changes: 124 additions & 100 deletions po/sv.po

Large diffs are not rendered by default.

223 changes: 123 additions & 100 deletions po/ta_IN.po

Large diffs are not rendered by default.

224 changes: 124 additions & 100 deletions po/tr.po

Large diffs are not rendered by default.

224 changes: 124 additions & 100 deletions po/uk_UA.po

Large diffs are not rendered by default.

4 changes: 2 additions & 2 deletions zathura/commands.c
Original file line number Diff line number Diff line change
Expand Up @@ -184,8 +184,8 @@ bool cmd_jumplist_list(girara_session_t* session, girara_list_t* argument_list)
GString* string = g_string_new(NULL);
for (int i = zathura->jumplist.size - 1; i >= 0 && num_entries > 0; --i, --num_entries) {
zathura_jump_t* j = girara_list_nth(zathura->jumplist.list, i);
g_string_append_printf(string, "[%d]: page=<b>%2d</b>, x=%f, y=%f %s\n", i, j->page, j->x, j->y,
j == current_jump ? "(current)" : "");
g_string_append_printf(string, "[%d]: %s=<b>%2d</b>, x=%f, y=%f %s\n", i, _("page"), j->page, j->x, j->y,
j == current_jump ? _("(current)") : "");
}

if (strlen(string->str) > 0) {
Expand Down

0 comments on commit 326711b

Please sign in to comment.