Skip to content
GitLab
Menu
Projects
Groups
Snippets
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Menu
Open sidebar
pwmt
girara
Commits
b4797a62
Commit
b4797a62
authored
Dec 21, 2015
by
Moritz Lipp
Browse files
Merge branch 'release/0.2.5'
parents
9f5880aa
cfabe75b
Pipeline
#83
skipped
Changes
25
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
Makefile
View file @
b4797a62
...
...
@@ -28,6 +28,9 @@ endif
ifneq
(${WITH_JSON},0)
CPPFLAGS
+=
-DWITH_JSON
JSON_PC_NAME
=
json-c
else
JSON_PC_NAME
=
endif
ifeq
(,$(findstring -DGETTEXT_PACKAGE,${CPPFLAGS}))
...
...
@@ -89,6 +92,7 @@ ${BUILDDIR}/${PROJECT}.pc: ${PROJECTNV}.pc.in config.mk
-e
's,@INCLUDEDIR@,
${INCLUDEDIR}
,'
\
-e
's,@LIBDIR@,
${LIBDIR}
,'
\
-e
's,@LIBNOTIFY_PC_NAME@,
${LIBNOTIFY_PC_NAME}
,'
\
-e
's,@JSON_PC_NAME@,
${JSON_PC_NAME}
,'
\
${PROJECTNV}
.pc.in
>
$@
.tmp
$(QUIET)
mv
$@
.tmp
$@
...
...
@@ -101,15 +105,15 @@ ${OBJECTS}: config.mk \
${BUILDDIR_RELEASE}/%.o
:
%.c
$(
call
colorecho,CC,
$<
)
@
mkdir
-p
${DEPENDDIR}
/
$(
dir
$(
abspath
$@
)
)
@
mkdir
-p
${DEPENDDIR}
/
$(
dir
$@
)
@
mkdir
-p
$(
dir
$(
abspath
$@
))
$(QUIET)${CC}
-c
${CPPFLAGS}
${CFLAGS}
-o
$@
$<
\
-MMD
-MF
${DEPENDDIR}
/
$
(
abspath
$@
)
.dep
-MMD
-MF
${DEPENDDIR}
/
$
@
.dep
${BUILDDIR_RELEASE}/${BINDIR}/lib${PROJECT}.a
:
${OBJECTS}
$(
call
colorecho,AR,
$@
)
@
mkdir
-p
${BUILDDIR_RELEASE}
/
${BINDIR}
$(QUIET)
ar
rcs
$@
${OBJECTS}
$(QUIET)
${AR}
rcs
$@
${OBJECTS}
${BUILDDIR_RELEASE}/${BINDIR}/lib${PROJECT}.so.${SOVERSION}
:
${OBJECTS}
$(
call
colorecho,LD,
$@
)
...
...
@@ -132,10 +136,10 @@ ${OBJECT_DEBUG}: config.mk \
${BUILDDIR_DEBUG}/%.o
:
%.c
$(
call
colorecho,CC,
$<
)
@
mkdir
-p
${DEPENDDIR}
/
$(
dir
$(
abspath
$@
)
)
@
mkdir
-p
${DEPENDDIR}
/
$(
dir
$@
)
@
mkdir
-p
$(
dir
$(
abspath
$@
))
$(QUIET)${CC}
-c
${CPPFLAGS}
${CFLAGS}
${DFLAGS}
-o
$@
$<
\
-MMD
-MF
${DEPENDDIR}
/
$
(
abspath
$@
)
.dep
-MMD
-MF
${DEPENDDIR}
/
$
@
.dep
${BUILDDIR_DEBUG}/${BINDIR}/lib${PROJECT}.a
:
${OBJECTS_DEBUG}
$(
call
colorecho,AR,
$@
)
...
...
@@ -161,10 +165,10 @@ ${OBJECTS_GCOV}: config.mk \
${BUILDDIR_GCOV}/%.o
:
%.c
$(
call
colorecho,CC,
$<
)
@
mkdir
-p
${DEPENDDIR}
/
$(
dir
$(
abspath
$@
)
)
@
mkdir
-p
${DEPENDDIR}
/
$(
dir
$@
)
@
mkdir
-p
$(
dir
$(
abspath
$@
))
$(QUIET)${CC}
-c
${CPPFLAGS}
${CFLAGS}
${GCOV_CFLAGS}
\
-o
$@
$<
-MMD
-MF
${DEPENDDIR}
/
$
(
abspath
$@
)
.dep
-o
$@
$<
-MMD
-MF
${DEPENDDIR}
/
$
@
.dep
${BUILDDIR_GCOV}/${BINDIR}/lib${PROJECT}.a
:
${OBJECTS_GCOV}
$(
call
colorecho,AR,
$@
)
...
...
@@ -278,8 +282,9 @@ uninstall-headers:
$(
call
colorecho,UNINSTALL,
"Remove pkg-config file"
)
$(QUIET)
rm
-f
${DESTDIR}${LIBDIR}
/pkgconfig/
${PROJECT}
.pc
DEPENDS
=
${
DEPENDDIRS
:^
=
${DEPENDDIR}
/
}
$(
addprefix
${DEPENDDIR}
/,
${OBJECTS:.o=.o.dep}
)
-include
${DEPENDS}
.PHONY
:
all options clean debug doc test dist install install-headers uninstall
\
uninstall-headers ${PROJECT} ${PROJECT}-debug po update-po
\
static shared install-static install-shared
-include
$(wildcard ${DEPENDDIR}/*.dep)
README
View file @
b4797a62
...
...
@@ -10,7 +10,7 @@ enhance the user interface that is used by zathura and jumanji.
Requirements
------------
glib (>= 2.28)
gtk3 (>= 3.
2
)
gtk3 (>= 3.
4
)
intltool
libnotify (optional, for notification support)
...
...
colors.mk
View file @
b4797a62
# See LICENSE file for license and copyright information
#
ifeq
($(COLOR),1)
# GCC diagnostics colors
DIAGNOSTICS_COLOR_AVAILABLE
?=
$(
shell
(
$(CC)
-fdiagnostics-color
=
always
-E
- </dev/null
>
/dev/null 2>/dev/null
&&
echo
1
)
||
echo
0
)
ifeq
($(DIAGNOSTICS_COLOR_AVAILABLE),1)
CPPFLAGS
+=
-fdiagnostics-color
=
always
endif
# colorful output
TPUT
?=
/usr/bin/tput
TPUT_AVAILABLE
?=
$(
shell
${TPUT}
-V
2>/dev/null
)
ifdef
TPUT_AVAILABLE
ifeq
($(COLOR),1)
COLOR_NORMAL
=
`
$(TPUT)
sgr0
`
COLOR_ACTION
=
`
$(TPUT)
bold
``
$(TPUT)
setaf 3
`
COLOR_COMMENT
=
`
$(TPUT)
bold
``
$(TPUT)
setaf 2
`
COLOR_BRACKET
=
`
$(TPUT)
setaf 4
`
CC
+=
-fdiagnostics-color
=
always
define
colorecho
@echo
$(COLOR_BRACKET)
" ["
$(COLOR_ACTION)$1$(COLOR_BRACKET)
"] "
$(COLOR_COMMENT)$2$(COLOR_BRACKET)
$(COLOR_NORMAL)
endef
...
...
config.mk
View file @
b4797a62
...
...
@@ -2,7 +2,7 @@
GIRARA_VERSION_MAJOR
=
0
GIRARA_VERSION_MINOR
=
2
GIRARA_VERSION_REV
=
4
GIRARA_VERSION_REV
=
5
VERSION
=
${GIRARA_VERSION_MAJOR}
.
${GIRARA_VERSION_MINOR}
.
${GIRARA_VERSION_REV}
# Rules for the SOMAJOR and SOMINOR.
...
...
@@ -46,7 +46,7 @@ BINDIR ?= bin
# GTK+
GTK_VERSION_CHECK
?=
1
GTK_MIN_VERSION
=
3.
2
GTK_MIN_VERSION
=
3.
4
GTK_PKG_CONFIG_NAME
=
gtk+-3.0
# glib
GLIB_VERSION_CHECK
?=
1
...
...
@@ -70,8 +70,11 @@ endif
INCS
=
${GTK_INC}
${LIBNOTIFY_INC}
${JSON_INC}
LIBS
=
${GTK_LIB}
${LIBNOTIFY_LIB}
${JSON_LIB}
-lm
# flags
CFLAGS
+=
-std
=
c99
-pedantic
-Wall
-Wextra
-fPIC
$(INCS)
# pre-processor flags
CPPFLAGS
+=
-D_FILE_OFFSET_BITS
=
64
# compiler flags
CFLAGS
+=
-std
=
c11
-pedantic
-Wall
-Wextra
-fPIC
$(INCS)
# linker flags
LDFLAGS
+=
-fPIC
...
...
data/girara.css_t
View file @
b4797a62
...
...
@@ -9,6 +9,12 @@
-GtkRange-slider-width: 0;
-GtkRange-trough-border: 0;
}
#@session@ GtkScrolledWindow GtkScrollbar {
background-color: @scrollbar-bg@;
}
#@session@ GtkScrolledWindow GtkScrollbar.slider {
background-color: @scrollbar-fg@;
}
#@session@ * {
color: @default-fg@;
...
...
girara.pc.in
View file @
b4797a62
...
...
@@ -10,4 +10,4 @@ Version: ${version}
URL: http://pwmt.org/projects/girara
Cflags: -I${includedir}
Libs: -L${libdir} -l${project}
Requires.private: gtk+-3.0 @LIBNOTIFY_PC_NAME@
Requires.private: gtk+-3.0 @LIBNOTIFY_PC_NAME@
@JSON_PC_NAME@
girara/commands.c
View file @
b4797a62
...
...
@@ -52,7 +52,8 @@ girara_cmd_map_unmap(girara_session_t* session, girara_list_t* argument_list,
{
"Tab"
,
GDK_KEY_Tab
},
{
"ShiftTab"
,
GDK_KEY_ISO_Left_Tab
},
{
"Up"
,
GDK_KEY_Up
},
{
"Print"
,
GDK_KEY_Print
}
{
"Print"
,
GDK_KEY_Print
},
{
"Home"
,
GDK_KEY_Home
}
};
typedef
struct
gdk_mouse_button_s
...
...
girara/config.c
View file @
b4797a62
...
...
@@ -218,6 +218,8 @@ girara_config_load_default(girara_session_t* session)
girara_setting_add
(
session
,
"notification-warning-bg"
,
"#F3F000"
,
STRING
,
TRUE
,
_
(
"Warning notifaction background color"
),
NULL
,
NULL
);
girara_setting_add
(
session
,
"notification-fg"
,
"#000000"
,
STRING
,
TRUE
,
_
(
"Notification foreground color"
),
NULL
,
NULL
);
girara_setting_add
(
session
,
"notification-bg"
,
"#FFFFFF"
,
STRING
,
TRUE
,
_
(
"Notification background color"
),
NULL
,
NULL
);
girara_setting_add
(
session
,
"scrollbar-fg"
,
"#DDDDDD"
,
STRING
,
TRUE
,
_
(
"Scrollbar foreground color"
),
NULL
,
NULL
);
girara_setting_add
(
session
,
"scrollbar-bg"
,
"#000000"
,
STRING
,
TRUE
,
_
(
"Scrollbar background color"
),
NULL
,
NULL
);
girara_setting_add
(
session
,
"tabbar-fg"
,
"#939393"
,
STRING
,
TRUE
,
_
(
"Tab bar foreground color"
),
NULL
,
NULL
);
girara_setting_add
(
session
,
"tabbar-bg"
,
"#000000"
,
STRING
,
TRUE
,
_
(
"Tab bar background color"
),
NULL
,
NULL
);
girara_setting_add
(
session
,
"tabbar-focus-fg"
,
"#9FBC00"
,
STRING
,
TRUE
,
_
(
"Tab bar foreground color (active)"
),
NULL
,
NULL
);
...
...
@@ -237,16 +239,19 @@ girara_config_load_default(girara_session_t* session)
girara_setting_add
(
session
,
"smooth-scroll"
,
&
use_smooth_scroll
,
BOOLEAN
,
TRUE
,
_
(
"Enable smooth scrolling and zooming"
),
NULL
,
NULL
);
/* shortcuts */
girara_shortcut_add
(
session
,
0
,
GDK_KEY_Escape
,
NULL
,
girara_sc_abort
,
normal_mode
,
0
,
NULL
);
girara_shortcut_add
(
session
,
GDK_CONTROL_MASK
,
GDK_KEY_c
,
NULL
,
girara_sc_abort
,
normal_mode
,
0
,
NULL
);
girara_shortcut_add
(
session
,
GDK_CONTROL_MASK
,
GDK_KEY_q
,
NULL
,
girara_sc_quit
,
normal_mode
,
0
,
NULL
);
girara_shortcut_add
(
session
,
0
,
GDK_KEY_colon
,
NULL
,
girara_sc_focus_inputbar
,
normal_mode
,
0
,
":"
);
girara_shortcut_add
(
session
,
GDK_CONTROL_MASK
,
GDK_KEY_w
,
NULL
,
girara_sc_tab_close
,
normal_mode
,
0
,
NULL
);
girara_shortcut_add
(
session
,
0
,
0
,
"gt"
,
girara_sc_tab_navigate
,
normal_mode
,
GIRARA_NEXT
,
NULL
);
girara_shortcut_add
(
session
,
0
,
0
,
"gT"
,
girara_sc_tab_navigate
,
normal_mode
,
GIRARA_PREVIOUS
,
NULL
);
girara_shortcut_add
(
session
,
0
,
GDK_KEY_Escape
,
NULL
,
girara_sc_abort
,
normal_mode
,
0
,
NULL
);
girara_shortcut_add
(
session
,
GDK_CONTROL_MASK
,
GDK_KEY_bracketleft
,
NULL
,
girara_sc_abort
,
normal_mode
,
0
,
NULL
);
girara_shortcut_add
(
session
,
GDK_CONTROL_MASK
,
GDK_KEY_c
,
NULL
,
girara_sc_abort
,
normal_mode
,
0
,
NULL
);
girara_shortcut_add
(
session
,
GDK_CONTROL_MASK
,
GDK_KEY_q
,
NULL
,
girara_sc_quit
,
normal_mode
,
0
,
NULL
);
girara_shortcut_add
(
session
,
0
,
GDK_KEY_colon
,
NULL
,
girara_sc_focus_inputbar
,
normal_mode
,
0
,
":"
);
girara_shortcut_add
(
session
,
GDK_CONTROL_MASK
,
GDK_KEY_w
,
NULL
,
girara_sc_tab_close
,
normal_mode
,
0
,
NULL
);
girara_shortcut_add
(
session
,
0
,
0
,
"gt"
,
girara_sc_tab_navigate
,
normal_mode
,
GIRARA_NEXT
,
NULL
);
girara_shortcut_add
(
session
,
0
,
0
,
"gT"
,
girara_sc_tab_navigate
,
normal_mode
,
GIRARA_PREVIOUS
,
NULL
);
/* inputbar shortcuts */
girara_inputbar_shortcut_add
(
session
,
GDK_CONTROL_MASK
,
GDK_KEY_j
,
girara_isc_activate
,
0
,
NULL
);
girara_inputbar_shortcut_add
(
session
,
0
,
GDK_KEY_Escape
,
girara_isc_abort
,
0
,
NULL
);
girara_inputbar_shortcut_add
(
session
,
GDK_CONTROL_MASK
,
GDK_KEY_bracketleft
,
girara_isc_abort
,
0
,
NULL
);
girara_inputbar_shortcut_add
(
session
,
GDK_CONTROL_MASK
,
GDK_KEY_c
,
girara_isc_abort
,
0
,
NULL
);
girara_inputbar_shortcut_add
(
session
,
0
,
GDK_KEY_Tab
,
girara_isc_completion
,
GIRARA_NEXT
,
NULL
);
girara_inputbar_shortcut_add
(
session
,
GDK_CONTROL_MASK
,
GDK_KEY_Tab
,
girara_isc_completion
,
GIRARA_NEXT_GROUP
,
NULL
);
...
...
girara/session.c
View file @
b4797a62
...
...
@@ -63,6 +63,8 @@ init_template_engine(GiraraTemplate* csstemplate)
"notification-warning-bg"
,
"notification-fg"
,
"notification-bg"
,
"scrollbar-fg"
,
"scrollbar-bg"
,
"tabbar-fg"
,
"tabbar-bg"
,
"tabbar-focus-fg"
,
...
...
@@ -115,6 +117,8 @@ fill_template_with_values(girara_session_t* session)
"notification-warning-bg"
,
"notification-fg"
,
"notification-bg"
,
"scrollbar-fg"
,
"scrollbar-bg"
,
"tabbar-fg"
,
"tabbar-bg"
,
"tabbar-focus-fg"
,
...
...
@@ -268,9 +272,7 @@ girara_session_create()
gtk_box_set_homogeneous
(
session
->
gtk
.
inputbar_box
,
TRUE
);
session
->
gtk
.
view
=
gtk_scrolled_window_new
(
NULL
,
NULL
);
session
->
gtk
.
viewport
=
gtk_viewport_new
(
NULL
,
NULL
);
#if GTK_CHECK_VERSION(3, 4, 0)
gtk_widget_add_events
(
session
->
gtk
.
viewport
,
GDK_SCROLL_MASK
);
#endif
session
->
gtk
.
statusbar
=
gtk_event_box_new
();
session
->
gtk
.
notification_area
=
gtk_event_box_new
();
session
->
gtk
.
notification_text
=
gtk_label_new
(
NULL
);
...
...
@@ -289,13 +291,11 @@ girara_session_init(girara_session_t* session, const char* sessionname)
return
false
;
}
#if GTK_CHECK_VERSION(3, 4, 0)
bool
smooth_scroll
=
false
;
girara_setting_get
(
session
,
"smooth-scroll"
,
&
smooth_scroll
);
if
(
smooth_scroll
)
{
gtk_widget_add_events
(
session
->
gtk
.
viewport
,
GDK_SMOOTH_SCROLL_MASK
);
}
#endif
session
->
private_data
->
session_name
=
g_strdup
(
(
sessionname
==
NULL
)
?
"girara"
:
sessionname
);
...
...
girara/shortcuts.c
View file @
b4797a62
...
...
@@ -148,6 +148,13 @@ girara_inputbar_shortcut_free(girara_inputbar_shortcut_t* inputbar_shortcut)
g_slice_free
(
girara_inputbar_shortcut_t
,
inputbar_shortcut
);
}
bool
girara_isc_activate
(
girara_session_t
*
session
,
girara_argument_t
*
UNUSED
(
argument
),
girara_event_t
*
UNUSED
(
event
),
unsigned
int
UNUSED
(
t
))
{
girara_callback_inputbar_activate
(
session
->
gtk
.
inputbar_entry
,
session
);
return
true
;
}
bool
girara_isc_abort
(
girara_session_t
*
session
,
girara_argument_t
*
UNUSED
(
argument
),
girara_event_t
*
UNUSED
(
event
),
unsigned
int
UNUSED
(
t
))
{
...
...
girara/shortcuts.h
View file @
b4797a62
...
...
@@ -211,6 +211,19 @@ bool girara_sc_toggle_tabbar(girara_session_t* session, girara_argument_t*
bool
girara_sc_set
(
girara_session_t
*
session
,
girara_argument_t
*
argument
,
girara_event_t
*
event
,
unsigned
int
t
);
/**
* Default shortcut function to activate
*
* @param session The used girara session
* @param argument The argument
* @param event Girara event
* @param t Number of executions
* @return true No error occured
* @return false An error occured (abort execution)
*/
bool
girara_isc_activate
(
girara_session_t
*
session
,
girara_argument_t
*
argument
,
girara_event_t
*
event
,
unsigned
int
t
);
/**
* Default inputbar shortcut to abort
*
...
...
girara/utils.c
View file @
b4797a62
...
...
@@ -4,7 +4,6 @@
#if !defined(__OpenBSD__) && !defined(__FreeBSD__) && !defined(__NetBSD__) && !defined(__APPLE__)
#define _XOPEN_SOURCE 700
#endif
#define _FILE_OFFSET_BITS 64
#include <ctype.h>
#include <glib.h>
...
...
girara/utils.h
View file @
b4797a62
...
...
@@ -117,22 +117,22 @@ void* girara_safe_realloc(void** ptr, size_t size) GIRARA_ALLOC_SIZE(2);
* Prints a debug message. The arguments are passed to @ref _girara_debug as
* last argument.
*/
#define girara_debug(...) _girara_debug(__
FUNCTION
__, __LINE__, GIRARA_DEBUG, __VA_ARGS__)
#define girara_debug(...) _girara_debug(__
func
__, __LINE__, GIRARA_DEBUG, __VA_ARGS__)
/**
* Prints an info message. The arguments are passed to @ref _girara_debug as
* last argument.
*/
#define girara_info(...) _girara_debug(__
FUNCTION
__, __LINE__, GIRARA_INFO, __VA_ARGS__)
#define girara_info(...) _girara_debug(__
func
__, __LINE__, GIRARA_INFO, __VA_ARGS__)
/**
* Prints a warning message. The arguments are passed to @ref _girara_debug as
* last argument.
*/
#define girara_warning(...) _girara_debug(__
FUNCTION
__, __LINE__, GIRARA_WARNING, __VA_ARGS__)
#define girara_warning(...) _girara_debug(__
func
__, __LINE__, GIRARA_WARNING, __VA_ARGS__)
/**
* Prints an error message. The arguments are passed to @ref _girara_debug as
* last argument.
*/
#define girara_error(...) _girara_debug(__
FUNCTION
__, __LINE__, GIRARA_ERROR, __VA_ARGS__)
#define girara_error(...) _girara_debug(__
func
__, __LINE__, GIRARA_ERROR, __VA_ARGS__)
/**
* Print a message.
...
...
po/Makefile
View file @
b4797a62
...
...
@@ -6,7 +6,7 @@ include ../colors.mk
PROJECTNV
=
girara
PROJECT
=
girara-gtk3
CATALOGS
=
$(
wildcard
*
.po
)
CATALOGS
=
$(
sort
$(
wildcard
*
.po
)
)
LINGUAS
?=
$(
patsubst
%.po, %,
$(CATALOGS)
)
ifeq
($(LINGUAS),)
ALINGUAS
=
...
...
@@ -20,7 +20,7 @@ all: ${MOS}
clean
:
$(QUIET)
rm
-rf
POTFILES.in POTFILES.in.tmp
$(
patsubst
%.po, %,
$(CATALOGS)
)
${PROJECT}
.pot
POTFILES.in
:
$(wildcard ../girara/*.c)
POTFILES.in
:
$(sort
$(wildcard ../girara/*.c)
)
$(QUIET)
set
-e
&&
rm
-f
$@
.tmp
&&
touch
$@
.tmp
&&
\
for
f
in
$
(
^F
)
;
do
\
echo
girara/
$$
f
>>
$@
.tmp
;
\
...
...
po/de.po
View file @
b4797a62
...
...
@@ -10,8 +10,8 @@ msgid ""
msgstr ""
"Project-Id-Version: girara\n"
"Report-Msgid-Bugs-To: http://bugs.pwmt.org\n"
"POT-Creation-Date: 2015-
04-13 19:37
+0
2
00\n"
"PO-Revision-Date: 2015-
01-01
21:
2
4+0100\n"
"POT-Creation-Date: 2015-
12-14 22:01
+0
1
00\n"
"PO-Revision-Date: 2015-
12-14
21:4
9
+0100\n"
"Last-Translator: Sebastian Ramacher <sebastian+dev@ramacher.at>\n"
"Language-Team: German (http://www.transifex.com/projects/p/girara/language/"
"de/)\n"
...
...
@@ -22,17 +22,73 @@ msgstr ""
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Generator: Poedit 1.6.10\n"
#: ../girara/settings.c:244
#, c-format
msgid "Invalid number of arguments passed: %zu instead of 1"
msgstr "Ungültige Anzahl an Argumente übergeben: %zu anstatt von 1"
#. unhandled command
#: ../girara/callbacks.c:501
#, c-format
msgid "Not a valid command: %s"
msgstr "Ungültige zugewiesene Funktion: %s"
#: ../girara/commands.c:110 ../girara/commands.c:310
#, c-format
msgid "Invalid number of arguments passed: %zu instead of at least %u"
msgstr "Ungültige Anzahl an Argumente übergeben: %zu anstatt von mindestens %u"
#: ../girara/commands.c:144
#, c-format
msgid "Unregistered mode specified: %s"
msgstr "Modus ist nicht registriert: %s"
#: ../girara/commands.c:176
#, c-format
msgid "Invalid modifier in %s"
msgstr "Ungültiger Modifikator in %s"
#: ../girara/commands.c:215
#, c-format
msgid "Invalid special key value for %s"
msgstr "Ungültige Sondertaste für %s"
#: ../girara/commands.c:251
#, c-format
msgid "Invalid special key value or mode %s"
msgstr "Ungültige Sondertaste oder Modus %s"
#: ../girara/commands.c:332
#, c-format
msgid "Not a valid shortcut function: %s"
msgstr "Ungültige zugewiesene Funktion: %s"
#: ../girara/commands.c:420
msgid "Not enough arguments."
msgstr "Zu wenige Argumente."
#: ../girara/commands.c:425
msgid "Too many arguments."
msgstr "Zu viele Argumente."
#: ../girara/commands.c:438
#, c-format
msgid "Unknown option: %s"
msgstr "Unbekannte Otion: %s"
#: ../girara/commands.c:452
msgid "true"
msgstr "wahr"
#: ../girara/commands.c:452
msgid "false"
msgstr "falsch"
#: ../girara/commands.c:484
#, c-format
msgid "No value defined for option: %s"
msgstr "Kein Wert für Option definiert: %s"
#: ../girara/commands.c:499
#, c-format
msgid "Unknown value for option: %s"
msgstr "Unbekannter Wert für Option: %s"
#. settings
#: ../girara/config.c:202
msgid "Font"
...
...
@@ -111,158 +167,110 @@ msgid "Notification background color"
msgstr "Hintergrundfarbe der Benachrichtigung"
#: ../girara/config.c:221
msgid "Scrollbar foreground color"
msgstr "Vordergrundfarbe der Bildlaufleiste"
#: ../girara/config.c:222
msgid "Scrollbar background color"
msgstr "Hintergrundfarbe der Bildlaufleiste"
#: ../girara/config.c:223
msgid "Tab bar foreground color"
msgstr "Registerleisten Vordergrundfarbe"
#: ../girara/config.c:22
2
#: ../girara/config.c:22
4
msgid "Tab bar background color"
msgstr "Registerleisten Hintergrundfarbe"
#: ../girara/config.c:22
3
#: ../girara/config.c:22
5
msgid "Tab bar foreground color (active)"
msgstr "Registerleisten Vordergrundfarbe (aktiv)"
#: ../girara/config.c:22
4
#: ../girara/config.c:22
6
msgid "Tab bar background color (active)"
msgstr "Registerleisten Hintergrundfarbe (aktiv)"
#: ../girara/config.c:22
6
#: ../girara/config.c:22
8
msgid "Initial window width"
msgstr "Ausgangsbreite des Fensters"
#: ../girara/config.c:22
7
#: ../girara/config.c:22
9
msgid "Initial window height"
msgstr "Ausgangshöhe des Fensters"
#: ../girara/config.c:2
28
#: ../girara/config.c:2
30
msgid "Horizontal padding for the status input and notification bars"
msgstr ""
"Horizontaler innerer Rand für das Statusfeld und die Benachrichtigungsleiste"
#: ../girara/config.c:2
29
#: ../girara/config.c:2
31
msgid "Vertical padding for the status input and notification bars"
msgstr ""
"Vertikaler innerer Rand für das Statusfeld und die Benachrichtigungsleiste"
#: ../girara/config.c:23
0
#: ../girara/config.c:23
2
msgid "Number of completion items"
msgstr "Anzahl der Elemente in der Vervollständigung"
#: ../girara/config.c:23
1
#: ../girara/config.c:23
3
msgid "Show both the horizontal and vertical scrollbars"
msgstr "Zeige horizontale und vertikale Bildlaufleiste"
#: ../girara/config.c:23
2
#: ../girara/config.c:23
4
msgid "Show the horizontal scrollbar"
msgstr "Zeige horizontale Bildlaufleiste"
#: ../girara/config.c:23
3
#: ../girara/config.c:23
5
msgid "Show the vertical scrollbar"
msgstr "Zeige vertikale Bildlaufleiste"
#: ../girara/config.c:23
4
#: ../girara/config.c:23
6
msgid "Window icon"
msgstr "Fenstericon"
#: ../girara/config.c:23
5
#: ../girara/config.c:23
7
msgid "Command to execute in :exec"
msgstr "Befehl, der von :exec ausgeführt werden soll"
#: ../girara/config.c:23
6
#: ../girara/config.c:23
8
msgid "Show or hide certain GUI elements"
msgstr "Zeige oder verstecke bestimmte GUI Elemente"
#: ../girara/config.c:23
7
#: ../girara/config.c:23
9
msgid "Enable smooth scrolling and zooming"
msgstr ""
msgstr "
Aktiviere glattes Bildschirmrollen und Vergrößern
"
#. commands
#: ../girara/config.c:27
3
#: ../girara/config.c:27
8
msgid "Execute a command"
msgstr "Führe einen Befehl aus."
#: ../girara/config.c:27
4
#: ../girara/config.c:27
9
msgid "Map a key sequence"
msgstr "Tastenfolge zuweisen"
#: ../girara/config.c:2
75
#: ../girara/config.c:2
80
msgid "Quit the program"
msgstr "Beende das Programm"
#: ../girara/config.c:2
76
#: ../girara/config.c:2
81
msgid "Set an option"
msgstr "Setze eine Option"
#: ../girara/config.c:2
77
#: ../girara/config.c:2
82
msgid "Unmap a key sequence"
msgstr "Tastenfolge entbinden"
#: ../girara/config.c:2
79
#: ../girara/config.c:2
84
msgid "Dump settings to a file"
msgstr "Speichere Einstellungen in einer Datei"
#: ../girara/utils.c:525
#, c-format
msgid "Failed to execute command: %s"
msgstr "Konnte Befehl nicht ausführen: %s"
#: ../girara/commands.c:109 ../girara/commands.c:309
#, c-format
msgid "Invalid number of arguments passed: %zu instead of at least %u"
msgstr "Ungültige Anzahl an Argumente übergeben: %zu anstatt von mindestens %u"
#: ../girara/commands.c:143
#, c-format
msgid "Unregistered mode specified: %s"
msgstr "Modus ist nicht registriert: %s"
#: ../girara/commands.c:175
#, c-format
msgid "Invalid modifier in %s"
msgstr "Ungültiger Modifikator in %s"
#: ../girara/commands.c:214
#, c-format
msgid "Invalid special key value for %s"
msgstr "Ungültige Sondertaste für %s"
#: ../girara/commands.c:250
#, c-format
msgid "Invalid special key value or mode %s"
msgstr "Ungültige Sondertaste oder Modus %s"
#: ../girara/commands.c:331
#, c-format
msgid "Not a valid shortcut function: %s"
msgstr "Ungültige zugewiesene Funktion: %s"
#: ../girara/commands.c:419
msgid "Not enough arguments."
msgstr "Zu wenige Argumente."
#: ../girara/commands.c:424
msgid "Too many arguments."
msgstr "Zu viele Argumente."
#: ../girara/commands.c:437
#, c-format
msgid "Unknown option: %s"
msgstr "Unbekannte Otion: %s"
#: ../girara/commands.c:451
msgid "true"
msgstr "wahr"
#: ../girara/commands.c:451
msgid "false"
msgstr "falsch"
#: ../girara/commands.c:483
#: ../girara/settings.c:244
#, c-format
msgid "
No value defined for option: %s
"
msgstr "
Kein Wert für Option definiert: %s
"
msgid "
Invalid number of arguments passed: %zu instead of 1
"
msgstr "
Ungültige Anzahl an Argumente übergeben: %zu anstatt von 1
"
#: ../girara/
command
s.c:
498
#: ../girara/
util
s.c:
524
#, c-format
msgid "
Unknown value for option
: %s"
msgstr "
Unbekannter Wert für Optio
n: %s"
msgid "
Failed to execute command
: %s"
msgstr "
Konnte Befehl nicht ausführe
n: %s"
po/el.po
View file @
b4797a62
...
...
@@ -8,8 +8,8 @@ msgid ""
msgstr ""
"Project-Id-Version: girara\n"
"Report-Msgid-Bugs-To: http://bugs.pwmt.org\n"
"POT-Creation-Date: 2015-
04-13 19:37
+0
2
00\n"
"PO-Revision-Date: 2015-
01-01
21:
2
5+0100\n"
"POT-Creation-Date: 2015-
12-14 22:01
+0
1
00\n"
"PO-Revision-Date: 2015-
12-14
21:
3
5+0100\n"
"Last-Translator: Sebastian Ramacher <sebastian+dev@ramacher.at>\n"
"Language-Team: Greek (http://www.transifex.com/projects/p/girara/language/"
"el/)\n"
...
...
@@ -20,17 +20,73 @@ msgstr ""
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Generator: Poedit 1.6.10\n"
#: ../girara/settings.c:244
#, c-format
msgid "Invalid number of arguments passed: %zu instead of 1"