Branch: refs/heads/master
Author: Frank Lanitz <frank(a)frank.uvena.de>
Committer: Frank Lanitz <frank(a)frank.uvena.de>
Date: Tue, 18 Nov 2014 16:28:28 UTC
Commit: 846335b3f03c4d522a6e5ff99c08645c2faf9c7e
https://github.com/geany/geany/commit/846335b3f03c4d522a6e5ff99c08645c2faf9…
Log Message:
-----------
Update of Japanese translation
Modified Paths:
--------------
po/ja.po
Modified: po/ja.po
2897 lines changed, 1469 insertions(+), 1428 deletions(-)
===================================================================
No diff available, check online
--------------
This E-Mail was brought to you by github_commit_mail.py (Source: https://github.com/geany/infrastructure).
Branch: refs/heads/master
Author: cousteaulecommandant <cousteaulecommandant(a)users.noreply.github.com>
Committer: cousteaulecommandant <cousteaulecommandant(a)users.noreply.github.com>
Date: Tue, 18 Nov 2014 12:12:11 UTC
Commit: 58e01b2d248706fc22939cbed22a22d9c8c0d60d
https://github.com/geany/geany/commit/58e01b2d248706fc22939cbed22a22d9c8c0d…
Log Message:
-----------
Update es.po
Use same text in Split Window menu as in Keybindings dialog.
Also, translate "Side by side" as "Izquierda y derecha" ("left and right") rather than "Yuxtapuestos" ("juxtaposed") which is a rather weird (and inaccurate) word.
Modified Paths:
--------------
po/es.po
Modified: po/es.po
6 lines changed, 3 insertions(+), 3 deletions(-)
===================================================================
@@ -5813,15 +5813,15 @@ msgstr "_Dividir ventana"
#: ../plugins/splitwindow.c:408
msgid "_Side by Side"
-msgstr "_Horizontal"
+msgstr "_Izquierda y derecha"
#: ../plugins/splitwindow.c:413
msgid "_Top and Bottom"
-msgstr "_Vertical"
+msgstr "_Arriba y abajo"
#: ../plugins/splitwindow.c:429
msgid "Side by Side"
-msgstr "Yuxtapuestos"
+msgstr "Izquierda y derecha"
#: ../plugins/splitwindow.c:431
msgid "Top and Bottom"
--------------
This E-Mail was brought to you by github_commit_mail.py (Source: https://github.com/geany/infrastructure).
Branch: refs/heads/master
Author: Colomban Wendling <ban(a)herbesfolles.org>
Committer: Colomban Wendling <ban(a)herbesfolles.org>
Date: Tue, 11 Nov 2014 18:01:58 UTC
Commit: 299f624f65cc5c5a1ee4be6f38053a2f7ebc2a4b
https://github.com/geany/geany/commit/299f624f65cc5c5a1ee4be6f38053a2f7ebc2…
Log Message:
-----------
Autotools: Fix checking for Git revision
Fix check when building out of tree, and properly handle errors.
Modified Paths:
--------------
m4/geany-revision.m4
Modified: m4/geany-revision.m4
4 lines changed, 2 insertions(+), 2 deletions(-)
===================================================================
@@ -9,8 +9,8 @@ AC_DEFUN([GEANY_CHECK_REVISION],
AC_MSG_CHECKING([for Git revision])
# try Git first
GIT=`which git 2>/dev/null`
- if test -d ".git" -a "x${GIT}" != "x" -a -x "${GIT}"; then
- REVISION=`git rev-parse --short --revs-only HEAD || 0`
+ if test -d "$srcdir/.git" -a "x${GIT}" != "x" -a -x "${GIT}"; then
+ REVISION=`cd "$srcdir"; "${GIT}" rev-parse --short --revs-only HEAD 2>/dev/null || echo 0`
fi
if test "x${REVISION}" != "x0"; then
--------------
This E-Mail was brought to you by github_commit_mail.py (Source: https://github.com/geany/infrastructure).