diff --git a/debian/changelog b/debian/changelog index 7ecdc0a..fc27a0a 100644 --- a/debian/changelog +++ b/debian/changelog @@ -1,6 +1,6 @@ -pcmanfm-qt (0.9.0+20150903-1) unstable; urgency=medium +pcmanfm-qt (0.9.0+20150908-1) UNRELEASED; urgency=medium - * Cherry-picked upstream version 0.9.0+20150903. + * Cherry-picked upstream version 0.9.0+20150908. * Tar-ignore .gitignore * Fixed control with cme fix * Added upstream signing-key and use it in watch file diff --git a/libfm-qt/folderview.cpp b/libfm-qt/folderview.cpp index d584141..97fb825 100644 --- a/libfm-qt/folderview.cpp +++ b/libfm-qt/folderview.cpp @@ -927,7 +927,15 @@ void FolderView::onFileClicked(int type, FmFileInfo* fileInfo) { } } else if(type == ContextMenuClick) { - FmPath* folderPath = path(); + FmPath* folderPath = NULL; + FmFileInfoList* files = selectedFiles(); + if (files) { + FmFileInfo* first = fm_file_info_list_peek_head(files); + if (fm_file_info_list_get_length(files) == 1 && fm_file_info_is_dir(first)) + folderPath = fm_file_info_get_path(first); + } + if (!folderPath) + folderPath = path(); QMenu* menu = NULL; if(fileInfo) { // show context menu diff --git a/libfm-qt/placesview.cpp b/libfm-qt/placesview.cpp index 0d82888..fc2f99a 100644 --- a/libfm-qt/placesview.cpp +++ b/libfm-qt/placesview.cpp @@ -107,7 +107,8 @@ void PlacesView::activateRow(int type, const QModelIndex& index) { void PlacesView::onPressed(const QModelIndex& index) { // if middle button is pressed if(QGuiApplication::mouseButtons() & Qt::MiddleButton) { - activateRow(1, index); + // the real item is at column 0 + activateRow(1, 0 == index.column() ? index : index.sibling(index.row(), 0)); } } diff --git a/libfm-qt/translations/libfm-qt_it.ts b/libfm-qt/translations/libfm-qt_it.ts index b1380b3..a0d8067 100644 --- a/libfm-qt/translations/libfm-qt_it.ts +++ b/libfm-qt/translations/libfm-qt_it.ts @@ -6,27 +6,27 @@ Choose an Application - + Seleziona un applicazione Installed Applications - + Applicazioni installate Custom Command - + Comando personalizzato Command line to execute: - + Riga di comando da eseguire: Application name: - + Nome dell'applicazione: @@ -37,22 +37,28 @@ <li><b>%u</b>: Represents a single URI of the file</li> <li><b>%U</b>: Represents multiple URIs</li> </ul> - + <b>Questi caratteri speciali possono essere usati nella riga di comando:</b> +<ul> +<li><b>%f</b>: sta per un nome file singolo</li> +<li><b>%F</b>: sta per nomi file multipli</li> +<li><b>%u</b>: sta per un URI singolo del file</li> +<li><b>%U</b>: sta per URI multipli dei file</li> +</ul> Keep terminal window open after command execution - + Non chiudere il terminale dopo l'esecuzione Execute in terminal emulator - + Esegui in un emulatore di terminale Set selected application as default action of this file type - + Ricorda come associazione predefinita per questo tipo di file @@ -93,27 +99,27 @@ Execute file - + Esegui file &Open - + &Apri E&xecute - + E&segui Execute in &Terminal - + Esegui in un &terminale Cancel - Annulla + Annulla @@ -288,7 +294,7 @@ Customize - + Personalizza @@ -296,7 +302,7 @@ Select an application to open "%1" files - + Seleziona un applicazione per aprire "%1" file @@ -304,12 +310,12 @@ Folder - Cartella + Cartella Blank File - + File vuoto @@ -317,12 +323,12 @@ Loading... - + Caricando... <No sub folders> - + <nessuna sottocartella> @@ -330,17 +336,17 @@ Open in New T&ab - + Apri in una nuova &scheda Open in New Win&dow - + Apri in una nuova &finestra Open in Termina&l - + Apri in un &terminale @@ -380,12 +386,13 @@ This text file '%1' seems to be an executable script. What do you want to do with it? - + Questo file di testo "%1" sembra essere uno script eseguibile. +Cosa vuoi fare? This file '%1' is executable. Do you want to execute it? - + Questo file "%1" è eseguibile. Eseguirlo? @@ -397,7 +404,7 @@ What do you want to do with it? OpenWith - ApriCon + ApriCon @@ -423,7 +430,7 @@ What do you want to do with it? Output - + Risultato @@ -438,22 +445,22 @@ What do you want to do with it? Open With... - + Apri con... Other Applications - + Altre applicazioni Create &New - Crea &nuovo + Crea &nuovo &Restore - + &Ripristina @@ -481,7 +488,7 @@ What do you want to do with it? Error - Errore + Errore @@ -672,11 +679,11 @@ Vuoi invece eliminarli? Folder - Cartella + Cartella File - File + File @@ -821,45 +828,45 @@ Vuoi invece eliminarli? Empty Trash - + Svuota cestino Rename - Rinomina + Rinomina Delete - Rimuovi + Rimuovi Open in New Tab - + Apri in una nuova scheda Open in New Window - + Apri in una nuova finestra Move Bookmark Up - + Sposta segnalibro insù Move Bookmark Down - + Sposta segnalibro giù Rename Bookmark - + Rinomina segnalibro Remove Bookmark - + Rimuovi segnalibro @@ -921,23 +928,23 @@ Ultima modifica: %3 Places - Luoghi + Luoghi Directory Tree - + Albero cartelle Shows list of common places, devices, and bookmarks in sidebar - + Mostra lista di luoghi, dispositivi e segnalibri nel panello laterale Shows tree of directories in sidebar - + Mostra albero delle cartelle nel panello laterale @@ -950,7 +957,7 @@ Ultima modifica: %3 Connect &anonymously - Connetti _anonimamente + Connetti &anonimamente @@ -1011,7 +1018,7 @@ Ultima modifica: %3 Create Folder - + Crea cartella @@ -1036,7 +1043,7 @@ Ultima modifica: %3 Enter a name for the new %1: - + Inserisci un nome per %1: diff --git a/libfm-qt/translations/libfm-qt_ru.ts b/libfm-qt/translations/libfm-qt_ru.ts index 446064d..d76bcac 100644 --- a/libfm-qt/translations/libfm-qt_ru.ts +++ b/libfm-qt/translations/libfm-qt_ru.ts @@ -310,12 +310,12 @@ Folder - Папку + Папку Blank File - Пустой файл + Пустой файл @@ -336,17 +336,17 @@ Open in New T&ab - + Открыть в новой вкл&адке Open in New Win&dow - + Открыть в новом о&кне Open in Termina&l - + Открыть в термина&ле @@ -386,7 +386,7 @@ This text file '%1' seems to be an executable script. What do you want to do with it? - Этот текстовый файл '%1' похож на исполняемый скрипт. + Этот текстовый файл '%1' похож на исполняемый скрипт. Что вы хотите с ним сделать? @@ -415,12 +415,12 @@ What do you want to do with it? Create &New - &Создать + &Создать &Restore - + &Восстановить @@ -484,7 +484,7 @@ What do you want to do with it? Error - Ошибка + Ошибка @@ -673,14 +673,6 @@ Do you want to delete them instead? Folder Pr&operties &Свойства папки - - Folder - Папку - - - Blank File - Пустой файл - By File Name @@ -826,43 +818,35 @@ Do you want to delete them instead? Empty Trash Очистить корзину - - Rename - Переименовать - - - Delete - Удалить - Open in New Tab - + Открыть в новой вкладке Open in New Window - + Открыть в новом окне Move Bookmark Up - + Сдвинуть закладку вверх Move Bookmark Down - + Сдвинуть закладку вниз Rename Bookmark - + Переименовать закладку Remove Bookmark - + Удалить закладку @@ -1014,7 +998,7 @@ Modified: %3 Create Folder - + Создать папку diff --git a/libfm-qt/translations/libfm-qt_ru_RU.ts b/libfm-qt/translations/libfm-qt_ru_RU.ts index ef36a0e..187f3b3 100644 --- a/libfm-qt/translations/libfm-qt_ru_RU.ts +++ b/libfm-qt/translations/libfm-qt_ru_RU.ts @@ -310,12 +310,12 @@ Folder - Папку + Папку Blank File - Пустой файл + Пустой файл @@ -336,17 +336,17 @@ Open in New T&ab - + Открыть в новой вкл&адке Open in New Win&dow - + Открыть в новом о&кне Open in Termina&l - + Открыть в термина&ле @@ -386,7 +386,7 @@ This text file '%1' seems to be an executable script. What do you want to do with it? - Этот текстовый файл '%1' похож на исполняемый скрипт. + Этот текстовый файл '%1' похож на исполняемый скрипт. Что вы хотите с ним сделать? @@ -415,12 +415,12 @@ What do you want to do with it? Create &New - &Создать + &Создать &Restore - + &Восстановить @@ -484,7 +484,7 @@ What do you want to do with it? Error - Ошибка + Ошибка @@ -673,14 +673,6 @@ Do you want to delete them instead? Folder Pr&operties &Свойства папки - - Folder - Папку - - - Blank File - Пустой файл - By File Name @@ -826,43 +818,35 @@ Do you want to delete them instead? Empty Trash Очистить корзину - - Rename - Переименовать - - - Delete - Удалить - Open in New Tab - + Открыть в новой вкладке Open in New Window - + Открыть в новом окне Move Bookmark Up - + Сдвинуть закладку вверх Move Bookmark Down - + Сдвинуть закладку вниз Rename Bookmark - + Переименовать закладку Remove Bookmark - + Удалить закладку @@ -1014,7 +998,7 @@ Modified: %3 Create Folder - + Создать папку diff --git a/pcmanfm/translations/pcmanfm-qt-desktop-pref_it.desktop b/pcmanfm/translations/pcmanfm-qt-desktop-pref_it.desktop new file mode 100644 index 0000000..3a55236 --- /dev/null +++ b/pcmanfm/translations/pcmanfm-qt-desktop-pref_it.desktop @@ -0,0 +1,4 @@ +#Translations +Name[it]=Scrivania +GenericName[it]=Preferenze della scrivania +Comment[it]=Configura percorso e aspetto della scrivania diff --git a/pcmanfm/translations/pcmanfm-qt_it.desktop b/pcmanfm/translations/pcmanfm-qt_it.desktop new file mode 100644 index 0000000..1ebfc53 --- /dev/null +++ b/pcmanfm/translations/pcmanfm-qt_it.desktop @@ -0,0 +1,4 @@ +#Translations +Name[it]=Gestore file PCmanFM +GenericName[it]=Gestore file +Comment[it]=Esplora e organizza file e cartelle diff --git a/pcmanfm/translations/pcmanfm-qt_it.ts b/pcmanfm/translations/pcmanfm-qt_it.ts index 16c7a9d..1a84dbb 100644 --- a/pcmanfm/translations/pcmanfm-qt_it.ts +++ b/pcmanfm/translations/pcmanfm-qt_it.ts @@ -4,27 +4,27 @@ AboutDialog - + About Informazioni - + <html><head/><body><p><span style=" font-size:16pt; font-weight:600;">PCManFM</span></p></body></html> <html><head/><body><p><span style=" font-size:16pt; font-weight:600;">PCManFM</span></p></body></html> - + Lightweight file manager Gestore file leggero - + <html><head/><body><p><a href="http://lxqt.org/"><span style=" text-decoration: underline; color:#0000ff;">http://lxqt.org/</span></a></p></body></html> - + - + PCMan File Manager Copyright (C) 2009 - 2014 洪任諭 (Hong Jen Yee) @@ -42,14 +42,14 @@ GNU General Public License for more details. You should have received a copy of the GNU General Public License along with this program; if not, write to the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. - + <html><head/><body><p><a href="http://pcmanfm.sourceforge.net/"><span style=" text-decoration: underline; color:#0000ff;">http://pcmanfm.sourceforge.net/</span></a></p></body></html> <html><head/><body><p><a href="http://pcmanfm.sourceforge.net/"><span style=" text-decoration: underline; color:#0000ff;">http://pcmanfm.sourceforge.net/</span></a></p></body></html> - + Programming: * Hong Jen Yee (PCMan) <pcman.tw@gmail.com> @@ -58,12 +58,12 @@ Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.< - + Authors Autori - + License Licenza @@ -71,27 +71,27 @@ Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.< AutoRunDialog - + Removable medium is inserted - Supporto removibile inserito + Supporto rimovibile inserito - + <b>Removable medium is inserted</b> - <b>Supporto removibile inserito</b> + <b>Supporto rimovibile inserito</b> - + Type of medium: Tipo di supporto: - + Detecting... Rilevamento... - + Please select the action you want to perform: Scegliere l'azione da eseguire: @@ -99,663 +99,497 @@ Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.< DesktopPreferencesDialog - + Desktop Preferences Preferenze della scrivania - + Background Sfondo - + Wallpaper mode: Modalità sfondo: - + Wallpaper image file: File immagine sfondo: - + Select background color: - Scegliere colore sfondo: + Colore sfondo: - - + + Image file File immagine - + Image file path - Percorso file immagine + Percorso al file immagine - - + + &Browse &Sfoglia - + Label Text Testo etichette - + Select text color: - Scegliere colore testo: + Colore testo: - + Select shadow color: - Scegliere colore ombra: + Colore dell'ombra: - + Select font: - Scegliere carattere: + Carattere: - + General Generali - + Window Manager Gestore finestre - + Show menus provided by window managers when desktop is clicked - Mostra il menu forniti dal gestore finestre quando si fa clic sulla scrivania + Mostra il menu forniti dal gestore finestre quando si fa click sulla scrivania - + Desktop Scrivania - + Desktop folder: Cartella scrivania: - + Folder path Percorso - + Advanced Avanzate - - FindFilesDialog - - - Find Files - - - - - Name/Location - - - - - File name patterns - - - - - Pattern: - - - - - - Case insensitive - - - - - - Use regular expression - - - - - Places to search - - - - - Add - - - - - Remove - - - - - Search in sub directories - - - - - Search hidden files - - - - - - File Type - - - - - Only search for files of following types: - - - - - Text files - - - - - Image files - - - - - Audio files - - - - - Video files - - - - - Documents - - - - - Content - - - - - File contains - - - - - Properties - - - - - File Size - - - - - Bigger than: - - - - - Smaller than: - - - - - Last Modified Time - - - - - Earlier than: - - - - - Later than: - - - MainWindow - + File Manager Gestore file - + Go Up Vai su - + Alt+Up Alt+Su - + Home Cartella home - + Alt+Home Alt+Inizio - + Reload Ricarica - + F5 F5 - + &Reload &Ricarica - + Go Vai - + Quit Esci - + &About &Informazioni - + New Window Nuova finestra - + Ctrl+N Ctrl+N - + Show &Hidden Mostra file &nascosti - + Ctrl+H Ctrl+H - + &Computer &Computer - + &Trash Ces&tino - + &Network &Rete - + &Desktop &Scrivania - + &Add to Bookmarks &Aggiungi ai segnalibri - + &Applications &Applicazioni - + Ctrl+X Ctrl+X - + &Copy &Copia - + Ctrl+C Ctrl+C - + &Paste &Incolla - + Ctrl+V Ctrl+V - + Select &All Seleziona t&utto - + Pr&eferences Pr&eferenze - + &Invert Selection &Inverti selezione - + &Delete &Rimuovi - + &Rename &Rinomina - + Ctrl+A Ctrl+A - + Go &Up Vai &su - + &New Window &Nuova finestra - + &Icon View Vista &icone - + &Compact View Vista &compatta - + &Detailed List Elenco &dettagliato - + &Thumbnail View Vista minia&ture - + Cu&t &Taglia - + Ascending Crescente - + Descending Decrescente - + By File Name Per nome file - + By Modification Time Per data modifica - + By File Type Per tipo file - + By Owner Per proprietario - + Folder First Prima le cartelle - + New &Tab Nuova sc&heda - + New Tab Nuova scheda - + Ctrl+T Ctrl+T - + Go &Back Vai in&dietro - + Go Back Va indietro - + Alt+Left Alt+Sinistra - + Go &Forward Vai &avanti - + Go Forward Va avanti - + Alt+Right Alt+Destra - + Del Canc - + F2 F2 - + C&lose Tab C&hiudi scheda - + File &Properties &Proprietà file - + &Folder Properties Proprietà &cartella - - Folder - - - - - Ctrl+Shift+N - - - - - Blank File - - - - - Ctrl+Alt+N - - - - - C&reate New - - - - + &Sorting &Ordinamento - + Main Toolbar Barra strumenti principale - + Ctrl+W Ctrl+W - + Alt+Return Alt+Invio - + Case Sensitive Distingui MAIUSCOLE/minuscole - + By File Size Per dimensione file - + Close Window Chiudi finestra - + Edit Bookmarks Modifica segnalibri - + Open &Terminal Apri &terminale - + F4 F4 - + Open as &Root Apri come &root - + &Edit Bookmarks &Modifica segnalibri - + &File &File - + &Help A&iuto - + &View &Visualizza - + &Edit &Modifica - + &Bookmarks &Segnalibri - + &Go &Vai - + &Tool S&trumenti @@ -763,99 +597,100 @@ Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.< PCManFM::Application - + Name of configuration profile Nome del profilo di configurazione - + PROFILE PROFILO - + Run PCManFM as a daemon Esegue PCManFM come demone - + Quit PCManFM Esce da PCManFM - + Launch desktop manager Lancia il gestore della scrivania - + Turn off desktop manager if it's running Spegne il gestore della scrivania se è in esecuzione - + Open desktop preference dialog on the page with the specified name - Apre le preferenze della scrivania alla pagina con il nome specificato + Apri le preferenze della scrivania alla pagina con il nome specificato - - + + NAME NOME - + Set desktop wallpaper from image FILE Imposta lo sfondo della scrivania con l'immagine dal FILE - + FILE FILE - + Set mode of desktop wallpaper. MODE=(color|stretch|fit|center|tile) Imposta la modalità dello sfondo della scrivania. MODO=(color|stretch|fit|center|tile) - + MODE MODE - + Open Preferences dialog on the page with the specified name - Apre le Preferenze alla pagina con il nome specificato + where is that? + Apri le preferenze alla pagina con il nome specificato - + Open new window - Apre una nuova finestra + Apri una nuova finestra - + Open Find Files utility - Apre l'utilità di ricerca file + Apri l'utilità di ricerca file - + [FILE1, FILE2,...] [FILE1, FILE2, ...] - + Files or directories to open Cartelle o file da aprire - - + + Error Errore - + Terminal emulator is not set. L'emulatore di terminale non è impostato. @@ -865,7 +700,7 @@ Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.< Open in file manager - Apre nel gestore file + Apri nel gestore file @@ -901,7 +736,7 @@ Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.< Ripete l'immagine per riempire tutto lo schermo - + Image Files File immagine @@ -916,34 +751,34 @@ Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.< Desktop Preferences - Preferenze scrivania + Preferenze della scrivania PCManFM::MainWindow - + Version: %1 Versione:%1 - + &Move to Trash Cestin&a - + &Delete &Rimuovi - - + + Error Errore - + Switch user command is not set. Il comando per cambiare utente non è impostato. @@ -951,22 +786,22 @@ Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.< PCManFM::PreferencesDialog - + Icon View Vista icone - + Compact Icon View Vista icone compatta - + Thumbnail View Vista miniature - + Detailed List View Vista elenco dettagliato @@ -987,8 +822,8 @@ Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.< %n item(s) - %n oggetto/i - + %n oggetto + %n oggetti @@ -1000,7 +835,7 @@ Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.< - + %1 item(s) selected %1 elementi selezionati @@ -1008,17 +843,17 @@ Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.< PCManFM::View - + Open in New T&ab Apri in una nuova sc&heda - + Open in New Win&dow - Apre una nuova &finestra + Apri una nuova &finestra - + Open in Termina&l Apri nel termina&le @@ -1026,328 +861,207 @@ Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.< PreferencesDialog - + Preferences Preferenze - + User Interface Interfaccia utente - + Behavior Comportamento - - + Thumbnail Miniatura - + Volume - Volume + Periferiche - + Advanced Avanzate - + Icons Icone - + Size of big icons: Dimensione delle icone grandi: - + Size of small icons: Dimensione delle icone piccole: - + Size of thumbnails: Dimensione delle miniature: - + Size of side pane icons: Dimensione delle icone del riquadro laterale: - + Icon theme: Tema delle icone: - + Window Finestra - + Default width of new windows: Larghezza predefinita delle nuove finestre: - + Default height of new windows: Altezza predefinita delle nuove finestre: - + Always show the tab bar Mostra sempre la barra delle schede - + Show 'Close' buttons on tabs Mostra pulsanti di chiusura sulle schede - + Remember the size of the last closed window Ricorda dimensione della ultima finestra chiusa - + Browsing Navigazione - + Open files with single click - Apri file con un clic singolo + Apri file con un click singolo - + Delay of auto-selection in single click mode (0 to disable) Ritardo per l'auto-selezione in modalità click singolo - + Default view mode: Modalità vista predefinita: - + sec secondi - + File Operations Operazioni sui file - + Confirm before deleting files Conferma prima di rimuovere i file - + Move deleted files to "trash bin" instead of erasing from disk. Sposta nel «Cestino» i file rimossi invece di eliminarli dal disco. - + Show thumbnails of files Mostra miniature dei file - + Only show thumbnails for local files Mostra miniature solo per i file locali - - Display - - - - - Bookmarks: - - - - - Open in current tab - - - - - Open in new tab - - - - - Open in new window - - - - - Erase files on removable media instead of "trash can" creation - - - - - Confirm before moving files into "trash can" - - - - - Don't ask options on launch executable file - - - - - User interface - - - - - Treat backup files as hidden - - - - - Always show full file names - - - - - Show icons of hidden files shadowed - - - - - Show in places - - - - - Home - Cartella home - - - - Desktop - Scrivania - - - - Trash can - - - - - Computer - - - - - Applications - - - - - Devices - - - - - Network - - - - + Do not generate thumbnails for image files exceeding this size: Non generare miniature per file immagine più grandi di: - + KB  KB - + Auto Mount Montaggio automatico - + Mount mountable volumes automatically on program startup - Monta automaticamente i volumi montabili all'avvio del programma + Monta automaticamente i volumi disponibili all'avvio del programma - + Mount removable media automatically when they are inserted Monta automaticamente i volumi rimovibli quando vengono inseriti - + Show available options for removable media when they are inserted Mostra opzioni disponibili per i volumi rimovibli quando vengono inseriti - + When removable medium unmounted: Quando viene smontato un volume rimovibile: - + Close &tab containing removable medium Chiudi &scheda con il contenuto - + Chan&ge folder in the tab to home folder Cambia in cartella &home - + Switch &user command: - Comando per cambiare utente: + Comando per &cambiare utente: - + Archiver in&tegration: - Gestore archivi da usare: - - - - Templates - - - - - Show only user defined templates in menu - - - - - Show only one template for each MIME type - - - - - Run default application after creation from template - + Gestore &archivi da usare: - + Programs Programmi - + Terminal emulator: Emulatore di terminale: @@ -1356,7 +1070,7 @@ Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.< Comando per cambiare utente: - + Examples: "xterm -e %s" for terminal or "gksu %s" for switching user. %s = the command line you want to execute with terminal or su. Esempi: "xterm -e %s" per il terminale o "gksu %s" per cambiare utente. @@ -1367,7 +1081,7 @@ Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.< Integrazione con gli archivi: - + Use SI decimal prefixes instead of IEC binary prefixes Usa i prefissi decimali del SI invece di quelli binari dello IEC diff --git a/pcmanfm/translations/pcmanfm-qt_ru.ts b/pcmanfm/translations/pcmanfm-qt_ru.ts index 041d780..202dbf6 100644 --- a/pcmanfm/translations/pcmanfm-qt_ru.ts +++ b/pcmanfm/translations/pcmanfm-qt_ru.ts @@ -61,7 +61,25 @@ GNU General Public License for more details. You should have received a copy of the GNU General Public License along with this program; if not, write to the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. - + Файловый менеджер PCMan + +Авторское право (C) 2009 - 2014 洪任諭 (Hong Jen Yee) + +Эта программа является свободным программным обеспечением; +вы можете распространять и/или модифицировать ее согласно +условиям стандартной общественной лицензии GNU, опубликованной +Фондом свободного ПО; либо версии 2 лицензии, либо +(по вашему выбору) любой более поздней версии. + +Эта программа распространяется в надежде что она будет полезной, +но БЕЗ КАКИХ-ЛИБО ГАРАНТИЙ; даже без подразумеваемых гарантий +КОММЕРЧЕСКОЙ ЦЕННОСТИ или ПРИГОДНОСТИ ДЛЯ КОНКРЕТНОЙ ЦЕЛИ. +Смотрите Стандартную Общественную Лицензию GNU для большего +количества деталей. + +Вы должны были получить копию Стандартной Общественной Лицензии GNU +вместе с этой программой; если лицензии не было, напишите в Free Software +Foundation, Inc., 51 Franklin Street, Fifth Floor, Бостон, MA 02110-1301, США. @@ -970,17 +988,17 @@ Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.< PCManFM::TabPage - + Error Ошибка - + Free space: %1 (Total: %2) Свободное место: %1 (всего: %2) - + %n item(s) %n объект @@ -989,7 +1007,7 @@ Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.< - + (%n hidden) (%n скрыт) @@ -998,7 +1016,7 @@ Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.< - + %1 item(s) selected %1 объекта(ов) выделено @@ -1267,7 +1285,7 @@ Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.< Do not generate thumbnails for image files exceeding this size: - Не создавать эскизы для файлов изображений больше чем: + Не создавать эскизы для файлов изображений больших чем: @@ -1302,7 +1320,7 @@ Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.< Close &tab containing removable medium - Закрыть &вкладку, отображающую содержимого съёмного носителя + Закрыть &вкладку, отображающую содержимое съёмного носителя diff --git a/pcmanfm/translations/pcmanfm-qt_ru_RU.ts b/pcmanfm/translations/pcmanfm-qt_ru_RU.ts index 6291200..66fba5b 100644 --- a/pcmanfm/translations/pcmanfm-qt_ru_RU.ts +++ b/pcmanfm/translations/pcmanfm-qt_ru_RU.ts @@ -61,7 +61,25 @@ GNU General Public License for more details. You should have received a copy of the GNU General Public License along with this program; if not, write to the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. - + Файловый менеджер PCMan + +Авторское право (C) 2009 - 2014 洪任諭 (Hong Jen Yee) + +Эта программа является свободным программным обеспечением; +вы можете распространять и/или модифицировать ее согласно +условиям стандартной общественной лицензии GNU, опубликованной +Фондом свободного ПО; либо версии 2 лицензии, либо +(по вашему выбору) любой более поздней версии. + +Эта программа распространяется в надежде что она будет полезной, +но БЕЗ КАКИХ-ЛИБО ГАРАНТИЙ; даже без подразумеваемых гарантий +КОММЕРЧЕСКОЙ ЦЕННОСТИ или ПРИГОДНОСТИ ДЛЯ КОНКРЕТНОЙ ЦЕЛИ. +Смотрите Стандартную Общественную Лицензию GNU для большего +количества деталей. + +Вы должны были получить копию Стандартной Общественной Лицензии GNU +вместе с этой программой; если лицензии не было, напишите в Free Software +Foundation, Inc., 51 Franklin Street, Fifth Floor, Бостон, MA 02110-1301, США. @@ -1267,7 +1285,7 @@ Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.< Do not generate thumbnails for image files exceeding this size: - Не создавать эскизы для файлов изображений больше чем: + Не создавать эскизы для файлов изображений больших чем: @@ -1302,7 +1320,7 @@ Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.< Close &tab containing removable medium - Закрыть &вкладку, отображающую содержимого съёмного носителя + Закрыть &вкладку, отображающую содержимое съёмного носителя