From e695196df6e48da48a7a4d99e55481c0a6b1d8fb Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Sl=C3=A1vek=20Banko?= Date: Fri, 24 Jul 2020 01:50:03 +0200 Subject: [PATCH] Move translations to a new directory layout. Add support for LINGUAS for listing translations to install. Rename translation catalogs to avoid potential collisions. Fix UTF-8 in author name and strings. MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: Slávek Banko --- AUTHORS | 2 +- CMakeLists.txt | 3 +- bab/CMakeL10n.txt | 2 +- bab/bab.h | 2 +- bab/bab_iface.h | 2 +- bab/main.cpp | 4 +- config/CMakeL10n.txt | 2 +- config/tdestyle_baghira_config.cpp | 10 +- config/tdestyle_baghira_config.h | 2 +- deco/baghiraclient.cc | 2 +- deco/baghiraclient.h | 2 +- deco/config/CMakeL10n.txt | 2 +- deco/config/baghiraconfig.cc | 2 +- deco/config/baghiraconfig.cc.new | 2 +- deco/config/baghiraconfig.h | 2 +- deco/config/baghiraconfig.h.new | 2 +- kickermenu-3.3/menuapplet.cpp | 2 +- kickermenu/CMakeL10n.txt | 2 +- kickermenu/menuapplet.cpp | 2 +- sessionapplet/CMakeL10n.txt | 2 +- sessionapplet/usermanager.cpp | 4 +- sessionapplet/usermanager.h | 2 +- sidebar/baghirasidebariface.h | 2 +- starter/CMakeL10n.txt | 2 +- starter/starter.cpp | 2 +- starter/starteriface.h | 2 +- translations/CMakeLists.txt | 1 + translations/messages/CMakeLists.txt | 14 + .../baghira-kmenuapplet.pot | 34 + .../baghira-starter/baghira-starter.pot | 530 +++++++++++ translations/messages/baghira-starter/de.po | 599 ++++++++++++ .../baghira-switcher/baghira-switcher.pot | 40 + .../baghira-usermanager.pot | 107 +++ .../tdestyle_baghira_config.pot | 895 ++++++++++++++++++ .../twin_baghira_config.pot | 343 +++++++ 35 files changed, 2595 insertions(+), 33 deletions(-) create mode 100644 translations/CMakeLists.txt create mode 100644 translations/messages/CMakeLists.txt create mode 100644 translations/messages/baghira-kmenuapplet/baghira-kmenuapplet.pot create mode 100644 translations/messages/baghira-starter/baghira-starter.pot create mode 100644 translations/messages/baghira-starter/de.po create mode 100644 translations/messages/baghira-switcher/baghira-switcher.pot create mode 100644 translations/messages/baghira-usermanager/baghira-usermanager.pot create mode 100644 translations/messages/tdestyle_baghira_config/tdestyle_baghira_config.pot create mode 100644 translations/messages/twin_baghira_config/twin_baghira_config.pot diff --git a/AUTHORS b/AUTHORS index df25431..96bb54c 100644 --- a/AUTHORS +++ b/AUTHORS @@ -1 +1 @@ -Thomas Lübking +Thomas Lübking diff --git a/CMakeLists.txt b/CMakeLists.txt index ca227f1..14a4a55 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -78,8 +78,7 @@ add_subdirectory( kickermenu ) add_subdirectory( colorscheme ) add_subdirectory( sessionapplet ) tde_conditional_add_subdirectory( BUILD_DOC doc ) - -#tde_conditional_add_subdirectory( BUILD_TRANSLATIONS translations ) +tde_conditional_add_subdirectory( BUILD_TRANSLATIONS translations ) ##### write configure files diff --git a/bab/CMakeL10n.txt b/bab/CMakeL10n.txt index b0866ab..c2a9863 100644 --- a/bab/CMakeL10n.txt +++ b/bab/CMakeL10n.txt @@ -1,3 +1,3 @@ ##### create translation templates ############## -tde_l10n_create_template( "bab" ) +tde_l10n_create_template( "messages/baghira-switcher/" ) diff --git a/bab/bab.h b/bab/bab.h index 571fc51..68c7dcd 100644 --- a/bab/bab.h +++ b/bab/bab.h @@ -1,5 +1,5 @@ /*************************************************************************** - * Copyright (C) 2004 by Thomas Lübking * + * Copyright (C) 2004 by Thomas Lübking * * thomas@home * * * * This program is free software; you can redistribute it and/or modify * diff --git a/bab/bab_iface.h b/bab/bab_iface.h index faf7bd2..16ede51 100644 --- a/bab/bab_iface.h +++ b/bab/bab_iface.h @@ -1,5 +1,5 @@ /*************************************************************************** - * Copyright (C) 2004 by Thomas Lübking * + * Copyright (C) 2004 by Thomas Lübking * * thomas@home * * * * This program is free software; you can redistribute it and/or modify * diff --git a/bab/main.cpp b/bab/main.cpp index 076d3d6..a4a5682 100644 --- a/bab/main.cpp +++ b/bab/main.cpp @@ -1,5 +1,5 @@ /*************************************************************************** - * Copyright (C) 2004 by Thomas Lübking * + * Copyright (C) 2004 by Thomas Lübking * * thomas@home * * * * This program is free software; you can redistribute it and/or modify * @@ -62,7 +62,7 @@ static TDECmdLineOptions options[] = int main(int argc, char **argv) { - TDEAboutData about("bab", I18N_NOOP("BAB - Baghira Aqua/Brushed Switcher"), version, description, + TDEAboutData about("baghira-switcher", I18N_NOOP("BAB - Baghira Aqua/Brushed Switcher"), version, description, TDEAboutData::License_GPL, "(C) 2004/2005 Thomas Lübking", 0, 0, "baghira-style@gmx.net"); about.addAuthor( "Thomas Lübking", 0, "baghira-style@gmx.net" ); TDECmdLineArgs::init(argc, argv, &about); diff --git a/config/CMakeL10n.txt b/config/CMakeL10n.txt index 1996c28..d3181b7 100644 --- a/config/CMakeL10n.txt +++ b/config/CMakeL10n.txt @@ -1,3 +1,3 @@ ##### create translation templates ############## -tde_l10n_create_template( "tdestyle_baghira_config" ) +tde_l10n_create_template( "messages/tdestyle_baghira_config/" ) diff --git a/config/tdestyle_baghira_config.cpp b/config/tdestyle_baghira_config.cpp index be70da4..7c627c5 100644 --- a/config/tdestyle_baghira_config.cpp +++ b/config/tdestyle_baghira_config.cpp @@ -1,5 +1,5 @@ /*************************************************************************** - * Copyright (C) 2004 by Thomas Lübking * + * Copyright (C) 2004 by Thomas Lübking * * thomas@home * * * * This program is free software; you can redistribute it and/or modify * @@ -259,7 +259,7 @@ int presetColor[NUMBEROFCOLORS][3] = {{84,144,218},{130,170,190},{103,118,134},{ // -------------------------------- typedef KGenericFactory tdestyle_baghira_configFactory; -K_EXPORT_COMPONENT_FACTORY( tdecm_tdestyle_baghira_config, tdestyle_baghira_configFactory("tdecmtdestyle_baghira_config")) +K_EXPORT_COMPONENT_FACTORY( tdecm_tdestyle_baghira_config, tdestyle_baghira_configFactory("tdestyle_baghira_config")) //extern TQImage uic_findImage(const TQString& name); //extern void qInitImages_baghira(); @@ -356,9 +356,9 @@ tdestyle_baghira_config::tdestyle_baghira_config(TQWidget *parent, const char *n about_->versionLabel->setText(VERSION); about_->kdeLabel->setText(TDE_VERSION_STRING); crCurrent = 0; - crNotes[0] = "© 2003-2005 by Thomas Lübking
http://baghira.SourceForge.net
"; - crNotes[1] = "© \"Design\" 2001-2005 by Apple inc.
http://www.apple.com"; - crNotes[2] = "© \"Milk\" 2002-2005 by Max Rudberg
http://www.maxthemes.com
"; + crNotes[0] = "© 2003-2005 by Thomas Lübking
http://baghira.SourceForge.net
"; + crNotes[1] = "© \"Design\" 2001-2005 by Apple inc.
http://www.apple.com"; + crNotes[2] = "© \"Milk\" 2002-2005 by Max Rudberg
http://www.maxthemes.com
"; timer = new TQTimer(); connect( timer, SIGNAL(timeout()), this, SLOT(updateCR()) ); TQString tmpString(TQT_BUILD_KEY); diff --git a/config/tdestyle_baghira_config.h b/config/tdestyle_baghira_config.h index 0fb6b93..5d014dd 100644 --- a/config/tdestyle_baghira_config.h +++ b/config/tdestyle_baghira_config.h @@ -1,5 +1,5 @@ /*************************************************************************** - * Copyright (C) 2004 by Thomas Lübking * + * Copyright (C) 2004 by Thomas Lübking * * thomas@home * * * * This program is free software; you can redistribute it and/or modify * diff --git a/deco/baghiraclient.cc b/deco/baghiraclient.cc index 593460a..471e440 100644 --- a/deco/baghiraclient.cc +++ b/deco/baghiraclient.cc @@ -3,7 +3,7 @@ // ------------------- // Baghira window decoration for KDE // ------------------- -// Copyright (c) 2004, 2005 Thomas L�bking +// Copyright (c) 2004, 2005 Thomas Lübking // Please see the header file for copyright and license information. ////////////////////////////////////////////////////////////////////////////// diff --git a/deco/baghiraclient.h b/deco/baghiraclient.h index 1105e09..ddd3aa7 100644 --- a/deco/baghiraclient.h +++ b/deco/baghiraclient.h @@ -3,7 +3,7 @@ // ------------------- // Baghira window decoration for KDE // ------------------- -// Copyright (c) 2004, 2005 Thomas Lübking +// Copyright (c) 2004, 2005 Thomas Lübking // // Permission is hereby granted, free of charge, to any person obtaining a copy // of this software and associated documentation files (the "Software"), to diff --git a/deco/config/CMakeL10n.txt b/deco/config/CMakeL10n.txt index 01059c5..e0bfdcd 100644 --- a/deco/config/CMakeL10n.txt +++ b/deco/config/CMakeL10n.txt @@ -1,3 +1,3 @@ ##### create translation templates ############## -tde_l10n_create_template( "twin_baghira_config" ) +tde_l10n_create_template( "messages/twin_baghira_config/" ) diff --git a/deco/config/baghiraconfig.cc b/deco/config/baghiraconfig.cc index 714eabb..7c5996c 100644 --- a/deco/config/baghiraconfig.cc +++ b/deco/config/baghiraconfig.cc @@ -3,7 +3,7 @@ // ------------------- // Config module for Baghira window decoration // ------------------- -// Copyright (c) 2004 Thomas Lübking +// Copyright (c) 2004 Thomas Lübking // Please see the header file for copyright and license information. ////////////////////////////////////////////////////////////////////////////// diff --git a/deco/config/baghiraconfig.cc.new b/deco/config/baghiraconfig.cc.new index 1a93ca3..b0f507b 100644 --- a/deco/config/baghiraconfig.cc.new +++ b/deco/config/baghiraconfig.cc.new @@ -3,7 +3,7 @@ // ------------------- // Config module for Baghira window decoration // ------------------- -// Copyright (c) 2004 Thomas Lübking +// Copyright (c) 2004 Thomas Lübking // Please see the header file for copyright and license information. ////////////////////////////////////////////////////////////////////////////// diff --git a/deco/config/baghiraconfig.h b/deco/config/baghiraconfig.h index 649c086..1a31269 100644 --- a/deco/config/baghiraconfig.h +++ b/deco/config/baghiraconfig.h @@ -3,7 +3,7 @@ // ------------------- // Config module for Baghira window decoration // ------------------- -// Copyright (c) 2004 Thomas Lübking +// Copyright (c) 2004 Thomas Lübking // // Permission is hereby granted, free of charge, to any person obtaining a copy // of this software and associated documentation files (the "Software"), to diff --git a/deco/config/baghiraconfig.h.new b/deco/config/baghiraconfig.h.new index 6bab1a8..9d244bb 100644 --- a/deco/config/baghiraconfig.h.new +++ b/deco/config/baghiraconfig.h.new @@ -3,7 +3,7 @@ // ------------------- // Config module for Baghira window decoration // ------------------- -// Copyright (c) 2004 Thomas Lübking +// Copyright (c) 2004 Thomas Lübking // // Permission is hereby granted, free of charge, to any person obtaining a copy // of this software and associated documentation files (the "Software"), to diff --git a/kickermenu-3.3/menuapplet.cpp b/kickermenu-3.3/menuapplet.cpp index f05e011..75e9d30 100644 --- a/kickermenu-3.3/menuapplet.cpp +++ b/kickermenu-3.3/menuapplet.cpp @@ -63,7 +63,7 @@ extern "C" { KDE_EXPORT KPanelApplet* init( TQWidget* parent_P, const TQString& configFile_P ) { - TDEGlobal::locale()->insertCatalogue("kmenuapplet"); + TDEGlobal::locale()->insertCatalogue("baghira-kmenuapplet"); return new KickerMenuApplet::Applet( configFile_P, parent_P ); } } diff --git a/kickermenu/CMakeL10n.txt b/kickermenu/CMakeL10n.txt index 11a6064..b3a6d14 100644 --- a/kickermenu/CMakeL10n.txt +++ b/kickermenu/CMakeL10n.txt @@ -1,3 +1,3 @@ ##### create translation templates ############## -tde_l10n_create_template( "kmenuapplet" ) +tde_l10n_create_template( "messages/baghira-kmenuapplet/" ) diff --git a/kickermenu/menuapplet.cpp b/kickermenu/menuapplet.cpp index f82e2c3..9ec8ec2 100644 --- a/kickermenu/menuapplet.cpp +++ b/kickermenu/menuapplet.cpp @@ -67,7 +67,7 @@ extern "C" { KDE_EXPORT KPanelApplet* init( TQWidget* parent_P, const TQString& configFile_P ) { - TDEGlobal::locale()->insertCatalogue("kmenuapplet"); + TDEGlobal::locale()->insertCatalogue("baghira-kmenuapplet"); return new KickerMenuApplet::Applet( configFile_P, parent_P ); } } diff --git a/sessionapplet/CMakeL10n.txt b/sessionapplet/CMakeL10n.txt index 7fe8a81..bd9e92c 100644 --- a/sessionapplet/CMakeL10n.txt +++ b/sessionapplet/CMakeL10n.txt @@ -1,3 +1,3 @@ ##### create translation templates ############## -tde_l10n_create_template( "usermanager" ) +tde_l10n_create_template( "messages/baghira-usermanager/" ) diff --git a/sessionapplet/usermanager.cpp b/sessionapplet/usermanager.cpp index 6ccd1f4..6d712e7 100644 --- a/sessionapplet/usermanager.cpp +++ b/sessionapplet/usermanager.cpp @@ -1,5 +1,5 @@ /*************************************************************************** - * Copyright (C) 2005 by Thomas Lübking * + * Copyright (C) 2005 by Thomas Lübking * * thomas.luebking@web.de * * * * This program is free software; you can redistribute it and/or modify * @@ -275,7 +275,7 @@ extern "C" { KDE_EXPORT KPanelApplet* init( TQWidget *parent, const TQString& configFile) { - TDEGlobal::locale()->insertCatalogue("usermanager"); + TDEGlobal::locale()->insertCatalogue("baghira-usermanager"); return new UserManager(configFile, KPanelApplet::Normal, KPanelApplet::About, parent, "usermanager"); } } diff --git a/sessionapplet/usermanager.h b/sessionapplet/usermanager.h index 65fe350..9fcb142 100644 --- a/sessionapplet/usermanager.h +++ b/sessionapplet/usermanager.h @@ -1,5 +1,5 @@ /*************************************************************************** - * Copyright (C) 2005 by Thomas Lübking * + * Copyright (C) 2005 by Thomas Lübking * * thomas.luebking@web.de * * * * This program is free software; you can redistribute it and/or modify * diff --git a/sidebar/baghirasidebariface.h b/sidebar/baghirasidebariface.h index 9be73ad..522887f 100644 --- a/sidebar/baghirasidebariface.h +++ b/sidebar/baghirasidebariface.h @@ -1,5 +1,5 @@ /*************************************************************************** - * Copyright (C) 2005 by Thomas Lübking * + * Copyright (C) 2005 by Thomas Lübking * * thomas.luebking@web.de * * * * This program is free software; you can redistribute it and/or modify * diff --git a/starter/CMakeL10n.txt b/starter/CMakeL10n.txt index 64f8349..c90b131 100644 --- a/starter/CMakeL10n.txt +++ b/starter/CMakeL10n.txt @@ -1,3 +1,3 @@ ##### create translation templates ############## -tde_l10n_create_template( "starter" ) +tde_l10n_create_template( "messages/baghira-starter/" ) diff --git a/starter/starter.cpp b/starter/starter.cpp index 6069045..93a37a2 100644 --- a/starter/starter.cpp +++ b/starter/starter.cpp @@ -475,7 +475,7 @@ extern "C" { KDE_EXPORT KPanelApplet* init( TQWidget *parent, const TQString& configFile) { - TDEGlobal::locale()->insertCatalogue("starter"); + TDEGlobal::locale()->insertCatalogue("baghira-starter"); return new starter(configFile, KPanelApplet::Normal, KPanelApplet::Preferences, parent, "baghirastarter"); diff --git a/starter/starteriface.h b/starter/starteriface.h index be1469f..4a8e41d 100644 --- a/starter/starteriface.h +++ b/starter/starteriface.h @@ -1,5 +1,5 @@ /*************************************************************************** - * Copyright (C) 2005 by Thomas Lübking * + * Copyright (C) 2005 by Thomas Lübking * * thomas.luebking@web.de * * * * This program is free software; you can redistribute it and/or modify * diff --git a/translations/CMakeLists.txt b/translations/CMakeLists.txt new file mode 100644 index 0000000..42b186a --- /dev/null +++ b/translations/CMakeLists.txt @@ -0,0 +1 @@ +tde_auto_add_subdirectories() diff --git a/translations/messages/CMakeLists.txt b/translations/messages/CMakeLists.txt new file mode 100644 index 0000000..75c89f8 --- /dev/null +++ b/translations/messages/CMakeLists.txt @@ -0,0 +1,14 @@ +file( GLOB_RECURSE po_files RELATIVE ${CMAKE_CURRENT_SOURCE_DIR} *.po ) +string( REGEX REPLACE "[ \r\n\t]+" ";" _linguas "$ENV{LINGUAS}" ) + +foreach( _po ${po_files} ) + get_filename_component( _lang ${_po} NAME_WE ) + if( "${_linguas}" MATCHES "^;*$" OR ";${_linguas};" MATCHES ";${_lang};" ) + if( "${_po}" MATCHES "^([^/]*)/.*" ) + string( REGEX REPLACE "^([^/]*)/.*" "\\1" _component "${_po}" ) + else( ) + set( _component "${PROJECT_NAME}" ) + endif( ) + tde_create_translation( FILES ${_po} LANG ${_lang} OUTPUT_NAME ${_component} ) + endif( ) +endforeach( ) diff --git a/translations/messages/baghira-kmenuapplet/baghira-kmenuapplet.pot b/translations/messages/baghira-kmenuapplet/baghira-kmenuapplet.pot new file mode 100644 index 0000000..743f2cf --- /dev/null +++ b/translations/messages/baghira-kmenuapplet/baghira-kmenuapplet.pot @@ -0,0 +1,34 @@ +# SOME DESCRIPTIVE TITLE. +# FIRST AUTHOR , YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: PACKAGE VERSION\n" +"POT-Creation-Date: 2020-05-11 04:29+0200\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language-Team: LANGUAGE \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#. Instead of a literal translation, add your name to the end of the list (separated by a comma). +#, ignore-inconsistent +msgid "" +"_: NAME OF TRANSLATORS\n" +"Your names" +msgstr "" + +#. Instead of a literal translation, add your email to the end of the list (separated by a comma). +#, ignore-inconsistent +msgid "" +"_: EMAIL OF TRANSLATORS\n" +"Your emails" +msgstr "" + +#: menuapplet.cpp:559 +msgid "" +"You do not appear to have enabled the standalone menubar; enable it in the " +"Behavior control module for desktop." +msgstr "" diff --git a/translations/messages/baghira-starter/baghira-starter.pot b/translations/messages/baghira-starter/baghira-starter.pot new file mode 100644 index 0000000..8f672bf --- /dev/null +++ b/translations/messages/baghira-starter/baghira-starter.pot @@ -0,0 +1,530 @@ +# SOME DESCRIPTIVE TITLE. +# FIRST AUTHOR , YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: PACKAGE VERSION\n" +"POT-Creation-Date: 2020-07-24 01:42+0200\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language-Team: LANGUAGE \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#. Instead of a literal translation, add your name to the end of the list (separated by a comma). +#, ignore-inconsistent +msgid "" +"_: NAME OF TRANSLATORS\n" +"Your names" +msgstr "" + +#. Instead of a literal translation, add your email to the end of the list (separated by a comma). +#, ignore-inconsistent +msgid "" +"_: EMAIL OF TRANSLATORS\n" +"Your emails" +msgstr "" + +#: linkconfig.ui:16 menu.cpp:226 +#, no-c-format +msgid "Configure Link" +msgstr "" + +#: menu.cpp:494 +msgid "" +"_: for TTS output, telling which item is focussed (keyboard) and than reads " +"the comment\n" +"%1 focussed. %2" +msgstr "" + +#: menu.cpp:526 +msgid "" +"_: for TTS output, telling which item is hovered (mouse) and than reads the " +"comment\n" +"%1 hovered. %2" +msgstr "" + +#: menu.cpp:855 +msgid "New Link" +msgstr "" + +#: menu.cpp:1102 menu.cpp:1220 +msgid "Edit Entry" +msgstr "" + +#: menu.cpp:1103 +msgid "Remove Entry" +msgstr "" + +#: menu.cpp:1105 +msgid "Add Entry" +msgstr "" + +#: configdialog.ui:16 menu.cpp:1154 +#, no-c-format +msgid "New Entry" +msgstr "" + +#: menu.cpp:1182 +msgid "Are you sure you want to remove
%1
" +msgstr "" + +#: menu.cpp:1182 +msgid "Remove ALI entry" +msgstr "" + +#: menu.cpp:1354 menu.cpp:1691 +msgid "First Session Applications" +msgstr "" + +#: menu.cpp:1360 menu.cpp:1620 menu.cpp:1692 +msgid "Favorite Applications
" +msgstr "" + +#: menu.cpp:1610 +#, c-format +msgid "" +"_: for TTS output, informs the user that no entries are in the currently " +"selected group\n" +"Warning! No Applications in group %1" +msgstr "" + +#: menu.cpp:1677 +#, c-format +msgid "" +"_: for TTS output, no entries match the current search text\n" +"Warning! No more Applications left. The entered Text is %1" +msgstr "" + +#: menu.cpp:1948 +msgid "Type to search or enter a command" +msgstr "" + +#: menu.cpp:2245 +msgid "" +"_: TTS output\n" +"The searchline has now the focus." +msgstr "" + +#: starter.cpp:88 +msgid "Configure the Startmenu" +msgstr "" + +#: starter.cpp:132 +msgid "" +"To ensure usefull behaviour of the searchline, the shortcut must " +"contain a metabutton, i.e. 'ctrl' and/or 'alt'" +msgstr "" + +#: starter.cpp:132 +msgid "Sorry, invalid Shortcut" +msgstr "" + +#: starter.cpp:137 +msgid "" +"The selected shortcut is allready bound to the category \"%1\".
Do " +"you want to rebind it?
" +msgstr "" + +#: starter.cpp:137 +msgid "Rebind Shortcut?" +msgstr "" + +#: configdialog.ui:47 starterconfig.ui:99 +#, no-c-format +msgid "F1" +msgstr "" + +#: configdialog.ui:108 +#, no-c-format +msgid "Extended Mode" +msgstr "" + +#: configdialog.ui:122 +#, no-c-format +msgid "Basic Settings" +msgstr "" + +#: configdialog.ui:153 +#, no-c-format +msgid "Is a" +msgstr "" + +#: configdialog.ui:218 linkconfig.ui:151 +#, no-c-format +msgid "Command" +msgstr "" + +#: configdialog.ui:226 +#, no-c-format +msgid "Keywords" +msgstr "" + +#: configdialog.ui:234 +#, no-c-format +msgid "Name" +msgstr "" + +#: configdialog.ui:242 +#, no-c-format +msgid "Category" +msgstr "" + +#: configdialog.ui:255 +#, no-c-format +msgid "Activate startup feedback" +msgstr "" + +#: configdialog.ui:263 +#, no-c-format +msgid "Show in system tray" +msgstr "" + +#: configdialog.ui:290 +#, no-c-format +msgid "Description" +msgstr "" + +#: configdialog.ui:314 +#, no-c-format +msgid "Extended Settings" +msgstr "" + +#: configdialog.ui:325 +#, no-c-format +msgid "Working directory" +msgstr "" + +#: configdialog.ui:347 +#, no-c-format +msgid "Start in terminal" +msgstr "" + +#: configdialog.ui:358 +#, no-c-format +msgid "Terminal settings" +msgstr "" + +#: configdialog.ui:388 +#, no-c-format +msgid "Start as different user" +msgstr "" + +#: configdialog.ui:399 +#, no-c-format +msgid "Username" +msgstr "" + +#: configdialog.ui:429 +#, no-c-format +msgid "Shortcut" +msgstr "" + +#: configdialog.ui:459 starterconfig.ui:751 +#, no-c-format +msgid "None" +msgstr "" + +#: help.ui:36 +#, no-c-format +msgid "" +"

Menu entry editor

\n" +"

------------------------------------------------------------" +"----------------------

\n" +"

Introduction

\n" +"\n" +"By default, you will only see the basic settings for the new entry. Clicking " +"\"Show More\" will give you access to some extended settings that can be " +"interesting but mostly useless for you.

\n" +"Bold options must be entered for a usefull entry, italic ones are " +"respected by the search feature.\n" +"

\n" +"

Basic settings

\n" +"\n" +"Name:
\n" +"This is the visible name of your new entry and can be any string, e.g. \"The " +"Gimp\".
\n" +"(Necessary, searchkey)\n" +"

\n" +"Is a:
\n" +"Describes the applications genre (generic name), e.g. \"Image " +"manipulation\"
\n" +"(Optional, yet not searched - maybe later)\n" +"

\n" +"Category:
\n" +"Choose an existing group or add a new one. The hierarchy is represented by " +"seperating slashes (\"/\"), if you want to enter a slash, you must escape it " +"(\"\\/\")
\n" +"(Necessary, searchkey)\n" +"

\n" +"Command:
\n" +"The command to start the application, e.g. \"gimp-remote\". On *nix systems, " +"is usually not necessary to pass the full path to the executably, but you " +"can do so, if you want to start an executable that is shadowed by the " +"executable in the path dir, e.g. \"/usr/local/gimp-1.3/gimp-remote\"
\n" +"(Necessary, not searched)\n" +"

\n" +"Keywords:
\n" +"Comma separated list of keywords that refer to this application during " +"search, e.g. \"image manipulation,pixel,photoshop\".
\n" +"Please note:
\n" +"1. search is not case sensitive
\n" +"2. search finds partial matches, so it's not necessary to add e.g. " +"\"image,image manipulation\"
\n" +"3. different from the applications name, the keyword list will be translated " +"(if) so if you think like \"'KImage' allready contains 'image', so i don't " +"need it as keyword\" you're wrong!
\n" +"4. Finding good keywords is not simple, but in general use striking ones! " +"\"editor\" is not a very good keyword, as allmost everything is an editor. " +"(Gimp is a pixel-editor, KHexedit is a hex-editor, KEdit is a text-editor, a " +"config dialog is a config-editor, ...)
\n" +"(Optional, searchkey)\n" +"

\n" +"Description:
\n" +"This is the longtext description of your application (not a helptext, though " +";), e.g. \"A powerfull image manipulator with a UI similar to photoshop. " +"Supports Layers, filters, scripting, blahblahblah...\"\n" +"You can use TQt richtext tags and there's no limit on the size, but keep it " +"usefull ;) let's say something about 200 chars at max.
\n" +"(Optional, not searched)" +msgstr "" + +#: linkconfig.ui:130 +#, no-c-format +msgid "Title" +msgstr "" + +#: starterconfig.ui:16 +#, no-c-format +msgid "Baghira Starter Config" +msgstr "" + +#: starterconfig.ui:30 +#, no-c-format +msgid "Startbutton images" +msgstr "" + +#: starterconfig.ui:46 +#, no-c-format +msgid "Hover" +msgstr "" + +#: starterconfig.ui:59 +#, no-c-format +msgid "Base" +msgstr "" + +#: starterconfig.ui:67 +#, no-c-format +msgid "Down" +msgstr "" + +#: starterconfig.ui:160 +#, no-c-format +msgid "Dialog options" +msgstr "" + +#: starterconfig.ui:182 +#, no-c-format +msgid "Custom dialog size" +msgstr "" + +#: starterconfig.ui:201 starterconfig.ui:470 +#, no-c-format +msgid "x" +msgstr "" + +#: starterconfig.ui:242 +#, no-c-format +msgid "Show dialog under mouse" +msgstr "" + +#: starterconfig.ui:261 +#, no-c-format +msgid "Fixed" +msgstr "" + +#: starterconfig.ui:277 +#, no-c-format +msgid ":" +msgstr "" + +#: starterconfig.ui:312 +#, no-c-format +msgid "Custom dialog position" +msgstr "" + +#: starterconfig.ui:334 +#, no-c-format +msgid "Show titlebar for dialog" +msgstr "" + +#: starterconfig.ui:381 starterconfig.ui:533 +#, no-c-format +msgid "Panel Position" +msgstr "" + +#: starterconfig.ui:387 starterconfig.ui:539 +#, no-c-format +msgid "North" +msgstr "" + +#: starterconfig.ui:392 starterconfig.ui:544 +#, no-c-format +msgid "South" +msgstr "" + +#: starterconfig.ui:397 starterconfig.ui:549 +#, no-c-format +msgid "West" +msgstr "" + +#: starterconfig.ui:402 starterconfig.ui:554 +#, no-c-format +msgid "East" +msgstr "" + +#: starterconfig.ui:407 starterconfig.ui:559 +#, no-c-format +msgid "Nowhere" +msgstr "" + +#: starterconfig.ui:429 +#, no-c-format +msgid "Popup options" +msgstr "" + +#: starterconfig.ui:451 +#, no-c-format +msgid "Custom popup size" +msgstr "" + +#: starterconfig.ui:600 +#, no-c-format +msgid "Items in favorite list" +msgstr "" + +#: starterconfig.ui:649 +#, no-c-format +msgid "Talk to me (via KTTS)" +msgstr "" + +#: starterconfig.ui:665 +#, no-c-format +msgid "Icon SIze" +msgstr "" + +#: starterconfig.ui:671 +#, no-c-format +msgid "16/22" +msgstr "" + +#: starterconfig.ui:676 +#, no-c-format +msgid "22/32" +msgstr "" + +#: starterconfig.ui:681 +#, no-c-format +msgid "32/48" +msgstr "" + +#: starterconfig.ui:686 +#, no-c-format +msgid "48/64" +msgstr "" + +#: starterconfig.ui:691 +#, no-c-format +msgid "64/128" +msgstr "" + +#: starterconfig.ui:707 +#, no-c-format +msgid "Shortcuts" +msgstr "" + +#: starterhelp.ui:16 +#, no-c-format +msgid "Baghira Starter Config Help" +msgstr "" + +#: starterhelp.ui:31 +#, no-c-format +msgid "Filterline" +msgstr "" + +#: starterhelp.ui:42 +#, no-c-format +msgid "" +"The filterline provides several functions\n" +"
    \n" +"
  • It filters the below entry list
  • \n" +"
  • It autocompletes to executable entries in $PATH
  • \n" +"
  • The applied listbox lets you select the available categories
  • \n" +"
  • You can navigate through the categories either by using the mousewheel " +"or by holding ctrl+up/down
  • \n" +"
  • The category is also selected when calling the applied shortcut
  • \n" +"
  • It supports all protocols you know from Konqueror, e.g. \"gg:Baghira\" " +"will google for \"Baghira\" etc.
  • \n" +"
\n" +"Pressing Enter will execute the (autocompleted) binary in $PATH or " +"the entered kfm protocol call
\n" +"Pressing down will move the keyboard focus to the below entry list\n" +"
" +msgstr "" + +#: starterhelp.ui:63 +#, no-c-format +msgid "Entry Field" +msgstr "" + +#: starterhelp.ui:74 +#, no-c-format +msgid "" +"The entry field shows up all your menu entries (filtered)

\n" +"You can start an application by clicking the left mouse button above " +"the item (highlighted text) or by pressing Enter if the entry has the " +"keyboard focus (highlighted background).

\n" +"You may navigate by either scrolling the mousewheel or using the " +"up/down keys (this will also shift the keyboard focus)

\n" +"Pressing the left key will put focus on the filterline and select the " +"whole text (i.e. start typing will change a complete new filter " +"action)

\n" +"Pressing the up key on the topmost item will act as above.
" +msgstr "" + +#: starterhelp.ui:88 +#, no-c-format +msgid "Panel" +msgstr "" + +#: starterhelp.ui:99 +#, no-c-format +msgid "" +"The panel allow you to store often used links, independent from the " +"application links in the entry list

\n" +"To add a link, either:
\n" +"- rightclick the panel
\n" +"- drag and drop a link out of the entry list
\n" +"- drag and drop any url or text or command (uris and mails are handled, the " +"rest is interpreted as simple command, any command that works on the " +"filterline works here as well)
\n" +"
\n" +"To remove a link, simply drag it out and drop it outside. (The panel " +"interacts with the linklist from the baghira sidebar, links won't be " +"removed, but copied if dragged from one to the other)
\n" +"
\n" +"To configure a link, simply rightclick it

\n" +"To move a link, just drag it and move i around.

\n" +"\n" +"Te panel is scrollable (mousewheel) and you can configure " +"individual positions for the popup and the dialog

\n" +"More poofs can be found e.g. here: www.resexcellence.com/" +"user_poofs.shtml\n" +"
" +msgstr "" diff --git a/translations/messages/baghira-starter/de.po b/translations/messages/baghira-starter/de.po new file mode 100644 index 0000000..2e5ab9f --- /dev/null +++ b/translations/messages/baghira-starter/de.po @@ -0,0 +1,599 @@ +# translation of de.po to German +# translation of starter.po to German +# This file is put in the public domain. +# Thomas Lübking , 2005. +# +msgid "" +msgstr "" +"Project-Id-Version: de\n" +"POT-Creation-Date: 2020-05-11 04:29+0200\n" +"PO-Revision-Date: 2019-12-23 01:53+0000\n" +"Last-Translator: Chris \n" +"Language-Team: German \n" +"Language: de\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=2; plural=n != 1;\n" +"X-Generator: Weblate 3.9.1\n" + +#. Instead of a literal translation, add your name to the end of the list (separated by a comma). +msgid "" +"_: NAME OF TRANSLATORS\n" +"Your names" +msgstr "" + +#. Instead of a literal translation, add your email to the end of the list (separated by a comma). +msgid "" +"_: EMAIL OF TRANSLATORS\n" +"Your emails" +msgstr "" + +#: linkconfig.ui:16 menu.cpp:226 +#, no-c-format +msgid "Configure Link" +msgstr "" + +#: menu.cpp:494 +msgid "" +"_: for TTS output, telling which item is focussed (keyboard) and than reads " +"the comment\n" +"%1 focussed. %2" +msgstr "" + +#: menu.cpp:526 +msgid "" +"_: for TTS output, telling which item is hovered (mouse) and than reads the " +"comment\n" +"%1 hovered. %2" +msgstr "" + +#: menu.cpp:855 +msgid "New Link" +msgstr "" + +#: menu.cpp:1102 menu.cpp:1220 +msgid "Edit Entry" +msgstr "Verknüpfung modifizieren..." + +#: menu.cpp:1103 +msgid "Remove Entry" +msgstr "Verknüpfung entfernen..." + +#: menu.cpp:1105 +msgid "Add Entry" +msgstr "Eintrag hinzufügen" + +#: config.ui:16 menu.cpp:1154 +#, no-c-format +msgid "New Entry" +msgstr "Neue Verknüpfung" + +#: menu.cpp:1182 +msgid "Are you sure you want to remove
%1
" +msgstr "Sind Sie sicher, daß sie
%1
eintfernen möchten?
" + +#: menu.cpp:1182 +msgid "Remove ALI entry" +msgstr "ALI Verknüpung entfernen" + +#: menu.cpp:1354 menu.cpp:1691 +msgid "First Session Applications" +msgstr "Erstbenutzer Programme" + +#: menu.cpp:1360 menu.cpp:1620 menu.cpp:1692 +msgid "Favorite Applications
" +msgstr "Beliebte Programme
" + +#: menu.cpp:1610 +#, c-format +msgid "" +"_: for TTS output, informs the user that no entries are in the currently " +"selected group\n" +"Warning! No Applications in group %1" +msgstr "" + +#: menu.cpp:1677 +#, c-format +msgid "" +"_: for TTS output, no entries match the current search text\n" +"Warning! No more Applications left. The entered Text is %1" +msgstr "" + +#: menu.cpp:1948 +msgid "Type to search or enter a command" +msgstr "Tippen sie, um zu suchen oder ein Kommando direkt einzugeben" + +#: menu.cpp:2245 +msgid "" +"_: TTS output\n" +"The searchline has now the focus." +msgstr "" + +#: starter.cpp:88 +msgid "Configure the Startmenu" +msgstr "" + +#: starter.cpp:132 +msgid "" +"To ensure usefull behaviour of the searchline, the shortcut must " +"contain a metabutton, i.e. 'ctrl' and/or 'alt'" +msgstr "" + +#: starter.cpp:132 +msgid "Sorry, invalid Shortcut" +msgstr "" + +#: starter.cpp:137 +msgid "" +"The selected shortcut is allready bound to the category \"%1\".
Do " +"you want to rebind it?
" +msgstr "" + +#: starter.cpp:137 +#, fuzzy +msgid "Rebind Shortcut?" +msgstr "Tastenkürzel" + +#: config.ui:47 starterconfig.ui:99 +#, no-c-format +msgid "F1" +msgstr "" + +#: config.ui:108 +#, no-c-format +msgid "Extended Mode" +msgstr "Erweiterte Einstellungen" + +#: config.ui:122 +#, no-c-format +msgid "Basic Settings" +msgstr "Basiseinstellungen" + +#: config.ui:153 +#, no-c-format +msgid "Is a" +msgstr "Ist ein" + +#: config.ui:218 linkconfig.ui:151 +#, no-c-format +msgid "Command" +msgstr "Kommando" + +#: config.ui:226 +#, no-c-format +msgid "Keywords" +msgstr "Schlüsselworte" + +#: config.ui:234 +#, no-c-format +msgid "Name" +msgstr "Name" + +#: config.ui:242 +#, no-c-format +msgid "Category" +msgstr "Kategorie" + +#: config.ui:255 +#, no-c-format +msgid "Activate startup feedback" +msgstr "Startrückmeldung aktivieren" + +#: config.ui:263 +#, no-c-format +msgid "Show in system tray" +msgstr "Im Systembereich der Kontrollleiste anzeigen" + +#: config.ui:290 +#, no-c-format +msgid "Description" +msgstr "Beschreibung" + +#: config.ui:314 +#, no-c-format +msgid "Extended Settings" +msgstr "Erweiterte Einstellungen" + +#: config.ui:325 +#, no-c-format +msgid "Working directory" +msgstr "Arbeitsverzeichnis" + +#: config.ui:347 +#, no-c-format +msgid "Start in terminal" +msgstr "Im Terminal ausführen" + +#: config.ui:358 +#, no-c-format +msgid "Terminal settings" +msgstr "Terminal Einstellungen" + +#: config.ui:388 +#, no-c-format +msgid "Start as different user" +msgstr "Als anderer Benutzer starten" + +#: config.ui:399 +#, no-c-format +msgid "Username" +msgstr "Benutzername" + +#: config.ui:429 +#, no-c-format +msgid "Shortcut" +msgstr "Tastenkürzel" + +#: config.ui:459 starterconfig.ui:751 +#, no-c-format +msgid "None" +msgstr "" + +#: help.ui:36 +#, no-c-format +msgid "" +"

Menu entry editor

\n" +"

----------------------------------------------------------------------------------" +"

\n" +"

Introduction

\n" +"\n" +"By default, you will only see the basic settings for the new entry. Clicking " +"\"Show More\" will give you access to some extended settings that can be " +"interesting but mostly useless for you.

\n" +"Bold options must be entered for a usefull entry, italic ones are " +"respected by the search feature.\n" +"

\n" +"

Basic settings

\n" +"\n" +"Name:
\n" +"This is the visible name of your new entry and can be any string, e.g. \"The " +"Gimp\".
\n" +"(Necessary, searchkey)\n" +"

\n" +"Is a:
\n" +"Describes the applications genre (generic name), e.g. \"Image manipulation" +"\"
\n" +"(Optional, yet not searched - maybe later)\n" +"

\n" +"Category:
\n" +"Choose an existing group or add a new one. The hierarchy is represented by " +"seperating slashes (\"/\"), if you want to enter a slash, you must escape it " +"(\"\\/\")
\n" +"(Necessary, searchkey)\n" +"

\n" +"Command:
\n" +"The command to start the application, e.g. \"gimp-remote\". On *nix systems, " +"is usually not necessary to pass the full path to the executably, but you " +"can do so, if you want to start an executable that is shadowed by the " +"executable in the path dir, e.g. \"/usr/local/gimp-1.3/gimp-remote\"
\n" +"(Necessary, not searched)\n" +"

\n" +"Keywords:
\n" +"Comma separated list of keywords that refer to this application during " +"search, e.g. \"image manipulation,pixel,photoshop\".
\n" +"Please note:
\n" +"1. search is not case sensitive
\n" +"2. search finds partial matches, so it's not necessary to add e.g. " +"\"image,image manipulation\"
\n" +"3. different from the applications name, the keyword list will be translated " +"(if) so if you think like \"'KImage' allready contains 'image', so i don't " +"need it as keyword\" you're wrong!
\n" +"4. Finding good keywords is not simple, but in general use striking ones! " +"\"editor\" is not a very good keyword, as allmost everything is an editor. " +"(Gimp is a pixel-editor, KHexedit is a hex-editor, KEdit is a text-editor, a " +"config dialog is a config-editor, ...)
\n" +"(Optional, searchkey)\n" +"

\n" +"Description:
\n" +"This is the longtext description of your application (not a helptext, " +"though ;), e.g. \"A powerfull image manipulator with a UI similar to " +"photoshop. Supports Layers, filters, scripting, blahblahblah...\"\n" +"You can use TQt richtext tags and there's no limit on the size, but keep it " +"usefull ;) let's say something about 200 chars at max.
\n" +"(Optional, not searched)" +msgstr "" +"

Verknüpfungseditor

\n" +"

----------------------------------------------------------------------------------" +"

\n" +"

Einführung

\n" +"\n" +"Standardmäßig werden nur die Basiseinstellungen für die neue Verknüpfung " +"angezeigt. Indem man auf \"Erweiterte Einstellungen\" clickt, erhält man " +"Zugriff auf einige weniger gebräuchliche Optionen.

\n" +"Fettgedruckte Felder müssen für eine brauchbare Verknüpfung " +"ausgefüllt werden, kursive werden von der Suchfunktion berücksichtigt.\n" +"

\n" +"

Basiseinstellungen

\n" +"\n" +"Name:
\n" +"Der sichtbare Name der Verknüpfung. Jede Zeichenkette ist erlaubt, z.B.\"The " +"Gimp\".
\n" +"(Notwendig, Suchschlüssel)\n" +"

\n" +"Ist ein:
\n" +"Das Genre des Programms (genericName), z.B. \"Bildbearbeitung\"
\n" +"(Optional, derzeit nicht bei der Suche berücksichtigt)\n" +"

\n" +"Kategorie:
\n" +"Wählen Sie eine existierende Gruppe oder fügen sie eine neue hinzu. Die " +"Hierarchie wird durch den \"/\" als Trennzeichen gekennzeichnet,wenn \"/\" " +"Teil des Namens sein soll, muß ein \"\\\" vorangestellt werden (\"\\/" +"\")
\n" +"(Notwendig, Suchschlüssel (Der übersetzte Begriff))\n" +"

\n" +"Kommando:
\n" +"Das Kommando zum starten des Programms, z.B. \"gimp-remote\". Auf *nix " +"Systemen ist es normalerweise nicht notwendig den vollen Pfad anzugeben, " +"aber Sie können das tun, um ein Programm zu starten die durch eine andere " +"überlagert wird, z.B. \"/usr/local/gimp-1.3/gimp-remote\"
\n" +"(Notewndig, nicht durchsucht)\n" +"

\n" +"Schlüsselworte:
\n" +"Kommagetrennte Liste von Schlüsselworten für dieses Programm, z.B. " +"\"bildbearbeitung,pixel,photoshop\".
\n" +"Anmerkungen:
\n" +"1. Die Suche unterscheidet nicht zwischen GROSS und kleinschreibung
\n" +"2. Die Suche findet auch Teilbegriffe, es ist also nicht notwendig z." +"B.\"Bild,Bildbearbeitung\" einzutragen
\n" +"3. Anders als der Name des Programms, werden die Schlüssel übersetzt " +"(wenn).- KImage hätte zwar \"image\" als schlüsselwort, aber nicht \"bild" +"\"
\n" +"4. Die Suche nach guten Schlüsselworten ist nicht immer leicht, aber sie " +"sollten vor allem aussagekräftig sein!\"editor\" ist kein besonders gutes " +"Schlüsselwort, denn fast alles ist irgendwie ein Editor.(Gimp ist ein Pixel-" +"Editor, KHexedit ist ein Hex-Editor, KEdit ist ein Text-Editor, ein " +"Einrichtungsdialog ist ein Config-Editor, ...)
\n" +"(Optional, Suchschlüssel)\n" +"

\n" +"Beschreibung:
\n" +"Die (längere) Beschreibung des Programms (aber kein Hilfetext ;), z.B. " +"\"Eine mächtige Bildbearbeitung mit einer Photoshop ähnlichen Oberfläche. " +"Unterstützt Ebenen, Filter, Scripte, blahblahblah...\"\n" +"Sie können Qt RichText tags verwenden und die Zeichenlänge ist nicht " +"limitiert, sollte aber im vernünftigen Rahmen gehelten werden - maximal 200 " +"Zeichen.
\n" +"(Optional, nicht durchsucht)" + +#: linkconfig.ui:130 +#, fuzzy, no-c-format +msgid "Title" +msgstr "Normal" + +#: starterconfig.ui:16 +#, no-c-format +msgid "Baghira Starter Config" +msgstr "" + +#: starterconfig.ui:30 +#, fuzzy, no-c-format +msgid "Startbutton images" +msgstr "Skins auswählen" + +#: starterconfig.ui:46 +#, no-c-format +msgid "Hover" +msgstr "Unter Maus" + +#: starterconfig.ui:59 +#, no-c-format +msgid "Base" +msgstr "Normal" + +#: starterconfig.ui:67 +#, no-c-format +msgid "Down" +msgstr "Gedrückt" + +#: starterconfig.ui:160 +#, no-c-format +msgid "Dialog options" +msgstr "" + +#: starterconfig.ui:182 +#, no-c-format +msgid "Custom dialog size" +msgstr "" + +#: starterconfig.ui:201 starterconfig.ui:470 +#, no-c-format +msgid "x" +msgstr "" + +#: starterconfig.ui:242 +#, no-c-format +msgid "Show dialog under mouse" +msgstr "" + +#: starterconfig.ui:261 +#, no-c-format +msgid "Fixed" +msgstr "" + +#: starterconfig.ui:277 +#, no-c-format +msgid ":" +msgstr "" + +#: starterconfig.ui:312 +#, no-c-format +msgid "Custom dialog position" +msgstr "" + +#: starterconfig.ui:334 +#, no-c-format +msgid "Show titlebar for dialog" +msgstr "" + +#: starterconfig.ui:381 starterconfig.ui:533 +#, no-c-format +msgid "Panel Position" +msgstr "" + +#: starterconfig.ui:387 starterconfig.ui:539 +#, no-c-format +msgid "North" +msgstr "" + +#: starterconfig.ui:392 starterconfig.ui:544 +#, no-c-format +msgid "South" +msgstr "" + +#: starterconfig.ui:397 starterconfig.ui:549 +#, no-c-format +msgid "West" +msgstr "" + +#: starterconfig.ui:402 starterconfig.ui:554 +#, no-c-format +msgid "East" +msgstr "" + +#: starterconfig.ui:407 starterconfig.ui:559 +#, no-c-format +msgid "Nowhere" +msgstr "" + +#: starterconfig.ui:429 +#, no-c-format +msgid "Popup options" +msgstr "" + +#: starterconfig.ui:451 +#, no-c-format +msgid "Custom popup size" +msgstr "" + +#: starterconfig.ui:600 +#, no-c-format +msgid "Items in favorite list" +msgstr "" + +#: starterconfig.ui:649 +#, no-c-format +msgid "Talk to me (via KTTS)" +msgstr "" + +#: starterconfig.ui:665 +#, no-c-format +msgid "Icon SIze" +msgstr "" + +#: starterconfig.ui:671 +#, no-c-format +msgid "16/22" +msgstr "" + +#: starterconfig.ui:676 +#, no-c-format +msgid "22/32" +msgstr "" + +#: starterconfig.ui:681 +#, no-c-format +msgid "32/48" +msgstr "" + +#: starterconfig.ui:686 +#, no-c-format +msgid "48/64" +msgstr "" + +#: starterconfig.ui:691 +#, no-c-format +msgid "64/128" +msgstr "" + +#: starterconfig.ui:707 +#, fuzzy, no-c-format +msgid "Shortcuts" +msgstr "Tastenkürzel" + +#: starterhelp.ui:16 +#, no-c-format +msgid "Baghira Starter Config Help" +msgstr "" + +#: starterhelp.ui:31 +#, no-c-format +msgid "Filterline" +msgstr "" + +#: starterhelp.ui:42 +#, no-c-format +msgid "" +"The filterline provides several functions\n" +"
    \n" +"
  • It filters the below entry list
  • \n" +"
  • It autocompletes to executable entries in $PATH
  • \n" +"
  • The applied listbox lets you select the available categories
  • \n" +"
  • You can navigate through the categories either by using the mousewheel " +"or by holding ctrl+up/down
  • \n" +"
  • The category is also selected when calling the applied shortcut
  • \n" +"
  • It supports all protocols you know from Konqueror, e.g. \"gg:Baghira\" " +"will google for \"Baghira\" etc.
  • \n" +"
\n" +"Pressing Enter will execute the (autocompleted) binary in $PATH or " +"the entered kfm protocol call
\n" +"Pressing down will move the keyboard focus to the below entry list\n" +"
" +msgstr "" + +#: starterhelp.ui:63 +#, no-c-format +msgid "Entry Field" +msgstr "" + +#: starterhelp.ui:74 +#, no-c-format +msgid "" +"The entry field shows up all your menu entries (filtered)

\n" +"You can start an application by clicking the left mouse button above " +"the item (highlighted text) or by pressing Enter if the entry has the " +"keyboard focus (highlighted background).

\n" +"You may navigate by either scrolling the mousewheel or using the " +"up/down keys (this will also shift the keyboard focus)

\n" +"Pressing the left key will put focus on the filterline and select the " +"whole text (i.e. start typing will change a complete new filter " +"action)

\n" +"Pressing the up key on the topmost item will act as above.
" +msgstr "" + +#: starterhelp.ui:88 +#, no-c-format +msgid "Panel" +msgstr "" + +#: starterhelp.ui:99 +#, no-c-format +msgid "" +"The panel allow you to store often used links, independent from the " +"application links in the entry list

\n" +"To add a link, either:
\n" +"- rightclick the panel
\n" +"- drag and drop a link out of the entry list
\n" +"- drag and drop any url or text or command (uris and mails are handled, the " +"rest is interpreted as simple command, any command that works on the " +"filterline works here as well)
\n" +"
\n" +"To remove a link, simply drag it out and drop it outside. (The panel " +"interacts with the linklist from the baghira sidebar, links won't be " +"removed, but copied if dragged from one to the other)
\n" +"
\n" +"To configure a link, simply rightclick it

\n" +"To move a link, just drag it and move i around.

\n" +"\n" +"Te panel is scrollable (mousewheel) and you can configure " +"individual positions for the popup and the dialog

\n" +"More poofs can be found e.g. here: www.resexcellence.com/user_poofs.shtml\n" +"
" +msgstr "" + +#~ msgid "Select Button Images ..." +#~ msgstr "Skins auswählen..." diff --git a/translations/messages/baghira-switcher/baghira-switcher.pot b/translations/messages/baghira-switcher/baghira-switcher.pot new file mode 100644 index 0000000..928ecdc --- /dev/null +++ b/translations/messages/baghira-switcher/baghira-switcher.pot @@ -0,0 +1,40 @@ +# SOME DESCRIPTIVE TITLE. +# FIRST AUTHOR , YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: PACKAGE VERSION\n" +"POT-Creation-Date: 2020-05-11 04:29+0200\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language-Team: LANGUAGE \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#. Instead of a literal translation, add your name to the end of the list (separated by a comma). +#, ignore-inconsistent +msgid "" +"_: NAME OF TRANSLATORS\n" +"Your names" +msgstr "" + +#. Instead of a literal translation, add your email to the end of the list (separated by a comma). +#, ignore-inconsistent +msgid "" +"_: EMAIL OF TRANSLATORS\n" +"Your emails" +msgstr "" + +#: main.cpp:53 +msgid "Baghira Aqua/Brushed" +msgstr "" + +#: main.cpp:65 +msgid "BAB - Baghira Aqua/Brushed Switcher" +msgstr "" + +#: main.cpp:99 +msgid "leftclick toggles state
rightclick toggles setupmenu" +msgstr "" diff --git a/translations/messages/baghira-usermanager/baghira-usermanager.pot b/translations/messages/baghira-usermanager/baghira-usermanager.pot new file mode 100644 index 0000000..c8da581 --- /dev/null +++ b/translations/messages/baghira-usermanager/baghira-usermanager.pot @@ -0,0 +1,107 @@ +# SOME DESCRIPTIVE TITLE. +# FIRST AUTHOR , YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: PACKAGE VERSION\n" +"POT-Creation-Date: 2020-05-11 04:29+0200\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language-Team: LANGUAGE \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#. Instead of a literal translation, add your name to the end of the list (separated by a comma). +#, ignore-inconsistent +msgid "" +"_: NAME OF TRANSLATORS\n" +"Your names" +msgstr "" + +#. Instead of a literal translation, add your email to the end of the list (separated by a comma). +#, ignore-inconsistent +msgid "" +"_: EMAIL OF TRANSLATORS\n" +"Your emails" +msgstr "" + +#: dmctl.cpp:282 +msgid "" +"_: user: ...\n" +"%1: TTY login" +msgstr "" + +#: dmctl.cpp:288 +msgid "Unused" +msgstr "" + +#: dmctl.cpp:290 +msgid "X login on remote host" +msgstr "" + +#: dmctl.cpp:291 +#, c-format +msgid "" +"_: ... host\n" +"X login on %1" +msgstr "" + +#: dmctl.cpp:292 +msgid "" +"_: user: session type\n" +"%1: %2" +msgstr "" + +#: dmctl.cpp:307 +msgid "" +"_: session (location)\n" +"%1 (%2)" +msgstr "" + +#: usermanager.cpp:106 +msgid "This is an about box" +msgstr "" + +#: usermanager.cpp:135 +msgid "without name" +msgstr "" + +#: usermanager.cpp:170 +msgid "Lock Session" +msgstr "" + +#: usermanager.cpp:177 +msgid "Lock&&Load Session..." +msgstr "" + +#: usermanager.cpp:178 +msgid "New Session..." +msgstr "" + +#: usermanager.cpp:200 +msgid "Save Session" +msgstr "" + +#: usermanager.cpp:205 +msgid "Log Out..." +msgstr "" + +#: usermanager.cpp:238 +msgid "" +"

You have chosen to open another desktop session.
The current session " +"will be hidden and a new login screen will be displayed.
An F-key is " +"assigned to each session; F%1 is usually assigned to the first session, F%2 " +"to the second session and so on. You can switch between sessions by pressing " +"Ctrl, Alt and the appropriate F-key at the same time. Additionally, the KDE " +"Panel and Desktop menus have actions for switching between sessions.

" +msgstr "" + +#: usermanager.cpp:249 +msgid "Warning - New Session" +msgstr "" + +#: usermanager.cpp:250 +msgid "&Start New Session" +msgstr "" diff --git a/translations/messages/tdestyle_baghira_config/tdestyle_baghira_config.pot b/translations/messages/tdestyle_baghira_config/tdestyle_baghira_config.pot new file mode 100644 index 0000000..ea85511 --- /dev/null +++ b/translations/messages/tdestyle_baghira_config/tdestyle_baghira_config.pot @@ -0,0 +1,895 @@ +# SOME DESCRIPTIVE TITLE. +# FIRST AUTHOR , YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: PACKAGE VERSION\n" +"POT-Creation-Date: 2020-07-24 01:42+0200\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language-Team: LANGUAGE \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#. Instead of a literal translation, add your name to the end of the list (separated by a comma). +#, ignore-inconsistent +msgid "" +"_: NAME OF TRANSLATORS\n" +"Your names" +msgstr "" + +#. Instead of a literal translation, add your email to the end of the list (separated by a comma). +#, ignore-inconsistent +msgid "" +"_: EMAIL OF TRANSLATORS\n" +"Your emails" +msgstr "" + +#: tdestyle_baghira_config.cpp:309 +msgid "Name" +msgstr "" + +#: tdestyle_baghira_config.cpp:310 +msgid "Links to" +msgstr "" + +#: configdialog.ui:24 tdestyle_baghira_config.cpp:815 +#, no-c-format +msgid "Configure Your Cat" +msgstr "" + +#: tdestyle_baghira_config.cpp:958 +msgid "" +"You just selected to replace kickers menu applet for the Mac like " +"Menubar on top of the screen, but the Mac like style isn't selected " +"anyway
Do you want to activate it now?
" +msgstr "" + +#: tdestyle_baghira_config.cpp:983 +msgid "Application Name" +msgstr "" + +#: tdestyle_baghira_config.cpp:986 +msgid "Just like" +msgstr "" + +#: tdestyle_baghira_config.cpp:989 +msgid "Custom Settings" +msgstr "" + +#: tdestyle_baghira_config.cpp:992 +msgid "Style" +msgstr "" + +#: tdestyle_baghira_config.cpp:996 tdestyle_baghira_config.cpp:1004 +#: tdestyle_baghira_config.cpp:1033 +msgid "Don't set" +msgstr "" + +#: tdestyle_baghira_config.cpp:1011 +msgid "Buttons" +msgstr "" + +#: tdestyle_baghira_config.cpp:1012 +msgid "Toolbuttons" +msgstr "" + +#: tdestyle_baghira_config.cpp:1029 +msgid "Tab vs. Chooser" +msgstr "" + +#: tdestyle_baghira_config.cpp:1030 +msgid "Inactive Button" +msgstr "" + +#: about.ui:36 +#, no-c-format +msgid "About This Cat" +msgstr "" + +#: about.ui:156 +#, no-c-format +msgid "More Info..." +msgstr "" + +#: about.ui:256 +#, no-c-format +msgid "unkonwn" +msgstr "" + +#: about.ui:267 about.ui:362 about.ui:628 +#, no-c-format +msgid "unknown" +msgstr "" + +#: about.ui:351 +#, no-c-format +msgid "System" +msgstr "" + +#: about.ui:429 +#, no-c-format +msgid "CPU" +msgstr "" + +#: about.ui:513 +#, no-c-format +msgid "KDE" +msgstr "" + +#: about.ui:579 +#, no-c-format +msgid "Download Update..." +msgstr "" + +#: about.ui:617 +#, no-c-format +msgid "Version" +msgstr "" + +#: about.ui:655 +#, no-c-format +msgid "Baghira/QT" +msgstr "" + +#: configdialog.ui:46 +#, no-c-format +msgid "F1" +msgstr "" + +#: configdialog.ui:112 +#, no-c-format +msgid "Load..." +msgstr "" + +#: configdialog.ui:142 +#, no-c-format +msgid "General Design" +msgstr "" + +#: configdialog.ui:170 +#, no-c-format +msgid "Groupboxes" +msgstr "" + +#: configdialog.ui:189 +#, no-c-format +msgid "Sink Groupboxes" +msgstr "" + +#: configdialog.ui:205 +#, no-c-format +msgid "Depth" +msgstr "" + +#: configdialog.ui:244 +#, no-c-format +msgid "Flat" +msgstr "" + +#: configdialog.ui:269 +#, no-c-format +msgid "Deep" +msgstr "" + +#: configdialog.ui:285 help.ui:211 +#, no-c-format +msgid "Coloring" +msgstr "" + +#: configdialog.ui:296 +#, no-c-format +msgid "Color function" +msgstr "" + +#: configdialog.ui:302 +#, no-c-format +msgid "Aquarius" +msgstr "" + +#: configdialog.ui:307 +#, no-c-format +msgid "Liquid (depreached)" +msgstr "" + +#: configdialog.ui:314 +#, no-c-format +msgid "" +"\"Aquarius\" is very Aqua like
\"Liquid\" bases upon mosfet's original " +"Code" +msgstr "" + +#: configdialog.ui:328 +#, no-c-format +msgid "Fixed" +msgstr "" + +#: configdialog.ui:333 configdialog.ui:1760 +#: configdialog.ui:2022 configdialog.ui:2111 +#: configdialog.ui:2167 +#, no-c-format +msgid "Background" +msgstr "" + +#: configdialog.ui:338 +#, no-c-format +msgid "Active Button" +msgstr "" + +#: configdialog.ui:343 configdialog.ui:2177 +#, no-c-format +msgid "Custom" +msgstr "" + +#: configdialog.ui:350 +#, no-c-format +msgid "" +"\"Background\" is ok, as long as you don't use a very dark color scheme. In " +"this case use \"Fixed\" or \"Custom\" to get more control over the appereance" +msgstr "" + +#: configdialog.ui:368 +#, no-c-format +msgid "Unhovered / Inactive Widget Color" +msgstr "" + +#: configdialog.ui:392 +#, no-c-format +msgid "Scanlines" +msgstr "" + +#: configdialog.ui:403 +#, no-c-format +msgid "Use Scanlines in Aqua Design" +msgstr "" + +#: configdialog.ui:419 +#, no-c-format +msgid "Scanline contrast" +msgstr "" + +#: configdialog.ui:461 +#, no-c-format +msgid "Low" +msgstr "" + +#: configdialog.ui:486 +#, no-c-format +msgid "High" +msgstr "" + +#: configdialog.ui:514 +#, no-c-format +msgid "Button Color" +msgstr "" + +#: configdialog.ui:517 +#, no-c-format +msgid "" +"This now will affect your button color, but not touch the color " +"settings" +msgstr "" + +#: configdialog.ui:596 configdialog.ui:2899 +#, no-c-format +msgid "R" +msgstr "" + +#: configdialog.ui:604 configdialog.ui:2928 +#, no-c-format +msgid "G" +msgstr "" + +#: configdialog.ui:612 configdialog.ui:2957 +#, no-c-format +msgid "B" +msgstr "" + +#: configdialog.ui:673 configdialog.ui:681 +#: configdialog.ui:689 +#, no-c-format +msgid "0" +msgstr "" + +#: configdialog.ui:703 +#, no-c-format +msgid "Color presets" +msgstr "" + +#: configdialog.ui:750 +#, no-c-format +msgid "Animate Buttons" +msgstr "" + +#: configdialog.ui:758 +#, no-c-format +msgid "Generation" +msgstr "" + +#: configdialog.ui:791 +#, no-c-format +msgid "Default Design is" +msgstr "" + +#: configdialog.ui:797 configdialog.ui:879 +#: configdialog.ui:909 +#, no-c-format +msgid "Jaguar" +msgstr "" + +#: configdialog.ui:802 configdialog.ui:884 +#: configdialog.ui:914 +#, no-c-format +msgid "Panther" +msgstr "" + +#: configdialog.ui:807 configdialog.ui:889 +#: configdialog.ui:919 +#, no-c-format +msgid "iTunes" +msgstr "" + +#: configdialog.ui:812 configdialog.ui:894 +#: configdialog.ui:924 +#, no-c-format +msgid "Tiger" +msgstr "" + +#: configdialog.ui:817 configdialog.ui:899 +#: configdialog.ui:929 +#, no-c-format +msgid "Milk" +msgstr "" + +#: configdialog.ui:865 +#, no-c-format +msgid "Buttons look like" +msgstr "" + +#: configdialog.ui:873 +#, no-c-format +msgid "Toolbuttons look like" +msgstr "" + +#: configdialog.ui:945 +#, no-c-format +msgid "Special Widgets" +msgstr "" + +#: configdialog.ui:956 configdialog.ui:968 +#: configdialog.ui:996 +#, no-c-format +msgid "Tabs" +msgstr "" + +#: configdialog.ui:959 +#, no-c-format +msgid "" +"Panther introduced so called choosers
TQt has only Tabs, but you can " +"influence their appereance here a bit
" +msgstr "" + +#: configdialog.ui:973 configdialog.ui:1001 +#, no-c-format +msgid "Clever" +msgstr "" + +#: configdialog.ui:978 configdialog.ui:1006 +#, no-c-format +msgid "Choosers" +msgstr "" + +#: configdialog.ui:990 +#, no-c-format +msgid "Brushed Tabs are" +msgstr "" + +#: configdialog.ui:1018 +#, no-c-format +msgid "Aqua tabs are" +msgstr "" + +#: configdialog.ui:1040 +#, no-c-format +msgid "Center Align Tabs" +msgstr "" + +#: configdialog.ui:1050 +#, no-c-format +msgid "Scrollbars" +msgstr "" + +#: configdialog.ui:1061 +#, no-c-format +msgid "Animate Hovered Slider" +msgstr "" + +#: configdialog.ui:1069 +#, no-c-format +msgid "Squeeze pressed Slider" +msgstr "" + +#: configdialog.ui:1077 +#, no-c-format +msgid "Shadow Slider" +msgstr "" + +#: configdialog.ui:1104 +#, no-c-format +msgid "ListViews" +msgstr "" + +#: configdialog.ui:1139 +#, no-c-format +msgid "Draw Tree Lines" +msgstr "" + +#: configdialog.ui:1182 +#, no-c-format +msgid "Expanders look like" +msgstr "" + +#: configdialog.ui:1217 +#, no-c-format +msgid "Use Custom Expander Color" +msgstr "" + +#: configdialog.ui:1260 +#, no-c-format +msgid "Lines" +msgstr "" + +#: configdialog.ui:1265 +#, no-c-format +msgid "Dots" +msgstr "" + +#: configdialog.ui:1293 configdialog.ui:1531 +#, no-c-format +msgid "Apple" +msgstr "" + +#: configdialog.ui:1298 +#, no-c-format +msgid "M$" +msgstr "" + +#: configdialog.ui:1313 +#, no-c-format +msgid "" +"Expanders are the little icons you can click to open a new Layer in the tree" +msgstr "" + +#: configdialog.ui:1372 +#, no-c-format +msgid "Use flatter Listview Header" +msgstr "" + +#: configdialog.ui:1375 +#, no-c-format +msgid "Makes Listview Headers look like the rectangular Buttons" +msgstr "" + +#: configdialog.ui:1383 +#, no-c-format +msgid "Use Bevel as Highlight Color" +msgstr "" + +#: configdialog.ui:1393 +#, no-c-format +msgid "Kicker" +msgstr "" + +#: configdialog.ui:1404 +#, no-c-format +msgid "Use Round Taskbuttons" +msgstr "" + +#: configdialog.ui:1426 +#, no-c-format +msgid "Replace menubar extension (display app name)" +msgstr "" + +#: configdialog.ui:1442 +#, no-c-format +msgid "Maximum width" +msgstr "" + +#: configdialog.ui:1450 +#, no-c-format +msgid "px" +msgstr "" + +#: configdialog.ui:1461 +#, no-c-format +msgid "Start KRuler" +msgstr "" + +#: configdialog.ui:1488 +#, no-c-format +msgid "Remove Bevel" +msgstr "" + +#: configdialog.ui:1506 +#, no-c-format +msgid "Progressbars" +msgstr "" + +#: configdialog.ui:1525 +#, no-c-format +msgid "Style" +msgstr "" + +#: configdialog.ui:1536 +#, no-c-format +msgid "Liquid" +msgstr "" + +#: configdialog.ui:1541 +#, no-c-format +msgid "Baghira" +msgstr "" + +#: configdialog.ui:1563 +#, no-c-format +msgid "Show Value" +msgstr "" + +#: configdialog.ui:1592 +#, no-c-format +msgid "Toolbars" +msgstr "" + +#: configdialog.ui:1601 +#, no-c-format +msgid "Aqua" +msgstr "" + +#: configdialog.ui:1606 +#, no-c-format +msgid "Brushed Metal" +msgstr "" + +#: configdialog.ui:1611 +#, no-c-format +msgid "Both" +msgstr "" + +#: configdialog.ui:1616 +#, no-c-format +msgid "None" +msgstr "" + +#: configdialog.ui:1628 +#, no-c-format +msgid "Show unhovered buttons for" +msgstr "" + +#: configdialog.ui:1644 +#, no-c-format +msgid "Highlight Color" +msgstr "" + +#: configdialog.ui:1685 +#, no-c-format +msgid "Menus" +msgstr "" + +#: configdialog.ui:1733 +#, no-c-format +msgid "Look" +msgstr "" + +#: configdialog.ui:1771 +#, no-c-format +msgid "Plain" +msgstr "" + +#: configdialog.ui:1776 +#, no-c-format +msgid "Stipples" +msgstr "" + +#: configdialog.ui:1781 +#, no-c-format +msgid "Gradient" +msgstr "" + +#: configdialog.ui:1799 +#, no-c-format +msgid "" +"Solid is fastest, Gradient is slowest - choose by your personal preferences " +"and the speed of your machine" +msgstr "" + +#: configdialog.ui:1817 +#, no-c-format +msgid "Draw menu stripe" +msgstr "" + +#: configdialog.ui:1888 +#, no-c-format +msgid "Opacity" +msgstr "" + +#: configdialog.ui:1930 +#, no-c-format +msgid "Translucent" +msgstr "" + +#: configdialog.ui:1955 +#, no-c-format +msgid "Opaque" +msgstr "" + +#: configdialog.ui:1989 configdialog.ui:2070 +#, no-c-format +msgid "Text" +msgstr "" + +#: configdialog.ui:2040 +#, no-c-format +msgid "Highlighted" +msgstr "" + +#: configdialog.ui:2127 +#, no-c-format +msgid "Background 2" +msgstr "" + +#: configdialog.ui:2161 +#, no-c-format +msgid "Color" +msgstr "" + +#: configdialog.ui:2172 +#, no-c-format +msgid "Button" +msgstr "" + +#: configdialog.ui:2192 +#, no-c-format +msgid "" +"TQt usually uses the button color for the menus... well, Apple does not." +msgstr "" + +#: configdialog.ui:2202 +#, no-c-format +msgid "Use glossy highlights" +msgstr "" + +#: configdialog.ui:2210 +#, no-c-format +msgid "Shadow itemtext" +msgstr "" + +#: configdialog.ui:2237 +#, no-c-format +msgid "Sidebar" +msgstr "" + +#: configdialog.ui:2246 configdialog.ui:2297 +#, no-c-format +msgid "16x16" +msgstr "" + +#: configdialog.ui:2251 configdialog.ui:2302 +#, no-c-format +msgid "22x22" +msgstr "" + +#: configdialog.ui:2256 configdialog.ui:2307 +#, no-c-format +msgid "32x32" +msgstr "" + +#: configdialog.ui:2261 configdialog.ui:2312 +#, no-c-format +msgid "48x48" +msgstr "" + +#: configdialog.ui:2266 configdialog.ui:2317 +#, no-c-format +msgid "64x64" +msgstr "" + +#: configdialog.ui:2271 configdialog.ui:2322 +#, no-c-format +msgid "128x128" +msgstr "" + +#: configdialog.ui:2283 +#, no-c-format +msgid "Hardware Iconsize" +msgstr "" + +#: configdialog.ui:2291 +#, no-c-format +msgid "Link Iconsize" +msgstr "" + +#: configdialog.ui:2355 +#, no-c-format +msgid "Custom Colors" +msgstr "" + +#: configdialog.ui:2366 +#, no-c-format +msgid "Use Custom Widget Colors" +msgstr "" + +#: configdialog.ui:2369 +#, no-c-format +msgid "" +"These Widgets default to the Button Color, however you can customize them " +"here" +msgstr "" + +#: configdialog.ui:2407 +#, no-c-format +msgid "Radiobutton (\"Off\")" +msgstr "" + +#: configdialog.ui:2450 +#, no-c-format +msgid "Unchecked Box" +msgstr "" + +#: configdialog.ui:2493 +#, no-c-format +msgid "Scrollbar Slider" +msgstr "" + +#: configdialog.ui:2536 +#, no-c-format +msgid "Pressed Slider" +msgstr "" + +#: configdialog.ui:2579 +#, no-c-format +msgid "Inactive Tab" +msgstr "" + +#: configdialog.ui:2632 +#, no-c-format +msgid "Radiobutton (\"On\")" +msgstr "" + +#: configdialog.ui:2675 +#, no-c-format +msgid "Checked Box" +msgstr "" + +#: configdialog.ui:2718 +#, no-c-format +msgid "Hovered Slider" +msgstr "" + +#: configdialog.ui:2761 +#, no-c-format +msgid "Slider Groove" +msgstr "" + +#: configdialog.ui:2804 +#, no-c-format +msgid "Active Tab" +msgstr "" + +#: configdialog.ui:2872 +#, no-c-format +msgid "Tint the Brush" +msgstr "" + +#: configdialog.ui:2990 +#, no-c-format +msgid "Tint Brushed Metal" +msgstr "" + +#: help.ui:30 +#, no-c-format +msgid "Baghira Help" +msgstr "" + +#: help.ui:83 +#, no-c-format +msgid "BAB" +msgstr "" + +#: help.ui:119 +#, no-c-format +msgid "Start BAB" +msgstr "" + +#: help.ui:163 +#, no-c-format +msgid "" +"\"BAB\" is a little Systray Application to give you more control " +"about the look of your Baghiranced Desktop.
\n" +"You can start if from a shell or the KDE executor or by just simply clicking " +"the button below.
\n" +"
\n" +"How does it work?
\n" +"a) Simply leftclick the icon to switch between the different generations ( " +"Blue:Jaguar, Black:Panther, Grey:Brushed Metal, Yellow:Tiger, " +"White:Milk)

\n" +"b) Righclick to get a config menu, providing direct acces to Baghiras config " +"dialog

\n" +"c) BAB is also a DCOP interface to the Baghira Style and Windeco" +msgstr "" + +#: help.ui:179 +#, no-c-format +msgid "DCOP" +msgstr "" + +#: help.ui:190 +#, no-c-format +msgid "" +"
How to acces bab via DCOP
\n" +"
Well, if you're a coder, i assume you know hot to access the dcop server " +"from within your code\n" +"
If you're a user, the main way to acces dcop is the dcop command line " +"tool

\n" +"To see, which functions are provided by bab (the list will probably grow), " +"open a shell and enter

\n" +"dcop bab default
\n" +"
\n" +"The most interesting function is

\n" +"start(TQString name,TQString settings)
\n" +"
\n" +"use it like:

\n" +"start <appName> <design>

\n" +"where <appName> is the (KDE) application command (try " +"\"konqueror\") you want to start and <design> is a " +"predefined Design you set in the rules section (Baghiracomes with " +"\"Jaguar\", \"Panther\", \"Brushed\", \"Tiger\" and \"Milk\")" +msgstr "" + +#: help.ui:222 +#, no-c-format +msgid "" +"The new coloring Function \"Aquarius\" replaces the former " +"\"icy\" style.\n" +"
Though you can use any color, i suggest to avoid very high or very low " +"saturated colors.\n" +"
- High saturation will lead to a flat look\n" +"
- Low saturation will look uncolored\n" +"
\n" +"
I suggest to use a button color like rgb = 84,140,242 as a starting " +"Point and modify the color to yoour wishes\n" +"
Notice that the coloring function is probably not fixed yet - " +"especially not in the high saturated area\n" +"
So please do not complain if you worked hard to optimize the color and " +"get a different result in one of the next versions.\n" +"
\n" +"
Additionally, there are two color schemes by Christian Lehmann included." +msgstr "" + +#: help.ui:241 +#, no-c-format +msgid "Credits" +msgstr "" + +#: help.ui:258 +#, no-c-format +msgid "" +"Apple Computer, Inc.
For being such great Designers =)

\n" +"Christian Lehmann
For the SuSE binaries and Supporting my Ego

\n" +"Elias Probst
For the Gentoo ebuild

\n" +"Mosfet (Of Course)
For the initial Liquid Code

\n" +"Narcis Tesa
For the Mandrake binaries and being the worst " +"nitpicker on this Planet

Timur
For the cute icons

\n" +"Everyone else who supported me with suggestions, bug reports and Help on the " +"fores.

\n" +"KDE-Look
\n" +"and
\n" +"Sourceforge
\n" +"for hosting the Project" +msgstr "" + +#: help.ui:280 +#, no-c-format +msgid "Thanks To (alphabetical):" +msgstr "" diff --git a/translations/messages/twin_baghira_config/twin_baghira_config.pot b/translations/messages/twin_baghira_config/twin_baghira_config.pot new file mode 100644 index 0000000..fa8df5a --- /dev/null +++ b/translations/messages/twin_baghira_config/twin_baghira_config.pot @@ -0,0 +1,343 @@ +# SOME DESCRIPTIVE TITLE. +# FIRST AUTHOR , YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: PACKAGE VERSION\n" +"POT-Creation-Date: 2020-05-11 04:29+0200\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language-Team: LANGUAGE \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#. Instead of a literal translation, add your name to the end of the list (separated by a comma). +#, ignore-inconsistent +msgid "" +"_: NAME OF TRANSLATORS\n" +"Your names" +msgstr "" + +#. Instead of a literal translation, add your email to the end of the list (separated by a comma). +#, ignore-inconsistent +msgid "" +"_: EMAIL OF TRANSLATORS\n" +"Your emails" +msgstr "" + +#: configdialog.ui:16 +#, no-c-format +msgid "Configure Baghira Window Decoration" +msgstr "" + +#: configdialog.ui:33 +#, no-c-format +msgid "Common Settings" +msgstr "" + +#: configdialog.ui:52 +#, no-c-format +msgid "Minimum Title Height" +msgstr "" + +#: configdialog.ui:83 +#, no-c-format +msgid "" +"The Titlebar height will follow your font setting.
However, you can set a " +"minmum value to extend the Titlebar if you prefer small fonts.
18 is the " +"minimum due to the Buttons :)" +msgstr "" + +#: configdialog.ui:93 +#, no-c-format +msgid "Show resize grip" +msgstr "" + +#: configdialog.ui:96 +#, no-c-format +msgid "" +"Starts in Brushed Metal mode instead of default, if the Style is set to " +"Brushed Metal" +msgstr "" + +#: configdialog.ui:104 +#, no-c-format +msgid "Add auto spacing" +msgstr "" + +#: configdialog.ui:112 +#, no-c-format +msgid "Fullscreen maximized" +msgstr "" + +#: configdialog.ui:115 +#, no-c-format +msgid "" +"Check this to have any window in fullscreen Mode - demaximize the window by " +"clicking into the top right corner of your screen" +msgstr "" + +#: configdialog.ui:123 +#, no-c-format +msgid "Draw Comic Frame" +msgstr "" + +#: configdialog.ui:126 +#, no-c-format +msgid "" +"Draws a black frame around the window (not the Titlebar).
Anyway i " +"suggest to get the twin dropshadow patch." +msgstr "" + +#: configdialog.ui:134 +#, no-c-format +msgid "Hide deco for fixed size modal windows" +msgstr "" + +#: configdialog.ui:142 +#, no-c-format +msgid "Keep maximized resizable" +msgstr "" + +#: configdialog.ui:150 +#, no-c-format +msgid "Allow Easy Closing" +msgstr "" + +#: configdialog.ui:153 +#, no-c-format +msgid "" +"Allows Closing by clicking into the top left or right corner
Close " +"Button must be most left or right element (also no spacers)
Closes on " +"Mouse Button release (so you have the chance to move the mouse away and keep " +"the Window)
The Window must be active and maximized
Unfortunately " +"you will not be able tho resize the Window from that corner" +msgstr "" + +#: configdialog.ui:159 configdialog.ui:384 +#: configdialog.ui:566 configdialog.ui:1311 +#: configdialog.ui:1690 configdialog.ui:2392 +#: configdialog.ui:2643 customdecosettings.ui:429 +#, no-c-format +msgid "Jaguar" +msgstr "" + +#: configdialog.ui:164 configdialog.ui:561 +#: configdialog.ui:946 configdialog.ui:1306 +#: configdialog.ui:1685 configdialog.ui:2387 +#: configdialog.ui:2638 customdecosettings.ui:424 +#, no-c-format +msgid "Panther" +msgstr "" + +#: configdialog.ui:169 +#, no-c-format +msgid "Brushed Metal" +msgstr "" + +#: configdialog.ui:174 configdialog.ui:2073 +#, no-c-format +msgid "Tiger" +msgstr "" + +#: configdialog.ui:179 configdialog.ui:571 +#: configdialog.ui:1316 configdialog.ui:1695 +#: configdialog.ui:2397 configdialog.ui:2648 +#: customdecosettings.ui:434 +#, no-c-format +msgid "Milk" +msgstr "" + +#: configdialog.ui:191 +#, no-c-format +msgid "Default Mode is" +msgstr "" + +#: configdialog.ui:213 +#, no-c-format +msgid "" +"Try to remove application name\n" +"from multipart titles" +msgstr "" + +#: configdialog.ui:224 +#, no-c-format +msgid "Title &Alignment" +msgstr "" + +#: configdialog.ui:230 +#, no-c-format +msgid "Use these buttons to set the alignment of the window title" +msgstr "" + +#: configdialog.ui:311 +#, no-c-format +msgid "None" +msgstr "" + +#: configdialog.ui:355 +#, no-c-format +msgid "Configure Button Colors" +msgstr "" + +#: configdialog.ui:403 configdialog.ui:1197 +#: configdialog.ui:1576 configdialog.ui:2092 +#: configdialog.ui:2529 customdecosettings.ui:267 +#, no-c-format +msgid "3D Intensity" +msgstr "" + +#: configdialog.ui:449 configdialog.ui:965 +#: configdialog.ui:1527 configdialog.ui:3024 +#: customdecosettings.ui:218 +#, no-c-format +msgid "Titleshadow Intensity" +msgstr "" + +#: configdialog.ui:506 configdialog.ui:1251 +#: configdialog.ui:1630 configdialog.ui:2332 +#: configdialog.ui:2583 customdecosettings.ui:313 +#, no-c-format +msgid "ButtonStyle" +msgstr "" + +#: configdialog.ui:514 configdialog.ui:1259 +#: configdialog.ui:1638 configdialog.ui:2340 +#: configdialog.ui:2591 customdecosettings.ui:321 +#, no-c-format +msgid "Active Titlebar Effect" +msgstr "" + +#: configdialog.ui:525 configdialog.ui:1270 +#: configdialog.ui:1649 configdialog.ui:2351 +#: configdialog.ui:2602 customdecosettings.ui:332 +#, no-c-format +msgid "Inactive Titlebar Effect" +msgstr "" + +#: configdialog.ui:576 configdialog.ui:596 +#: configdialog.ui:640 configdialog.ui:1321 +#: configdialog.ui:1341 configdialog.ui:1385 +#: configdialog.ui:1700 configdialog.ui:1720 +#: configdialog.ui:1764 configdialog.ui:2402 +#: configdialog.ui:2653 configdialog.ui:2673 +#: configdialog.ui:2717 customdecosettings.ui:439 +#: customdecosettings.ui:459 customdecosettings.ui:503 +#, no-c-format +msgid "Nostalgia" +msgstr "" + +#: configdialog.ui:586 configdialog.ui:630 +#: configdialog.ui:1331 configdialog.ui:1375 +#: configdialog.ui:1710 configdialog.ui:1754 +#: configdialog.ui:2663 configdialog.ui:2707 +#: customdecosettings.ui:449 customdecosettings.ui:493 +#, no-c-format +msgid "Gradient" +msgstr "" + +#: configdialog.ui:591 configdialog.ui:635 +#: configdialog.ui:1336 configdialog.ui:1380 +#: configdialog.ui:1715 configdialog.ui:1759 +#: configdialog.ui:2668 configdialog.ui:2712 +#: customdecosettings.ui:454 customdecosettings.ui:498 +#, no-c-format +msgid "Stippled" +msgstr "" + +#: configdialog.ui:601 configdialog.ui:645 +#: configdialog.ui:1346 configdialog.ui:1390 +#: configdialog.ui:1725 configdialog.ui:1769 +#: configdialog.ui:2678 configdialog.ui:2722 +#: customdecosettings.ui:464 customdecosettings.ui:508 +#, no-c-format +msgid "Glossy" +msgstr "" + +#: configdialog.ui:606 configdialog.ui:650 +#: configdialog.ui:1351 configdialog.ui:1395 +#: configdialog.ui:1508 configdialog.ui:1730 +#: configdialog.ui:1774 configdialog.ui:2683 +#: configdialog.ui:2727 customdecosettings.ui:469 +#: customdecosettings.ui:513 +#, no-c-format +msgid "Brushed" +msgstr "" + +#: configdialog.ui:611 configdialog.ui:655 +#: configdialog.ui:1356 configdialog.ui:1400 +#: configdialog.ui:1735 configdialog.ui:1779 +#: configdialog.ui:2688 configdialog.ui:2732 +#: customdecosettings.ui:474 customdecosettings.ui:518 +#, no-c-format +msgid "Scanlines" +msgstr "" + +#: configdialog.ui:624 configdialog.ui:668 +#: configdialog.ui:1369 configdialog.ui:1413 +#: configdialog.ui:1748 configdialog.ui:1792 +#: configdialog.ui:2701 configdialog.ui:2745 +#: customdecosettings.ui:487 customdecosettings.ui:531 +#, no-c-format +msgid "Select an effect for the titlebar to change its appearance" +msgstr "" + +#: configdialog.ui:686 configdialog.ui:1431 +#: configdialog.ui:1810 configdialog.ui:2440 +#: configdialog.ui:2763 customdecosettings.ui:353 +#, no-c-format +msgid "Colors" +msgstr "" + +#: configdialog.ui:753 configdialog.ui:1006 +#: configdialog.ui:1877 configdialog.ui:2130 +#: configdialog.ui:2830 customdecosettings.ui:27 +#, no-c-format +msgid "Round Corners" +msgstr "" + +#: configdialog.ui:875 configdialog.ui:1145 +#: configdialog.ui:1991 configdialog.ui:2244 +#: configdialog.ui:2944 customdecosettings.ui:149 +#, no-c-format +msgid "Border Size" +msgstr "" + +#: configdialog.ui:936 configdialog.ui:1498 +#: configdialog.ui:2063 configdialog.ui:2492 +#: configdialog.ui:2513 customdecosettings.ui:558 +#, no-c-format +msgid "Draw Icon" +msgstr "" + +#: configdialog.ui:2414 +#, no-c-format +msgid "(Gradient)" +msgstr "" + +#: configdialog.ui:2422 +#, no-c-format +msgid "(Scanlines)" +msgstr "" + +#: configdialog.ui:2477 +#, no-c-format +msgid "(Background)" +msgstr "" + +#: configdialog.ui:2502 +#, no-c-format +msgid "Special" +msgstr "" + +#: customdecosettings.ui:16 +#, no-c-format +msgid "CustomDecoSettings" +msgstr "" + +#: customdecosettings.ui:572 +#, no-c-format +msgid "Name" +msgstr ""