summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--smb4k/core/smb4kbookmarkhandler.cpp4
-rw-r--r--smb4k/core/smb4kcore.cpp2
-rw-r--r--smb4k/core/smb4khomesshareshandler.cpp2
-rw-r--r--smb4k/core/smb4kmounter.cpp4
-rw-r--r--smb4k/core/smb4kmounter.h2
-rw-r--r--smb4k/core/smb4kpasswordhandler.cpp6
-rw-r--r--smb4k/core/smb4kpasswordhandler.h2
-rw-r--r--smb4k/core/smb4kpreviewer.cpp4
-rw-r--r--smb4k/core/smb4kpreviewer.h2
-rw-r--r--smb4k/core/smb4kprint.h2
-rw-r--r--smb4k/core/smb4ksambaoptionshandler.cpp4
-rw-r--r--smb4k/core/smb4kscanner.cpp6
-rw-r--r--smb4k/core/smb4kscanner.h2
-rw-r--r--smb4k/core/smb4ksynchronizer.cpp2
-rw-r--r--smb4k/core/smb4ksynchronizer.h2
-rw-r--r--smb4k/core/smb4tdefileio.cpp2
-rw-r--r--smb4k/core/smb4tdefileio.h2
-rw-r--r--smb4k/dialogs/smb4kcustomoptionsdialog.cpp2
-rw-r--r--smb4k/main.cpp2
-rw-r--r--smb4k/smb4k.cpp2
-rw-r--r--translations/messages/it.po969
-rw-r--r--translations/messages/ka.po32
22 files changed, 738 insertions, 319 deletions
diff --git a/smb4k/core/smb4kbookmarkhandler.cpp b/smb4k/core/smb4kbookmarkhandler.cpp
index 4661835..52153a8 100644
--- a/smb4k/core/smb4kbookmarkhandler.cpp
+++ b/smb4k/core/smb4kbookmarkhandler.cpp
@@ -28,7 +28,7 @@
#include <tqfile.h>
// KDE includes
-#include <kstandarddirs.h>
+#include <tdestandarddirs.h>
#include <kdebug.h>
#include <tdeapplication.h>
@@ -96,7 +96,7 @@ void Smb4KBookmarkHandler::addBookmark( Smb4KBookmark *bookmark )
if ( TQString::compare( bookmark->share(), "homes" ) == 0 )
{
- TQString share = specifyUser( bookmark->host(), kapp->mainWidget() ? kapp->mainWidget() : 0, "SpecifyUser" );
+ TQString share = specifyUser( bookmark->host(), tdeApp->mainWidget() ? tdeApp->mainWidget() : 0, "SpecifyUser" );
bookmark->setShareName( share );
}
diff --git a/smb4k/core/smb4kcore.cpp b/smb4k/core/smb4kcore.cpp
index 43e3bc9..d550438 100644
--- a/smb4k/core/smb4kcore.cpp
+++ b/smb4k/core/smb4kcore.cpp
@@ -98,7 +98,7 @@ Smb4KCore::Smb4KCore() : TQObject()
connect( m_previewer, TQ_SIGNAL( state( int ) ),
this, TQ_SLOT( slotSetSynchronizerState( int ) ) );
- connect( kapp, TQ_SIGNAL( shutDown() ),
+ connect( tdeApp, TQ_SIGNAL( shutDown() ),
this, TQ_SLOT( slotShutdown() ) );
}
diff --git a/smb4k/core/smb4khomesshareshandler.cpp b/smb4k/core/smb4khomesshareshandler.cpp
index 8f1f2ad..0aa661a 100644
--- a/smb4k/core/smb4khomesshareshandler.cpp
+++ b/smb4k/core/smb4khomesshareshandler.cpp
@@ -31,7 +31,7 @@
// KDE includes
#include <kdebug.h>
-#include <kstandarddirs.h>
+#include <tdestandarddirs.h>
#include <tdelocale.h>
#include <kiconloader.h>
#include <kcombobox.h>
diff --git a/smb4k/core/smb4kmounter.cpp b/smb4k/core/smb4kmounter.cpp
index 254bfd9..685423d 100644
--- a/smb4k/core/smb4kmounter.cpp
+++ b/smb4k/core/smb4kmounter.cpp
@@ -93,7 +93,7 @@ Smb4KMounter::Smb4KMounter( TQObject *parent, const char *name ) : TQObject( par
connect( m_proc, TQ_SIGNAL( receivedStderr( TDEProcess *, char *, int ) ),
this, TQ_SLOT( slotReceivedStderr( TDEProcess *, char *, int ) ) );
- connect( kapp, TQ_SIGNAL( shutDown() ),
+ connect( tdeApp, TQ_SIGNAL( shutDown() ),
this, TQ_SLOT( slotShutdown() ) );
}
@@ -480,7 +480,7 @@ void Smb4KMounter::mountShare( const TQString &workgroup, const TQString &host,
if ( TQString::compare( share, "homes" ) == 0 )
{
- share_name = specifyUser( host, kapp->mainWidget() ? kapp->mainWidget() : 0, "SpecifyUser" );
+ share_name = specifyUser( host, tdeApp->mainWidget() ? tdeApp->mainWidget() : 0, "SpecifyUser" );
}
else
{
diff --git a/smb4k/core/smb4kmounter.h b/smb4k/core/smb4kmounter.h
index f844ea1..0aad8e2 100644
--- a/smb4k/core/smb4kmounter.h
+++ b/smb4k/core/smb4kmounter.h
@@ -38,7 +38,7 @@
// KDE includes
#include <tdemacros.h>
-#include <kprocess.h>
+#include <tdeprocess.h>
// application specific includes
#include "smb4kdefs.h"
diff --git a/smb4k/core/smb4kpasswordhandler.cpp b/smb4k/core/smb4kpasswordhandler.cpp
index ab8abad..13682fc 100644
--- a/smb4k/core/smb4kpasswordhandler.cpp
+++ b/smb4k/core/smb4kpasswordhandler.cpp
@@ -36,7 +36,7 @@
// KDE includes
#include <tdelocale.h>
-#include <kstandarddirs.h>
+#include <tdestandarddirs.h>
#include <tdemessagebox.h>
#include <kiconloader.h>
#include <klineedit.h>
@@ -109,9 +109,9 @@ void Smb4KPasswordHandler::open_close_wallet()
// Start the wallet manager before accessing the wallet. We
// do not care about the return value, because we do not do
// error handling here.
- if ( kapp )
+ if ( tdeApp )
{
- (void) kapp->tdeinitExec( "tdewalletmanager" );
+ (void) tdeApp->tdeinitExec( "tdewalletmanager" );
}
else
{
diff --git a/smb4k/core/smb4kpasswordhandler.h b/smb4k/core/smb4kpasswordhandler.h
index 8f366a8..07a7e3e 100644
--- a/smb4k/core/smb4kpasswordhandler.h
+++ b/smb4k/core/smb4kpasswordhandler.h
@@ -37,7 +37,7 @@
// KDE includes
#include <tdemacros.h>
#include <kdialogbase.h>
-#include <kprocess.h>
+#include <tdeprocess.h>
#include <tdewallet.h>
// forward declarations
diff --git a/smb4k/core/smb4kpreviewer.cpp b/smb4k/core/smb4kpreviewer.cpp
index 68c70d2..da1066c 100644
--- a/smb4k/core/smb4kpreviewer.cpp
+++ b/smb4k/core/smb4kpreviewer.cpp
@@ -83,7 +83,7 @@ bool Smb4KPreviewer::preview( Smb4KPreviewItem *item )
if ( TQString::compare( item->share(), "homes" ) == 0 )
{
- TQString share_name = specifyUser( item->host(), kapp->mainWidget() ? kapp->mainWidget() : 0, "SpecifyUser" );
+ TQString share_name = specifyUser( item->host(), tdeApp->mainWidget() ? tdeApp->mainWidget() : 0, "SpecifyUser" );
if ( !share_name.isEmpty() )
{
@@ -237,7 +237,7 @@ void Smb4KPreviewer::slotProcessExited( TDEProcess * )
if ( passwordHandler()->askpass( m_item->workgroup(), m_item->host(),
m_item->share(), state,
- kapp->mainWidget() ? kapp->mainWidget() : 0,
+ tdeApp->mainWidget() ? tdeApp->mainWidget() : 0,
"AskPass" ) )
{
// Now we have a password. Retry.
diff --git a/smb4k/core/smb4kpreviewer.h b/smb4k/core/smb4kpreviewer.h
index ed09ad2..625bb2d 100644
--- a/smb4k/core/smb4kpreviewer.h
+++ b/smb4k/core/smb4kpreviewer.h
@@ -37,7 +37,7 @@
// KDE includes
#include <tdemacros.h>
-#include <kprocess.h>
+#include <tdeprocess.h>
// forward declarations
class Smb4KPreviewItem;
diff --git a/smb4k/core/smb4kprint.h b/smb4k/core/smb4kprint.h
index 3ccd105..4700096 100644
--- a/smb4k/core/smb4kprint.h
+++ b/smb4k/core/smb4kprint.h
@@ -38,7 +38,7 @@
// KDE includes
#include <tdemacros.h>
#include <kdialogbase.h>
-#include <kprocess.h>
+#include <tdeprocess.h>
// forward declarations
class Smb4KPrintInfo;
diff --git a/smb4k/core/smb4ksambaoptionshandler.cpp b/smb4k/core/smb4ksambaoptionshandler.cpp
index 6188542..98dd1ab 100644
--- a/smb4k/core/smb4ksambaoptionshandler.cpp
+++ b/smb4k/core/smb4ksambaoptionshandler.cpp
@@ -29,8 +29,8 @@
#include <tqdir.h>
// KDE includes
-#include <kstandarddirs.h>
-#include <kprocess.h>
+#include <tdestandarddirs.h>
+#include <tdeprocess.h>
#include <kdebug.h>
#include <tdelocale.h>
diff --git a/smb4k/core/smb4kscanner.cpp b/smb4k/core/smb4kscanner.cpp
index 4531890..ef94bf9 100644
--- a/smb4k/core/smb4kscanner.cpp
+++ b/smb4k/core/smb4kscanner.cpp
@@ -906,7 +906,7 @@ void Smb4KScanner::processWorkgroupMembers()
if ( passwordHandler()->askpass( m_priv->workgroup(), m_priv->host(),
TQString(), Smb4KPasswordHandler::AccessDenied,
- kapp->mainWidget() ? kapp->mainWidget() : 0, "AskPass" ) )
+ tdeApp->mainWidget() ? tdeApp->mainWidget() : 0, "AskPass" ) )
{
m_queue.enqueue( new TQString( TQString( "%1:%2:%3:%4" ).arg( Hosts ).arg( m_priv->workgroup(), m_priv->host(), m_priv->ip() ) ) );
}
@@ -1088,7 +1088,7 @@ void Smb4KScanner::processWorkgroupMembers()
if ( passwordHandler()->askpass( m_priv->workgroup(), m_priv->host(),
TQString(), Smb4KPasswordHandler::AccessDenied,
- kapp->mainWidget() ? kapp->mainWidget() : 0, "AskPass" ) )
+ tdeApp->mainWidget() ? tdeApp->mainWidget() : 0, "AskPass" ) )
{
m_queue.enqueue( new TQString( TQString( "%1:%2:%3:%4" ).arg( Hosts ).arg( m_priv->workgroup(), m_priv->host(), m_priv->ip() ) ) );
}
@@ -1185,7 +1185,7 @@ void Smb4KScanner::processShares()
// Authentication failed:
emit failed();
- if ( passwordHandler()->askpass( m_priv->workgroup(), m_priv->host(), TQString(), Smb4KPasswordHandler::AccessDenied, kapp->mainWidget() ? kapp->mainWidget() : 0, "AskPass" ) )
+ if ( passwordHandler()->askpass( m_priv->workgroup(), m_priv->host(), TQString(), Smb4KPasswordHandler::AccessDenied, tdeApp->mainWidget() ? tdeApp->mainWidget() : 0, "AskPass" ) )
{
m_queue.enqueue( new TQString( TQString( "%1:%2:%3:%4:%5" ).arg( Shares ).arg( m_priv->workgroup(), m_priv->host(), m_priv->ip(), TQString() ) ) );
}
diff --git a/smb4k/core/smb4kscanner.h b/smb4k/core/smb4kscanner.h
index bf85982..2ba2e22 100644
--- a/smb4k/core/smb4kscanner.h
+++ b/smb4k/core/smb4kscanner.h
@@ -37,7 +37,7 @@
// KDE includes
#include <tdemacros.h>
-#include <kprocess.h>
+#include <tdeprocess.h>
// application specific includes
#include "smb4kdefs.h"
diff --git a/smb4k/core/smb4ksynchronizer.cpp b/smb4k/core/smb4ksynchronizer.cpp
index 20a7288..fe1aa3a 100644
--- a/smb4k/core/smb4ksynchronizer.cpp
+++ b/smb4k/core/smb4ksynchronizer.cpp
@@ -72,7 +72,7 @@ Smb4KSynchronizer::Smb4KSynchronizer( TQObject *parent, const char *name )
connect( m_proc, TQ_SIGNAL( receivedStderr( TDEProcess *, char *, int ) ),
this, TQ_SLOT( slotReceivedStderr( TDEProcess *, char *, int ) ) );
- connect( kapp, TQ_SIGNAL( shutDown() ),
+ connect( tdeApp, TQ_SIGNAL( shutDown() ),
this, TQ_SLOT( slotShutdown() ) );
}
diff --git a/smb4k/core/smb4ksynchronizer.h b/smb4k/core/smb4ksynchronizer.h
index 1cd9c77..1d8d65b 100644
--- a/smb4k/core/smb4ksynchronizer.h
+++ b/smb4k/core/smb4ksynchronizer.h
@@ -33,7 +33,7 @@
// KDE includes
#include <tdemacros.h>
#include <kdialogbase.h>
-#include <kprocess.h>
+#include <tdeprocess.h>
// TQt includes
#include <tqobject.h>
diff --git a/smb4k/core/smb4tdefileio.cpp b/smb4k/core/smb4tdefileio.cpp
index 49c9f50..6e56fe4 100644
--- a/smb4k/core/smb4tdefileio.cpp
+++ b/smb4k/core/smb4tdefileio.cpp
@@ -72,7 +72,7 @@ Smb4KFileIO::Smb4KFileIO( TQObject *parent, const char *name ) : TQObject( paren
connect( m_proc, TQ_SIGNAL( processExited( TDEProcess * ) ),
this, TQ_SLOT( slotProcessExited( TDEProcess * ) ) );
- connect( kapp, TQ_SIGNAL( shutDown() ),
+ connect( tdeApp, TQ_SIGNAL( shutDown() ),
this, TQ_SLOT( slotShutdown() ) );
}
diff --git a/smb4k/core/smb4tdefileio.h b/smb4k/core/smb4tdefileio.h
index 75ef7d8..cf05530 100644
--- a/smb4k/core/smb4tdefileio.h
+++ b/smb4k/core/smb4tdefileio.h
@@ -37,7 +37,7 @@
// KDE include
#include <tdemacros.h>
-#include <kprocess.h>
+#include <tdeprocess.h>
/**
diff --git a/smb4k/dialogs/smb4kcustomoptionsdialog.cpp b/smb4k/dialogs/smb4kcustomoptionsdialog.cpp
index d2a3ccc..404ba94 100644
--- a/smb4k/dialogs/smb4kcustomoptionsdialog.cpp
+++ b/smb4k/dialogs/smb4kcustomoptionsdialog.cpp
@@ -111,7 +111,7 @@ Smb4KCustomOptionsDialog::Smb4KCustomOptionsDialog( Smb4KShareItem *share, TQWid
}
else
{
- m_homes_user = specifyUser( share->host(), kapp->mainWidget() ? kapp->mainWidget() : 0, "SpecifyUser" );
+ m_homes_user = specifyUser( share->host(), tdeApp->mainWidget() ? tdeApp->mainWidget() : 0, "SpecifyUser" );
m_initialized = m_homes_user.isEmpty() ? false : true;
}
diff --git a/smb4k/main.cpp b/smb4k/main.cpp
index 5563322..2ad0e4d 100644
--- a/smb4k/main.cpp
+++ b/smb4k/main.cpp
@@ -36,7 +36,7 @@
#include <tdeconfig.h>
#include <tdeuniqueapplication.h>
#include <tdemessagebox.h>
-#include <kstandarddirs.h>
+#include <tdestandarddirs.h>
// system includes
#include <stdlib.h>
diff --git a/smb4k/smb4k.cpp b/smb4k/smb4k.cpp
index 2725447..f37cc29 100644
--- a/smb4k/smb4k.cpp
+++ b/smb4k/smb4k.cpp
@@ -455,7 +455,7 @@ bool Smb4KApp::queryExit()
bool Smb4KApp::queryClose()
{
- if ( !kapp->sessionSaving() && isVisible() && m_system_tray->isEmbedded() &&
+ if ( !tdeApp->sessionSaving() && isVisible() && m_system_tray->isEmbedded() &&
Smb4KSettings::embedIntoSystemTray() )
{
// This part has been 'stolen' from JuK application.
diff --git a/translations/messages/it.po b/translations/messages/it.po
index c046e2f..d63968d 100644
--- a/translations/messages/it.po
+++ b/translations/messages/it.po
@@ -1,18 +1,21 @@
# translation of it.po to
# Isidoro Russo <[email protected]>, 2004.
+# Michele Calgaro <[email protected]>, 2025.
msgid ""
msgstr ""
"Project-Id-Version: it\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2021-07-07 18:27+0000\n"
-"PO-Revision-Date: 2007-12-15 19:18+0100\n"
-"Last-Translator: dragon\n"
-"Language-Team: <[email protected]>\n"
-"Language: \n"
+"PO-Revision-Date: 2025-03-07 05:44+0000\n"
+"Last-Translator: Michele Calgaro <[email protected]>\n"
+"Language-Team: Italian <https://mirror.git.trinitydesktop.org/weblate/"
+"projects/applications/smb4k/it/>\n"
+"Language: it\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
-"X-Generator: KBabel 1.11.4\n"
+"Plural-Forms: nplurals=2; plural=n != 1;\n"
+"X-Generator: Weblate 4.17\n"
#. Instead of a literal translation, add your name to the end of the list (separated by a comma).
msgid ""
@@ -82,9 +85,8 @@ msgid "Au&thentication"
msgstr "Au&tenticazione"
#: smb4k/browser/smb4knetworkbrowser_part.cpp:157
-#, fuzzy
msgid "&Custom Options"
-msgstr "Opzioni Personalizzate"
+msgstr "&Opzioni Personalizzate"
#: smb4k/browser/smb4knetworkbrowser_part.cpp:160
msgid "Add &Bookmark"
@@ -122,9 +124,8 @@ msgid "Scan Wo&rkgroup"
msgstr "Analizza G&ruppo di lavoro"
#: smb4k/browser/smb4knetworkbrowser_part.cpp:1905
-#, fuzzy
msgid "Smb4KNetworkBrowserPart"
-msgstr "Browser di rete"
+msgstr "Smb4KNetworkBrowserPart"
#: smb4k/browser/smb4knetworkbrowsertooltip.cpp:109
#: smb4k/browser/smb4knetworkbrowsertooltip.cpp:154
@@ -134,7 +135,7 @@ msgstr "Gruppo di lavoro:"
#: smb4k/browser/smb4knetworkbrowsertooltip.cpp:112
msgid "Pseudo master browser:"
-msgstr "Pseudo master browser:"
+msgstr "Pseudo browser principale:"
#: smb4k/browser/smb4knetworkbrowsertooltip.cpp:112
#: smb4k/browser/smb4knetworkbrowsertooltip.cpp:158
@@ -231,7 +232,7 @@ msgstr "Utente:"
msgid "This login name is used by default to authenticate to a remote server."
msgstr ""
"Questo nome utente sarà utilizzato di default per l'autenticazione ad un "
-"server remoto"
+"server remoto."
#: smb4k/configdlg/smb4kauthoptions.cpp:73
#: smb4k/core/smb4kpasswordhandler.cpp:311
@@ -277,7 +278,7 @@ msgid ""
"is very reliable but fails sometimes if your network neighborhood is "
"configured uncommonly. In this case you should try to use \"smbclient\"."
msgstr ""
-"Smb4K utilizza \"nmblookup\" come impostazione predefinita per le ricerche "
+"Smb4K utilizza \"nmblookup\" come impostazione predefinita per le ricerche "
"in rete. Questo metodo, solitamente affidabile, può non funzionare se alcune "
"macchine nella rete hanno configurazioni non comuni. In questo caso, "
"utilizzare il metodo \"smbclient\"."
@@ -299,18 +300,16 @@ msgid "NetBIOS name:"
msgstr "Nome NetBIOS:"
#: smb4k/configdlg/smb4ksambaoptions.cpp:76
-#, fuzzy
msgid "Domain:"
-msgstr "Collocazione:"
+msgstr "Dominio:"
#: smb4k/configdlg/smb4ksambaoptions.cpp:79
msgid "Socket options:"
msgstr "Opzioni del socket:"
#: smb4k/configdlg/smb4ksambaoptions.cpp:82
-#, fuzzy
msgid "NetBIOS scope:"
-msgstr "Nome NetBIOS:"
+msgstr "Ambito NetBIOS:"
#: smb4k/configdlg/smb4ksambaoptions.cpp:85
msgid "Remote SMB port:"
@@ -331,7 +330,6 @@ msgid "Authenticate as machine account"
msgstr "Autentica come account del sistema"
#: smb4k/configdlg/smb4ksambaoptions.cpp:100
-#, fuzzy
msgid "General Settings"
msgstr "Opzioni generali"
@@ -342,13 +340,12 @@ msgid "File System"
msgstr "File System"
#: smb4k/configdlg/smb4ksambaoptions.cpp:120
-#, fuzzy
msgid ""
"NOTE: You might need to enable support for either \"super\" or \"sudo\" in "
"the Super User page."
msgstr ""
-"Scegliendo il file system CIFS, potrebbe essere necessario abilitare il "
-"supporto a <i>super</i> o <i>sudo</i> nella scheda Amministratore."
+"NOTA: potrebbe essere necessario abilitare il supporto a <i>super</i> o "
+"<i>sudo</i> nella scheda Amministratore."
#: smb4k/configdlg/smb4ksambaoptions.cpp:124
msgid "User and Group"
@@ -373,9 +370,8 @@ msgid "Charset and Codepage"
msgstr "Set di caratteri e Codici di pagina"
#: smb4k/configdlg/smb4ksambaoptions.cpp:139
-#, fuzzy
msgid "Client charset:"
-msgstr "Set di caratteri Linux:"
+msgstr "Set di caratteri del client:"
#: smb4k/configdlg/smb4ksambaoptions.cpp:141
#: smb4k/configdlg/smb4ksambaoptions.cpp:167
@@ -400,7 +396,7 @@ msgstr "Maschera file:"
#: smb4k/configdlg/smb4ksambaoptions.cpp:209
msgid "Directory mask:"
-msgstr "Directory mask:"
+msgstr "Maschera della directory:"
#: smb4k/configdlg/smb4ksambaoptions.cpp:213
#: smb4k/configdlg/smb4ksambaoptions.cpp:414
@@ -449,25 +445,25 @@ msgstr "Tenta l'impstazione di UID e GID"
#: smb4k/core/smb4ksettings.cpp:700
#, no-c-format
msgid "Use server inode numbers"
-msgstr ""
+msgstr "Utilizza i numeri inode del server"
#: smb4k/configdlg/smb4ksambaoptions.cpp:233 smb4k/core/smb4k.kcfg:549
#: smb4k/core/smb4ksettings.cpp:704
#, no-c-format
msgid "Do not cache inode data"
-msgstr ""
+msgstr "Non memorizzare nella cache i dati dell'inode"
#: smb4k/configdlg/smb4ksambaoptions.cpp:235 smb4k/core/smb4k.kcfg:554
#: smb4k/core/smb4ksettings.cpp:708
#, no-c-format
msgid "Translate reserved characters"
-msgstr ""
+msgstr "Traduci i caratteri riservati"
#: smb4k/configdlg/smb4ksambaoptions.cpp:237 smb4k/core/smb4k.kcfg:559
#: smb4k/core/smb4ksettings.cpp:712
#, no-c-format
msgid "Do not use locking"
-msgstr ""
+msgstr "Non utilizzare il bloccaggio"
#: smb4k/configdlg/smb4ksambaoptions.cpp:244
msgid "Additional options:"
@@ -482,9 +478,8 @@ msgid "Use Unicode when communicating with the server"
msgstr "Usa Unicode per comunicare con il server"
#: smb4k/configdlg/smb4ksambaoptions.cpp:252
-#, fuzzy
msgid "Use large file support"
-msgstr "Attiva il supporto ai filesystem estesi"
+msgstr "Utilizzare il supporto per file di grandi dimensioni"
#: smb4k/configdlg/smb4ksambaoptions.cpp:258
msgid "Caching time of directory listings:"
@@ -511,9 +506,8 @@ msgid "ADS: Active Directory environment (LDAP/Kerberos)"
msgstr "ADS: Ambiente Active Directory (LDAP/Kerberos)"
#: smb4k/configdlg/smb4ksambaoptions.cpp:318
-#, fuzzy
msgid "Name resolve order:"
-msgstr "Ordine di risoluzione:"
+msgstr "Ordine di risoluzione dei nomi:"
#: smb4k/configdlg/smb4ksambaoptions.cpp:321
msgid "Buffer size:"
@@ -521,16 +515,15 @@ msgstr "Dimensione del buffer:"
#: smb4k/configdlg/smb4ksambaoptions.cpp:323
msgid " Bytes"
-msgstr "Bytes"
+msgstr " Bytes"
#: smb4k/configdlg/smb4ksambaoptions.cpp:325
msgid "Signing state:"
-msgstr ""
+msgstr "Stato della firma:"
#: smb4k/configdlg/smb4ksambaoptions.cpp:327
-#, fuzzy
msgid "none"
-msgstr "Nessuno"
+msgstr "nessuno"
#: smb4k/configdlg/smb4ksambaoptions.cpp:328
msgid "on"
@@ -708,7 +701,7 @@ msgstr "Rimuovi le voci"
#: smb4k/configdlg/smb4ksuperuseroptions.cpp:68
msgid "Remove entries from the configuration file"
-msgstr ""
+msgstr "Rimuovere le voci dal file di configurazione"
#: smb4k/configdlg/smb4ksuperuseroptions.cpp:69
msgid ""
@@ -716,6 +709,9 @@ msgid ""
"by Smb4K will be removed either from /etc/super.tab or /etc/sudoers. "
"Additionally, all your choices under \"Actions\" will be cleared."
msgstr ""
+"A seconda della scelta effettuata in \"Programmi\", tutte le voci scritte da "
+"Smb4K verranno rimosse da /etc/super.tab o /etc/sudoers. Inoltre, tutte le "
+"scelte effettuate in \"Azioni\" verranno cancellate."
#: smb4k/configdlg/smb4kuserinterfaceoptions.cpp:52
#: smb4k/configdlg/smb4kuserinterfaceoptions.cpp:171
@@ -737,7 +733,6 @@ msgid "Show custom bookmark label if available"
msgstr "Mostra etichetta personalizzata del segnalibro se disponibile"
#: smb4k/configdlg/smb4kuserinterfaceoptions.cpp:64
-#, fuzzy
msgid "System Tray"
msgstr "Ancoraggio nella barra di sistema"
@@ -796,9 +791,8 @@ msgstr "Mostra i suggerimenti circa gli elementi della rete"
#: smb4k/configdlg/smb4kuserinterfaceoptions.cpp:114
#: smb4k/smb4ksystemtray.cpp:67
-#, fuzzy
msgid "Mounted Shares"
-msgstr "Condivi&sioni montate"
+msgstr "Condivisioni montate"
#: smb4k/configdlg/smb4kuserinterfaceoptions.cpp:116
msgid "Show mount point instead of share name"
@@ -924,11 +918,11 @@ msgstr "Amministratore"
#: smb4k/configdlg/smb4tdeconfigdialog.cpp:707
msgid "[Network] The custom master browser has not been entered.\n"
-msgstr ""
+msgstr "[Rete] Non è stato inserito il browser principale personalizzato.\n"
#: smb4k/configdlg/smb4tdeconfigdialog.cpp:722
msgid "[Network] The broadcast areas have not been entered.\n"
-msgstr ""
+msgstr "[Rete] Le aree di trasmissione non sono state inserite.\n"
#: smb4k/configdlg/smb4tdeconfigdialog.cpp:733
msgid "[Shares] The mount prefix is empty.\n"
@@ -936,75 +930,81 @@ msgstr "[Condivisioni] Il percorso di montaggio è vuoto.\n"
#: smb4k/configdlg/smb4tdeconfigdialog.cpp:748
msgid "[Authentication] The default user name has not been entered.\n"
-msgstr ""
+msgstr "[Autenticazione] Il nome utente predefinito non è stato inserito.\n"
#: smb4k/configdlg/smb4tdeconfigdialog.cpp:759
msgid "[Samba] The file mask is empty.\n"
-msgstr ""
+msgstr "[Samba] La maschera del file è vuota.\n"
#: smb4k/configdlg/smb4tdeconfigdialog.cpp:770
msgid "[Samba] The directory mask is empty.\n"
-msgstr ""
+msgstr "[Samba] La maschera della directory è vuota.\n"
#: smb4k/configdlg/smb4tdeconfigdialog.cpp:781
msgid "[Samba] The UID is empty.\n"
-msgstr ""
+msgstr "[Samba] L'UID è vuoto.\n"
#: smb4k/configdlg/smb4tdeconfigdialog.cpp:792
msgid "[Samba] The GID is empty.\n"
-msgstr ""
+msgstr "[Samba] Il GID è vuoto.\n"
#: smb4k/configdlg/smb4tdeconfigdialog.cpp:803
msgid "[Synchronization] The rsync prefix is empty.\n"
-msgstr ""
+msgstr "[Sincronizzazione] Il prefisso rsync è vuoto.\n"
#: smb4k/configdlg/smb4tdeconfigdialog.cpp:816
-#, fuzzy
msgid ""
"[Synchronization] The directory where partially transferred files should be "
"stored is empty.\n"
-msgstr "Conserva i file parzialmente trasferiti in"
+msgstr ""
+"[Sincronizzazione] La directory in cui devono essere archiviati i file "
+"parzialmente trasferiti è vuota.\n"
#: smb4k/configdlg/smb4tdeconfigdialog.cpp:829
msgid "[Synchronization] The exclude patterns have not been entered.\n"
-msgstr ""
+msgstr "[Sincronizzazione] I modelli di esclusione non sono stati inseriti.\n"
#: smb4k/configdlg/smb4tdeconfigdialog.cpp:842
msgid "[Synchronization] The path of the exclude file is empty.\n"
-msgstr ""
+msgstr "[Sincronizzazione] Il percorso del file di esclusione è vuoto.\n"
#: smb4k/configdlg/smb4tdeconfigdialog.cpp:855
msgid "[Synchronization] The include patterns have not been entered.\n"
-msgstr ""
+msgstr "[Sincronizzazione] I modelli di inclusione non sono stati immessi.\n"
#: smb4k/configdlg/smb4tdeconfigdialog.cpp:868
msgid "[Synchronization] The path of the include file is empty.\n"
-msgstr ""
+msgstr "[Sincronizzazione] Il percorso del file di inclusione è vuoto.\n"
#: smb4k/configdlg/smb4tdeconfigdialog.cpp:887
msgid "[Synchronization] The backup suffix has not been defined.\n"
-msgstr ""
+msgstr "[Sincronizzazione] Il suffisso di backup non è stato definito.\n"
#: smb4k/configdlg/smb4tdeconfigdialog.cpp:900
msgid "[Synchronization] The backup directory is empty.\n"
-msgstr ""
+msgstr "[Sincronizzazione] La directory di backup è vuota.\n"
#: smb4k/configdlg/smb4tdeconfigdialog.cpp:908
msgid ""
"The configuration could not be written, because one setting is incomplete:\n"
"%1Please correct this issue."
msgstr ""
+"Non è stato possibile scrivere la configurazione perché un'impostazione è "
+"incompleta:\n"
+"%1 Per favore correggi questo problema."
#: smb4k/configdlg/smb4tdeconfigdialog.cpp:912
msgid ""
"The configuration could not be written, because %1 settings are incomplete:\n"
"%1Please correct these issues."
msgstr ""
+"Impossibile scrivere la configurazione perché le impostazioni %1 sono "
+"incomplete:\n"
+"%1 Per favore correggi questi problemi."
#: smb4k/configdlg/smb4tdeconfigdialog.cpp:1191
-#, fuzzy
msgid "Smb4TDEConfigDialog"
-msgstr "Smb4KMontaggio"
+msgstr "Smb4TDEConfigDialog"
#: smb4k/configdlg/smb4tdersyncoptions.cpp:55
msgid "Default Destination"
@@ -1117,9 +1117,8 @@ msgid "Preserve group"
msgstr "Mantieni il gruppo"
#: smb4k/configdlg/smb4tdersyncoptions.cpp:92
-#, fuzzy
msgid "Preserve owner"
-msgstr "Mantieni il gruppo"
+msgstr "Mantieni il proprietario"
#: smb4k/configdlg/smb4tdersyncoptions.cpp:93 smb4k/core/smb4k.kcfg:728
#: smb4k/core/smb4ksettings.cpp:875
@@ -1151,7 +1150,7 @@ msgstr "Eliminazione del File"
#: smb4k/core/smb4ksettings.cpp:887
#, no-c-format
msgid "Remove synchronized source files"
-msgstr ""
+msgstr "Rimuovere i file di origine sincronizzati"
#: smb4k/configdlg/smb4tdersyncoptions.cpp:119 smb4k/core/smb4k.kcfg:748
#: smb4k/core/smb4ksettings.cpp:891
@@ -1178,9 +1177,8 @@ msgid "Delete files during transfer"
msgstr "Elimina i file durante il trasferimento"
#: smb4k/configdlg/smb4tdersyncoptions.cpp:123
-#, fuzzy
msgid "Also delete excluded files"
-msgstr "Elimina anche i file nella destinazione esclusi"
+msgstr "Elimina anche i file esclusi"
#: smb4k/configdlg/smb4tdersyncoptions.cpp:124 smb4k/core/smb4k.kcfg:773
#: smb4k/core/smb4ksettings.cpp:911
@@ -1207,14 +1205,12 @@ msgid "File Transfer"
msgstr "Trasferimento dei File"
#: smb4k/configdlg/smb4tdersyncoptions.cpp:137
-#, fuzzy
msgid "Don't transfer any file smaller than:"
-msgstr "Non trasferire file più piccoli di"
+msgstr "Non trasferire file più piccoli di:"
#: smb4k/configdlg/smb4tdersyncoptions.cpp:140
-#, fuzzy
msgid "Don't transfer any file larger than:"
-msgstr "Non trasferire file più grandi di"
+msgstr "Non trasferire file più grandi di:"
#: smb4k/configdlg/smb4tdersyncoptions.cpp:143 smb4k/core/smb4k.kcfg:816
#: smb4k/core/smb4ksettings.cpp:943
@@ -1223,9 +1219,8 @@ msgid "Keep partially transferred files"
msgstr "Mantieni i file parzialmente trasferiti"
#: smb4k/configdlg/smb4tdersyncoptions.cpp:145
-#, fuzzy
msgid "Put a partially transferred file into:"
-msgstr "Conserva i file parzialmente trasferiti in"
+msgstr "Conserva i file parzialmente trasferiti in:"
#: smb4k/configdlg/smb4tdersyncoptions.cpp:156
msgid "File Deletion && Transfer"
@@ -1242,48 +1237,40 @@ msgid "Exclude files matching this pattern:"
msgstr "Escludi i file che corrispondono a questo schema:"
#: smb4k/configdlg/smb4tdersyncoptions.cpp:174
-#, fuzzy
msgid "Read exclude patterns from:"
-msgstr "Preleva gli schemi di esclusione da"
+msgstr "Preleva gli schemi di esclusione da:"
#: smb4k/configdlg/smb4tdersyncoptions.cpp:177
msgid "Don't exclude files matching this pattern:"
msgstr "NOn escludere i file che corrispondono a questo schema:"
#: smb4k/configdlg/smb4tdersyncoptions.cpp:179
-#, fuzzy
msgid "Read include patterns from:"
-msgstr "Preleva gli schemi di inclusione da"
+msgstr "Preleva gli schemi di inclusione da:"
#: smb4k/configdlg/smb4tdersyncoptions.cpp:183
msgid "Filter Rules"
msgstr "Regole di filtraggio"
#: smb4k/configdlg/smb4tdersyncoptions.cpp:186
-#, fuzzy
msgid ""
"The rules defined below will be added to the \"rsync\" command as they are. "
"Thus, you have to start with the --filter=... argument."
msgstr ""
-"Le regole definite sopra saranno aggiunte al comando <i>rsync</i> così come "
-"appaiono. Per questo motivo, è necessario iniziare con l'argomento '--"
-"filter'. Per maggiori informazioni, leggere la prima pagina del manuale di "
-"rsync."
+"Le regole definite di seguito verranno aggiunte al comando \"rsync\" così "
+"come sono. Pertanto, devi iniziare con l'argomento --filter=...."
#: smb4k/configdlg/smb4tdersyncoptions.cpp:189
-#, fuzzy
msgid "Special filter rules:"
-msgstr "Regole di filtraggio"
+msgstr "Regole di filtraggio:"
#: smb4k/configdlg/smb4tdersyncoptions.cpp:190
-#, fuzzy
msgid "Use --filter='dir-merge /.rsync-filter' filter rule"
-msgstr "Usa la regola \"--filter='- .rsync-filter'\""
+msgstr "Utilizza la regola di filtro --filter='dir-merge /.rsync-filter'"
#: smb4k/configdlg/smb4tdersyncoptions.cpp:191
-#, fuzzy
msgid "Use --filter='exclude .rsync-filter' filter rule"
-msgstr "Usa la regola \"--filter='- .rsync-filter'\""
+msgstr "Utilizza la regola di filtro --filter='exclude .rsync-filter'"
#: smb4k/configdlg/smb4tdersyncoptions.cpp:199
msgid "Filtering"
@@ -1314,9 +1301,8 @@ msgid "Ignore files that already exist"
msgstr "Ignora i file già esistenti"
#: smb4k/configdlg/smb4tdersyncoptions.cpp:218
-#, fuzzy
msgid "Delay updates until the end of transfer"
-msgstr "Elimina i file nella destinazione dopo il trasferimento"
+msgstr "Ritarda gli aggiornamenti fino alla fine del trasferimento"
#: smb4k/configdlg/smb4tdersyncoptions.cpp:220
msgid "Backup"
@@ -1349,9 +1335,8 @@ msgid "Set block/file checksum seed:"
msgstr "Imposta il seme per il checksum del blocco/file:"
#: smb4k/configdlg/smb4tdersyncoptions.cpp:238
-#, fuzzy
msgid "Skip files based on checksum"
-msgstr "Salta basandoti sul checksum"
+msgstr "Salta i file in base al checksum"
#: smb4k/configdlg/smb4tdersyncoptions.cpp:248
msgid "Advanced"
@@ -1373,124 +1358,135 @@ msgid ""
"The browse list could not be retrieved.\n"
"Detailed information cannot be provided because there was no error message."
msgstr ""
+"Impossibile recuperare l'elenco di ricerca.\n"
+"Non è possibile fornire informazioni dettagliate perché non è stato "
+"visualizzato alcun messaggio di errore."
#: smb4k/core/smb4kerror.cpp:46
-#, fuzzy
msgid ""
"The browse list could not be retrieved.\n"
"Read the error message under \"Details\" to find out more."
msgstr ""
-"Non è stato possibile smontare questa condivisione, la stringa del punto di "
-"montaggio è vuota."
+"Impossibile recuperare l'elenco di ricerca.\n"
+"Leggi il messaggio di errore in \"Dettagli\" per saperne di più."
#: smb4k/core/smb4kerror.cpp:55
msgid ""
"The list of servers could not be retrieved.\n"
"Detailed information cannot be provided because there was no error message."
msgstr ""
+"Impossibile recuperare l'elenco dei server.\n"
+"Non è possibile fornire informazioni dettagliate perché non è stato "
+"visualizzato alcun messaggio di errore."
#: smb4k/core/smb4kerror.cpp:59
-#, fuzzy
msgid ""
"The list of servers could not be retrieved.\n"
"Read the error message under \"Details\" to find out more."
msgstr ""
-"Non è stato possibile smontare questa condivisione, la stringa del punto di "
-"montaggio è vuota."
+"Impossibile recuperare l'elenco dei server.\n"
+"Leggi il messaggio di errore in \"Dettagli\" per saperne di più."
#: smb4k/core/smb4kerror.cpp:68
msgid ""
"The list of shares could not be retrieved.\n"
"Detailed information cannot be provided because there was no error message."
msgstr ""
+"Impossibile recuperare l'elenco delle condivisioni.\n"
+"Non è possibile fornire informazioni dettagliate perché non è stato "
+"visualizzato alcun messaggio di errore."
#: smb4k/core/smb4kerror.cpp:72
-#, fuzzy
msgid ""
"The list of shares could not be retrieved.\n"
"Read the error message under \"Details\" to find out more."
msgstr ""
-"Non è stato possibile smontare questa condivisione, la stringa del punto di "
-"montaggio è vuota."
+"Impossibile recuperare l'elenco delle condivisioni.\n"
+"Leggi il messaggio di errore in \"Dettagli\" per saperne di più."
#: smb4k/core/smb4kerror.cpp:81
msgid ""
"The preview could not be compiled.\n"
"Detailed information cannot be provided because there was no error message."
msgstr ""
+"Impossibile compilare l'anteprima.\n"
+"Non è possibile fornire informazioni dettagliate perché non è stato "
+"visualizzato alcun messaggio di errore."
#: smb4k/core/smb4kerror.cpp:85
-#, fuzzy
msgid ""
"The preview could not be compiled.\n"
"Read the error message under \"Details\" to find out more."
msgstr ""
-"Non è stato possibile smontare questa condivisione, la stringa del punto di "
-"montaggio è vuota."
+"Impossibile compilare l'anteprima.\n"
+"Leggi il messaggio di errore in \"Dettagli\" per saperne di più."
#: smb4k/core/smb4kerror.cpp:92
-#, fuzzy
msgid ""
"The wallet \"%1\" could not be opened. TDEWallet support will be disabled "
"for this session."
msgstr ""
-"Il portafogli \"%1\" non può essere aperto. Il supporto a TDEWallet verrà "
-"disabilitato."
+"Impossibile aprire il portafoglio \"%1\". Il supporto di TDEWallet sarà "
+"disabilitato per questa sessione."
#: smb4k/core/smb4kerror.cpp:100
msgid ""
"Some file permissions could not be determined.\n"
"Detailed information cannot be provided because there was no error message."
msgstr ""
+"Impossibile determinare le autorizzazioni di alcuni file.\n"
+"Non è possibile fornire informazioni dettagliate perché non è stato "
+"visualizzato alcun messaggio di errore."
#: smb4k/core/smb4kerror.cpp:104
-#, fuzzy
msgid ""
"Some file permissions could not be determined.\n"
"Read the error message under \"Details\" to find out more."
msgstr ""
-"Non è stato possibile smontare questa condivisione, la stringa del punto di "
-"montaggio è vuota."
+"Impossibile determinare le autorizzazioni di alcuni file.\n"
+"Leggi il messaggio di errore in \"Dettagli\" per saperne di più."
#: smb4k/core/smb4kerror.cpp:111
-#, fuzzy
msgid ""
"You are not allowed to unmount this share, because it is owned by another "
"user."
-msgstr "Non è consentito smontare questa condivisione."
+msgstr ""
+"Non sei autorizzato a smontare questa condivisione perché è di proprietà di "
+"un altro utente."
#: smb4k/core/smb4kerror.cpp:119
msgid ""
"The share \"%1\" could not be mounted.\n"
"Detailed information cannot be provided because there was no error message."
msgstr ""
+"Impossibile montare la condivisione \"%1\".\n"
+"Non è possibile fornire informazioni dettagliate perché non è stato "
+"visualizzato alcun messaggio di errore."
#: smb4k/core/smb4kerror.cpp:123
-#, fuzzy
msgid ""
"The share \"%1\" could not be mounted.\n"
"Read the error message under \"Details\" to find out more."
msgstr ""
-"Non è stato possibile smontare questa condivisione, la stringa del punto di "
-"montaggio è vuota."
+"Impossibile montare la condivisione \"%1\".\n"
+"Leggi il messaggio di errore in \"Dettagli\" per saperne di più."
#: smb4k/core/smb4kerror.cpp:132
-#, fuzzy
msgid ""
"The share \"%1\" could not be unmounted.\n"
"Detailed information cannot be provided because there was no error message."
msgstr ""
-"Non è stato possibile smontare questa condivisione, la stringa del punto di "
-"montaggio è vuota."
+"Impossibile smontare la condivisione \"%1\".\n"
+"Non è possibile fornire informazioni dettagliate perché non è stato "
+"visualizzato alcun messaggio di errore."
#: smb4k/core/smb4kerror.cpp:136
-#, fuzzy
msgid ""
"The share \"%1\" could not be unmounted.\n"
"Read the error message under \"Details\" to find out more."
msgstr ""
-"Non è stato possibile smontare questa condivisione, la stringa del punto di "
-"montaggio è vuota."
+"Impossibile smontare la condivisione \"%1\".\n"
+"Leggi il messaggio di errore in \"Dettagli\" per saperne di più."
#: smb4k/core/smb4kerror.cpp:143
msgid "The file \"%1\" could not be found."
@@ -1501,13 +1497,12 @@ msgid "The file \"%1\" could not be read."
msgstr "Non è stato possibile leggere il file \"%1\"."
#: smb4k/core/smb4kerror.cpp:155
-#, fuzzy
msgid ""
"The file \"%1\" could not be read.\n"
"Read the error message under \"Details\" to find out more."
msgstr ""
-"Non è stato possibile smontare questa condivisione, la stringa del punto di "
-"montaggio è vuota."
+"Impossibile leggere il file \"%1\".\n"
+"Leggi il messaggio di errore in \"Dettagli\" per saperne di più."
#: smb4k/core/smb4kerror.cpp:164
msgid ""
@@ -1515,19 +1510,22 @@ msgid ""
"system call.\n"
"Detailed information cannot be provided because there was no error message."
msgstr ""
+"Non è stato possibile determinare il nome del tuo computer utilizzando la "
+"chiamata di sistema gethostname().\n"
+"Non è possibile fornire informazioni dettagliate perché non è stato "
+"visualizzato alcun messaggio di errore."
#: smb4k/core/smb4kerror.cpp:168
-#, fuzzy
msgid ""
"The name of your computer could not be determined by using the gethostname() "
"system call.\n"
"Read the error message under \"Details\" to find out more."
msgstr ""
-"Non è stato possibile smontare questa condivisione, la stringa del punto di "
-"montaggio è vuota."
+"Non è stato possibile determinare il nome del tuo computer utilizzando la "
+"chiamata di sistema gethostname().\n"
+"Leggi il messaggio di errore in \"Dettagli\" per saperne di più."
#: smb4k/core/smb4kerror.cpp:175
-#, fuzzy
msgid ""
"Either your PATH environment variable is not set properly or there are the "
"following programs missing on your system:\n"
@@ -1540,30 +1538,28 @@ msgstr ""
"Per favore, risolvere il problema e riavviare Smb4K."
#: smb4k/core/smb4kerror.cpp:181
-#, fuzzy
msgid ""
"The file \"%1\" is currently being edited by user %2. To avoid any problems, "
"access to this file is denied at the moment. Please try again later."
msgstr ""
-"Il file %1 è in questo momento aperto dall'utente %2. Riprovare più tardi."
+"Il file \"%1\" è attualmente in fase di modifica da parte dell'utente %2. "
+"Per evitare qualsiasi problema, l'accesso a questo file al momento è negato. "
+"Per favore riprova più tardi."
#: smb4k/core/smb4kerror.cpp:187
-#, fuzzy
msgid "The directory \"%1\" could not be created."
msgstr "Non è stato possibile creare la cartella %1."
#: smb4k/core/smb4kerror.cpp:193
-#, fuzzy
msgid "The file \"%1\" could not be written."
-msgstr "Non è stato possibile leggere il file %1."
+msgstr "Non è stato possibile scrivere il file %1."
#: smb4k/core/smb4kerror.cpp:199
-#, fuzzy
msgid ""
"The share could not be unmounted, because the mount point string was empty."
msgstr ""
-"Non è stato possibile smontare questa condivisione, la stringa del punto di "
-"montaggio è vuota."
+"Non è stato possibile smontare questa condivisione perché la stringa del "
+"punto di montaggio è vuota."
#: smb4k/core/smb4kerror.cpp:205
msgid "This feature has not been enabled."
@@ -1574,32 +1570,34 @@ msgid "Printers cannot be bookmarked."
msgstr "Le stampanti non possono essere aggiunte ai segnalibri."
#: smb4k/core/smb4kerror.cpp:217
-#, fuzzy
msgid ""
"IP addresses are not supported with this search method. Please choose \"Use "
"nmblookup\" in the configuration dialog and try again."
msgstr ""
-"Il metodo di ricerca selezionato (smbclient) non può gestire correttamente "
-"gli indirizzi IP. Per favore, scegliere \"Usa nmblookup\" nella finestra di "
-"configurazione e ritentare."
+"Gli indirizzi IP non sono supportati con questo metodo di ricerca. Per "
+"favore, scegliere \"Usa nmblookup\" nella finestra di configurazione e "
+"riprova."
#: smb4k/core/smb4kerror.cpp:225
msgid ""
"The list of mounted SMBFS and CIFS shares could not be imported.\n"
"Detailed information cannot be provided because there was no error message."
msgstr ""
+"Non è stato possibile importare l'elenco delle condivisioni SMBFS e CIFS "
+"montate.\n"
+"Non è possibile fornire informazioni dettagliate perché non è stato "
+"visualizzato alcun messaggio di errore."
#: smb4k/core/smb4kerror.cpp:229
-#, fuzzy
msgid ""
"The list of mounted SMBFS and CIFS shares could not be imported.\n"
"Read the error message under \"Details\" to find out more."
msgstr ""
-"Non è stato possibile smontare questa condivisione, la stringa del punto di "
-"montaggio è vuota."
+"Non è stato possibile importare l'elenco delle condivisioni SMBFS e CIFS "
+"montate.\n"
+"Leggi il messaggio di errore in \"Dettagli\" per saperne di più."
#: smb4k/core/smb4kerror.cpp:236
-#, fuzzy
msgid "The command \"%1\" could not be found."
msgstr "Non è stato possibile trovare il comando %1."
@@ -1608,48 +1606,53 @@ msgid ""
"The file \"%1\" could not be printed.\n"
"Detailed information cannot be provided because there was no error message."
msgstr ""
+"Impossibile stampare il file \"%1\".\n"
+"Non è possibile fornire informazioni dettagliate perché non è stato "
+"visualizzato alcun messaggio di errore."
#: smb4k/core/smb4kerror.cpp:248
-#, fuzzy
msgid ""
"The file \"%1\" could not be printed.\n"
"Read the error message under \"Details\" to find out more."
msgstr ""
-"Non è stato possibile smontare questa condivisione, la stringa del punto di "
-"montaggio è vuota."
+"Impossibile stampare il file \"%1\".\n"
+"Leggi il messaggio di errore in \"Dettagli\" per saperne di più."
#: smb4k/core/smb4kerror.cpp:257
msgid ""
"The temporary directory \"%1\" could not be created.\n"
"Detailed information cannot be provided because there was no error message."
msgstr ""
+"Impossibile creare la directory temporanea \"%1\".\n"
+"Non è possibile fornire informazioni dettagliate perché non è stato "
+"visualizzato alcun messaggio di errore."
#: smb4k/core/smb4kerror.cpp:261
-#, fuzzy
msgid ""
"The temporary directory \"%1\" could not be created.\n"
"Read the error message under \"Details\" to find out more."
msgstr ""
-"Non è stato possibile smontare questa condivisione, la stringa del punto di "
-"montaggio è vuota."
+"Impossibile creare la directory temporanea \"%1\".\n"
+"Leggi il messaggio di errore in \"Dettagli\" per saperne di più."
#: smb4k/core/smb4kerror.cpp:270
msgid ""
"The temporary file \"%1\" could not be created.\n"
"Detailed information cannot be provided because there was no error message."
msgstr ""
+"Impossibile creare il file temporaneo \"%1\".\n"
+"Non è possibile fornire informazioni dettagliate perché non è stato "
+"visualizzato alcun messaggio di errore."
#: smb4k/core/smb4kerror.cpp:274
-#, fuzzy
msgid ""
"The temporary file \"%1\" could not be created.\n"
"Read the error message under \"Details\" to find out more."
msgstr ""
-"Non è stato possibile smontare questa condivisione, la stringa del punto di "
-"montaggio è vuota."
+"Impossibile creare il file temporaneo \"%1\".\n"
+"Leggi il messaggio di errore in \"Dettagli\" per saperne di più."
#: smb4k/core/smb4kerror.cpp:281
-#, fuzzy
msgid "The directory \"%1\" could not be found."
msgstr "Non è stato possibile trovare la directory %1."
@@ -1659,49 +1662,51 @@ msgid ""
"something similar. This could indicate that someone is trying to exploit "
"your system. Please inform your system administrator."
msgstr ""
+"Il file \"%1\" è irregolare. Ciò significa che è un collegamento simbolico, "
+"un fifo o qualcosa di simile. Ciò potrebbe indicare che qualcuno sta "
+"cercando di sfruttare il tuo sistema. Si prega di informare l'amministratore "
+"di sistema."
#: smb4k/core/smb4kerror.cpp:295
msgid ""
"The synchronization could not the accomplished successfully.\n"
"Detailed information cannot be provided because there was no error message."
msgstr ""
+"La sincronizzazione non è stata completata con successo.\n"
+"Non è possibile fornire informazioni dettagliate perché non è stato "
+"visualizzato alcun messaggio di errore."
#: smb4k/core/smb4kerror.cpp:299
-#, fuzzy
msgid ""
"The synchronization could not the accomplished successfully.\n"
"Read the error message under \"Details\" to find out more."
msgstr ""
-"Non è stato possibile smontare questa condivisione, la stringa del punto di "
-"montaggio è vuota."
+"La sincronizzazione non è stata completata con successo.\n"
+"Leggi il messaggio di errore in \"Dettagli\" per saperne di più."
#: smb4k/core/smb4kerror.cpp:308
-#, fuzzy
msgid "The file \"%1\" could not be opened."
msgstr "Non è stato possibile aprire il file %1."
#: smb4k/core/smb4kerror.cpp:312
-#, fuzzy
msgid ""
"The file \"%1\" could not be opened.\n"
"Read the error message under \"Details\" to find out more."
msgstr ""
-"Non è stato possibile smontare questa condivisione, la stringa del punto di "
-"montaggio è vuota."
+"La sincronizzazione non è stata completata con successo.\n"
+"Leggi il messaggio di errore in \"Dettagli\" per saperne di più."
#: smb4k/core/smb4kerror.cpp:321
-#, fuzzy
msgid "The file \"%1\" could not be closed."
-msgstr "Non è stato possibile aprire il file %1."
+msgstr "Non è stato possibile chiudere il file %1."
#: smb4k/core/smb4kerror.cpp:325
-#, fuzzy
msgid ""
"The file \"%1\" could not be closed.\n"
"Read the error message under \"Details\" to find out more."
msgstr ""
-"Non è stato possibile smontare questa condivisione, la stringa del punto di "
-"montaggio è vuota."
+"Impossibile chiudere il file \"%1\".\n"
+"Leggi il messaggio di errore in \"Dettagli\" per saperne di più."
#: smb4k/core/smb4kerror.cpp:332
#, c-format
@@ -1709,38 +1714,41 @@ msgid ""
"The list of arguments for the \"net\" command could not be assembled.\n"
"At the moment it reads: %1"
msgstr ""
+"Impossibile assemblare l'elenco degli argomenti per il comando \"net\".\n"
+"Al momento contiene: %1"
#: smb4k/core/smb4kerror.cpp:340
-#, fuzzy
msgid "The list of supplementary group IDs could not be determined."
-msgstr "Non è stato possibile determinare l'utilizzazione del disco."
+msgstr ""
+"Non è stato possibile determinare l'elenco degli ID di gruppo supplementari."
#: smb4k/core/smb4kerror.cpp:344
-#, fuzzy
msgid ""
"The list of supplementary group IDs could not be determined.\n"
"Read the error message under \"Details\" to find out more."
msgstr ""
-"Non è stato possibile smontare questa condivisione, la stringa del punto di "
-"montaggio è vuota."
+"Non è stato possibile determinare l'elenco degli ID di gruppo supplementari."
+"\n"
+"Leggi il messaggio di errore in \"Dettagli\" per saperne di più."
#: smb4k/core/smb4kerror.cpp:354
msgid ""
"An unknown error occurred.\n"
"Detailed information cannot be provided because there was no error message."
msgstr ""
+"Si è verificato un errore sconosciuto.\n"
+"Non è possibile fornire informazioni dettagliate perché non è stato "
+"visualizzato alcun messaggio di errore."
#: smb4k/core/smb4kerror.cpp:358
-#, fuzzy
msgid ""
"An unknown error occurred.\n"
"Read the error message under \"Details\" to find out more."
msgstr ""
-"Non è stato possibile smontare questa condivisione, la stringa del punto di "
-"montaggio è vuota."
+"Si è verificato un errore sconosciuto.\n"
+"Leggi il messaggio di errore in \"Dettagli\" per saperne di più."
#: smb4k/core/smb4kerror.cpp:385
-#, fuzzy
msgid ""
"The mimetype \"%1\" is not supported. Please convert the file to PostScript "
"or PDF."
@@ -1749,7 +1757,6 @@ msgstr ""
"Postscript o PDF."
#: smb4k/core/smb4kerror.cpp:391
-#, fuzzy
msgid ""
"You previously chose to use \"%1\", but now it is missing on your system. "
"Smb4K will disable this feature."
@@ -1762,6 +1769,8 @@ msgid ""
"The label \"%1\" is used more than once. It will automatically be renamed "
"for bookmark \"%2\" to avoid confusion."
msgstr ""
+"L'etichetta \"%1\" viene utilizzata più di una volta. Verrà rinominata "
+"automaticamente per il segnalibro \"%2\" per evitare confusione."
#: smb4k/core/smb4khomesshareshandler.cpp:73
msgid "Specify User"
@@ -1789,23 +1798,23 @@ msgstr "Stampante"
#: smb4k/core/smb4kpasswordhandler.cpp:258
msgid "The access was denied. "
-msgstr "L'accesso è stato negato."
+msgstr "L'accesso è stato negato. "
#: smb4k/core/smb4kpasswordhandler.cpp:261
msgid "The password is not correct. "
-msgstr "La password non è corretta.\t"
+msgstr "La password non è corretta. "
#: smb4k/core/smb4kpasswordhandler.cpp:264
msgid "The permission was denied. "
-msgstr "Il permesso è stato negato."
+msgstr "Il permesso è stato negato. "
#: smb4k/core/smb4kpasswordhandler.cpp:267
msgid "An authentication error occurred. "
-msgstr "Si è verificato un errore di autenticazione."
+msgstr "Si è verificato un errore di autenticazione. "
#: smb4k/core/smb4kpasswordhandler.cpp:270
msgid "The logon failed. "
-msgstr "L'accesso non è riuscito."
+msgstr "L'accesso non è riuscito. "
#: smb4k/core/smb4kpasswordhandler.cpp:278
#, c-format
@@ -1963,11 +1972,13 @@ msgid ""
"Do not show the name of the share that is represented by the bookmark but "
"the custom label that was defined in the bookmark editor."
msgstr ""
+"Non mostrare il nome della condivisione rappresentata dal segnalibro ma "
+"l'etichetta personalizzata definita nell'editor dei segnalibri."
#: smb4k/core/smb4k.kcfg:162 smb4k/core/smb4ksettings.cpp:121
#, no-c-format
msgid "Embed application into system tray"
-msgstr ""
+msgstr "Incorpora l'applicazione nella barra delle applicazioni"
#: smb4k/core/smb4k.kcfg:163 smb4k/core/smb4ksettings.cpp:122
#, no-c-format
@@ -1978,11 +1989,16 @@ msgid ""
"use \"Quit\" from the \"File\" menu or the system tray widget to exit the "
"application."
msgstr ""
+"Incorpora l'applicazione nella barra delle applicazioni. Il widget della "
+"barra delle applicazioni fornisce un menu popup con diverse attività di uso "
+"comune in modo da non dover aprire ogni volta la finestra principale. Se si "
+"sceglie questa impostazione è necessario utilizzare \"Esci\" dal menu \"File"
+"\" o dal widget della barra delle applicazioni per uscire dall'applicazione."
#: smb4k/core/smb4k.kcfg:167 smb4k/core/smb4ksettings.cpp:125
#, no-c-format
msgid "Start docked"
-msgstr ""
+msgstr "Avvia in modalità dock"
#: smb4k/core/smb4k.kcfg:168 smb4k/core/smb4ksettings.cpp:126
#, no-c-format
@@ -1992,11 +2008,16 @@ msgid ""
"up by clicking on the system tray widget or by choosing \"Restore\" from its "
"popup menu."
msgstr ""
+"Avvia l'applicazione agganciata alla barra delle applicazioni, ovvero viene "
+"visualizzato solo il widget della barra delle applicazioni e la finestra "
+"principale è nascosta. Puoi visualizzare la finestra principale facendo clic "
+"sul widget della barra delle applicazioni o scegliendo \"Ripristina\" dal "
+"menu a comparsa."
#: smb4k/core/smb4k.kcfg:172 smb4k/core/smb4ksettings.cpp:140
#, no-c-format
msgid "How the shares should be displayed"
-msgstr ""
+msgstr "Come dovrebbero essere visualizzate le azioni"
#: smb4k/core/smb4k.kcfg:173 smb4k/core/smb4ksettings.cpp:141
#, no-c-format
@@ -2004,11 +2025,14 @@ msgid ""
"Choose the kind of view you prefer for displaying the mounted shares. There "
"is an icon view or a list view available."
msgstr ""
+"Scegli il tipo di vista che preferisci per visualizzare le condivisioni "
+"montate. È disponibile una visualizzazione a icone o una visualizzazione a "
+"elenco."
#: smb4k/core/smb4k.kcfg:182 smb4k/core/smb4ksettings.cpp:145
#, no-c-format
msgid "Printer shares will be displayed in the network browser."
-msgstr ""
+msgstr "Le stampanti condivise verranno visualizzate nel browser di rete."
#: smb4k/core/smb4k.kcfg:187 smb4k/core/smb4ksettings.cpp:149
#, no-c-format
@@ -2017,7 +2041,7 @@ msgid ""
"ending with a $ sign, e.g. Musik$ or IPC$."
msgstr ""
"Le condivisioni nascoste verranno visualizzate nel browser di rete. Le "
-"condivisioni nascoste terminano con $, es. Music$ o IPC$"
+"condivisioni nascoste terminano con $, es. Music$ o IPC$."
#: smb4k/core/smb4k.kcfg:191 smb4k/core/smb4ksettings.cpp:152
#, no-c-format
@@ -2028,7 +2052,7 @@ msgstr "Mostra le condivisioni IPC$ nascoste"
#, no-c-format
msgid "Hidden IPC$ shares will be displayed in the network browser."
msgstr ""
-"Le condivisioni IPC$ nascoste verranno visualizzate nel browser di rete"
+"Le condivisioni IPC$ nascoste verranno visualizzate nel browser di rete."
#: smb4k/core/smb4k.kcfg:196 smb4k/core/smb4ksettings.cpp:156
#, no-c-format
@@ -2039,7 +2063,7 @@ msgstr "Mostra le condivisioni ADMIN$ nascoste"
#, no-c-format
msgid "Hidden ADMIN$ shares will be displayed in the network browser."
msgstr ""
-"Le condivisioni ADMIN$ nascoste verranno visualizzate nel browser di rete"
+"Le condivisioni ADMIN$ nascoste verranno visualizzate nel browser di rete."
#: smb4k/core/smb4k.kcfg:201 smb4k/core/smb4ksettings.cpp:160
#, no-c-format
@@ -2052,6 +2076,8 @@ msgid ""
"The type of a share will be displayed in a separate column in the network "
"browser. It can either be Disk, Print or IPC."
msgstr ""
+"Il tipo di condivisione verrà visualizzato in una colonna separata nel "
+"browser di rete. Può essere Disco, Stampa o IPC."
#: smb4k/core/smb4k.kcfg:206 smb4k/core/smb4ksettings.cpp:164
#, no-c-format
@@ -2064,6 +2090,8 @@ msgid ""
"The IP address of the server will be displayed in a separate column in the "
"network browser."
msgstr ""
+"L'indirizzo IP del server verrà visualizzato in una colonna separata nel "
+"browser di rete."
#: smb4k/core/smb4k.kcfg:211 smb4k/core/smb4ksettings.cpp:168
#, no-c-format
@@ -2076,6 +2104,8 @@ msgid ""
"The comment describing the server or share will be displayed in a separate "
"column in the network browser."
msgstr ""
+"Il commento che descrive il server o la condivisione verrà visualizzato in "
+"una colonna separata nel browser di rete."
#: smb4k/core/smb4k.kcfg:216 smb4k/core/smb4ksettings.cpp:172
#, no-c-format
@@ -2083,12 +2113,12 @@ msgid "Show a tooltip with information about the network item"
msgstr "Mostra i suggerimenti circa gli elementi della rete"
#: smb4k/core/smb4k.kcfg:217 smb4k/core/smb4ksettings.cpp:173
-#, fuzzy, no-c-format
+#, no-c-format
msgid "The tooltip shows various information about the current network item."
-msgstr "Mostra i suggerimenti circa gli elementi della rete"
+msgstr "Mostra i suggerimenti circa gli elementi della rete."
#: smb4k/core/smb4k.kcfg:221 smb4k/core/smb4ksettings.cpp:176
-#, fuzzy, no-c-format
+#, no-c-format
msgid "Show the mount point of a share instead of its name"
msgstr "Mostra il punto di montaggio anziché il nome della condivisione"
@@ -2098,6 +2128,9 @@ msgid ""
"A share is normally displayed with its name in the shares view. Choosing "
"this feature will cause the exchange of the share name by the mount point."
msgstr ""
+"Una condivisione viene normalmente visualizzata con il suo nome nella vista "
+"delle condivisioni. Scegliendo questa funzionalità il punto di montaggio "
+"rimpiazzerà il nome della condivisione."
#: smb4k/core/smb4k.kcfg:227 smb4k/core/smb4ksettings.cpp:181
#, no-c-format
@@ -2106,11 +2139,14 @@ msgid ""
"also all other mounts using the SMBFS and CIFS file system that are present "
"on the system."
msgstr ""
+"Non vedrai solo le condivisioni montate e di tua proprietà, ma anche tutti "
+"gli altri punti di montaggio che utilizzano i file system SMBFS e CIFS "
+"presenti nel sistema."
#: smb4k/core/smb4k.kcfg:231 smb4k/core/smb4ksettings.cpp:184
-#, fuzzy, no-c-format
+#, no-c-format
msgid "Allow the dropping of files and directories onto share icons"
-msgstr "Mostra le stampanti condivise"
+msgstr "Consentire il rilascio di file e directory sulle icone di condivisione"
#: smb4k/core/smb4k.kcfg:232 smb4k/core/smb4ksettings.cpp:185
#, no-c-format
@@ -2118,11 +2154,13 @@ msgid ""
"This setting allows you to drop files or whole directories onto the share "
"icons, which will cause them to be copied."
msgstr ""
+"Questa impostazione consente di trascinare file o intere directory sulle "
+"icone di condivisione, che verranno copiate."
#: smb4k/core/smb4k.kcfg:236 smb4k/core/smb4ksettings.cpp:188
-#, fuzzy, no-c-format
+#, no-c-format
msgid "Allow the dragging of share icons"
-msgstr "Mostra le stampanti condivise"
+msgstr "Consenti il trascinamento delle icone di condivisione"
#: smb4k/core/smb4k.kcfg:237 smb4k/core/smb4ksettings.cpp:189
#, no-c-format
@@ -2131,21 +2169,26 @@ msgid ""
"desktop or into a file manager. Only enable it if you think you absolutely "
"need it and read the handbook before you mark this checkbox."
msgstr ""
+"Questa impostazione consente di trascinare un elemento condiviso da Smb4K "
+"sul desktop o in un file manager. Abilitala solo se pensi di averne "
+"assolutamente bisogno e leggi il manuale prima di contrassegnare questa "
+"casella di controllo."
#: smb4k/core/smb4k.kcfg:241 smb4k/core/smb4ksettings.cpp:192
-#, fuzzy, no-c-format
+#, no-c-format
msgid "Show a tooltip with information about the share"
-msgstr "Mostra i suggerimenti circa le condivisioni"
+msgstr "Mostra un suggerimento con informazioni sulla condivisione"
#: smb4k/core/smb4k.kcfg:242 smb4k/core/smb4ksettings.cpp:193
-#, fuzzy, no-c-format
+#, no-c-format
msgid "The tooltip shows various information about the current share."
-msgstr "Mostra i suggerimenti circa le condivisioni"
+msgstr "Mostra i suggerimenti circa le condivisioni."
#: smb4k/core/smb4k.kcfg:246 smb4k/core/smb4ksettings.cpp:196
-#, fuzzy, no-c-format
+#, no-c-format
msgid "Show hidden files and directories when previewing a share"
-msgstr "Forza l'eliminazione delle directory non nulle"
+msgstr ""
+"Mostra file e directory nascosti durante l'anteprima di una condivisione"
#: smb4k/core/smb4k.kcfg:247 smb4k/core/smb4ksettings.cpp:197
#, no-c-format
@@ -2156,6 +2199,12 @@ msgid ""
"etc.). Since they are not of any importance for your regular work, you "
"normally do not need to enable this feature."
msgstr ""
+"Visualizza i file e le directory nascosti nella finestra di dialogo di "
+"anteprima. I nomi dei file e delle directory nascosti iniziano con un punto "
+"e sono solitamente necessari per scopi molto specifici (file di "
+"configurazione di un'applicazione, ecc.). Poiché non sono di alcuna "
+"importanza per il tuo lavoro regolare, normalmente non hai bisogno di "
+"abilitare questa funzionalità."
#: smb4k/core/smb4k.kcfg:252 smb4k/core/smb4ksettings.cpp:201
#, no-c-format
@@ -2164,6 +2213,9 @@ msgid ""
"moment the column will only contain an entry if the share was mounted with "
"the SMBFS file system."
msgstr ""
+"Mostra l'UID e il GID che possiedono tutti i file sul file system montato. "
+"Per il momento la colonna conterrà una voce solo se la condivisione è stata "
+"montata con il file system SMBFS."
#: smb4k/core/smb4k.kcfg:257 smb4k/core/smb4ksettings.cpp:205
#, no-c-format
@@ -2171,11 +2223,14 @@ msgid ""
"Show the login that was used to authenticate to the server. The column will "
"only contain an entry if the share was mounted with the CIFS file system."
msgstr ""
+"Mostra il login utilizzato per l'autenticazione al server. La colonna "
+"conterrà una voce solo se la condivisione è stata montata con il file system "
+"CIFS."
#: smb4k/core/smb4k.kcfg:262 smb4k/core/smb4ksettings.cpp:209
-#, fuzzy, no-c-format
+#, no-c-format
msgid "Show the file system that was used for mounting the share."
-msgstr "Utilizza il seguente file system per montare le condivisioni remote:"
+msgstr "Utilizza il seguente file system per montare le condivisioni remote."
#: smb4k/core/smb4k.kcfg:267 smb4k/core/smb4ksettings.cpp:213
#, no-c-format
@@ -2183,25 +2238,25 @@ msgid "Show the free disk space that is left on the share."
msgstr "Mostra lo spazio libero che è rimasto nel disco della condivisione."
#: smb4k/core/smb4k.kcfg:272 smb4k/core/smb4ksettings.cpp:217
-#, fuzzy, no-c-format
+#, no-c-format
msgid "Show the disk space that is already used on the share."
-msgstr "Mostra tutte le condivisioni montate nel sistema"
+msgstr "Mostra tutte le condivisioni montate nel sistema."
#: smb4k/core/smb4k.kcfg:277 smb4k/core/smb4ksettings.cpp:221
#, no-c-format
msgid "Show the total disk space of the share."
-msgstr "Mostra spazio totale sul disco della condivisione"
+msgstr "Mostra spazio totale sul disco della condivisione."
#: smb4k/core/smb4k.kcfg:282 smb4k/core/smb4ksettings.cpp:225
#, no-c-format
msgid "Show the space that is used on the share in percent."
msgstr ""
-"Mostra lo spazio del disco in percentuale utilizzato nella condivisione"
+"Mostra lo spazio del disco in percentuale utilizzato nella condivisione."
#: smb4k/core/smb4k.kcfg:291 smb4k/core/smb4ksettings.cpp:252
-#, fuzzy, no-c-format
+#, no-c-format
msgid "Method how to retrieve the browse list"
-msgstr "Esamina la rete e recupera l'elenco degli host"
+msgstr "Metodo per recuperare l'elenco di navigazione"
#: smb4k/core/smb4k.kcfg:292 smb4k/core/smb4ksettings.cpp:253
#, no-c-format
@@ -2216,6 +2271,15 @@ msgid ""
"provided list of broadcast areas will be scanned using \"nmblookup -B x.x.x."
"x -- '*'\"."
msgstr ""
+"Scegli il metodo per compilare l'elenco di ricerca iniziale. Sono "
+"disponibili quattro opzioni: la prima è quella predefinita e impiega "
+"\"nmblookup -M -- -\" per scoprire tutti i gruppi di lavoro, i domini e i "
+"loro master browser nel tuo vicinato di rete. La seconda ordina a Smb4K di "
+"interrogare l'attuale master browser del tuo gruppo di lavoro o dominio per "
+"recuperare l'elenco di ricerca. La terza è simile alla seconda, tranne per "
+"il fatto che puoi definire il master browser che deve essere interrogato. Se "
+"scegli l'ultima opzione, l'elenco delle aree di trasmissione fornito verrà "
+"scansionato usando \"nmblookup -B x.x.x.x -- '*'\"."
#: smb4k/core/smb4k.kcfg:302 smb4k/core/smb4ksettings.cpp:256
#, no-c-format
@@ -2228,6 +2292,8 @@ msgid ""
"Enter the name or IP address of a master browser here that should be queried "
"to compile the initial browse list."
msgstr ""
+"Inserisci qui il nome o l'indirizzo IP di un master browser che deve essere "
+"interrogato per compilare l'elenco di esplorazione iniziale."
#: smb4k/core/smb4k.kcfg:306 smb4k/core/smb4ksettings.cpp:260
#, no-c-format
@@ -2241,6 +2307,9 @@ msgid ""
"192.168.0.255, 192.168.1.255). It is used to scan for all known hosts in the "
"respective broadcast areas."
msgstr ""
+"Inserisci qui un elenco di indirizzi di broadcast separati da virgole (ad "
+"esempio 192.168.0.255, 192.168.1.255). Viene utilizzato per cercare tutti "
+"gli host noti nelle rispettive aree di broadcast."
#: smb4k/core/smb4k.kcfg:310 smb4k/core/smb4ksettings.cpp:275
#, no-c-format
@@ -2256,6 +2325,11 @@ msgid ""
"searching, you should try the smbclient method. But please note that you "
"lose the ability to search for IP addresses in that case."
msgstr ""
+"Smb4K è in grado di cercare host remoti usando nmblookup o smbclient. Il "
+"metodo nmblookup è molto affidabile e funziona bene. Tuttavia, se la tua "
+"rete è configurata in modo insolito e riscontri problemi durante la ricerca, "
+"dovresti provare il metodo smbclient. Ma tieni presente che in quel caso "
+"perdi la possibilità di cercare indirizzi IP."
#: smb4k/core/smb4k.kcfg:324 smb4k/core/smb4ksettings.cpp:282
#, no-c-format
@@ -2268,6 +2342,8 @@ msgid ""
"This is the prefix where Smb4K will create the mount points and mount the "
"remote shares."
msgstr ""
+"Questo è il prefisso in cui Smb4K creerà i punti di montaggio e monterà le "
+"condivisioni remote."
#: smb4k/core/smb4k.kcfg:329 smb4k/core/smb4ksettings.cpp:286
#, no-c-format
@@ -2277,11 +2353,11 @@ msgstr ""
"Smb4K"
#: smb4k/core/smb4k.kcfg:330 smb4k/core/smb4ksettings.cpp:287
-#, fuzzy, no-c-format
+#, no-c-format
msgid ""
"All names of the subdirectories created by Smb4K below the mount prefix will "
"be lowercase."
-msgstr "Forza l'uso di caratteri minuscoli nei nomi delle sottocartelle"
+msgstr "Forza l'uso di caratteri minuscoli nei nomi delle sottocartelle."
#: smb4k/core/smb4k.kcfg:334 smb4k/core/smb4ksettings.cpp:290
#, no-c-format
@@ -2289,9 +2365,9 @@ msgid "Unmount the shares owned by the user on exit"
msgstr "Smonta tutte le condivisioni dell'utente quando esci"
#: smb4k/core/smb4k.kcfg:335 smb4k/core/smb4ksettings.cpp:291
-#, fuzzy, no-c-format
+#, no-c-format
msgid "Unmount all shares that belong to you when the program exits."
-msgstr "Smonta tutte le condivisioni dell'utente %1 quando esci"
+msgstr "Smonta tutte le condivisioni dell'utente %1 quando esci."
#: smb4k/core/smb4k.kcfg:339 smb4k/core/smb4ksettings.cpp:294
#, no-c-format
@@ -2304,9 +2380,11 @@ msgid ""
"Remount all your shares that were still mounted when you exited the program. "
"Shares that were mounted by other users are ignored."
msgstr ""
+"Rimonta tutte le tue condivisioni che erano ancora montate quando sei uscito "
+"dal programma. Le condivisioni montate da altri utenti verranno ignorate."
#: smb4k/core/smb4k.kcfg:344 smb4k/core/smb4ksettings.cpp:298
-#, fuzzy, no-c-format
+#, no-c-format
msgid "Allow the unmounting of shares owned by other users"
msgstr "Consenti lo smontaggio di condivisioni di altri utenti"
@@ -2317,11 +2395,14 @@ msgid ""
"cases you need super user privileges for this. Please think before you "
"enable this option!"
msgstr ""
+"Consenti lo smontaggio delle condivisioni montate da altri utenti. Nella "
+"maggior parte dei casi hai bisogno dei privilegi di superutente per questo. "
+"Pensaci prima di abilitare questa opzione!"
#: smb4k/core/smb4k.kcfg:349 smb4k/core/smb4ksettings.cpp:304
#, no-c-format
msgid "Interval between checks for new and inaccessible shares"
-msgstr ""
+msgstr "Intervallo tra i controlli per le condivisioni nuove e inaccessibili"
#: smb4k/core/smb4k.kcfg:350 smb4k/core/smb4ksettings.cpp:305
#, no-c-format
@@ -2330,11 +2411,14 @@ msgid ""
"unmounts. The lower limit is 500 ms, the upper one 300000 ms. Please note "
"that the smaller the interval gets the higher is your system load."
msgstr ""
+"Questo è il tempo che trascorre prima che Smb4K controlli di nuovo per nuovi "
+"montaggi e smontaggi. Il limite inferiore è 500 ms, quello superiore 300000 "
+"ms. Si noti che più piccolo è l'intervallo, maggiore è il carico del sistema."
#: smb4k/core/smb4k.kcfg:361 smb4k/core/smb4ksettings.cpp:311
#, no-c-format
msgid "Use a wallet to store authentication data"
-msgstr "Usa un portafogli per salvare le informazioni di autenticazione."
+msgstr "Usa un portafogli per salvare le informazioni di autenticazione"
#: smb4k/core/smb4k.kcfg:362 smb4k/core/smb4ksettings.cpp:312
#, no-c-format
@@ -2344,6 +2428,11 @@ msgid ""
"disabled, the authentication data is not stored permanently but only "
"temporarily."
msgstr ""
+"Utilizza un portafoglio per archiviare i dati di autenticazione. Il nome di "
+"accesso e il nome della password vengono archiviati crittografati sul tuo "
+"disco rigido. Se questa impostazione è disabilitata, i dati di "
+"autenticazione non vengono archiviati in modo permanente ma solo "
+"temporaneamente."
#: smb4k/core/smb4k.kcfg:366 smb4k/core/smb4ksettings.cpp:315
#, no-c-format
@@ -2358,11 +2447,15 @@ msgid ""
"setting, you will have to provide the authentication data everytime it is "
"needed."
msgstr ""
+"Se hai deciso di memorizzare i nomi di accesso e le password solo "
+"temporaneamente, Smb4K li ricorderà fino all'uscita dal programma. Se "
+"disabiliti questa impostazione, dovrai fornire i dati di autenticazione ogni "
+"volta che saranno necessari."
#: smb4k/core/smb4k.kcfg:371 smb4k/core/smb4ksettings.cpp:319
-#, fuzzy, no-c-format
+#, no-c-format
msgid "Use a default login"
-msgstr "Usa il nome utente predefinito"
+msgstr "Utilizza accesso predefinito"
#: smb4k/core/smb4k.kcfg:372 smb4k/core/smb4ksettings.cpp:320
#, no-c-format
@@ -2372,6 +2465,10 @@ msgid ""
"server. This is very useful e.g. if you are working in an Active Directory "
"environment or an NT domain."
msgstr ""
+"Abilita l'utilizzo di un nome di accesso e di una password predefiniti. I "
+"dati di autenticazione forniti di seguito vengono quindi utilizzati di "
+"default per l'autenticazione a un server remoto. Ciò è molto utile, ad "
+"esempio, se si lavora in un ambiente Active Directory o in un dominio NT."
#: smb4k/core/smb4k.kcfg:389 smb4k/core/smb4ksettings.cpp:326
#, no-c-format
@@ -2385,11 +2482,14 @@ msgid ""
"it is either the NetBIOS name that is defined in the smb.conf file or the "
"host name."
msgstr ""
+"Questo è il nome NetBIOS di questo computer che viene utilizzato da Smb4K. "
+"Per impostazione predefinita, è il nome NetBIOS definito nel file smb.conf o "
+"il nome host."
#: smb4k/core/smb4k.kcfg:394 smb4k/core/smb4ksettings.cpp:330
#, no-c-format
msgid "The name of the workgroup/domain this computer is in"
-msgstr ""
+msgstr "Il nome del gruppo di lavoro/dominio in cui si trova questo computer"
#: smb4k/core/smb4k.kcfg:395 smb4k/core/smb4ksettings.cpp:331
#, no-c-format
@@ -2397,6 +2497,9 @@ msgid ""
"This is the workgroup or domain this computer is or should be in. By "
"default, it is the workgroup that is defined in the smb.conf file."
msgstr ""
+"Questo è il gruppo di lavoro o dominio in cui si trova o dovrebbe trovarsi "
+"questo computer. Per impostazione predefinita, è il gruppo di lavoro "
+"definito nel file smb.conf."
#: smb4k/core/smb4k.kcfg:399 smb4k/core/smb4ksettings.cpp:334
#, no-c-format
@@ -2411,6 +2514,10 @@ msgid ""
"operating systems which allow the connection to be tuned. See the manual "
"page of smb.conf for more information."
msgstr ""
+"Queste sono le opzioni socket TCP utilizzate da nmblookup, smbmount e "
+"smbclient. Le opzioni socket sono controlli sul livello di rete dei sistemi "
+"operativi che consentono di regolare la connessione. Per maggiori "
+"informazioni, vedere la pagina del manuale di smb.conf."
#: smb4k/core/smb4k.kcfg:404 smb4k/core/smb4ksettings.cpp:338
#, no-c-format
@@ -2424,6 +2531,9 @@ msgid ""
"operate under. It should not be set unless every machine on your network "
"neighborhood sets this value."
msgstr ""
+"Imposta l'ambito NetBIOS in cui opereranno nmblookup, smbmount e smbclient. "
+"Non dovrebbe essere impostato a meno che ogni macchina nel tuo vicinato di "
+"rete non imposti questo valore."
#: smb4k/core/smb4k.kcfg:409 smb4k/core/smb4ksettings.cpp:344
#, no-c-format
@@ -2436,6 +2546,8 @@ msgid ""
"This is the port that is to be used for connecting to remote servers. Please "
"note that this is independent of the settings in the smb.conf file."
msgstr ""
+"Questa è la porta che deve essere usata per connettersi ai server remoti. Si "
+"noti che è indipendente dalle impostazioni nel file smb.conf."
#: smb4k/core/smb4k.kcfg:416 smb4k/core/smb4ksettings.cpp:348
#, no-c-format
@@ -2449,11 +2561,13 @@ msgid ""
"Directory environment. The setting affects the smbmount and smbclient "
"command."
msgstr ""
+"Prova ad autenticarti con Kerberos. Questo è utile solo in un ambiente "
+"Active Directory. L'impostazione influisce sui comandi smbmount e smbclient."
#: smb4k/core/smb4k.kcfg:421 smb4k/core/smb4ksettings.cpp:352
-#, fuzzy, no-c-format
+#, no-c-format
msgid "Use machine account for login"
-msgstr "Usa il nome utente predefinito"
+msgstr "Utilizzare l'account del computer per l'accesso"
#: smb4k/core/smb4k.kcfg:422 smb4k/core/smb4ksettings.cpp:353
#, no-c-format
@@ -2461,11 +2575,13 @@ msgid ""
"Make queries to the remote server using the machine account of the local "
"server. The setting affects the net and the smbclient command."
msgstr ""
+"Effettua query al server remoto utilizzando l'account del coomputer del "
+"server locale. L'impostazione influisce sul comando net e smbclient."
#: smb4k/core/smb4k.kcfg:426 smb4k/core/smb4ksettings.cpp:367
-#, fuzzy, no-c-format
+#, no-c-format
msgid "The file system that is used for mounting remote shares"
-msgstr "Utilizza il seguente file system per montare le condivisioni remote:"
+msgstr "Utilizza il seguente file system per montare le condivisioni remote"
#: smb4k/core/smb4k.kcfg:427 smb4k/core/smb4ksettings.cpp:368
#, no-c-format
@@ -2476,6 +2592,11 @@ msgid ""
"the Server Message Block File System (SMBFS) which is used by Windows 9x and "
"below."
msgstr ""
+"Questo è il file system che verrà utilizzato per montare le condivisioni "
+"remote. Il Common Internet File System (CIFS) è supportato da Windows 2000 e "
+"versioni successive, nonché da Samba. Offre molti miglioramenti e "
+"avanzamenti rispetto al Server Message Block File System (SMBFS) utilizzato "
+"da Windows 9x e versioni precedenti."
#: smb4k/core/smb4k.kcfg:435 smb4k/core/smb4ksettings.cpp:487
#, no-c-format
@@ -2492,11 +2613,17 @@ msgid ""
"automatically determine the charset by looking up the \"unix charset\" "
"option in the smb.conf."
msgstr ""
+"Questo è il set di caratteri utilizzato dal lato client (ovvero il tuo lato) "
+"per convertire i nomi di percorso locali da e verso Unicode nel caso del "
+"file system CIFS o per le traduzioni da codepage a set di caratteri (NLS) "
+"nel caso del file system SMBFS. Se mantieni l'impostazione predefinita, "
+"Smb4K proverà a determinare automaticamente il set di caratteri cercando "
+"l'opzione \"unix charset\" in smb.conf."
#: smb4k/core/smb4k.kcfg:465 smb4k/core/smb4ksettings.cpp:657
#, no-c-format
msgid "The codepage used by the server"
-msgstr ""
+msgstr "La codepage utilizzata dal server"
#: smb4k/core/smb4k.kcfg:466 smb4k/core/smb4ksettings.cpp:658
#, no-c-format
@@ -2506,11 +2633,15 @@ msgid ""
"will try to automatically determine the codepage by looking up the \"dos "
"charset\" option in the smb.conf."
msgstr ""
+"Questa è la codepage utilizzata dal server. L'impostazione è disponibile "
+"solo con il file system SMBFS. Se si mantiene l'impostazione predefinita, "
+"Smb4K proverà a determinare automaticamente la codepage cercando l'opzione "
+"\"dos charset\" in smb.conf."
#: smb4k/core/smb4k.kcfg:505 smb4k/core/smb4ksettings.cpp:661
-#, fuzzy, no-c-format
+#, no-c-format
msgid "The user ID that is to be used for mounting"
-msgstr "Utilizza il seguente file system per montare le condivisioni remote:"
+msgstr "Utilizza il seguente file system per montare le condivisioni remote"
#: smb4k/core/smb4k.kcfg:506 smb4k/core/smb4ksettings.cpp:662
#, no-c-format
@@ -2520,11 +2651,14 @@ msgid ""
"remote server supports the CIFS Unix Extentions, this setting will be "
"ignored."
msgstr ""
+"Qui puoi inserire l'ID utente (un numero) che avranno i file e le directory "
+"della condivisione montata. Se stai usando il file system CIFS e il server "
+"remoto supporta le estensioni CIFS Unix, questa impostazione verrà ignorata."
#: smb4k/core/smb4k.kcfg:510 smb4k/core/smb4ksettings.cpp:665
-#, fuzzy, no-c-format
+#, no-c-format
msgid "The group ID that is to be used for mounting"
-msgstr "Utilizza il seguente file system per montare le condivisioni remote:"
+msgstr "Utilizza il seguente file system per montare le condivisioni remote"
#: smb4k/core/smb4k.kcfg:511 smb4k/core/smb4ksettings.cpp:666
#, no-c-format
@@ -2534,11 +2668,15 @@ msgid ""
"remote server supports the CIFS Unix Extentions, this setting will be "
"ignored."
msgstr ""
+"Qui puoi inserire l'ID di gruppo (un numero) che avranno i file e le "
+"directory della condivisione montata. Se stai usando il file system CIFS e "
+"il server remoto supporta le estensioni CIFS Unix, questa impostazione verrà "
+"ignorata."
#: smb4k/core/smb4k.kcfg:515 smb4k/core/smb4ksettings.cpp:669
#, no-c-format
msgid "The file mask for a share"
-msgstr ""
+msgstr "La maschera di file per una condivisione"
#: smb4k/core/smb4k.kcfg:516 smb4k/core/smb4ksettings.cpp:670
#, no-c-format
@@ -2547,11 +2685,15 @@ msgid ""
"octal. In case the CIFS file system is used, this setting only takes effect "
"if the server does not support the CIFS Unix Extensions."
msgstr ""
+"Questa è la maschera che verrà utilizzata per la creazione dei file. Deve "
+"essere definita in ottale. Nel caso in cui venga utilizzato il file system "
+"CIFS, questa impostazione ha effetto solo se il server non supporta le "
+"estensioni CIFS Unix."
#: smb4k/core/smb4k.kcfg:520 smb4k/core/smb4ksettings.cpp:673
#, no-c-format
msgid "The directory mask for a share"
-msgstr ""
+msgstr "La maschera di directory per una condivisione"
#: smb4k/core/smb4k.kcfg:521 smb4k/core/smb4ksettings.cpp:674
#, no-c-format
@@ -2560,11 +2702,15 @@ msgid ""
"defined in octal. In case the CIFS file system is used, this setting only "
"takes effect if the server does not support the CIFS Unix Extensions."
msgstr ""
+"Questa è la maschera che verrà utilizzata per creare le directory. Deve "
+"essere definita in ottale. Nel caso in cui venga utilizzato il file system "
+"CIFS, questa impostazione ha effetto solo se il server non supporta le "
+"estensioni CIFS Unix."
#: smb4k/core/smb4k.kcfg:525 smb4k/core/smb4ksettings.cpp:688
#, no-c-format
msgid "The write access granted for the share"
-msgstr ""
+msgstr "L'accesso in scrittura concesso per la condivisione"
#: smb4k/core/smb4k.kcfg:526 smb4k/core/smb4ksettings.cpp:689
#, no-c-format
@@ -2572,6 +2718,8 @@ msgid ""
"Here you can choose if the shares should be mounted in read and write mode "
"or only read-only."
msgstr ""
+"Qui puoi scegliere se le condivisioni devono essere montate in modalità di "
+"lettura e scrittura oppure solo in sola lettura."
#: smb4k/core/smb4k.kcfg:535 smb4k/core/smb4ksettings.cpp:693
#, no-c-format
@@ -2582,11 +2730,16 @@ msgid ""
"access the files and directories. This setting does not affect the normal "
"ACL check."
msgstr ""
+"Il lato client (ovvero il tuo lato) controllerà se hai l'UID/GID corretto "
+"per manipolare un file o una directory. Potresti voler disattivare questa "
+"funzionalità se il/i server supportano le estensioni CIFS Unix e non ti è "
+"consentito accedere ai file e alle directory. Questa impostazione non "
+"influisce sul normale controllo ACL."
#: smb4k/core/smb4k.kcfg:539 smb4k/core/smb4ksettings.cpp:696
#, no-c-format
msgid "Set UID and GID"
-msgstr ""
+msgstr "Imposta UID e GID"
#: smb4k/core/smb4k.kcfg:540 smb4k/core/smb4ksettings.cpp:697
#, no-c-format
@@ -2598,6 +2751,12 @@ msgid ""
"recommended that you read the manual page of mount.cifs before you change "
"this setting."
msgstr ""
+"Nel caso in cui il server supporti le estensioni CIFS Unix, il lato client ("
+"ovvero il tuo lato) tenta di impostare l'UID e il GID effettivi del processo "
+"corrente sui file, directory e dispositivi appena creati. Se questa "
+"funzionalità è disattivata, verranno utilizzati l'UID e il GID predefiniti "
+"definiti per la condivisione. Si consiglia di leggere la pagina del manuale "
+"di mount.cifs prima di modificare questa impostazione."
#: smb4k/core/smb4k.kcfg:545 smb4k/core/smb4ksettings.cpp:701
#, no-c-format
@@ -2606,6 +2765,9 @@ msgid ""
"server instead of automatically generating temporary inode numbers on the "
"client side."
msgstr ""
+"Utilizzare numeri di inode (identificatori univoci persistenti di file) "
+"restituiti dal server anziché generare automaticamente numeri di inode "
+"temporanei sul lato client."
#: smb4k/core/smb4k.kcfg:550 smb4k/core/smb4ksettings.cpp:705
#, no-c-format
@@ -2614,6 +2776,9 @@ msgid ""
"this can provide better performance than the default behavior which caches "
"reads and writes."
msgstr ""
+"Leggere e scrivere direttamente sui file aperti sulla condivisione. In "
+"alcuni casi questo può fornire prestazioni migliori rispetto al "
+"comportamento predefinito che memorizza nella cache letture e scritture."
#: smb4k/core/smb4k.kcfg:555 smb4k/core/smb4ksettings.cpp:709
#, no-c-format
@@ -2624,16 +2789,21 @@ msgid ""
"that were created with such characters. This has no effect if the server "
"does not support Unicode."
msgstr ""
+"Traduci sei dei sette caratteri riservati (inclusi i due punti, il punto "
+"interrogativo, la barra verticale, l'asterisco, i caratteri maggiore e "
+"minore, ma non la barra rovesciata) per rimappare l'intervallo (sopra 0xF000)"
+". Ciò consente di aprire i file creati con tali caratteri. Ciò non ha "
+"effetto se il server non supporta Unicode."
#: smb4k/core/smb4k.kcfg:560 smb4k/core/smb4ksettings.cpp:713
#, no-c-format
msgid "Do not use locking. Do not start lockd."
-msgstr ""
+msgstr "Non usare il blocco. Non avviare lockd."
#: smb4k/core/smb4k.kcfg:564 smb4k/core/smb4ksettings.cpp:716
#, no-c-format
msgid "Advanced custom options for the CIFS file system"
-msgstr ""
+msgstr "Opzioni personalizzate avanzate per il file system CIFS"
#: smb4k/core/smb4k.kcfg:565 smb4k/core/smb4ksettings.cpp:717
#, no-c-format
@@ -2643,11 +2813,18 @@ msgid ""
"list will be added AS IS to the \"-o\" argument of mount.cifs. Please do not "
"enter options that have already been defined in the configuration dialog."
msgstr ""
+"Qui puoi inserire opzioni avanzate per il file system CIFS in un elenco "
+"separato da virgole (fai riferimento alla pagina del manuale di mount.cifs "
+"per saperne di più). L'elenco verrà aggiunto COSÌ COM'È all'argomento \"-o\" "
+"di mount.cifs. Non inserire opzioni che sono già state definite nella "
+"finestra di dialogo di configurazione."
#: smb4k/core/smb4k.kcfg:569 smb4k/core/smb4ksettings.cpp:720
#, no-c-format
msgid "Determines how long directory listings are cached"
msgstr ""
+"Determina per quanto tempo gli elenchi delle directory vengono memorizzati "
+"nella cache"
#: smb4k/core/smb4k.kcfg:570 smb4k/core/smb4ksettings.cpp:721
#, no-c-format
@@ -2658,6 +2835,13 @@ msgid ""
"increase in performance on large directories, especially on long distances. "
"You need Linux kernel 2.4.2 or later to take advantage of this setting."
msgstr ""
+"Questa impostazione determina per quanto tempo un elenco di directory viene "
+"memorizzato nella cache in millisecondi. Un valore alto significa che ci "
+"vuole più tempo prima che le modifiche sul server vengano notate sul lato "
+"client (ad esempio il tuo lato), ma può anche darti un aumento delle "
+"prestazioni su directory di grandi dimensioni, specialmente su lunghe "
+"distanze. Hai bisogno del kernel Linux 2.4.2 o successivo per sfruttare "
+"questa impostazione."
#: smb4k/core/smb4k.kcfg:574 smb4k/core/smb4ksettings.cpp:724
#, no-c-format
@@ -2670,6 +2854,8 @@ msgid ""
"Use Unicode when communicating with the server. This will give you better "
"support for non-ASCII character sets with the SMBFS file system."
msgstr ""
+"Utilizza Unicode quando comunichi con il server. Questo ti darà un supporto "
+"migliore per i set di caratteri non ASCII con il file system SMBFS."
#: smb4k/core/smb4k.kcfg:579 smb4k/core/smb4ksettings.cpp:728
#, no-c-format
@@ -2683,11 +2869,14 @@ msgid ""
"files bigger than 2 GB on shares that were mounted with the SMBFS file "
"system."
msgstr ""
+"Il supporto per file di grandi dimensioni (LFS) consente di leggere e "
+"scrivere file più grandi di 2 GB su condivisioni montate con il file system "
+"SMBFS."
#: smb4k/core/smb4k.kcfg:585 smb4k/core/smb4ksettings.cpp:754
#, no-c-format
msgid "The protocol that is used with the net command"
-msgstr ""
+msgstr "Il protocollo che viene utilizzato con il comando net"
#: smb4k/core/smb4k.kcfg:586 smb4k/core/smb4ksettings.cpp:755
#, no-c-format
@@ -2701,11 +2890,20 @@ msgid ""
"(for Active Directory environments) have not been implemented yet, so you "
"can ignore that one for now."
msgstr ""
+"Qui puoi scegliere il protocollo che verrà utilizzato dal comando net per la "
+"comunicazione con i server remoti, se appropriato. Nella maggior parte dei "
+"casi il rilevamento automatico funzionerà bene e non dovresti aver bisogno "
+"di cambiare l'impostazione predefinita. Tuttavia, se riscontri problemi, usa "
+"il protocollo RPC per i sistemi operativi più recenti (Windows NT4 e "
+"superiori) e il protocollo RAP per quelli più vecchi (Windows 98/NT3 e "
+"inferiori). Le funzioni che necessitano del protocollo ADS (per gli ambienti "
+"Active Directory) non sono ancora state implementate, quindi puoi ignorarlo "
+"per ora."
#: smb4k/core/smb4k.kcfg:596 smb4k/core/smb4ksettings.cpp:758
-#, fuzzy, no-c-format
+#, no-c-format
msgid "Name resolve order used by smbclient"
-msgstr "Ordine di risoluzione:"
+msgstr "Ordine di risoluzione"
#: smb4k/core/smb4k.kcfg:597 smb4k/core/smb4ksettings.cpp:759
#, no-c-format
@@ -2715,11 +2913,16 @@ msgid ""
"of up to four different name resolution options. Those are: lmhost, host, "
"wins, bcast. See the manual page of smbclient for further information."
msgstr ""
+"Questa opzione è usata per determinare quali servizi di denominazione e in "
+"quale ordine vengono usati per risolvere nomi host e indirizzi IP. Richiede "
+"un elenco separato da spazi di un massimo di quattro diverse opzioni di "
+"risoluzione dei nomi. Sono: lmhost, host, wins, bcast. Consulta la pagina "
+"del manuale di smbclient per ulteriori informazioni."
#: smb4k/core/smb4k.kcfg:601 smb4k/core/smb4ksettings.cpp:763
#, no-c-format
msgid "Transmit/send buffer size used by smbclient"
-msgstr ""
+msgstr "Dimensione del buffer di trasmissione/invio utilizzata da smbclient"
#: smb4k/core/smb4k.kcfg:602 smb4k/core/smb4ksettings.cpp:764
#, no-c-format
@@ -2729,21 +2932,26 @@ msgid ""
"smaller has been observed to speed up file transfers to and from Windows 9x "
"servers."
msgstr ""
+"Questa opzione modifica la dimensione del buffer di trasmissione/invio "
+"quando si riceve o si inserisce un file dal/sul server. Il valore "
+"predefinito è 65520 byte. È stato osservato che impostando questo valore su "
+"un valore inferiore si velocizzano i trasferimenti di file da e verso i "
+"server Windows 9x."
#: smb4k/core/smb4k.kcfg:607 smb4k/core/smb4ksettings.cpp:788
#, no-c-format
msgid "Signing state"
-msgstr ""
+msgstr "Stato della firma"
#: smb4k/core/smb4k.kcfg:608 smb4k/core/smb4ksettings.cpp:789
#, no-c-format
msgid "Set the signing state for smbclient."
-msgstr ""
+msgstr "Imposta lo stato della firma per smbclient."
#: smb4k/core/smb4k.kcfg:618 smb4k/core/smb4ksettings.cpp:792
#, no-c-format
msgid "The broadcast address used by nmblookup"
-msgstr ""
+msgstr "L'indirizzo di broadcast utilizzato da nmblookup"
#: smb4k/core/smb4k.kcfg:619 smb4k/core/smb4ksettings.cpp:793
#, no-c-format
@@ -2753,11 +2961,16 @@ msgid ""
"the broadcast address of the network interface that was either auto-detected "
"or defined in the \"interfaces\" parameter of the smb.conf file."
msgstr ""
+"Le query eseguite con nmblookup saranno inviate all'indirizzo di broadcast "
+"specificato. Senza questa opzione il comportamento predefinito è inviare le "
+"query all'indirizzo di broadcast dell'interfaccia di rete che è stata "
+"rilevata automaticamente o definita nel parametro \"interfaces\" del file smb"
+".conf."
#: smb4k/core/smb4k.kcfg:623 smb4k/core/smb4ksettings.cpp:796
#, no-c-format
msgid "Use UDP port 137 with nmblookup"
-msgstr ""
+msgstr "Utilizzare la porta UDP 137 con nmblookup"
#: smb4k/core/smb4k.kcfg:624 smb4k/core/smb4ksettings.cpp:797
#, no-c-format
@@ -2768,6 +2981,12 @@ msgid ""
"most Unix systems super user privileges are needed to bind to this port. "
"Please read the manual page of nmblookup for more information."
msgstr ""
+"Prova a effettuare il binding alla porta UDP 137 per inviare e ricevere "
+"datagrammi UDP. Il motivo di questa opzione è un bug in Windows 95, che "
+"ignora la porta sorgente del pacchetto richiedente e risponde solo alla "
+"porta UDP 137. Sfortunatamente, sulla maggior parte dei sistemi Unix sono "
+"necessari privilegi di superutente per effettuare il binding a questa porta. "
+"Leggi la pagina del manuale di nmblookup per maggiori informazioni."
#: smb4k/core/smb4k.kcfg:637 smb4k/core/smb4ksettings.cpp:803
#, no-c-format
@@ -2783,6 +3002,12 @@ msgid ""
"with several remote shares, then you should create a subdirectory for each "
"share and choose the appropriate one in the synchronization dialog."
msgstr ""
+"Questo è il percorso in cui Smb4K memorizzerà i file e le directory durante "
+"la sincronizzazione. Se si prevede di sincronizzare solo con una "
+"condivisione remota, è possibile inserire i dati direttamente in questa "
+"directory. Se si desidera sincronizzare con diverse condivisioni remote, è "
+"necessario creare una sottodirectory per ciascuna condivisione e scegliere "
+"quella appropriata nella finestra di dialogo di sincronizzazione."
#: smb4k/core/smb4k.kcfg:642 smb4k/core/smb4ksettings.cpp:807
#, no-c-format
@@ -2793,6 +3018,8 @@ msgstr "Utilizza modalità archivio"
#, no-c-format
msgid "Use archive mode (-a, --archive). This is a short form of -rlptgoD."
msgstr ""
+"Usa la modalità archivio (-a, --archive). Questa è una forma abbreviata di "
+"-rlptgoD."
#: smb4k/core/smb4k.kcfg:647 smb4k/core/smb4ksettings.cpp:811
#, no-c-format
@@ -2805,9 +3032,9 @@ msgid "Recurse into directories (-r, --recursive)."
msgstr "Ricorsione nelle directory (-r, --recursive)."
#: smb4k/core/smb4k.kcfg:652 smb4k/core/smb4ksettings.cpp:815
-#, fuzzy, no-c-format
+#, no-c-format
msgid "Skip files that are newer in the target directory"
-msgstr "Salta i file che sono più recenti nella destinazione"
+msgstr "Salta i file più recenti nella directory di destinazione"
#: smb4k/core/smb4k.kcfg:653 smb4k/core/smb4ksettings.cpp:816
#, no-c-format
@@ -2815,6 +3042,8 @@ msgid ""
"Update files in the destination directory that are older than in the source "
"directory (-u, --update)."
msgstr ""
+"Aggiorna i file nella directory di destinazione che sono più vecchi di "
+"quelli nella directory di origine (-u, --update)."
#: smb4k/core/smb4k.kcfg:658 smb4k/core/smb4ksettings.cpp:820
#, no-c-format
@@ -2825,6 +3054,12 @@ msgid ""
"destination file will immediately be overwritten instead. An exception to "
"this is if you combine this option with --backup."
msgstr ""
+"Aggiorna i file di destinazione sul posto (--inplace). Per impostazione "
+"predefinita, rsync crea prima una nuova copia di un file e la sposta al suo "
+"posto una volta terminato il trasferimento. Se abiliti questa funzionalità, "
+"non verrà creata alcuna copia, ma il file di destinazione verrà "
+"immediatamente sovrascritto. Un'eccezione a ciò è se combini questa opzione "
+"con --backup."
#: smb4k/core/smb4k.kcfg:663 smb4k/core/smb4ksettings.cpp:824
#, no-c-format
@@ -2833,6 +3068,9 @@ msgid ""
"specified on the command line are sent to the server rather than just the "
"last parts of the file names."
msgstr ""
+"Utilizza percorsi relativi (-R, --relative). Ciò significa che i nomi di "
+"percorso completi specificati sulla riga di comando vengono inviati al "
+"server anziché solo le ultime parti dei nomi dei file."
#: smb4k/core/smb4k.kcfg:667 smb4k/core/smb4ksettings.cpp:827
#, no-c-format
@@ -2849,6 +3087,13 @@ msgid ""
"elements to have big differences, such as being a symlink to a directory on "
"one side of the transfer, and a real directory on the other side."
msgstr ""
+"Non inviare directory implicite con --relative (--no-implied-dirs). Ciò "
+"significa che gli elementi del percorso corrispondenti sul sistema di "
+"destinazione vengono lasciati invariati se esistono e tutte le directory "
+"implicite mancanti vengono create con attributi predefiniti. Ciò consente "
+"persino a questi elementi del percorso implicito di avere grandi differenze, "
+"come essere un collegamento simbolico a una directory su un lato del "
+"trasferimento e una directory reale sull'altro lato."
#: smb4k/core/smb4k.kcfg:673 smb4k/core/smb4ksettings.cpp:832
#, no-c-format
@@ -2856,6 +3101,9 @@ msgid ""
"Transfer directories without recursing (-d, --dirs). This means that all top-"
"level subdirectories are transferred but without their contents."
msgstr ""
+"Trasferisce le directory senza ricorrenza (-d, --dirs). Ciò significa che "
+"tutte le sottodirectory di livello superiore vengono trasferite ma senza il "
+"loro contenuto."
#: smb4k/core/smb4k.kcfg:679 smb4k/core/smb4ksettings.cpp:836
#, no-c-format
@@ -2864,17 +3112,23 @@ msgid ""
"the amount of data that is being transferred. You may want to use this "
"option, if you have a slow connection."
msgstr ""
+"Comprimi i dati durante il trasferimento (-z, --compress). Ciò riduce "
+"significativamente la quantità di dati che vengono trasferiti. Potresti "
+"voler usare questa opzione se hai una connessione lenta."
#: smb4k/core/smb4k.kcfg:684 smb4k/core/smb4ksettings.cpp:840
#, no-c-format
msgid "Copy symlinks as symlinks (-l, --links)."
msgstr ""
+"Copia i collegamenti simbolici come collegamenti simbolici (-l, --links)."
#: smb4k/core/smb4k.kcfg:689 smb4k/core/smb4ksettings.cpp:844
#, no-c-format
msgid ""
"Transform symlinks into the items they are pointing to (-L, --copy-links)."
msgstr ""
+"Trasforma i collegamenti simbolici negli elementi a cui puntano (-L, --copy-"
+"links)."
#: smb4k/core/smb4k.kcfg:694 smb4k/core/smb4ksettings.cpp:848
#, no-c-format
@@ -2885,6 +3139,12 @@ msgid ""
"same way. This option has no additional effect if --copy-links has also been "
"specified."
msgstr ""
+"Trasforma i collegamenti simbolici non sicuri negli elementi a cui puntano "
+"(--copy-unsafe-links). Ciò significa che vengono trasformati solo i "
+"collegamenti simbolici che puntano a elementi che sono al di fuori "
+"dell'albero copiato. I collegamenti simbolici assoluti vengono trattati allo "
+"stesso modo. Questa opzione non ha alcun effetto aggiuntivo se è stato "
+"specificato anche --copy-links."
#: smb4k/core/smb4k.kcfg:699 smb4k/core/smb4ksettings.cpp:852
#, no-c-format
@@ -2893,6 +3153,10 @@ msgid ""
"absolute symlinks are also ignored. If you use this option in conjunction "
"with --relative you might get unexpected results."
msgstr ""
+"Ignora i collegamenti simbolici che puntano all'esterno dell'albero copiato "
+"(--safe-links). Vengono ignorati anche tutti i collegamenti simbolici "
+"assoluti. Se utilizzi questa opzione insieme a --relative potresti ottenere "
+"risultati inaspettati."
#: smb4k/core/smb4k.kcfg:704 smb4k/core/smb4ksettings.cpp:856
#, no-c-format
@@ -2901,6 +3165,9 @@ msgid ""
"preserve the hard links that are found during the transfer. Without it, hard "
"links are treated as though they were separate files."
msgstr ""
+"Preserva gli hard link (-H, --hard-links). Questa opzione fa sì che rsync "
+"preservi gli hard link che vengono trovati durante il trasferimento. Senza "
+"di essa, gli hard link vengono trattati come se fossero file separati."
#: smb4k/core/smb4k.kcfg:709 smb4k/core/smb4ksettings.cpp:860
#, no-c-format
@@ -2910,6 +3177,11 @@ msgid ""
"directory from the sending side. Without this option, the receiver's symlink "
"will be deleted and replaced with a real directory."
msgstr ""
+"Tratta le directory con collegamento simbolico sul lato ricevente come se "
+"fossero directory reali (-K, --keep-dirlinks). Questo funziona solo se il "
+"collegamento simbolico corrisponde a una directory reale dal lato mittente. "
+"Senza questa opzione, il collegamento simbolico del destinatario verrà "
+"eliminato e sostituito con una directory reale."
#: smb4k/core/smb4k.kcfg:714 smb4k/core/smb4ksettings.cpp:864
#, no-c-format
@@ -2918,6 +3190,9 @@ msgid ""
"will be same as the source file. For what happens if this option is switched "
"off, please read rsync's manual page."
msgstr ""
+"Mantieni i permessi (-p, --perms). I permessi del file di destinazione "
+"saranno gli stessi del file sorgente. Per sapere cosa succede se questa "
+"opzione è disattivata, leggi la pagina del manuale di rsync."
#: smb4k/core/smb4k.kcfg:719 smb4k/core/smb4ksettings.cpp:868
#, no-c-format
@@ -2925,6 +3200,8 @@ msgid ""
"Preserve the group (-g, --group). The group of the destination file will be "
"set to the same value as the source file."
msgstr ""
+"Mantieni il gruppo (-g, --group). Il gruppo del file di destinazione verrà "
+"impostato sullo stesso valore del file sorgente."
#: smb4k/core/smb4k.kcfg:723 smb4k/core/smb4ksettings.cpp:871
#, no-c-format
@@ -2939,6 +3216,11 @@ msgid ""
"run as the super user. Without this option, the owner is set to the invoking "
"user on the receiving side."
msgstr ""
+"Mantieni il proprietario (-o, --owner). Il proprietario del file di "
+"destinazione verrà impostato sullo stesso valore del file sorgente, ma solo "
+"se lo rsync ricevente viene eseguito come super utente. Senza questa "
+"opzione, il proprietario viene impostato sull'utente che invoca sul lato "
+"ricevente."
#: smb4k/core/smb4k.kcfg:729 smb4k/core/smb4ksettings.cpp:876
#, no-c-format
@@ -2948,6 +3230,11 @@ msgid ""
"files such as named sockets and fifos. It works only partially if rsync is "
"not run as super user and the --super option is not specified."
msgstr ""
+"Mantieni dispositivo e file speciali (-D, --devices --specials). Questa "
+"opzione fa sì che rsync trasferisca dispositivi a caratteri e a blocchi, "
+"nonché file speciali come socket denominati e fifo. Funziona solo "
+"parzialmente se rsync non viene eseguito come superutente e l'opzione --"
+"super non è specificata."
#: smb4k/core/smb4k.kcfg:734 smb4k/core/smb4ksettings.cpp:880
#, no-c-format
@@ -2956,6 +3243,9 @@ msgid ""
"with the files. For what happens if this option is switched off, please read "
"rsync's manual page."
msgstr ""
+"Mantieni i tempi (-t, --times). I tempi di modifica vengono trasferiti "
+"insieme ai file. Per sapere cosa succede se questa opzione è disattivata, "
+"leggi la pagina del manuale di rsync."
#: smb4k/core/smb4k.kcfg:739 smb4k/core/smb4ksettings.cpp:884
#, no-c-format
@@ -2964,6 +3254,10 @@ msgid ""
"that directories are omitted when modification times are being preserved. "
"Thus, this feature only works in conjunction with --times."
msgstr ""
+"Ometti le directory quando si conservano gli orari (-O, --omit-dir-times). "
+"Ciò significa che le directory vengono omesse quando si conservano gli orari "
+"di modifica. Pertanto, questa funzionalità funziona solo in combinazione con "
+"--times."
#: smb4k/core/smb4k.kcfg:744 smb4k/core/smb4ksettings.cpp:888
#, no-c-format
@@ -2973,6 +3267,10 @@ msgid ""
"part of the transfer and have been successfully duplicated on the receiving "
"side."
msgstr ""
+"Rimuovi tutti i file sorgente sincronizzati (--remove-source-files). Questo "
+"indica a rsync di rimuovere dal lato mittente gli elementi non directory che "
+"fanno parte del trasferimento e sono stati duplicati con successo sul lato "
+"ricevente."
#: smb4k/core/smb4k.kcfg:749 smb4k/core/smb4ksettings.cpp:892
#, no-c-format
@@ -2981,6 +3279,9 @@ msgid ""
"delete all files from the receiving side that are not present on the sending "
"side, but only for the directories that are being synchronized."
msgstr ""
+"Elimina i file estranei dalla destinazione (--delete). Questo indica a rsync "
+"di eliminare tutti i file dal lato ricevente che non sono presenti sul lato "
+"mittente, ma solo per le directory che vengono sincronizzate."
#: smb4k/core/smb4k.kcfg:754 smb4k/core/smb4ksettings.cpp:896
#, no-c-format
@@ -2989,6 +3290,9 @@ msgid ""
"before). This is the default behavior if --delete or --delete-excluded is "
"specified without one of the --delete-WHEN options."
msgstr ""
+"Elimina i file sul lato ricevente prima che inizi il trasferimento (--delete-"
+"before). Questo è il comportamento predefinito se --delete o --delete-"
+"excluded viene specificato senza una delle opzioni --delete-WHEN."
#: smb4k/core/smb4k.kcfg:759 smb4k/core/smb4ksettings.cpp:900
#, no-c-format
@@ -2996,6 +3300,8 @@ msgid ""
"Delete files on the receiving side after the transfer has completed (--"
"delete-after, --del)."
msgstr ""
+"Elimina i file sul lato ricevente una volta completato il trasferimento "
+"(--delete-after, --del)."
#: smb4k/core/smb4k.kcfg:764 smb4k/core/smb4ksettings.cpp:904
#, no-c-format
@@ -3004,11 +3310,14 @@ msgid ""
"This method is faster than --delete-before or --delete-after, but it is only "
"supported with rsync 2.6.4 or later."
msgstr ""
+"Elimina i file sul lato ricevente durante il trasferimento (--delete-during)"
+". Questo metodo è più veloce di --delete-before o --delete-after, ma è "
+"supportato solo con rsync 2.6.4 o versioni successive."
#: smb4k/core/smb4k.kcfg:768 smb4k/core/smb4ksettings.cpp:907
-#, fuzzy, no-c-format
+#, no-c-format
msgid "Also delete excluded files from destination directory"
-msgstr "Elimina anche i file nella destinazione esclusi"
+msgstr "Elimina anche i file esclusi dalla directory di destinazione"
#: smb4k/core/smb4k.kcfg:769 smb4k/core/smb4ksettings.cpp:908
#, no-c-format
@@ -3018,6 +3327,11 @@ msgid ""
"sending side, this tells rsync to also delete any files on the receiving "
"side that are excluded. Refer to rsync's manual page for further information."
msgstr ""
+"Elimina anche i file esclusi dalla directory di destinazione (--delete-"
+"excluded). Oltre a eliminare i file sul lato ricevente che non sono sul lato "
+"mittente, questo dice a rsync di eliminare anche tutti i file sul lato "
+"ricevente che sono esclusi. Per ulteriori informazioni, fare riferimento "
+"alla pagina del manuale di rsync."
#: smb4k/core/smb4k.kcfg:774 smb4k/core/smb4ksettings.cpp:912
#, no-c-format
@@ -3025,6 +3339,8 @@ msgid ""
"Delete even if I/O errors occur (--ignore-errors). This option has to be "
"specified in conjunction with --delete to take effect."
msgstr ""
+"Elimina anche se si verificano errori I/O (--ignore-errors). Questa opzione "
+"deve essere specificata insieme a --delete affinché abbia effetto."
#: smb4k/core/smb4k.kcfg:779 smb4k/core/smb4ksettings.cpp:916
#, no-c-format
@@ -3033,6 +3349,10 @@ msgid ""
"option tells rsync to delete a non-empty directory when it is to be replaced "
"by a non-directory. This is only relevant if deletions are not active."
msgstr ""
+"Forza l'eliminazione delle directory anche se non sono vuote (--force). "
+"Questa opzione dice a rsync di eliminare una directory non vuota quando deve "
+"essere sostituita da una non directory. Ciò è rilevante solo se le "
+"eliminazioni non sono attive."
#: smb4k/core/smb4k.kcfg:783 smb4k/core/smb4ksettings.cpp:919
#, no-c-format
@@ -3046,11 +3366,15 @@ msgid ""
"rsync not to delete more than NUM files or directories (NUM must be non-"
"zero). This is useful when mirroring very large trees to prevent disasters."
msgstr ""
+"Elimina solo i file definiti qui (--max-delete=NUM). Questo indica a rsync "
+"di non eliminare più di NUM file o directory (NUM deve essere diverso da "
+"zero). Questo è utile quando si esegue il mirroring di alberi molto grandi "
+"per prevenire disastri."
#: smb4k/core/smb4k.kcfg:788 smb4k/core/smb4ksettings.cpp:924
#, no-c-format
msgid "Value for DeleteMaximum config entry"
-msgstr ""
+msgstr "Valore per la voce di configurazione DeleteMaximum"
#: smb4k/core/smb4k.kcfg:794 smb4k/core/smb4k.kcfg:805
#: smb4k/core/smb4ksettings.cpp:927 smb4k/core/smb4ksettings.cpp:935
@@ -3064,11 +3388,13 @@ msgid ""
"This option causes rsync to not transfer any file that is smaller than the "
"specified size (--min-size=SIZE)."
msgstr ""
+"Questa opzione fa sì che rsync non trasferisca alcun file di dimensioni "
+"inferiori a quelle specificate (--min-size=SIZE)."
#: smb4k/core/smb4k.kcfg:799 smb4k/core/smb4ksettings.cpp:932
#, no-c-format
msgid "Value for MinimalTransferSize config entry"
-msgstr ""
+msgstr "Valore per la voce di configurazione MinimalTransferSize"
#: smb4k/core/smb4k.kcfg:806 smb4k/core/smb4ksettings.cpp:936
#, no-c-format
@@ -3076,11 +3402,13 @@ msgid ""
"This option causes rsync to not transfer any file that is larger than the "
"specified size (--max-size=SIZE)."
msgstr ""
+"Questa opzione fa sì che rsync non trasferisca alcun file più grande della "
+"dimensione specificata (--max-size=SIZE)."
#: smb4k/core/smb4k.kcfg:810 smb4k/core/smb4ksettings.cpp:940
#, no-c-format
msgid "Value for MamximalTransferSize config entry"
-msgstr ""
+msgstr "Valore per la voce di configurazione MaximimalTransferSize"
#: smb4k/core/smb4k.kcfg:817 smb4k/core/smb4ksettings.cpp:944
#, no-c-format
@@ -3088,11 +3416,14 @@ msgid ""
"Keep partially transferred files (--partial). The default behavor is that "
"any partially transferred file is deleted if the transfer is interrupted."
msgstr ""
+"Mantieni i file trasferiti parzialmente (--partial). Il comportamento "
+"predefinito è che qualsiasi file trasferito parzialmente venga eliminato se "
+"il trasferimento viene interrotto."
#: smb4k/core/smb4k.kcfg:821 smb4k/core/smb4ksettings.cpp:947
-#, fuzzy, no-c-format
+#, no-c-format
msgid "The directory where to put a partially transferred file into."
-msgstr "Conserva i file parzialmente trasferiti in"
+msgstr "La directory in cui inserire un file parzialmente trasferito."
#: smb4k/core/smb4k.kcfg:822 smb4k/core/smb4ksettings.cpp:948
#, no-c-format
@@ -3102,11 +3433,15 @@ msgid ""
"because the partially transferred file is kept in a different directory and "
"the destination file is not overwritten."
msgstr ""
+"Inserisci un file trasferito parzialmente in questa directory (--partial-"
+"dir=DIR). Questo è un modo migliore dell'opzione --partial per conservare i "
+"file parziali, perché il file trasferito parzialmente viene conservato in "
+"una directory diversa e il file di destinazione non viene sovrascritto."
#: smb4k/core/smb4k.kcfg:826 smb4k/core/smb4ksettings.cpp:951
#, no-c-format
msgid "The data for the UsePartialDirectory option"
-msgstr ""
+msgstr "I dati per l'opzione UsePartialDirectory"
#: smb4k/core/smb4k.kcfg:832 smb4k/core/smb4ksettings.cpp:955
#, no-c-format
@@ -3116,6 +3451,10 @@ msgid ""
"want to transfer between systems. This option uses the same algorithm that "
"CVS uses to determine if a file should be ignored."
msgstr ""
+"Ignora automaticamente i file nello stesso modo in cui lo fa CVS (-C, --cvs-"
+"exclude). Questa è una scorciatoia utile per escludere un'ampia gamma di "
+"file che spesso non vuoi trasferire tra sistemi. Questa opzione usa lo "
+"stesso algoritmo che CVS usa per determinare se un file deve essere ignorato."
#: smb4k/core/smb4k.kcfg:836 smb4k/core/smb4ksettings.cpp:958
#, no-c-format
@@ -3129,6 +3468,9 @@ msgid ""
"special filter rule. For further information on filter rules see rsync's "
"manual page."
msgstr ""
+"Escludere i file che corrispondono a un certo pattern (--exclude=PATTERN). "
+"Questa è una regola di filtro speciale. Per ulteriori informazioni sulle "
+"regole di filtro, vedere la pagina del manuale di rsync."
#: smb4k/core/smb4k.kcfg:841 smb4k/core/smb4ksettings.cpp:962
#, no-c-format
@@ -3148,11 +3490,16 @@ msgid ""
"read from a file. This is a special filter rule. For further information on "
"filter rules see rsync's manual page."
msgstr ""
+"Leggi i pattern di esclusione da un file (--exclude-from=FILE). Questa "
+"opzione è simile all'opzione --exclude=PATTERN, tranne per il fatto che i "
+"pattern di esclusione vengono letti da un file. Questa è una regola di "
+"filtro speciale. Per ulteriori informazioni sulle regole di filtro, consulta "
+"la pagina del manuale di rsync."
#: smb4k/core/smb4k.kcfg:851 smb4k/core/smb4ksettings.cpp:969
#, no-c-format
msgid "The file from which the exclude patterns are read"
-msgstr ""
+msgstr "Il file da cui vengono letti i modelli di esclusione"
#: smb4k/core/smb4k.kcfg:856 smb4k/core/smb4ksettings.cpp:972
#, no-c-format
@@ -3166,11 +3513,14 @@ msgid ""
"a special filter rule. For further information on filter rules see rsync's "
"manual page."
msgstr ""
+"Non escludere i file che corrispondono a un certo pattern (--include=PATTERN)"
+". Questa è una regola di filtro speciale. Per ulteriori informazioni sulle "
+"regole di filtro, vedere la pagina del manuale di rsync."
#: smb4k/core/smb4k.kcfg:861 smb4k/core/smb4ksettings.cpp:976
#, no-c-format
msgid "Pattern that is used for file inclusion"
-msgstr ""
+msgstr "Modello utilizzato per l'inclusione dei file"
#: smb4k/core/smb4k.kcfg:866 smb4k/core/smb4ksettings.cpp:979
#, no-c-format
@@ -3185,16 +3535,21 @@ msgid ""
"read from a file. This is a special filter rule. For further information on "
"filter rules see rsync's manual page."
msgstr ""
+"Leggi i pattern di inclusione da un file (--include-from=FILE). Questa "
+"opzione è simile all'opzione --include=PATTERN, tranne per il fatto che i "
+"pattern di inclusione vengono letti da un file. Questa è una regola di "
+"filtro speciale. Per ulteriori informazioni sulle regole di filtro, consulta "
+"la pagina del manuale di rsync."
#: smb4k/core/smb4k.kcfg:871 smb4k/core/smb4ksettings.cpp:983
#, no-c-format
msgid "The file from which the include patterns are read"
-msgstr ""
+msgstr "Il file da cui vengono letti i modelli di inclusione"
#: smb4k/core/smb4k.kcfg:876 smb4k/core/smb4ksettings.cpp:986
#, no-c-format
msgid "Add custom file-filtering rules"
-msgstr ""
+msgstr "Aggiungere regole di filtraggio file personalizzate"
#: smb4k/core/smb4k.kcfg:877 smb4k/core/smb4ksettings.cpp:987
#, no-c-format
@@ -3203,6 +3558,9 @@ msgid ""
"to add rules to selectively exclude certain files from the list of files to "
"be transferred."
msgstr ""
+"Aggiungi regole personalizzate di filtraggio dei file (-f, --filter=RULE). "
+"Questa opzione consente di aggiungere regole per escludere selettivamente "
+"determinati file dall'elenco dei file da trasferire."
#: smb4k/core/smb4k.kcfg:881 smb4k/core/smb4ksettings.cpp:990
#, no-c-format
@@ -3217,6 +3575,10 @@ msgid ""
"the files in the transfer. It has no effect, if you also choose to use the --"
"filter='exclude .rsync-filter' rule."
msgstr ""
+"Questa regola di filtro dice a rsync di cercare i file .rsync-filter per "
+"directory che sono stati sparsi nella gerarchia e di usare le loro regole "
+"per filtrare i file nel trasferimento. Non ha effetto se scegli anche di "
+"usare la regola --filter='exclude .rsync-filter'."
#: smb4k/core/smb4k.kcfg:886 smb4k/core/smb4ksettings.cpp:994
#, no-c-format
@@ -3230,6 +3592,10 @@ msgid ""
"normally contain filter rules that can be activated by choosing the --"
"filter='dir-merge /.rsync-filter' rule and deselecting this one."
msgstr ""
+"Questa regola filtra i file .rsync-filter dal trasferimento. Questi file "
+"normalmente contengono regole di filtro che possono essere attivate "
+"scegliendo la regola --filter='dir-merge /.rsync-filter' e deselezionando "
+"questa."
#: smb4k/core/smb4k.kcfg:892 smb4k/core/smb4ksettings.cpp:999
#, no-c-format
@@ -3238,6 +3604,9 @@ msgid ""
"space on the destination. This option conflicts with --inplace. For further "
"information read rsync's manual page."
msgstr ""
+"Gestisci i file sparsi in modo efficiente (-S, --sparse) in modo che "
+"occupino meno spazio nella destinazione. Questa opzione è in conflitto con --"
+"inplace. Per ulteriori informazioni, leggi la pagina del manuale di rsync."
#: smb4k/core/smb4k.kcfg:897 smb4k/core/smb4ksettings.cpp:1003
#, no-c-format
@@ -3245,6 +3614,9 @@ msgid ""
"Copy files whole (-W, --whole-file). With this option the incremental rsync "
"algorithm is not used and the whole file is sent as-is instead."
msgstr ""
+"Copia i file interi (-W, --whole-file). Con questa opzione l'algoritmo rsync "
+"incrementale non viene utilizzato e l'intero file viene invece inviato così "
+"com'è."
#: smb4k/core/smb4k.kcfg:901 smb4k/core/smb4ksettings.cpp:1006
#, no-c-format
@@ -3258,11 +3630,15 @@ msgid ""
"rsync to avoid crossing a filesystem boundary when recursing. For further "
"information on this option, read the manual page."
msgstr ""
+"Non oltrepassare i confini del file system (-x, --one-file-system). Questo "
+"indica a rsync di evitare di oltrepassare un confine del file system durante "
+"la ricorsione. Per ulteriori informazioni su questa opzione, leggi la pagina "
+"del manuale."
#: smb4k/core/smb4k.kcfg:906 smb4k/core/smb4ksettings.cpp:1010
#, no-c-format
msgid "Skip creating new files on the receiving side"
-msgstr ""
+msgstr "Salta la creazione di nuovi file sul lato ricevente"
#: smb4k/core/smb4k.kcfg:907 smb4k/core/smb4ksettings.cpp:1011
#, no-c-format
@@ -3273,11 +3649,16 @@ msgid ""
"no files will be updated (which can be useful if all you want to do is to "
"delete extraneous files)."
msgstr ""
+"Salta la creazione di nuovi file sul lato ricevente (--existing). Questo "
+"dice a rsync di saltare la creazione di file (incluse le directory) che non "
+"esistono ancora sulla destinazione. Se questa opzione è combinata con "
+"l'opzione --ignore-existing, nessun file verrà aggiornato (il che può essere "
+"utile se tutto ciò che vuoi fare è eliminare file estranei)."
#: smb4k/core/smb4k.kcfg:911 smb4k/core/smb4ksettings.cpp:1014
#, no-c-format
msgid "Skip updating files that exist on the receiving side"
-msgstr ""
+msgstr "Salta l'aggiornamento dei file esistenti sul lato ricevente"
#: smb4k/core/smb4k.kcfg:912 smb4k/core/smb4ksettings.cpp:1015
#, no-c-format
@@ -3285,6 +3666,8 @@ msgid ""
"Skip updating files that already exist on the receiving side (--ignore-"
"existing). Existing directories are not ignored."
msgstr ""
+"Salta l'aggiornamento dei file già esistenti sul lato ricevente (--ignore-"
+"existing). Le directory esistenti non vengono ignorate."
#: smb4k/core/smb4k.kcfg:916 smb4k/core/smb4ksettings.cpp:1018
#, no-c-format
@@ -3299,6 +3682,10 @@ msgid ""
"until the end of the transfer, at which time all the files are renamed and "
"copied into place in rapid succession."
msgstr ""
+"Ritarda gli aggiornamenti fino alla fine del trasferimento (--delay-updates)"
+". Questa opzione mette il file temporaneo di ogni file aggiornato in una "
+"directory di attesa fino alla fine del trasferimento, momento in cui tutti i "
+"file vengono rinominati e copiati al loro posto in rapida successione."
#: smb4k/core/smb4k.kcfg:922 smb4k/core/smb4ksettings.cpp:1023
#, no-c-format
@@ -3308,6 +3695,11 @@ msgid ""
"the backup file goes and what (if any) suffix gets appended using the --"
"backup-dir=DIR and --suffix=SUFFIX options."
msgstr ""
+"Esegui backup (-b, --backup). Con questa opzione, i file di destinazione "
+"preesistenti vengono rinominati quando ogni file viene trasferito o "
+"eliminato. Puoi controllare dove va il file di backup e quale suffisso (se "
+"presente) viene aggiunto usando le opzioni --backup-dir=DIR e "
+"--suffix=SUFFIX."
#: smb4k/core/smb4k.kcfg:926 smb4k/core/smb4ksettings.cpp:1026
#, no-c-format
@@ -3317,7 +3709,7 @@ msgstr "Usa un suffisso per i backup"
#: smb4k/core/smb4k.kcfg:927 smb4k/core/smb4ksettings.cpp:1027
#, no-c-format
msgid "Use this suffix for backups (--suffix=SUFFIX)."
-msgstr ""
+msgstr "Utilizzare questo suffisso per i backup (--suffix=SUFFIX)."
#: smb4k/core/smb4k.kcfg:931 smb4k/core/smb4ksettings.cpp:1030
#, no-c-format
@@ -3327,12 +3719,12 @@ msgstr "Suffisso di backup"
#: smb4k/core/smb4k.kcfg:936 smb4k/core/smb4ksettings.cpp:1033
#, no-c-format
msgid "Put backups into a certain directory"
-msgstr ""
+msgstr "Metti i backup in una directory specifica"
#: smb4k/core/smb4k.kcfg:937 smb4k/core/smb4ksettings.cpp:1034
#, no-c-format
msgid "Store backups in this directory (--backup-dir=DIR)."
-msgstr ""
+msgstr "Memorizza i backup in questa directory (--backup-dir=DIR)."
#: smb4k/core/smb4k.kcfg:941 smb4k/core/smb4ksettings.cpp:1037
#, no-c-format
@@ -3350,6 +3742,9 @@ msgid ""
"Force a fixed checksum block-size (-B, --block-size=SIZE). This forces the "
"block size used in the rsync algorithm to a fixed value."
msgstr ""
+"Forza una dimensione di blocco del checksum fissa (-B, --block-size=SIZE). "
+"Ciò forza la dimensione del blocco utilizzata nell'algoritmo rsync a un "
+"valore fisso."
#: smb4k/core/smb4k.kcfg:951 smb4k/core/smb4ksettings.cpp:1045
#, no-c-format
@@ -3369,6 +3764,11 @@ msgid ""
"and file MD4 checksum calculation. By default the checksum seed is generated "
"by the server and defaults to the current time."
msgstr ""
+"Imposta il seed del checksum del blocco/file (--checksum-seed=NUM). Imposta "
+"il seed del checksum MD4 su questo intero. Questo seed del checksum a 4 byte "
+"è incluso in ogni calcolo del checksum MD4 del blocco e del file. Per "
+"impostazione predefinita, il seed del checksum è generato dal server e per "
+"impostazione predefinita è l'ora corrente."
#: smb4k/core/smb4k.kcfg:962 smb4k/core/smb4ksettings.cpp:1053
#, no-c-format
@@ -3387,6 +3787,9 @@ msgid ""
"c, --checksum). For further information on how this feature works read "
"rsync's manual page."
msgstr ""
+"Salta i file in base a un checksum e non in base a data e dimensione della "
+"modifica (-c, --checksum). Per ulteriori informazioni su come funziona "
+"questa funzionalità, leggi la pagina del manuale di rsync."
#: smb4k/core/smb4k.kcfg:979 smb4k/core/smb4ksettings.cpp:1074
#, no-c-format
@@ -3400,6 +3803,9 @@ msgid ""
"mounting and unmounting remote shares. You can either select sudo, the "
"standard tool for this purpose on most distributions, or super."
msgstr ""
+"Scegli il programma che ti garantirà privilegi di superutente limitati per "
+"montare e smontare condivisioni remote. Puoi selezionare sudo, lo strumento "
+"standard per questo scopo nella maggior parte delle distribuzioni, o super."
#: smb4k/core/smb4k.kcfg:988 smb4k/core/smb4ksettings.cpp:1078
#, no-c-format
@@ -3417,6 +3823,13 @@ msgid ""
"Use with case! Note, that you will need the root password to write the "
"necessary changes to the configuration file."
msgstr ""
+"Smonta una condivisione su Linux forzatamente. Questo funziona anche se il "
+"file system è \"occupato\", perché viene immediatamente staccato dalla "
+"gerarchia del file system e tutti i riferimenti ad esso vengono ripuliti in "
+"seguito quando non è più occupato. Per sfruttare questa funzionalità è "
+"necessario il kernel Linux 2.4.11 o successivo. Da usare con maiuscole/"
+"minuscole! Nota che avrai bisogno della password di root per scrivere le "
+"modifiche necessarie al file di configurazione."
#: smb4k/core/smb4k.kcfg:994 smb4k/core/smb4ksettings.cpp:1083
#, no-c-format
@@ -3426,6 +3839,11 @@ msgid ""
"mount.cifs and umount.cifs as normal user. Note, that you will need the root "
"password to write the necessary changes to the configuration file."
msgstr ""
+"Utilizza privilegi di superutente per montare e smontare condivisioni "
+"remote. Questa funzionalità è necessaria solo se non ti è consentito usare "
+"smbmount, smbumount, mount.cifs e umount.cifs come utente normale. Nota che "
+"ti servirà la password di root per scrivere le modifiche necessarie al file "
+"di configurazione."
#: smb4k/core/smb4tdefileio.cpp:923 smb4k/core/smb4tdefileio.cpp:1057
msgid "Buffer size exceeded"
@@ -3554,9 +3972,8 @@ msgstr "&Forza smontaggio"
#: smb4k/iconview/smb4ksharesiconview_part.cpp:116
#: smb4k/listview/smb4kshareslistview_part.cpp:119
#: smb4k/smb4ksystemtray.cpp:446
-#, fuzzy
msgid "U&nmount All"
-msgstr "Smonta tutto"
+msgstr "&Smonta tutto"
#: smb4k/iconview/smb4ksharesiconview_part.cpp:119
#: smb4k/listview/smb4kshareslistview_part.cpp:122
@@ -3578,7 +3995,7 @@ msgstr "Apri con &Konqueror"
#: smb4k/iconview/smb4ksharesiconview_part.cpp:549
msgid "Smb4KSharesIconViewPart"
-msgstr ""
+msgstr "Smb4KSharesIconViewPart"
#: smb4k/iconview/smb4ksharesiconviewtooltip.cpp:122
#: smb4k/listview/smb4kshareslistviewtooltip.cpp:122
@@ -3638,7 +4055,7 @@ msgstr "Utilizzo"
#: smb4k/listview/smb4kshareslistview_part.cpp:676
msgid "Smb4KSharesListViewPart"
-msgstr ""
+msgstr "Smb4KSharesListViewPart"
#: smb4k/main.cpp:51
msgid ""
@@ -3658,6 +4075,9 @@ msgid ""
"(c) 2004-2008, Massimo Callegari\n"
"(c) 2004, Franck Babin"
msgstr ""
+"(c) 2003-2008, Alexander Reinholdt\n"
+"(c) 2004-2008, Massimo Callegari\n"
+"(c) 2004, Franck Babin"
#: smb4k/main.cpp:69 smb4k/main.cpp:70 smb4k/main.cpp:71
msgid "Developer"
@@ -3757,6 +4177,10 @@ msgid ""
"obsolete and you have to reconfigure the application.\n"
"To assure a clean transition, the current configuration file will be removed."
msgstr ""
+"Smb4K ora utilizza un sistema di configurazione diverso. Pertanto, le tue "
+"vecchie impostazioni sono obsolete e devi riconfigurare l'applicazione.\n"
+"Per garantire una transizione pulita, il file di configurazione corrente "
+"verrà rimosso."
#: smb4k/searchdlg/smb4ksearchdialog.cpp:52
msgid "Enter the search string here."
@@ -3764,12 +4188,11 @@ msgstr "Inserire qui l'host da cercare."
#: smb4k/searchdlg/smb4ksearchdialog.cpp:63
msgid "Search Results"
-msgstr "Risultati della ricerca."
+msgstr "Risultati della ricerca"
#: smb4k/searchdlg/smb4ksearchdialog_part.cpp:254
-#, fuzzy
msgid "Smb4KSearchDialogPart"
-msgstr "Finestra di Ricerca"
+msgstr "Smb4KSearchDialogPart"
#: smb4k/searchdlg/smb4ksearchdialogitem.cpp:80
msgid "The search failed."
@@ -3796,29 +4219,25 @@ msgid "Ready."
msgstr "Pronto."
#: smb4k/smb4k.cpp:264
-#, fuzzy
msgid "Jump to shares view"
msgstr "Passa alla Visualizzazione delle Condivisioni"
#: smb4k/smb4k.cpp:293
-#, fuzzy
msgid "Jump to network browser"
msgstr "Passa al Browser di Rete"
#: smb4k/smb4k.cpp:332
-#, fuzzy
msgid "Jump to search dialog"
msgstr "Passa alla Finestra di Ricerca"
#: smb4k/smb4k.cpp:463
-#, fuzzy
msgid ""
"Closing the main window will keep Smb4K running in the system tray. Use "
"\"Quit\" from the \"File\" menu to quit the application."
msgstr ""
-"Smb4K è ancora attivo nella barra di sistema anche se è stata chiusa la sua "
-"finestra principale. Per uscire completamente dal programma selezionare "
-"'Esci' nel menù 'File'."
+"Chiudendo la finestra principale manterrai Smb4K in esecuzione nella barra "
+"delle applicazioni. Utilizzare \"Esci\" dal menu \"File\" per uscire "
+"dall'applicazione."
#: smb4k/smb4k.cpp:465
msgid "Docking in System Tray"
@@ -3867,7 +4286,7 @@ msgstr "Ritento la ricezione dell'elenco delle condivisioni..."
#: smb4k/smb4k.cpp:711 smb4k/smb4k.cpp:729 smb4k/smb4k.cpp:741
#: smb4k/smb4k.cpp:753 smb4k/smb4k.cpp:765
msgid "Done."
-msgstr "Fatto"
+msgstr "Fatto."
#: smb4k/smb4k.cpp:717
msgid "Mounting share..."
@@ -3899,14 +4318,14 @@ msgid "&Network"
msgstr "&Rete"
#: smb4k/core/smb4k.kcfg:376
-#, fuzzy, no-c-format
+#, no-c-format
msgid "The default user name for authentication"
-msgstr "Usa Kerberos per l'autenticazione"
+msgstr "Il nome utente predefinito per l'autenticazione"
#: smb4k/core/smb4k.kcfg:380
-#, fuzzy, no-c-format
+#, no-c-format
msgid "The default password for authentication"
-msgstr "Usa Kerberos per l'autenticazione"
+msgstr "La password predefinita per l'autenticazione"
#: smb4k/iconview/smb4ksharesiconview_part.rc:4
#: smb4k/listview/smb4kshareslistview_part.rc:4
diff --git a/translations/messages/ka.po b/translations/messages/ka.po
index 60f980e..08de109 100644
--- a/translations/messages/ka.po
+++ b/translations/messages/ka.po
@@ -1,10 +1,10 @@
# SOME DESCRIPTIVE TITLE.
-# Temuri Doghonadze <[email protected]>, 2024.
+# Temuri Doghonadze <[email protected]>, 2024, 2025.
msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"POT-Creation-Date: 2021-07-07 18:27+0000\n"
-"PO-Revision-Date: 2024-11-04 12:10+0000\n"
+"PO-Revision-Date: 2025-01-06 14:00+0000\n"
"Last-Translator: Temuri Doghonadze <[email protected]>\n"
"Language-Team: Georgian <https://mirror.git.trinitydesktop.org/weblate/"
"projects/applications/smb4k/ka/>\n"
@@ -31,7 +31,7 @@ msgstr "[email protected]"
#: plugin/smb4k_konqplugin.cpp:70
msgid "Scan Network"
-msgstr ""
+msgstr "ქსელის სკანირება"
#: plugin/smb4k_konqplugin.cpp:71 smb4k/searchdlg/smb4ksearchdialog.cpp:57
msgid "Search"
@@ -125,7 +125,7 @@ msgstr "სამუშაო &ჯგუფში ძებნა"
#: smb4k/browser/smb4knetworkbrowser_part.cpp:1905
msgid "Smb4KNetworkBrowserPart"
-msgstr ""
+msgstr "Smb4KNetworkBrowserPart"
#: smb4k/browser/smb4knetworkbrowsertooltip.cpp:109
#: smb4k/browser/smb4knetworkbrowsertooltip.cpp:154
@@ -503,7 +503,7 @@ msgstr ""
#: smb4k/configdlg/smb4ksambaoptions.cpp:323
msgid " Bytes"
-msgstr ""
+msgstr " ბაიტი"
#: smb4k/configdlg/smb4ksambaoptions.cpp:325
msgid "Signing state:"
@@ -515,7 +515,7 @@ msgstr "არცერთი"
#: smb4k/configdlg/smb4ksambaoptions.cpp:328
msgid "on"
-msgstr ""
+msgstr "ჩართ"
#: smb4k/configdlg/smb4ksambaoptions.cpp:329
msgid "off"
@@ -587,14 +587,14 @@ msgstr "ფაილური სისტემა:"
#: smb4k/configdlg/smb4ksambaoptions.cpp:423
msgid "Kerberos:"
-msgstr ""
+msgstr "Kerberos:"
#: smb4k/configdlg/smb4ksambaoptions.cpp:427
#: smb4k/configdlg/smb4tdeconfigdialog.cpp:332
#: smb4k/configdlg/smb4tdeconfigdialog.cpp:353
#: smb4k/configdlg/smb4tdeconfigdialog.cpp:1099
msgid "no"
-msgstr ""
+msgstr "არა"
#: smb4k/configdlg/smb4ksambaoptions.cpp:428
#: smb4k/configdlg/smb4tdeconfigdialog.cpp:331
@@ -603,7 +603,7 @@ msgstr ""
#: smb4k/configdlg/smb4tdeconfigdialog.cpp:451
#: smb4k/configdlg/smb4tdeconfigdialog.cpp:1098
msgid "yes"
-msgstr "yes"
+msgstr "დიახ"
#: smb4k/configdlg/smb4ksambaoptions.cpp:440
#: smb4k/dialogs/smb4kcustomoptionsdialog.cpp:164
@@ -976,7 +976,7 @@ msgstr ""
#: smb4k/configdlg/smb4tdeconfigdialog.cpp:1191
msgid "Smb4TDEConfigDialog"
-msgstr ""
+msgstr "Smb4TDEConfigDialog"
#: smb4k/configdlg/smb4tdersyncoptions.cpp:55
msgid "Default Destination"
@@ -3606,7 +3606,7 @@ msgstr "&Konqueror-ით გახსნა"
#: smb4k/iconview/smb4ksharesiconview_part.cpp:549
msgid "Smb4KSharesIconViewPart"
-msgstr ""
+msgstr "Smb4KSharesIconViewPart"
#: smb4k/iconview/smb4ksharesiconviewtooltip.cpp:122
#: smb4k/listview/smb4kshareslistviewtooltip.cpp:122
@@ -3616,7 +3616,7 @@ msgstr "მიმაგრების წერტილი:"
#: smb4k/iconview/smb4ksharesiconviewtooltip.cpp:211
#: smb4k/listview/smb4kshareslistviewtooltip.cpp:211
msgid "Free:"
-msgstr ""
+msgstr "თავისუფალი:"
#: smb4k/iconview/smb4ksharesiconviewtooltip.cpp:215
#: smb4k/listview/smb4kshareslistviewtooltip.cpp:215
@@ -3666,7 +3666,7 @@ msgstr "გამოყენება"
#: smb4k/listview/smb4kshareslistview_part.cpp:676
msgid "Smb4KSharesListViewPart"
-msgstr ""
+msgstr "Smb4KSharesListViewPart"
#: smb4k/main.cpp:51
msgid ""
@@ -3703,7 +3703,7 @@ msgstr ""
#: smb4k/main.cpp:77
msgid "Russian translation"
-msgstr "Russian translation"
+msgstr "ღრუსული თარგმანი"
#: smb4k/main.cpp:78
msgid "Swedish translation and intensive testing"
@@ -3723,7 +3723,7 @@ msgstr "უნგრული თარგმანი"
#: smb4k/main.cpp:82 smb4k/main.cpp:90
msgid "Spanish translation"
-msgstr "Spanish translation"
+msgstr "ესპანური თარგმანი"
#: smb4k/main.cpp:83
msgid "Slovak translation"
@@ -3794,7 +3794,7 @@ msgstr "ძებნს შედეგები"
#: smb4k/searchdlg/smb4ksearchdialog_part.cpp:254
msgid "Smb4KSearchDialogPart"
-msgstr ""
+msgstr "Smb4KSearchDialogPart"
#: smb4k/searchdlg/smb4ksearchdialogitem.cpp:80
msgid "The search failed."