Commit Graph

3917 Commits

Author SHA1 Message Date
Enrico Forestieri
0237398a59 Update it.po 2024-08-18 22:56:29 +02:00
Juergen Spitzmueller
51d9776df3 de.po 2024-08-18 18:43:16 +02:00
Kornel Benko
f8b18714c4 Update sk.po, sk.gmo 2024-08-18 13:09:26 +02:00
Pavel Sanda
3f31c8994c * cs.po 2024-08-18 12:07:24 +02:00
Juergen Spitzmueller
f179759b67 de.po 2024-08-18 09:20:56 +02:00
Richard Kimberly Heck
a9bc7a5752 Remerge strings. 2024-08-17 19:38:54 -04:00
jpc
b0fd84ea96 Update fr.po 2024-08-10 18:08:34 +02:00
Kornel Benko
097eba2ed1 Update sk.po 2024-08-08 10:36:52 +02:00
Juergen Spitzmueller
e5e4cd6086 lyx_pot.py: Fix regex for \Format
Each token could be delimited by quotation marks or not. The previous
regexes only considered this for two tokens and hence produced wrong
matches for cases such as

\Format gnuplot     "gp, gnuplot, plt"    "Gnuplot"     "" "" ""  "vector"	"text/plain"

where the extension list wasn't parsed as a single token.

(cherry picked from commit 1efdc11296)
2024-08-07 11:37:17 -04:00
Kornel Benko
38e36c552d Update sk.po 2024-08-07 10:53:41 +02:00
Juergen Spitzmueller
2802d8f6ec de.po 2024-08-07 09:14:44 +02:00
Juergen Spitzmueller
220b3c51eb Update Polish translation (from Tomasz Kołodziejski) 2024-08-05 10:40:19 +02:00
Kornel Benko
cbc9022af6 Update sk.po 2024-08-02 09:14:27 +02:00
Juergen Spitzmueller
a5aa413256 de.po 2024-08-01 17:10:54 +02:00
jpc
a0752e4dfc Update fr.po 2024-07-24 16:25:00 +02:00
Kornel Benko
4b9e1d8b09 Update sk.po 2024-07-08 11:50:08 +02:00
jpc
35ec2ebcd1 Update fr.po 2024-07-08 11:30:22 +02:00
Pavel Sanda
a187940fd2 * cs.po 2024-07-07 12:07:04 +02:00
Kornel Benko
e2ded58d70 Update sk.po 2024-07-06 09:38:56 +02:00
Enrico Forestieri
f9692776fb Update it.po 2024-06-28 22:45:02 +02:00
Richard Kimberly Heck
afc0cc8465 Updated simplified Chinese translation 2024-06-27 12:41:16 -04:00
Koji Yokota
0dcb0c0694 Updating ja.po 2024-06-26 14:48:48 +09:00
Pavel Sanda
5651c90ab3 * uk.po from Yuri 2024-06-25 19:33:58 +02:00
Pavel Sanda
d4b41cb9c4 * cs.po 2024-06-25 19:32:56 +02:00
Richard Kimberly Heck
2722bd01dd Remerge strings. 2024-06-24 17:32:33 -04:00
Pavel Sanda
ac8916b1a6 * uk.po - make it compilable again 2024-06-24 23:01:49 +02:00
Pavel Sanda
dd3d840777 * pt_BR.po update from Georger. 2024-06-24 22:57:09 +02:00
Richard Kimberly Heck
2c9fb8ebb7 Ukranian update from Yuri 2024-06-24 16:23:52 -04:00
Pavel Sanda
bcd802095a * cs.po 2024-06-24 22:23:02 +02:00
jpc
90f63c4bf7 Update fr.po for 2.4.1 2024-06-24 10:11:49 +02:00
Richard Kimberly Heck
1efe6eec7a Remerge strings. 2024-06-23 12:25:38 -04:00
Richard Kimberly Heck
23858d72a5 svn --> git 2024-06-23 12:25:26 -04:00
Juergen Spitzmueller
a73125d07c de.po 2024-06-11 14:30:47 +02:00
Kornel Benko
407d1a2a80 Update sk.po 2024-06-11 13:29:19 +02:00
Richard Kimberly Heck
3c909daeea Merge branch '2.4.x' into 2.4.1-devel 2024-06-09 13:13:12 -04:00
Scott Kostyshak
9c16e25a84 Fix Python warning of invalid escape in lyx_pot.py
Newer Python versions (e.g., Python 3.12.3) gave the following
warning:

  po/lyx_pot.py:607: SyntaxWarning: invalid escape sequence '\w'

An alternative fix would be to double the backslash, but that might
be less readable than this fix.

(cherry picked from commit 325f1429f8)
2024-06-08 13:49:41 -04:00
Udi-Fogiel
768dd64ea7 he.po 2024-06-03 20:16:34 +03:00
Juergen Spitzmueller
bf2647c89f de.po 2024-06-03 18:04:53 +02:00
Kornel Benko
f46c63d180 Update sk.po 2024-06-03 09:17:19 +02:00
Richard Kimberly Heck
701c763221 Merge branch '2.4.x' into 2.4.1-devel 2024-06-02 21:49:54 -04:00
Kornel Benko
1f6f3b4f0a Update sk.po 2024-06-01 14:06:26 +02:00
Richard Kimberly Heck
597a453197 Remerge strings. 2024-05-25 17:50:58 -04:00
Richard Kimberly Heck
544cf0794e Remerge strings for 2.4.0 release 2024-05-10 13:14:09 -04:00
Jean-Marc Lasgouttes
13a34d6cd1 Set buffer_ correctly when inseting a math macro over a selection
The code that handles this special macro insertion (in
Cursor::mathMacroClose())) is very weird: it inserts the contents of
the macro _after_ the macro and later, since the macro is 'greedy', it
will eat this contents and put it in its first macro cell.

Does it make sense to you? It does not ake sense to me either. Anyway,
this is the point where one should make sure that the buffer is set.

Fixes ticket #12682.

(cherry picked from commit b45a957929)
2024-04-25 20:27:36 +02:00
jpc
b3e5f363a6 Update fr.po 2024-04-21 17:19:08 +02:00
Kornel Benko
462cb3c3c6 Update sk.po 2024-04-21 12:12:39 +02:00
Pavel Sanda
a5e7ff70f7 * cs.po 2024-04-21 11:57:29 +02:00
Juergen Spitzmueller
075fdbd4f9 de.po 2024-04-21 11:25:12 +02:00
Juergen Spitzmueller
4d8316402d remerge strings 2024-04-21 11:24:02 +02:00
jpc
2867cc397d Typo in fr.po 2024-04-19 11:22:45 +02:00