From c50368be85f813b147f6083813d1e72455451231 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Andrew=20Lee=20=28=E6=9D=8E=E5=81=A5=E7=A7=8B=29?= Date: Fri, 14 Aug 2015 17:14:01 +0800 Subject: [PATCH] Adding upstream version 0.9.0+20150723. MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: Andrew Lee (李健秋) --- CMakeLists.txt | 19 +- src/CMakeLists.txt | 40 +- src/desktops.cpp | 84 +-- src/dock.cpp | 205 +++---- src/maindialog.cpp | 5 +- src/maindialog.h | 9 +- src/obconf.ui | 345 ++++++++++- src/translations/obconf-qt_ca.ts | 317 +++++++--- src/translations/obconf-qt_de.desktop | 3 + src/translations/obconf-qt_de.ts | 816 ++++++++++++++++++++++++++ src/translations/obconf-qt_es.ts | 329 ++++++++--- src/translations/obconf-qt_gl.ts | 329 ++++++++--- src/translations/obconf-qt_hr.ts | 329 ++++++++--- src/translations/obconf-qt_id.ts | 329 ++++++++--- src/translations/obconf-qt_is.ts | 317 +++++++--- src/translations/obconf-qt_ja.ts | 329 ++++++++--- src/translations/obconf-qt_pa.ts | 317 +++++++--- src/translations/obconf-qt_pl.ts | 329 ++++++++--- src/translations/obconf-qt_pt.ts | 329 ++++++++--- src/translations/obconf-qt_pt_BR.ts | 317 +++++++--- src/translations/obconf-qt_ru.ts | 329 ++++++++--- src/translations/obconf-qt_ru_RU.ts | 329 ++++++++--- src/translations/obconf-qt_sv.ts | 329 ++++++++--- src/translations/obconf-qt_uk.ts | 329 ++++++++--- 24 files changed, 4781 insertions(+), 1632 deletions(-) create mode 100644 src/translations/obconf-qt_de.desktop create mode 100644 src/translations/obconf-qt_de.ts diff --git a/CMakeLists.txt b/CMakeLists.txt index 6c55fe9..e13c7f5 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -7,21 +7,24 @@ find_program(SED_PROGRAM sed) # additional cmake files list(APPEND CMAKE_MODULE_PATH ${CMAKE_CURRENT_SOURCE_DIR}/cmake) -# Support Qt5 -option(USE_QT5 "Build with Qt5." $ENV{USE_QT5}) +include(GNUInstallDirs) + +# Support Qt4 for the time being +option(USE_QT4 "Build with Qt4." $ENV{USE_QT4}) set(CMAKE_INCLUDE_CURRENT_DIR ON) set(CMAKE_POSITION_INDEPENDENT_CODE ON) set(CMAKE_AUTOMOC ON) -if(USE_QT5) + +if(USE_QT4) + find_package(Qt4 REQUIRED QtCore QtGui) # Qt + include(${QT_USE_FILE}) + message(STATUS "Building with Qt${QTVERSION}") +else() cmake_minimum_required(VERSION 2.8.11) find_package(Qt5Widgets REQUIRED) find_package(Qt5X11Extras REQUIRED) find_package(Qt5LinguistTools REQUIRED QUIET) message(STATUS "Building with Qt${Qt5Core_VERSION_STRING}") -else() - find_package(Qt4 REQUIRED QtCore QtGui) # Qt - include(${QT_USE_FILE}) - message(STATUS "Building with Qt${QTVERSION}") endif() find_package(PkgConfig) @@ -40,7 +43,7 @@ add_subdirectory(src) # install an icon for the application install( FILES data/obconf-qt.png - DESTINATION share/icons/hicolor/48x48/apps + DESTINATION "${CMAKE_INSTALL_DATAROOTDIR}/icons/hicolor/48x48/apps" ) # building tarball with CPack ------------------------------------------------- diff --git a/src/CMakeLists.txt b/src/CMakeLists.txt index 8dcae7a..d4cd1ba 100644 --- a/src/CMakeLists.txt +++ b/src/CMakeLists.txt @@ -1,12 +1,12 @@ # set visibility to hidden to hide symbols, unlesss they're exporeted manually in the code -set(CMAKE_CXX_FLAGS "-DQT_NO_KEYWORDS -fno-exceptions") +set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -DQT_NO_KEYWORDS -fno-exceptions") -if(USE_QT5) - set(QTX_INCLUDE_DIRS "") - set(QTX_LIBRARIES Qt5::Widgets Qt5::X11Extras) -else() +if(USE_QT4) set(QTX_INCLUDE_DIRS ${QT_QTCORE_INCLUDE_DIR} ${QT_QTGUI_INCLUDE_DIR} ${QT_QTDBUS_DIR}) set(QTX_LIBRARIES ${QT_QTCORE_LIBRARY} ${QT_QTGUI_LIBRARY} ${QT_QTDBUS_LIBRARY}) +else() + set(QTX_INCLUDE_DIRS "") + set(QTX_LIBRARIES Qt5::Widgets Qt5::X11Extras) endif() include_directories( @@ -36,10 +36,10 @@ set(obconf-qt_UIS obconf.ui ) -if(USE_QT5) - qt5_wrap_ui(obconf-qt_UI_H ${obconf-qt_UIS}) -else() +if(USE_QT4) qt4_wrap_ui(obconf-qt_UI_H ${obconf-qt_UIS}) +else() + qt5_wrap_ui(obconf-qt_UI_H ${obconf-qt_UIS}) endif() # The ui code generated by Qt uic contains QMetaObject::connectSlotsByName() @@ -61,37 +61,37 @@ option (UPDATE_TRANSLATIONS "Update source translation translations/*.ts files" set(TRANSLATION_TEMPLATE "translations/obconf-qt.ts") file(GLOB TS_FILES translations/obconf-qt_*.ts) -if(USE_QT5) +if(USE_QT4) if (UPDATE_TRANSLATIONS) - qt5_create_translation(QMS_FILES + qt4_create_translation(QMS_FILES ${obconf-qt_SRCS} ${obconf-qt_UI_H} ${TRANSLATION_TEMPLATE} OPTIONS -locations absolute) - qt5_create_translation(QM_FILES + qt4_create_translation(QMS_FILES ${obconf-qt_SRCS} ${obconf-qt_UI_H} ${TS_FILES} OPTIONS -locations absolute) else (UPDATE_TRANSLATIONS) - qt5_add_translation(QM_FILES ${TS_FILES}) + qt4_add_translation(QM_FILES ${TS_FILES}) endif (UPDATE_TRANSLATIONS) -else(USE_QT5) # use qt4 +else(USE_QT4) # use qt4 if (UPDATE_TRANSLATIONS) - qt4_create_translation(QMS_FILES + qt5_create_translation(QMS_FILES ${obconf-qt_SRCS} ${obconf-qt_UI_H} ${TRANSLATION_TEMPLATE} OPTIONS -locations absolute) - qt4_create_translation(QMS_FILES + qt5_create_translation(QM_FILES ${obconf-qt_SRCS} ${obconf-qt_UI_H} ${TS_FILES} OPTIONS -locations absolute) else (UPDATE_TRANSLATIONS) - qt4_add_translation(QM_FILES ${TS_FILES}) + qt5_add_translation(QM_FILES ${TS_FILES}) endif (UPDATE_TRANSLATIONS) -endif(USE_QT5) +endif(USE_QT4) if(UPDATE_TRANSLATIONS) add_custom_target(update_obconf-qt_translations ALL DEPENDS ${QMS}) @@ -117,9 +117,9 @@ add_executable(obconf-qt ) add_definitions( - -DPACKAGE_DATA_DIR="${CMAKE_INSTALL_PREFIX}/share/obconf-qt" - -DPIXMAPS_DIR="${CMAKE_INSTALL_PREFIX}/share/pixmaps" - -DTHEME_DIR="{CMAKE_INSTALL_PREFIX}/share/openbox/themes" + -DPACKAGE_DATA_DIR="${CMAKE_INSTALL_FULL_DATAROOTDIR}/obconf-qt" + -DPIXMAPS_DIR="${CMAKE_INSTALL_FULL_DATAROOTDIR}/pixmaps" + -DTHEME_DIR="${CMAKE_INSTALL_FULL_DATAROOTDIR}/openbox/themes" ) target_link_libraries(obconf-qt diff --git a/src/desktops.cpp b/src/desktops.cpp index a758794..0e6b834 100644 --- a/src/desktops.cpp +++ b/src/desktops.cpp @@ -25,7 +25,6 @@ #include "tree.h" #include -// FIXME: how to support XCB or Wayland? #include using namespace Obconf; @@ -46,92 +45,28 @@ void MainDialog::desktops_setup_tab() { gint i; -#if 0 - // FIXME - GtkWidget* w; - GtkCellRenderer* render; - GtkTreeViewColumn* column; - - w = get_widget("desktop_names"); - desktop_store = gtk_list_store_new(2, G_TYPE_STRING, G_TYPE_BOOLEAN); - gtk_tree_view_set_model(GTK_TREE_VIEW(w), GTK_TREE_MODEL(desktop_store)); - g_object_unref(desktop_store); - - gtk_tree_selection_set_mode(gtk_tree_view_get_selection(GTK_TREE_VIEW(w)), - GTK_SELECTION_SINGLE); - - render = gtk_cell_renderer_text_new(); - g_signal_connect(render, "edited", - G_CALLBACK(on_desktop_names_cell_edited), - NULL); - - column = gtk_tree_view_column_new_with_attributes - ("Name", render, "text", 0, "editable", 1, NULL); - gtk_tree_view_append_column(GTK_TREE_VIEW(w), column); - -#endif - desktops_read_names(); i = tree_get_int("desktops/popupTime", 875); ui.desktop_popup->setChecked(i != 0); ui.desktop_popup_time->setValue(i ? i : 875); - // FIXME enable_stuff(); } -/* FIXME - * static void enable_stuff() { - * GtkWidget* w; - * gboolean b; - * - * w = get_widget("desktop_popup"); - * b = gtk_toggle_button_get_active(GTK_TOGGLE_BUTTON(w)); - * w = get_widget("desktop_popup_time"); - * gtk_widget_set_sensitive(w, b); - } - */ - void MainDialog::on_desktop_num_valueChanged(int newValue) { num_desktops = newValue; desktops_write_number(); desktops_read_names(); } -#if 0 -// FIXME - -static void MainDialog::on_desktop_names_cell_edited(GtkCellRendererText* cell, - const gchar* path_string, - const gchar* new_text, - gpointer data) { - GtkTreePath* path; - GtkTreeIter it; - gchar* old_text; - GList* lit; - gint i; - - path = gtk_tree_path_new_from_string(path_string); - gtk_tree_model_get_iter(GTK_TREE_MODEL(desktop_store), &it, path); - - gtk_tree_model_get(GTK_TREE_MODEL(desktop_store), &it, 0, &old_text, -1); - g_free(old_text); - - i = gtk_tree_path_get_indices(path)[0]; - lit = g_list_nth(desktop_names, i); - - g_free(lit->data); - lit->data = g_strdup(new_text); +void MainDialog::on_desktop_names_itemChanged(QListWidgetItem * item) { + QString new_text = item->text(); - if(new_text[0]) /* not empty */ - gtk_list_store_set(desktop_store, &it, 0, lit->data, -1); - else - gtk_list_store_set(desktop_store, &it, 0, _("(Unnamed desktop)"), -1); + if(new_text.isEmpty()) + item->setText(tr("(Unnamed desktop)")); desktops_write_names(); } -#endif - void MainDialog::desktops_read_names() { xmlNodePtr n; gint i; @@ -151,7 +86,9 @@ void MainDialog::desktops_read_names() { if(desktop_name.isEmpty()) desktop_name = tr("(Unnamed desktop)"); - ui.desktop_names->addItem(desktop_name); + QListWidgetItem* item = new QListWidgetItem(desktop_name); + item->setFlags(item->flags() | Qt::ItemIsEditable); + ui.desktop_names->addItem(item); ++i; } @@ -159,7 +96,9 @@ void MainDialog::desktops_read_names() { } while(i < num_desktops) { - ui.desktop_names->addItem(tr("(Unnamed desktop)")); + QListWidgetItem* item = new QListWidgetItem(tr("(Unnamed desktop)")); + item->setFlags(item->flags() | Qt::ItemIsEditable); + ui.desktop_names->addItem(item); ++i; } } @@ -216,10 +155,9 @@ void MainDialog::on_desktop_popup_toggled(bool checked) { } else tree_set_int("desktops/popupTime", 0); - - // FIXME enable_stuff(); } void MainDialog::on_desktop_popup_time_valueChanged(int newValue) { tree_set_int("desktops/popupTime", newValue); } + diff --git a/src/dock.cpp b/src/dock.cpp index 43110ac..c3f794e 100644 --- a/src/dock.cpp +++ b/src/dock.cpp @@ -66,147 +66,84 @@ void MainDialog::dock_setup_tab() { g_free(s); -#if 0 - // FIXME - w = get_widget("dock_position"); - gtk_option_menu_set_history(GTK_OPTION_MENU(w), pos); + ui.dock_position->setCurrentIndex(pos); - w = get_widget("dock_float_x"); - gtk_spin_button_set_value(GTK_SPIN_BUTTON(w), - tree_get_int("dock/floatingX", 0)); + bool is_floating = (pos == POSITION_FLOATING); + ui.dock_float_x->setEnabled(is_floating); + ui.dock_float_y->setEnabled(is_floating); - w = get_widget("dock_float_y"); - gtk_spin_button_set_value(GTK_SPIN_BUTTON(w), - tree_get_int("dock/floatingY", 0)); + ui.dock_float_x->setValue(tree_get_int("dock/floatingX", 0)); + ui.dock_float_y->setValue(tree_get_int("dock/floatingY", 0)); s = tree_get_string("dock/stacking", "Above"); - if(!strcasecmp(s, "Normal")) - w = get_widget("dock_stack_normal"); + ui.dock_stack_normal->setChecked(true); else if(!strcasecmp(s, "Below")) - w = get_widget("dock_stack_bottom"); + ui.dock_stack_bottom->setChecked(true); else - w = get_widget("dock_stack_top"); - + ui.dock_stack_top->setChecked(true); g_free(s); - gtk_toggle_button_set_active(GTK_TOGGLE_BUTTON(w), TRUE); - w = get_widget("dock_direction"); s = tree_get_string("dock/direction", "Vertical"); if(!strcasecmp(s, "Horizontal")) pos = DIRECTION_HORIZONTAL; else pos = DIRECTION_VERTICAL; g_free(s); - gtk_option_menu_set_history(GTK_OPTION_MENU(w), pos); - - w = get_widget("dock_nostrut"); - gtk_toggle_button_set_active(GTK_TOGGLE_BUTTON(w), - tree_get_bool("dock/noStrut", FALSE)); - - w = get_widget("dock_hide"); - gtk_toggle_button_set_active(GTK_TOGGLE_BUTTON(w), - tree_get_bool("dock/autoHide", FALSE)); - - w = get_widget("dock_hide_delay"); - gtk_spin_button_set_value(GTK_SPIN_BUTTON(w), - tree_get_int("dock/hideDelay", 300)); - - w = get_widget("dock_show_delay"); - gtk_spin_button_set_value(GTK_SPIN_BUTTON(w), - tree_get_int("dock/showDelay", 300)); - - dock_enable_stuff(); - -#endif -} - -static void dock_enable_stuff() { - /* FIXME - * GtkWidget* w, *s; - * gboolean b; - * - * w = get_widget("dock_position"); - * b = gtk_option_menu_get_history(GTK_OPTION_MENU(w)) == POSITION_FLOATING; - * - * s = get_widget("dock_float_x"); - * gtk_widget_set_sensitive(s, b); - * s = get_widget("dock_float_y"); - * gtk_widget_set_sensitive(s, b); - * s = get_widget("dock_float_label"); - * gtk_widget_set_sensitive(s, b); - * s = get_widget("dock_float_label_x"); - * gtk_widget_set_sensitive(s, b); - * s = get_widget("dock_nostrut"); - * gtk_widget_set_sensitive(s, !b); - * - * w = get_widget("dock_hide"); - * b = gtk_toggle_button_get_active(GTK_TOGGLE_BUTTON(w)); - * - * s = get_widget("dock_hide_delay"); - * gtk_widget_set_sensitive(s, b); - * s = get_widget("dock_hide_label"); - * gtk_widget_set_sensitive(s, b); - * s = get_widget("dock_hide_label_units"); - * gtk_widget_set_sensitive(s, b); - * s = get_widget("dock_show_delay"); - * gtk_widget_set_sensitive(s, b); - * s = get_widget("dock_show_label"); - * gtk_widget_set_sensitive(s, b); - * s = get_widget("dock_show_label_units"); - * gtk_widget_set_sensitive(s, b); - */ -} - -#if 0 -//FIXME -void MainDialog::on_dock_top_left_activate(GtkMenuItem* w, gpointer data) { - tree_set_string("dock/position", "TopLeft"); - dock_enable_stuff(); -} - -void MainDialog::on_dock_top_activate(GtkMenuItem* w, gpointer data) { - tree_set_string("dock/position", "Top"); - dock_enable_stuff(); -} - -void MainDialog::on_dock_top_right_activate(GtkMenuItem* w, gpointer data) { - tree_set_string("dock/position", "TopRight"); - dock_enable_stuff(); + ui.dock_direction->setCurrentIndex(pos); + + ui.dock_nostrut->setChecked(tree_get_bool("dock/noStrut", FALSE)); + + bool auto_hide = tree_get_bool("dock/autoHide", FALSE); + ui.dock_hide->setChecked(auto_hide); + + ui.dock_hide_delay->setEnabled(auto_hide); + ui.dock_hide_delay->setValue(tree_get_int("dock/hideDelay", 300)); + + ui.dock_show_delay->setEnabled(auto_hide); + ui.dock_show_delay->setValue(tree_get_int("dock/showDelay", 300)); +} + +void MainDialog::on_dock_position_currentIndexChanged(int index) { + const char* val; + bool is_floating = false; + switch(index) { + case POSITION_TOPLEFT: + default: + val = "TopLeft"; + break; + case POSITION_TOP: + val = "Top"; + break; + case POSITION_TOPRIGHT: + val = "TopRight"; + break; + case POSITION_LEFT: + val = "Left"; + break; + case POSITION_RIGHT: + val = "Right"; + break; + case POSITION_BOTTOMLEFT: + val = "BottomLeft"; + break; + case POSITION_BOTTOM: + val = "Bottom"; + break; + case POSITION_BOTTOMRIGHT: + val = "BottomRight"; + break; + case POSITION_FLOATING: + val = "Floating"; + is_floating = true; + break; + } + tree_set_string("dock/position", val); + + ui.dock_float_x->setEnabled(is_floating); + ui.dock_float_y->setEnabled(is_floating); } -void MainDialog::on_dock_left_activate(GtkMenuItem* w, gpointer data) { - tree_set_string("dock/position", "Left"); - dock_enable_stuff(); -} - -void MainDialog::on_dock_right_activate(GtkMenuItem* w, gpointer data) { - tree_set_string("dock/position", "Right"); - dock_enable_stuff(); -} - -void MainDialog::on_dock_bottom_left_activate(GtkMenuItem* w, gpointer data) { - tree_set_string("dock/position", "BottomLeft"); - dock_enable_stuff(); -} - -void MainDialog::on_dock_bottom_activate(GtkMenuItem* w, gpointer data) { - tree_set_string("dock/position", "Bottom"); - dock_enable_stuff(); -} - -void MainDialog::on_dock_bottom_right_activate(GtkMenuItem* w, gpointer data) { - tree_set_string("dock/position", "BottomRight"); - dock_enable_stuff(); -} - -void MainDialog::on_dock_floating_activate(GtkMenuItem* w, gpointer data) { - tree_set_string("dock/position", "Floating"); - dock_enable_stuff(); -} - -#endif - void MainDialog::on_dock_float_x_valueChanged(int newValue) { tree_set_int("dock/floatingX", newValue); } @@ -215,31 +152,25 @@ void MainDialog::on_dock_float_y_valueChanged(int newValue) { tree_set_int("dock/floatingY", newValue); } -void MainDialog::on_dock_stacking_top_toggled(bool checked) { +void MainDialog::on_dock_stack_top_toggled(bool checked) { if(checked) tree_set_string("dock/stacking", "Above"); } -void MainDialog::on_dock_stacking_normal_toggled(bool checked) { +void MainDialog::on_dock_stack_normal_toggled(bool checked) { if(checked) tree_set_string("dock/stacking", "Normal"); } -void MainDialog::on_dock_stacking_bottom_toggled(bool checked) { +void MainDialog::on_dock_stack_bottom_toggled(bool checked) { if(checked) tree_set_string("dock/stacking", "Below"); } -#if 0 -// FIXME -void MainDialog::on_dock_horizontal_activate(GtkMenuItem* w, gpointer data) { - tree_set_string("dock/direction", "Horizontal"); -} - -void MainDialog::on_dock_vertical_activate(GtkMenuItem* w, gpointer data) { - tree_set_string("dock/direction", "Vertical"); +void MainDialog::on_dock_direction_currentIndexChanged(int index) { + const char* val = (index == DIRECTION_VERTICAL ? "Vertical" : "Horizontal"); + tree_set_string("dock/direction", val); } -#endif void MainDialog::on_dock_nostrut_toggled(bool checked) { tree_set_bool("dock/noStrut", checked); @@ -247,7 +178,6 @@ void MainDialog::on_dock_nostrut_toggled(bool checked) { void MainDialog::on_dock_hide_toggled(bool checked) { tree_set_bool("dock/autoHide", checked); - dock_enable_stuff(); } void MainDialog::on_dock_hide_delay_valueChanged(int newValue) { @@ -258,3 +188,4 @@ void MainDialog::on_dock_show_delay_valueChanged(int newValue) { tree_set_int("dock/showDelay", newValue); } + diff --git a/src/maindialog.cpp b/src/maindialog.cpp index 75f33e8..d358eb4 100644 --- a/src/maindialog.cpp +++ b/src/maindialog.cpp @@ -75,9 +75,10 @@ void MainDialog::reject() { void MainDialog::on_about_clicked() { QMessageBox::about(this, tr("About ObConf-Qt"), tr("A preferences manager for Openbox\n\n" - "Copyright (c) 2003-2013\n\n" + "Copyright (c) 2014-2015\n\n" "Authors:\n" - "* Hong Jen Yee (PCMan) \n" + "* Hong Jen Yee (PCMan) \n\n" + "The program is based on ObConf developed by the following developers.\n" "* Dana Jansens \n" "* Tim Riley \n" "* Javeed Shaikh ") diff --git a/src/maindialog.h b/src/maindialog.h index da1ac12..7e86c66 100644 --- a/src/maindialog.h +++ b/src/maindialog.h @@ -141,17 +141,20 @@ private Q_SLOTS: void on_desktop_num_valueChanged(int newValue); void on_desktop_popup_toggled(bool checked); void on_desktop_popup_time_valueChanged(int newValue); + void on_desktop_names_itemChanged(QListWidgetItem * item); // docks void on_dock_float_x_valueChanged(int newValue); void on_dock_float_y_valueChanged(int newValue); - void on_dock_stacking_top_toggled(bool checked); - void on_dock_stacking_normal_toggled(bool checked); - void on_dock_stacking_bottom_toggled(bool checked); + void on_dock_stack_top_toggled(bool checked); + void on_dock_stack_normal_toggled(bool checked); + void on_dock_stack_bottom_toggled(bool checked); void on_dock_nostrut_toggled(bool checked); void on_dock_hide_toggled(bool checked); void on_dock_hide_delay_valueChanged(int newValue); void on_dock_show_delay_valueChanged(int newValue); + void on_dock_position_currentIndexChanged(int index); + void on_dock_direction_currentIndexChanged(int index); private: Ui::MainDialog ui; diff --git a/src/obconf.ui b/src/obconf.ui index f6768bd..311cf5a 100644 --- a/src/obconf.ui +++ b/src/obconf.ui @@ -6,8 +6,8 @@ 0 0 - 541 - 399 + 595 + 578 @@ -851,6 +851,9 @@ D: Omnipresent (On all desktops) + + false + 1 @@ -1014,7 +1017,283 @@ D: Omnipresent (On all desktops) - + + + + + + The dock is a special container for "dockapps", or dock applications. It is not visible on screen until a dockapp is run. Dockapps can be used to show things like a clock, or to provide you with a system tray. + + + true + + + + + + + + 0 + 0 + + + + Position + + + + + + + 0 + 0 + + + + &Position: + + + dock_position + + + + + + + -1 + + + + Top Left + + + + + Top + + + + + Top Right + + + + + Left + + + + + Right + + + + + Bottom Left + + + + + Bottom + + + + + Bottom Right + + + + + Floating + + + + + + + + + 0 + 0 + + + + &Floating position: + + + dock_float_x + + + + + + + + + 10000 + + + + + + + + 0 + 0 + + + + x + + + + + + + 10000 + + + + + + + + + Allow &windows to be placed within the dock's area + + + + + + + &Orientation: + + + dock_direction + + + + + + + -1 + + + + Vertical + + + + + Horizontal + + + + + + + + + + + Stacking + + + + + + Keep dock &above other windows + + + + + + + A&llow dock to be both above and below windows + + + + + + + Keep dock &below other windows + + + + + + + + + + Hiding + + + + + + &Delay before hiding: + + + dock_hide_delay + + + + + + + Delay before &showing: + + + dock_show_delay + + + + + + + false + + + 10000 + + + + + + + false + + + 10000 + + + + + + + &Hide off screen + + + + + + + + + + Qt::Vertical + + + + 20 + 40 + + + + + + @@ -1058,8 +1337,8 @@ D: Omnipresent (On all desktops) accept() - 257 - 494 + 449 + 567 157 @@ -1074,8 +1353,8 @@ D: Omnipresent (On all desktops) reject() - 325 - 494 + 517 + 567 286 @@ -1090,8 +1369,8 @@ D: Omnipresent (On all desktops) setCurrentIndex(int) - 129 - 182 + 101 + 192 386 @@ -1099,5 +1378,53 @@ D: Omnipresent (On all desktops) + + desktop_popup + toggled(bool) + desktop_popup_time + setEnabled(bool) + + + 249 + 35 + + + 249 + 39 + + + + + dock_hide + toggled(bool) + dock_hide_delay + setEnabled(bool) + + + 225 + 416 + + + 379 + 450 + + + + + dock_hide + toggled(bool) + dock_show_delay + setEnabled(bool) + + + 293 + 420 + + + 471 + 479 + + + diff --git a/src/translations/obconf-qt_ca.ts b/src/translations/obconf-qt_ca.ts index d8f56c3..32dac92 100644 --- a/src/translations/obconf-qt_ca.ts +++ b/src/translations/obconf-qt_ca.ts @@ -17,237 +17,237 @@ MainDialog - + Mouse - + Window Manager Preferences - + Theme - + Appearance - + Font - - + + Windows - + Move & Resize - + Desktops - + Margins - + Dock - + Window Titles - + Button order: - + Moving and Resizing Windows - + Information Dialog - + Focusing Windows - + Focus windows when the mouse pointer moves over them - + Titlebar - + Desktop Margins - + Desktop margins are reserved areas on the edge of your screen. New windows will not be placed within a margin, and maximized windows will not cover them. - + Left: - - - - + + + + px - + Top: - + Right: - + Bottom: - + All monitors - + The active monitor - + The monitor with the mouse - + Primary Monitor - + The primary monitor is where Openbox will place dialogs, such as the one used for cycling windows. - + Fixed Monitor - + Active Monitor - + Monitor With Mouse Pointer - - + + Centered - + From left edge - + From right edge - + From top edge - + From bottom edge - + When resizing terminal windows - + Always - + Never - + Centered on the window - + Above the window - + Fixed position on screen - + Maximizes the window - + Shades the window - + N: Window icon L: Window label (Title) I: Iconify (Minimize) @@ -258,192 +258,322 @@ D: Omnipresent (On all desktops) - + Primary monitor - + + The dock is a special container for "dockapps", or dock applications. It is not visible on screen until a dockapp is run. Dockapps can be used to show things like a clock, or to provide you with a system tray. + + + + + Position + + + + + &Position: + + + + + Top Left + + + + + Top + + + + + Top Right + + + + + Left + + + + + Right + + + + + Bottom Left + + + + + Bottom + + + + + Bottom Right + + + + + Floating + + + + + &Floating position: + + + + + x + + + + + Allow &windows to be placed within the dock's area + + + + + &Orientation: + + + + + Vertical + + + + + Horizontal + + + + + Stacking + + + + + Keep dock &above other windows + + + + + A&llow dock to be both above and below windows + + + + + Keep dock &below other windows + + + + + Hiding + + + + + &Delay before hiding: + + + + + Delay before &showing: + + + + + &Hide off screen + + + + About - + &Install a new theme... - + Create a theme &archive (.obt)... - + &Windows retain a border when undecorated - + A&nimate iconify and restore - + &Active window title: - + &Inactive window title: - + Menu &header: - + &Menu Item: - + Active &On-screen display: - + Inactive O&n-screen display: - + Focus &new windows when they appear - + &Place new windows under the mouse pointer - + &Center new windows when they are placed - + Prefer to place new windows &on: - + Primary &monitor: - + &Fixed monitor: - + Update the window contents while &resizing - + Drag &threshold distance: - + Amount of resistance against other &windows: - + Amount of resistance against screen &edges: - + &Amount of time to wait before switching: - + &Switch desktops when moving a window past the screen edge - + Fixed &y position: - + Information dialog's &position: - + Fixed &x position: - + Show &information dialog: - + &Delay before focusing and raising windows: - + Move focus under the mouse when &switching desktops - + Move focus &under the mouse when the mouse is not moving - + &Raise windows when the mouse pointer moves over them - + Double click on the &titlebar: - + Double click ti&me: - + &Show a notification when switching desktops - + &Amount of time to show the notification for: - + &Number of desktops: - + &Desktop names: @@ -456,8 +586,9 @@ D: Omnipresent (On all desktops) - - + + + (Unnamed desktop) @@ -470,10 +601,12 @@ D: Omnipresent (On all desktops) A preferences manager for Openbox -Copyright (c) 2003-2013 +Copyright (c) 2014-2015 Authors: * Hong Jen Yee (PCMan) <pcman.tw@gmail.com> + +The program is based on ObConf developed by the following developers. * Dana Jansens <danakj@orodu.net> * Tim Riley <tr@slackzone.org> * Javeed Shaikh <syscrash2k@gmail.com> diff --git a/src/translations/obconf-qt_de.desktop b/src/translations/obconf-qt_de.desktop new file mode 100644 index 0000000..f9129f3 --- /dev/null +++ b/src/translations/obconf-qt_de.desktop @@ -0,0 +1,3 @@ +Name[de]=Fenstermanager Openbox +GenericName[de]=Openbox Einstellungen +Comment[de]=Konfiguration des Fenstermanagers Openbox (Qt-Version) diff --git a/src/translations/obconf-qt_de.ts b/src/translations/obconf-qt_de.ts new file mode 100644 index 0000000..b312812 --- /dev/null +++ b/src/translations/obconf-qt_de.ts @@ -0,0 +1,816 @@ + + + + + Fm::FontButton + + + Bold + Fett + + + + Italic + Kursiv + + + + MainDialog + + + Window Manager Preferences + Fenstermanager Openbox :: Einstellungen + + + + Theme + Thema + + + + Appearance + Erscheinungsbild + + + + Font + Schrift + + + + + Windows + Fenster + + + + Move & Resize + Verschieben und Größe ändern + + + + Mouse + Maus + + + + Desktops + Arbeitsflächen + + + + Margins + Ränder + + + + Dock + Dock + + + + &Install a new theme... + Neues Thema &installieren... + + + + Create a theme &archive (.obt)... + Themenarchiv &erstellen (.obt)... + + + + &Windows retain a border when undecorated + Undekorierte Fenster um&randen + + + + A&nimate iconify and restore + Minimieren und Wiederherstellen &animieren + + + + Window Titles + Fenstertitel + + + + Button order: + Anordnung der Schaltflächen (Knöpfe): + + + + N: Window icon +L: Window label (Title) +I: Iconify (Minimize) +M: Maximize +C: Close +S: Shade (Roll up) +D: Omnipresent (On all desktops) + N: Fenstersymbol +L: Fenstertitel +I: Minimieren +M: Maximieren +C: Schließen +S: Einrollen +D: auf allen Arbeitsflächen + + + + &Active window title: + Fenstertitel &aktives Fenster + + + + &Inactive window title: + Fenstertitel &inaktives Fenster + + + + Menu &header: + Menü - &Überschrift + + + + &Menu Item: + Menü - einzelne &Einträge + + + + Active &On-screen display: + A&ktive Bildschirmanzeige + + + + Inactive O&n-screen display: + I&naktive Bildschirmanzeige + + + + Focus &new windows when they appear + &Neue Fenster beim Erscheinen fokussieren + + + + &Place new windows under the mouse pointer + Neue Fenster unter dem Mauszeiger &platzieren + + + + &Center new windows when they are placed + Neue Fenster &zentrieren + + + + Prefer to place new windows &on: + Neue Fenster &vorzugsweise platzieren auf + + + + All monitors + allen Bildschirmen + + + + The active monitor + dem aktiven Bildschirm + + + + The monitor with the mouse + dem Bildschirm, wo sich der Mauszeiger befindet + + + + Primary monitor + dem primären Bildschirm + + + + Primary Monitor + Primärer Bildschirm + + + + The primary monitor is where Openbox will place dialogs, such as the one used for cycling windows. + Der primäre Bildschirm ist derjenige, auf dem Dialoge wie der zum Wechsel von Fenstern angezeigt werden. + + + + Primary &monitor: + P&rimärer Bildschirm + + + + Fixed Monitor + Festgelegter Bildschirm + + + + Active Monitor + aktiver Bildschirm + + + + Monitor With Mouse Pointer + Bildschirm, wo sich der Mauszeiger befindet + + + + &Fixed monitor: + &Festgelegter Bildschirm + + + + Moving and Resizing Windows + Verschieben und Größenänderung von Fenstern + + + + Update the window contents while &resizing + Fensterinhalt während &Größenänderungen anzeigen + + + + Drag &threshold distance: + Abstand beim &Verschieben + + + + Amount of resistance against other &windows: + Widerstand gegenüber anderen &Fenstern + + + + Amount of resistance against screen &edges: + Widerstand gegenüber &Bildschirmrändern + + + + &Amount of time to wait before switching: + Ver&zögerung vor dem Arbeitsflächenwechsel + + + + &Switch desktops when moving a window past the screen edge + Arbeitsfläche beim Verschieben des Fensters über ihren Rand &wechseln + + + + Information Dialog + Informationsdialog + + + + + Centered + Fenstermitte + + + + From left edge + Vom linken Rand + + + + From right edge + Vom rechten Rand + + + + Fixed &y position: + Festgelegte &y-Position (Pixel) + + + + From top edge + Vom oberen Rand + + + + From bottom edge + Vom unteren Rand + + + + Information dialog's &position: + &Position des Informationsdialogs + + + + Fixed &x position: + Festgelegte &x-Position (Pixel) + + + + Show &information dialog: + &Informationsdialog anzeigen: + + + + When resizing terminal windows + Bei Größenänderung von Terminalfenstern + + + + Always + Immer + + + + Never + Nie + + + + Centered on the window + Fenstermitte + + + + Above the window + Oberhalb des Fensters + + + + Fixed position on screen + Feste Position auf dem Bildschirm + + + + Focusing Windows + Fokussieren von Fenstern + + + + Focus windows when the mouse pointer moves over them + Fenster &fokussieren, wenn sich der Mauszeiger über ihnen befindet + + + + &Delay before focusing and raising windows: + &Verzögerung vor dem Fokussieren und Hervorheben + + + + Move focus under the mouse when &switching desktops + Beim &Wechsel von Arbeitsflächen Fokus unter den Mauszeiger bringen + + + + Move focus &under the mouse when the mouse is not moving + Fokus &unter die Maus bringen, wenn diese nicht bewegt wird + + + + &Raise windows when the mouse pointer moves over them + Fenster &hervorheben, wenn sich der Mauszeiger darüber befindet + + + + Titlebar + Fenstertitel + + + + Double click on the &titlebar: + Doppelklick auf den Fenster&titel + + + + Maximizes the window + Maximiert das Fenster + + + + Shades the window + Rollt das Fenster ein + + + + Double click ti&me: + &Intervall für Doppelklick + + + + &Show a notification when switching desktops + Benachrichtigung beim Arbeitsflächen&wechsel anzeigen + + + + &Amount of time to show the notification for: + &Dauer, für die die Benachrichtigung angezeigt wird + + + + &Number of desktops: + An&zahl an Arbeitsflächen + + + + &Desktop names: + &Bezeichnungen der Arbeitsflächen + + + + Desktop Margins + Arbeitsflächenränder + + + + Desktop margins are reserved areas on the edge of your screen. New windows will not be placed within a margin, and maximized windows will not cover them. + Arbeitsflächenränder sind reservierte Bereiche am Rand des Bildschirms. Neue Fenster werden dort nicht platziert und maximierte Fenster überdecken diese Bereiche nicht. + + + + Left: + Links + + + + + + + px + Pixel (px) + + + + Top: + Oben + + + + Right: + Rechts + + + + Bottom: + Unten + + + + The dock is a special container for "dockapps", or dock applications. It is not visible on screen until a dockapp is run. Dockapps can be used to show things like a clock, or to provide you with a system tray. + Das "dock" ist ein graphisches Objekt zum Vorhalten sogenannter dock-Anwendungen ("dockapps"), die z. B. eine Uhr oder Benachrichtigungen anzeigen können. +Das dock wird erst nach dem Starten von dockapps sichtbar. + + + + Position + Position + + + + &Position: + &Position: + + + + Top Left + oben links + + + + Top + oben zentriert + + + + Top Right + oben rechts + + + + Left + mitte (vertikal) links + + + + Right + mitte (vertikal) rechts + + + + Bottom Left + unten rechts + + + + Bottom + unten zentriert + + + + Bottom Right + unten rechts + + + + Floating + manuell festgelegte Position + + + + &Floating position: + &manuell festgelegte Position + + + + x + x + + + + Allow &windows to be placed within the dock's area + Positionieren von &Fenstern über dem dock erlauben + + + + &Orientation: + Ausrichtung + + + + Vertical + vertikal + + + + Horizontal + horizontal + + + + Stacking + Ebenen + + + + Keep dock &above other windows + immer im &Vordergrund + + + + A&llow dock to be both above and below windows + analog &regulären Fenstern (Vorder- und Hintergrund möglich) + + + + Keep dock &below other windows + immer im &Hintergrund + + + + Hiding + Ausblenden + + + + &Delay before hiding: + Verzögerung vor dem &Ausblenden + + + + Delay before &showing: + Verzögerung vor dem &Einblenden + + + + &Hide off screen + Ausblenden a&ktivieren + + + + About + &Über ObConf-Qt + + + + Obconf::MainDialog + + + + Choose an Openbox theme + Auswahl des Openbox Themas + + + + + + (Unnamed desktop) + (Unbenannte Arbeitsfläche) + + + + Custom actions + Benutzerdefinierte Aktionen + + + + About ObConf-Qt + Über ObConf-Qt + + + + A preferences manager for Openbox + +Copyright (c) 2014-2015 + +Authors: +* Hong Jen Yee (PCMan) <pcman.tw@gmail.com> + +The program is based on ObConf developed by the following developers. +* Dana Jansens <danakj@orodu.net> +* Tim Riley <tr@slackzone.org> +* Javeed Shaikh <syscrash2k@gmail.com> + graphische Benutzeroberfläche zur Konfiguration des Fenstermanagers Openbox + +Copyright (c) 2014-2015 + +Autor: +* Hong Jen Yee (PCMan) <pcman.tw@gmail.com> + +Das Programm basiert auf ObConf, entwickelt von +* Dana Jansens <danakj@orodu.net> +* Tim Riley <tr@slackzone.org> +* Javeed Shaikh <syscrash2k@gmail.com> + + + A preferences manager for Openbox + +Copyright (c) 2003-2013 + +Authors: +* Hong Jen Yee (PCMan) <pcman.tw@gmail.com> +* Dana Jansens <danakj@orodu.net> +* Tim Riley <tr@slackzone.org> +* Javeed Shaikh <syscrash2k@gmail.com> + graphische Benutzeroberfläche zur Konfiguration des Fenstermanagers Openbox + +Copyright (c) 2003-2013 + +Autoren: +* Hong Jen Yee (PCMan) <pcman.tw@gmail.com> +* Dana Jansens <danakj@orodu.net> +* Tim Riley <tr@slackzone.org> +* Javeed Shaikh <syscrash2k@gmail.com> + + + + QObject + + + "%1" was installed to %1 + "%1" wurde nach %1 installiert + + + + "%1" was successfully created + "%1" wurde erfolgreich erstellt + + + + Unable to create the theme archive "%1". +The following errors were reported: +%2 + Erstellung des Themenarchivs "%1" ist fehlgeschlagen. + Die folgenden Fehlermeldungen wurden mitgeteilt: + %2 + + + + + Unable to run the "tar" command: %1 + "tar" Befehl %1 kann nicht ausgeführt werden + + + + Unable to create directory "%1": %2 + Verzeichnis "%1" kann nicht erstellt werden: %2 + + + + "%1" does not appear to be a valid Openbox theme directory + "%1" scheint kein korrektes Themenverzeichnis von Openbox zu sein + + + + Unable to move to directory "%1": %2 + Verzeichnis "%1" kann nicht verschoben werden: %2 + + + + Unable to extract the file "%1". +Please ensure that "%2" is writable and that the file is a valid Openbox theme archive. +The following errors were reported: +%3 + Datei "%1" kann nicht entpackt werden. + Bitte sicherstellen, dass "%2" beschrieben werden kann und die Datei ein korrektes Archiv mit einem Openbox Thema ist. + Folgende Fehlermeldungen wurden mitgeteilt: + %3 + + + + ObConf Error + ObConf-Qt Fehler + + + + Copyright (c) 2003-2008 Dana Jansens +Copyright (c) 2003 Tim Riley +Copyright (c) 2007 Javeed Shaikh +Copyright (c) 2013 Hong Jen Yee (PCMan) + +This program comes with ABSOLUTELY NO WARRANTY. +This is free software, and you are welcome to redistribute it +under certain conditions. See the file COPYING for details. + + + Copyright (c) 2003-2008 Dana Jansens +Copyright (c) 2003 Tim Riley +Copyright (c) 2007 Javeed Shaikh +Copyright (c) 2013 Hong Jen Yee (PCMan) + +Dieses Programm wird unter Ausschluss jeglicher Garantie zur Verfügung +gestellt. +Es handelt sich um freie Software,die unter Beachtung bestimmter +Voraussetzungen gerne weitergegeben werden darf, Näheres enthält die +Datei COPYING. + + + + + + Syntax: obconf [options] [ARCHIVE.obt] + +Options: + --help Display this help and exit + --version Display the version and exit + --install ARCHIVE.obt Install the given theme archive and select it + --archive THEME Create a theme archive from the given theme directory + --config-file FILE Specify the path to the config file to use + + Übersicht: obconf [Optionen] [ARCHIVE.obt] + +Optionen: + --help diesen Hilfetext ausgeben und Programm beenden + --version Version ausgeben und Programm beenden + --install ARCHIVE.obt Thema aus angegebenem Archiv extrahieren und verwenden + --archive THEMA Archiv mit dem im genannten Verzeichnis befindlichen Thema erstellen + --config-file DATEI zu verwendende Konfigurationsdatei explizit angeben + + + + + --install requires an argument + + --install benötigt ein Argument + + + + --archive requires an argument + + --archive benötigt ein Argument + + + + --config-file requires an argument + + --config-file benötigt ein Argument + + + + Error while parsing the Openbox configuration file. Your configuration file is not valid XML. + +Message: %1 + Fehler bei der Auswertung der Konfigurationsdatei von Openbox. Die Konfigurationsdatei ist nicht in korrekter XML verfasst. + + + --archive requires an argument + --archive benötigt ein Argument + + + --config-file requires an argument + --config-file benötigt ein Argument + + + + + Error + Fehler + + + + Failed to load an rc.xml. You have probably failed to install Openbox properly. + Datei rc.xml konnte nicht geladen werden. Möglicher Weise wurde Openbox nicht korrekt installiert. + + + Error while parsing the Openbox configuration file. Your configuration file is not valid XML. + + Message: %1 + Fehler bei der Verarbeitung der Konfigurationsdatei von Openbox. Die genannte Datei ist kein korrektes XML. + + Fehlermeldung: %1 + + + diff --git a/src/translations/obconf-qt_es.ts b/src/translations/obconf-qt_es.ts index 62e649c..7df55fd 100644 --- a/src/translations/obconf-qt_es.ts +++ b/src/translations/obconf-qt_es.ts @@ -17,237 +17,237 @@ MainDialog - + Mouse Ratón - + Window Manager Preferences Preferencias del gestor de ventanas - + Theme Tema - + Appearance Apariencia - + Font Tipo de letra - - + + Windows Ventanas - + Move & Resize Mover y redimensionar - + Desktops Escritorios - + Margins Márgenes - + Dock - + Window Titles Títulos de las ventanas - + Button order: Orden de los botones: - + Moving and Resizing Windows Mover y redimensionar ventanas - + Information Dialog Diálogo de información - + Focusing Windows Enfocar ventanas - + Focus windows when the mouse pointer moves over them Enfocar las ventanas al pasar el ratón sobre ellas - + Titlebar Barra de título - + Desktop Margins Márgenes del escritorio - + Desktop margins are reserved areas on the edge of your screen. New windows will not be placed within a margin, and maximized windows will not cover them. Los márgenes del escritorio son áreas reservadas en los bordes de la pantalla. Las ventanas nuevas no los ocuparán y las ventanas maximizadas no los cubrirán. - + Left: Izquierdo: - - - - + + + + px px - + Top: Superior: - + Right: Derecho: - + Bottom: Inferior: - + All monitors Todos los monitores - + The active monitor El monitor activo - + The monitor with the mouse El monitor que contiene el ratón - + Primary Monitor Monitor primario - + The primary monitor is where Openbox will place dialogs, such as the one used for cycling windows. El monitor primario es donde Openbox ubicará los diálogos, como el usado para alternar las ventanas. - + Fixed Monitor Monitor fijo - + Active Monitor Monitor activo - + Monitor With Mouse Pointer Monitor con el puntero del ratón - - + + Centered Centrado - + From left edge Desde el borde izquierdo - + From right edge Desde el borde derecho - + From top edge Desde el borde superior - + From bottom edge Desde el borde inferior - + When resizing terminal windows Al redimensionar ventanas de terminal - + Always Siempre - + Never Nunca - + Centered on the window Centrado en la ventana - + Above the window Encima de la ventana - + Fixed position on screen Posición fija en la pantalla - + Maximizes the window Maximiza la ventana - + Shades the window Enrolla la ventana - + N: Window icon L: Window label (Title) I: Iconify (Minimize) @@ -264,192 +264,322 @@ S: Enrollar D: Omnipresente (en todos los escritorios) - + Primary monitor Monitor primario - + + The dock is a special container for "dockapps", or dock applications. It is not visible on screen until a dockapp is run. Dockapps can be used to show things like a clock, or to provide you with a system tray. + + + + + Position + + + + + &Position: + + + + + Top Left + + + + + Top + + + + + Top Right + + + + + Left + + + + + Right + + + + + Bottom Left + + + + + Bottom + + + + + Bottom Right + + + + + Floating + + + + + &Floating position: + + + + + x + + + + + Allow &windows to be placed within the dock's area + + + + + &Orientation: + + + + + Vertical + + + + + Horizontal + + + + + Stacking + + + + + Keep dock &above other windows + + + + + A&llow dock to be both above and below windows + + + + + Keep dock &below other windows + + + + + Hiding + + + + + &Delay before hiding: + + + + + Delay before &showing: + + + + + &Hide off screen + + + + About Acerca de - + &Install a new theme... &Instalar un tema nuevo… - + Create a theme &archive (.obt)... Crear &archivador de tema (.obt)… - + &Windows retain a border when undecorated Las &ventanas conservan un borde cuando no hay decoración - + A&nimate iconify and restore A&nimación al minimizar y restaurar - + &Active window title: Título de ventana &activa: - + &Inactive window title: Título de ventana &inactiva: - + Menu &header: Encabe&zamiento del menú: - + &Menu Item: Elemento del &menú: - + Active &On-screen display: Visualización en &pantalla activa: - + Inactive O&n-screen display: Visualización en pa&ntalla inactiva: - + Focus &new windows when they appear Enfocar las ventanas &nuevas cuando aparecen - + &Place new windows under the mouse pointer &Ubicar las ventanas nuevas bajo el puntero del ratón - + &Center new windows when they are placed &Centrar las ventanas nuevas al ubicarlas - + Prefer to place new windows &on: &Ubicar las ventanas nuevas en: - + Primary &monitor: &Monitor primario: - + &Fixed monitor: Monitor &fijo: - + Update the window contents while &resizing Actualizar contenido de la ventana al &redimensionarla - + Drag &threshold distance: &Umbral de distancia del arrastre: - + Amount of resistance against other &windows: Cantidad de resistencia a otras &ventanas: - + Amount of resistance against screen &edges: Cantidad de resistencia a los bordes de la &pantalla: - + &Amount of time to wait before switching: &Tiempo a esperar antes de cambiar: - + &Switch desktops when moving a window past the screen edge Ca&mbiar de escritorio al mover una ventana más allá del borde de la pantalla - + Fixed &y position: Posición &Y fija: - + Information dialog's &position: &Posición del diálogo de información: - + Fixed &x position: Posición &X fija: - + Show &information dialog: Mostrar diálogo de &información: - + &Delay before focusing and raising windows: &Retardo antes de enfocar y elevar ventanas: - + Move focus under the mouse when &switching desktops Mover el foco bajo el ratón al cam&biar de escritorio - + Move focus &under the mouse when the mouse is not moving Mover el foco ba&jo el ratón cuando éste no está en movimiento - + &Raise windows when the mouse pointer moves over them &Elevar las ventanas cuando el puntero del ratón se mueve sobre ellas - + Double click on the &titlebar: Pulsación doble en la barra de &título: - + Double click ti&me: Tie&mpo de pulsación doble: - + &Show a notification when switching desktops &Mostrar notificación al cambiar de escritorio - + &Amount of time to show the notification for: Por &cuánto tiempo mostrar la notificación: - + &Number of desktops: &N.º de escritorios: - + &Desktop names: Nom&bres de escritorios: @@ -462,8 +592,9 @@ D: Omnipresente (en todos los escritorios) Acciones personalizadas - - + + + (Unnamed desktop) (Escritorio sin nombre) @@ -476,6 +607,20 @@ D: Omnipresente (en todos los escritorios) A preferences manager for Openbox +Copyright (c) 2014-2015 + +Authors: +* Hong Jen Yee (PCMan) <pcman.tw@gmail.com> + +The program is based on ObConf developed by the following developers. +* Dana Jansens <danakj@orodu.net> +* Tim Riley <tr@slackzone.org> +* Javeed Shaikh <syscrash2k@gmail.com> + + + + A preferences manager for Openbox + Copyright (c) 2003-2013 Authors: @@ -483,7 +628,7 @@ Authors: * Dana Jansens <danakj@orodu.net> * Tim Riley <tr@slackzone.org> * Javeed Shaikh <syscrash2k@gmail.com> - Un gestor de configuración para Openbox + Un gestor de configuración para Openbox Copyright © 2003-2013 diff --git a/src/translations/obconf-qt_gl.ts b/src/translations/obconf-qt_gl.ts index ac2163b..b29f966 100644 --- a/src/translations/obconf-qt_gl.ts +++ b/src/translations/obconf-qt_gl.ts @@ -17,237 +17,237 @@ MainDialog - + Mouse Rato - + Window Manager Preferences Preferencias do xestor de xanelas - + Theme Tema - + Appearance Aparencia - + Font Tipo de letra - - + + Windows Xanelas - + Move & Resize Mover e reaxustar - + Desktops Escritorios - + Margins Marxes - + Dock Doca - + Window Titles Títulos de xanela - + Button order: Orde dos botóns - + Moving and Resizing Windows Mover e redimensionar as xanelas - + Information Dialog Diálogo de información - + Focusing Windows Xanelas en foco - + Focus windows when the mouse pointer moves over them Pon en foco as xanelas cando o rato pasa sobre elas - + Titlebar Barra de título - + Desktop Margins Marxes do escritorio - + Desktop margins are reserved areas on the edge of your screen. New windows will not be placed within a margin, and maximized windows will not cover them. As marxes de escritorio son áreas reservadas no bordo da pantalla. As novas xanelas no se situaran dentro dunha marxe, e as xanelas maximizadas non os cubrirán. - + Left: Esquerda: - - - - + + + + px px - + Top: Arriba: - + Right: Dereita: - + Bottom: Abaixo: - + All monitors Todos os monitores - + The active monitor O monitor activo - + The monitor with the mouse O monitor co rato - + Primary Monitor Monitor primario - + The primary monitor is where Openbox will place dialogs, such as the one used for cycling windows. O monitor primario é no que o Openbox colocará os cadros de diálogo, como o que se utiliza para o carrusel de xanelas. - + Fixed Monitor Monitor fixo - + Active Monitor Monitor activo - + Monitor With Mouse Pointer Monitor co punteiro do rato - - + + Centered Centrado - + From left edge Desde o bordo esquerdo - + From right edge Desde o bordo dereito - + From top edge Desde o bordo superior - + From bottom edge Desde o bordo inferior - + When resizing terminal windows Ao cambiar o tamaño das xanelas do terminal - + Always Sempre - + Never Nunca - + Centered on the window Centrado na xanela - + Above the window Por riba da xanela - + Fixed position on screen Posición fixa na pantalla - + Maximizes the window Maximizar a xanela - + Shades the window Ensombrecer a xanela - + N: Window icon L: Window label (Title) I: Iconify (Minimize) @@ -264,192 +264,322 @@ S: Cortina (enrolar) D: Omnipresente (en todos os escritorios) - + Primary monitor Monitor primario - + + The dock is a special container for "dockapps", or dock applications. It is not visible on screen until a dockapp is run. Dockapps can be used to show things like a clock, or to provide you with a system tray. + + + + + Position + + + + + &Position: + + + + + Top Left + + + + + Top + + + + + Top Right + + + + + Left + + + + + Right + + + + + Bottom Left + + + + + Bottom + + + + + Bottom Right + + + + + Floating + + + + + &Floating position: + + + + + x + + + + + Allow &windows to be placed within the dock's area + + + + + &Orientation: + + + + + Vertical + + + + + Horizontal + + + + + Stacking + + + + + Keep dock &above other windows + + + + + A&llow dock to be both above and below windows + + + + + Keep dock &below other windows + + + + + Hiding + + + + + &Delay before hiding: + + + + + Delay before &showing: + + + + + &Hide off screen + + + + About Sobre - + &Install a new theme... &Instalar un tema novo… - + Create a theme &archive (.obt)... Crear un &arquivo de tema (.obt)... - + &Windows retain a border when undecorated As &xanelas conservan un bordo cando non hai decoración - + A&nimate iconify and restore A&nimar a iconificación e a restauración - + &Active window title: Título da xanela &activa: - + &Inactive window title: Título da xanela &inactiva: - + Menu &header: &Cabeceira do menú: - + &Menu Item: &Elemento do menú: - + Active &On-screen display: Vista en &pantalla activada: - + Inactive O&n-screen display: Vista en pa&ntalla desactivada: - + Focus &new windows when they appear Poñer en foco as xanelas &novas cando aparezan - + &Place new windows under the mouse pointer &Poñer as xanelas novas baixo o punteiro do rato - + &Center new windows when they are placed &Centrar as novas xanelas ao seren posicionadas - + Prefer to place new windows &on: &Centrar as novas xanelas cando se coloquen - + Primary &monitor: Monitor &primario - + &Fixed monitor: Monitor &fixo - + Update the window contents while &resizing Actualizar o contido das xanelas ao &redimensionar - + Drag &threshold distance: &Limiar de distancia do arrastre: - + Amount of resistance against other &windows: Canta resistencia fronte a outras &xanelas: - + Amount of resistance against screen &edges: Canta resistencia fronte aos &bordos da pantalla: - + &Amount of time to wait before switching: Canto &tempo que debe transcorrer antes de cambiar: - + &Switch desktops when moving a window past the screen edge &Cambiar entre escritorios cando se move unha xanela fora do bordo da pantalla - + Fixed &y position: Posición &Y fixa: - + Information dialog's &position: &Posición dos diálogos de información: - + Fixed &x position: Posición &X fixa: - + Show &information dialog: Amosar o diálogo de &información: - + &Delay before focusing and raising windows: &Atraso antes de enfocar e elevar as xanelas: - + Move focus under the mouse when &switching desktops Mover o foco baixo o rato ao &cambiar de escritorio - + Move focus &under the mouse when the mouse is not moving Mover o foco &baixo o rato cando se move o ratpo - + &Raise windows when the mouse pointer moves over them &Elevar as xanelas cando o rato pase sobre elas - + Double click on the &titlebar: Duplo clic na barra de &título: - + Double click ti&me: Te&mpo de duplo clic: - + &Show a notification when switching desktops &Amosar un aviso ao cambiar de escritorio - + &Amount of time to show the notification for: &Tempo no que amosar o aviso para: - + &Number of desktops: &Número de escritorios: - + &Desktop names: Nomes dos &escritorios: @@ -462,8 +592,9 @@ D: Omnipresente (en todos os escritorios) Accións personalizadas - - + + + (Unnamed desktop) (Escritorio sen nome) @@ -476,6 +607,20 @@ D: Omnipresente (en todos os escritorios) A preferences manager for Openbox +Copyright (c) 2014-2015 + +Authors: +* Hong Jen Yee (PCMan) <pcman.tw@gmail.com> + +The program is based on ObConf developed by the following developers. +* Dana Jansens <danakj@orodu.net> +* Tim Riley <tr@slackzone.org> +* Javeed Shaikh <syscrash2k@gmail.com> + + + + A preferences manager for Openbox + Copyright (c) 2003-2013 Authors: @@ -483,7 +628,7 @@ Authors: * Dana Jansens <danakj@orodu.net> * Tim Riley <tr@slackzone.org> * Javeed Shaikh <syscrash2k@gmail.com> - Un xestor de preferencias para o Openbox + Un xestor de preferencias para o Openbox Copyright (c) 2003-2013 diff --git a/src/translations/obconf-qt_hr.ts b/src/translations/obconf-qt_hr.ts index ef3a7fa..e5cdea1 100644 --- a/src/translations/obconf-qt_hr.ts +++ b/src/translations/obconf-qt_hr.ts @@ -17,237 +17,237 @@ MainDialog - + Mouse Miš - + Window Manager Preferences Osobitosti upravitelja prozora - + Theme Tema - + Appearance Izgled - + Font Font - - + + Windows Prozori - + Move & Resize Pomakni & promjeni veličinu - + Desktops Radne površine - + Margins Margine - + Dock - + Window Titles Naslovi prozora - + Button order: Redoslijed dugmadi: - + Moving and Resizing Windows Pomicanje i promjena veličine prozora - + Information Dialog Informacijski dijalog - + Focusing Windows - + Focus windows when the mouse pointer moves over them - + Titlebar Naslovna traka - + Desktop Margins Margine radne površine - + Desktop margins are reserved areas on the edge of your screen. New windows will not be placed within a margin, and maximized windows will not cover them. - + Left: Lijevo: - - - - + + + + px px - + Top: Vrh: - + Right: Desno: - + Bottom: Dno: - + All monitors Svi monitori - + The active monitor Aktivni monitor - + The monitor with the mouse Monitor s mišem - + Primary Monitor Osnovni monitor - + The primary monitor is where Openbox will place dialogs, such as the one used for cycling windows. - + Fixed Monitor - + Active Monitor Aktivni monitor - + Monitor With Mouse Pointer Monitor sa pokazivačem miša - - + + Centered Centrirano - + From left edge Sa lijevog ruba - + From right edge Sa desnog ruba - + From top edge Sa gornjeg ruba - + From bottom edge Sa donjeg ruba - + When resizing terminal windows - + Always Uvijek - + Never Nikada - + Centered on the window Centrirano na prozoru - + Above the window Iznad prozora - + Fixed position on screen - + Maximizes the window - + Shades the window Osjenčava prozor - + N: Window icon L: Window label (Title) I: Iconify (Minimize) @@ -258,192 +258,322 @@ D: Omnipresent (On all desktops) - + Primary monitor Osnovni monitor - + + The dock is a special container for "dockapps", or dock applications. It is not visible on screen until a dockapp is run. Dockapps can be used to show things like a clock, or to provide you with a system tray. + + + + + Position + + + + + &Position: + + + + + Top Left + + + + + Top + + + + + Top Right + + + + + Left + + + + + Right + + + + + Bottom Left + + + + + Bottom + + + + + Bottom Right + + + + + Floating + + + + + &Floating position: + + + + + x + + + + + Allow &windows to be placed within the dock's area + + + + + &Orientation: + + + + + Vertical + + + + + Horizontal + + + + + Stacking + + + + + Keep dock &above other windows + + + + + A&llow dock to be both above and below windows + + + + + Keep dock &below other windows + + + + + Hiding + + + + + &Delay before hiding: + + + + + Delay before &showing: + + + + + &Hide off screen + + + + About O programu - + &Install a new theme... Instaliraj novu temu… - + Create a theme &archive (.obt)... Napravi temu i arhivu (.obt)... - + &Windows retain a border when undecorated - + A&nimate iconify and restore - + &Active window title: &Aktivni naslov prozora: - + &Inactive window title: &Neaktivni naslov prozora: - + Menu &header: - + &Menu Item: &Stavka izbornika: - + Active &On-screen display: - + Inactive O&n-screen display: - + Focus &new windows when they appear - + &Place new windows under the mouse pointer - + &Center new windows when they are placed - + Prefer to place new windows &on: - + Primary &monitor: Osnovni &monitor: - + &Fixed monitor: - + Update the window contents while &resizing Ažuriraj sadtžaj prizora za vrijeme &promjene veličine - + Drag &threshold distance: - + Amount of resistance against other &windows: - + Amount of resistance against screen &edges: - + &Amount of time to wait before switching: &Koliko treba pričekati prije prebacivanja: - + &Switch desktops when moving a window past the screen edge - + Fixed &y position: - + Information dialog's &position: - + Fixed &x position: - + Show &information dialog: Pokaži &informacijski dijalog: - + &Delay before focusing and raising windows: - + Move focus under the mouse when &switching desktops - + Move focus &under the mouse when the mouse is not moving - + &Raise windows when the mouse pointer moves over them - + Double click on the &titlebar: Dvostruki klik na &naslovnu traku: - + Double click ti&me: Vrijeme dvostrukog kli&ka: - + &Show a notification when switching desktops &Pokaži obavjest kada prebacuješ radne površine - + &Amount of time to show the notification for: - + &Number of desktops: &Broj radnih površina: - + &Desktop names: &Imena radnih površina: @@ -456,8 +586,9 @@ D: Omnipresent (On all desktops) Prilagođene radnje - - + + + (Unnamed desktop) (Neimenovana radna površina) @@ -470,6 +601,20 @@ D: Omnipresent (On all desktops) A preferences manager for Openbox +Copyright (c) 2014-2015 + +Authors: +* Hong Jen Yee (PCMan) <pcman.tw@gmail.com> + +The program is based on ObConf developed by the following developers. +* Dana Jansens <danakj@orodu.net> +* Tim Riley <tr@slackzone.org> +* Javeed Shaikh <syscrash2k@gmail.com> + + + + A preferences manager for Openbox + Copyright (c) 2003-2013 Authors: @@ -477,7 +622,7 @@ Authors: * Dana Jansens <danakj@orodu.net> * Tim Riley <tr@slackzone.org> * Javeed Shaikh <syscrash2k@gmail.com> - Upravitelj osobitostima za Openbox + Upravitelj osobitostima za Openbox Autorska prava (c) 2003-2013 diff --git a/src/translations/obconf-qt_id.ts b/src/translations/obconf-qt_id.ts index 5f203c9..5b34516 100644 --- a/src/translations/obconf-qt_id.ts +++ b/src/translations/obconf-qt_id.ts @@ -17,237 +17,237 @@ MainDialog - + Mouse Tetikus - + Window Manager Preferences Preferensi Manajer Jendela - + Theme Tema - + Appearance Penampilan - + Font Fonta - - + + Windows Jendela - + Move & Resize Pindah & Ubah Ukuran - + Desktops Desktop - + Margins Marjin - + Dock Dok - + Window Titles Judul Jendela - + Button order: Urutan tombol: - + Moving and Resizing Windows Memindah dan Mengubah Ukuran Jendela - + Information Dialog Dialog Informasi - + Focusing Windows Pemfokusan Jendela - + Focus windows when the mouse pointer moves over them Fokuskan jendela ketika penunjuk tetikus bergerak di atas mereka - + Titlebar Bilah judul - + Desktop Margins Marjin Desktop - + Desktop margins are reserved areas on the edge of your screen. New windows will not be placed within a margin, and maximized windows will not cover them. Marjin desktop adalah wilayah yang dicadangkan di tepi layar. Jendela baru tak akan ditempatkan di dalam jarmin, dan jendela yang dimaksimalkan tak akan menutupinya. - + Left: Kiri: - - - - + + + + px px - + Top: Puncak: - + Right: Kanan: - + Bottom: Dasar: - + All monitors Semua monitor - + The active monitor Monitor yang aktif - + The monitor with the mouse Monitor dengan tetikus - + Primary Monitor Monitor Primer - + The primary monitor is where Openbox will place dialogs, such as the one used for cycling windows. Monitor primer adalah tempat dimana Openbox akan meletakkan dialog, seperti misalnya yang dipakai untuk berpindah jendela. - + Fixed Monitor Monitor Tetap - + Active Monitor Monitor Aktif - + Monitor With Mouse Pointer Monitor Dengan Penunjuk Tetikus - - + + Centered Rata Tengah - + From left edge Dari tepi kiri - + From right edge Dari tepi kanan - + From top edge Dari puncak - + From bottom edge Dari dasar - + When resizing terminal windows Ketika mengubah ukuran jendela terminal - + Always Selalu - + Never Tak pernah - + Centered on the window Di tengah jendela - + Above the window Di atas jendela - + Fixed position on screen Posisi tetap pada layar - + Maximizes the window Maksimalkan jendela - + Shades the window Membuat jendela berbayang - + N: Window icon L: Window label (Title) I: Iconify (Minimize) @@ -264,192 +264,322 @@ S: Berbayang (Gulung) D: Selalu ada (Pada semua desktop) - + Primary monitor Monitor primer - + + The dock is a special container for "dockapps", or dock applications. It is not visible on screen until a dockapp is run. Dockapps can be used to show things like a clock, or to provide you with a system tray. + + + + + Position + + + + + &Position: + + + + + Top Left + + + + + Top + + + + + Top Right + + + + + Left + + + + + Right + + + + + Bottom Left + + + + + Bottom + + + + + Bottom Right + + + + + Floating + + + + + &Floating position: + + + + + x + + + + + Allow &windows to be placed within the dock's area + + + + + &Orientation: + + + + + Vertical + + + + + Horizontal + + + + + Stacking + + + + + Keep dock &above other windows + + + + + A&llow dock to be both above and below windows + + + + + Keep dock &below other windows + + + + + Hiding + + + + + &Delay before hiding: + + + + + Delay before &showing: + + + + + &Hide off screen + + + + About Tentang - + &Install a new theme... &Pasang tema baru... - + Create a theme &archive (.obt)... Buat suatu &arsip tema (.obt)... - + &Windows retain a border when undecorated &Jendela mempertahankan perbatasan ketika tak didekorasi - + A&nimate iconify and restore A&nimasikan menjadi ikon dan memulihkan - + &Active window title: Judul jendela &aktif: - + &Inactive window title: Judul jendela tak akt&if: - + Menu &header: &Header menu: - + &Menu Item: Butir &Menu: - + Active &On-screen display: Tampilan Pada layar yang aktif: - + Inactive O&n-screen display: Tampilan Pada layar yang tak aktif: - + Focus &new windows when they appear Fokus ke je&ndela baru ketika mereka muncul - + &Place new windows under the mouse pointer Tem&patkan jendela baru di bawah penunjuk tetikus - + &Center new windows when they are placed Rata &tengahkan jendela baru ketika mereka ditempatkan - + Prefer to place new windows &on: Lebih suka menempatkan jendela baru p&ada: - + Primary &monitor: &Monitor primer: - + &Fixed monitor: Monitor &tetap: - + Update the window contents while &resizing Mutakhirkan isi jendela ketika mengubah uku&ran - + Drag &threshold distance: Jarak ambang sere&t: - + Amount of resistance against other &windows: Banyaknya resistansi terhadap &jendela lain: - + Amount of resistance against screen &edges: Banyaknya resistansi terhadap t&epi layar: - + &Amount of time to wait before switching: L&ama waktu tunggu sebelum bertukar: - + &Switch desktops when moving a window past the screen edge Berpindah de&sktop ketika memindahkan suatu jendela melampai tepi layar - + Fixed &y position: Posisi &y tetap: - + Information dialog's &position: &Posisi dialog informasi: - + Fixed &x position: Posisi &x tetap: - + Show &information dialog: Tampilkan dialog &informasi: - + &Delay before focusing and raising windows: Tun&daan sebelum memfokus dan menaikkan jendela: - + Move focus under the mouse when &switching desktops Pindahkan fokus di bawah tetikus ketika bertukar de&sktop - + Move focus &under the mouse when the mouse is not moving Pindahkan fok&us ke bawah tetikus ketika tetikus tak bergerak - + &Raise windows when the mouse pointer moves over them Naikkan jendela ketika penunjuk tetikus berge&rak di atasnya - + Double click on the &titlebar: Klik ganda pada bilah &judul: - + Double click ti&me: Waktu klik ga&nda: - + &Show a notification when switching desktops Tampilkan pemberitahuan ketika bertukar de&sktop - + &Amount of time to show the notification for: L&amanya menampilkan pemberitahuan: - + &Number of desktops: Ba&nyaknya desktop: - + &Desktop names: Nama &desktop: @@ -462,8 +592,9 @@ D: Selalu ada (Pada semua desktop) Aksi gubahan - - + + + (Unnamed desktop) (Desktop tanpa nama) @@ -476,6 +607,20 @@ D: Selalu ada (Pada semua desktop) A preferences manager for Openbox +Copyright (c) 2014-2015 + +Authors: +* Hong Jen Yee (PCMan) <pcman.tw@gmail.com> + +The program is based on ObConf developed by the following developers. +* Dana Jansens <danakj@orodu.net> +* Tim Riley <tr@slackzone.org> +* Javeed Shaikh <syscrash2k@gmail.com> + + + + A preferences manager for Openbox + Copyright (c) 2003-2013 Authors: @@ -483,7 +628,7 @@ Authors: * Dana Jansens <danakj@orodu.net> * Tim Riley <tr@slackzone.org> * Javeed Shaikh <syscrash2k@gmail.com> - Manajer preferensi untuk Openbox + Manajer preferensi untuk Openbox Hak cipta (c) 2003-2013 diff --git a/src/translations/obconf-qt_is.ts b/src/translations/obconf-qt_is.ts index abef069..60d0806 100644 --- a/src/translations/obconf-qt_is.ts +++ b/src/translations/obconf-qt_is.ts @@ -17,237 +17,237 @@ MainDialog - + Mouse - + Window Manager Preferences - + Theme - + Appearance - + Font - - + + Windows - + Move & Resize - + Desktops - + Margins - + Dock - + Window Titles - + Button order: - + Moving and Resizing Windows - + Information Dialog - + Focusing Windows - + Focus windows when the mouse pointer moves over them - + Titlebar - + Desktop Margins - + Desktop margins are reserved areas on the edge of your screen. New windows will not be placed within a margin, and maximized windows will not cover them. - + Left: - - - - + + + + px - + Top: - + Right: - + Bottom: - + All monitors - + The active monitor - + The monitor with the mouse - + Primary Monitor - + The primary monitor is where Openbox will place dialogs, such as the one used for cycling windows. - + Fixed Monitor - + Active Monitor - + Monitor With Mouse Pointer - - + + Centered - + From left edge - + From right edge - + From top edge - + From bottom edge - + When resizing terminal windows - + Always - + Never - + Centered on the window - + Above the window - + Fixed position on screen - + Maximizes the window - + Shades the window - + N: Window icon L: Window label (Title) I: Iconify (Minimize) @@ -258,192 +258,322 @@ D: Omnipresent (On all desktops) - + Primary monitor - + + The dock is a special container for "dockapps", or dock applications. It is not visible on screen until a dockapp is run. Dockapps can be used to show things like a clock, or to provide you with a system tray. + + + + + Position + + + + + &Position: + + + + + Top Left + + + + + Top + + + + + Top Right + + + + + Left + + + + + Right + + + + + Bottom Left + + + + + Bottom + + + + + Bottom Right + + + + + Floating + + + + + &Floating position: + + + + + x + + + + + Allow &windows to be placed within the dock's area + + + + + &Orientation: + + + + + Vertical + + + + + Horizontal + + + + + Stacking + + + + + Keep dock &above other windows + + + + + A&llow dock to be both above and below windows + + + + + Keep dock &below other windows + + + + + Hiding + + + + + &Delay before hiding: + + + + + Delay before &showing: + + + + + &Hide off screen + + + + About - + &Install a new theme... - + Create a theme &archive (.obt)... - + &Windows retain a border when undecorated - + A&nimate iconify and restore - + &Active window title: - + &Inactive window title: - + Menu &header: - + &Menu Item: - + Active &On-screen display: - + Inactive O&n-screen display: - + Focus &new windows when they appear - + &Place new windows under the mouse pointer - + &Center new windows when they are placed - + Prefer to place new windows &on: - + Primary &monitor: - + &Fixed monitor: - + Update the window contents while &resizing - + Drag &threshold distance: - + Amount of resistance against other &windows: - + Amount of resistance against screen &edges: - + &Amount of time to wait before switching: - + &Switch desktops when moving a window past the screen edge - + Fixed &y position: - + Information dialog's &position: - + Fixed &x position: - + Show &information dialog: - + &Delay before focusing and raising windows: - + Move focus under the mouse when &switching desktops - + Move focus &under the mouse when the mouse is not moving - + &Raise windows when the mouse pointer moves over them - + Double click on the &titlebar: - + Double click ti&me: - + &Show a notification when switching desktops - + &Amount of time to show the notification for: - + &Number of desktops: - + &Desktop names: @@ -456,8 +586,9 @@ D: Omnipresent (On all desktops) - - + + + (Unnamed desktop) @@ -470,10 +601,12 @@ D: Omnipresent (On all desktops) A preferences manager for Openbox -Copyright (c) 2003-2013 +Copyright (c) 2014-2015 Authors: * Hong Jen Yee (PCMan) <pcman.tw@gmail.com> + +The program is based on ObConf developed by the following developers. * Dana Jansens <danakj@orodu.net> * Tim Riley <tr@slackzone.org> * Javeed Shaikh <syscrash2k@gmail.com> diff --git a/src/translations/obconf-qt_ja.ts b/src/translations/obconf-qt_ja.ts index 5bd53bd..05c3179 100644 --- a/src/translations/obconf-qt_ja.ts +++ b/src/translations/obconf-qt_ja.ts @@ -17,237 +17,237 @@ MainDialog - + Mouse マウス - + Window Manager Preferences ウィンドウマネージャの設定 - + Theme テーマ - + Appearance 外観 - + Font フォント - - + + Windows ウィンドウ - + Move & Resize 移動 & リサイズ - + Desktops デスクトップ - + Margins 余白 - + Dock ドック - + Window Titles ウィンドウのタイトル - + Button order: ボタンの並び順: - + Moving and Resizing Windows ウィンドウの移動とリサイズ - + Information Dialog 情報ダイアログ - + Focusing Windows ウィンドウのフォーカス - + Focus windows when the mouse pointer moves over them マウスポインターが入った時、そのウィンドウをフォーカスする - + Titlebar タイトルバー - + Desktop Margins デスクトップの余白 - + Desktop margins are reserved areas on the edge of your screen. New windows will not be placed within a margin, and maximized windows will not cover them. デスクトップの余白とは、画面の端に予約された領域のことです。新規ウィンドウは余白の上に置かれることはなく、最大化されたウィンドウがそこに被さる事はありません。 - + Left: 左: - - - - + + + + px ピクセル - + Top: 上: - + Right: 右: - + Bottom: 下: - + All monitors 全てのモニター - + The active monitor アクティブなモニター - + The monitor with the mouse マウスのあるモニター - + Primary Monitor 主モニター - + The primary monitor is where Openbox will place dialogs, such as the one used for cycling windows. 主モニターとは Openbox がウィンドウの循環などのダイアログを配置するモニターです。 - + Fixed Monitor 固定モニター - + Active Monitor アクティブなモニター - + Monitor With Mouse Pointer マウスポインターのあるモニター - - + + Centered 中央 - + From left edge 左端から - + From right edge 右端から - + From top edge 上端から - + From bottom edge 下端から - + When resizing terminal windows 端末ウィンドウをリサイズするとき - + Always 常に - + Never しない - + Centered on the window ウィンドウの中央に - + Above the window ウィンドウの上に - + Fixed position on screen 画面の固定位置に - + Maximizes the window ウィンドウを最大化する - + Shades the window ウィンドウをシェード化する - + N: Window icon L: Window label (Title) I: Iconify (Minimize) @@ -264,192 +264,322 @@ S: シェード化 (巻き上げる) D: 全てのデスクトップに表示する - + Primary monitor 主モニター - + + The dock is a special container for "dockapps", or dock applications. It is not visible on screen until a dockapp is run. Dockapps can be used to show things like a clock, or to provide you with a system tray. + + + + + Position + + + + + &Position: + + + + + Top Left + + + + + Top + + + + + Top Right + + + + + Left + + + + + Right + + + + + Bottom Left + + + + + Bottom + + + + + Bottom Right + + + + + Floating + + + + + &Floating position: + + + + + x + + + + + Allow &windows to be placed within the dock's area + + + + + &Orientation: + + + + + Vertical + + + + + Horizontal + + + + + Stacking + + + + + Keep dock &above other windows + + + + + A&llow dock to be both above and below windows + + + + + Keep dock &below other windows + + + + + Hiding + + + + + &Delay before hiding: + + + + + Delay before &showing: + + + + + &Hide off screen + + + + About このアプリケーションについて - + &Install a new theme... 新規テーマのインストール(&I)... - + Create a theme &archive (.obt)... テーマアーカイブ (.obt)の作成(&A)... - + &Windows retain a border when undecorated ウィンドウ装飾が外されても枠は維持する(&W) - + A&nimate iconify and restore アイコン化と復帰をアニメーションする(&N) - + &Active window title: アクティブなウィンドウのタイトル(&A): - + &Inactive window title: 非アクティブなウィンドウのタイトル(&I): - + Menu &header: メニューのヘッダ(&H): - + &Menu Item: メニューのアイテム(&M): - + Active &On-screen display: アクティブなオンスクリーンディスプレイ(&O): - + Inactive O&n-screen display: 非アクティブなオンスクリーンディスプレイ(&N): - + Focus &new windows when they appear 新規ウィンドウが現れたときそれをフォーカスする(&N) - + &Place new windows under the mouse pointer 新規ウィンドウはマウスポインタの下に配置する(&P) - + &Center new windows when they are placed 新規ウィンドウは中央に配置する(&C) - + Prefer to place new windows &on: 新規ウィンドウの配置設定(&O): - + Primary &monitor: 主モニター(&M): - + &Fixed monitor: 固定モニター(&F): - + Update the window contents while &resizing リサイズ中もウィンドウの表示内容を更新する(&R) - + Drag &threshold distance: ドラッグの閾値となる距離(&T): - + Amount of resistance against other &windows: 他のウィンドウに接した時の抵抗の量(&W): - + Amount of resistance against screen &edges: 画面端に接した時の抵抗の量(&E): - + &Amount of time to wait before switching: デスクトップを切り替えるまでのウェイト(&A): - + &Switch desktops when moving a window past the screen edge ウィンドウを画面端の先へ動かそうとした時デスクトップを切り替える(&S) - + Fixed &y position: 固定のY位置(&Y): - + Information dialog's &position: 情報ダイアログの位置(&P): - + Fixed &x position: 固定のX位置(&X): - + Show &information dialog: 情報ダイアログの表示(&I): - + &Delay before focusing and raising windows: ウィンドウをフォーカスし前面に出すまでの遅延(&D): - + Move focus under the mouse when &switching desktops デスクトップを切り替える際にマウスの下にあるウィンドウへフォーカスを移す(&S) - + Move focus &under the mouse when the mouse is not moving マウスが動いていない時もそこへフォーカスを移す(&U) - + &Raise windows when the mouse pointer moves over them マウスポインタが入ったウィンドウを前面に出す(&R) - + Double click on the &titlebar: タイトルバー上のダブルクリック(&T): - + Double click ti&me: ダブルクリックの時間(&M): - + &Show a notification when switching desktops デスクトップ切替時に通知を表示する(&S) - + &Amount of time to show the notification for: 通知を表示する時間の長さ(&A): - + &Number of desktops: デスクトップの数(&N): - + &Desktop names: デスクトップの名前(&D): @@ -462,8 +592,9 @@ D: 全てのデスクトップに表示する 独自のアクション - - + + + (Unnamed desktop) (無題のデスクトップ) @@ -476,6 +607,20 @@ D: 全てのデスクトップに表示する A preferences manager for Openbox +Copyright (c) 2014-2015 + +Authors: +* Hong Jen Yee (PCMan) <pcman.tw@gmail.com> + +The program is based on ObConf developed by the following developers. +* Dana Jansens <danakj@orodu.net> +* Tim Riley <tr@slackzone.org> +* Javeed Shaikh <syscrash2k@gmail.com> + + + + A preferences manager for Openbox + Copyright (c) 2003-2013 Authors: @@ -483,7 +628,7 @@ Authors: * Dana Jansens <danakj@orodu.net> * Tim Riley <tr@slackzone.org> * Javeed Shaikh <syscrash2k@gmail.com> - Openbox の設定マネージャ + Openbox の設定マネージャ Copyright (c) 2003-2013 diff --git a/src/translations/obconf-qt_pa.ts b/src/translations/obconf-qt_pa.ts index 611b731..86604d8 100644 --- a/src/translations/obconf-qt_pa.ts +++ b/src/translations/obconf-qt_pa.ts @@ -17,237 +17,237 @@ MainDialog - + Mouse - + Window Manager Preferences - + Theme - + Appearance - + Font - - + + Windows - + Move & Resize - + Desktops - + Margins - + Dock - + Window Titles - + Button order: - + Moving and Resizing Windows - + Information Dialog - + Focusing Windows - + Focus windows when the mouse pointer moves over them - + Titlebar - + Desktop Margins - + Desktop margins are reserved areas on the edge of your screen. New windows will not be placed within a margin, and maximized windows will not cover them. - + Left: - - - - + + + + px - + Top: - + Right: - + Bottom: - + All monitors - + The active monitor - + The monitor with the mouse - + Primary Monitor - + The primary monitor is where Openbox will place dialogs, such as the one used for cycling windows. - + Fixed Monitor - + Active Monitor - + Monitor With Mouse Pointer - - + + Centered - + From left edge - + From right edge - + From top edge - + From bottom edge - + When resizing terminal windows - + Always - + Never - + Centered on the window - + Above the window - + Fixed position on screen - + Maximizes the window - + Shades the window - + N: Window icon L: Window label (Title) I: Iconify (Minimize) @@ -258,192 +258,322 @@ D: Omnipresent (On all desktops) - + Primary monitor - + + The dock is a special container for "dockapps", or dock applications. It is not visible on screen until a dockapp is run. Dockapps can be used to show things like a clock, or to provide you with a system tray. + + + + + Position + + + + + &Position: + + + + + Top Left + + + + + Top + + + + + Top Right + + + + + Left + + + + + Right + + + + + Bottom Left + + + + + Bottom + + + + + Bottom Right + + + + + Floating + + + + + &Floating position: + + + + + x + + + + + Allow &windows to be placed within the dock's area + + + + + &Orientation: + + + + + Vertical + + + + + Horizontal + + + + + Stacking + + + + + Keep dock &above other windows + + + + + A&llow dock to be both above and below windows + + + + + Keep dock &below other windows + + + + + Hiding + + + + + &Delay before hiding: + + + + + Delay before &showing: + + + + + &Hide off screen + + + + About - + &Install a new theme... - + Create a theme &archive (.obt)... - + &Windows retain a border when undecorated - + A&nimate iconify and restore - + &Active window title: - + &Inactive window title: - + Menu &header: - + &Menu Item: - + Active &On-screen display: - + Inactive O&n-screen display: - + Focus &new windows when they appear - + &Place new windows under the mouse pointer - + &Center new windows when they are placed - + Prefer to place new windows &on: - + Primary &monitor: - + &Fixed monitor: - + Update the window contents while &resizing - + Drag &threshold distance: - + Amount of resistance against other &windows: - + Amount of resistance against screen &edges: - + &Amount of time to wait before switching: - + &Switch desktops when moving a window past the screen edge - + Fixed &y position: - + Information dialog's &position: - + Fixed &x position: - + Show &information dialog: - + &Delay before focusing and raising windows: - + Move focus under the mouse when &switching desktops - + Move focus &under the mouse when the mouse is not moving - + &Raise windows when the mouse pointer moves over them - + Double click on the &titlebar: - + Double click ti&me: - + &Show a notification when switching desktops - + &Amount of time to show the notification for: - + &Number of desktops: - + &Desktop names: @@ -456,8 +586,9 @@ D: Omnipresent (On all desktops) - - + + + (Unnamed desktop) @@ -470,10 +601,12 @@ D: Omnipresent (On all desktops) A preferences manager for Openbox -Copyright (c) 2003-2013 +Copyright (c) 2014-2015 Authors: * Hong Jen Yee (PCMan) <pcman.tw@gmail.com> + +The program is based on ObConf developed by the following developers. * Dana Jansens <danakj@orodu.net> * Tim Riley <tr@slackzone.org> * Javeed Shaikh <syscrash2k@gmail.com> diff --git a/src/translations/obconf-qt_pl.ts b/src/translations/obconf-qt_pl.ts index 1f0305d..4ad295f 100644 --- a/src/translations/obconf-qt_pl.ts +++ b/src/translations/obconf-qt_pl.ts @@ -17,237 +17,237 @@ MainDialog - + Mouse Mysz - + Window Manager Preferences Preferencje menedżera okien - + Theme Motyw - + Appearance Wygląd - + Font Czcionka - - + + Windows Okna - + Move & Resize Przenieś i zmień rozmiar - + Desktops Pulpity - + Margins Obrzeża - + Dock Dok - + Window Titles Tytuły okien - + Button order: Kolejność przycisków: - + Moving and Resizing Windows Przenoszenie i zmiana rozmiaru okien - + Information Dialog Okno dialogowe - + Focusing Windows Aktywacja okien - + Focus windows when the mouse pointer moves over them Aktywuj okna, gdy wskaźnik myszy znajduje się nad nimi - + Titlebar Pasek tytułu - + Desktop Margins Obrzeża pulpitu - + Desktop margins are reserved areas on the edge of your screen. New windows will not be placed within a margin, and maximized windows will not cover them. Obrzeża pulpitu to zarezerwowany obszar na krawędziach Twojego ekranu. Nowe okna nie będą umieszczane na obrzeżach, a maksymalizowane okna nie będą ich pokrywać. - + Left: Lewy: - - - - + + + + px piks. - + Top: Górny: - + Right: Prawy: - + Bottom: Dolny: - + All monitors Wszystkie monitory - + The active monitor Aktywny monitor - + The monitor with the mouse Monitor z myszą - + Primary Monitor Monitor główny - + The primary monitor is where Openbox will place dialogs, such as the one used for cycling windows. Główny monitor to ten, gdzie Openbox będzie umieszczać okna dialogowe, jak również ten służący do wymiany okien. - + Fixed Monitor Stały monitor - + Active Monitor Aktywny monitor - + Monitor With Mouse Pointer Monitor ze wskaźnikiem myszy - - + + Centered Wyśrodkowane - + From left edge Od lewej krawędzi - + From right edge Od prawej krawędzi - + From top edge Od górnej krawędzi - + From bottom edge Od dolnej krawędzi - + When resizing terminal windows Podczas zmiany rozmiaru okna terminala - + Always Zawsze - + Never Nigdy - + Centered on the window Centralnie na oknie - + Above the window Nad oknem - + Fixed position on screen Określone położenie na ekranie - + Maximizes the window Maksymalizuje okno - + Shades the window Przyciemnia okno - + N: Window icon L: Window label (Title) I: Iconify (Minimize) @@ -264,192 +264,322 @@ S: Zwiń (Zroluj) D: Wszechobecne (Na wszystkich pulpitach) - + Primary monitor Monitor główny - + + The dock is a special container for "dockapps", or dock applications. It is not visible on screen until a dockapp is run. Dockapps can be used to show things like a clock, or to provide you with a system tray. + + + + + Position + + + + + &Position: + + + + + Top Left + + + + + Top + + + + + Top Right + + + + + Left + + + + + Right + + + + + Bottom Left + + + + + Bottom + + + + + Bottom Right + + + + + Floating + + + + + &Floating position: + + + + + x + + + + + Allow &windows to be placed within the dock's area + + + + + &Orientation: + + + + + Vertical + + + + + Horizontal + + + + + Stacking + + + + + Keep dock &above other windows + + + + + A&llow dock to be both above and below windows + + + + + Keep dock &below other windows + + + + + Hiding + + + + + &Delay before hiding: + + + + + Delay before &showing: + + + + + &Hide off screen + + + + About O programie - + &Install a new theme... &Zainstaluj nowy motyw... - + Create a theme &archive (.obt)... &Utwórz archiwum motywu (.obt)... - + &Windows retain a border when undecorated Okna zacho&wują obramowanie, gdy nie mają dekoracji - + A&nimate iconify and restore A&nimowane zwinięcie do ikony i odtworzenie - + &Active window title: Tytuł &aktywnego okna: - + &Inactive window title: Tytuł n&ieaktywnego okna: - + Menu &header: &Nagłówek menu: - + &Menu Item: &Element menu: - + Active &On-screen display: Aktywne &okienko informacyjne na ekranie: - + Inactive O&n-screen display: Nieaktywne okie&nko informacyjne na ekranie: - + Focus &new windows when they appear Aktywuj &nowe okna, gdy się pojawią - + &Place new windows under the mouse pointer _Umieszczaj nowe okna pod wskaźnikiem myszy - + &Center new windows when they are placed Wyśrodkuj nowe okna, gdy są one umiesz&czane - + Prefer to place new windows &on: Preferencja d&o umieszczania nowych okien na: - + Primary &monitor: &Monitor główny: - + &Fixed monitor: &Stały monitor: - + Update the window contents while &resizing Aktualizacja zawa&rtości okna przy zmianie jego wielkości - + Drag &threshold distance: Opór odle&głości progowej: - + Amount of resistance against other &windows: &Wielkość oporu przeciwko innym oknom: - + Amount of resistance against screen &edges: Wielkość oporu przeciwko krawędziom &ekranu: - + &Amount of time to wait before switching: Ilość cz&asu do oczekiwania przed przełączeniem: - + &Switch desktops when moving a window past the screen edge Przełącz pulpity podcza&s przenoszenia okna poza krawędź ekranu - + Fixed &y position: Stała pozycja &y: - + Information dialog's &position: &Pozycja okna dialogowego informacji: - + Fixed &x position: Stała pozycja &x: - + Show &information dialog: Pokaż okno &informacyjne: - + &Delay before focusing and raising windows: &Opóźnienie przed aktywacją i wznoszeniem okien: - + Move focus under the mouse when &switching desktops Przenieś zaznaczenie pod wskaźnik my&szy podczas przełączania pulpitów - + Move focus &under the mouse when the mouse is not moving Przenieś zaznaczenie pod wskaźnik myszy, gdy mysz jest nier&uchoma - + &Raise windows when the mouse pointer moves over them &Aktywuj okna, gdy wskaźnik myszy znajduje się nad nimi - + Double click on the &titlebar: Podwójne kliknięcie na pasku &tytułu: - + Double click ti&me: Czas &dwukrotnego kliknięcia: - + &Show a notification when switching desktops Pokaż powiadomienie podcza&s przełączania pulpitów - + &Amount of time to show the notification for: Ilość cz&asu do wyświetlania powiadomienia dla: - + &Number of desktops: &Liczba pulpitów: - + &Desktop names: Nazwy &pulpitów: @@ -462,8 +592,9 @@ D: Wszechobecne (Na wszystkich pulpitach) Działania własne - - + + + (Unnamed desktop) (Nienazwany pulpit) @@ -476,6 +607,20 @@ D: Wszechobecne (Na wszystkich pulpitach) A preferences manager for Openbox +Copyright (c) 2014-2015 + +Authors: +* Hong Jen Yee (PCMan) <pcman.tw@gmail.com> + +The program is based on ObConf developed by the following developers. +* Dana Jansens <danakj@orodu.net> +* Tim Riley <tr@slackzone.org> +* Javeed Shaikh <syscrash2k@gmail.com> + + + + A preferences manager for Openbox + Copyright (c) 2003-2013 Authors: @@ -483,7 +628,7 @@ Authors: * Dana Jansens <danakj@orodu.net> * Tim Riley <tr@slackzone.org> * Javeed Shaikh <syscrash2k@gmail.com> - Zarządca preferencji dla Openbox + Zarządca preferencji dla Openbox Prawa autorskie (c) 2003-2013 diff --git a/src/translations/obconf-qt_pt.ts b/src/translations/obconf-qt_pt.ts index f026200..e221fdf 100644 --- a/src/translations/obconf-qt_pt.ts +++ b/src/translations/obconf-qt_pt.ts @@ -17,237 +17,237 @@ MainDialog - + Mouse Rato - + Window Manager Preferences Preferências de gestor de janelas - + Theme Tema - + Appearance Aparência - + Font Tipo de letra - - + + Windows Janelas - + Move & Resize Mover e redimensionar - + Desktops Áreas de trabalho - + Margins Margens - + Dock Doca - + Window Titles Título das janelas - + Button order: Ordem dos botões: - + Moving and Resizing Windows Movimentação e redimensionamento de janelas - + Information Dialog Diálogos - + Focusing Windows Foco de janelas - + Focus windows when the mouse pointer moves over them Focar janelas ao passar com o ponteiro do rato - + Titlebar Barra de título - + Desktop Margins Margens da área de trabalho - + Desktop margins are reserved areas on the edge of your screen. New windows will not be placed within a margin, and maximized windows will not cover them. As margens da área de trabalho são as áreas reservadas nos limites do ecrã. As janelas não serão colocadas nas margens e as janelas maximizadas também não as cobrirão. - + Left: Esquerda: - - - - + + + + px px - + Top: Superior: - + Right: Direita: - + Bottom: Inferior: - + All monitors Todos os monitores - + The active monitor Monitor ativo - + The monitor with the mouse Monitor com o ponteiro do rato - + Primary Monitor Monitor principal - + The primary monitor is where Openbox will place dialogs, such as the one used for cycling windows. O monitor principal é aquele em que o Openbox apresenta os diálogos, tais como o diálogo para percorrer janelas. - + Fixed Monitor Monitor fixo - + Active Monitor Monitor ativo - + Monitor With Mouse Pointer Monitor com o ponteiro do rato - - + + Centered Centro - + From left edge Da margem esquerda - + From right edge Da margem direita - + From top edge Da margem superior - + From bottom edge Da margem inferior - + When resizing terminal windows Ao redimensionar as janelas de terminal - + Always Sempre - + Never Nunca - + Centered on the window Centrar na janela - + Above the window Por cima da janela - + Fixed position on screen Posição fixa no ecrã - + Maximizes the window Maximiza a janela - + Shades the window Enrola a janela - + N: Window icon L: Window label (Title) I: Iconify (Minimize) @@ -264,192 +264,322 @@ S: Enrolar D: Omnipresente (todas as áreas de trabalho) - + Primary monitor Monitor principal - + + The dock is a special container for "dockapps", or dock applications. It is not visible on screen until a dockapp is run. Dockapps can be used to show things like a clock, or to provide you with a system tray. + + + + + Position + + + + + &Position: + + + + + Top Left + + + + + Top + + + + + Top Right + + + + + Left + + + + + Right + + + + + Bottom Left + + + + + Bottom + + + + + Bottom Right + + + + + Floating + + + + + &Floating position: + + + + + x + + + + + Allow &windows to be placed within the dock's area + + + + + &Orientation: + + + + + Vertical + + + + + Horizontal + + + + + Stacking + + + + + Keep dock &above other windows + + + + + A&llow dock to be both above and below windows + + + + + Keep dock &below other windows + + + + + Hiding + + + + + &Delay before hiding: + + + + + Delay before &showing: + + + + + &Hide off screen + + + + About Sobre - + &Install a new theme... &Instalar um tema... - + Create a theme &archive (.obt)... Criar um &arquivo de tema (.obt)... - + &Windows retain a border when undecorated As &janelas possuem contorno mesmo que não decoradas - + A&nimate iconify and restore A&nimar minimização e restauro - + &Active window title: Título da janela &ativa: - + &Inactive window title: Título da janela &inativa: - + Menu &header: Cabeçal&lho de menu: - + &Menu Item: Item de &menu: - + Active &On-screen display: Visualização no ecrã (&OSD) ativo: - + Inactive O&n-screen display: Visualização no ecrã (O&SD) inativo: - + Focus &new windows when they appear Focar &novas janelas assim que aparecerem - + &Place new windows under the mouse pointer &Posicionar novas janelas por baixo do ponteiro do rato - + &Center new windows when they are placed &Centrar novas janelas assim que forem posicionadas - + Prefer to place new windows &on: C&olocar novas janelas em: - + Primary &monitor: &Monitor principal: - + &Fixed monitor: Monitor &fixo: - + Update the window contents while &resizing Atualizar conteúdo da janela ao &redimensionar - + Drag &threshold distance: Dis&tância de arrasto: - + Amount of resistance against other &windows: Resistência em relação às outras &janelas: - + Amount of resistance against screen &edges: Resistência em relação aos limit&es do ecrã: - + &Amount of time to wait before switching: Tempo de esper&a antes de trocar: - + &Switch desktops when moving a window past the screen edge Trocar de área de trabalho ao mover a janela para além do&s limites do ecrã - + Fixed &y position: Posição &Y: - + Information dialog's &position: &Posição do diálogo: - + Fixed &x position: Posição &X: - + Show &information dialog: Mostrar d&iálogo de informações: - + &Delay before focusing and raising windows: Atraso antes &de focar e mostrar janelas: - + Move focus under the mouse when &switching desktops Mover foco para bai&xo do rato ao trocar de área de trabalho - + Move focus &under the mouse when the mouse is not moving Mover foco para baixo do rato se este não esti&ver em movimento - + &Raise windows when the mouse pointer moves over them Most&rar janelas ao passar o rato sobre as mesmas - + Double click on the &titlebar: Duplo clique na barra de &título: - + Double click ti&me: Te&mpo do duplo clique: - + &Show a notification when switching desktops Mo&strar notificação ao trocar a área de trabalho - + &Amount of time to show the notification for: Mostr&ar notificação durante: - + &Number of desktops: &Número de áreas de trabalho: - + &Desktop names: Nome das áreas &de trabalho: @@ -462,8 +592,9 @@ D: Omnipresente (todas as áreas de trabalho) Ações personalizadas - - + + + (Unnamed desktop) (Área de trabalho sem nome) @@ -476,6 +607,20 @@ D: Omnipresente (todas as áreas de trabalho) A preferences manager for Openbox +Copyright (c) 2014-2015 + +Authors: +* Hong Jen Yee (PCMan) <pcman.tw@gmail.com> + +The program is based on ObConf developed by the following developers. +* Dana Jansens <danakj@orodu.net> +* Tim Riley <tr@slackzone.org> +* Javeed Shaikh <syscrash2k@gmail.com> + + + + A preferences manager for Openbox + Copyright (c) 2003-2013 Authors: @@ -483,7 +628,7 @@ Authors: * Dana Jansens <danakj@orodu.net> * Tim Riley <tr@slackzone.org> * Javeed Shaikh <syscrash2k@gmail.com> - O gestor de definições do Openbox + O gestor de definições do Openbox Copyright (c) 2003-2013 diff --git a/src/translations/obconf-qt_pt_BR.ts b/src/translations/obconf-qt_pt_BR.ts index 593aa3a..5d58010 100644 --- a/src/translations/obconf-qt_pt_BR.ts +++ b/src/translations/obconf-qt_pt_BR.ts @@ -17,237 +17,237 @@ MainDialog - + Mouse - + Window Manager Preferences - + Theme - + Appearance - + Font - - + + Windows - + Move & Resize - + Desktops - + Margins - + Dock - + Window Titles - + Button order: - + Moving and Resizing Windows - + Information Dialog - + Focusing Windows - + Focus windows when the mouse pointer moves over them - + Titlebar - + Desktop Margins - + Desktop margins are reserved areas on the edge of your screen. New windows will not be placed within a margin, and maximized windows will not cover them. - + Left: - - - - + + + + px - + Top: - + Right: - + Bottom: - + All monitors - + The active monitor - + The monitor with the mouse - + Primary Monitor - + The primary monitor is where Openbox will place dialogs, such as the one used for cycling windows. - + Fixed Monitor - + Active Monitor - + Monitor With Mouse Pointer - - + + Centered - + From left edge - + From right edge - + From top edge - + From bottom edge - + When resizing terminal windows - + Always - + Never - + Centered on the window - + Above the window - + Fixed position on screen - + Maximizes the window - + Shades the window - + N: Window icon L: Window label (Title) I: Iconify (Minimize) @@ -258,192 +258,322 @@ D: Omnipresent (On all desktops) - + Primary monitor - + + The dock is a special container for "dockapps", or dock applications. It is not visible on screen until a dockapp is run. Dockapps can be used to show things like a clock, or to provide you with a system tray. + + + + + Position + + + + + &Position: + + + + + Top Left + + + + + Top + + + + + Top Right + + + + + Left + + + + + Right + + + + + Bottom Left + + + + + Bottom + + + + + Bottom Right + + + + + Floating + + + + + &Floating position: + + + + + x + + + + + Allow &windows to be placed within the dock's area + + + + + &Orientation: + + + + + Vertical + + + + + Horizontal + + + + + Stacking + + + + + Keep dock &above other windows + + + + + A&llow dock to be both above and below windows + + + + + Keep dock &below other windows + + + + + Hiding + + + + + &Delay before hiding: + + + + + Delay before &showing: + + + + + &Hide off screen + + + + About - + &Install a new theme... - + Create a theme &archive (.obt)... - + &Windows retain a border when undecorated - + A&nimate iconify and restore - + &Active window title: - + &Inactive window title: - + Menu &header: - + &Menu Item: - + Active &On-screen display: - + Inactive O&n-screen display: - + Focus &new windows when they appear - + &Place new windows under the mouse pointer - + &Center new windows when they are placed - + Prefer to place new windows &on: - + Primary &monitor: - + &Fixed monitor: - + Update the window contents while &resizing - + Drag &threshold distance: - + Amount of resistance against other &windows: - + Amount of resistance against screen &edges: - + &Amount of time to wait before switching: - + &Switch desktops when moving a window past the screen edge - + Fixed &y position: - + Information dialog's &position: - + Fixed &x position: - + Show &information dialog: - + &Delay before focusing and raising windows: - + Move focus under the mouse when &switching desktops - + Move focus &under the mouse when the mouse is not moving - + &Raise windows when the mouse pointer moves over them - + Double click on the &titlebar: - + Double click ti&me: - + &Show a notification when switching desktops - + &Amount of time to show the notification for: - + &Number of desktops: - + &Desktop names: @@ -456,8 +586,9 @@ D: Omnipresent (On all desktops) - - + + + (Unnamed desktop) @@ -470,10 +601,12 @@ D: Omnipresent (On all desktops) A preferences manager for Openbox -Copyright (c) 2003-2013 +Copyright (c) 2014-2015 Authors: * Hong Jen Yee (PCMan) <pcman.tw@gmail.com> + +The program is based on ObConf developed by the following developers. * Dana Jansens <danakj@orodu.net> * Tim Riley <tr@slackzone.org> * Javeed Shaikh <syscrash2k@gmail.com> diff --git a/src/translations/obconf-qt_ru.ts b/src/translations/obconf-qt_ru.ts index 1646c57..5fd74ba 100644 --- a/src/translations/obconf-qt_ru.ts +++ b/src/translations/obconf-qt_ru.ts @@ -17,88 +17,88 @@ MainDialog - + Window Manager Preferences Настройки менеджера окон - + Theme Тема - + Appearance Внешний вид - + Font Шрифт - - + + Windows Окна - + Move & Resize Перемещение и изменение размера - + Mouse Мышь - + Desktops Рабочие столы - + Margins Границы - + Dock Док - + &Install a new theme... &Установить новую тему... - + Create a theme &archive (.obt)... Создать &архив с темой (.obt)... - + &Windows retain a border when undecorated &Окна без декораций сохраняют края - + A&nimate iconify and restore А&нимировать сворачивание и восстановление окна - + Window Titles Заголовки окна - + Button order: Порядок кнопок: - + N: Window icon L: Window label (Title) I: Iconify (Minimize) @@ -115,341 +115,471 @@ S: Свернуть в заголовок окна D: На все рабочие столы - + &Active window title: Название &активного окна: - + &Inactive window title: Название &неактивного окна: - + Menu &header: &Заголовок меню: - + &Menu Item: Пункт &меню: - + Active &On-screen display: - + Inactive O&n-screen display: - + Focus &new windows when they appear Передавать фокус &новым окнам при их возникновении - + &Place new windows under the mouse pointer &Помещать новые окна под курсором мыши - + &Center new windows when they are placed - + Prefer to place new windows &on: Предпочитать размещать новое окно &на: - + All monitors Всех мониторах - + The active monitor Активном мониторе - + The monitor with the mouse Мониторе с мышью - + Primary monitor Основном мониторе - + Primary Monitor Основной монитор - + The primary monitor is where Openbox will place dialogs, such as the one used for cycling windows. Основной монитор - это область, где Openbox будет размещать диалоги, такие как переключение окон. - + Primary &monitor: Основной &монитор: - + Fixed Monitor Фиксированный монитор - + Active Monitor Активный монитор - + Monitor With Mouse Pointer Монитор с курсором мыши - + &Fixed monitor: &Фиксированный монитор: - + Moving and Resizing Windows Перемещение и изменение размеров окон - + Update the window contents while &resizing Обновлять содержимое окна во &время изменения размера - + Drag &threshold distance: &Порог расстояния перетаскивания: - + Amount of resistance against other &windows: Количество сопротивления к другим &окнам: - + Amount of resistance against screen &edges: Количество сопротивления к &краям экрана: - + &Amount of time to wait before switching: &Время ожидания перед переключением: - + &Switch desktops when moving a window past the screen edge &Переключать рабочие столы при перемещенииокна за границы экрана - + Information Dialog Информагионный диалог - - + + Centered По центру - + From left edge От левого края - + From right edge От правого края - + Fixed &y position: Фиксированное по &y: - + From top edge Отверхеней границы - + From bottom edge От нижней границы - + Information dialog's &position: &Расположение информационного диалога: - + Fixed &x position: Фиксированное по &x: - + Show &information dialog: Показывать &информационный диалог: - + When resizing terminal windows - + Always Всегда - + Never Никогда - + Centered on the window По центру окна - + Above the window Сверху окна - + Fixed position on screen Фиксированное место на экране - + Focusing Windows Передача фокуса окнам - + Focus windows when the mouse pointer moves over them Передавать фокус окнам, когда курсор перемещается над ними - + &Delay before focusing and raising windows: &Задержка перед передачей курсора и поднятием окна: - + Move focus under the mouse when &switching desktops Передавать фокус под курсор при &переключении рабочих столов - + Move focus &under the mouse when the mouse is not moving Передавать фокус &под курсор, когда мышь не двигается - + &Raise windows when the mouse pointer moves over them &Поднимать окна, когда курсор двигается по ним - + Titlebar Заголовок окна - + Double click on the &titlebar: Двойной клик на &заголовке окна: - + Maximizes the window Разворачивает окно - + Shades the window Сворачивает окно в заголовок - + Double click ti&me: &Время двойного клика: - + &Show a notification when switching desktops &Показывать уведомление при переключении рабочих столов - + &Amount of time to show the notification for: &Время, на протяжении которого показывается уведомление: - + &Number of desktops: &Количество рабочих столов: - + &Desktop names: Названия &рабочих столов: - + Desktop Margins Границы рабочего стола - + Desktop margins are reserved areas on the edge of your screen. New windows will not be placed within a margin, and maximized windows will not cover them. Границы рабочего стола - это зарезервированные зоны по вашего экрана. Новые окна не будут помещены в рамках границ, и развёрнутые окна не перекроют их. - + Left: Слева: - - - - + + + + px пикс - + Top: Сверху: - + Right: Справа: - + Bottom: Снизу: - + + The dock is a special container for "dockapps", or dock applications. It is not visible on screen until a dockapp is run. Dockapps can be used to show things like a clock, or to provide you with a system tray. + + + + + Position + + + + + &Position: + + + + + Top Left + + + + + Top + + + + + Top Right + + + + + Left + + + + + Right + + + + + Bottom Left + + + + + Bottom + + + + + Bottom Right + + + + + Floating + + + + + &Floating position: + + + + + x + + + + + Allow &windows to be placed within the dock's area + + + + + &Orientation: + + + + + Vertical + + + + + Horizontal + + + + + Stacking + + + + + Keep dock &above other windows + + + + + A&llow dock to be both above and below windows + + + + + Keep dock &below other windows + + + + + Hiding + + + + + &Delay before hiding: + + + + + Delay before &showing: + + + + + &Hide off screen + + + + About О программе @@ -457,8 +587,9 @@ D: На все рабочие столы Obconf::MainDialog - - + + + (Unnamed desktop) (Неназванный рабочий стол) @@ -471,6 +602,20 @@ D: На все рабочие столы A preferences manager for Openbox +Copyright (c) 2014-2015 + +Authors: +* Hong Jen Yee (PCMan) <pcman.tw@gmail.com> + +The program is based on ObConf developed by the following developers. +* Dana Jansens <danakj@orodu.net> +* Tim Riley <tr@slackzone.org> +* Javeed Shaikh <syscrash2k@gmail.com> + + + + A preferences manager for Openbox + Copyright (c) 2003-2013 Authors: @@ -478,7 +623,7 @@ Authors: * Dana Jansens <danakj@orodu.net> * Tim Riley <tr@slackzone.org> * Javeed Shaikh <syscrash2k@gmail.com> - Диспетчер настроек для Openbox + Диспетчер настроек для Openbox Copyright (c) 2003-2013 diff --git a/src/translations/obconf-qt_ru_RU.ts b/src/translations/obconf-qt_ru_RU.ts index 43a8e0f..715fe87 100644 --- a/src/translations/obconf-qt_ru_RU.ts +++ b/src/translations/obconf-qt_ru_RU.ts @@ -17,88 +17,88 @@ MainDialog - + Window Manager Preferences Настройки менеджера окон - + Theme Тема - + Appearance Внешний вид - + Font Шрифт - - + + Windows Окна - + Move & Resize Перемещение и изменение размера - + Mouse Мышь - + Desktops Рабочие столы - + Margins Границы - + Dock Док - + &Install a new theme... &Установить новую тему... - + Create a theme &archive (.obt)... Создать &архив с темой (.obt)... - + &Windows retain a border when undecorated &Окна без декораций сохраняют края - + A&nimate iconify and restore А&нимировать сворачивание и восстановление окна - + Window Titles Заголовки окна - + Button order: Порядок кнопок: - + N: Window icon L: Window label (Title) I: Iconify (Minimize) @@ -115,341 +115,471 @@ S: Свернуть в заголовок окна D: На все рабочие столы - + &Active window title: Название &активного окна: - + &Inactive window title: Название &неактивного окна: - + Menu &header: &Заголовок меню: - + &Menu Item: Пункт &меню: - + Active &On-screen display: - + Inactive O&n-screen display: - + Focus &new windows when they appear Передавать фокус &новым окнам при их возникновении - + &Place new windows under the mouse pointer &Помещать новые окна под курсором мыши - + &Center new windows when they are placed - + Prefer to place new windows &on: Предпочитать размещать новое окно &на: - + All monitors Всех мониторах - + The active monitor Активном мониторе - + The monitor with the mouse Мониторе с мышью - + Primary monitor Основном мониторе - + Primary Monitor Основной монитор - + The primary monitor is where Openbox will place dialogs, such as the one used for cycling windows. Основной монитор - это область, где Openbox будет размещать диалоги, такие как переключение окон. - + Primary &monitor: Основной &монитор: - + Fixed Monitor Фиксированный монитор - + Active Monitor Активный монитор - + Monitor With Mouse Pointer Монитор с курсором мыши - + &Fixed monitor: &Фиксированный монитор: - + Moving and Resizing Windows Перемещение и изменение размеров окон - + Update the window contents while &resizing Обновлять содержимое окна во &время изменения размера - + Drag &threshold distance: &Порог расстояния перетаскивания: - + Amount of resistance against other &windows: Количество сопротивления к другим &окнам: - + Amount of resistance against screen &edges: Количество сопротивления к &краям экрана: - + &Amount of time to wait before switching: &Время ожидания перед переключением: - + &Switch desktops when moving a window past the screen edge &Переключать рабочие столы при перемещенииокна за границы экрана - + Information Dialog Информагионный диалог - - + + Centered По центру - + From left edge От левого края - + From right edge От правого края - + Fixed &y position: Фиксированное по &y: - + From top edge Отверхеней границы - + From bottom edge От нижней границы - + Information dialog's &position: &Расположение информационного диалога: - + Fixed &x position: Фиксированное по &x: - + Show &information dialog: Показывать &информационный диалог: - + When resizing terminal windows - + Always Всегда - + Never Никогда - + Centered on the window По центру окна - + Above the window Сверху окна - + Fixed position on screen Фиксированное место на экране - + Focusing Windows Передача фокуса окнам - + Focus windows when the mouse pointer moves over them Передавать фокус окнам, когда курсор перемещается над ними - + &Delay before focusing and raising windows: &Задержка перед передачей курсора и поднятием окна: - + Move focus under the mouse when &switching desktops Передавать фокус под курсор при &переключении рабочих столов - + Move focus &under the mouse when the mouse is not moving Передавать фокус &под курсор, когда мышь не двигается - + &Raise windows when the mouse pointer moves over them &Поднимать окна, когда курсор двигается по ним - + Titlebar Заголовок окна - + Double click on the &titlebar: Двойной клик на &заголовке окна: - + Maximizes the window Разворачивает окно - + Shades the window Сворачивает окно в заголовок - + Double click ti&me: &Время двойного клика: - + &Show a notification when switching desktops &Показывать уведомление при переключении рабочих столов - + &Amount of time to show the notification for: &Время, на протяжении которого показывается уведомление: - + &Number of desktops: &Количество рабочих столов: - + &Desktop names: Названия &рабочих столов: - + Desktop Margins Границы рабочего стола - + Desktop margins are reserved areas on the edge of your screen. New windows will not be placed within a margin, and maximized windows will not cover them. Границы рабочего стола - это зарезервированные зоны по вашего экрана. Новые окна не будут помещены в рамках границ, и развёрнутые окна не перекроют их. - + Left: Слева: - - - - + + + + px пикс - + Top: Сверху: - + Right: Справа: - + Bottom: Снизу: - + + The dock is a special container for "dockapps", or dock applications. It is not visible on screen until a dockapp is run. Dockapps can be used to show things like a clock, or to provide you with a system tray. + + + + + Position + + + + + &Position: + + + + + Top Left + + + + + Top + + + + + Top Right + + + + + Left + + + + + Right + + + + + Bottom Left + + + + + Bottom + + + + + Bottom Right + + + + + Floating + + + + + &Floating position: + + + + + x + + + + + Allow &windows to be placed within the dock's area + + + + + &Orientation: + + + + + Vertical + + + + + Horizontal + + + + + Stacking + + + + + Keep dock &above other windows + + + + + A&llow dock to be both above and below windows + + + + + Keep dock &below other windows + + + + + Hiding + + + + + &Delay before hiding: + + + + + Delay before &showing: + + + + + &Hide off screen + + + + About О программе @@ -457,8 +587,9 @@ D: На все рабочие столы Obconf::MainDialog - - + + + (Unnamed desktop) (Неназванный рабочий стол) @@ -471,6 +602,20 @@ D: На все рабочие столы A preferences manager for Openbox +Copyright (c) 2014-2015 + +Authors: +* Hong Jen Yee (PCMan) <pcman.tw@gmail.com> + +The program is based on ObConf developed by the following developers. +* Dana Jansens <danakj@orodu.net> +* Tim Riley <tr@slackzone.org> +* Javeed Shaikh <syscrash2k@gmail.com> + + + + A preferences manager for Openbox + Copyright (c) 2003-2013 Authors: @@ -478,7 +623,7 @@ Authors: * Dana Jansens <danakj@orodu.net> * Tim Riley <tr@slackzone.org> * Javeed Shaikh <syscrash2k@gmail.com> - Диспетчер настроек для Openbox + Диспетчер настроек для Openbox Copyright (c) 2003-2013 diff --git a/src/translations/obconf-qt_sv.ts b/src/translations/obconf-qt_sv.ts index 5654b54..326f605 100644 --- a/src/translations/obconf-qt_sv.ts +++ b/src/translations/obconf-qt_sv.ts @@ -17,237 +17,237 @@ MainDialog - + Mouse Mus - + Window Manager Preferences Inställningar för fönstehanteraren - + Theme Tema - + Appearance Utseende - + Font Teckensnitt - - + + Windows Fönster - + Move & Resize Flytta och byt storlek - + Desktops Skrivbord - + Margins Marginaler - + Dock Docka - + Window Titles Fönsternamn - + Button order: Knappordning: - + Moving and Resizing Windows Flytta och storleksändra fönster - + Information Dialog Informationsruta - + Focusing Windows Fokusera fönster - + Focus windows when the mouse pointer moves over them Fokusera fönster när muspekaren flyttas över dem - + Titlebar Namnlist - + Desktop Margins Marginaler på skrivbordet - + Desktop margins are reserved areas on the edge of your screen. New windows will not be placed within a margin, and maximized windows will not cover them. Marginaler på skrivbordet reserveras vid kanten på skärmen. Nya fönster kommer inte att placeras inom marginalen och maximerade fönster kommer inte att täcka dessa. - + Left: Vänster: - - - - + + + + px px - + Top: Överst: - + Right: Höger: - + Bottom: Nederst: - + All monitors Alla bildskärmar - + The active monitor Aktiv bildskärm - + The monitor with the mouse Bildskärmen med musen - + Primary Monitor Primär bildskärm - + The primary monitor is where Openbox will place dialogs, such as the one used for cycling windows. Primär bildskärm som Openbox ska placera dialogrutor på, exempelvis den som används för rotera genom fönster. - + Fixed Monitor Fast bildskärm - + Active Monitor Aktiv bildskärm - + Monitor With Mouse Pointer Bildskärm med muspekare - - + + Centered Centrerat - + From left edge Från vänsterkant - + From right edge Från högerkant - + From top edge Från överkant - + From bottom edge Från nederkant - + When resizing terminal windows När storlek på terminalfönster ändras - + Always Alltid - + Never Aldrig - + Centered on the window Centrerat på fönster - + Above the window Ovanför fönster - + Fixed position on screen Fast position på skärmen - + Maximizes the window Maximerar fönstret - + Shades the window Skuggar fönstret - + N: Window icon L: Window label (Title) I: Iconify (Minimize) @@ -264,192 +264,322 @@ S: Rulla upp D: På alla skrivbord - + Primary monitor Primär bildskärm - + + The dock is a special container for "dockapps", or dock applications. It is not visible on screen until a dockapp is run. Dockapps can be used to show things like a clock, or to provide you with a system tray. + + + + + Position + + + + + &Position: + + + + + Top Left + + + + + Top + + + + + Top Right + + + + + Left + + + + + Right + + + + + Bottom Left + + + + + Bottom + + + + + Bottom Right + + + + + Floating + + + + + &Floating position: + + + + + x + + + + + Allow &windows to be placed within the dock's area + + + + + &Orientation: + + + + + Vertical + + + + + Horizontal + + + + + Stacking + + + + + Keep dock &above other windows + + + + + A&llow dock to be both above and below windows + + + + + Keep dock &below other windows + + + + + Hiding + + + + + &Delay before hiding: + + + + + Delay before &showing: + + + + + &Hide off screen + + + + About Om - + &Install a new theme... &Installera ett nytt tema... - + Create a theme &archive (.obt)... Skapa ett tema&arkiv (.obt)... - + &Windows retain a border when undecorated &Fönster behåller kan även utan dekoration - + A&nimate iconify and restore A&nimera ikonifiering och återställning - + &Active window title: &Aktiv fönstertitel: - + &Inactive window title: &Inaktiv fönstertitel: - + Menu &header: &Huvudmeny: - + &Menu Item: &Menyalternativ: - + Active &On-screen display: Aktiv &On-screen-display: - + Inactive O&n-screen display: Inaktiv O&n-screen-display: - + Focus &new windows when they appear Fokusera &nya fönster när de dyker upp - + &Place new windows under the mouse pointer &Placera nya fönster under muspekaren - + &Center new windows when they are placed &Centrera nya fönster när de placeras - + Prefer to place new windows &on: Föredra att placera nya fönster &på: - + Primary &monitor: Primär &bildskärm: - + &Fixed monitor: &Fast bildskräm: - + Update the window contents while &resizing Uppdatera fönsterinnehåll när det ändrar &storlek - + Drag &threshold distance: &Tröskelvärde för distans att dra: - + Amount of resistance against other &windows: Motstånd mot andra &fönster: - + Amount of resistance against screen &edges: Motstånd mot &skärmkanten: - + &Amount of time to wait before switching: &Tid att vänta innan byte: - + &Switch desktops when moving a window past the screen edge &Byt skrivbord när fönster flyttas över kanten - + Fixed &y position: Fast &y-position: - + Information dialog's &position: Informationsrutans &position: - + Fixed &x position: Fast &x-position: - + Show &information dialog: Visa &informationsruta: - + &Delay before focusing and raising windows: &Dröj innan fokusering och framhävning av fönster: - + Move focus under the mouse when &switching desktops Flytta fokus under musen när &skrivbordsbyte sker - + Move focus &under the mouse when the mouse is not moving Flytta fokus &under musen när musen inte flyttas - + &Raise windows when the mouse pointer moves over them &Framhäv fönster när muspekaren flyttas över de - + Double click on the &titlebar: Dubbelklick på fönstertiteln: - + Double click ti&me: Tid för &dubbelklick: - + &Show a notification when switching desktops Vi&sa notifiering vid byte av skrivbord - + &Amount of time to show the notification for: &Tid som notifiering visas: - + &Number of desktops: &Antal skrivbord: - + &Desktop names: &Skrivbordsnamn: @@ -462,8 +592,9 @@ D: På alla skrivbord Anpassade åtgärder - - + + + (Unnamed desktop) (Skrivbord utan namn) @@ -476,6 +607,20 @@ D: På alla skrivbord A preferences manager for Openbox +Copyright (c) 2014-2015 + +Authors: +* Hong Jen Yee (PCMan) <pcman.tw@gmail.com> + +The program is based on ObConf developed by the following developers. +* Dana Jansens <danakj@orodu.net> +* Tim Riley <tr@slackzone.org> +* Javeed Shaikh <syscrash2k@gmail.com> + + + + A preferences manager for Openbox + Copyright (c) 2003-2013 Authors: @@ -483,7 +628,7 @@ Authors: * Dana Jansens <danakj@orodu.net> * Tim Riley <tr@slackzone.org> * Javeed Shaikh <syscrash2k@gmail.com> - Inställningshanterare för Openbox + Inställningshanterare för Openbox Copyright (c) 2003-2013 diff --git a/src/translations/obconf-qt_uk.ts b/src/translations/obconf-qt_uk.ts index 2a4c795..0fc7ffb 100644 --- a/src/translations/obconf-qt_uk.ts +++ b/src/translations/obconf-qt_uk.ts @@ -17,237 +17,237 @@ MainDialog - + Mouse Мишка - + Window Manager Preferences Параметри менеджера файлів - + Theme Тема - + Appearance Вигляд - + Font Шрифт - - + + Windows Вікна - + Move & Resize Перемістити і Змінити розмір - + Desktops Стільниці - + Margins Поля - + Dock Док - + Window Titles Заголовки вікон - + Button order: Послідовність кнопок - + Moving and Resizing Windows Пересування і зміна розмірів вікон - + Information Dialog Діалог інформації - + Focusing Windows Фокусування вікон - + Focus windows when the mouse pointer moves over them Фокусування вікон, якщо вказівник миші знаходиться над ними - + Titlebar Заголовок - + Desktop Margins Поля стільниці - + Desktop margins are reserved areas on the edge of your screen. New windows will not be placed within a margin, and maximized windows will not cover them. Поля робочого столу - це зарезервовані ділянки на краю Вашого екрану. Нові вікна не будуть поміщені за цими межами, а максимізовані вікна не будуть закривати їх. - + Left: Ліворуч: - - - - + + + + px пікселів - + Top: Згори: - + Right: Праворуч: - + Bottom: Знизу: - + All monitors Всі монітори - + The active monitor Активний монітор - + The monitor with the mouse Монітор з мишкою - + Primary Monitor Головний монітор - + The primary monitor is where Openbox will place dialogs, such as the one used for cycling windows. Головний монітор - це монітор, де Openbox поміщає діалоги, наприклад, як діалог прокрутки вікон. - + Fixed Monitor Фіксований монітор - + Active Monitor Активний монітор - + Monitor With Mouse Pointer Монітор з вказівником миші - - + + Centered У центрі - + From left edge Від лівого краю - + From right edge Від правого краю - + From top edge Від верхнього краю - + From bottom edge Від нижнього краю - + When resizing terminal windows При зміні розмірів термінального вікна - + Always Завжди - + Never Ніколи - + Centered on the window Центровано на вікні - + Above the window Над вікном - + Fixed position on screen Фіксована позиція на екрані - + Maximizes the window Максимізує вікно - + Shades the window Затіняє вікно - + N: Window icon L: Window label (Title) I: Iconify (Minimize) @@ -264,192 +264,322 @@ S: Затінити (Згорнути) D: Розмістити всюди (На всіх стільницях) - + Primary monitor Головний монітор - + + The dock is a special container for "dockapps", or dock applications. It is not visible on screen until a dockapp is run. Dockapps can be used to show things like a clock, or to provide you with a system tray. + + + + + Position + + + + + &Position: + + + + + Top Left + + + + + Top + + + + + Top Right + + + + + Left + + + + + Right + + + + + Bottom Left + + + + + Bottom + + + + + Bottom Right + + + + + Floating + + + + + &Floating position: + + + + + x + + + + + Allow &windows to be placed within the dock's area + + + + + &Orientation: + + + + + Vertical + + + + + Horizontal + + + + + Stacking + + + + + Keep dock &above other windows + + + + + A&llow dock to be both above and below windows + + + + + Keep dock &below other windows + + + + + Hiding + + + + + &Delay before hiding: + + + + + Delay before &showing: + + + + + &Hide off screen + + + + About Про - + &Install a new theme... &Встановити нову тему... - + Create a theme &archive (.obt)... Створити &архів теми (.obt)... - + &Windows retain a border when undecorated &Вікна зберігають границі, коли є без оформлення - + A&nimate iconify and restore - + &Active window title: - + &Inactive window title: - + Menu &header: - + &Menu Item: П&ункт меню: - + Active &On-screen display: - + Inactive O&n-screen display: - + Focus &new windows when they appear - + &Place new windows under the mouse pointer - + &Center new windows when they are placed - + Prefer to place new windows &on: - + Primary &monitor: Головний &монітор: - + &Fixed monitor: &Фіксований монітор: - + Update the window contents while &resizing Оновлювати вміст вікна при &зміні розміру - + Drag &threshold distance: - + Amount of resistance against other &windows: - + Amount of resistance against screen &edges: - + &Amount of time to wait before switching: - + &Switch desktops when moving a window past the screen edge - + Fixed &y position: - + Information dialog's &position: &Позиція інформаційного діалогу: - + Fixed &x position: Фіксована &x позиція: - + Show &information dialog: Показати &інформаційний діалог: - + &Delay before focusing and raising windows: Затримка перед &фокусуванням і розгортанням вікна: - + Move focus under the mouse when &switching desktops - + Move focus &under the mouse when the mouse is not moving - + &Raise windows when the mouse pointer moves over them - + Double click on the &titlebar: - + Double click ti&me: Час подвійного &клацання: - + &Show a notification when switching desktops - + &Amount of time to show the notification for: - + &Number of desktops: Кількість &стільниць: - + &Desktop names: &Назви стільниць: @@ -462,8 +592,9 @@ D: Розмістити всюди (На всіх стільницях)Дії користувача - - + + + (Unnamed desktop) (Стільниця без назви) @@ -476,6 +607,20 @@ D: Розмістити всюди (На всіх стільницях) A preferences manager for Openbox +Copyright (c) 2014-2015 + +Authors: +* Hong Jen Yee (PCMan) <pcman.tw@gmail.com> + +The program is based on ObConf developed by the following developers. +* Dana Jansens <danakj@orodu.net> +* Tim Riley <tr@slackzone.org> +* Javeed Shaikh <syscrash2k@gmail.com> + + + + A preferences manager for Openbox + Copyright (c) 2003-2013 Authors: @@ -483,7 +628,7 @@ Authors: * Dana Jansens <danakj@orodu.net> * Tim Riley <tr@slackzone.org> * Javeed Shaikh <syscrash2k@gmail.com> - Менеджер налаштувань для Openbox + Менеджер налаштувань для Openbox Всі права застережено (c) 2003-2013