mirror of
https://github.com/aarnt/octopi.git
synced 2025-11-16 15:44:43 +01:00
Compare commits
18 Commits
6341f8ad9e
...
master
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
8777191600 | ||
|
|
cfaa79ee72 | ||
|
|
7f587bce41 | ||
|
|
844abe95d7 | ||
|
|
853be9969e | ||
|
|
83751ac9c7 | ||
|
|
e59e37847a | ||
|
|
51664f11ca | ||
|
|
bc88d17c2b | ||
|
|
6af7779ce6 | ||
|
|
e68362b7dc | ||
|
|
672d72615b | ||
|
|
9fee9bc58b | ||
|
|
d8e703ec47 | ||
|
|
f96fdd9cc4 | ||
|
|
dc3a326a17 | ||
|
|
c05a536b46 | ||
|
|
6bc1dbc082 |
@@ -2,11 +2,17 @@
|
||||
BugFix: Pressing F11 to maximize bottom panel crashed Octopi if Info tab was selected.
|
||||
BugFix: Octopi crashed after using AUR/KCP tool and clicking on a package anchor
|
||||
in Output tab.
|
||||
BugFix: Package anchor clicking was not working if filter pkg QLineEdit was not focused.
|
||||
BugFix: Optional deps dialog had a column header named "3" instead of "Repository".
|
||||
BugFix: Some outdated AUR pkgs were not showing on notifier (thanks to urbenlegend).
|
||||
BugFix: There was a method called more than once every time distro news was checked.
|
||||
BugFix: Prevent the user from double-clicking on a package while it is performing
|
||||
an action.
|
||||
*Relevant* performance improvement on instant search and package list building time.
|
||||
Add support to COSMIC DE.
|
||||
Add the option to make the whole interface text less condensed.
|
||||
Add the option to show/hide "Repository" and "Download Size" columns in package list.
|
||||
Pressing Ctrl+M toggles the visibility of the menu bar.
|
||||
Add Repository field in Info tab.
|
||||
Make "Search for outdated AUR packages" a notifier only option.
|
||||
Enable Check updates and System upgrade tool buttons in AUR mode.
|
||||
|
||||
@@ -24,7 +24,7 @@
|
||||
#include <unistd.h>
|
||||
#include <sys/types.h>
|
||||
#include <dirent.h>
|
||||
#include <limits.h>
|
||||
//#include <limits.h>
|
||||
|
||||
#include <QProcess>
|
||||
#include <QDir>
|
||||
@@ -128,7 +128,8 @@ OctopiHelper::OctopiHelper()
|
||||
|
||||
QString fname = QStringLiteral("/usr/lib/octopi/octphelper.log");
|
||||
m_logFile.setFileName(fname);
|
||||
m_logFile.open(QIODevice::WriteOnly | /*QIODevice::Append |*/ QIODevice::Text);
|
||||
bool opened = m_logFile.open(QIODevice::WriteOnly | QIODevice::Text);
|
||||
Q_UNUSED(opened);
|
||||
}
|
||||
|
||||
OctopiHelper::~OctopiHelper()
|
||||
|
||||
Binary file not shown.
@@ -255,232 +255,277 @@
|
||||
<translation>Ignorované</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="Projects/octopi/src/mainwindow_help.cpp" line="64"/>
|
||||
<location filename="Projects/octopi/src/mainwindow_help.cpp" line="66"/>
|
||||
<location filename="Projects/octopi/src/mainwindow_help.cpp" line="71"/>
|
||||
<source>Ctrl+Shift+O to display outdated %1 packages</source>
|
||||
<translation>Ctrl+Shift+O pro zobrazení zastaralých %1 balíčků</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="Projects/octopi/src/mainwindow_help.cpp" line="72"/>
|
||||
<location filename="Projects/octopi/src/mainwindow_help.cpp" line="82"/>
|
||||
<location filename="Projects/octopi/src/mainwindow_help.cpp" line="87"/>
|
||||
<source>Ctrl+Shift+A to display AUR voted package list</source>
|
||||
<translation>Ctrl+Shift+A pro zobrazení voleného seznamu balíčků AUR</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="Projects/octopi/src/mainwindow_help.cpp" line="77"/>
|
||||
<location filename="Projects/octopi/src/mainwindow_help.cpp" line="93"/>
|
||||
<source>For more information, visit:</source>
|
||||
<translation>Další informace najdete na:</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="Projects/octopi/src/mainwindow_help.cpp" line="80"/>
|
||||
<location filename="Projects/octopi/src/mainwindow_help.cpp" line="100"/>
|
||||
<location filename="Projects/octopi/src/mainwindow_help.cpp" line="211"/>
|
||||
<source>A Qt-based Pacman frontend,</source>
|
||||
<translation>Na Qt založené rozhraní pro Pacman,</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="Projects/octopi/src/mainwindow_help.cpp" line="81"/>
|
||||
<location filename="Projects/octopi/src/mainwindow_help.cpp" line="101"/>
|
||||
<location filename="Projects/octopi/src/mainwindow_help.cpp" line="212"/>
|
||||
<source>licensed under the terms of</source>
|
||||
<translation>licencováno za podmínek</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="Projects/octopi/src/mainwindow_help.cpp" line="88"/>
|
||||
<location filename="Projects/octopi/src/mainwindow_help.cpp" line="108"/>
|
||||
<location filename="Projects/octopi/src/mainwindow_help.cpp" line="219"/>
|
||||
<source>Package classification:</source>
|
||||
<translation>Zařazení balíčku:</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="Projects/octopi/src/mainwindow_help.cpp" line="91"/>
|
||||
<location filename="Projects/octopi/src/mainwindow_help.cpp" line="111"/>
|
||||
<location filename="Projects/octopi/src/mainwindow_help.cpp" line="222"/>
|
||||
<source>An ignored package</source>
|
||||
<translation>Ignorovaný balíček</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="Projects/octopi/src/mainwindow_help.cpp" line="93"/>
|
||||
<location filename="Projects/octopi/src/mainwindow_help.cpp" line="113"/>
|
||||
<location filename="Projects/octopi/src/mainwindow_help.cpp" line="224"/>
|
||||
<source>An installed package</source>
|
||||
<translation>Nainstalovaný balíček</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="Projects/octopi/src/mainwindow_help.cpp" line="95"/>
|
||||
<location filename="Projects/octopi/src/mainwindow_help.cpp" line="115"/>
|
||||
<location filename="Projects/octopi/src/mainwindow_help.cpp" line="226"/>
|
||||
<source>An installed package (not required by others)</source>
|
||||
<translation>Nainstalovaný balíček (nepožadovaný dalšími)</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="Projects/octopi/src/mainwindow_help.cpp" line="98"/>
|
||||
<location filename="Projects/octopi/src/mainwindow_help.cpp" line="118"/>
|
||||
<location filename="Projects/octopi/src/mainwindow_help.cpp" line="229"/>
|
||||
<source>A foreign package, installed from</source>
|
||||
<translation>Cizí balíček, instalován z</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="Projects/octopi/src/mainwindow_help.cpp" line="101"/>
|
||||
<location filename="Projects/octopi/src/mainwindow_help.cpp" line="121"/>
|
||||
<location filename="Projects/octopi/src/mainwindow_help.cpp" line="232"/>
|
||||
<source>A non installed package</source>
|
||||
<translation>Nenainstalovaný balíček</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="Projects/octopi/src/mainwindow_help.cpp" line="104"/>
|
||||
<location filename="Projects/octopi/src/mainwindow_help.cpp" line="124"/>
|
||||
<location filename="Projects/octopi/src/mainwindow_help.cpp" line="235"/>
|
||||
<source>An outdated package</source>
|
||||
<translation>Zastaralý balíček</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="Projects/octopi/src/mainwindow_help.cpp" line="107"/>
|
||||
<location filename="Projects/octopi/src/mainwindow_help.cpp" line="127"/>
|
||||
<location filename="Projects/octopi/src/mainwindow_help.cpp" line="238"/>
|
||||
<source>An outdated foreign package</source>
|
||||
<translation>Zastaralý cizí balíček</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="Projects/octopi/src/mainwindow_help.cpp" line="110"/>
|
||||
<location filename="Projects/octopi/src/mainwindow_help.cpp" line="130"/>
|
||||
<location filename="Projects/octopi/src/mainwindow_help.cpp" line="241"/>
|
||||
<source>A newer version of this package is installed</source>
|
||||
<translation>Je nainstalována novější verze tohoto balíčku</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="Projects/octopi/src/mainwindow_help.cpp" line="112"/>
|
||||
<location filename="Projects/octopi/src/mainwindow_help.cpp" line="133"/>
|
||||
<location filename="Projects/octopi/src/mainwindow_help.cpp" line="244"/>
|
||||
<source>Basic usage help:</source>
|
||||
<translation>Základní nápověda k používání:</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="Projects/octopi/src/mainwindow_help.cpp" line="114"/>
|
||||
<location filename="Projects/octopi/src/mainwindow_help.cpp" line="135"/>
|
||||
<location filename="Projects/octopi/src/mainwindow_help.cpp" line="246"/>
|
||||
<source>Position the mouse over a package to see its description</source>
|
||||
<translation>Umístěte myš nad balíček pro zobrazení jeho popisu</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="Projects/octopi/src/mainwindow_help.cpp" line="116"/>
|
||||
<location filename="Projects/octopi/src/mainwindow_help.cpp" line="137"/>
|
||||
<location filename="Projects/octopi/src/mainwindow_help.cpp" line="248"/>
|
||||
<source>Double click an installed package to see its contents</source>
|
||||
<translation>Dvakrát klepněte na nainstalovaný balíček pro zobrazení jeho obsahu</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="Projects/octopi/src/mainwindow_help.cpp" line="118"/>
|
||||
<location filename="Projects/octopi/src/mainwindow_help.cpp" line="139"/>
|
||||
<location filename="Projects/octopi/src/mainwindow_help.cpp" line="250"/>
|
||||
<source>Right click package to install/reinstall or remove it</source>
|
||||
<translation>Klepněte pravým tlačítkem myši na balíček pro jeho nainstalování/přeinstalování nebo odinstalování</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="Projects/octopi/src/mainwindow_help.cpp" line="121"/>
|
||||
<location filename="Projects/octopi/src/mainwindow_help.cpp" line="142"/>
|
||||
<location filename="Projects/octopi/src/mainwindow_help.cpp" line="253"/>
|
||||
<source>Alt+key sequences:</source>
|
||||
<translation>Alt+sled kláves:</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="Projects/octopi/src/mainwindow_help.cpp" line="123"/>
|
||||
<location filename="Projects/octopi/src/mainwindow_help.cpp" line="144"/>
|
||||
<location filename="Projects/octopi/src/mainwindow_help.cpp" line="255"/>
|
||||
<source>Alt+1 to switch to 'Info' tab</source>
|
||||
<translation>Alt+1 pro přepnutí na kartu Informace</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="Projects/octopi/src/mainwindow_help.cpp" line="125"/>
|
||||
<location filename="Projects/octopi/src/mainwindow_help.cpp" line="146"/>
|
||||
<location filename="Projects/octopi/src/mainwindow_help.cpp" line="257"/>
|
||||
<source>Alt+2 to switch to 'Files' tab</source>
|
||||
<translation>Alt+2 pro přepnutí na kartu Soubory</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="Projects/octopi/src/mainwindow_help.cpp" line="127"/>
|
||||
<location filename="Projects/octopi/src/mainwindow_help.cpp" line="148"/>
|
||||
<location filename="Projects/octopi/src/mainwindow_help.cpp" line="259"/>
|
||||
<source>Alt+3 to switch to 'Actions' tab</source>
|
||||
<translation>Alt+3 pro přepnutí na kartu Činnosti</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="Projects/octopi/src/mainwindow_help.cpp" line="129"/>
|
||||
<location filename="Projects/octopi/src/mainwindow_help.cpp" line="150"/>
|
||||
<location filename="Projects/octopi/src/mainwindow_help.cpp" line="261"/>
|
||||
<source>Alt+4 to switch to 'Output' tab</source>
|
||||
<translation>Alt+4 pro přepnutí na kartu Výstup</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="Projects/octopi/src/mainwindow_help.cpp" line="131"/>
|
||||
<location filename="Projects/octopi/src/mainwindow_help.cpp" line="152"/>
|
||||
<location filename="Projects/octopi/src/mainwindow_help.cpp" line="263"/>
|
||||
<source>Alt+5 to switch to 'News' tab</source>
|
||||
<translation>Alt+5 pro přepnutí na kartu Zprávy</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="Projects/octopi/src/mainwindow_help.cpp" line="133"/>
|
||||
<location filename="Projects/octopi/src/mainwindow_help.cpp" line="154"/>
|
||||
<location filename="Projects/octopi/src/mainwindow_help.cpp" line="265"/>
|
||||
<source>Alt+6 or 'F1' to show this help page</source>
|
||||
<translation>Alt+6 nebo F1 pro ukázání této stránky s nápovědou</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="Projects/octopi/src/mainwindow_help.cpp" line="135"/>
|
||||
<location filename="Projects/octopi/src/mainwindow_help.cpp" line="156"/>
|
||||
<location filename="Projects/octopi/src/mainwindow_help.cpp" line="267"/>
|
||||
<source>Alt+7 to switch to 'Terminal' tab</source>
|
||||
<translation>Alt+7 pro přepnutí na kartu Terminál</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="Projects/octopi/src/mainwindow_help.cpp" line="138"/>
|
||||
<location filename="Projects/octopi/src/mainwindow_help.cpp" line="159"/>
|
||||
<location filename="Projects/octopi/src/mainwindow_help.cpp" line="270"/>
|
||||
<source>Control+key sequences:</source>
|
||||
<translation>Ctrl+sled kláves:</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="Projects/octopi/src/mainwindow_help.cpp" line="140"/>
|
||||
<location filename="Projects/octopi/src/mainwindow_help.cpp" line="161"/>
|
||||
<location filename="Projects/octopi/src/mainwindow_help.cpp" line="272"/>
|
||||
<source>Ctrl+E or 'Actions/Cancel' to clear the selection of to be removed/installed packages</source>
|
||||
<translation>Ctrl+B nebo 'Činnosti/Zrušit' pro smazání výběru balíčků určených k odstranění/instalaci</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="Projects/octopi/src/mainwindow_help.cpp" line="142"/>
|
||||
<location filename="Projects/octopi/src/mainwindow_help.cpp" line="163"/>
|
||||
<location filename="Projects/octopi/src/mainwindow_help.cpp" line="274"/>
|
||||
<source>Ctrl+F to search for text inside tab Files, News and Usage</source>
|
||||
<translation>Ctrl+F pro hledání textu v souborech, zprávách a používání</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="Projects/octopi/src/mainwindow_help.cpp" line="144"/>
|
||||
<location filename="Projects/octopi/src/mainwindow_help.cpp" line="165"/>
|
||||
<location filename="Projects/octopi/src/mainwindow_help.cpp" line="276"/>
|
||||
<source>Ctrl+G or 'File/Get latest distro news' to retrieve the latest RSS based distro news</source>
|
||||
<translation>Ctrl+G nebo 'Soubor/Získat nejnovější distribuční zprávy' pro získání nejnovějších distribučních zpráv založených na RSS</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="Projects/octopi/src/mainwindow_help.cpp" line="146"/>
|
||||
<location filename="Projects/octopi/src/mainwindow_help.cpp" line="167"/>
|
||||
<location filename="Projects/octopi/src/mainwindow_help.cpp" line="278"/>
|
||||
<source>Ctrl+K or 'File/Check updates' to check mirror for latest updates (checkupdates)</source>
|
||||
<translation>Ctrl+K nebo 'Soubor/Zkontrolovat aktualizace' pro kontrolu zrcadla na nejnovější aktualizace (checkupdates)</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="Projects/octopi/src/mainwindow_help.cpp" line="148"/>
|
||||
<location filename="Projects/octopi/src/mainwindow_help.cpp" line="169"/>
|
||||
<location filename="Projects/octopi/src/mainwindow_help.cpp" line="280"/>
|
||||
<source>Ctrl+L to find a package in the package list</source>
|
||||
<translation>Ctrl+L pro nalezení balíčku v seznamu balíčků</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="Projects/octopi/src/mainwindow_help.cpp" line="150"/>
|
||||
<location filename="Projects/octopi/src/mainwindow_help.cpp" line="171"/>
|
||||
<location filename="Projects/octopi/src/mainwindow_help.cpp" line="282"/>
|
||||
<source>Ctrl+P to go to package list</source>
|
||||
<translation>Ctrl+P pro přechod na seznam balíčků</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="Projects/octopi/src/mainwindow_help.cpp" line="152"/>
|
||||
<location filename="Projects/octopi/src/mainwindow_help.cpp" line="173"/>
|
||||
<location filename="Projects/octopi/src/mainwindow_help.cpp" line="284"/>
|
||||
<source>Ctrl+Q or 'File/Exit' to exit the application</source>
|
||||
<translation>Ctrl+Q nebo 'Soubor/Ukončit' pro ukončení programu</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="Projects/octopi/src/mainwindow_help.cpp" line="154"/>
|
||||
<location filename="Projects/octopi/src/mainwindow_help.cpp" line="175"/>
|
||||
<location filename="Projects/octopi/src/mainwindow_help.cpp" line="286"/>
|
||||
<source>Ctrl+U or 'File/System upgrade' to make a full system upgrade (pacman -Su)</source>
|
||||
<translation>Ctrl+U nebo 'Soubor/Aktualizace systému' pro provedení úplné aktualizace systému (pacman -Su)</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="Projects/octopi/src/mainwindow_help.cpp" line="156"/>
|
||||
<location filename="Projects/octopi/src/mainwindow_help.cpp" line="177"/>
|
||||
<location filename="Projects/octopi/src/mainwindow_help.cpp" line="288"/>
|
||||
<source>Ctrl+Y or 'Actions/Apply' to start installation/removal of selected packages</source>
|
||||
<translation>Ctrl+M nebo 'Činnosti/Použít' pro spuštění instalace/odstranění vybraných balíčků</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="Projects/octopi/src/mainwindow_help.cpp" line="159"/>
|
||||
<location filename="Projects/octopi/src/mainwindow_help.cpp" line="180"/>
|
||||
<location filename="Projects/octopi/src/mainwindow_help.cpp" line="291"/>
|
||||
<source>Control+shift+key sequences:</source>
|
||||
<translation>Ctrl+Shift+sled kláves:</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="Projects/octopi/src/mainwindow_help.cpp" line="163"/>
|
||||
<location filename="Projects/octopi/src/mainwindow_help.cpp" line="184"/>
|
||||
<location filename="Projects/octopi/src/mainwindow_help.cpp" line="295"/>
|
||||
<source>Ctrl+Shift+G to display all package groups</source>
|
||||
<translation>Ctrl+Shift+G pro zobrazení všech skupin balíčků</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="Projects/octopi/src/mainwindow_help.cpp" line="168"/>
|
||||
<location filename="Projects/octopi/src/mainwindow_help.cpp" line="189"/>
|
||||
<location filename="Projects/octopi/src/mainwindow_help.cpp" line="300"/>
|
||||
<source>Ctrl+Shift+U to upgrade outdated %1 packages</source>
|
||||
<translation>Ctrl+Shift+O pro aktualizaci zastaralých %1 balíčků</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="Projects/octopi/src/mainwindow_help.cpp" line="170"/>
|
||||
<location filename="Projects/octopi/src/mainwindow_help.cpp" line="191"/>
|
||||
<location filename="Projects/octopi/src/mainwindow_help.cpp" line="302"/>
|
||||
<source>Ctrl+Shift+Y to display %1 group</source>
|
||||
<translation>pro zobrazení skupiny %1</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="Projects/octopi/src/mainwindow_help.cpp" line="173"/>
|
||||
<location filename="Projects/octopi/src/mainwindow_help.cpp" line="194"/>
|
||||
<location filename="Projects/octopi/src/mainwindow_help.cpp" line="305"/>
|
||||
<source>F+key sequences:</source>
|
||||
<translation>F+sled kláves:</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="Projects/octopi/src/mainwindow_help.cpp" line="175"/>
|
||||
<location filename="Projects/octopi/src/mainwindow_help.cpp" line="196"/>
|
||||
<location filename="Projects/octopi/src/mainwindow_help.cpp" line="307"/>
|
||||
<source>F1 to show this help page</source>
|
||||
<translation>F1 pro ukázání této stránky s nápovědou</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="Projects/octopi/src/mainwindow_help.cpp" line="177"/>
|
||||
<location filename="Projects/octopi/src/mainwindow_help.cpp" line="198"/>
|
||||
<location filename="Projects/octopi/src/mainwindow_help.cpp" line="309"/>
|
||||
<source>F4 to open a Terminal whitin the selected directory at Files tab</source>
|
||||
<translation>F4 pro otevření terminálu ve vybraném adresáři na kartě Soubory</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="Projects/octopi/src/mainwindow_help.cpp" line="179"/>
|
||||
<location filename="Projects/octopi/src/mainwindow_help.cpp" line="200"/>
|
||||
<location filename="Projects/octopi/src/mainwindow_help.cpp" line="311"/>
|
||||
<source>F6 to open a File Manager whitin the selected directory at Files tab</source>
|
||||
<translation>F6 pro otevření správce souborů ve vybraném adresáři na kartě Soubory</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="Projects/octopi/src/mainwindow_help.cpp" line="181"/>
|
||||
<location filename="Projects/octopi/src/mainwindow_help.cpp" line="202"/>
|
||||
<location filename="Projects/octopi/src/mainwindow_help.cpp" line="313"/>
|
||||
<source>F10 to maximize/demaximize package list view</source>
|
||||
<translation>F10 pro zvětšení/zmenšení zobrazení seznamu balíčků</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="Projects/octopi/src/mainwindow_help.cpp" line="183"/>
|
||||
<location filename="Projects/octopi/src/mainwindow_help.cpp" line="204"/>
|
||||
<location filename="Projects/octopi/src/mainwindow_help.cpp" line="315"/>
|
||||
<source>F11 to maximize/demaximize Tab's view</source>
|
||||
<translation>F11 pro zvětšení/zmenšení zobrazení karet</translation>
|
||||
</message>
|
||||
@@ -518,139 +563,154 @@
|
||||
<translation>Povolit potvrzovací dialog při povýšení systému</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="Projects/octopi/ui/optionsdialog.ui" line="199"/>
|
||||
<location filename="Projects/octopi/ui/optionsdialog.ui" line="197"/>
|
||||
<source>Increase text spacing in the main interface</source>
|
||||
<translation>Zvětšit mezery textu v hlavním rozhraní</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="Projects/octopi/ui/optionsdialog.ui" line="212"/>
|
||||
<source>Use alternating row colors</source>
|
||||
<translation>Použití střídavých barev řádků</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="Projects/octopi/ui/optionsdialog.ui" line="212"/>
|
||||
<location filename="Projects/octopi/ui/optionsdialog.ui" line="225"/>
|
||||
<source>Show "Licenses" column</source>
|
||||
<translation>Zobrazit sloupec "Licence"</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="Projects/octopi/ui/optionsdialog.ui" line="225"/>
|
||||
<location filename="Projects/octopi/ui/optionsdialog.ui" line="238"/>
|
||||
<source>Show "Installed Size" column</source>
|
||||
<translation>Zobrazit sloupec "Instalovaná velikost"</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="Projects/octopi/ui/optionsdialog.ui" line="238"/>
|
||||
<location filename="Projects/octopi/ui/optionsdialog.ui" line="251"/>
|
||||
<source>Show "Build Date" column</source>
|
||||
<translation>Zobrazit sloupec "Datum sestavení"</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="Projects/octopi/ui/optionsdialog.ui" line="251"/>
|
||||
<location filename="Projects/octopi/ui/optionsdialog.ui" line="264"/>
|
||||
<source>Show "Install Date" column</source>
|
||||
<translation>Zobrazit sloupec "Datum instalace"</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="Projects/octopi/ui/optionsdialog.ui" line="264"/>
|
||||
<location filename="Projects/octopi/ui/optionsdialog.ui" line="277"/>
|
||||
<source>Show "Install Reason" column</source>
|
||||
<translation>Zobrazit sloupec "Důvod instalace"</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="Projects/octopi/ui/optionsdialog.ui" line="277"/>
|
||||
<location filename="Projects/octopi/ui/optionsdialog.ui" line="290"/>
|
||||
<source>Enable package tooltips</source>
|
||||
<translation>Povolit popisky balíčků</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="Projects/octopi/ui/optionsdialog.ui" line="311"/>
|
||||
<location filename="Projects/octopi/ui/optionsdialog.ui" line="303"/>
|
||||
<source>Show "Repository" column</source>
|
||||
<translation>Zobrazit sloupec "Úložiště"</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="Projects/octopi/ui/optionsdialog.ui" line="316"/>
|
||||
<source>Show "Download Size" column</source>
|
||||
<translation>Zobrazit sloupec "Stažená velikost"</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="Projects/octopi/ui/optionsdialog.ui" line="350"/>
|
||||
<source>Select the AUR tool Octopi should use</source>
|
||||
<translation>Vyberte nástroj AUR, který má Octopi používat</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="Projects/octopi/ui/optionsdialog.ui" line="392"/>
|
||||
<source>Search for outdated AUR packages</source>
|
||||
<translation>Hledat zastaralé balíčky AUR</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="Projects/octopi/ui/optionsdialog.ui" line="458"/>
|
||||
<location filename="Projects/octopi/ui/optionsdialog.ui" line="476"/>
|
||||
<source>User name</source>
|
||||
<translation>Uživatelské jméno</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="Projects/octopi/ui/optionsdialog.ui" line="471"/>
|
||||
<location filename="Projects/octopi/ui/optionsdialog.ui" line="489"/>
|
||||
<source>Password</source>
|
||||
<translation>Heslo</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="Projects/octopi/ui/optionsdialog.ui" line="489"/>
|
||||
<location filename="Projects/octopi/ui/optionsdialog.ui" line="507"/>
|
||||
<source>Register</source>
|
||||
<translation>Registrovat</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="Projects/octopi/ui/optionsdialog.ui" line="507"/>
|
||||
<location filename="Projects/octopi/ui/optionsdialog.ui" line="525"/>
|
||||
<source>Connect</source>
|
||||
<translation>Spojit</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="Projects/octopi/ui/optionsdialog.ui" line="526"/>
|
||||
<location filename="Projects/octopi/ui/optionsdialog.ui" line="544"/>
|
||||
<source>Enable AUR voting</source>
|
||||
<translation>Povolit hlasování AUR</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="Projects/octopi/ui/optionsdialog.ui" line="547"/>
|
||||
<location filename="Projects/octopi/ui/optionsdialog.ui" line="565"/>
|
||||
<source>AUR packages are user produced content.
|
||||
Any use of the provided files is at your own risk.</source>
|
||||
<translation>Balíčky AUR jsou obsahem vytvořeným uživateli.
|
||||
Jakékoli použití poskytnutých souborů je na vaše vlastní nebezpečí.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="Projects/octopi/ui/optionsdialog.ui" line="608"/>
|
||||
<location filename="Projects/octopi/ui/optionsdialog.ui" line="626"/>
|
||||
<source>Build directory</source>
|
||||
<translation>Adresář sestavení</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="Projects/octopi/ui/optionsdialog.ui" line="724"/>
|
||||
<location filename="Projects/octopi/ui/optionsdialog.ui" line="742"/>
|
||||
<source>Select the backend Octopi should use</source>
|
||||
<translation>Vyberte jádro (podpůrnou vrstvu), kterou má Octopi používat</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="Projects/octopi/ui/optionsdialog.ui" line="767"/>
|
||||
<location filename="Projects/octopi/ui/optionsdialog.ui" line="785"/>
|
||||
<source>Use default notification icons</source>
|
||||
<translation>Používat výchozí ikony pro oznamování</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="Projects/octopi/ui/optionsdialog.ui" line="842"/>
|
||||
<location filename="Projects/octopi/ui/optionsdialog.ui" line="860"/>
|
||||
<source>Red icon</source>
|
||||
<translation>Červená ikona</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="Projects/octopi/ui/optionsdialog.ui" line="932"/>
|
||||
<location filename="Projects/octopi/ui/optionsdialog.ui" line="950"/>
|
||||
<source>Busy icon</source>
|
||||
<translation>Ikona pro zaneprázdněn</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="Projects/octopi/ui/optionsdialog.ui" line="1001"/>
|
||||
<location filename="Projects/octopi/ui/optionsdialog.ui" line="1019"/>
|
||||
<source>Yellow icon</source>
|
||||
<translation>Žlutá ikona</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="Projects/octopi/ui/optionsdialog.ui" line="1085"/>
|
||||
<location filename="Projects/octopi/ui/optionsdialog.ui" line="1103"/>
|
||||
<source>Green icon</source>
|
||||
<translation>Zelená ikona</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="Projects/octopi/ui/optionsdialog.ui" line="1410"/>
|
||||
<location filename="Projects/octopi/ui/optionsdialog.ui" line="1402"/>
|
||||
<source>Search for outdated AUR packages</source>
|
||||
<translation>Hledat zastaralé balíčky AUR</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="Projects/octopi/ui/optionsdialog.ui" line="1452"/>
|
||||
<source>Color Scheme</source>
|
||||
<translation>Barevné schéma</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="Projects/octopi/ui/optionsdialog.ui" line="1423"/>
|
||||
<location filename="Projects/octopi/ui/optionsdialog.ui" line="1465"/>
|
||||
<source>Font Family</source>
|
||||
<translation>Písmo</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="Projects/octopi/ui/optionsdialog.ui" line="1456"/>
|
||||
<location filename="Projects/octopi/ui/optionsdialog.ui" line="1498"/>
|
||||
<source>Font Size</source>
|
||||
<translation>Velikost písma</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="Projects/octopi/ui/optionsdialog.ui" line="1479"/>
|
||||
<location filename="Projects/octopi/ui/optionsdialog.ui" line="1521"/>
|
||||
<source>Play a bell sound when prompting for the root password in the terminal</source>
|
||||
<translation>Přehrát upozornění, pokud je v terminálu vyžadováno heslo uživatele root</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="Projects/octopi/ui/optionsdialog.ui" line="1492"/>
|
||||
<location filename="Projects/octopi/ui/optionsdialog.ui" line="1534"/>
|
||||
<source>Force use of BASH shell</source>
|
||||
<translation>Vynutit použití shellu BASH</translation>
|
||||
</message>
|
||||
@@ -702,12 +762,12 @@ Jakékoli použití poskytnutých souborů je na vaše vlastní nebezpečí.</tr
|
||||
<translation>Terminál</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="Projects/octopi/src/optionsdialog.cpp" line="215"/>
|
||||
<location filename="Projects/octopi/src/optionsdialog.cpp" line="218"/>
|
||||
<source>Ok</source>
|
||||
<translation>OK</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="Projects/octopi/src/optionsdialog.cpp" line="216"/>
|
||||
<location filename="Projects/octopi/src/optionsdialog.cpp" line="219"/>
|
||||
<source>Cancel</source>
|
||||
<translation>Zrušit</translation>
|
||||
</message>
|
||||
|
||||
Binary file not shown.
@@ -255,232 +255,277 @@
|
||||
<translation>Ignorado</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="Projects/octopi/src/mainwindow_help.cpp" line="64"/>
|
||||
<location filename="Projects/octopi/src/mainwindow_help.cpp" line="66"/>
|
||||
<location filename="Projects/octopi/src/mainwindow_help.cpp" line="71"/>
|
||||
<source>Ctrl+Shift+O to display outdated %1 packages</source>
|
||||
<translation>Ctrl+Mayús+O para mostrar los paquetes desactualizados %1</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="Projects/octopi/src/mainwindow_help.cpp" line="72"/>
|
||||
<location filename="Projects/octopi/src/mainwindow_help.cpp" line="82"/>
|
||||
<location filename="Projects/octopi/src/mainwindow_help.cpp" line="87"/>
|
||||
<source>Ctrl+Shift+A to display AUR voted package list</source>
|
||||
<translation>Ctrl+Mayús+A para mostrar el listado de paquetes votados en AUR</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="Projects/octopi/src/mainwindow_help.cpp" line="77"/>
|
||||
<location filename="Projects/octopi/src/mainwindow_help.cpp" line="93"/>
|
||||
<source>For more information, visit:</source>
|
||||
<translation>Para más información, visite:</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="Projects/octopi/src/mainwindow_help.cpp" line="80"/>
|
||||
<location filename="Projects/octopi/src/mainwindow_help.cpp" line="100"/>
|
||||
<location filename="Projects/octopi/src/mainwindow_help.cpp" line="211"/>
|
||||
<source>A Qt-based Pacman frontend,</source>
|
||||
<translation>Una interfaz basada en Qt Pacman,</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="Projects/octopi/src/mainwindow_help.cpp" line="81"/>
|
||||
<location filename="Projects/octopi/src/mainwindow_help.cpp" line="101"/>
|
||||
<location filename="Projects/octopi/src/mainwindow_help.cpp" line="212"/>
|
||||
<source>licensed under the terms of</source>
|
||||
<translation>licenciado bajo los términos de</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="Projects/octopi/src/mainwindow_help.cpp" line="88"/>
|
||||
<location filename="Projects/octopi/src/mainwindow_help.cpp" line="108"/>
|
||||
<location filename="Projects/octopi/src/mainwindow_help.cpp" line="219"/>
|
||||
<source>Package classification:</source>
|
||||
<translation>Clasificación del paquete:</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="Projects/octopi/src/mainwindow_help.cpp" line="91"/>
|
||||
<location filename="Projects/octopi/src/mainwindow_help.cpp" line="111"/>
|
||||
<location filename="Projects/octopi/src/mainwindow_help.cpp" line="222"/>
|
||||
<source>An ignored package</source>
|
||||
<translation>Un paquete ignorado</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="Projects/octopi/src/mainwindow_help.cpp" line="93"/>
|
||||
<location filename="Projects/octopi/src/mainwindow_help.cpp" line="113"/>
|
||||
<location filename="Projects/octopi/src/mainwindow_help.cpp" line="224"/>
|
||||
<source>An installed package</source>
|
||||
<translation>Un paquete instalado</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="Projects/octopi/src/mainwindow_help.cpp" line="95"/>
|
||||
<location filename="Projects/octopi/src/mainwindow_help.cpp" line="115"/>
|
||||
<location filename="Projects/octopi/src/mainwindow_help.cpp" line="226"/>
|
||||
<source>An installed package (not required by others)</source>
|
||||
<translation>Un paquete instalado (no es requerido por otros)</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="Projects/octopi/src/mainwindow_help.cpp" line="98"/>
|
||||
<location filename="Projects/octopi/src/mainwindow_help.cpp" line="118"/>
|
||||
<location filename="Projects/octopi/src/mainwindow_help.cpp" line="229"/>
|
||||
<source>A foreign package, installed from</source>
|
||||
<translation>Un paquete exterior, instalado desde</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="Projects/octopi/src/mainwindow_help.cpp" line="101"/>
|
||||
<location filename="Projects/octopi/src/mainwindow_help.cpp" line="121"/>
|
||||
<location filename="Projects/octopi/src/mainwindow_help.cpp" line="232"/>
|
||||
<source>A non installed package</source>
|
||||
<translation>Un paquete no instalado</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="Projects/octopi/src/mainwindow_help.cpp" line="104"/>
|
||||
<location filename="Projects/octopi/src/mainwindow_help.cpp" line="124"/>
|
||||
<location filename="Projects/octopi/src/mainwindow_help.cpp" line="235"/>
|
||||
<source>An outdated package</source>
|
||||
<translation>Un paquete obsoleto</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="Projects/octopi/src/mainwindow_help.cpp" line="107"/>
|
||||
<location filename="Projects/octopi/src/mainwindow_help.cpp" line="127"/>
|
||||
<location filename="Projects/octopi/src/mainwindow_help.cpp" line="238"/>
|
||||
<source>An outdated foreign package</source>
|
||||
<translation>Un paquete externo desactualizado</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="Projects/octopi/src/mainwindow_help.cpp" line="110"/>
|
||||
<location filename="Projects/octopi/src/mainwindow_help.cpp" line="130"/>
|
||||
<location filename="Projects/octopi/src/mainwindow_help.cpp" line="241"/>
|
||||
<source>A newer version of this package is installed</source>
|
||||
<translation>Está instalada una versión más nueva de este paquete</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="Projects/octopi/src/mainwindow_help.cpp" line="112"/>
|
||||
<location filename="Projects/octopi/src/mainwindow_help.cpp" line="133"/>
|
||||
<location filename="Projects/octopi/src/mainwindow_help.cpp" line="244"/>
|
||||
<source>Basic usage help:</source>
|
||||
<translation>Ayuda de uso básico:</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="Projects/octopi/src/mainwindow_help.cpp" line="114"/>
|
||||
<location filename="Projects/octopi/src/mainwindow_help.cpp" line="135"/>
|
||||
<location filename="Projects/octopi/src/mainwindow_help.cpp" line="246"/>
|
||||
<source>Position the mouse over a package to see its description</source>
|
||||
<translation>Coloque el puntero del ratón sobre un paquete para ver su descripción</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="Projects/octopi/src/mainwindow_help.cpp" line="116"/>
|
||||
<location filename="Projects/octopi/src/mainwindow_help.cpp" line="137"/>
|
||||
<location filename="Projects/octopi/src/mainwindow_help.cpp" line="248"/>
|
||||
<source>Double click an installed package to see its contents</source>
|
||||
<translation>Haga doble clic en un paquete instalado para ver su contenido</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="Projects/octopi/src/mainwindow_help.cpp" line="118"/>
|
||||
<location filename="Projects/octopi/src/mainwindow_help.cpp" line="139"/>
|
||||
<location filename="Projects/octopi/src/mainwindow_help.cpp" line="250"/>
|
||||
<source>Right click package to install/reinstall or remove it</source>
|
||||
<translation>Haga clic derecho en paquete para instalar / reinstalar o eliminar</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="Projects/octopi/src/mainwindow_help.cpp" line="121"/>
|
||||
<location filename="Projects/octopi/src/mainwindow_help.cpp" line="142"/>
|
||||
<location filename="Projects/octopi/src/mainwindow_help.cpp" line="253"/>
|
||||
<source>Alt+key sequences:</source>
|
||||
<translation>Alt+ secuencia de teclas:</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="Projects/octopi/src/mainwindow_help.cpp" line="123"/>
|
||||
<location filename="Projects/octopi/src/mainwindow_help.cpp" line="144"/>
|
||||
<location filename="Projects/octopi/src/mainwindow_help.cpp" line="255"/>
|
||||
<source>Alt+1 to switch to 'Info' tab</source>
|
||||
<translation>Alt +1 para cambiar a la pestaña "Info"</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="Projects/octopi/src/mainwindow_help.cpp" line="125"/>
|
||||
<location filename="Projects/octopi/src/mainwindow_help.cpp" line="146"/>
|
||||
<location filename="Projects/octopi/src/mainwindow_help.cpp" line="257"/>
|
||||
<source>Alt+2 to switch to 'Files' tab</source>
|
||||
<translation>Alt +2 para cambiar a la pestaña "Archivos"</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="Projects/octopi/src/mainwindow_help.cpp" line="127"/>
|
||||
<location filename="Projects/octopi/src/mainwindow_help.cpp" line="148"/>
|
||||
<location filename="Projects/octopi/src/mainwindow_help.cpp" line="259"/>
|
||||
<source>Alt+3 to switch to 'Actions' tab</source>
|
||||
<translation>Alt+3 para cambiar a la pestaña «Acciones»</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="Projects/octopi/src/mainwindow_help.cpp" line="129"/>
|
||||
<location filename="Projects/octopi/src/mainwindow_help.cpp" line="150"/>
|
||||
<location filename="Projects/octopi/src/mainwindow_help.cpp" line="261"/>
|
||||
<source>Alt+4 to switch to 'Output' tab</source>
|
||||
<translation>Alt +4 para cambiar a la pestaña "Salida"</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="Projects/octopi/src/mainwindow_help.cpp" line="131"/>
|
||||
<location filename="Projects/octopi/src/mainwindow_help.cpp" line="152"/>
|
||||
<location filename="Projects/octopi/src/mainwindow_help.cpp" line="263"/>
|
||||
<source>Alt+5 to switch to 'News' tab</source>
|
||||
<translation>Alt +5 para cambiar a la pestaña "Noticias"</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="Projects/octopi/src/mainwindow_help.cpp" line="133"/>
|
||||
<location filename="Projects/octopi/src/mainwindow_help.cpp" line="154"/>
|
||||
<location filename="Projects/octopi/src/mainwindow_help.cpp" line="265"/>
|
||||
<source>Alt+6 or 'F1' to show this help page</source>
|
||||
<translation>Alt +6 o "F1" para mostrar la página de ayuda</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="Projects/octopi/src/mainwindow_help.cpp" line="135"/>
|
||||
<location filename="Projects/octopi/src/mainwindow_help.cpp" line="156"/>
|
||||
<location filename="Projects/octopi/src/mainwindow_help.cpp" line="267"/>
|
||||
<source>Alt+7 to switch to 'Terminal' tab</source>
|
||||
<translation>Alt+7 para cambiar a la pestaña «Terminal»</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="Projects/octopi/src/mainwindow_help.cpp" line="138"/>
|
||||
<location filename="Projects/octopi/src/mainwindow_help.cpp" line="159"/>
|
||||
<location filename="Projects/octopi/src/mainwindow_help.cpp" line="270"/>
|
||||
<source>Control+key sequences:</source>
|
||||
<translation>Control+ secuencia de teclas:</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="Projects/octopi/src/mainwindow_help.cpp" line="140"/>
|
||||
<location filename="Projects/octopi/src/mainwindow_help.cpp" line="161"/>
|
||||
<location filename="Projects/octopi/src/mainwindow_help.cpp" line="272"/>
|
||||
<source>Ctrl+E or 'Actions/Cancel' to clear the selection of to be removed/installed packages</source>
|
||||
<translation>Ctrl+E o 'Acciones/Cancelar' para limpiar la selección de los paquetes que serán eliminados/instalados</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="Projects/octopi/src/mainwindow_help.cpp" line="142"/>
|
||||
<location filename="Projects/octopi/src/mainwindow_help.cpp" line="163"/>
|
||||
<location filename="Projects/octopi/src/mainwindow_help.cpp" line="274"/>
|
||||
<source>Ctrl+F to search for text inside tab Files, News and Usage</source>
|
||||
<translation>Ctrl+F para buscar texto dentro de los archivos de la pestaña, Noticias y Uso</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="Projects/octopi/src/mainwindow_help.cpp" line="144"/>
|
||||
<location filename="Projects/octopi/src/mainwindow_help.cpp" line="165"/>
|
||||
<location filename="Projects/octopi/src/mainwindow_help.cpp" line="276"/>
|
||||
<source>Ctrl+G or 'File/Get latest distro news' to retrieve the latest RSS based distro news</source>
|
||||
<translation>Ctrl+G o 'Archivo/Recibir las últimas noticias distro "para obtener las últimas noticias distro basadas en RSS</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="Projects/octopi/src/mainwindow_help.cpp" line="146"/>
|
||||
<location filename="Projects/octopi/src/mainwindow_help.cpp" line="167"/>
|
||||
<location filename="Projects/octopi/src/mainwindow_help.cpp" line="278"/>
|
||||
<source>Ctrl+K or 'File/Check updates' to check mirror for latest updates (checkupdates)</source>
|
||||
<translation>Ctrl+K o «Archivo/Comprobar Actualizaciones» para comprobar los espejos para las últimas actualizaciones (checkupdates)</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="Projects/octopi/src/mainwindow_help.cpp" line="148"/>
|
||||
<location filename="Projects/octopi/src/mainwindow_help.cpp" line="169"/>
|
||||
<location filename="Projects/octopi/src/mainwindow_help.cpp" line="280"/>
|
||||
<source>Ctrl+L to find a package in the package list</source>
|
||||
<translation>Ctrl+L para encontrar un paquete en la lista de paquetes</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="Projects/octopi/src/mainwindow_help.cpp" line="150"/>
|
||||
<location filename="Projects/octopi/src/mainwindow_help.cpp" line="171"/>
|
||||
<location filename="Projects/octopi/src/mainwindow_help.cpp" line="282"/>
|
||||
<source>Ctrl+P to go to package list</source>
|
||||
<translation>Ctrl+P para ir a la lista de paquetes</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="Projects/octopi/src/mainwindow_help.cpp" line="152"/>
|
||||
<location filename="Projects/octopi/src/mainwindow_help.cpp" line="173"/>
|
||||
<location filename="Projects/octopi/src/mainwindow_help.cpp" line="284"/>
|
||||
<source>Ctrl+Q or 'File/Exit' to exit the application</source>
|
||||
<translation>Ctrl+Q o "Archivo/Salir" para salir de la aplicación</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="Projects/octopi/src/mainwindow_help.cpp" line="154"/>
|
||||
<location filename="Projects/octopi/src/mainwindow_help.cpp" line="175"/>
|
||||
<location filename="Projects/octopi/src/mainwindow_help.cpp" line="286"/>
|
||||
<source>Ctrl+U or 'File/System upgrade' to make a full system upgrade (pacman -Su)</source>
|
||||
<translation>Ctrl+U o «Archivo/Modernización del Sistema» para hacer una modernización del sistema (pacman -Su)</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="Projects/octopi/src/mainwindow_help.cpp" line="156"/>
|
||||
<location filename="Projects/octopi/src/mainwindow_help.cpp" line="177"/>
|
||||
<location filename="Projects/octopi/src/mainwindow_help.cpp" line="288"/>
|
||||
<source>Ctrl+Y or 'Actions/Apply' to start installation/removal of selected packages</source>
|
||||
<translation>Ctrl+Y o 'Acciones/Aplicar' para comenzar la instalación/eliminación de los paquetes seleccionados</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="Projects/octopi/src/mainwindow_help.cpp" line="159"/>
|
||||
<location filename="Projects/octopi/src/mainwindow_help.cpp" line="180"/>
|
||||
<location filename="Projects/octopi/src/mainwindow_help.cpp" line="291"/>
|
||||
<source>Control+shift+key sequences:</source>
|
||||
<translation>Control+shift+ secuencia de teclas:</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="Projects/octopi/src/mainwindow_help.cpp" line="163"/>
|
||||
<location filename="Projects/octopi/src/mainwindow_help.cpp" line="184"/>
|
||||
<location filename="Projects/octopi/src/mainwindow_help.cpp" line="295"/>
|
||||
<source>Ctrl+Shift+G to display all package groups</source>
|
||||
<translation>Ctrl+Shift+G para mostrar todos los grupos de paquetes</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="Projects/octopi/src/mainwindow_help.cpp" line="168"/>
|
||||
<location filename="Projects/octopi/src/mainwindow_help.cpp" line="189"/>
|
||||
<location filename="Projects/octopi/src/mainwindow_help.cpp" line="300"/>
|
||||
<source>Ctrl+Shift+U to upgrade outdated %1 packages</source>
|
||||
<translation>Ctrl+Mayús+U para modernizar %1 paquetes antiguos</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="Projects/octopi/src/mainwindow_help.cpp" line="170"/>
|
||||
<location filename="Projects/octopi/src/mainwindow_help.cpp" line="191"/>
|
||||
<location filename="Projects/octopi/src/mainwindow_help.cpp" line="302"/>
|
||||
<source>Ctrl+Shift+Y to display %1 group</source>
|
||||
<translation>Ctrl+Shift+Y para visualizar %1 grupo</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="Projects/octopi/src/mainwindow_help.cpp" line="173"/>
|
||||
<location filename="Projects/octopi/src/mainwindow_help.cpp" line="194"/>
|
||||
<location filename="Projects/octopi/src/mainwindow_help.cpp" line="305"/>
|
||||
<source>F+key sequences:</source>
|
||||
<translation>F+ secuencia de teclas:</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="Projects/octopi/src/mainwindow_help.cpp" line="175"/>
|
||||
<location filename="Projects/octopi/src/mainwindow_help.cpp" line="196"/>
|
||||
<location filename="Projects/octopi/src/mainwindow_help.cpp" line="307"/>
|
||||
<source>F1 to show this help page</source>
|
||||
<translation>F1 para mostrar esta página de ayuda</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="Projects/octopi/src/mainwindow_help.cpp" line="177"/>
|
||||
<location filename="Projects/octopi/src/mainwindow_help.cpp" line="198"/>
|
||||
<location filename="Projects/octopi/src/mainwindow_help.cpp" line="309"/>
|
||||
<source>F4 to open a Terminal whitin the selected directory at Files tab</source>
|
||||
<translation>F4 para abrir un Terminal dentr del directorio seleccionado en la pestaña Archivos</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="Projects/octopi/src/mainwindow_help.cpp" line="179"/>
|
||||
<location filename="Projects/octopi/src/mainwindow_help.cpp" line="200"/>
|
||||
<location filename="Projects/octopi/src/mainwindow_help.cpp" line="311"/>
|
||||
<source>F6 to open a File Manager whitin the selected directory at Files tab</source>
|
||||
<translation>F6 para abrir el Administrador de archivos dentro del directorio seleccionado en la pestaña Archivos</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="Projects/octopi/src/mainwindow_help.cpp" line="181"/>
|
||||
<location filename="Projects/octopi/src/mainwindow_help.cpp" line="202"/>
|
||||
<location filename="Projects/octopi/src/mainwindow_help.cpp" line="313"/>
|
||||
<source>F10 to maximize/demaximize package list view</source>
|
||||
<translation>F10 para maximizar/ minimizar vista de lista de paquetes</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="Projects/octopi/src/mainwindow_help.cpp" line="183"/>
|
||||
<location filename="Projects/octopi/src/mainwindow_help.cpp" line="204"/>
|
||||
<location filename="Projects/octopi/src/mainwindow_help.cpp" line="315"/>
|
||||
<source>F11 to maximize/demaximize Tab's view</source>
|
||||
<translation>F11 para maximizar/minimizar vista de pestaña</translation>
|
||||
</message>
|
||||
@@ -518,139 +563,154 @@
|
||||
<translation>Activa diálogos de confirmación en la actualización del sistema</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="Projects/octopi/ui/optionsdialog.ui" line="199"/>
|
||||
<location filename="Projects/octopi/ui/optionsdialog.ui" line="197"/>
|
||||
<source>Increase text spacing in the main interface</source>
|
||||
<translation>Incremente el espaciado del texto en el interfaz principal</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="Projects/octopi/ui/optionsdialog.ui" line="212"/>
|
||||
<source>Use alternating row colors</source>
|
||||
<translation>Utilizar colores de fila alternados</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="Projects/octopi/ui/optionsdialog.ui" line="212"/>
|
||||
<location filename="Projects/octopi/ui/optionsdialog.ui" line="225"/>
|
||||
<source>Show "Licenses" column</source>
|
||||
<translation>Muestra la columna «Licencias»</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="Projects/octopi/ui/optionsdialog.ui" line="225"/>
|
||||
<location filename="Projects/octopi/ui/optionsdialog.ui" line="238"/>
|
||||
<source>Show "Installed Size" column</source>
|
||||
<translation>Muestra la columna «Tamaño de Instalación»</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="Projects/octopi/ui/optionsdialog.ui" line="238"/>
|
||||
<location filename="Projects/octopi/ui/optionsdialog.ui" line="251"/>
|
||||
<source>Show "Build Date" column</source>
|
||||
<translation>Muestra la columna «Fecha de Instalación»</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="Projects/octopi/ui/optionsdialog.ui" line="251"/>
|
||||
<location filename="Projects/octopi/ui/optionsdialog.ui" line="264"/>
|
||||
<source>Show "Install Date" column</source>
|
||||
<translation>Muestra la columna «Fecha de Instalación»</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="Projects/octopi/ui/optionsdialog.ui" line="264"/>
|
||||
<location filename="Projects/octopi/ui/optionsdialog.ui" line="277"/>
|
||||
<source>Show "Install Reason" column</source>
|
||||
<translation>Muestra la columna «Razón a Instalar»</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="Projects/octopi/ui/optionsdialog.ui" line="277"/>
|
||||
<location filename="Projects/octopi/ui/optionsdialog.ui" line="290"/>
|
||||
<source>Enable package tooltips</source>
|
||||
<translation>Habilita consejos del paquete</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="Projects/octopi/ui/optionsdialog.ui" line="311"/>
|
||||
<location filename="Projects/octopi/ui/optionsdialog.ui" line="303"/>
|
||||
<source>Show "Repository" column</source>
|
||||
<translation>Muestra la columna «Repositorio»</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="Projects/octopi/ui/optionsdialog.ui" line="316"/>
|
||||
<source>Show "Download Size" column</source>
|
||||
<translation>Muestra la columna «Tamaño de Descarga»</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="Projects/octopi/ui/optionsdialog.ui" line="350"/>
|
||||
<source>Select the AUR tool Octopi should use</source>
|
||||
<translation>Seleccione la herramienta AUR que Octopi debe usar</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="Projects/octopi/ui/optionsdialog.ui" line="392"/>
|
||||
<source>Search for outdated AUR packages</source>
|
||||
<translation>Buscar paquetes obsoletos desde AUR</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="Projects/octopi/ui/optionsdialog.ui" line="458"/>
|
||||
<location filename="Projects/octopi/ui/optionsdialog.ui" line="476"/>
|
||||
<source>User name</source>
|
||||
<translation>Usuario</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="Projects/octopi/ui/optionsdialog.ui" line="471"/>
|
||||
<location filename="Projects/octopi/ui/optionsdialog.ui" line="489"/>
|
||||
<source>Password</source>
|
||||
<translation>Contraseña</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="Projects/octopi/ui/optionsdialog.ui" line="489"/>
|
||||
<location filename="Projects/octopi/ui/optionsdialog.ui" line="507"/>
|
||||
<source>Register</source>
|
||||
<translation>Registrar</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="Projects/octopi/ui/optionsdialog.ui" line="507"/>
|
||||
<location filename="Projects/octopi/ui/optionsdialog.ui" line="525"/>
|
||||
<source>Connect</source>
|
||||
<translation>Conectar</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="Projects/octopi/ui/optionsdialog.ui" line="526"/>
|
||||
<location filename="Projects/octopi/ui/optionsdialog.ui" line="544"/>
|
||||
<source>Enable AUR voting</source>
|
||||
<translation>Activar votaciones en AUR</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="Projects/octopi/ui/optionsdialog.ui" line="547"/>
|
||||
<location filename="Projects/octopi/ui/optionsdialog.ui" line="565"/>
|
||||
<source>AUR packages are user produced content.
|
||||
Any use of the provided files is at your own risk.</source>
|
||||
<translation>Los paquetes de AUR son contenido producido por los usuarios.
|
||||
Cualquier uso de los archivos provistos son por su cuenta y riesgo.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="Projects/octopi/ui/optionsdialog.ui" line="608"/>
|
||||
<location filename="Projects/octopi/ui/optionsdialog.ui" line="626"/>
|
||||
<source>Build directory</source>
|
||||
<translation>Directorio del compilador</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="Projects/octopi/ui/optionsdialog.ui" line="724"/>
|
||||
<location filename="Projects/octopi/ui/optionsdialog.ui" line="742"/>
|
||||
<source>Select the backend Octopi should use</source>
|
||||
<translation>Seleccione el backend que Octopi debería usar</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="Projects/octopi/ui/optionsdialog.ui" line="767"/>
|
||||
<location filename="Projects/octopi/ui/optionsdialog.ui" line="785"/>
|
||||
<source>Use default notification icons</source>
|
||||
<translation>Usar iconos de notificación predeterminados</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="Projects/octopi/ui/optionsdialog.ui" line="842"/>
|
||||
<location filename="Projects/octopi/ui/optionsdialog.ui" line="860"/>
|
||||
<source>Red icon</source>
|
||||
<translation>Icono rojo</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="Projects/octopi/ui/optionsdialog.ui" line="932"/>
|
||||
<location filename="Projects/octopi/ui/optionsdialog.ui" line="950"/>
|
||||
<source>Busy icon</source>
|
||||
<translation>Icono ocupado</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="Projects/octopi/ui/optionsdialog.ui" line="1001"/>
|
||||
<location filename="Projects/octopi/ui/optionsdialog.ui" line="1019"/>
|
||||
<source>Yellow icon</source>
|
||||
<translation>Icono amarillo</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="Projects/octopi/ui/optionsdialog.ui" line="1085"/>
|
||||
<location filename="Projects/octopi/ui/optionsdialog.ui" line="1103"/>
|
||||
<source>Green icon</source>
|
||||
<translation>Icono verde</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="Projects/octopi/ui/optionsdialog.ui" line="1410"/>
|
||||
<location filename="Projects/octopi/ui/optionsdialog.ui" line="1402"/>
|
||||
<source>Search for outdated AUR packages</source>
|
||||
<translation>Buscar paquetes obsoletos desde AUR</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="Projects/octopi/ui/optionsdialog.ui" line="1452"/>
|
||||
<source>Color Scheme</source>
|
||||
<translation>Esquema del Color</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="Projects/octopi/ui/optionsdialog.ui" line="1423"/>
|
||||
<location filename="Projects/octopi/ui/optionsdialog.ui" line="1465"/>
|
||||
<source>Font Family</source>
|
||||
<translation>Familia tipográfica</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="Projects/octopi/ui/optionsdialog.ui" line="1456"/>
|
||||
<location filename="Projects/octopi/ui/optionsdialog.ui" line="1498"/>
|
||||
<source>Font Size</source>
|
||||
<translation>Tamaño tipográfico</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="Projects/octopi/ui/optionsdialog.ui" line="1479"/>
|
||||
<location filename="Projects/octopi/ui/optionsdialog.ui" line="1521"/>
|
||||
<source>Play a bell sound when prompting for the root password in the terminal</source>
|
||||
<translation>Reproducir un sonido de campana cuando solicite la contraseña de administrador en el terminal</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="Projects/octopi/ui/optionsdialog.ui" line="1492"/>
|
||||
<location filename="Projects/octopi/ui/optionsdialog.ui" line="1534"/>
|
||||
<source>Force use of BASH shell</source>
|
||||
<translation>Forzar el empleo del intérprete BASH</translation>
|
||||
</message>
|
||||
@@ -702,12 +762,12 @@ Cualquier uso de los archivos provistos son por su cuenta y riesgo.</translation
|
||||
<translation>Terminal</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="Projects/octopi/src/optionsdialog.cpp" line="215"/>
|
||||
<location filename="Projects/octopi/src/optionsdialog.cpp" line="218"/>
|
||||
<source>Ok</source>
|
||||
<translation>De acuerdo</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="Projects/octopi/src/optionsdialog.cpp" line="216"/>
|
||||
<location filename="Projects/octopi/src/optionsdialog.cpp" line="219"/>
|
||||
<source>Cancel</source>
|
||||
<translation>Cancelar</translation>
|
||||
</message>
|
||||
|
||||
Binary file not shown.
@@ -565,7 +565,7 @@
|
||||
<message>
|
||||
<location filename="Projects/octopi/ui/optionsdialog.ui" line="197"/>
|
||||
<source>Increase text spacing in the main interface</source>
|
||||
<translation type="unfinished"/>
|
||||
<translation>Szövegtávolság növelése a fő felületen</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="Projects/octopi/ui/optionsdialog.ui" line="212"/>
|
||||
@@ -605,12 +605,12 @@
|
||||
<message>
|
||||
<location filename="Projects/octopi/ui/optionsdialog.ui" line="303"/>
|
||||
<source>Show "Repository" column</source>
|
||||
<translation type="unfinished"/>
|
||||
<translation>„Tároló” oszlopának megjelenítése</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="Projects/octopi/ui/optionsdialog.ui" line="316"/>
|
||||
<source>Show "Download Size" column</source>
|
||||
<translation type="unfinished"/>
|
||||
<translation>„Letöltési méret” oszlopának megjelenítése</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="Projects/octopi/ui/optionsdialog.ui" line="350"/>
|
||||
|
||||
Binary file not shown.
@@ -255,232 +255,277 @@
|
||||
<translation>無視</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="Projects/octopi/src/mainwindow_help.cpp" line="64"/>
|
||||
<location filename="Projects/octopi/src/mainwindow_help.cpp" line="66"/>
|
||||
<location filename="Projects/octopi/src/mainwindow_help.cpp" line="71"/>
|
||||
<source>Ctrl+Shift+O to display outdated %1 packages</source>
|
||||
<translation>Ctrl+Shift+O で未更新の %1 パッケージを表示</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="Projects/octopi/src/mainwindow_help.cpp" line="72"/>
|
||||
<location filename="Projects/octopi/src/mainwindow_help.cpp" line="82"/>
|
||||
<location filename="Projects/octopi/src/mainwindow_help.cpp" line="87"/>
|
||||
<source>Ctrl+Shift+A to display AUR voted package list</source>
|
||||
<translation>Ctrl+Shift+A で AUR に投票済みのパッケージリストを表示</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="Projects/octopi/src/mainwindow_help.cpp" line="77"/>
|
||||
<location filename="Projects/octopi/src/mainwindow_help.cpp" line="93"/>
|
||||
<source>For more information, visit:</source>
|
||||
<translation>詳しい情報はこちら:</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="Projects/octopi/src/mainwindow_help.cpp" line="80"/>
|
||||
<location filename="Projects/octopi/src/mainwindow_help.cpp" line="100"/>
|
||||
<location filename="Projects/octopi/src/mainwindow_help.cpp" line="211"/>
|
||||
<source>A Qt-based Pacman frontend,</source>
|
||||
<translation>Qt ベースの Pacman フロントエンド、</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="Projects/octopi/src/mainwindow_help.cpp" line="81"/>
|
||||
<location filename="Projects/octopi/src/mainwindow_help.cpp" line="101"/>
|
||||
<location filename="Projects/octopi/src/mainwindow_help.cpp" line="212"/>
|
||||
<source>licensed under the terms of</source>
|
||||
<translation>ライセンスは</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="Projects/octopi/src/mainwindow_help.cpp" line="88"/>
|
||||
<location filename="Projects/octopi/src/mainwindow_help.cpp" line="108"/>
|
||||
<location filename="Projects/octopi/src/mainwindow_help.cpp" line="219"/>
|
||||
<source>Package classification:</source>
|
||||
<translation>パッケージの分類:</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="Projects/octopi/src/mainwindow_help.cpp" line="91"/>
|
||||
<location filename="Projects/octopi/src/mainwindow_help.cpp" line="111"/>
|
||||
<location filename="Projects/octopi/src/mainwindow_help.cpp" line="222"/>
|
||||
<source>An ignored package</source>
|
||||
<translation>無視するパッケージ</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="Projects/octopi/src/mainwindow_help.cpp" line="93"/>
|
||||
<location filename="Projects/octopi/src/mainwindow_help.cpp" line="113"/>
|
||||
<location filename="Projects/octopi/src/mainwindow_help.cpp" line="224"/>
|
||||
<source>An installed package</source>
|
||||
<translation>インストール済みパッケージ</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="Projects/octopi/src/mainwindow_help.cpp" line="95"/>
|
||||
<location filename="Projects/octopi/src/mainwindow_help.cpp" line="115"/>
|
||||
<location filename="Projects/octopi/src/mainwindow_help.cpp" line="226"/>
|
||||
<source>An installed package (not required by others)</source>
|
||||
<translation>インストール済みパッケージ(他からは不要)</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="Projects/octopi/src/mainwindow_help.cpp" line="98"/>
|
||||
<location filename="Projects/octopi/src/mainwindow_help.cpp" line="118"/>
|
||||
<location filename="Projects/octopi/src/mainwindow_help.cpp" line="229"/>
|
||||
<source>A foreign package, installed from</source>
|
||||
<translation>外部パッケージ</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="Projects/octopi/src/mainwindow_help.cpp" line="101"/>
|
||||
<location filename="Projects/octopi/src/mainwindow_help.cpp" line="121"/>
|
||||
<location filename="Projects/octopi/src/mainwindow_help.cpp" line="232"/>
|
||||
<source>A non installed package</source>
|
||||
<translation>未インストールパッケージ</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="Projects/octopi/src/mainwindow_help.cpp" line="104"/>
|
||||
<location filename="Projects/octopi/src/mainwindow_help.cpp" line="124"/>
|
||||
<location filename="Projects/octopi/src/mainwindow_help.cpp" line="235"/>
|
||||
<source>An outdated package</source>
|
||||
<translation>未更新のパッケージ</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="Projects/octopi/src/mainwindow_help.cpp" line="107"/>
|
||||
<location filename="Projects/octopi/src/mainwindow_help.cpp" line="127"/>
|
||||
<location filename="Projects/octopi/src/mainwindow_help.cpp" line="238"/>
|
||||
<source>An outdated foreign package</source>
|
||||
<translation>未更新の外部パッケージ</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="Projects/octopi/src/mainwindow_help.cpp" line="110"/>
|
||||
<location filename="Projects/octopi/src/mainwindow_help.cpp" line="130"/>
|
||||
<location filename="Projects/octopi/src/mainwindow_help.cpp" line="241"/>
|
||||
<source>A newer version of this package is installed</source>
|
||||
<translation>このパッケージの新しいバージョンがインストールされている</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="Projects/octopi/src/mainwindow_help.cpp" line="112"/>
|
||||
<location filename="Projects/octopi/src/mainwindow_help.cpp" line="133"/>
|
||||
<location filename="Projects/octopi/src/mainwindow_help.cpp" line="244"/>
|
||||
<source>Basic usage help:</source>
|
||||
<translation>基本的な使用方法:</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="Projects/octopi/src/mainwindow_help.cpp" line="114"/>
|
||||
<location filename="Projects/octopi/src/mainwindow_help.cpp" line="135"/>
|
||||
<location filename="Projects/octopi/src/mainwindow_help.cpp" line="246"/>
|
||||
<source>Position the mouse over a package to see its description</source>
|
||||
<translation>パッケージの上にマウスを置くと説明文を表示</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="Projects/octopi/src/mainwindow_help.cpp" line="116"/>
|
||||
<location filename="Projects/octopi/src/mainwindow_help.cpp" line="137"/>
|
||||
<location filename="Projects/octopi/src/mainwindow_help.cpp" line="248"/>
|
||||
<source>Double click an installed package to see its contents</source>
|
||||
<translation>インストール済みパッケージをダブルクリックすると内容を表示</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="Projects/octopi/src/mainwindow_help.cpp" line="118"/>
|
||||
<location filename="Projects/octopi/src/mainwindow_help.cpp" line="139"/>
|
||||
<location filename="Projects/octopi/src/mainwindow_help.cpp" line="250"/>
|
||||
<source>Right click package to install/reinstall or remove it</source>
|
||||
<translation>インストール/再インストール/削除をするには、パッケージを右クリック</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="Projects/octopi/src/mainwindow_help.cpp" line="121"/>
|
||||
<location filename="Projects/octopi/src/mainwindow_help.cpp" line="142"/>
|
||||
<location filename="Projects/octopi/src/mainwindow_help.cpp" line="253"/>
|
||||
<source>Alt+key sequences:</source>
|
||||
<translation>「Alt+キー」の動作:</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="Projects/octopi/src/mainwindow_help.cpp" line="123"/>
|
||||
<location filename="Projects/octopi/src/mainwindow_help.cpp" line="144"/>
|
||||
<location filename="Projects/octopi/src/mainwindow_help.cpp" line="255"/>
|
||||
<source>Alt+1 to switch to 'Info' tab</source>
|
||||
<translation>Alt+1 で情報タブに切り替え</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="Projects/octopi/src/mainwindow_help.cpp" line="125"/>
|
||||
<location filename="Projects/octopi/src/mainwindow_help.cpp" line="146"/>
|
||||
<location filename="Projects/octopi/src/mainwindow_help.cpp" line="257"/>
|
||||
<source>Alt+2 to switch to 'Files' tab</source>
|
||||
<translation>Alt+2 でファイルタブに切り替え</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="Projects/octopi/src/mainwindow_help.cpp" line="127"/>
|
||||
<location filename="Projects/octopi/src/mainwindow_help.cpp" line="148"/>
|
||||
<location filename="Projects/octopi/src/mainwindow_help.cpp" line="259"/>
|
||||
<source>Alt+3 to switch to 'Actions' tab</source>
|
||||
<translation>Alt+3 で「アクション」タブに切り替え</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="Projects/octopi/src/mainwindow_help.cpp" line="129"/>
|
||||
<location filename="Projects/octopi/src/mainwindow_help.cpp" line="150"/>
|
||||
<location filename="Projects/octopi/src/mainwindow_help.cpp" line="261"/>
|
||||
<source>Alt+4 to switch to 'Output' tab</source>
|
||||
<translation>Alt+4 で出力タブに切り替え</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="Projects/octopi/src/mainwindow_help.cpp" line="131"/>
|
||||
<location filename="Projects/octopi/src/mainwindow_help.cpp" line="152"/>
|
||||
<location filename="Projects/octopi/src/mainwindow_help.cpp" line="263"/>
|
||||
<source>Alt+5 to switch to 'News' tab</source>
|
||||
<translation>Alt+5 でニュースタブに切り替え</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="Projects/octopi/src/mainwindow_help.cpp" line="133"/>
|
||||
<location filename="Projects/octopi/src/mainwindow_help.cpp" line="154"/>
|
||||
<location filename="Projects/octopi/src/mainwindow_help.cpp" line="265"/>
|
||||
<source>Alt+6 or 'F1' to show this help page</source>
|
||||
<translation>Alt+6 か F1 でこのヘルプを表示</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="Projects/octopi/src/mainwindow_help.cpp" line="135"/>
|
||||
<location filename="Projects/octopi/src/mainwindow_help.cpp" line="156"/>
|
||||
<location filename="Projects/octopi/src/mainwindow_help.cpp" line="267"/>
|
||||
<source>Alt+7 to switch to 'Terminal' tab</source>
|
||||
<translation>Alt+7 で「ターミナル」タブに切り替え</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="Projects/octopi/src/mainwindow_help.cpp" line="138"/>
|
||||
<location filename="Projects/octopi/src/mainwindow_help.cpp" line="159"/>
|
||||
<location filename="Projects/octopi/src/mainwindow_help.cpp" line="270"/>
|
||||
<source>Control+key sequences:</source>
|
||||
<translation>「Ctrl+キー」の動作:</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="Projects/octopi/src/mainwindow_help.cpp" line="140"/>
|
||||
<location filename="Projects/octopi/src/mainwindow_help.cpp" line="161"/>
|
||||
<location filename="Projects/octopi/src/mainwindow_help.cpp" line="272"/>
|
||||
<source>Ctrl+E or 'Actions/Cancel' to clear the selection of to be removed/installed packages</source>
|
||||
<translation>Ctrl+E または「アクション/キャンセル」で、削除/インストールするパッケージの選択をクリア</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="Projects/octopi/src/mainwindow_help.cpp" line="142"/>
|
||||
<location filename="Projects/octopi/src/mainwindow_help.cpp" line="163"/>
|
||||
<location filename="Projects/octopi/src/mainwindow_help.cpp" line="274"/>
|
||||
<source>Ctrl+F to search for text inside tab Files, News and Usage</source>
|
||||
<translation>Ctrl+F でファイル/ニュース/使い方のタブ内のテキストを検索</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="Projects/octopi/src/mainwindow_help.cpp" line="144"/>
|
||||
<location filename="Projects/octopi/src/mainwindow_help.cpp" line="165"/>
|
||||
<location filename="Projects/octopi/src/mainwindow_help.cpp" line="276"/>
|
||||
<source>Ctrl+G or 'File/Get latest distro news' to retrieve the latest RSS based distro news</source>
|
||||
<translation>Ctrl+G か「ファイル→ディストロの最新ニュースを取得」で、RSS ベースの最新ディストロニュースを取得</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="Projects/octopi/src/mainwindow_help.cpp" line="146"/>
|
||||
<location filename="Projects/octopi/src/mainwindow_help.cpp" line="167"/>
|
||||
<location filename="Projects/octopi/src/mainwindow_help.cpp" line="278"/>
|
||||
<source>Ctrl+K or 'File/Check updates' to check mirror for latest updates (checkupdates)</source>
|
||||
<translation>Ctrl+K または「ファイル→アップデートを確認」で、最新のアップデートをミラーで確認 (checkupdates)</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="Projects/octopi/src/mainwindow_help.cpp" line="148"/>
|
||||
<location filename="Projects/octopi/src/mainwindow_help.cpp" line="169"/>
|
||||
<location filename="Projects/octopi/src/mainwindow_help.cpp" line="280"/>
|
||||
<source>Ctrl+L to find a package in the package list</source>
|
||||
<translation>Ctrl+L でパッケージリストのパッケージを検索</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="Projects/octopi/src/mainwindow_help.cpp" line="150"/>
|
||||
<location filename="Projects/octopi/src/mainwindow_help.cpp" line="171"/>
|
||||
<location filename="Projects/octopi/src/mainwindow_help.cpp" line="282"/>
|
||||
<source>Ctrl+P to go to package list</source>
|
||||
<translation>Ctrl+P でパッケージリストに行く</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="Projects/octopi/src/mainwindow_help.cpp" line="152"/>
|
||||
<location filename="Projects/octopi/src/mainwindow_help.cpp" line="173"/>
|
||||
<location filename="Projects/octopi/src/mainwindow_help.cpp" line="284"/>
|
||||
<source>Ctrl+Q or 'File/Exit' to exit the application</source>
|
||||
<translation>Ctrl+Q か「ファイル→終了」で、このアプリケーションを終了</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="Projects/octopi/src/mainwindow_help.cpp" line="154"/>
|
||||
<location filename="Projects/octopi/src/mainwindow_help.cpp" line="175"/>
|
||||
<location filename="Projects/octopi/src/mainwindow_help.cpp" line="286"/>
|
||||
<source>Ctrl+U or 'File/System upgrade' to make a full system upgrade (pacman -Su)</source>
|
||||
<translation>Ctrl+U か「ファイル→システムアップグレード」で、システム全体をアップグレード (pacman -Su)</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="Projects/octopi/src/mainwindow_help.cpp" line="156"/>
|
||||
<location filename="Projects/octopi/src/mainwindow_help.cpp" line="177"/>
|
||||
<location filename="Projects/octopi/src/mainwindow_help.cpp" line="288"/>
|
||||
<source>Ctrl+Y or 'Actions/Apply' to start installation/removal of selected packages</source>
|
||||
<translation>Ctrl+Y か「アクション→適用」で、選択したパッケージのインストール/削除を開始</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="Projects/octopi/src/mainwindow_help.cpp" line="159"/>
|
||||
<location filename="Projects/octopi/src/mainwindow_help.cpp" line="180"/>
|
||||
<location filename="Projects/octopi/src/mainwindow_help.cpp" line="291"/>
|
||||
<source>Control+shift+key sequences:</source>
|
||||
<translation>「Ctrl+Shift+キー」の動作:</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="Projects/octopi/src/mainwindow_help.cpp" line="163"/>
|
||||
<location filename="Projects/octopi/src/mainwindow_help.cpp" line="184"/>
|
||||
<location filename="Projects/octopi/src/mainwindow_help.cpp" line="295"/>
|
||||
<source>Ctrl+Shift+G to display all package groups</source>
|
||||
<translation>Ctrl+Shift+G ですべてのパッケージグループを表示</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="Projects/octopi/src/mainwindow_help.cpp" line="168"/>
|
||||
<location filename="Projects/octopi/src/mainwindow_help.cpp" line="189"/>
|
||||
<location filename="Projects/octopi/src/mainwindow_help.cpp" line="300"/>
|
||||
<source>Ctrl+Shift+U to upgrade outdated %1 packages</source>
|
||||
<translation>Ctrl+Shift+U で未更新の %1 パッケージをアップグレード</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="Projects/octopi/src/mainwindow_help.cpp" line="170"/>
|
||||
<location filename="Projects/octopi/src/mainwindow_help.cpp" line="191"/>
|
||||
<location filename="Projects/octopi/src/mainwindow_help.cpp" line="302"/>
|
||||
<source>Ctrl+Shift+Y to display %1 group</source>
|
||||
<translation>Ctrl+Shift+Y で %1 グループを表示</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="Projects/octopi/src/mainwindow_help.cpp" line="173"/>
|
||||
<location filename="Projects/octopi/src/mainwindow_help.cpp" line="194"/>
|
||||
<location filename="Projects/octopi/src/mainwindow_help.cpp" line="305"/>
|
||||
<source>F+key sequences:</source>
|
||||
<translation>Fn+キー の動作:</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="Projects/octopi/src/mainwindow_help.cpp" line="175"/>
|
||||
<location filename="Projects/octopi/src/mainwindow_help.cpp" line="196"/>
|
||||
<location filename="Projects/octopi/src/mainwindow_help.cpp" line="307"/>
|
||||
<source>F1 to show this help page</source>
|
||||
<translation>F1 でこのヘルプを表示</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="Projects/octopi/src/mainwindow_help.cpp" line="177"/>
|
||||
<location filename="Projects/octopi/src/mainwindow_help.cpp" line="198"/>
|
||||
<location filename="Projects/octopi/src/mainwindow_help.cpp" line="309"/>
|
||||
<source>F4 to open a Terminal whitin the selected directory at Files tab</source>
|
||||
<translation>F4 でターミナルをファイルタブで選択したディレクトリで開く</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="Projects/octopi/src/mainwindow_help.cpp" line="179"/>
|
||||
<location filename="Projects/octopi/src/mainwindow_help.cpp" line="200"/>
|
||||
<location filename="Projects/octopi/src/mainwindow_help.cpp" line="311"/>
|
||||
<source>F6 to open a File Manager whitin the selected directory at Files tab</source>
|
||||
<translation>F6 でファイルマネージャをファイルタブで選択したディレクトリで開く</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="Projects/octopi/src/mainwindow_help.cpp" line="181"/>
|
||||
<location filename="Projects/octopi/src/mainwindow_help.cpp" line="202"/>
|
||||
<location filename="Projects/octopi/src/mainwindow_help.cpp" line="313"/>
|
||||
<source>F10 to maximize/demaximize package list view</source>
|
||||
<translation>F10 でパッケージリストビューを最大化/元に戻す</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="Projects/octopi/src/mainwindow_help.cpp" line="183"/>
|
||||
<location filename="Projects/octopi/src/mainwindow_help.cpp" line="204"/>
|
||||
<location filename="Projects/octopi/src/mainwindow_help.cpp" line="315"/>
|
||||
<source>F11 to maximize/demaximize Tab's view</source>
|
||||
<translation>F11 でタブビューを最大化/元に戻す</translation>
|
||||
</message>
|
||||
@@ -518,139 +563,154 @@
|
||||
<translation>システムアップグレードで確認ダイアログを有効にする</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="Projects/octopi/ui/optionsdialog.ui" line="199"/>
|
||||
<location filename="Projects/octopi/ui/optionsdialog.ui" line="197"/>
|
||||
<source>Increase text spacing in the main interface</source>
|
||||
<translation>メインインターフェースのテキスト間隔を広げる</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="Projects/octopi/ui/optionsdialog.ui" line="212"/>
|
||||
<source>Use alternating row colors</source>
|
||||
<translation>行の色を交互に変える</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="Projects/octopi/ui/optionsdialog.ui" line="212"/>
|
||||
<location filename="Projects/octopi/ui/optionsdialog.ui" line="225"/>
|
||||
<source>Show "Licenses" column</source>
|
||||
<translation>「ライセンス」列を表示</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="Projects/octopi/ui/optionsdialog.ui" line="225"/>
|
||||
<location filename="Projects/octopi/ui/optionsdialog.ui" line="238"/>
|
||||
<source>Show "Installed Size" column</source>
|
||||
<translation>「インストールサイズ」列を表示</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="Projects/octopi/ui/optionsdialog.ui" line="238"/>
|
||||
<location filename="Projects/octopi/ui/optionsdialog.ui" line="251"/>
|
||||
<source>Show "Build Date" column</source>
|
||||
<translation>「ビルド日」列を表示</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="Projects/octopi/ui/optionsdialog.ui" line="251"/>
|
||||
<location filename="Projects/octopi/ui/optionsdialog.ui" line="264"/>
|
||||
<source>Show "Install Date" column</source>
|
||||
<translation>「インストール日」列を表示</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="Projects/octopi/ui/optionsdialog.ui" line="264"/>
|
||||
<location filename="Projects/octopi/ui/optionsdialog.ui" line="277"/>
|
||||
<source>Show "Install Reason" column</source>
|
||||
<translation>「インストール理由」列を表示</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="Projects/octopi/ui/optionsdialog.ui" line="277"/>
|
||||
<location filename="Projects/octopi/ui/optionsdialog.ui" line="290"/>
|
||||
<source>Enable package tooltips</source>
|
||||
<translation>パッケージのツールチップを有効にする</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="Projects/octopi/ui/optionsdialog.ui" line="311"/>
|
||||
<location filename="Projects/octopi/ui/optionsdialog.ui" line="303"/>
|
||||
<source>Show "Repository" column</source>
|
||||
<translation>「リポジトリ」列を表示</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="Projects/octopi/ui/optionsdialog.ui" line="316"/>
|
||||
<source>Show "Download Size" column</source>
|
||||
<translation>「ダウンロードサイズ」列を表示</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="Projects/octopi/ui/optionsdialog.ui" line="350"/>
|
||||
<source>Select the AUR tool Octopi should use</source>
|
||||
<translation>Octopi が使用する AUR ツールを選択</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="Projects/octopi/ui/optionsdialog.ui" line="392"/>
|
||||
<source>Search for outdated AUR packages</source>
|
||||
<translation>未更新の AUR パッケージを検索</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="Projects/octopi/ui/optionsdialog.ui" line="458"/>
|
||||
<location filename="Projects/octopi/ui/optionsdialog.ui" line="476"/>
|
||||
<source>User name</source>
|
||||
<translation>ユーザー名</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="Projects/octopi/ui/optionsdialog.ui" line="471"/>
|
||||
<location filename="Projects/octopi/ui/optionsdialog.ui" line="489"/>
|
||||
<source>Password</source>
|
||||
<translation>パスワード</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="Projects/octopi/ui/optionsdialog.ui" line="489"/>
|
||||
<location filename="Projects/octopi/ui/optionsdialog.ui" line="507"/>
|
||||
<source>Register</source>
|
||||
<translation>登録</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="Projects/octopi/ui/optionsdialog.ui" line="507"/>
|
||||
<location filename="Projects/octopi/ui/optionsdialog.ui" line="525"/>
|
||||
<source>Connect</source>
|
||||
<translation>接続</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="Projects/octopi/ui/optionsdialog.ui" line="526"/>
|
||||
<location filename="Projects/octopi/ui/optionsdialog.ui" line="544"/>
|
||||
<source>Enable AUR voting</source>
|
||||
<translation>AUR への投票を有効にする</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="Projects/octopi/ui/optionsdialog.ui" line="547"/>
|
||||
<location filename="Projects/octopi/ui/optionsdialog.ui" line="565"/>
|
||||
<source>AUR packages are user produced content.
|
||||
Any use of the provided files is at your own risk.</source>
|
||||
<translation>AUR パッケージはユーザーが作成したコンテンツです。
|
||||
提供されたファイルの使用は、自己責任で行ってください。</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="Projects/octopi/ui/optionsdialog.ui" line="608"/>
|
||||
<location filename="Projects/octopi/ui/optionsdialog.ui" line="626"/>
|
||||
<source>Build directory</source>
|
||||
<translation>ビルドディレクトリ</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="Projects/octopi/ui/optionsdialog.ui" line="724"/>
|
||||
<location filename="Projects/octopi/ui/optionsdialog.ui" line="742"/>
|
||||
<source>Select the backend Octopi should use</source>
|
||||
<translation>Octopiが使用するバックエンドを選択</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="Projects/octopi/ui/optionsdialog.ui" line="767"/>
|
||||
<location filename="Projects/octopi/ui/optionsdialog.ui" line="785"/>
|
||||
<source>Use default notification icons</source>
|
||||
<translation>デフォルトの通知アイコンを使用する</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="Projects/octopi/ui/optionsdialog.ui" line="842"/>
|
||||
<location filename="Projects/octopi/ui/optionsdialog.ui" line="860"/>
|
||||
<source>Red icon</source>
|
||||
<translation>赤アイコン</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="Projects/octopi/ui/optionsdialog.ui" line="932"/>
|
||||
<location filename="Projects/octopi/ui/optionsdialog.ui" line="950"/>
|
||||
<source>Busy icon</source>
|
||||
<translation>ビジーアイコン</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="Projects/octopi/ui/optionsdialog.ui" line="1001"/>
|
||||
<location filename="Projects/octopi/ui/optionsdialog.ui" line="1019"/>
|
||||
<source>Yellow icon</source>
|
||||
<translation>黄アイコン</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="Projects/octopi/ui/optionsdialog.ui" line="1085"/>
|
||||
<location filename="Projects/octopi/ui/optionsdialog.ui" line="1103"/>
|
||||
<source>Green icon</source>
|
||||
<translation>緑アイコン</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="Projects/octopi/ui/optionsdialog.ui" line="1410"/>
|
||||
<location filename="Projects/octopi/ui/optionsdialog.ui" line="1402"/>
|
||||
<source>Search for outdated AUR packages</source>
|
||||
<translation>未更新の AUR パッケージを検索</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="Projects/octopi/ui/optionsdialog.ui" line="1452"/>
|
||||
<source>Color Scheme</source>
|
||||
<translation>配色</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="Projects/octopi/ui/optionsdialog.ui" line="1423"/>
|
||||
<location filename="Projects/octopi/ui/optionsdialog.ui" line="1465"/>
|
||||
<source>Font Family</source>
|
||||
<translation>フォントファミリー</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="Projects/octopi/ui/optionsdialog.ui" line="1456"/>
|
||||
<location filename="Projects/octopi/ui/optionsdialog.ui" line="1498"/>
|
||||
<source>Font Size</source>
|
||||
<translation>フォントサイズ</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="Projects/octopi/ui/optionsdialog.ui" line="1479"/>
|
||||
<location filename="Projects/octopi/ui/optionsdialog.ui" line="1521"/>
|
||||
<source>Play a bell sound when prompting for the root password in the terminal</source>
|
||||
<translation>ターミナルで root パスワードの入力を求められたときにベル音を鳴らす</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="Projects/octopi/ui/optionsdialog.ui" line="1492"/>
|
||||
<location filename="Projects/octopi/ui/optionsdialog.ui" line="1534"/>
|
||||
<source>Force use of BASH shell</source>
|
||||
<translation>Bash シェルの使用を強制する</translation>
|
||||
</message>
|
||||
@@ -702,12 +762,12 @@ Any use of the provided files is at your own risk.</source>
|
||||
<translation>ターミナル</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="Projects/octopi/src/optionsdialog.cpp" line="215"/>
|
||||
<location filename="Projects/octopi/src/optionsdialog.cpp" line="218"/>
|
||||
<source>Ok</source>
|
||||
<translation>OK</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="Projects/octopi/src/optionsdialog.cpp" line="216"/>
|
||||
<location filename="Projects/octopi/src/optionsdialog.cpp" line="219"/>
|
||||
<source>Cancel</source>
|
||||
<translation>キャンセル</translation>
|
||||
</message>
|
||||
|
||||
Binary file not shown.
@@ -255,232 +255,277 @@
|
||||
<translation>Nepaisomi</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="Projects/octopi/src/mainwindow_help.cpp" line="64"/>
|
||||
<location filename="Projects/octopi/src/mainwindow_help.cpp" line="66"/>
|
||||
<location filename="Projects/octopi/src/mainwindow_help.cpp" line="71"/>
|
||||
<source>Ctrl+Shift+O to display outdated %1 packages</source>
|
||||
<translation>Ctrl+Shift+O, kad būtų rodomi pasenę %1 paketai</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="Projects/octopi/src/mainwindow_help.cpp" line="72"/>
|
||||
<location filename="Projects/octopi/src/mainwindow_help.cpp" line="82"/>
|
||||
<location filename="Projects/octopi/src/mainwindow_help.cpp" line="87"/>
|
||||
<source>Ctrl+Shift+A to display AUR voted package list</source>
|
||||
<translation>Ctrl+Shift+A, kad būtų rodomas AUR balsuotų paketų sąrašas</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="Projects/octopi/src/mainwindow_help.cpp" line="77"/>
|
||||
<location filename="Projects/octopi/src/mainwindow_help.cpp" line="93"/>
|
||||
<source>For more information, visit:</source>
|
||||
<translation>Daugiau informacijos rasite:</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="Projects/octopi/src/mainwindow_help.cpp" line="80"/>
|
||||
<location filename="Projects/octopi/src/mainwindow_help.cpp" line="100"/>
|
||||
<location filename="Projects/octopi/src/mainwindow_help.cpp" line="211"/>
|
||||
<source>A Qt-based Pacman frontend,</source>
|
||||
<translation>Pacman naudotojo sąsaja sukurta su Qt,</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="Projects/octopi/src/mainwindow_help.cpp" line="81"/>
|
||||
<location filename="Projects/octopi/src/mainwindow_help.cpp" line="101"/>
|
||||
<location filename="Projects/octopi/src/mainwindow_help.cpp" line="212"/>
|
||||
<source>licensed under the terms of</source>
|
||||
<translation>platinama sąlygomis, nurodytomis</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="Projects/octopi/src/mainwindow_help.cpp" line="88"/>
|
||||
<location filename="Projects/octopi/src/mainwindow_help.cpp" line="108"/>
|
||||
<location filename="Projects/octopi/src/mainwindow_help.cpp" line="219"/>
|
||||
<source>Package classification:</source>
|
||||
<translation>Paketo klasifikacija:</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="Projects/octopi/src/mainwindow_help.cpp" line="91"/>
|
||||
<location filename="Projects/octopi/src/mainwindow_help.cpp" line="111"/>
|
||||
<location filename="Projects/octopi/src/mainwindow_help.cpp" line="222"/>
|
||||
<source>An ignored package</source>
|
||||
<translation>Nepaisomas paketas</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="Projects/octopi/src/mainwindow_help.cpp" line="93"/>
|
||||
<location filename="Projects/octopi/src/mainwindow_help.cpp" line="113"/>
|
||||
<location filename="Projects/octopi/src/mainwindow_help.cpp" line="224"/>
|
||||
<source>An installed package</source>
|
||||
<translation>Įdiegtas paketas</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="Projects/octopi/src/mainwindow_help.cpp" line="95"/>
|
||||
<location filename="Projects/octopi/src/mainwindow_help.cpp" line="115"/>
|
||||
<location filename="Projects/octopi/src/mainwindow_help.cpp" line="226"/>
|
||||
<source>An installed package (not required by others)</source>
|
||||
<translation>Įdiegtas paketas (nereikalingas kitiems)</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="Projects/octopi/src/mainwindow_help.cpp" line="98"/>
|
||||
<location filename="Projects/octopi/src/mainwindow_help.cpp" line="118"/>
|
||||
<location filename="Projects/octopi/src/mainwindow_help.cpp" line="229"/>
|
||||
<source>A foreign package, installed from</source>
|
||||
<translation>Svetimas paketas, įdiegtas iš</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="Projects/octopi/src/mainwindow_help.cpp" line="101"/>
|
||||
<location filename="Projects/octopi/src/mainwindow_help.cpp" line="121"/>
|
||||
<location filename="Projects/octopi/src/mainwindow_help.cpp" line="232"/>
|
||||
<source>A non installed package</source>
|
||||
<translation>Neįdiegtas paketas</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="Projects/octopi/src/mainwindow_help.cpp" line="104"/>
|
||||
<location filename="Projects/octopi/src/mainwindow_help.cpp" line="124"/>
|
||||
<location filename="Projects/octopi/src/mainwindow_help.cpp" line="235"/>
|
||||
<source>An outdated package</source>
|
||||
<translation>Pasenęs paketas</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="Projects/octopi/src/mainwindow_help.cpp" line="107"/>
|
||||
<location filename="Projects/octopi/src/mainwindow_help.cpp" line="127"/>
|
||||
<location filename="Projects/octopi/src/mainwindow_help.cpp" line="238"/>
|
||||
<source>An outdated foreign package</source>
|
||||
<translation>Pasenęs svetimas paketas</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="Projects/octopi/src/mainwindow_help.cpp" line="110"/>
|
||||
<location filename="Projects/octopi/src/mainwindow_help.cpp" line="130"/>
|
||||
<location filename="Projects/octopi/src/mainwindow_help.cpp" line="241"/>
|
||||
<source>A newer version of this package is installed</source>
|
||||
<translation>Yra įdiegta naujesnė šio paketo versija</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="Projects/octopi/src/mainwindow_help.cpp" line="112"/>
|
||||
<location filename="Projects/octopi/src/mainwindow_help.cpp" line="133"/>
|
||||
<location filename="Projects/octopi/src/mainwindow_help.cpp" line="244"/>
|
||||
<source>Basic usage help:</source>
|
||||
<translation>Pagrindinė naudojimo pagalba:</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="Projects/octopi/src/mainwindow_help.cpp" line="114"/>
|
||||
<location filename="Projects/octopi/src/mainwindow_help.cpp" line="135"/>
|
||||
<location filename="Projects/octopi/src/mainwindow_help.cpp" line="246"/>
|
||||
<source>Position the mouse over a package to see its description</source>
|
||||
<translation>Užveskite pelę virš paketo, kad pamatyti jo aprašymą</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="Projects/octopi/src/mainwindow_help.cpp" line="116"/>
|
||||
<location filename="Projects/octopi/src/mainwindow_help.cpp" line="137"/>
|
||||
<location filename="Projects/octopi/src/mainwindow_help.cpp" line="248"/>
|
||||
<source>Double click an installed package to see its contents</source>
|
||||
<translation>Du kartus spustelėkite įdiegtą paketą, kad pamatyti jo turinį</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="Projects/octopi/src/mainwindow_help.cpp" line="118"/>
|
||||
<location filename="Projects/octopi/src/mainwindow_help.cpp" line="139"/>
|
||||
<location filename="Projects/octopi/src/mainwindow_help.cpp" line="250"/>
|
||||
<source>Right click package to install/reinstall or remove it</source>
|
||||
<translation>Spauskite dešinį pelės klavišą ant paketo, kad jį įdiegti/įdiegti iš naujo arba pašalinti</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="Projects/octopi/src/mainwindow_help.cpp" line="121"/>
|
||||
<location filename="Projects/octopi/src/mainwindow_help.cpp" line="142"/>
|
||||
<location filename="Projects/octopi/src/mainwindow_help.cpp" line="253"/>
|
||||
<source>Alt+key sequences:</source>
|
||||
<translation>Alt+klavišas sekos:</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="Projects/octopi/src/mainwindow_help.cpp" line="123"/>
|
||||
<location filename="Projects/octopi/src/mainwindow_help.cpp" line="144"/>
|
||||
<location filename="Projects/octopi/src/mainwindow_help.cpp" line="255"/>
|
||||
<source>Alt+1 to switch to 'Info' tab</source>
|
||||
<translation>Alt+1 pereiti į kortelę „Informacija“</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="Projects/octopi/src/mainwindow_help.cpp" line="125"/>
|
||||
<location filename="Projects/octopi/src/mainwindow_help.cpp" line="146"/>
|
||||
<location filename="Projects/octopi/src/mainwindow_help.cpp" line="257"/>
|
||||
<source>Alt+2 to switch to 'Files' tab</source>
|
||||
<translation>Alt+2 pereiti į kortelę „Failai“</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="Projects/octopi/src/mainwindow_help.cpp" line="127"/>
|
||||
<location filename="Projects/octopi/src/mainwindow_help.cpp" line="148"/>
|
||||
<location filename="Projects/octopi/src/mainwindow_help.cpp" line="259"/>
|
||||
<source>Alt+3 to switch to 'Actions' tab</source>
|
||||
<translation>Alt+3, kad būtų perjungta į „Veiksmų“ kortelę</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="Projects/octopi/src/mainwindow_help.cpp" line="129"/>
|
||||
<location filename="Projects/octopi/src/mainwindow_help.cpp" line="150"/>
|
||||
<location filename="Projects/octopi/src/mainwindow_help.cpp" line="261"/>
|
||||
<source>Alt+4 to switch to 'Output' tab</source>
|
||||
<translation>Alt+4 pereiti į kortelę „Išvestis“</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="Projects/octopi/src/mainwindow_help.cpp" line="131"/>
|
||||
<location filename="Projects/octopi/src/mainwindow_help.cpp" line="152"/>
|
||||
<location filename="Projects/octopi/src/mainwindow_help.cpp" line="263"/>
|
||||
<source>Alt+5 to switch to 'News' tab</source>
|
||||
<translation>Alt+5 pereiti į kortelę „Naujienos“</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="Projects/octopi/src/mainwindow_help.cpp" line="133"/>
|
||||
<location filename="Projects/octopi/src/mainwindow_help.cpp" line="154"/>
|
||||
<location filename="Projects/octopi/src/mainwindow_help.cpp" line="265"/>
|
||||
<source>Alt+6 or 'F1' to show this help page</source>
|
||||
<translation>Alt+6 arba „F1“, kad parodyti šį pagalbos puslapį</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="Projects/octopi/src/mainwindow_help.cpp" line="135"/>
|
||||
<location filename="Projects/octopi/src/mainwindow_help.cpp" line="156"/>
|
||||
<location filename="Projects/octopi/src/mainwindow_help.cpp" line="267"/>
|
||||
<source>Alt+7 to switch to 'Terminal' tab</source>
|
||||
<translation>Alt+7, kad būtų perjungta į „Terminalo“ kortelę</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="Projects/octopi/src/mainwindow_help.cpp" line="138"/>
|
||||
<location filename="Projects/octopi/src/mainwindow_help.cpp" line="159"/>
|
||||
<location filename="Projects/octopi/src/mainwindow_help.cpp" line="270"/>
|
||||
<source>Control+key sequences:</source>
|
||||
<translation>Ctrl+klavišas sekos:</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="Projects/octopi/src/mainwindow_help.cpp" line="140"/>
|
||||
<location filename="Projects/octopi/src/mainwindow_help.cpp" line="161"/>
|
||||
<location filename="Projects/octopi/src/mainwindow_help.cpp" line="272"/>
|
||||
<source>Ctrl+E or 'Actions/Cancel' to clear the selection of to be removed/installed packages</source>
|
||||
<translation>Ctrl+E arba „Veiksmai/Atsisakyti“, kad būtų išvalytas šalinamų/diegiamų paketų pasirinkimas</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="Projects/octopi/src/mainwindow_help.cpp" line="142"/>
|
||||
<location filename="Projects/octopi/src/mainwindow_help.cpp" line="163"/>
|
||||
<location filename="Projects/octopi/src/mainwindow_help.cpp" line="274"/>
|
||||
<source>Ctrl+F to search for text inside tab Files, News and Usage</source>
|
||||
<translation>Ctrl+F ieškoti teksto kortelėje „Failas“, „Naujienos“ ir “Naudojimas“</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="Projects/octopi/src/mainwindow_help.cpp" line="144"/>
|
||||
<location filename="Projects/octopi/src/mainwindow_help.cpp" line="165"/>
|
||||
<location filename="Projects/octopi/src/mainwindow_help.cpp" line="276"/>
|
||||
<source>Ctrl+G or 'File/Get latest distro news' to retrieve the latest RSS based distro news</source>
|
||||
<translation>Ctrl+G arba „Failas/Gauti naujausias naujienas“, kad gauti vėliausias RSS pagrįstas distribucijos naujienas</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="Projects/octopi/src/mainwindow_help.cpp" line="146"/>
|
||||
<location filename="Projects/octopi/src/mainwindow_help.cpp" line="167"/>
|
||||
<location filename="Projects/octopi/src/mainwindow_help.cpp" line="278"/>
|
||||
<source>Ctrl+K or 'File/Check updates' to check mirror for latest updates (checkupdates)</source>
|
||||
<translation>Ctrl+K arba „Failas/Tikrinti, ar yra atnaujinimų“, kad tinklavietėje būtų patikrinti paskiausi atnaujinimai (checkupdates)</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="Projects/octopi/src/mainwindow_help.cpp" line="148"/>
|
||||
<location filename="Projects/octopi/src/mainwindow_help.cpp" line="169"/>
|
||||
<location filename="Projects/octopi/src/mainwindow_help.cpp" line="280"/>
|
||||
<source>Ctrl+L to find a package in the package list</source>
|
||||
<translation>Ctrl+L, kad rasti paketą sąraše</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="Projects/octopi/src/mainwindow_help.cpp" line="150"/>
|
||||
<location filename="Projects/octopi/src/mainwindow_help.cpp" line="171"/>
|
||||
<location filename="Projects/octopi/src/mainwindow_help.cpp" line="282"/>
|
||||
<source>Ctrl+P to go to package list</source>
|
||||
<translation>Ctrl+P, kad būtų pereita į paketų sąrašą</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="Projects/octopi/src/mainwindow_help.cpp" line="152"/>
|
||||
<location filename="Projects/octopi/src/mainwindow_help.cpp" line="173"/>
|
||||
<location filename="Projects/octopi/src/mainwindow_help.cpp" line="284"/>
|
||||
<source>Ctrl+Q or 'File/Exit' to exit the application</source>
|
||||
<translation>Ctrl+Q arba „Failas/Išeiti, kad uždaryti programą</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="Projects/octopi/src/mainwindow_help.cpp" line="154"/>
|
||||
<location filename="Projects/octopi/src/mainwindow_help.cpp" line="175"/>
|
||||
<location filename="Projects/octopi/src/mainwindow_help.cpp" line="286"/>
|
||||
<source>Ctrl+U or 'File/System upgrade' to make a full system upgrade (pacman -Su)</source>
|
||||
<translation>Ctrl+U arba „Failas/Sistemos naujinimas“, kad būtų atliktas pilnas sistemos naujinimas (pacman -Su)</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="Projects/octopi/src/mainwindow_help.cpp" line="156"/>
|
||||
<location filename="Projects/octopi/src/mainwindow_help.cpp" line="177"/>
|
||||
<location filename="Projects/octopi/src/mainwindow_help.cpp" line="288"/>
|
||||
<source>Ctrl+Y or 'Actions/Apply' to start installation/removal of selected packages</source>
|
||||
<translation>Ctrl+Y arba „Veiksmai/Taikyti“, kad būtų pradėtas pasirinktų paketų įdiegimas/šalinimas</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="Projects/octopi/src/mainwindow_help.cpp" line="159"/>
|
||||
<location filename="Projects/octopi/src/mainwindow_help.cpp" line="180"/>
|
||||
<location filename="Projects/octopi/src/mainwindow_help.cpp" line="291"/>
|
||||
<source>Control+shift+key sequences:</source>
|
||||
<translation>Ctrl+shift+klavišas sekos:</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="Projects/octopi/src/mainwindow_help.cpp" line="163"/>
|
||||
<location filename="Projects/octopi/src/mainwindow_help.cpp" line="184"/>
|
||||
<location filename="Projects/octopi/src/mainwindow_help.cpp" line="295"/>
|
||||
<source>Ctrl+Shift+G to display all package groups</source>
|
||||
<translation>Ctrl+Shift+G, kad rodyti visas paketų grupes</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="Projects/octopi/src/mainwindow_help.cpp" line="168"/>
|
||||
<location filename="Projects/octopi/src/mainwindow_help.cpp" line="189"/>
|
||||
<location filename="Projects/octopi/src/mainwindow_help.cpp" line="300"/>
|
||||
<source>Ctrl+Shift+U to upgrade outdated %1 packages</source>
|
||||
<translation>Ctrl+Shift+U, kad būtų atnaujinti pasenę %1 paketai</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="Projects/octopi/src/mainwindow_help.cpp" line="170"/>
|
||||
<location filename="Projects/octopi/src/mainwindow_help.cpp" line="191"/>
|
||||
<location filename="Projects/octopi/src/mainwindow_help.cpp" line="302"/>
|
||||
<source>Ctrl+Shift+Y to display %1 group</source>
|
||||
<translation>Ctrl+Shift+Y, kad rodyti %1 grupę</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="Projects/octopi/src/mainwindow_help.cpp" line="173"/>
|
||||
<location filename="Projects/octopi/src/mainwindow_help.cpp" line="194"/>
|
||||
<location filename="Projects/octopi/src/mainwindow_help.cpp" line="305"/>
|
||||
<source>F+key sequences:</source>
|
||||
<translation>F+klavišas sekos:</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="Projects/octopi/src/mainwindow_help.cpp" line="175"/>
|
||||
<location filename="Projects/octopi/src/mainwindow_help.cpp" line="196"/>
|
||||
<location filename="Projects/octopi/src/mainwindow_help.cpp" line="307"/>
|
||||
<source>F1 to show this help page</source>
|
||||
<translation>F1, kad parodyti šį pagalbos puslapį</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="Projects/octopi/src/mainwindow_help.cpp" line="177"/>
|
||||
<location filename="Projects/octopi/src/mainwindow_help.cpp" line="198"/>
|
||||
<location filename="Projects/octopi/src/mainwindow_help.cpp" line="309"/>
|
||||
<source>F4 to open a Terminal whitin the selected directory at Files tab</source>
|
||||
<translation>F4, kad atverti Terminalą „Failai“ kortelėje pažymėtame kataloge</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="Projects/octopi/src/mainwindow_help.cpp" line="179"/>
|
||||
<location filename="Projects/octopi/src/mainwindow_help.cpp" line="200"/>
|
||||
<location filename="Projects/octopi/src/mainwindow_help.cpp" line="311"/>
|
||||
<source>F6 to open a File Manager whitin the selected directory at Files tab</source>
|
||||
<translation>F6, kad atverti failų tvarkyklę „Failai“ kortelėje pažymėtame kataloge</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="Projects/octopi/src/mainwindow_help.cpp" line="181"/>
|
||||
<location filename="Projects/octopi/src/mainwindow_help.cpp" line="202"/>
|
||||
<location filename="Projects/octopi/src/mainwindow_help.cpp" line="313"/>
|
||||
<source>F10 to maximize/demaximize package list view</source>
|
||||
<translation>F10, kad išdidinti/sumažinti paketų sąrašo rodymą</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="Projects/octopi/src/mainwindow_help.cpp" line="183"/>
|
||||
<location filename="Projects/octopi/src/mainwindow_help.cpp" line="204"/>
|
||||
<location filename="Projects/octopi/src/mainwindow_help.cpp" line="315"/>
|
||||
<source>F11 to maximize/demaximize Tab's view</source>
|
||||
<translation>F11, norint išdidinti/sumažinti kortelės rodinį</translation>
|
||||
</message>
|
||||
@@ -518,139 +563,154 @@
|
||||
<translation>Įjungti sistemos naujinimo patvirtinimo dialogą</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="Projects/octopi/ui/optionsdialog.ui" line="199"/>
|
||||
<location filename="Projects/octopi/ui/optionsdialog.ui" line="197"/>
|
||||
<source>Increase text spacing in the main interface</source>
|
||||
<translation>Padidinti atstumą tarp teksto pagrindinėje sąsajoje</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="Projects/octopi/ui/optionsdialog.ui" line="212"/>
|
||||
<source>Use alternating row colors</source>
|
||||
<translation>Naudoti kintamas eilučių spalvas</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="Projects/octopi/ui/optionsdialog.ui" line="212"/>
|
||||
<source>Show "Licenses" column</source>
|
||||
<translation>Rodyti „Licencijų“ stulpelį</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="Projects/octopi/ui/optionsdialog.ui" line="225"/>
|
||||
<source>Show "Installed Size" column</source>
|
||||
<translation>Rodyti „Dydis įdiegus“ stulpelį</translation>
|
||||
<source>Show "Licenses" column</source>
|
||||
<translation>Rodyti stulpelį „Licencijos“</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="Projects/octopi/ui/optionsdialog.ui" line="238"/>
|
||||
<source>Show "Build Date" column</source>
|
||||
<translation>Rodyti „Kompiliavimo data“ stulpelį</translation>
|
||||
<source>Show "Installed Size" column</source>
|
||||
<translation>Rodyti stulpelį „Dydis įdiegus“</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="Projects/octopi/ui/optionsdialog.ui" line="251"/>
|
||||
<source>Show "Install Date" column</source>
|
||||
<translation>Rodyti „Įdiegimo data“ stulpelį</translation>
|
||||
<source>Show "Build Date" column</source>
|
||||
<translation>Rodyti stulpelį „Kompiliavimo data“</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="Projects/octopi/ui/optionsdialog.ui" line="264"/>
|
||||
<source>Show "Install Reason" column</source>
|
||||
<translation>Rodyti „Įdiegimo priežastis“ stulpelį</translation>
|
||||
<source>Show "Install Date" column</source>
|
||||
<translation>Rodyti stulpelį „Įdiegimo data“</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="Projects/octopi/ui/optionsdialog.ui" line="277"/>
|
||||
<source>Show "Install Reason" column</source>
|
||||
<translation>Rodyti stulpelį „Įdiegimo priežastis“</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="Projects/octopi/ui/optionsdialog.ui" line="290"/>
|
||||
<source>Enable package tooltips</source>
|
||||
<translation>Įjungti paketų paaiškinimus</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="Projects/octopi/ui/optionsdialog.ui" line="311"/>
|
||||
<location filename="Projects/octopi/ui/optionsdialog.ui" line="303"/>
|
||||
<source>Show "Repository" column</source>
|
||||
<translation>Rodyti stulpelį „Saugykla“</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="Projects/octopi/ui/optionsdialog.ui" line="316"/>
|
||||
<source>Show "Download Size" column</source>
|
||||
<translation>Rodyti stulpelį „Atsiuntimo dydis“</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="Projects/octopi/ui/optionsdialog.ui" line="350"/>
|
||||
<source>Select the AUR tool Octopi should use</source>
|
||||
<translation>Pasirinkite AUR įrankį, kurį Octopi turėtų naudoti</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="Projects/octopi/ui/optionsdialog.ui" line="392"/>
|
||||
<source>Search for outdated AUR packages</source>
|
||||
<translation>Ieškoti pasenusių AUR paketų</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="Projects/octopi/ui/optionsdialog.ui" line="458"/>
|
||||
<location filename="Projects/octopi/ui/optionsdialog.ui" line="476"/>
|
||||
<source>User name</source>
|
||||
<translation>Naudotojo vardas</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="Projects/octopi/ui/optionsdialog.ui" line="471"/>
|
||||
<location filename="Projects/octopi/ui/optionsdialog.ui" line="489"/>
|
||||
<source>Password</source>
|
||||
<translation>Slaptažodis</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="Projects/octopi/ui/optionsdialog.ui" line="489"/>
|
||||
<location filename="Projects/octopi/ui/optionsdialog.ui" line="507"/>
|
||||
<source>Register</source>
|
||||
<translation>Registruotis</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="Projects/octopi/ui/optionsdialog.ui" line="507"/>
|
||||
<location filename="Projects/octopi/ui/optionsdialog.ui" line="525"/>
|
||||
<source>Connect</source>
|
||||
<translation>Prisijungti</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="Projects/octopi/ui/optionsdialog.ui" line="526"/>
|
||||
<location filename="Projects/octopi/ui/optionsdialog.ui" line="544"/>
|
||||
<source>Enable AUR voting</source>
|
||||
<translation>Įjungti balsavimą AUR</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="Projects/octopi/ui/optionsdialog.ui" line="547"/>
|
||||
<location filename="Projects/octopi/ui/optionsdialog.ui" line="565"/>
|
||||
<source>AUR packages are user produced content.
|
||||
Any use of the provided files is at your own risk.</source>
|
||||
<translation>AUR paketai yra naudotojų kuriamas turinys.
|
||||
Naudodami bet kokius pateiktus failus, prisiimate visą riziką.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="Projects/octopi/ui/optionsdialog.ui" line="608"/>
|
||||
<location filename="Projects/octopi/ui/optionsdialog.ui" line="626"/>
|
||||
<source>Build directory</source>
|
||||
<translation>Kompiliavimo katalogas</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="Projects/octopi/ui/optionsdialog.ui" line="724"/>
|
||||
<location filename="Projects/octopi/ui/optionsdialog.ui" line="742"/>
|
||||
<source>Select the backend Octopi should use</source>
|
||||
<translation>Pasirinkite vidinę pusę, kurią Octopi turėtų naudoti</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="Projects/octopi/ui/optionsdialog.ui" line="767"/>
|
||||
<location filename="Projects/octopi/ui/optionsdialog.ui" line="785"/>
|
||||
<source>Use default notification icons</source>
|
||||
<translation>Naudoti numatytąsias pranešimų piktogramas</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="Projects/octopi/ui/optionsdialog.ui" line="842"/>
|
||||
<location filename="Projects/octopi/ui/optionsdialog.ui" line="860"/>
|
||||
<source>Red icon</source>
|
||||
<translation>Raudona piktograma</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="Projects/octopi/ui/optionsdialog.ui" line="932"/>
|
||||
<location filename="Projects/octopi/ui/optionsdialog.ui" line="950"/>
|
||||
<source>Busy icon</source>
|
||||
<translation>Užimtumo piktograma</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="Projects/octopi/ui/optionsdialog.ui" line="1001"/>
|
||||
<location filename="Projects/octopi/ui/optionsdialog.ui" line="1019"/>
|
||||
<source>Yellow icon</source>
|
||||
<translation>Geltona piktograma</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="Projects/octopi/ui/optionsdialog.ui" line="1085"/>
|
||||
<location filename="Projects/octopi/ui/optionsdialog.ui" line="1103"/>
|
||||
<source>Green icon</source>
|
||||
<translation>Žalia piktograma</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="Projects/octopi/ui/optionsdialog.ui" line="1410"/>
|
||||
<location filename="Projects/octopi/ui/optionsdialog.ui" line="1402"/>
|
||||
<source>Search for outdated AUR packages</source>
|
||||
<translation>Ieškoti pasenusių AUR paketų</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="Projects/octopi/ui/optionsdialog.ui" line="1452"/>
|
||||
<source>Color Scheme</source>
|
||||
<translation>Spalvų rinkinys</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="Projects/octopi/ui/optionsdialog.ui" line="1423"/>
|
||||
<location filename="Projects/octopi/ui/optionsdialog.ui" line="1465"/>
|
||||
<source>Font Family</source>
|
||||
<translation>Šriftų šeima</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="Projects/octopi/ui/optionsdialog.ui" line="1456"/>
|
||||
<location filename="Projects/octopi/ui/optionsdialog.ui" line="1498"/>
|
||||
<source>Font Size</source>
|
||||
<translation>Šrifto dydis</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="Projects/octopi/ui/optionsdialog.ui" line="1479"/>
|
||||
<location filename="Projects/octopi/ui/optionsdialog.ui" line="1521"/>
|
||||
<source>Play a bell sound when prompting for the root password in the terminal</source>
|
||||
<translation>Atkurti skambučio garsą, kai terminale prašoma root slaptažodžio</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="Projects/octopi/ui/optionsdialog.ui" line="1492"/>
|
||||
<location filename="Projects/octopi/ui/optionsdialog.ui" line="1534"/>
|
||||
<source>Force use of BASH shell</source>
|
||||
<translation>Priverstinai naudoti BASH apvalkalą</translation>
|
||||
</message>
|
||||
@@ -702,12 +762,12 @@ Naudodami bet kokius pateiktus failus, prisiimate visą riziką.</translation>
|
||||
<translation>Terminalas</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="Projects/octopi/src/optionsdialog.cpp" line="215"/>
|
||||
<location filename="Projects/octopi/src/optionsdialog.cpp" line="218"/>
|
||||
<source>Ok</source>
|
||||
<translation>Gerai</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="Projects/octopi/src/optionsdialog.cpp" line="216"/>
|
||||
<location filename="Projects/octopi/src/optionsdialog.cpp" line="219"/>
|
||||
<source>Cancel</source>
|
||||
<translation>Atsisakyti</translation>
|
||||
</message>
|
||||
|
||||
Binary file not shown.
@@ -605,7 +605,7 @@
|
||||
<message>
|
||||
<location filename="Projects/octopi/ui/optionsdialog.ui" line="303"/>
|
||||
<source>Show "Repository" column</source>
|
||||
<translation>Exibir a coluna "Respositório"</translation>
|
||||
<translation>Exibir a coluna "Repositório"</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="Projects/octopi/ui/optionsdialog.ui" line="316"/>
|
||||
|
||||
Binary file not shown.
File diff suppressed because it is too large
Load Diff
Binary file not shown.
@@ -255,232 +255,277 @@
|
||||
<translation>已忽略</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="Projects/octopi/src/mainwindow_help.cpp" line="64"/>
|
||||
<location filename="Projects/octopi/src/mainwindow_help.cpp" line="66"/>
|
||||
<location filename="Projects/octopi/src/mainwindow_help.cpp" line="71"/>
|
||||
<source>Ctrl+Shift+O to display outdated %1 packages</source>
|
||||
<translation>Ctrl+Shift+O 以顯示過期的 %1 軟體包</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="Projects/octopi/src/mainwindow_help.cpp" line="72"/>
|
||||
<location filename="Projects/octopi/src/mainwindow_help.cpp" line="82"/>
|
||||
<location filename="Projects/octopi/src/mainwindow_help.cpp" line="87"/>
|
||||
<source>Ctrl+Shift+A to display AUR voted package list</source>
|
||||
<translation>Ctrl+Shift+A 以顯示 AUR 已投票的軟體包列表</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="Projects/octopi/src/mainwindow_help.cpp" line="77"/>
|
||||
<location filename="Projects/octopi/src/mainwindow_help.cpp" line="93"/>
|
||||
<source>For more information, visit:</source>
|
||||
<translation>若要獲得更多資訊,請至:</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="Projects/octopi/src/mainwindow_help.cpp" line="80"/>
|
||||
<location filename="Projects/octopi/src/mainwindow_help.cpp" line="100"/>
|
||||
<location filename="Projects/octopi/src/mainwindow_help.cpp" line="211"/>
|
||||
<source>A Qt-based Pacman frontend,</source>
|
||||
<translation>一個基於 Qt 的 Pacman 前端。</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="Projects/octopi/src/mainwindow_help.cpp" line="81"/>
|
||||
<location filename="Projects/octopi/src/mainwindow_help.cpp" line="101"/>
|
||||
<location filename="Projects/octopi/src/mainwindow_help.cpp" line="212"/>
|
||||
<source>licensed under the terms of</source>
|
||||
<translation>以下列條款授權</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="Projects/octopi/src/mainwindow_help.cpp" line="88"/>
|
||||
<location filename="Projects/octopi/src/mainwindow_help.cpp" line="108"/>
|
||||
<location filename="Projects/octopi/src/mainwindow_help.cpp" line="219"/>
|
||||
<source>Package classification:</source>
|
||||
<translation>套件說明:</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="Projects/octopi/src/mainwindow_help.cpp" line="91"/>
|
||||
<location filename="Projects/octopi/src/mainwindow_help.cpp" line="111"/>
|
||||
<location filename="Projects/octopi/src/mainwindow_help.cpp" line="222"/>
|
||||
<source>An ignored package</source>
|
||||
<translation>已忽略的軟體包</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="Projects/octopi/src/mainwindow_help.cpp" line="93"/>
|
||||
<location filename="Projects/octopi/src/mainwindow_help.cpp" line="113"/>
|
||||
<location filename="Projects/octopi/src/mainwindow_help.cpp" line="224"/>
|
||||
<source>An installed package</source>
|
||||
<translation>一個已安裝的套件</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="Projects/octopi/src/mainwindow_help.cpp" line="95"/>
|
||||
<location filename="Projects/octopi/src/mainwindow_help.cpp" line="115"/>
|
||||
<location filename="Projects/octopi/src/mainwindow_help.cpp" line="226"/>
|
||||
<source>An installed package (not required by others)</source>
|
||||
<translation>一個已安裝的套件(孤立的)</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="Projects/octopi/src/mainwindow_help.cpp" line="98"/>
|
||||
<location filename="Projects/octopi/src/mainwindow_help.cpp" line="118"/>
|
||||
<location filename="Projects/octopi/src/mainwindow_help.cpp" line="229"/>
|
||||
<source>A foreign package, installed from</source>
|
||||
<translation>一個外來的套件,安裝從</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="Projects/octopi/src/mainwindow_help.cpp" line="101"/>
|
||||
<location filename="Projects/octopi/src/mainwindow_help.cpp" line="121"/>
|
||||
<location filename="Projects/octopi/src/mainwindow_help.cpp" line="232"/>
|
||||
<source>A non installed package</source>
|
||||
<translation>一個未安裝的套件</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="Projects/octopi/src/mainwindow_help.cpp" line="104"/>
|
||||
<location filename="Projects/octopi/src/mainwindow_help.cpp" line="124"/>
|
||||
<location filename="Projects/octopi/src/mainwindow_help.cpp" line="235"/>
|
||||
<source>An outdated package</source>
|
||||
<translation>一個過期的套件</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="Projects/octopi/src/mainwindow_help.cpp" line="107"/>
|
||||
<location filename="Projects/octopi/src/mainwindow_help.cpp" line="127"/>
|
||||
<location filename="Projects/octopi/src/mainwindow_help.cpp" line="238"/>
|
||||
<source>An outdated foreign package</source>
|
||||
<translation>一個過期的外部套件</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="Projects/octopi/src/mainwindow_help.cpp" line="110"/>
|
||||
<location filename="Projects/octopi/src/mainwindow_help.cpp" line="130"/>
|
||||
<location filename="Projects/octopi/src/mainwindow_help.cpp" line="241"/>
|
||||
<source>A newer version of this package is installed</source>
|
||||
<translation>此軟體包的較新版本已安裝</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="Projects/octopi/src/mainwindow_help.cpp" line="112"/>
|
||||
<location filename="Projects/octopi/src/mainwindow_help.cpp" line="133"/>
|
||||
<location filename="Projects/octopi/src/mainwindow_help.cpp" line="244"/>
|
||||
<source>Basic usage help:</source>
|
||||
<translation>基本使用說明:</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="Projects/octopi/src/mainwindow_help.cpp" line="114"/>
|
||||
<location filename="Projects/octopi/src/mainwindow_help.cpp" line="135"/>
|
||||
<location filename="Projects/octopi/src/mainwindow_help.cpp" line="246"/>
|
||||
<source>Position the mouse over a package to see its description</source>
|
||||
<translation>移動滑鼠到套件上瀏覽套件說明</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="Projects/octopi/src/mainwindow_help.cpp" line="116"/>
|
||||
<location filename="Projects/octopi/src/mainwindow_help.cpp" line="137"/>
|
||||
<location filename="Projects/octopi/src/mainwindow_help.cpp" line="248"/>
|
||||
<source>Double click an installed package to see its contents</source>
|
||||
<translation>雙擊以安裝的套件以察看其安裝目錄</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="Projects/octopi/src/mainwindow_help.cpp" line="118"/>
|
||||
<location filename="Projects/octopi/src/mainwindow_help.cpp" line="139"/>
|
||||
<location filename="Projects/octopi/src/mainwindow_help.cpp" line="250"/>
|
||||
<source>Right click package to install/reinstall or remove it</source>
|
||||
<translation>右鍵點選套件以安裝/重新安裝或者移除之</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="Projects/octopi/src/mainwindow_help.cpp" line="121"/>
|
||||
<location filename="Projects/octopi/src/mainwindow_help.cpp" line="142"/>
|
||||
<location filename="Projects/octopi/src/mainwindow_help.cpp" line="253"/>
|
||||
<source>Alt+key sequences:</source>
|
||||
<translation>Alt+按鍵:</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="Projects/octopi/src/mainwindow_help.cpp" line="123"/>
|
||||
<location filename="Projects/octopi/src/mainwindow_help.cpp" line="144"/>
|
||||
<location filename="Projects/octopi/src/mainwindow_help.cpp" line="255"/>
|
||||
<source>Alt+1 to switch to 'Info' tab</source>
|
||||
<translation>Alt+1 切換到「訊息」分頁</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="Projects/octopi/src/mainwindow_help.cpp" line="125"/>
|
||||
<location filename="Projects/octopi/src/mainwindow_help.cpp" line="146"/>
|
||||
<location filename="Projects/octopi/src/mainwindow_help.cpp" line="257"/>
|
||||
<source>Alt+2 to switch to 'Files' tab</source>
|
||||
<translation>Alt+2 切換到「檔案」分頁</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="Projects/octopi/src/mainwindow_help.cpp" line="127"/>
|
||||
<location filename="Projects/octopi/src/mainwindow_help.cpp" line="148"/>
|
||||
<location filename="Projects/octopi/src/mainwindow_help.cpp" line="259"/>
|
||||
<source>Alt+3 to switch to 'Actions' tab</source>
|
||||
<translation>Alt+3 以切換到「動作」分頁</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="Projects/octopi/src/mainwindow_help.cpp" line="129"/>
|
||||
<location filename="Projects/octopi/src/mainwindow_help.cpp" line="150"/>
|
||||
<location filename="Projects/octopi/src/mainwindow_help.cpp" line="261"/>
|
||||
<source>Alt+4 to switch to 'Output' tab</source>
|
||||
<translation>Alt+4 切換到「輸出」分頁</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="Projects/octopi/src/mainwindow_help.cpp" line="131"/>
|
||||
<location filename="Projects/octopi/src/mainwindow_help.cpp" line="152"/>
|
||||
<location filename="Projects/octopi/src/mainwindow_help.cpp" line="263"/>
|
||||
<source>Alt+5 to switch to 'News' tab</source>
|
||||
<translation>Alt+5 切換到「訊息」分頁</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="Projects/octopi/src/mainwindow_help.cpp" line="133"/>
|
||||
<location filename="Projects/octopi/src/mainwindow_help.cpp" line="154"/>
|
||||
<location filename="Projects/octopi/src/mainwindow_help.cpp" line="265"/>
|
||||
<source>Alt+6 or 'F1' to show this help page</source>
|
||||
<translation>Alt+6 或 F1 以顯示這個幫助頁面</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="Projects/octopi/src/mainwindow_help.cpp" line="135"/>
|
||||
<location filename="Projects/octopi/src/mainwindow_help.cpp" line="156"/>
|
||||
<location filename="Projects/octopi/src/mainwindow_help.cpp" line="267"/>
|
||||
<source>Alt+7 to switch to 'Terminal' tab</source>
|
||||
<translation>Alt+7 切換到「終端機」分頁</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="Projects/octopi/src/mainwindow_help.cpp" line="138"/>
|
||||
<location filename="Projects/octopi/src/mainwindow_help.cpp" line="159"/>
|
||||
<location filename="Projects/octopi/src/mainwindow_help.cpp" line="270"/>
|
||||
<source>Control+key sequences:</source>
|
||||
<translation>Ctrl+按鍵:</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="Projects/octopi/src/mainwindow_help.cpp" line="140"/>
|
||||
<location filename="Projects/octopi/src/mainwindow_help.cpp" line="161"/>
|
||||
<location filename="Projects/octopi/src/mainwindow_help.cpp" line="272"/>
|
||||
<source>Ctrl+E or 'Actions/Cancel' to clear the selection of to be removed/installed packages</source>
|
||||
<translation>Ctrl+E 或 「動作/取消」 以取消選取即將移除/安裝的套件</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="Projects/octopi/src/mainwindow_help.cpp" line="142"/>
|
||||
<location filename="Projects/octopi/src/mainwindow_help.cpp" line="163"/>
|
||||
<location filename="Projects/octopi/src/mainwindow_help.cpp" line="274"/>
|
||||
<source>Ctrl+F to search for text inside tab Files, News and Usage</source>
|
||||
<translation>Ctrl+F 以搜尋在頁籤內的檔案,新聞以及使用方法</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="Projects/octopi/src/mainwindow_help.cpp" line="144"/>
|
||||
<location filename="Projects/octopi/src/mainwindow_help.cpp" line="165"/>
|
||||
<location filename="Projects/octopi/src/mainwindow_help.cpp" line="276"/>
|
||||
<source>Ctrl+G or 'File/Get latest distro news' to retrieve the latest RSS based distro news</source>
|
||||
<translation>Ctrl+G 或者「檔案/獲得最新的發行版訊息」以取得最新的發行版訊息的 RSS 更新</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="Projects/octopi/src/mainwindow_help.cpp" line="146"/>
|
||||
<location filename="Projects/octopi/src/mainwindow_help.cpp" line="167"/>
|
||||
<location filename="Projects/octopi/src/mainwindow_help.cpp" line="278"/>
|
||||
<source>Ctrl+K or 'File/Check updates' to check mirror for latest updates (checkupdates)</source>
|
||||
<translation>Ctrl+K 或「檔案/檢查更新」以檢查鏡像的最新更新 (checkupdates)</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="Projects/octopi/src/mainwindow_help.cpp" line="148"/>
|
||||
<location filename="Projects/octopi/src/mainwindow_help.cpp" line="169"/>
|
||||
<location filename="Projects/octopi/src/mainwindow_help.cpp" line="280"/>
|
||||
<source>Ctrl+L to find a package in the package list</source>
|
||||
<translation>Ctrl+L 以在套件清單中搜尋套件</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="Projects/octopi/src/mainwindow_help.cpp" line="150"/>
|
||||
<location filename="Projects/octopi/src/mainwindow_help.cpp" line="171"/>
|
||||
<location filename="Projects/octopi/src/mainwindow_help.cpp" line="282"/>
|
||||
<source>Ctrl+P to go to package list</source>
|
||||
<translation>Ctrl+P 轉到軟體包列表</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="Projects/octopi/src/mainwindow_help.cpp" line="152"/>
|
||||
<location filename="Projects/octopi/src/mainwindow_help.cpp" line="173"/>
|
||||
<location filename="Projects/octopi/src/mainwindow_help.cpp" line="284"/>
|
||||
<source>Ctrl+Q or 'File/Exit' to exit the application</source>
|
||||
<translation>Ctrl+Q 或 「檔案/離開」 以結束程式</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="Projects/octopi/src/mainwindow_help.cpp" line="154"/>
|
||||
<location filename="Projects/octopi/src/mainwindow_help.cpp" line="175"/>
|
||||
<location filename="Projects/octopi/src/mainwindow_help.cpp" line="286"/>
|
||||
<source>Ctrl+U or 'File/System upgrade' to make a full system upgrade (pacman -Su)</source>
|
||||
<translation>Ctrl+U 或「檔案/系統升級」 以執行全系統升級 (pacman -Su)</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="Projects/octopi/src/mainwindow_help.cpp" line="156"/>
|
||||
<location filename="Projects/octopi/src/mainwindow_help.cpp" line="177"/>
|
||||
<location filename="Projects/octopi/src/mainwindow_help.cpp" line="288"/>
|
||||
<source>Ctrl+Y or 'Actions/Apply' to start installation/removal of selected packages</source>
|
||||
<translation>Ctrl+Y 或「動作/套用」以開始安裝/移除選取的套件</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="Projects/octopi/src/mainwindow_help.cpp" line="159"/>
|
||||
<location filename="Projects/octopi/src/mainwindow_help.cpp" line="180"/>
|
||||
<location filename="Projects/octopi/src/mainwindow_help.cpp" line="291"/>
|
||||
<source>Control+shift+key sequences:</source>
|
||||
<translation>Ctrl+Shift+按鍵:</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="Projects/octopi/src/mainwindow_help.cpp" line="163"/>
|
||||
<location filename="Projects/octopi/src/mainwindow_help.cpp" line="184"/>
|
||||
<location filename="Projects/octopi/src/mainwindow_help.cpp" line="295"/>
|
||||
<source>Ctrl+Shift+G to display all package groups</source>
|
||||
<translation>Ctrl+Shift+G 以顯示所有套件群組</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="Projects/octopi/src/mainwindow_help.cpp" line="168"/>
|
||||
<location filename="Projects/octopi/src/mainwindow_help.cpp" line="189"/>
|
||||
<location filename="Projects/octopi/src/mainwindow_help.cpp" line="300"/>
|
||||
<source>Ctrl+Shift+U to upgrade outdated %1 packages</source>
|
||||
<translation>Ctrl+Shift+U 以升級過期的 %1 軟體包</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="Projects/octopi/src/mainwindow_help.cpp" line="170"/>
|
||||
<location filename="Projects/octopi/src/mainwindow_help.cpp" line="191"/>
|
||||
<location filename="Projects/octopi/src/mainwindow_help.cpp" line="302"/>
|
||||
<source>Ctrl+Shift+Y to display %1 group</source>
|
||||
<translation>Ctrl+Shift+Y 以顯示 %1 群組</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="Projects/octopi/src/mainwindow_help.cpp" line="173"/>
|
||||
<location filename="Projects/octopi/src/mainwindow_help.cpp" line="194"/>
|
||||
<location filename="Projects/octopi/src/mainwindow_help.cpp" line="305"/>
|
||||
<source>F+key sequences:</source>
|
||||
<translation>F按鍵:</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="Projects/octopi/src/mainwindow_help.cpp" line="175"/>
|
||||
<location filename="Projects/octopi/src/mainwindow_help.cpp" line="196"/>
|
||||
<location filename="Projects/octopi/src/mainwindow_help.cpp" line="307"/>
|
||||
<source>F1 to show this help page</source>
|
||||
<translation>F1 以顯示這個說明頁</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="Projects/octopi/src/mainwindow_help.cpp" line="177"/>
|
||||
<location filename="Projects/octopi/src/mainwindow_help.cpp" line="198"/>
|
||||
<location filename="Projects/octopi/src/mainwindow_help.cpp" line="309"/>
|
||||
<source>F4 to open a Terminal whitin the selected directory at Files tab</source>
|
||||
<translation>F4 以在選取的目錄下開啟終端機</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="Projects/octopi/src/mainwindow_help.cpp" line="179"/>
|
||||
<location filename="Projects/octopi/src/mainwindow_help.cpp" line="200"/>
|
||||
<location filename="Projects/octopi/src/mainwindow_help.cpp" line="311"/>
|
||||
<source>F6 to open a File Manager whitin the selected directory at Files tab</source>
|
||||
<translation>F6 以在選取的目錄下開啟檔案管理員</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="Projects/octopi/src/mainwindow_help.cpp" line="181"/>
|
||||
<location filename="Projects/octopi/src/mainwindow_help.cpp" line="202"/>
|
||||
<location filename="Projects/octopi/src/mainwindow_help.cpp" line="313"/>
|
||||
<source>F10 to maximize/demaximize package list view</source>
|
||||
<translation>F10 以最大化/取消最大化檢視套件列表</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="Projects/octopi/src/mainwindow_help.cpp" line="183"/>
|
||||
<location filename="Projects/octopi/src/mainwindow_help.cpp" line="204"/>
|
||||
<location filename="Projects/octopi/src/mainwindow_help.cpp" line="315"/>
|
||||
<source>F11 to maximize/demaximize Tab's view</source>
|
||||
<translation>F11 以最大化/取消最大化分頁檢視</translation>
|
||||
</message>
|
||||
@@ -518,139 +563,154 @@
|
||||
<translation>在系統升級中啟用確認對話框</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="Projects/octopi/ui/optionsdialog.ui" line="199"/>
|
||||
<location filename="Projects/octopi/ui/optionsdialog.ui" line="197"/>
|
||||
<source>Increase text spacing in the main interface</source>
|
||||
<translation>增加主介面中的文字間距</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="Projects/octopi/ui/optionsdialog.ui" line="212"/>
|
||||
<source>Use alternating row colors</source>
|
||||
<translation>使用交替色彩</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="Projects/octopi/ui/optionsdialog.ui" line="212"/>
|
||||
<location filename="Projects/octopi/ui/optionsdialog.ui" line="225"/>
|
||||
<source>Show "Licenses" column</source>
|
||||
<translation>顯示「授權條款」欄位</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="Projects/octopi/ui/optionsdialog.ui" line="225"/>
|
||||
<location filename="Projects/octopi/ui/optionsdialog.ui" line="238"/>
|
||||
<source>Show "Installed Size" column</source>
|
||||
<translation>顯示「已安裝大小」欄位</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="Projects/octopi/ui/optionsdialog.ui" line="238"/>
|
||||
<location filename="Projects/octopi/ui/optionsdialog.ui" line="251"/>
|
||||
<source>Show "Build Date" column</source>
|
||||
<translation>顯示「建構日期」欄位</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="Projects/octopi/ui/optionsdialog.ui" line="251"/>
|
||||
<location filename="Projects/octopi/ui/optionsdialog.ui" line="264"/>
|
||||
<source>Show "Install Date" column</source>
|
||||
<translation>顯示「安裝日期」欄位</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="Projects/octopi/ui/optionsdialog.ui" line="264"/>
|
||||
<location filename="Projects/octopi/ui/optionsdialog.ui" line="277"/>
|
||||
<source>Show "Install Reason" column</source>
|
||||
<translation>顯示「安裝理由」欄位</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="Projects/octopi/ui/optionsdialog.ui" line="277"/>
|
||||
<location filename="Projects/octopi/ui/optionsdialog.ui" line="290"/>
|
||||
<source>Enable package tooltips</source>
|
||||
<translation>啟用軟體包工具提示</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="Projects/octopi/ui/optionsdialog.ui" line="311"/>
|
||||
<location filename="Projects/octopi/ui/optionsdialog.ui" line="303"/>
|
||||
<source>Show "Repository" column</source>
|
||||
<translation>顯示「軟體庫」欄位</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="Projects/octopi/ui/optionsdialog.ui" line="316"/>
|
||||
<source>Show "Download Size" column</source>
|
||||
<translation>顯示「下載大小」欄位</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="Projects/octopi/ui/optionsdialog.ui" line="350"/>
|
||||
<source>Select the AUR tool Octopi should use</source>
|
||||
<translation>選取 Octopi 應該使用的 AUR 工具</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="Projects/octopi/ui/optionsdialog.ui" line="392"/>
|
||||
<source>Search for outdated AUR packages</source>
|
||||
<translation>搜尋過期的 AUR 軟體包</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="Projects/octopi/ui/optionsdialog.ui" line="458"/>
|
||||
<location filename="Projects/octopi/ui/optionsdialog.ui" line="476"/>
|
||||
<source>User name</source>
|
||||
<translation>使用者名稱</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="Projects/octopi/ui/optionsdialog.ui" line="471"/>
|
||||
<location filename="Projects/octopi/ui/optionsdialog.ui" line="489"/>
|
||||
<source>Password</source>
|
||||
<translation>密碼</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="Projects/octopi/ui/optionsdialog.ui" line="489"/>
|
||||
<location filename="Projects/octopi/ui/optionsdialog.ui" line="507"/>
|
||||
<source>Register</source>
|
||||
<translation>註冊</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="Projects/octopi/ui/optionsdialog.ui" line="507"/>
|
||||
<location filename="Projects/octopi/ui/optionsdialog.ui" line="525"/>
|
||||
<source>Connect</source>
|
||||
<translation>連線</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="Projects/octopi/ui/optionsdialog.ui" line="526"/>
|
||||
<location filename="Projects/octopi/ui/optionsdialog.ui" line="544"/>
|
||||
<source>Enable AUR voting</source>
|
||||
<translation>啟用 AUR 投票</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="Projects/octopi/ui/optionsdialog.ui" line="547"/>
|
||||
<location filename="Projects/octopi/ui/optionsdialog.ui" line="565"/>
|
||||
<source>AUR packages are user produced content.
|
||||
Any use of the provided files is at your own risk.</source>
|
||||
<translation>AUR 軟體包是使用者產生的內容。
|
||||
任何使用檔案造成的風險由您自行承擔。</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="Projects/octopi/ui/optionsdialog.ui" line="608"/>
|
||||
<location filename="Projects/octopi/ui/optionsdialog.ui" line="626"/>
|
||||
<source>Build directory</source>
|
||||
<translation>建構目錄</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="Projects/octopi/ui/optionsdialog.ui" line="724"/>
|
||||
<location filename="Projects/octopi/ui/optionsdialog.ui" line="742"/>
|
||||
<source>Select the backend Octopi should use</source>
|
||||
<translation>選取 Octopi 應該使用的後端</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="Projects/octopi/ui/optionsdialog.ui" line="767"/>
|
||||
<location filename="Projects/octopi/ui/optionsdialog.ui" line="785"/>
|
||||
<source>Use default notification icons</source>
|
||||
<translation>使用預設通知圖示</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="Projects/octopi/ui/optionsdialog.ui" line="842"/>
|
||||
<location filename="Projects/octopi/ui/optionsdialog.ui" line="860"/>
|
||||
<source>Red icon</source>
|
||||
<translation>紅色圖示</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="Projects/octopi/ui/optionsdialog.ui" line="932"/>
|
||||
<location filename="Projects/octopi/ui/optionsdialog.ui" line="950"/>
|
||||
<source>Busy icon</source>
|
||||
<translation>忙碌圖示</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="Projects/octopi/ui/optionsdialog.ui" line="1001"/>
|
||||
<location filename="Projects/octopi/ui/optionsdialog.ui" line="1019"/>
|
||||
<source>Yellow icon</source>
|
||||
<translation>黃色圖示</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="Projects/octopi/ui/optionsdialog.ui" line="1085"/>
|
||||
<location filename="Projects/octopi/ui/optionsdialog.ui" line="1103"/>
|
||||
<source>Green icon</source>
|
||||
<translation>綠色圖示</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="Projects/octopi/ui/optionsdialog.ui" line="1410"/>
|
||||
<location filename="Projects/octopi/ui/optionsdialog.ui" line="1402"/>
|
||||
<source>Search for outdated AUR packages</source>
|
||||
<translation>搜尋過期的 AUR 軟體包</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="Projects/octopi/ui/optionsdialog.ui" line="1452"/>
|
||||
<source>Color Scheme</source>
|
||||
<translation>配色方案</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="Projects/octopi/ui/optionsdialog.ui" line="1423"/>
|
||||
<location filename="Projects/octopi/ui/optionsdialog.ui" line="1465"/>
|
||||
<source>Font Family</source>
|
||||
<translation>字型家族</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="Projects/octopi/ui/optionsdialog.ui" line="1456"/>
|
||||
<location filename="Projects/octopi/ui/optionsdialog.ui" line="1498"/>
|
||||
<source>Font Size</source>
|
||||
<translation>字型大小</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="Projects/octopi/ui/optionsdialog.ui" line="1479"/>
|
||||
<location filename="Projects/octopi/ui/optionsdialog.ui" line="1521"/>
|
||||
<source>Play a bell sound when prompting for the root password in the terminal</source>
|
||||
<translation>在終端機中提示輸入 root 密碼時播放鈴聲</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="Projects/octopi/ui/optionsdialog.ui" line="1492"/>
|
||||
<location filename="Projects/octopi/ui/optionsdialog.ui" line="1534"/>
|
||||
<source>Force use of BASH shell</source>
|
||||
<translation>強制使用 BASH 殼層</translation>
|
||||
</message>
|
||||
@@ -702,12 +762,12 @@ Any use of the provided files is at your own risk.</source>
|
||||
<translation>終端機</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="Projects/octopi/src/optionsdialog.cpp" line="215"/>
|
||||
<location filename="Projects/octopi/src/optionsdialog.cpp" line="218"/>
|
||||
<source>Ok</source>
|
||||
<translation>確定</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="Projects/octopi/src/optionsdialog.cpp" line="216"/>
|
||||
<location filename="Projects/octopi/src/optionsdialog.cpp" line="219"/>
|
||||
<source>Cancel</source>
|
||||
<translation>取消</translation>
|
||||
</message>
|
||||
|
||||
@@ -246,6 +246,8 @@ const QString ctn_GNOME_EDITOR(QStringLiteral("gedit"));
|
||||
const QString ctn_GNOME_FILE_MANAGER(QStringLiteral("nautilus"));
|
||||
const QString ctn_GNOME_TERMINAL(QStringLiteral("gnome-terminal"));
|
||||
|
||||
const QString ctn_COSMIC_FILE_MANAGER(QStringLiteral("cosmic-files"));
|
||||
|
||||
const QString ctn_XDG_OPEN(QStringLiteral("xdg-open"));
|
||||
|
||||
const QString ctn_XFCE_DESKTOP(QStringLiteral("xfdesktop"));
|
||||
@@ -267,7 +269,7 @@ const QString ctn_LUMINA_OPEN(QStringLiteral("lumina-open"));
|
||||
const QString ctn_LXQT_DESKTOP(QStringLiteral("lxqt-session"));
|
||||
const QString ctn_LXQT_TERMINAL(QStringLiteral("qterminal"));
|
||||
const QString ctn_LXQT_FILE_MANAGER(QStringLiteral("pcmanfm-qt"));
|
||||
const QString ctn_LXQT_EDITOR(QStringLiteral("juffed"));
|
||||
const QString ctn_LXQT_EDITOR(QStringLiteral("featherpad"));
|
||||
|
||||
const QString ctn_MATE_DESKTOP(QStringLiteral("mate-session"));
|
||||
const QString ctn_MATE_EDITOR(QStringLiteral("pluma"));
|
||||
|
||||
@@ -451,6 +451,7 @@ void MainWindow::onOptions(OptionsDialogTab tabToOpen)
|
||||
|
||||
if (res & Options::ectn_BACKEND)
|
||||
{
|
||||
m_packageModel->setHasPacmanBackend(SettingsManager::hasPacmanBackend());
|
||||
AURToolSelected();
|
||||
}
|
||||
}
|
||||
@@ -567,6 +568,9 @@ void MainWindow::outputTextBrowserAnchorClicked(const QUrl &link)
|
||||
{
|
||||
if (link.toString().contains(QLatin1String("goto:")))
|
||||
{
|
||||
if (!m_leFilterPackage->hasFocus())
|
||||
m_leFilterPackage->setFocus();
|
||||
|
||||
QString pkgName = link.toString().mid(5).remove(QStringLiteral("[installed]"), Qt::CaseInsensitive).trimmed();
|
||||
if (pkgName == QLatin1String("sh")) pkgName = QStringLiteral("bash");
|
||||
|
||||
@@ -1860,6 +1864,8 @@ QString MainWindow::extractBaseFileName(const QString &fileName)
|
||||
*/
|
||||
void MainWindow::onDoubleClickPackageList()
|
||||
{
|
||||
if (m_commandExecuting != ectn_NONE) return;
|
||||
|
||||
const PackageRepository::PackageData* package = m_packageModel->getData(ui->tvPackages->currentIndex());
|
||||
if (package != nullptr && package->installed())
|
||||
{
|
||||
|
||||
@@ -238,6 +238,8 @@ private:
|
||||
//Controls OptionsDialog exec
|
||||
OptionsDialog *m_optionsDialog;
|
||||
|
||||
QWidget *m_lastFocusedWidget;
|
||||
|
||||
int selectTerminal(const int initialTerminalIndex);
|
||||
|
||||
void loadSettings();
|
||||
|
||||
@@ -212,49 +212,49 @@ void MainWindow::keyPressEvent(QKeyEvent* ke)
|
||||
}
|
||||
}
|
||||
}
|
||||
else if(ke->key() == Qt::Key_Escape)
|
||||
else if (ke->key() == Qt::Key_Escape)
|
||||
{
|
||||
if(m_leFilterPackage->hasFocus())
|
||||
if (m_leFilterPackage->hasFocus())
|
||||
{
|
||||
m_leFilterPackage->clear();
|
||||
}
|
||||
}
|
||||
else if(ke->key() == Qt::Key_Delete)
|
||||
else if (ke->key() == Qt::Key_Delete)
|
||||
{
|
||||
if (m_commandExecuting != ectn_NONE) return;
|
||||
|
||||
onPressDelete();
|
||||
}
|
||||
else if(ke->key() == Qt::Key_1 && ke->modifiers() == Qt::AltModifier)
|
||||
else if (ke->key() == Qt::Key_1 && ke->modifiers() == Qt::AltModifier)
|
||||
{
|
||||
changeTabWidgetPropertiesIndex(ctn_TABINDEX_INFORMATION);
|
||||
}
|
||||
else if(ke->key() == Qt::Key_2 && ke->modifiers() == Qt::AltModifier)
|
||||
else if (ke->key() == Qt::Key_2 && ke->modifiers() == Qt::AltModifier)
|
||||
{
|
||||
ui->twProperties->setCurrentIndex(ctn_TABINDEX_FILES);
|
||||
refreshTabFiles(false, true);
|
||||
}
|
||||
else if(ke->key() == Qt::Key_3 && ke->modifiers() == Qt::AltModifier)
|
||||
else if (ke->key() == Qt::Key_3 && ke->modifiers() == Qt::AltModifier)
|
||||
{
|
||||
changeTabWidgetPropertiesIndex(ctn_TABINDEX_ACTIONS);
|
||||
}
|
||||
else if(ke->key() == Qt::Key_4 && ke->modifiers() == Qt::AltModifier)
|
||||
else if (ke->key() == Qt::Key_4 && ke->modifiers() == Qt::AltModifier)
|
||||
{
|
||||
changeTabWidgetPropertiesIndex(ctn_TABINDEX_OUTPUT);
|
||||
}
|
||||
else if(ke->key() == Qt::Key_5 && ke->modifiers() == Qt::AltModifier)
|
||||
else if (ke->key() == Qt::Key_5 && ke->modifiers() == Qt::AltModifier)
|
||||
{
|
||||
changeTabWidgetPropertiesIndex(ctn_TABINDEX_NEWS);
|
||||
}
|
||||
else if(ke->key() == Qt::Key_6 && ke->modifiers() == Qt::AltModifier)
|
||||
else if (ke->key() == Qt::Key_6 && ke->modifiers() == Qt::AltModifier)
|
||||
{
|
||||
changeTabWidgetPropertiesIndex(ctn_TABINDEX_HELPUSAGE);
|
||||
}
|
||||
else if(ke->key() == Qt::Key_7 && ke->modifiers() == Qt::AltModifier)
|
||||
else if (ke->key() == Qt::Key_7 && ke->modifiers() == Qt::AltModifier)
|
||||
{
|
||||
changeTabWidgetPropertiesIndex(ctn_TABINDEX_TERMINAL);
|
||||
}
|
||||
else if(ke->key() == Qt::Key_F2)
|
||||
else if (ke->key() == Qt::Key_F2)
|
||||
{
|
||||
if (isPackageTreeViewVisible())
|
||||
{
|
||||
@@ -266,17 +266,17 @@ void MainWindow::keyPressEvent(QKeyEvent* ke)
|
||||
if (!ui->tvPackages->hasFocus()) ui->tvPackages->setFocus();
|
||||
}
|
||||
}
|
||||
else if(ke->key() == Qt::Key_F4)
|
||||
else if (ke->key() == Qt::Key_F4)
|
||||
{
|
||||
openTerminal();
|
||||
}
|
||||
else if(ke->key() == Qt::Key_F5)
|
||||
else if (ke->key() == Qt::Key_F5)
|
||||
{
|
||||
if (m_commandExecuting != ectn_NONE) return;
|
||||
|
||||
metaBuildPackageList();
|
||||
}
|
||||
else if(ke->key() == Qt::Key_F6)
|
||||
else if (ke->key() == Qt::Key_F6)
|
||||
{
|
||||
openDirectory();
|
||||
}
|
||||
@@ -288,16 +288,16 @@ void MainWindow::keyPressEvent(QKeyEvent* ke)
|
||||
{
|
||||
maxDemaxPropertiesTabWidget(true);
|
||||
}
|
||||
else if(ke->key() == Qt::Key_C && ke->modifiers() == Qt::ControlModifier)
|
||||
else if (ke->key() == Qt::Key_C && ke->modifiers() == Qt::ControlModifier)
|
||||
{
|
||||
copyFullPathToClipboard();
|
||||
}
|
||||
else if(ke->key() == Qt::Key_L && ke->modifiers() == Qt::ControlModifier)
|
||||
else if (ke->key() == Qt::Key_L && ke->modifiers() == Qt::ControlModifier)
|
||||
{
|
||||
m_leFilterPackage->setFocus();
|
||||
m_leFilterPackage->selectAll();
|
||||
}
|
||||
else if(ke->key() == Qt::Key_F && ke->modifiers() == Qt::ControlModifier)
|
||||
else if (ke->key() == Qt::Key_F && ke->modifiers() == Qt::ControlModifier)
|
||||
{
|
||||
if (m_commandExecuting != ectn_NONE) return;
|
||||
|
||||
@@ -337,14 +337,14 @@ void MainWindow::keyPressEvent(QKeyEvent* ke)
|
||||
|
||||
if (ui->actionSystemUpgrade->isEnabled()) doSystemUpgrade();
|
||||
}
|
||||
else if(ke->key() == Qt::Key_D && ke->modifiers() == (Qt::ShiftModifier|Qt::ControlModifier))
|
||||
else if (ke->key() == Qt::Key_D && ke->modifiers() == (Qt::ShiftModifier|Qt::ControlModifier))
|
||||
{
|
||||
if (m_commandExecuting != ectn_NONE) return;
|
||||
|
||||
//The user wants to know which packages have no description!
|
||||
showPackagesWithNoDescription();
|
||||
}
|
||||
else if(ke->key() == Qt::Key_G && ke->modifiers() == (Qt::ShiftModifier|Qt::ControlModifier))
|
||||
else if (ke->key() == Qt::Key_G && ke->modifiers() == (Qt::ShiftModifier|Qt::ControlModifier))
|
||||
{
|
||||
if (m_commandExecuting != ectn_NONE) return;
|
||||
|
||||
@@ -354,7 +354,7 @@ void MainWindow::keyPressEvent(QKeyEvent* ke)
|
||||
ui->twGroups->setCurrentItem(m_AllGroupsItem);
|
||||
}
|
||||
}
|
||||
else if(ke->key() == Qt::Key_U && ke->modifiers() == (Qt::ShiftModifier|Qt::ControlModifier))
|
||||
else if (ke->key() == Qt::Key_U && ke->modifiers() == (Qt::ShiftModifier|Qt::ControlModifier))
|
||||
{
|
||||
if (m_commandExecuting != ectn_NONE) return;
|
||||
|
||||
@@ -369,19 +369,19 @@ void MainWindow::keyPressEvent(QKeyEvent* ke)
|
||||
m_actionSwitchToForeignTool->trigger();
|
||||
m_leFilterPackage->setFocus();
|
||||
}
|
||||
else if(ke->key() == Qt::Key_S && ke->modifiers() == (Qt::ShiftModifier|Qt::ControlModifier))
|
||||
else if (ke->key() == Qt::Key_S && ke->modifiers() == (Qt::ShiftModifier|Qt::ControlModifier))
|
||||
{
|
||||
if (m_commandExecuting != ectn_NONE) return;
|
||||
|
||||
doSysInfo();
|
||||
}
|
||||
else if(ke->key() == Qt::Key_A && ke->modifiers() == (Qt::ShiftModifier|Qt::ControlModifier))
|
||||
else if (ke->key() == Qt::Key_A && ke->modifiers() == (Qt::ShiftModifier|Qt::ControlModifier))
|
||||
{
|
||||
if (m_commandExecuting != ectn_NONE) return;
|
||||
|
||||
outputAURVotedPackageList();
|
||||
}
|
||||
else if(ke->key() == Qt::Key_O && ke->modifiers() == (Qt::ShiftModifier|Qt::ControlModifier))
|
||||
else if (ke->key() == Qt::Key_O && ke->modifiers() == (Qt::ShiftModifier|Qt::ControlModifier))
|
||||
{
|
||||
if (m_commandExecuting != ectn_NONE) return;
|
||||
|
||||
@@ -402,6 +402,25 @@ void MainWindow::keyPressEvent(QKeyEvent* ke)
|
||||
{
|
||||
//TEST CODE
|
||||
}*/
|
||||
else if (ke->key() == Qt::Key_M && ke->modifiers() == (Qt::ControlModifier))
|
||||
{
|
||||
if (QApplication::focusWidget() != nullptr && QApplication::focusWidget() != ui->menuBar)
|
||||
m_lastFocusedWidget = QApplication::focusWidget();
|
||||
|
||||
if (ui->menuBar->isVisible())
|
||||
ui->menuBar->hide();
|
||||
else
|
||||
ui->menuBar->setVisible(true);
|
||||
|
||||
if (ui->menuBar->isVisible())
|
||||
{
|
||||
ui->menuBar->setFocus();
|
||||
}
|
||||
else
|
||||
{
|
||||
m_lastFocusedWidget->setFocus();
|
||||
}
|
||||
}
|
||||
|
||||
else ke->ignore();
|
||||
}
|
||||
@@ -470,10 +489,17 @@ void MainWindow::keyReleaseEvent(QKeyEvent* ke)
|
||||
execKeyActionOnPackage(ectn_INSTALL);
|
||||
}
|
||||
}
|
||||
else if(ke->key() == Qt::Key_Minus)
|
||||
else if (ke->key() == Qt::Key_Minus)
|
||||
{
|
||||
if (m_commandExecuting != ectn_NONE) return;
|
||||
|
||||
onPressDelete();
|
||||
}
|
||||
else if (ke->key() == Qt::Key_Escape)
|
||||
{
|
||||
if (ui->menuBar->hasFocus())
|
||||
{
|
||||
m_lastFocusedWidget->setFocus();
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
@@ -327,13 +327,18 @@ void MainWindow::initMenuBar()
|
||||
actionGroupRepositories->setExclusive(true);
|
||||
m_actionMenuRepository->setMenu(subMenu);
|
||||
|
||||
/*for (QAction * act, ui->menuBar->actions())
|
||||
/*for (QAction * act: ui->menuBar->actions())
|
||||
{
|
||||
QString text = act->text();
|
||||
text = text.remove("&");
|
||||
act->setText(qApp->translate("MainWindow", text.toUtf8(), 0));
|
||||
}*/
|
||||
|
||||
for (QAction * act: ui->menuBar->actions())
|
||||
{
|
||||
addAction(act);
|
||||
}
|
||||
|
||||
#ifdef OCTOPI_DEV_CODE
|
||||
ui->menuFile->insertAction(ui->actionExit, m_actionEditOctopiConf);
|
||||
#endif
|
||||
@@ -380,6 +385,7 @@ void MainWindow::initToolBar()
|
||||
m_leFilterPackage->setMinimumHeight(24);
|
||||
m_leFilterPackage->setPlaceholderText(m_leFilterPackage->placeholderText() + QLatin1String(" (Ctrl+L)"));
|
||||
ui->mainToolBar->addWidget(m_leFilterPackage);
|
||||
m_lastFocusedWidget = m_leFilterPackage;
|
||||
|
||||
QWidget * hSpacer = new QWidget(this);
|
||||
hSpacer->setMinimumHeight(22);
|
||||
|
||||
@@ -1907,10 +1907,12 @@ void MainWindow::reapplyPackageFilter()
|
||||
//We are not in a search by filenames...
|
||||
if (!isSearchByFileSelected())
|
||||
{
|
||||
bool isFilterPackageSelected = m_leFilterPackage->hasFocus();
|
||||
bool isFilterPackageSelected = m_leFilterPackage->hasFocus();
|
||||
QString search = Package::parseSearchString(m_leFilterPackage->text());
|
||||
m_packageModel->applyFilter(search);
|
||||
int numPkgs = m_packageModel->getPackageCount();
|
||||
|
||||
if (m_leFilterPackage->text() != QLatin1String(""))
|
||||
/*if (m_leFilterPackage->text() != QLatin1String(""))
|
||||
{
|
||||
QString search = m_leFilterPackage->text();
|
||||
search = search.replace(QLatin1String("+"), QLatin1String("\\+"));
|
||||
@@ -1924,7 +1926,7 @@ void MainWindow::reapplyPackageFilter()
|
||||
{
|
||||
m_leFilterPackage->initStyleSheet();
|
||||
m_packageModel->applyFilter(QLatin1String(""));
|
||||
}
|
||||
}*/
|
||||
|
||||
if (isFilterPackageSelected || numPkgs == 0)
|
||||
{
|
||||
|
||||
@@ -44,6 +44,7 @@ PackageModel::PackageModel(const PackageRepository& repo, QObject *parent)
|
||||
m_iconError(IconHelper::getIconWindowClose())
|
||||
{
|
||||
m_showColumnPopularity = false;
|
||||
m_hasPacmanBackend = false;
|
||||
}
|
||||
|
||||
QModelIndex PackageModel::index(int row, int column, const QModelIndex &parent) const
|
||||
@@ -75,9 +76,9 @@ int PackageModel::rowCount(const QModelIndex &parent) const
|
||||
int PackageModel::columnCount(const QModelIndex &parent) const
|
||||
{
|
||||
if (!parent.isValid()) {
|
||||
if (UnixCommand::getLinuxDistro() == ectn_CHAKRA || !m_showColumnPopularity)
|
||||
if (!m_showColumnPopularity)
|
||||
{
|
||||
if (SettingsManager::hasPacmanBackend()) return 4;
|
||||
if (m_hasPacmanBackend) return 4;
|
||||
else return 11;
|
||||
}
|
||||
else
|
||||
@@ -248,13 +249,13 @@ void PackageModel::endResetRepository()
|
||||
if (m_filterPackagesNotInstalled && (*it)->installed()) continue;
|
||||
else if (m_filterPackagesInstalled && !(*it)->installed()) continue;
|
||||
|
||||
if (m_filterPackagesIgnored && (*it)->status != ectn_IGNORED) continue;
|
||||
else if (m_filterPackagesIgnored && (*it)->status != ectn_IGNORED) continue;
|
||||
|
||||
if (m_filterPackagesOutdated && !(*it)->outdated()) continue;
|
||||
else if (m_filterPackagesOutdated && !(*it)->outdated()) continue;
|
||||
|
||||
if (!m_filterPackagesNotInThisRepo.isEmpty() && (*it)->repository != m_filterPackagesNotInThisRepo) continue;
|
||||
else if (!m_filterPackagesNotInThisRepo.isEmpty() && (*it)->repository != m_filterPackagesNotInThisRepo) continue;
|
||||
|
||||
if (m_filterRegExp.pattern().isEmpty()) {
|
||||
else if (m_filterRegExp.pattern().isEmpty()) {
|
||||
m_listOfPackages.push_back(*it);
|
||||
if ((*it)->installed()) m_installedPackagesCount++;
|
||||
}
|
||||
@@ -383,6 +384,11 @@ void PackageModel::setShowColumnPopularity(bool value)
|
||||
m_showColumnPopularity = value;
|
||||
}
|
||||
|
||||
void PackageModel::setHasPacmanBackend(bool value)
|
||||
{
|
||||
m_hasPacmanBackend = value;
|
||||
}
|
||||
|
||||
const QIcon& PackageModel::getIconFor(const PackageRepository::PackageData& package) const
|
||||
{
|
||||
switch (package.status)
|
||||
|
||||
@@ -89,6 +89,7 @@ public:
|
||||
void applyFilter(const int filterColumn, const QString& filterExp);
|
||||
|
||||
void setShowColumnPopularity(bool value);
|
||||
void setHasPacmanBackend(bool value);
|
||||
|
||||
private:
|
||||
const QIcon& getIconFor(const PackageRepository::PackageData& package) const;
|
||||
@@ -97,6 +98,7 @@ private:
|
||||
private:
|
||||
int m_installedPackagesCount;
|
||||
bool m_showColumnPopularity;
|
||||
bool m_hasPacmanBackend;
|
||||
|
||||
const PackageRepository& m_packageRepo;
|
||||
QList<PackageRepository::PackageData*> m_listOfPackages; // should be provided sorted by name (by repo)
|
||||
|
||||
@@ -238,6 +238,7 @@ void PacmanExec::parsePacmanProcessOutput(const QString &output)
|
||||
msg.remove(QStringLiteral("[2F"));
|
||||
msg.remove(QStringLiteral("E "));
|
||||
msg.remove(QStringLiteral("F "));
|
||||
msg.remove(QStringLiteral("******** "));
|
||||
msg.remove(QRegularExpression(QStringLiteral("^\\($")));
|
||||
|
||||
if (storeMsgCache) msgCache+=msg;
|
||||
@@ -600,7 +601,8 @@ void PacmanExec::prepareTextToPrint(QString str, TreatString ts, TreatURLLinks t
|
||||
(!str.contains(QLatin1String("package"), Qt::CaseInsensitive))) ||
|
||||
|
||||
str.indexOf(QLatin1String("Enter a selection"), Qt::CaseInsensitive) == 0 ||
|
||||
str.indexOf(QLatin1String("Proceed with"), Qt::CaseInsensitive) == 0 ||
|
||||
str.indexOf(QLatin1String(":: Proceed with"), Qt::CaseInsensitive) == 0 ||
|
||||
str.indexOf(QLatin1String(":: Replace"), Qt::CaseInsensitive) == 0 ||
|
||||
str.indexOf(QLatin1String("%")) != -1 ||
|
||||
str.indexOf(QLatin1String("---")) != -1)
|
||||
{
|
||||
|
||||
@@ -780,12 +780,7 @@ QByteArray SettingsManager::getSplitterHorizontalState(){
|
||||
|
||||
bool SettingsManager::isInstantSearchSelected()
|
||||
{
|
||||
SettingsManager p_instance;
|
||||
|
||||
if (UnixCommand::isCachyOS())
|
||||
return (p_instance.getSYSsettings()->value(ctn_KEY_INSTANT_SEARCH, false)).toBool();
|
||||
else
|
||||
return (p_instance.getSYSsettings()->value(ctn_KEY_INSTANT_SEARCH, true)).toBool();
|
||||
return (instance()->getSYSsettings()->value(ctn_KEY_INSTANT_SEARCH, true)).toBool();
|
||||
}
|
||||
|
||||
void SettingsManager::setCurrentTabIndex(int newValue){
|
||||
|
||||
@@ -44,6 +44,11 @@ bool WMHelper::isKDERunning()
|
||||
return (qgetenv("XDG_CURRENT_DESKTOP").toLower() == QByteArray("kde"));
|
||||
}
|
||||
|
||||
bool WMHelper::isCOSMICRunning()
|
||||
{
|
||||
return (qgetenv("XDG_CURRENT_DESKTOP").toLower() == QByteArray("cosmic"));
|
||||
}
|
||||
|
||||
/*
|
||||
* Checks if TDE is running
|
||||
*/
|
||||
@@ -390,6 +395,10 @@ void WMHelper::editFile(const QString& fileName, EditOptions opt)
|
||||
{
|
||||
p = ctn_GNOME_EDITOR + QLatin1Char(' ') + fileName;
|
||||
}
|
||||
else if (isCOSMICRunning() && UnixCommand::hasTheExecutable(ctn_LXQT_EDITOR))
|
||||
{
|
||||
p = ctn_LXQT_EDITOR + QLatin1Char(' ') + fileName;
|
||||
}
|
||||
else if (isXFCERunning() && (UnixCommand::hasTheExecutable(ctn_XFCE_EDITOR) ||
|
||||
UnixCommand::hasTheExecutable(ctn_XFCE_EDITOR_ALT))){
|
||||
p = getXFCEEditor() + QLatin1Char(' ') + fileName;
|
||||
@@ -412,7 +421,7 @@ void WMHelper::editFile(const QString& fileName, EditOptions opt)
|
||||
else if (isLuminaRunning() && UnixCommand::hasTheExecutable(ctn_LUMINA_EDITOR)){
|
||||
p += ctn_LUMINA_EDITOR + QLatin1Char(' ') + fileName;
|
||||
}
|
||||
if (UnixCommand::hasTheExecutable(ctn_ARCHBANG_EDITOR))
|
||||
else if (UnixCommand::hasTheExecutable(ctn_ARCHBANG_EDITOR))
|
||||
{
|
||||
p = ctn_ARCHBANG_EDITOR + QLatin1Char(' ') + fileName;
|
||||
}
|
||||
@@ -471,6 +480,11 @@ void WMHelper::openDirectory(const QString& dirName)
|
||||
s << dir;
|
||||
p->startDetached( ctn_GNOME_FILE_MANAGER, s );
|
||||
}
|
||||
else if (isCOSMICRunning() && UnixCommand::hasTheExecutable(ctn_COSMIC_FILE_MANAGER))
|
||||
{
|
||||
s << dir;
|
||||
p->startDetached( ctn_COSMIC_FILE_MANAGER, s );
|
||||
}
|
||||
else if(isXFCERunning() && UnixCommand::hasTheExecutable(ctn_XFCE_FILE_MANAGER))
|
||||
{
|
||||
s << dir;
|
||||
|
||||
@@ -33,6 +33,7 @@ class WMHelper
|
||||
{
|
||||
public:
|
||||
static bool isKDERunning();
|
||||
static bool isCOSMICRunning();
|
||||
static bool isTDERunning();
|
||||
static bool isGNOMERunning();
|
||||
static bool isXFCERunning();
|
||||
|
||||
Reference in New Issue
Block a user