Codebase list guitarix / 369d275
Fix spell errors Dennis Braun 3 years ago
2 changed file(s) with 58 addition(s) and 0 deletion(s). Raw diff Collapse all Expand all
0 From: Dennis Braun <d_braun@kabelmail.de>
1 Date: Tue, 12 May 2020 23:33:00 +0200
2 Subject: Fix spell errors
3 Forwarded: yes
4
5 Index: guitarix/po/ru.po
6 ===================================================================
7 --- guitarix.orig/po/ru.po
8 +++ guitarix/po/ru.po
9 @@ -2797,7 +2797,7 @@ msgstr "–ß–∞—Å—Ç–æ—Ç–∞ –¥–∏—Å–∫—Ä–µ—Ç–∏–
10
11 #: ../src/gx_head/engine/gx_jack.cpp:373
12 msgid ""
13 -"The jack buffer size is %1%/frames is not power of two, Convolver wont run"
14 +"The jack buffer size is %1%/frames is not power of two, Convolver won't run"
15 msgstr ""
16 "Размер буфера JACK составляет %1%/кадров, это не степень двух, запуск"
17 " Convolver не будет выполнен"
18 Index: guitarix/po/untitled.pot
19 ===================================================================
20 --- guitarix.orig/po/untitled.pot
21 +++ guitarix/po/untitled.pot
22 @@ -2731,7 +2731,7 @@ msgstr ""
23
24 #: ../src/gx_head/engine/gx_jack.cpp:373
25 msgid ""
26 -"The jack buffer size is %1%/frames is not power of two, Convolver wont run"
27 +"The jack buffer size is %1%/frames is not power of two, Convolver won't run"
28 msgstr ""
29
30 #: ../src/gx_head/engine/gx_jack.cpp:378
31 Index: guitarix/src/gx_head/engine/gx_jack.cpp
32 ===================================================================
33 --- guitarix.orig/src/gx_head/engine/gx_jack.cpp
34 +++ guitarix/src/gx_head/engine/gx_jack.cpp
35 @@ -370,7 +370,7 @@ bool GxJack::gx_jack_init(bool startserv
36 if (!is_power_of_two(jack_bs)) {
37 gx_print_warning(
38 _("Jack init"),
39 - boost::format(_("The jack buffer size is %1%/frames is not power of two, Convolver wont run"))
40 + boost::format(_("The jack buffer size is %1%/frames is not power of two, Convolver won't run"))
41 % jack_bs);
42 } else {
43 gx_print_info(
44 Index: guitarix/src/gx_head/engine/gx_system.cpp
45 ===================================================================
46 --- guitarix.orig/src/gx_head/engine/gx_system.cpp
47 +++ guitarix/src/gx_head/engine/gx_system.cpp
48 @@ -621,7 +621,7 @@ CmdlineOptions::CmdlineOptions()
49 Glib::OptionEntry opt_jack_noconnect;
50 opt_jack_noconnect.set_short_name('J');
51 opt_jack_noconnect.set_long_name("jack-no-conect");
52 - opt_jack_noconnect.set_description("dissable self-connect JACK ports");
53 + opt_jack_noconnect.set_description("disable self-connect JACK ports");
54 Glib::OptionEntry opt_jack_instance;
55 opt_jack_instance.set_short_name('n');
56 opt_jack_instance.set_long_name("name");
00 0001-Use-python3-on-tools-make_jsronrpc_methods.patch
11 0002-Fix-LV2-types.patch
2 0003-Fix_spell_errors.patch