bleachbit-2.0/0000755000175000017500000000000013245436310011373 5ustar hlehlebleachbit-2.0/Makefile0000644000175000017500000000543413245436307013047 0ustar hlehle# On some systems if not explicitly given, make uses /bin/sh SHELL := /bin/bash .PHONY: clean install tests build prefix ?= /usr/local bindir ?= $(prefix)/bin datadir ?= $(prefix)/share INSTALL = install INSTALL_DATA = $(INSTALL) -m 644 # if not specified, do not check coverage COVERAGE ?= python build: echo Nothing to build clean: @rm -vf {.,bleachbit,tests,windows}/*{pyc,pyo,~} @rm -vrf build dist # created by py2exe @rm -rf BleachBit-Portable # created by windows/setup_py2exe.bat @rm -rf BleachBit-*-portable.zip @rm -vf MANIFEST # created by setup.py make -C po clean @rm -vrf locale @rm -vrf {*/,./}*.{pychecker,pylint,pyflakes}.log @rm -vrf windows/BleachBit-*-setup*.{exe,zip} @rm -vrf htmlcov .coverage # code coverage reports install: # "binary" mkdir -p $(DESTDIR)$(bindir) $(INSTALL_DATA) bleachbit.py $(DESTDIR)$(bindir)/bleachbit chmod 0755 $(DESTDIR)$(bindir)/bleachbit # .desktop mkdir -p $(DESTDIR)$(datadir)/applications $(INSTALL_DATA) bleachbit.desktop $(DESTDIR)$(datadir)/applications/ # .desktop mkdir -p $(DESTDIR)$(datadir)/appdata $(INSTALL_DATA) bleachbit.appdata.xml $(DESTDIR)$(datadir)/appdata/ # Python code mkdir -p $(DESTDIR)$(datadir)/bleachbit $(INSTALL_DATA) bleachbit/*.py $(DESTDIR)$(datadir)/bleachbit cd $(DESTDIR)$(datadir)/bleachbit && \ python -O -c "import compileall; compileall.compile_dir('.')" && \ python -c "import compileall; compileall.compile_dir('.')" # cleaners mkdir -p $(DESTDIR)$(datadir)/bleachbit/cleaners $(INSTALL_DATA) cleaners/*xml $(DESTDIR)$(datadir)/bleachbit/cleaners # icon mkdir -p $(DESTDIR)$(datadir)/pixmaps $(INSTALL_DATA) bleachbit.png $(DESTDIR)$(datadir)/pixmaps/ # translations make -C po install DESTDIR=$(DESTDIR) # PolicyKit mkdir -p $(DESTDIR)$(datadir)/polkit-1/actions $(INSTALL_DATA) org.bleachbit.policy $(DESTDIR)$(datadir)/polkit-1/actions/ lint: [ -x "$$(command -v pychecker)" ] || echo "WARNING: pychecker not found" [ -x "$$(command -v pyflakes)" ] || echo "WARNING: pyflakes not found" [ -x "$$(command -v pylint)" ] || echo "WARNING: pylint not found" for f in *py */*py; \ do \ echo "$$f" ; \ ( [ -x "$$(command -v pychecker)" ] && pyflakes "$$f" > "$$f".pychecker.log ); \ ( [ -x "$$(command -v pyflakes)" ] && pyflakes "$$f" > "$$f".pyflakes.log ); \ ( [ -x "$$(command -v pylint)" ] && pylint "$$f" > "$$f".pylint.log ); \ done; \ exit 0 tests: make -C cleaners tests; cleaners_status=$$?; \ $(COVERAGE) -m unittest discover -p Test*.py -v; py_status=$$?; \ exit $$(($$cleaners_status + $$py_status)) pretty: autopep8 -i {.,bleachbit,tests}/*py dos2unix {.,bleachbit,tests}/*py make -C cleaners pretty xmllint --format doc/cleaner_markup_language.xsd > doc/cleaner_markup_language.xsd.tmp mv doc/cleaner_markup_language.xsd.tmp doc/cleaner_markup_language.xsd bleachbit-2.0/po/0000755000175000017500000000000013245436310012011 5ustar hlehlebleachbit-2.0/po/Makefile0000644000175000017500000000502013245436307013454 0ustar hlehleAPP = bleachbit POFILES = $(wildcard *.po) MOFILES = $(patsubst %.po,%.mo,$(POFILES)) SRC = $(wildcard ../bleachbit/*.py) POTFILE = $(APP).pot .PHONY: refresh-po spelling local install clean all cleanerml.pot: ../bleachbit/CleanerML.py ../cleaners/*xml python ../bleachbit.py --pot desktop.pot: ../bleachbit.desktop echo "#: ../bleachbit.desktop" > desktop.pot echo "msgid \"`perl -n -e '/GenericName=(.*)$$/ && print "$$1\n"' ../bleachbit.desktop`\"" >> desktop.pot echo "msgstr \"\"" >> desktop.pot echo >> desktop.pot echo "#: ../bleachbit.desktop" >> desktop.pot echo "msgid \"`perl -n -e '/Comment=(.*)$$/ && print "$$1\n"' ../bleachbit.desktop`\"" >> desktop.pot echo "msgstr \"\"" >> desktop.pot echo >> desktop.pot $(POTFILE): $(SRC) cleanerml.pot desktop.pot @echo "* Generating $(APP).pot" echo " Words before update: " \ `tail -n +20 bleachbit.pot | grep -v ^# | sed "s/\(msgstr\|msgid\)//g" | sort | wc --words` cat cleanerml.pot desktop.pot > $(APP).pot xgettext -o $(APP).pot \ --join-existing \ --add-comments=TRANSLATORS \ --keyword="_p:1c,2" \ --default-domain=$(APP) \ $(SRC) sed -i 's/charset=CHARSET/charset=utf-8/g' bleachbit.pot echo " Words after update: " \ `tail -n +20 bleachbit.pot | grep -v ^# | sed "s/\(msgstr\|msgid\)//g" | sort | wc --words` refresh-po: $(POTFILE) @echo "* Refreshing .po files" for oldpo in $(POFILES); do \ lang=`basename $$oldpo .po`; \ echo $$lang; \ msgmerge --no-fuzzy-matching -v $${lang}.po $(POTFILE) > $${lang}.pot; \ mv $$lang.pot $$lang.po; \ done spelling: $(POTFILE) @echo "* Checking spelling" @echo @echo Word count: `msggrep -Kie . --no-wrap $(POTFILE) | grep ^msgid | cut -c 8- | wc --words` @echo msggrep -Kie . --no-wrap $(POTFILE) | grep ^msgid | cut -c 8- | aspell list | sort -u %.mo: %.po @echo "* Generating $@" msgfmt --statistics -o $@ $< local: $(MOFILES) @echo "* Copy locally for running without system installation" for mofile in $(MOFILES); do \ lang=`basename $$mofile .mo`; \ mkdir -p ../locale/$$lang/LC_MESSAGES/; \ cp -lf $$mofile ../locale/$$lang/LC_MESSAGES/bleachbit.mo; \ done @echo "Now you can run cd ..; python bleachbit/GUI.py" install: $(MOFILES) echo "* Installing in $(DESTDIR)/usr/share/locale" for MO in $(MOFILES); do \ lang=`basename $$MO .mo`; \ DST=$(DESTDIR)/usr/share/locale/$$lang/LC_MESSAGES/; \ mkdir -p $$DST; \ cp $$MO $$DST/bleachbit.mo; \ done clean: echo "* Cleaning" @rm -fv *.mo @rm -fv $(APP).pot cleanerml.pot desktop.pot @rm -rfv ../locale all: $(APP).pot $(MOFILES) bleachbit-2.0/po/hy.po0000644000175000017500000007777113245436307013022 0ustar hlehle# Armenian translation for bleachbit # Copyright (c) 2011 Rosetta Contributors and Canonical Ltd 2011 # This file is distributed under the same license as the bleachbit package. # FIRST AUTHOR , 2011. # msgid "" msgstr "" "Project-Id-Version: bleachbit\n" "Report-Msgid-Bugs-To: FULL NAME \n" "POT-Creation-Date: 2011-05-23 12:10-0600\n" "PO-Revision-Date: 2011-06-09 19:54+0000\n" "Last-Translator: Serj Safarian \n" "Language-Team: Armenian \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=1; plural=0;\n" "X-Launchpad-Export-Date: 2011-06-10 18:24+0000\n" "X-Generator: Launchpad (build 13175)\n" #: ../cleaners/tremulous.xml ../cleaners/gl-117.xml ../cleaners/nexuiz.xml #: ../cleaners/hippo_opensim_viewer.xml ../cleaners/secondlife_viewer.xml msgid "Game" msgstr "Խաղ" #: ../cleaners/tremulous.xml ../cleaners/chromium.xml ../cleaners/miro.xml #: ../cleaners/audacious.xml ../cleaners/xine.xml ../cleaners/kde.xml #: ../cleaners/pidgin.xml ../cleaners/seamonkey.xml ../cleaners/liferea.xml #: ../cleaners/beagle.xml ../cleaners/opera.xml ../cleaners/rhythmbox.xml #: ../cleaners/epiphany.xml ../cleaners/transmission.xml #: ../cleaners/nexuiz.xml ../cleaners/hippo_opensim_viewer.xml #: ../cleaners/vuze.xml ../cleaners/evolution.xml ../cleaners/exaile.xml #: ../cleaners/google_chrome.xml ../cleaners/emesene.xml ../cleaners/amsn.xml #: ../cleaners/yahoo_messenger.xml ../cleaners/thumbnails.xml #: ../cleaners/safari.xml ../cleaners/java.xml ../cleaners/flash.xml #: ../cleaners/thunderbird.xml ../cleaners/adobe_reader.xml #: ../cleaners/gftp.xml ../cleaners/gpodder.xml #: ../cleaners/secondlife_viewer.xml ../bleachbit/Cleaner.py:187 #: ../bleachbit/Cleaner.py:297 ../bleachbit/Cleaner.py:364 msgid "Cache" msgstr "Հիշապահեստ" #: ../cleaners/tremulous.xml msgid "Delete the list of game servers" msgstr "" #: ../cleaners/yum.xml ../cleaners/miro.xml ../cleaners/audacious.xml #: ../cleaners/xine.xml ../cleaners/kde.xml ../cleaners/pidgin.xml #: ../cleaners/liferea.xml ../cleaners/beagle.xml ../cleaners/rhythmbox.xml #: ../cleaners/transmission.xml ../cleaners/nexuiz.xml ../cleaners/apt.xml #: ../cleaners/hippo_opensim_viewer.xml ../cleaners/vuze.xml #: ../cleaners/evolution.xml ../cleaners/exaile.xml ../cleaners/amsn.xml #: ../cleaners/yahoo_messenger.xml ../cleaners/thumbnails.xml #: ../cleaners/java.xml ../cleaners/windows_explorer.xml ../cleaners/flash.xml #: ../cleaners/adobe_reader.xml ../cleaners/gftp.xml ../cleaners/gpodder.xml #: ../cleaners/secondlife_viewer.xml ../bleachbit/Cleaner.py:297 #: ../bleachbit/Cleaner.py:364 ../bleachbit/Cleaner.py:384 #: ../bleachbit/Cleaner.py:386 msgid "Delete the cache" msgstr "Ջնջել հիշապահեստը" #. TRANSLATORS: Vacuum is a verb. The term is jargon #. from the SQLite database. Microsoft Access uses #. the term 'Compact Database' (which you may translate #. instead). Another synonym is 'defragment.' #: ../cleaners/yum.xml ../cleaners/chromium.xml ../cleaners/liferea.xml #: ../cleaners/firefox_vacuum.xml ../cleaners/google_chrome.xml #: ../cleaners/safari.xml ../cleaners/thunderbird.xml ../cleaners/gpodder.xml #: ../bleachbit/Cleaner.py:197 ../bleachbit/Cleaner.py:287 #: ../bleachbit/Action.py:285 msgid "Vacuum" msgstr "" #: ../cleaners/yum.xml ../cleaners/chromium.xml ../cleaners/liferea.xml #: ../cleaners/firefox_vacuum.xml ../cleaners/google_chrome.xml #: ../cleaners/safari.xml ../cleaners/thunderbird.xml ../cleaners/gpodder.xml #: ../bleachbit/Cleaner.py:197 msgid "" "Clean database fragmentation to reduce space and improve speed without " "removing any data" msgstr "" #: ../cleaners/chromium.xml ../cleaners/internet_explorer.xml #: ../cleaners/seamonkey.xml ../cleaners/opera.xml ../cleaners/epiphany.xml #: ../cleaners/firefox_vacuum.xml ../cleaners/google_chrome.xml #: ../cleaners/safari.xml ../cleaners/links2.xml ../cleaners/elinks.xml #: ../cleaners/konqueror.xml ../bleachbit/Cleaner.py:210 msgid "Web browser" msgstr "Ոստայն զննարկիչ" #: ../cleaners/chromium.xml ../cleaners/seamonkey.xml ../cleaners/opera.xml #: ../cleaners/epiphany.xml ../cleaners/google_chrome.xml #: ../cleaners/safari.xml ../cleaners/thunderbird.xml #: ../bleachbit/Cleaner.py:187 msgid "Delete the web cache, which reduces time to display revisited pages" msgstr "" #: ../cleaners/chromium.xml ../cleaners/internet_explorer.xml #: ../cleaners/seamonkey.xml ../cleaners/liferea.xml ../cleaners/opera.xml #: ../cleaners/epiphany.xml ../cleaners/google_chrome.xml #: ../cleaners/safari.xml ../cleaners/flash.xml ../cleaners/thunderbird.xml #: ../cleaners/konqueror.xml ../cleaners/realplayer.xml #: ../cleaners/silverlight.xml ../bleachbit/Cleaner.py:188 msgid "Cookies" msgstr "Թխուկները" #: ../cleaners/chromium.xml ../cleaners/internet_explorer.xml #: ../cleaners/seamonkey.xml ../cleaners/liferea.xml ../cleaners/opera.xml #: ../cleaners/epiphany.xml ../cleaners/google_chrome.xml #: ../cleaners/safari.xml ../cleaners/flash.xml ../cleaners/thunderbird.xml #: ../cleaners/konqueror.xml ../cleaners/realplayer.xml #: ../cleaners/silverlight.xml ../bleachbit/Cleaner.py:188 msgid "" "Delete cookies, which contain information such as web site preferences, " "authentication, and tracking identification" msgstr "" #. TRANSLATORS: DOM = Document Object Model. #: ../cleaners/chromium.xml ../cleaners/opera.xml #: ../cleaners/google_chrome.xml ../bleachbit/Cleaner.py:190 msgid "DOM Storage" msgstr "" #: ../cleaners/chromium.xml ../cleaners/opera.xml #: ../cleaners/google_chrome.xml ../bleachbit/Cleaner.py:190 msgid "Delete HTML5 cookies" msgstr "" #: ../cleaners/chromium.xml ../cleaners/internet_explorer.xml #: ../cleaners/google_chrome.xml ../bleachbit/Cleaner.py:192 msgid "Form history" msgstr "" #: ../cleaners/chromium.xml ../cleaners/google_chrome.xml msgid "A history of forms entered in web sites" msgstr "" #: ../cleaners/chromium.xml ../cleaners/d4x.xml ../cleaners/vim.xml #: ../cleaners/internet_explorer.xml ../cleaners/mc.xml #: ../cleaners/seamonkey.xml ../cleaners/windows_defender.xml #: ../cleaners/google_chrome.xml ../cleaners/nautilus.xml #: ../cleaners/safari.xml ../cleaners/bash.xml ../cleaners/links2.xml #: ../cleaners/elinks.xml ../cleaners/tortoisesvn.xml #: ../cleaners/realplayer.xml msgid "History" msgstr "" #: ../cleaners/chromium.xml ../cleaners/google_chrome.xml msgid "" "Delete the history which includes visited sites, downloads, and thumbnails" msgstr "" #: ../cleaners/chromium.xml ../cleaners/google_chrome.xml msgid "Search engines" msgstr "" #. 'Factory' means a search engine that is installed by default 'from the factory,' but this is different than a 'default search engine' https://lists.launchpad.net/launchpad-translators/msg00283.html #: ../cleaners/chromium.xml ../cleaners/google_chrome.xml msgid "" "Reset the search engine usage history and delete non-factory search engines, " "some of which are added automatically" msgstr "" #: ../cleaners/chromium.xml ../cleaners/opera.xml ../cleaners/konqueror.xml msgid "Current session" msgstr "" #: ../cleaners/chromium.xml ../cleaners/opera.xml ../cleaners/konqueror.xml msgid "Delete the current session" msgstr "" #: ../cleaners/d4x.xml ../cleaners/mc.xml ../cleaners/nautilus.xml #: ../cleaners/gnome.xml ../cleaners/links2.xml ../cleaners/tortoisesvn.xml #: ../cleaners/realplayer.xml ../bleachbit/Cleaner.py:277 #: ../bleachbit/Cleaner.py:348 msgid "Delete the usage history" msgstr "" #: ../cleaners/vim.xml ../cleaners/gedit.xml msgid "Editor" msgstr "" #: ../cleaners/vim.xml msgid "" "Delete ~/.viminfo which includes file history, command history, and buffers" msgstr "" #: ../cleaners/miro.xml ../cleaners/xine.xml ../cleaners/flash.xml msgid "Multimedia viewer" msgstr "" #: ../cleaners/miro.xml ../cleaners/audacious.xml ../cleaners/screenlets.xml #: ../cleaners/hippo_opensim_viewer.xml ../cleaners/vuze.xml #: ../cleaners/exaile.xml ../cleaners/easytag.xml #: ../cleaners/yahoo_messenger.xml ../cleaners/teamviewer.xml #: ../cleaners/gftp.xml ../cleaners/amule.xml ../cleaners/realplayer.xml #: ../bleachbit/Cleaner.py:382 msgid "Logs" msgstr "" #: ../cleaners/miro.xml ../cleaners/audacious.xml ../cleaners/screenlets.xml #: ../cleaners/hippo_opensim_viewer.xml ../cleaners/vuze.xml #: ../cleaners/exaile.xml ../cleaners/yahoo_messenger.xml #: ../cleaners/teamviewer.xml ../cleaners/gftp.xml ../cleaners/amule.xml #: ../cleaners/realplayer.xml ../bleachbit/Cleaner.py:382 msgid "Delete the logs" msgstr "" #: ../cleaners/gl-117.xml ../cleaners/beagle.xml ../cleaners/x11.xml #: ../cleaners/microsoft_office.xml ../cleaners/secondlife_viewer.xml msgid "Debug logs" msgstr "" #: ../cleaners/gl-117.xml ../cleaners/beagle.xml ../cleaners/x11.xml #: ../cleaners/microsoft_office.xml ../cleaners/easytag.xml #: ../cleaners/secondlife_viewer.xml msgid "Delete the debug logs" msgstr "" #: ../cleaners/internet_explorer.xml ../bleachbit/Cleaner.py:192 msgid "A history of forms entered in web sites and in the Search bar" msgstr "" #: ../cleaners/internet_explorer.xml ../cleaners/opera.xml #: ../cleaners/safari.xml ../cleaners/konqueror.xml #: ../bleachbit/Cleaner.py:196 msgid "List of visited web pages" msgstr "" #: ../cleaners/internet_explorer.xml ../cleaners/kde.xml ../cleaners/vuze.xml #: ../cleaners/deepscan.xml ../cleaners/gimp.xml ../cleaners/google_earth.xml #: ../cleaners/adobe_reader.xml ../cleaners/amule.xml #: ../cleaners/winetricks.xml ../cleaners/wine.xml ../bleachbit/Cleaner.py:398 msgid "Temporary files" msgstr "" #: ../cleaners/internet_explorer.xml ../cleaners/kde.xml ../cleaners/vuze.xml #: ../cleaners/deepscan.xml ../cleaners/gimp.xml ../cleaners/google_earth.xml #: ../cleaners/adobe_reader.xml ../cleaners/amule.xml #: ../cleaners/winetricks.xml ../cleaners/wine.xml ../bleachbit/Cleaner.py:398 msgid "Delete the temporary files" msgstr "" #: ../cleaners/audacious.xml ../cleaners/filezilla.xml ../cleaners/winrar.xml #: ../cleaners/wordpad.xml ../cleaners/winamp.xml #: ../cleaners/windows_media_player.xml ../cleaners/microsoft_office.xml #: ../cleaners/winzip.xml ../cleaners/vlc.xml ../cleaners/windows_explorer.xml #: ../cleaners/teamviewer.xml ../cleaners/adobe_reader.xml #: ../cleaners/paint.xml ../bleachbit/Cleaner.py:298 msgid "Most recently used" msgstr "" #: ../cleaners/audacious.xml ../cleaners/kde.xml ../cleaners/filezilla.xml #: ../cleaners/gwenview.xml ../cleaners/gedit.xml #: ../cleaners/windows_explorer.xml ../cleaners/adobe_reader.xml #: ../bleachbit/Cleaner.py:298 ../bleachbit/Cleaner.py:374 msgid "Delete the list of recently used documents" msgstr "" #: ../cleaners/kde.xml ../cleaners/gwenview.xml ../cleaners/gedit.xml #: ../cleaners/windows_explorer.xml ../bleachbit/Cleaner.py:374 msgid "Recent documents list" msgstr "" #: ../cleaners/pidgin.xml ../cleaners/xchat.xml ../cleaners/emesene.xml #: ../cleaners/amsn.xml ../cleaners/yahoo_messenger.xml msgid "Chat client" msgstr "" #: ../cleaners/pidgin.xml ../cleaners/seamonkey.xml ../cleaners/xchat.xml #: ../cleaners/emesene.xml ../cleaners/amsn.xml #: ../cleaners/yahoo_messenger.xml ../cleaners/skype.xml msgid "Chat logs" msgstr "" #: ../cleaners/pidgin.xml ../cleaners/seamonkey.xml ../cleaners/xchat.xml #: ../cleaners/emesene.xml ../cleaners/amsn.xml #: ../cleaners/yahoo_messenger.xml ../cleaners/skype.xml msgid "Delete the chat logs" msgstr "" #: ../cleaners/seamonkey.xml msgid "Delete the list of visited web pages" msgstr "" #: ../cleaners/screenlets.xml msgid "Widgets for the desktop" msgstr "" #: ../cleaners/beagle.xml ../cleaners/recoll.xml msgid "Search tool" msgstr "" #: ../cleaners/beagle.xml msgid "Search indexes" msgstr "" #: ../cleaners/beagle.xml msgid "Delete the search indexes" msgstr "" #: ../cleaners/filezilla.xml ../cleaners/transmission.xml ../cleaners/vuze.xml #: ../cleaners/gftp.xml ../cleaners/amule.xml msgid "File transfer client" msgstr "" #: ../cleaners/windows_defender.xml ../cleaners/deepscan.xml msgid "Delete the files" msgstr "" #: ../cleaners/opera.xml ../bleachbit/Cleaner.py:191 msgid "Download history" msgstr "" #: ../cleaners/opera.xml ../bleachbit/Cleaner.py:191 msgid "List of files downloaded" msgstr "" #: ../cleaners/opera.xml ../cleaners/google_toolbar.xml ../cleaners/gnome.xml #: ../cleaners/windows_explorer.xml msgid "Search history" msgstr "" #: ../cleaners/opera.xml ../cleaners/google_toolbar.xml ../cleaners/gnome.xml #: ../cleaners/windows_explorer.xml msgid "Delete the search history" msgstr "" #: ../cleaners/opera.xml ../cleaners/konqueror.xml ../bleachbit/Cleaner.py:196 msgid "URL history" msgstr "" #: ../cleaners/winrar.xml ../cleaners/wordpad.xml ../cleaners/winamp.xml #: ../cleaners/windows_media_player.xml ../cleaners/microsoft_office.xml #: ../cleaners/winzip.xml ../cleaners/vlc.xml ../cleaners/windows_explorer.xml #: ../cleaners/teamviewer.xml ../cleaners/paint.xml msgid "Delete the most recently used list" msgstr "" #: ../cleaners/epiphany.xml ../cleaners/thunderbird.xml #: ../bleachbit/Cleaner.py:195 msgid "Passwords" msgstr "" #: ../cleaners/epiphany.xml ../cleaners/thunderbird.xml #: ../bleachbit/Cleaner.py:195 msgid "" "A database of usernames and passwords as well as a list of sites that should " "not store passwords" msgstr "" #: ../cleaners/epiphany.xml msgid "Places" msgstr "" #: ../cleaners/epiphany.xml msgid "" "A database of URLs including bookmarks, favicons, and a history of visited " "web sites" msgstr "" #: ../cleaners/epiphany.xml msgid "This option deletes all bookmarks." msgstr "" #: ../cleaners/microsoft_office.xml ../bleachbit/Cleaner.py:308 msgid "Office suite" msgstr "" #: ../cleaners/apt.xml msgid "Delete obsolete files" msgstr "" #: ../cleaners/vuze.xml ../cleaners/deepscan.xml msgid "Backup files" msgstr "" #: ../cleaners/vuze.xml ../cleaners/deepscan.xml msgid "Delete the backup files" msgstr "" #: ../cleaners/exaile.xml msgid "Downloaded podcasts" msgstr "" #: ../cleaners/exaile.xml msgid "Delete downloaded podcasts" msgstr "" #: ../cleaners/google_chrome.xml msgid "Session" msgstr "" #: ../cleaners/google_chrome.xml msgid "Delete the current and last sessions" msgstr "" #: ../cleaners/emesene.xml msgid "Delete the avatars and emoticons cache" msgstr "" #: ../cleaners/deepscan.xml msgid "Deep scan" msgstr "" #: ../cleaners/deepscan.xml msgid "Inspect the preview for any files you want to keep." msgstr "" #: ../cleaners/deepscan.xml msgid "This option is slow." msgstr "" #: ../cleaners/nautilus.xml msgid "Custom folders will be reset." msgstr "" #: ../cleaners/thumbnails.xml ../cleaners/windows_explorer.xml msgid "Thumbnails" msgstr "" #: ../cleaners/bash.xml msgid "Delete the command history" msgstr "" #. In GNOME 'Run' is the dialog shown when typing ALT+F2' #. In Windows 'Run' is the dialog in the Start menu #: ../cleaners/gnome.xml ../cleaners/windows_explorer.xml msgid "Run" msgstr "" #: ../cleaners/elinks.xml msgid "Delete the cookies, visited URLs, and search history" msgstr "" #: ../cleaners/recoll.xml msgid "Index" msgstr "" #: ../cleaners/recoll.xml msgid "" "Delete the search index, a database of words and the files they contain" msgstr "" #: ../bleachbit.desktop msgid "Unnecessary file cleaner" msgstr "" #: ../bleachbit.desktop msgid "Free space and maintain privacy" msgstr "" #. TRANSLATORS: This is the label in the log indicating was #. skipped because it matches the whitelist #: ../bleachbit/Command.py:46 msgid "Skip" msgstr "" #. TRANSLATORS: This is the label in the log indicating will be #. deleted (for previews) or was actually deleted #: ../bleachbit/Command.py:73 ../bleachbit/GUI.py:585 msgid "Delete" msgstr "" #. TRANSLATORS: The file will be deleted when the #. system reboots #: ../bleachbit/Command.py:93 msgid "Mark for deletion" msgstr "" #. TRANSLATORS: Parts of this file will be deleted #: ../bleachbit/Command.py:182 ../bleachbit/Command.py:212 #: ../bleachbit/Action.py:203 ../bleachbit/Action.py:215 msgid "Clean file" msgstr "" #. TRANSLATORS: The file will be truncated to 0 bytes in length #: ../bleachbit/Command.py:249 msgid "Truncate" msgstr "" #: ../bleachbit/Command.py:288 msgid "Delete registry key" msgstr "" #: ../bleachbit/Unix.py:364 ../bleachbit/Unix.py:394 ../bleachbit/Unix.py:574 #, python-format msgid "Executable not found: %s" msgstr "" #. TRANSLATORS: %s expands to a name such as 'Firefox' or 'System'. #: ../bleachbit/Unix.py:571 ../bleachbit/Worker.py:131 #, python-format msgid "" "%s cannot be cleaned because it is currently running. Close it, and try " "again." msgstr "" #: ../bleachbit/GuiBasic.py:113 msgid "Delete confirmation" msgstr "" #: ../bleachbit/GuiBasic.py:121 msgid "" "Are you sure you want to permanently delete files according to the selected " "operations? The actual files that will be deleted may have changed since " "you ran the preview." msgstr "" #: ../bleachbit/GuiBasic.py:123 msgid "Are you sure you want to permanently delete these files?" msgstr "" #: ../bleachbit/GuiBasic.py:159 #, python-format msgid "" "Because you are running as root, please manually open this link in a web " "browser:\n" "%s" msgstr "" #. TRANSLATORS: %s expands to bleachbit.sourceforge.net or similar #: ../bleachbit/GuiBasic.py:171 #, python-format msgid "Open web browser to %s?" msgstr "" #. TRANSLATORS: This is cleaner name for cleaners imported from winapp2.ini #: ../bleachbit/Winapp.py:45 msgid "Applications" msgstr "" #. TRANSLATORS: This is cleaner name for cleaners imported from winapp2.ini #: ../bleachbit/Winapp.py:47 ../bleachbit/Winapp.py:54 #: ../bleachbit/Winapp.py:55 ../bleachbit/Winapp.py:56 msgid "Internet" msgstr "" #. TRANSLATORS: This is cleaner name for cleaners imported from winapp2.ini #: ../bleachbit/Winapp.py:49 msgid "Multimedia" msgstr "" #. TRANSLATORS: This is cleaner name for cleaners imported from winapp2.ini #: ../bleachbit/Winapp.py:51 msgid "Utilities" msgstr "" #. TRANSLATORS: This is cleaner name for cleaners imported from winapp2.ini. #: ../bleachbit/Winapp.py:53 msgid "Microsoft Windows" msgstr "" #: ../bleachbit/Winapp.py:87 msgid "Imported from winapp2.ini" msgstr "" #: ../bleachbit/Cleaner.py:193 msgid "Session restore" msgstr "" #: ../bleachbit/Cleaner.py:193 msgid "Loads the initial session after the browser closes or crashes" msgstr "" #: ../bleachbit/Cleaner.py:194 msgid "Site preferences" msgstr "" #: ../bleachbit/Cleaner.py:194 msgid "Settings for individual sites" msgstr "" #. TRANSLATORS: desktop entries are .desktop files in Linux tha #. make up the application menu (the menu that shows BleachBit, #. Firefox, and others. The .desktop files also associate file #. types, so clicking on an .html file in Nautilus brings up #. Firefox. #. More information: http://standards.freedesktop.org/menu-spec/latest/index.html#introduction #: ../bleachbit/Cleaner.py:363 msgid "Broken desktop files" msgstr "" #: ../bleachbit/Cleaner.py:363 msgid "Delete broken application menu entries and file associations" msgstr "" #. TRANSLATORS: Localizations are files supporting specific #. languages, so applications appear in Spanish, etc. #: ../bleachbit/Cleaner.py:367 msgid "Localizations" msgstr "" #: ../bleachbit/Cleaner.py:367 msgid "Delete files for unwanted languages" msgstr "" #: ../bleachbit/Cleaner.py:368 msgid "Configure this option in the preferences." msgstr "" #. TRANSLATORS: 'Rotated logs' refers to old system log files. #. Linux systems often have a scheduled job to rotate the logs #. which means compress all except the newest log and then delete #. the oldest log. You could translate this 'old logs.' #: ../bleachbit/Cleaner.py:373 msgid "Rotated logs" msgstr "" #: ../bleachbit/Cleaner.py:373 msgid "Delete old system logs" msgstr "" #: ../bleachbit/Cleaner.py:375 msgid "Trash" msgstr "" #: ../bleachbit/Cleaner.py:375 msgid "Empty the trash" msgstr "" #: ../bleachbit/Cleaner.py:377 ../bleachbit/Cleaner.py:483 #: ../bleachbit/Worker.py:210 msgid "Memory" msgstr "" #. TRANSLATORS: 'free' means 'unallocated' #: ../bleachbit/Cleaner.py:379 msgid "Wipe the swap and free memory" msgstr "" #: ../bleachbit/Cleaner.py:380 msgid "This option is experimental and may cause system problems." msgstr "" #: ../bleachbit/Cleaner.py:383 msgid "Memory dump" msgstr "" #: ../bleachbit/Cleaner.py:383 msgid "Delete the file memory.dmp" msgstr "" #. TRANSLATORS: Prefetch is Microsoft Windows jargon. #: ../bleachbit/Cleaner.py:386 msgid "Prefetch" msgstr "" #: ../bleachbit/Cleaner.py:387 msgid "Recycle bin" msgstr "" #: ../bleachbit/Cleaner.py:387 msgid "Empty the recycle bin" msgstr "" #. TRANSLATORS: 'Update' is a noun, and 'Update uninstallers' is an option to delete #. the uninstallers for software updates. #: ../bleachbit/Cleaner.py:390 msgid "Update uninstallers" msgstr "" #: ../bleachbit/Cleaner.py:390 msgid "" "Delete uninstallers for Microsoft updates including hotfixes, service packs, " "and Internet Explorer updates" msgstr "" #: ../bleachbit/Cleaner.py:392 ../bleachbit/Cleaner.py:565 msgid "Clipboard" msgstr "" #: ../bleachbit/Cleaner.py:392 msgid "" "The desktop environment's clipboard used for copy and paste operations" msgstr "" #. TRANSLATORS: 'free' means 'unallocated' #: ../bleachbit/Cleaner.py:394 msgid "Free disk space" msgstr "" #. TRANSLATORS: 'free' means 'unallocated' #: ../bleachbit/Cleaner.py:396 msgid "Overwrite free disk space to hide deleted files" msgstr "" #: ../bleachbit/Cleaner.py:397 msgid "This option is very slow." msgstr "" #: ../bleachbit/Cleaner.py:401 msgid "The system in general" msgstr "" #: ../bleachbit/Cleaner.py:407 ../bleachbit/Cleaner.py:659 msgid "System" msgstr "" #. TRANSLATORS: 'Free' means 'unallocated.' #. %s expands to a path such as C:\ or /tmp/ #: ../bleachbit/Cleaner.py:591 ../bleachbit/Cleaner.py:684 #, python-format msgid "Overwrite free disk space %s" msgstr "" #. TRANSLATORS: %s expands to a drive letter such as C:\ or D:\ #: ../bleachbit/Cleaner.py:619 #, python-format msgid "Recycle bin %s" msgstr "" #: ../bleachbit/GuiPreferences.py:52 ../bleachbit/GUI.py:637 msgid "Preferences" msgstr "" #: ../bleachbit/GuiPreferences.py:58 msgid "General" msgstr "" #: ../bleachbit/GuiPreferences.py:59 msgid "Drives" msgstr "" #: ../bleachbit/GuiPreferences.py:61 msgid "Languages" msgstr "" #: ../bleachbit/GuiPreferences.py:62 msgid "Whitelist" msgstr "" #: ../bleachbit/GuiPreferences.py:105 msgid "Check periodically for software updates via the Internet" msgstr "" #: ../bleachbit/GuiPreferences.py:108 msgid "" "If an update is found, you will be given the option to view information " "about it. Then, you may manually download and install the update." msgstr "" #: ../bleachbit/GuiPreferences.py:114 msgid "Check for new beta releases" msgstr "" #: ../bleachbit/GuiPreferences.py:121 msgid "Download and update cleaners from community (winapp2.ini)" msgstr "" #. TRANSLATORS: This means to hide cleaners which would do #. nothing. For example, if Firefox were never used on #. this system, this option would hide Firefox to simplify #. the list of cleaners. #: ../bleachbit/GuiPreferences.py:133 msgid "Hide irrelevant cleaners" msgstr "" #. TRANSLATORS: Overwriting is the same as shredding. It is a way #. to prevent recovery of the data. You could also translate #. 'Shred files to prevent recovery.' #: ../bleachbit/GuiPreferences.py:141 msgid "Overwrite files to hide contents" msgstr "" #: ../bleachbit/GuiPreferences.py:144 msgid "" "Overwriting is ineffective on some file systems and with certain BleachBit " "operations. Overwriting is significantly slower." msgstr "" #: ../bleachbit/GuiPreferences.py:147 msgid "Start BleachBit with computer" msgstr "" #: ../bleachbit/GuiPreferences.py:158 ../bleachbit/GuiPreferences.py:289 #: ../bleachbit/GUI.py:547 msgid "Choose a folder" msgstr "" #. TRANSLATORS: 'free' means 'unallocated' #: ../bleachbit/GuiPreferences.py:183 msgid "" "Choose a writable folder for each drive for which to overwrite free space." msgstr "" #. TRANSLATORS: In the preferences dialog, this button adds a path to the list of paths #: ../bleachbit/GuiPreferences.py:204 msgctxt "button" msgid "Add" msgstr "" #. TRANSLATORS: In the preferences dialog, this button removes a path from the list of paths #: ../bleachbit/GuiPreferences.py:207 ../bleachbit/GuiPreferences.py:367 msgctxt "button" msgid "Remove" msgstr "" #: ../bleachbit/GuiPreferences.py:232 msgid "All languages will be deleted except those checked." msgstr "" #: ../bleachbit/GuiPreferences.py:249 msgid "Preserve" msgstr "" #: ../bleachbit/GuiPreferences.py:253 msgid "Code" msgstr "" #: ../bleachbit/GuiPreferences.py:257 ../bleachbit/GUI.py:136 msgid "Name" msgstr "" #: ../bleachbit/GuiPreferences.py:275 msgid "Choose a file" msgstr "" #: ../bleachbit/GuiPreferences.py:282 ../bleachbit/GuiPreferences.py:326 msgid "File" msgstr "" #: ../bleachbit/GuiPreferences.py:297 ../bleachbit/GuiPreferences.py:328 msgid "Folder" msgstr "" #. TRANSLATORS: "Paths" is used generically to refer to both files and folders #: ../bleachbit/GuiPreferences.py:335 msgid "Theses paths will not be deleted or modified." msgstr "" #: ../bleachbit/GuiPreferences.py:343 msgid "Type" msgstr "" #. TRANSLATORS: In the tree view "Path" is used generically to refer to a #. file, a folder, or a pattern describing either #: ../bleachbit/GuiPreferences.py:349 msgid "Path" msgstr "" #: ../bleachbit/GuiPreferences.py:361 msgctxt "button" msgid "Add file" msgstr "" #: ../bleachbit/GuiPreferences.py:364 msgctxt "button" msgid "Add folder" msgstr "" #: ../bleachbit/RecognizeCleanerML.py:63 msgid "Security warning" msgstr "" #. TRANSLATORS: Cleaner definitions are XML data files that define #. which files will be cleaned. #: ../bleachbit/RecognizeCleanerML.py:75 msgid "" "These cleaner definitions are new or have changed. Malicious definitions can " "damage your system. If you do not trust these changes, delete the files or " "quit." msgstr "" #. TRANSLATORS: This is the column label (header) in the tree view for the security dialog #: ../bleachbit/RecognizeCleanerML.py:88 msgctxt "column_label" msgid "Delete" msgstr "" #. TRANSLATORS: This is the column label (header) in the tree view for the security dialog #: ../bleachbit/RecognizeCleanerML.py:91 msgctxt "column_label" msgid "Filename" msgstr "" #. TRANSLATORS: This indicates an error. The special keyword #. %(operation)s will be replaced by 'firefox' or 'opera' or #. some other cleaner ID. The special keyword %(msg)s will be #. replaced by a message such as 'Permission denied.' #: ../bleachbit/Worker.py:76 #, python-format msgid "Exception while running operation '%(operation)s': '%(msg)s'" msgstr "" #. TRANSLATORS: 'free' means 'unallocated' #: ../bleachbit/Worker.py:208 msgid "Please wait. Wiping free disk space." msgstr "" #. TRANSLATORS: %s is replaced with Firefox, System, etc. #: ../bleachbit/Worker.py:210 ../bleachbit/Worker.py:297 #, python-format msgid "Please wait. Cleaning %s." msgstr "" #: ../bleachbit/Worker.py:220 #, python-format msgid "About %d minute remaining." msgid_plural "About %d minutes remaining." msgstr[0] "" msgstr[1] "" #. TRANSLATORS: This refers to disk space that was #. really recovered (in other words, not a preview) #: ../bleachbit/Worker.py:235 #, python-format msgid "Disk space recovered: %s" msgstr "" #. TRANSLATORS: This refers to a preview (no real #. changes were made yet) #: ../bleachbit/Worker.py:239 #, python-format msgid "Disk space to be recovered: %s" msgstr "" #. TRANSLATORS: This refers to the number of files really #. deleted (in other words, not a preview). #: ../bleachbit/Worker.py:244 #, python-format msgid "Files deleted: %d" msgstr "" #. TRANSLATORS: This refers to the number of files that #. would be deleted (in other words, simply a preview). #: ../bleachbit/Worker.py:248 #, python-format msgid "Files to be deleted: %d" msgstr "" #: ../bleachbit/Worker.py:251 #, python-format msgid "Special operations: %d" msgstr "" #: ../bleachbit/Worker.py:254 #, python-format msgid "Errors: %d" msgstr "" #. TRANSLATORS: The "deep scan" feature searches over broad #. areas of the file system such as the user's whole home directory #. or all the system executables. #: ../bleachbit/Worker.py:270 msgid "Please wait. Running deep scan." msgstr "" #. TRANSLATORS: %s is replaced with Firefox, System, etc. #: ../bleachbit/Worker.py:300 #, python-format msgid "Please wait. Previewing %s." msgstr "" #: ../bleachbit/Update.py:75 msgid "New winapp2.ini was downloaded." msgstr "" #: ../bleachbit/Update.py:111 msgid "Update BleachBit" msgstr "" #: ../bleachbit/Update.py:116 msgid "A new version is available." msgstr "" #. TRANSLATORS: %s expands to version such as '0.8.4' or '0.8.5beta' or similar #: ../bleachbit/Update.py:124 #, python-format msgid "Update to version %s" msgstr "" #: ../bleachbit/CLI.py:123 #, python-format msgid "not a valid cleaner: %s" msgstr "" #. TRANSLATORS: This is the command line usage. Don't translate #. %prog, but do translate usage, options, cleaner, and option. #. More information about the command line is here #. http://bleachbit.sourceforge.net/documentation/command-line #: ../bleachbit/CLI.py:150 msgid "usage: %prog [options] cleaner.option1 cleaner.option2" msgstr "" #: ../bleachbit/CLI.py:153 msgid "list cleaners" msgstr "" #: ../bleachbit/CLI.py:155 msgid "delete files and make other permanent changes" msgstr "" #: ../bleachbit/CLI.py:157 msgid "show system information" msgstr "" #: ../bleachbit/CLI.py:159 msgid "preview files to be deleted and other changes" msgstr "" #: ../bleachbit/CLI.py:161 msgid "use options set in the graphical interface" msgstr "" #: ../bleachbit/CLI.py:163 msgid "output version information and exit" msgstr "" #: ../bleachbit/CLI.py:165 msgid "overwrite files to hide contents" msgstr "" #: ../bleachbit/GUI.py:144 msgid "Active" msgstr "" #. TRANSLATORS: %(cleaner) may be Firefox, System, etc. #. %(option) may be cache, logs, cookies, etc. #. %(warning) may be 'This option is really slow' #: ../bleachbit/GUI.py:176 #, python-format msgid "" "Warning regarding %(cleaner)s - %(option)s:\n" "\n" "%(warning)s" msgstr "" #: ../bleachbit/GUI.py:346 msgid "You must select an operation" msgstr "" #: ../bleachbit/GUI.py:369 ../bleachbit/GUI.py:384 msgid "Done." msgstr "" #: ../bleachbit/GUI.py:396 msgid "Program to clean unnecessary files" msgstr "" #: ../bleachbit/GUI.py:401 msgid "" "GNU General Public License version 3 or later.\n" "See http://www.gnu.org/licenses/gpl-3.0.txt" msgstr "" #. TRANSLATORS: Maintain the names of translators here. #. Launchpad does this automatically for translations #. typed in Launchpad. This is a special string shown #. in the 'About' box. #: ../bleachbit/GUI.py:407 msgid "translator-credits" msgstr "" "Launchpad Contributions:\n" " Serj Safarian https://launchpad.net/~safarian" #: ../bleachbit/GUI.py:420 msgid "System information" msgstr "" #: ../bleachbit/GUI.py:490 msgid "Choose files to shred" msgstr "" #: ../bleachbit/GUI.py:493 msgid "Choose folder to shred" msgstr "" #: ../bleachbit/GUI.py:581 msgid "Preview" msgstr "" #: ../bleachbit/GUI.py:631 msgid "_Shred Files" msgstr "" #: ../bleachbit/GUI.py:632 msgid "Sh_red Folders" msgstr "" #: ../bleachbit/GUI.py:633 msgid "_Wipe Free Space" msgstr "" #: ../bleachbit/GUI.py:634 msgid "S_hred Settings and Quit" msgstr "" #: ../bleachbit/GUI.py:635 msgid "_Quit" msgstr "" #: ../bleachbit/GUI.py:636 msgid "_File" msgstr "" #: ../bleachbit/GUI.py:638 msgid "_Edit" msgstr "" #: ../bleachbit/GUI.py:639 msgid "Help Contents" msgstr "" #: ../bleachbit/GUI.py:641 msgid "_Release Notes" msgstr "" #: ../bleachbit/GUI.py:643 msgid "_System Information" msgstr "" #: ../bleachbit/GUI.py:644 msgid "_About" msgstr "" #: ../bleachbit/GUI.py:645 msgid "_Help" msgstr "" #. TRANSLATORS: This is the preview button on the main window. It previews changes. #: ../bleachbit/GUI.py:669 msgctxt "button" msgid "Preview" msgstr "" #: ../bleachbit/GUI.py:672 msgid "Preview files in the selected operations (without deleting any files)" msgstr "" #. TRANSLATORS: This is the delete button on the main window. #. It makes permanent changes: usually deleting files, sometimes altering them. #: ../bleachbit/GUI.py:680 msgctxt "button" msgid "Delete" msgstr "" #: ../bleachbit/GUI.py:683 msgid "Delete files in the selected operations" msgstr "" #: ../bleachbit/GUI.py:769 msgid "Error when checking for updates: " msgstr "" #: ../bleachbit/GUI.py:800 msgid "" "Error loading the SQLite module: the antivirus software may be blocking it." msgstr "" bleachbit-2.0/po/ast.po0000644000175000017500000013565413245436307013164 0ustar hlehle# Asturian translation for bleachbit # Copyright (c) 2010 Rosetta Contributors and Canonical Ltd 2010 # This file is distributed under the same license as the bleachbit package. # FIRST AUTHOR , 2010. # msgid "" msgstr "" "Project-Id-Version: bleachbit\n" "Report-Msgid-Bugs-To: FULL NAME \n" "POT-Creation-Date: 2017-02-11 11:12-0700\n" "PO-Revision-Date: 2017-04-29 22:49+0000\n" "Last-Translator: enolp \n" "Language-Team: Asturian \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n != 1;\n" "X-Launchpad-Export-Date: 2017-12-22 18:36+0000\n" "X-Generator: Launchpad (build 18521)\n" #: ../cleaners/mc.xml ../cleaners/tortoisesvn.xml ../cleaners/vim.xml #: ../cleaners/safari.xml ../cleaners/links2.xml ../cleaners/seamonkey.xml #: ../cleaners/realplayer.xml ../cleaners/windows_defender.xml #: ../cleaners/d4x.xml ../cleaners/sqlite3.xml #: ../cleaners/internet_explorer.xml ../cleaners/libreoffice.xml #: ../cleaners/easytag.xml ../cleaners/bash.xml ../cleaners/nautilus.xml #: ../cleaners/octave.xml ../cleaners/elinks.xml ../cleaners/chromium.xml #: ../cleaners/google_chrome.xml msgid "History" msgstr "Historial" #: ../cleaners/mc.xml ../cleaners/tortoisesvn.xml ../cleaners/links2.xml #: ../cleaners/realplayer.xml ../cleaners/d4x.xml ../cleaners/libreoffice.xml #: ../cleaners/easytag.xml ../cleaners/nautilus.xml ../cleaners/gnome.xml #: ../bleachbit/Cleaner.py:349 ../bleachbit/Cleaner.py:423 #: ../bleachbit/Cleaner.py:432 msgid "Delete the usage history" msgstr "Desanicia l'historial d'usu" #: ../cleaners/gpodder.xml ../cleaners/hippo_opensim_viewer.xml #: ../cleaners/thumbnails.xml ../cleaners/safari.xml ../cleaners/emesene.xml #: ../cleaners/liferea.xml ../cleaners/seamonkey.xml ../cleaners/vuze.xml #: ../cleaners/yahoo_messenger.xml ../cleaners/pidgin.xml #: ../cleaners/adobe_reader.xml ../cleaners/evolution.xml #: ../cleaners/tremulous.xml ../cleaners/libreoffice.xml ../cleaners/xine.xml #: ../cleaners/nexuiz.xml ../cleaners/exaile.xml ../cleaners/opera.xml #: ../cleaners/amsn.xml ../cleaners/gftp.xml ../cleaners/miro.xml #: ../cleaners/beagle.xml ../cleaners/kde.xml ../cleaners/epiphany.xml #: ../cleaners/flash.xml ../cleaners/secondlife_viewer.xml ../cleaners/java.xml #: ../cleaners/chromium.xml ../cleaners/audacious.xml ../cleaners/rhythmbox.xml #: ../cleaners/google_chrome.xml ../cleaners/thunderbird.xml #: ../bleachbit/Cleaner.py:192 ../bleachbit/Cleaner.py:370 #: ../bleachbit/Cleaner.py:455 msgid "Cache" msgstr "Caché" #: ../cleaners/gpodder.xml ../cleaners/yum.xml #: ../cleaners/hippo_opensim_viewer.xml ../cleaners/thumbnails.xml #: ../cleaners/windows_explorer.xml ../cleaners/liferea.xml #: ../cleaners/vuze.xml ../cleaners/yahoo_messenger.xml ../cleaners/pidgin.xml #: ../cleaners/adobe_reader.xml ../cleaners/evolution.xml #: ../cleaners/libreoffice.xml ../cleaners/apt.xml ../cleaners/xine.xml #: ../cleaners/nexuiz.xml ../cleaners/exaile.xml ../cleaners/amsn.xml #: ../cleaners/gftp.xml ../cleaners/miro.xml ../cleaners/beagle.xml #: ../cleaners/kde.xml ../cleaners/flash.xml ../cleaners/secondlife_viewer.xml #: ../cleaners/java.xml ../cleaners/audacious.xml ../cleaners/rhythmbox.xml #: ../bleachbit/Cleaner.py:370 ../bleachbit/Cleaner.py:455 #: ../bleachbit/Cleaner.py:489 ../bleachbit/Cleaner.py:491 msgid "Delete the cache" msgstr "Desanicia la caché" #. TRANSLATORS: Vacuum is a verb. The term is jargon #. from the SQLite database. Microsoft Access uses #. the term 'Compact Database' (which you may translate #. instead). Another synonym is 'defragment.' #: ../cleaners/gpodder.xml ../cleaners/yum.xml ../cleaners/safari.xml #: ../cleaners/liferea.xml ../cleaners/chromium.xml #: ../cleaners/google_chrome.xml ../cleaners/thunderbird.xml #: ../bleachbit/Cleaner.py:214 ../bleachbit/Cleaner.py:360 #: ../bleachbit/Action.py:445 msgid "Vacuum" msgstr "Llimpiar" #: ../cleaners/gpodder.xml ../cleaners/yum.xml ../cleaners/safari.xml #: ../cleaners/liferea.xml ../cleaners/chromium.xml #: ../cleaners/google_chrome.xml ../cleaners/thunderbird.xml #: ../bleachbit/Cleaner.py:215 msgid "" "Clean database fragmentation to reduce space and improve speed without " "removing any data" msgstr "" "Llimpia la fragmentación de la base de datos p'amenorgar l'espaciu y " "ameyorar la velocidá ensin desaniciar dengún datu" #: ../cleaners/yum.xml ../cleaners/apt.xml msgid "Package manager" msgstr "Xestor de paquetes" #: ../cleaners/warzone2100.xml ../cleaners/hippo_opensim_viewer.xml #: ../cleaners/gl-117.xml ../cleaners/tremulous.xml ../cleaners/nexuiz.xml #: ../cleaners/secondlife_viewer.xml msgid "Game" msgstr "Xuegu" #: ../cleaners/warzone2100.xml ../cleaners/hippo_opensim_viewer.xml #: ../cleaners/teamviewer.xml ../cleaners/realplayer.xml ../cleaners/vuze.xml #: ../cleaners/yahoo_messenger.xml ../cleaners/amule.xml #: ../cleaners/easytag.xml ../cleaners/exaile.xml ../cleaners/screenlets.xml #: ../cleaners/gftp.xml ../cleaners/miro.xml ../cleaners/audacious.xml #: ../bleachbit/Cleaner.py:486 msgid "Logs" msgstr "Rexistros" #: ../cleaners/warzone2100.xml ../cleaners/hippo_opensim_viewer.xml #: ../cleaners/teamviewer.xml ../cleaners/realplayer.xml ../cleaners/vuze.xml #: ../cleaners/yahoo_messenger.xml ../cleaners/amule.xml ../cleaners/exaile.xml #: ../cleaners/screenlets.xml ../cleaners/gftp.xml ../cleaners/miro.xml #: ../cleaners/audacious.xml ../bleachbit/Cleaner.py:486 msgid "Delete the logs" msgstr "Desanicia los rexistros" #: ../cleaners/thumbnails.xml ../cleaners/windows_explorer.xml msgid "Thumbnails" msgstr "Miniatures" #: ../cleaners/thumbnails.xml msgid "Icons for files on the system" msgstr "Iconos pa los ficheros del sistema" #: ../cleaners/vim.xml ../cleaners/gedit.xml msgid "Editor" msgstr "Editor" #: ../cleaners/vim.xml msgid "" "Delete ~/.viminfo which includes file history, command history, and buffers" msgstr "" "Desanicia'l ~/.viminfo qu'inclúi l'historial de ficheros, comandos y búferes" #: ../cleaners/filezilla.xml ../cleaners/transmission.xml ../cleaners/vuze.xml #: ../cleaners/amule.xml ../cleaners/gftp.xml msgid "File transfer client" msgstr "Veceru de transferencia de ficheros" #: ../cleaners/filezilla.xml ../cleaners/paint.xml #: ../cleaners/windows_media_player.xml ../cleaners/windows_explorer.xml #: ../cleaners/teamviewer.xml ../cleaners/microsoft_office.xml #: ../cleaners/vlc.xml ../cleaners/adobe_reader.xml ../cleaners/winamp.xml #: ../cleaners/winzip.xml ../cleaners/winrar.xml ../cleaners/audacious.xml #: ../cleaners/wordpad.xml ../bleachbit/Cleaner.py:371 msgid "Most recently used" msgstr "Lo más usao apocayá" #: ../cleaners/filezilla.xml ../cleaners/windows_explorer.xml #: ../cleaners/gwenview.xml ../cleaners/adobe_reader.xml ../cleaners/gedit.xml #: ../cleaners/kde.xml ../cleaners/audacious.xml ../bleachbit/Cleaner.py:372 #: ../bleachbit/Cleaner.py:469 msgid "Delete the list of recently used documents" msgstr "Desanicia'l llistáu de documentos usaos apocayá" #: ../cleaners/skype.xml ../cleaners/emesene.xml #: ../cleaners/yahoo_messenger.xml ../cleaners/pidgin.xml ../cleaners/amsn.xml msgid "Chat client" msgstr "Veceru de charra" #: ../cleaners/skype.xml ../cleaners/hexchat.xml ../cleaners/emesene.xml #: ../cleaners/seamonkey.xml ../cleaners/yahoo_messenger.xml #: ../cleaners/pidgin.xml ../cleaners/amsn.xml msgid "Chat logs" msgstr "Rexistros de charres" #: ../cleaners/skype.xml ../cleaners/hexchat.xml ../cleaners/emesene.xml #: ../cleaners/seamonkey.xml ../cleaners/yahoo_messenger.xml #: ../cleaners/pidgin.xml ../cleaners/amsn.xml msgid "Delete the chat logs" msgstr "Desanicia los rexistros de les charres" #: ../cleaners/skype.xml msgid "Installers" msgstr "Instaladores" #: ../cleaners/skype.xml msgid "Delete cached patches and installers" msgstr "Desanicia los parches ya instaladores na caché" #: ../cleaners/hexchat.xml msgid "IRC client formerly known as XChat" msgstr "Veceru IRC conocíu enantes como XChat" #: ../cleaners/safari.xml ../cleaners/links2.xml ../cleaners/seamonkey.xml #: ../cleaners/konqueror.xml ../cleaners/internet_explorer.xml #: ../cleaners/opera.xml ../cleaners/epiphany.xml ../cleaners/elinks.xml #: ../cleaners/chromium.xml ../cleaners/google_chrome.xml #: ../bleachbit/Cleaner.py:226 msgid "Web browser" msgstr "Restolador web" #: ../cleaners/safari.xml ../cleaners/seamonkey.xml ../cleaners/opera.xml #: ../cleaners/epiphany.xml ../cleaners/chromium.xml #: ../cleaners/google_chrome.xml ../cleaners/thunderbird.xml #: ../bleachbit/Cleaner.py:193 msgid "Delete the web cache, which reduces time to display revisited pages" msgstr "" "Desanicia la caché web qu'amenorga'l tiempu p'amosar les páxines visitaes de " "nueves" #: ../cleaners/safari.xml ../cleaners/liferea.xml ../cleaners/seamonkey.xml #: ../cleaners/realplayer.xml ../cleaners/konqueror.xml #: ../cleaners/internet_explorer.xml ../cleaners/opera.xml #: ../cleaners/epiphany.xml ../cleaners/flash.xml ../cleaners/silverlight.xml #: ../cleaners/chromium.xml ../cleaners/google_chrome.xml #: ../cleaners/thunderbird.xml ../bleachbit/Cleaner.py:194 msgid "Cookies" msgstr "Cookies" #: ../cleaners/safari.xml ../cleaners/liferea.xml ../cleaners/seamonkey.xml #: ../cleaners/realplayer.xml ../cleaners/konqueror.xml #: ../cleaners/internet_explorer.xml ../cleaners/opera.xml #: ../cleaners/epiphany.xml ../cleaners/flash.xml ../cleaners/silverlight.xml #: ../cleaners/chromium.xml ../cleaners/google_chrome.xml #: ../cleaners/thunderbird.xml ../bleachbit/Cleaner.py:195 msgid "" "Delete cookies, which contain information such as web site preferences, " "authentication, and tracking identification" msgstr "" "Desanicia les cookies que contienen información como preferencies d'un sitiu " "web, autenticación ya identificación pa rastrexu" #: ../cleaners/safari.xml ../cleaners/konqueror.xml #: ../cleaners/internet_explorer.xml ../cleaners/opera.xml #: ../bleachbit/Cleaner.py:213 msgid "List of visited web pages" msgstr "Llistáu de páxines web visitaes" #. Torrent software can block a list of IP addresses, such as those that may belong to malware or anti-piracy organizations #: ../cleaners/transmission.xml msgid "Blocklists" msgstr "Llistaos de bloquéu" #: ../cleaners/transmission.xml ../cleaners/windows_defender.xml #: ../cleaners/beagle.xml ../cleaners/thunderbird.xml ../cleaners/deepscan.xml #: ../bleachbit/Cleaner.py:197 msgid "Delete the files" msgstr "Desanicia los ficheros" #: ../cleaners/transmission.xml msgid "Blocklists will need update to work." msgstr "Los llistaos de bloquéu precisen anovase pa funcionar" #: ../cleaners/transmission.xml msgid "Torrents" msgstr "Torrents" #: ../cleaners/transmission.xml msgid "Delete the torrents (just the metadata but not the files described)" msgstr "" "Desanicia los torrents (namái los datos meta y non los ficheros descritos)" #: ../cleaners/transmission.xml msgid "Statistics" msgstr "Estadístiques" #: ../cleaners/transmission.xml msgid "Delete the file" msgstr "Desanicia'l ficheru" #: ../cleaners/paint.xml ../cleaners/windows_media_player.xml #: ../cleaners/windows_explorer.xml ../cleaners/teamviewer.xml #: ../cleaners/microsoft_office.xml ../cleaners/vlc.xml ../cleaners/winamp.xml #: ../cleaners/winzip.xml ../cleaners/winrar.xml ../cleaners/wordpad.xml msgid "Delete the most recently used list" msgstr "Desanicia'l llistáu más usáu apocayá" #: ../cleaners/emesene.xml msgid "Delete the avatars and emoticons cache" msgstr "Desanicia la caché d'avatares y fustaxes" #: ../cleaners/windows_media_player.xml ../cleaners/realplayer.xml #: ../cleaners/vlc.xml ../cleaners/winamp.xml msgid "Media player" msgstr "Reproductor multimedia" #: ../cleaners/windows_explorer.xml ../cleaners/nautilus.xml msgid "File manager" msgstr "Xestor de ficheros" #: ../cleaners/windows_explorer.xml ../cleaners/gwenview.xml #: ../cleaners/gedit.xml ../cleaners/kde.xml ../bleachbit/Cleaner.py:468 #: ../bleachbit/Cleaner.py:663 msgid "Recent documents list" msgstr "Llistáu de documentos recientes" #: ../cleaners/windows_explorer.xml msgid "" "This option will reset pinned locations in Quick Access to their defaults." msgstr "Esta opción reafitará tolos allugamientos fixaos n'Accesu rápidu." #. In Windows 'Run' is the dialog in the Start menu #. In GNOME 'Run' is the dialog shown when typing ALT+F2' #: ../cleaners/windows_explorer.xml ../cleaners/gnome.xml msgid "Run" msgstr "Executar" #: ../cleaners/windows_explorer.xml ../cleaners/opera.xml ../cleaners/gnome.xml #: ../cleaners/google_toolbar.xml msgid "Search history" msgstr "Historial de guetes" #: ../cleaners/windows_explorer.xml ../cleaners/opera.xml ../cleaners/gnome.xml #: ../cleaners/google_toolbar.xml msgid "Delete the search history" msgstr "Desanicia l'historial de guetes" #: ../cleaners/windows_explorer.xml msgid "This will restart Windows Explorer." msgstr "Esto reaniciará l'esplorador de ficheros." #: ../cleaners/gl-117.xml ../cleaners/microsoft_office.xml #: ../cleaners/beagle.xml ../cleaners/secondlife_viewer.xml ../cleaners/x11.xml msgid "Debug logs" msgstr "Rexistros de depuración" #: ../cleaners/gl-117.xml ../cleaners/microsoft_office.xml #: ../cleaners/easytag.xml ../cleaners/beagle.xml #: ../cleaners/secondlife_viewer.xml ../cleaners/x11.xml msgid "Delete the debug logs" msgstr "Desanicia los rexistros de depuración" #: ../cleaners/google_earth.xml ../cleaners/winetricks.xml ../cleaners/vuze.xml #: ../cleaners/adobe_reader.xml ../cleaners/amule.xml ../cleaners/wine.xml #: ../cleaners/internet_explorer.xml ../cleaners/gimp.xml ../cleaners/kde.xml #: ../cleaners/deepscan.xml ../bleachbit/Cleaner.py:520 msgid "Temporary files" msgstr "Ficheros temporales" #: ../cleaners/google_earth.xml ../cleaners/winetricks.xml ../cleaners/vuze.xml #: ../cleaners/adobe_reader.xml ../cleaners/amule.xml ../cleaners/wine.xml #: ../cleaners/internet_explorer.xml ../cleaners/gimp.xml ../cleaners/kde.xml #: ../cleaners/deepscan.xml ../bleachbit/Cleaner.py:520 msgid "Delete the temporary files" msgstr "Desanicia los ficheros temporales" #: ../cleaners/seamonkey.xml ../cleaners/opera.xml ../bleachbit/Cleaner.py:201 msgid "Download history" msgstr "Historial de descargues" #: ../cleaners/seamonkey.xml ../cleaners/opera.xml ../bleachbit/Cleaner.py:201 msgid "List of files downloaded" msgstr "Llistáu de ficheros baxaos" #: ../cleaners/seamonkey.xml msgid "Delete the list of visited web pages" msgstr "Desanicia'l llistáu de páxines web visitaes" #: ../cleaners/vuze.xml ../cleaners/deepscan.xml ../bleachbit/Cleaner.py:190 msgid "Backup files" msgstr "Ficheros de respaldu" #: ../cleaners/vuze.xml ../cleaners/deepscan.xml ../bleachbit/Cleaner.py:191 msgid "Delete the backup files" msgstr "Desanicia los ficheros de respaldu" #: ../cleaners/konqueror.xml ../cleaners/opera.xml ../cleaners/chromium.xml msgid "Current session" msgstr "Sesión actual" #: ../cleaners/konqueror.xml ../cleaners/opera.xml ../cleaners/chromium.xml msgid "Delete the current session" msgstr "Desanicia la sesión actual" #: ../cleaners/konqueror.xml ../cleaners/opera.xml ../bleachbit/Cleaner.py:213 msgid "URL history" msgstr "Historial d'URL" #: ../cleaners/microsoft_office.xml ../cleaners/libreoffice.xml #: ../bleachbit/Cleaner.py:375 msgid "Office suite" msgstr "Suite ofimática" #: ../cleaners/windows_defender.xml msgid "Anti-virus" msgstr "Antivirus" #: ../cleaners/journald.xml msgid "System journals" msgstr "Diarios del sistema" #: ../cleaners/journald.xml msgid "Clean old system journals" msgstr "Llimpia los diarios vieyos del sistema" #: ../cleaners/adobe_reader.xml msgid "Document viewer" msgstr "Visor de documentos" #: ../cleaners/evolution.xml ../cleaners/thunderbird.xml msgid "Email client" msgstr "Veceru de corréu" #: ../cleaners/tremulous.xml msgid "Delete the list of game servers" msgstr "Desanicia'l llistáu de los sirvidores de xuegu" #: ../cleaners/sqlite3.xml ../cleaners/bash.xml ../cleaners/octave.xml msgid "Delete the command history" msgstr "Desanicia l'historial de comandos" #: ../cleaners/wine.xml msgid "Compatibility layer for Windows software" msgstr "Capa de compatibilidá pa software de Windows" #: ../cleaners/internet_explorer.xml ../cleaners/chromium.xml #: ../cleaners/google_chrome.xml ../bleachbit/Cleaner.py:202 msgid "Form history" msgstr "Historial de formularios" #: ../cleaners/internet_explorer.xml ../bleachbit/Cleaner.py:203 msgid "A history of forms entered in web sites and in the Search bar" msgstr "" "Un historial de los formularios introducíos nos sitios web y barres de gueta" #. This software edits metadata tags, such as title and artist, in audio files #: ../cleaners/easytag.xml msgid "Audio files tagger" msgstr "Etiquetador de ficheros d'audiu" #: ../cleaners/apt.xml msgid "Delete obsolete files" msgstr "Desanicia los ficheros obsoletos" #: ../cleaners/apt.xml msgid "Package lists" msgstr "Llistaos de paquetes" #: ../cleaners/xine.xml ../cleaners/miro.xml ../cleaners/flash.xml msgid "Multimedia viewer" msgstr "Visor multimedia" #: ../cleaners/recoll.xml ../cleaners/beagle.xml msgid "Search tool" msgstr "Ferramienta de gueta" #: ../cleaners/recoll.xml ../cleaners/beagle.xml ../cleaners/thunderbird.xml msgid "Index" msgstr "Índiz" #: ../cleaners/recoll.xml msgid "" "Delete the search index, a database of words and the files they contain" msgstr "" "Desanicia l'índiz de gueta, una base de datos de pallabres y los ficheros " "que contenga" #: ../cleaners/gimp.xml msgid "Graphics editor" msgstr "Editor de gráficos" #: ../cleaners/exaile.xml msgid "Downloaded podcasts" msgstr "Podcasts baxaos" #: ../cleaners/exaile.xml msgid "Delete downloaded podcasts" msgstr "Desanicia los podcasts baxaos" #: ../cleaners/bash.xml msgid "Shell" msgstr "Shell" #. TRANSLATORS: DOM = Document Object Model. #: ../cleaners/opera.xml ../cleaners/epiphany.xml ../cleaners/chromium.xml #: ../cleaners/google_chrome.xml ../bleachbit/Cleaner.py:199 msgid "DOM Storage" msgstr "Almacenamientu DOM" #: ../cleaners/opera.xml ../cleaners/epiphany.xml ../cleaners/chromium.xml #: ../cleaners/google_chrome.xml ../bleachbit/Cleaner.py:199 msgid "Delete HTML5 cookies" msgstr "Desanicia les cookies HTML5" #: ../cleaners/opera.xml ../cleaners/epiphany.xml ../cleaners/chromium.xml #: ../cleaners/google_chrome.xml ../cleaners/thunderbird.xml #: ../bleachbit/Cleaner.py:208 msgid "Passwords" msgstr "Contraseñes" #: ../cleaners/opera.xml ../cleaners/epiphany.xml ../cleaners/chromium.xml #: ../cleaners/google_chrome.xml ../cleaners/thunderbird.xml #: ../bleachbit/Cleaner.py:209 msgid "" "A database of usernames and passwords as well as a list of sites that should " "not store passwords" msgstr "" "Una base de datos de nomes d'usuariu y contraseñes amás d'un llistáu de " "sitios que nun deberíen atroxar contraseñes" #: ../cleaners/opera.xml ../cleaners/epiphany.xml ../cleaners/chromium.xml #: ../cleaners/google_chrome.xml ../cleaners/thunderbird.xml #: ../bleachbit/Cleaner.py:211 msgid "This option will delete your saved passwords." msgstr "Esta opción desaniciará les tos contraseñes guardaes." #: ../cleaners/nautilus.xml msgid "Custom folders will be reset." msgstr "Reafitaránse les carpetes personalizaes." #: ../cleaners/gnome.xml ../cleaners/kde.xml msgid "Desktop environment" msgstr "Entornu d'escritoriu" #: ../cleaners/screenlets.xml msgid "Widgets for the desktop" msgstr "Widgets pal escritoriu" #: ../cleaners/epiphany.xml msgid "Places" msgstr "Llugares" #: ../cleaners/epiphany.xml msgid "" "A database of URLs including bookmarks, favicons, and a history of visited " "web sites" msgstr "" "Una base de datos d'URLs qu'inclúi marcadores, favicons y un historial de " "sitios web visitaos" #: ../cleaners/epiphany.xml msgid "This option deletes all bookmarks." msgstr "Esta opción desanicia tolos marcadores." #: ../cleaners/winrar.xml msgid "File archiver" msgstr "Archivador de ficheros" #: ../cleaners/elinks.xml msgid "Delete the cookies, visited URLs, and search history" msgstr "Desanicia les cookies, URLs visitaes y l'historial de guetes" #: ../cleaners/chromium.xml ../cleaners/google_chrome.xml msgid "A history of forms entered in web sites" msgstr "Un historial de formularios introducíos nos sitios web" #: ../cleaners/chromium.xml ../cleaners/google_chrome.xml msgid "" "Delete the history which includes visited sites, downloads, and thumbnails" msgstr "" "Desanicia l'historial qu'inclúi los sitios visitaos, descargues y miniatures" #: ../cleaners/chromium.xml ../cleaners/google_chrome.xml msgid "Search engines" msgstr "Motores de gueta" #. 'Factory' means a search engine that is installed by default 'from the factory,' but this is different than a 'default search engine' https://lists.launchpad.net/launchpad-translators/msg00283.html #: ../cleaners/chromium.xml ../cleaners/google_chrome.xml msgid "" "Reset the search engine usage history and delete non-factory search engines, " "some of which are added automatically" msgstr "" "Reanicia l'historial d'usu de los motores de gueta y desanicia los motores " "de gueta que nun seyan de fábrica, dalcuando amestaos automáticamente" #: ../cleaners/audacious.xml msgid "Audio player" msgstr "Reproductor d'audiu" #: ../cleaners/rhythmbox.xml msgid "Database" msgstr "Base de datos" #: ../cleaners/rhythmbox.xml msgid "" "Delete the database, which contain information such as play count and last " "played" msgstr "" "Desanicia la base de datos que contién información como la cantidá de " "reproducciones y lo reproducío últimamente" #: ../cleaners/google_chrome.xml msgid "Session" msgstr "Sesión" #: ../cleaners/google_chrome.xml msgid "Delete the current and last sessions" msgstr "Desanicia les sesiones actuales y caberes" #: ../cleaners/x11.xml msgid "Windowing system" msgstr "Sistema de ventanes" #: ../cleaners/wordpad.xml msgid "Word processor" msgstr "Procesador de Words" #: ../cleaners/deepscan.xml msgid "Deep scan" msgstr "Escanéu fondu" #: ../cleaners/deepscan.xml msgid "Clean files widely scattered across the disk" msgstr "Llimpia los ficheros espardíos pel discu" #: ../cleaners/deepscan.xml msgid "Inspect the preview for any files you want to keep." msgstr "" "Inspeiciona la previsualización de cualesquier ficheru que quieras caltener." #: ../cleaners/deepscan.xml msgid "This option is slow." msgstr "Esta opción ye lenta." #: ../bleachbit.desktop msgid "Unnecessary file cleaner" msgstr "Llimpiador de ficheros innecesarios" #: ../bleachbit.desktop msgid "Free space and maintain privacy" msgstr "Llibera espaciu y caltién la privacidá" #: ../bleachbit/FileUtilities.py:668 msgid "" "There was at least one file on a file system that does not support advanced " "overwriting." msgstr "" "Hebo polo menos un ficheru nel sistema de ficheros que nun sofita la " "sobrescritura avanzada." #: ../bleachbit/Unix.py:574 #, python-format msgid "Executable not found: %s" msgstr "Nun s'alcontró l'executable: %s" #. TRANSLATORS: %s expands to a name such as 'Firefox' or 'System'. #: ../bleachbit/Unix.py:623 ../bleachbit/Worker.py:136 #, python-format msgid "" "%s cannot be cleaned because it is currently running. Close it, and try " "again." msgstr "" "Nun pue llimpiase %s porque anguaño ta n'execución. Zárralu y volvi tentalo." #: ../bleachbit/GuiBasic.py:112 msgid "Delete confirmation" msgstr "Confirmación de desaniciu" #: ../bleachbit/GuiBasic.py:122 msgid "" "Are you sure you want to permanently delete files according to the selected " "operations? The actual files that will be deleted may have changed since " "you ran the preview." msgstr "" "¿De xuru que quies desaniciar dafechu los ficheros según les operaciones " "esbillaes? Los ficheros actuales que se desaniciarán quiciabes camudaren " "dende qu'executares la previsualización" #: ../bleachbit/GuiBasic.py:125 msgid "Are you sure you want to permanently delete these files?" msgstr "¿De xuru que quies desaniciar dafechu estos ficheros?" #: ../bleachbit/GuiBasic.py:162 #, python-format msgid "" "Because you are running as root, please manually open this link in a web " "browser:\n" "%s" msgstr "" "Pola mor de que nun tas como root, por favor abri esti enllaz a mano nun " "restoaldor web:\n" "%s" #. TRANSLATORS: %s expands to www.bleachbit.org or similar #: ../bleachbit/GuiBasic.py:174 #, python-format msgid "Open web browser to %s?" msgstr "¿Abrir un restolador web pa %s?" #. TRANSLATORS: This is the label in the log indicating was #. skipped because it matches the whitelist #: ../bleachbit/Command.py:47 msgid "Skip" msgstr "Saltar" #. TRANSLATORS: This is the label in the log indicating will be #. deleted (for previews) or was actually deleted #: ../bleachbit/Command.py:77 msgid "Delete" msgstr "Desaniciar" #: ../bleachbit/Command.py:99 msgid "" "At least one file was locked by another process, so its contents could not " "be overwritten. It will be marked for deletion upon system reboot." msgstr "" "Otru procesu bloquió polo menos un ficheru, asina que'l so conteníu pudo non " "sobrescribise. Marcaráse pa desaniciu al reaniciar el sistema" #. TRANSLATORS: The file will be deleted when the #. system reboots #: ../bleachbit/Command.py:102 msgid "Mark for deletion" msgstr "Marcar pa desaniciar" #. TRANSLATORS: Parts of this file will be deleted #: ../bleachbit/Command.py:199 ../bleachbit/Command.py:233 #: ../bleachbit/Action.py:254 ../bleachbit/Action.py:267 #: ../bleachbit/Action.py:280 ../bleachbit/Action.py:293 #: ../bleachbit/Action.py:306 msgid "Clean file" msgstr "Llimpiar ficheru" #. TRANSLATORS: The file will be truncated to 0 bytes in length #: ../bleachbit/Command.py:275 msgid "Truncate" msgstr "Truncar" #: ../bleachbit/Command.py:317 msgid "Delete registry key" msgstr "Desanicia la clave del rexistru" #. TRANSLATORS: This is cleaner name for cleaners imported from winapp2.ini #: ../bleachbit/Winapp.py:44 msgid "Applications" msgstr "Aplicaciones" #. TRANSLATORS: This is cleaner name for cleaners imported #. from winapp2.ini #: ../bleachbit/Winapp.py:47 msgid "Internet" msgstr "Internet" #. TRANSLATORS: This is cleaner name for cleaners imported #. from winapp2.ini #: ../bleachbit/Winapp.py:50 msgid "Multimedia" msgstr "Multimedia" #. TRANSLATORS: This is cleaner name for cleaners imported #. from winapp2.ini #: ../bleachbit/Winapp.py:53 msgid "Utilities" msgstr "Utilidaes" #: ../bleachbit/Winapp.py:64 msgid "Games" msgstr "Xuegos" #: ../bleachbit/Winapp.py:162 msgid "Imported from winapp2.ini" msgstr "Importóse de winapp2.ini" #: ../bleachbit/Cleaner.py:197 msgid "Crash reports" msgstr "Informes de casques" #: ../bleachbit/Cleaner.py:204 msgid "Session restore" msgstr "Restauración de sesión" #: ../bleachbit/Cleaner.py:205 msgid "Loads the initial session after the browser closes or crashes" msgstr "Carga la sesión inicial dempués de zarrar o cascar el restolador" #: ../bleachbit/Cleaner.py:207 msgid "Site preferences" msgstr "Preferencies sitios" #: ../bleachbit/Cleaner.py:207 msgid "Settings for individual sites" msgstr "Axustes pa sitios individuales" #. TRANSLATORS: desktop entries are .desktop files in Linux that #. make up the application menu (the menu that shows BleachBit, #. Firefox, and others. The .desktop files also associate file #. types, so clicking on an .html file in Nautilus brings up #. Firefox. #. More information: #. http://standards.freedesktop.org/menu-spec/latest/index.html#introduction #: ../bleachbit/Cleaner.py:453 msgid "Broken desktop files" msgstr "Ficheros d'escritoriu rotos" #: ../bleachbit/Cleaner.py:454 msgid "Delete broken application menu entries and file associations" msgstr "" "Desanicia entraes rotes del menú d'aplicaciones y asociaciones de ficheros" #. TRANSLATORS: Localizations are files supporting specific #. languages, so applications appear in Spanish, etc. #: ../bleachbit/Cleaner.py:458 msgid "Localizations" msgstr "Traducciones" #: ../bleachbit/Cleaner.py:459 msgid "Delete files for unwanted languages" msgstr "Desanicia les llingües non queríes" #: ../bleachbit/Cleaner.py:461 msgid "Configure this option in the preferences." msgstr "Configura esta opción nes preferencies." #: ../bleachbit/Cleaner.py:467 msgid "Rotated logs" msgstr "Rexistros vieyos" #: ../bleachbit/Cleaner.py:467 msgid "Delete old system logs" msgstr "Desanicia los rexistros vieyos del sistema" #: ../bleachbit/Cleaner.py:470 msgid "Trash" msgstr "Basoria" #: ../bleachbit/Cleaner.py:470 msgid "Empty the trash" msgstr "Llimpia la basoria" #: ../bleachbit/Cleaner.py:476 ../bleachbit/Cleaner.py:627 #: ../bleachbit/Worker.py:184 msgid "Memory" msgstr "Memoria" #. TRANSLATORS: 'free' means 'unallocated' #: ../bleachbit/Cleaner.py:478 msgid "Wipe the swap and free memory" msgstr "Llimpiar y llibera la memoria d'intercambéu" #: ../bleachbit/Cleaner.py:480 msgid "This option is experimental and may cause system problems." msgstr "Esta opción ye esperimental y quiciabes cause problemes nel sistema." #: ../bleachbit/Cleaner.py:488 msgid "Memory dump" msgstr "Volquiáu de memoria" #: ../bleachbit/Cleaner.py:488 msgid "Delete the file memory.dmp" msgstr "Desanicia'l ficheru memory.dmp" #. TRANSLATORS: Prefetch is Microsoft Windows jargon. #: ../bleachbit/Cleaner.py:491 msgid "Prefetch" msgstr "Prefetch" #: ../bleachbit/Cleaner.py:493 msgid "Recycle bin" msgstr "Papelera" #: ../bleachbit/Cleaner.py:493 ../bleachbit/Cleaner.py:787 msgid "Empty the recycle bin" msgstr "Balera la papelera" #. TRANSLATORS: 'Update' is a noun, and 'Update uninstallers' is an option to delete #. the uninstallers for software updates. #: ../bleachbit/Cleaner.py:496 msgid "Update uninstallers" msgstr "Desinstaladores d'anovamientos" #: ../bleachbit/Cleaner.py:497 msgid "" "Delete uninstallers for Microsoft updates including hotfixes, service packs, " "and Internet Explorer updates" msgstr "" "Desanicia los desinstaladores pa los anovamientos de Microsoft qu'inclúin, " "igües, paquetes de servicios y anovamientos d'Internet Explorer" #: ../bleachbit/Cleaner.py:504 ../bleachbit/Cleaner.py:727 msgid "Clipboard" msgstr "Cartafueyu" #: ../bleachbit/Cleaner.py:505 msgid "" "The desktop environment's clipboard used for copy and paste operations" msgstr "" "El cartafueyu del entornu d'escritoriu úsase pa les operaciones de " "copiar/cortar y apegar" #. TRANSLATORS: "Custom" is an option allowing the user to specify which #. files and folders will be erased. #: ../bleachbit/Cleaner.py:512 ../bleachbit/GuiPreferences.py:66 msgid "Custom" msgstr "Personalizao" #: ../bleachbit/Cleaner.py:513 msgid "Delete user-specified files and folders" msgstr "Desanicia los ficheros y carpetes especificaos pol usuariu" #. TRANSLATORS: 'free' means 'unallocated' #: ../bleachbit/Cleaner.py:515 msgid "Free disk space" msgstr "Lliberar espaciu en discu" #. TRANSLATORS: 'free' means 'unallocated' #: ../bleachbit/Cleaner.py:517 msgid "Overwrite free disk space to hide deleted files" msgstr "" "Sobrescribe l'espaciu llibre en discu p'anubrir los ficheros desaniciaos" #: ../bleachbit/Cleaner.py:518 msgid "This option is very slow." msgstr "Esta opción ye perlenta." #: ../bleachbit/Cleaner.py:522 msgid "The system in general" msgstr "El sistema en xeneral" #: ../bleachbit/Cleaner.py:524 ../bleachbit/Cleaner.py:857 msgid "System" msgstr "Sistema" #. TRANSLATORS: 'Free' means 'unallocated.' #. %s expands to a path such as C:\ or /tmp/ #: ../bleachbit/Cleaner.py:735 ../bleachbit/Cleaner.py:890 #, python-format msgid "Overwrite free disk space %s" msgstr "Sobrescribe l'espaciu en discu de %s" #: ../bleachbit/RecognizeCleanerML.py:59 msgid "Security warning" msgstr "Alvertencia de seguranza" #: ../bleachbit/RecognizeCleanerML.py:72 msgid "" "These cleaner definitions are new or have changed. Malicious definitions can " "damage your system. If you do not trust these changes, delete the files or " "quit." msgstr "" "Estes definiciones del llimpiador son nueves o camudaron. Les definiciones " "malicioses puen dañar el to sistema. Si nun t'enfotes nestes camudancies, " "desanicia los ficheros o cola." #: ../bleachbit/RecognizeCleanerML.py:88 msgctxt "column_label" msgid "Delete" msgstr "Desaniciar" #: ../bleachbit/RecognizeCleanerML.py:93 msgctxt "column_label" msgid "Filename" msgstr "Nome de ficheru" #. TRANSLATORS: This indicates an error. The special keyword #. %(operation)s will be replaced by 'firefox' or 'opera' or #. some other cleaner ID. The special keyword %(msg)s will be #. replaced by a message such as 'Permission denied.' #: ../bleachbit/Worker.py:74 #, python-format msgid "Exception while running operation '%(operation)s': '%(msg)s'" msgstr "Esceición entrín s'executaba la operación «%(operation)s»: «%(msg)s»" #. TRANSLATORS: 'free' means 'unallocated' #: ../bleachbit/Worker.py:182 msgid "Please wait. Wiping free disk space." msgstr "Espera, por favor. Llimpiando l'espaciu llibre en discu." #. TRANSLATORS: %s is replaced with Firefox, System, etc. #: ../bleachbit/Worker.py:184 ../bleachbit/Worker.py:332 #, python-format msgid "Please wait. Cleaning %s." msgstr "Espera, por favor. Llimpiando %s." #: ../bleachbit/Worker.py:199 msgid "Please wait. Wiping file system metadata." msgstr "" "Espera, por favor. Llimpiando los datos meta del sistema de ficheros." #: ../bleachbit/Worker.py:202 msgid "Please wait. Cleaning up after wiping file system metadata." msgstr "" "Espera, por favor. Llimpiando tres desaniciar los datos meta del sistema de " "ficheros." #: ../bleachbit/Worker.py:205 #, python-format msgid "About %d minute remaining." msgid_plural "About %d minutes remaining." msgstr[0] "Sobro %d minutu restante." msgstr[1] "Sobro %d minutos restantes." #. TRANSLATORS: This refers to disk space that was #. really recovered (in other words, not a preview) #: ../bleachbit/Worker.py:272 #, python-format msgid "Disk space recovered: %s" msgstr "Espaciu recuperáu en discu: %s" #. TRANSLATORS: This refers to a preview (no real #. changes were made yet) #: ../bleachbit/Worker.py:276 #, python-format msgid "Disk space to be recovered: %s" msgstr "Espaciu pa recuperar en discu: %s" #. TRANSLATORS: This refers to the number of files really #. deleted (in other words, not a preview). #: ../bleachbit/Worker.py:281 #, python-format msgid "Files deleted: %d" msgstr "Ficheros desaniciaos: %d" #. TRANSLATORS: This refers to the number of files that #. would be deleted (in other words, simply a preview). #: ../bleachbit/Worker.py:285 #, python-format msgid "Files to be deleted: %d" msgstr "Ficheros pa desaniciar: %d" #: ../bleachbit/Worker.py:288 #, python-format msgid "Special operations: %d" msgstr "Operaciones especiales: %d" #: ../bleachbit/Worker.py:291 #, python-format msgid "Errors: %d" msgstr "Fallos: %d" #. TRANSLATORS: The "deep scan" feature searches over broad #. areas of the file system such as the user's whole home directory #. or all the system executables. #: ../bleachbit/Worker.py:306 msgid "Please wait. Running deep scan." msgstr "Espera, por favor. Executando l'escanéu fondu." #. TRANSLATORS: %s is replaced with Firefox, System, etc. #: ../bleachbit/Worker.py:335 #, python-format msgid "Please wait. Previewing %s." msgstr "Espera, por favor. Previsualizando %s." #: ../bleachbit/Update.py:80 msgid "New winapp2.ini was downloaded." msgstr "Baxóse un winapp2.ini nuevu." #: ../bleachbit/Update.py:125 msgid "Update BleachBit" msgstr "Anovar BleachBit" #: ../bleachbit/Update.py:130 msgid "A new version is available." msgstr "Hai disponible una versión nueva." #. TRANSLATORS: %s expands to version such as '0.8.4' or '0.8.5beta' or #. similar #: ../bleachbit/Update.py:139 #, python-format msgid "Update to version %s" msgstr "Anovar a la versión %s" #: ../bleachbit/Update.py:164 #, python-format msgid "" "Error when opening a network connection to %s to check for updates. Please " "verify the network is working." msgstr "" "Fallu al abrir una conexón de rede a %s pa comprobar anovamientos. Verifica " "que la rede tea funcionando, por favor." #: ../bleachbit/CLI.py:106 #, python-format msgid "not a valid cleaner: %s" msgstr "nun ye un llimpiador válidu: %s" #. TRANSLATORS: This is the command line usage. Don't translate #. %prog, but do translate usage, options, cleaner, and option. #. More information about the command line is here #. https://www.bleachbit.org/documentation/command-line #: ../bleachbit/CLI.py:133 msgid "usage: %prog [options] cleaner.option1 cleaner.option2" msgstr "usu: %prog [opciones] opción1.llimpiador opción2.llimpiador" #: ../bleachbit/CLI.py:136 msgid "list cleaners" msgstr "Llista los llimpiadores" #. TRANSLATORS: predefined cleaners are for applications, such as Firefox and Flash. #. This is different than cleaning an arbitrary file, such as a #. spreadsheet on the desktop. #: ../bleachbit/CLI.py:141 msgid "run cleaners to delete files and make other permanent changes" msgstr "" "Executa los llimpiadores pa desaniciar ficheros y facer otres camudancies " "permanentes" #: ../bleachbit/CLI.py:144 msgid "shred specific files or folders" msgstr "esmigayar los ficheros o carpetes especificaos" #: ../bleachbit/CLI.py:146 msgid "show system information" msgstr "Amuesa la información del sistema" #: ../bleachbit/CLI.py:148 msgid "launch the graphical interface" msgstr "Llanza la interfaz gráfica" #: ../bleachbit/CLI.py:152 msgid "do not prompt for administrator privileges" msgstr "Nun suxer los privilexos alministrativos" #: ../bleachbit/CLI.py:157 msgid "preview files to be deleted and other changes" msgstr "Previsualiza los ficheros pa desaniciar y otres camudancies" #: ../bleachbit/CLI.py:161 msgid "use options set in the graphical interface" msgstr "Usa les opciones afitaes na interfaz gráfica" #: ../bleachbit/CLI.py:164 msgid "update winapp2.ini, if a new version is available" msgstr "Anueva winapp2.ini si hai disponible una versión nueva" #: ../bleachbit/CLI.py:166 msgid "output version information and exit" msgstr "Amuesa la información de la versión y cola" #: ../bleachbit/CLI.py:168 msgid "overwrite files to hide contents" msgstr "Sobrescribe los ficheros p'anubrir los conteníos" #. TRANSLATORS: this is the context menu #: ../bleachbit/Action.py:382 ../bleachbit/GUI.py:632 msgid "Clean" msgstr "Llimpiar" #: ../bleachbit/Action.py:418 #, python-format msgid "Run external command: %s" msgstr "Executar comandu esternu: %s" #: ../bleachbit/GUI.py:135 ../bleachbit/GuiPreferences.py:296 msgid "Name" msgstr "Nome" #: ../bleachbit/GUI.py:143 msgid "Active" msgstr "Activu" #. TRANSLATORS: Size is the label for the column that shows how #. much space an option would clean or did clean #: ../bleachbit/GUI.py:155 msgid "Size" msgstr "Tamañu" #. TRANSLATORS: %(cleaner) may be Firefox, System, etc. #. %(option) may be cache, logs, cookies, etc. #. %(warning) may be 'This option is really slow' #: ../bleachbit/GUI.py:186 #, python-format msgid "" "Warning regarding %(cleaner)s - %(option)s:\n" "\n" "%(warning)s" msgstr "" "Alvertencia tocante a %(cleaner)s - %(option)s:\n" "\n" "%(warning)s" #: ../bleachbit/GUI.py:372 msgid "You must select an operation" msgstr "Has esbillar una operación" #: ../bleachbit/GUI.py:391 ../bleachbit/GUI.py:413 msgid "Done." msgstr "Fecho." #: ../bleachbit/GUI.py:426 msgid "Program to clean unnecessary files" msgstr "Programa pa llimpiar ficheros innecesarios" #: ../bleachbit/GUI.py:436 msgid "" "GNU General Public License version 3 or later.\n" "See http://www.gnu.org/licenses/gpl-3.0.txt" msgstr "" "Llicencia Pública Xeneral de la GNU versión 3 o posterior. \n" "Mira http://www.gnu.org/licenses/gpl-3.0.txt" #. TRANSLATORS: Maintain the names of translators here. #. Launchpad does this automatically for translations #. typed in Launchpad. This is a special string shown #. in the 'About' box. #: ../bleachbit/GUI.py:442 msgid "translator-credits" msgstr "" "Launchpad Contributions:\n" " Xuacu Saturio https://launchpad.net/~xuacusk8\n" " enolp https://launchpad.net/~enolp" #: ../bleachbit/GUI.py:454 msgid "System information" msgstr "Información del sistema" #: ../bleachbit/GUI.py:527 msgid "Choose files to shred" msgstr "Escoyer ficheros a esmigayar" #: ../bleachbit/GUI.py:530 msgid "Choose folder to shred" msgstr "Escoyer carpeta a esmigayar" #: ../bleachbit/GUI.py:594 ../bleachbit/GuiPreferences.py:197 #: ../bleachbit/GuiPreferences.py:326 ../bleachbit/GuiPreferences.py:367 msgid "Choose a folder" msgstr "Escueyi una carpeta" #. TRANSLATORS: this is the context menu #: ../bleachbit/GUI.py:627 msgid "Preview" msgstr "Previsualizar" #: ../bleachbit/GUI.py:734 msgid "_Shred Files" msgstr "_Destruyir ficheros" #: ../bleachbit/GUI.py:736 msgid "Sh_red Folders" msgstr "Des_truyir carpetes" #: ../bleachbit/GUI.py:738 msgid "_Wipe Free Space" msgstr "_Llimpiar l'espaciu llibre" #: ../bleachbit/GUI.py:740 msgid "S_hred Settings and Quit" msgstr "De_struyir axustes y colar" #: ../bleachbit/GUI.py:742 msgid "_Quit" msgstr "_Colar" #: ../bleachbit/GUI.py:744 msgid "_File" msgstr "_Ficheru" #: ../bleachbit/GUI.py:746 ../bleachbit/GuiPreferences.py:58 msgid "Preferences" msgstr "Preferencies" #: ../bleachbit/GUI.py:747 msgid "_Edit" msgstr "_Editar" #: ../bleachbit/GUI.py:748 msgid "Help Contents" msgstr "Conteníos d'ayuda" #: ../bleachbit/GUI.py:751 msgid "_Release Notes" msgstr "Notes de _llanzamientu" #: ../bleachbit/GUI.py:754 msgid "_System Information" msgstr "Información del _sistema" #: ../bleachbit/GUI.py:757 msgid "_About" msgstr "_Tocante a" #: ../bleachbit/GUI.py:758 msgid "_Help" msgstr "Ay_uda" #: ../bleachbit/GUI.py:783 msgctxt "button" msgid "Preview" msgstr "Previsualizar" #: ../bleachbit/GUI.py:788 msgid "Preview files in the selected operations (without deleting any files)" msgstr "" "Previsualiza los ficheros nes opciones esbillaes (ensin desaniciar dengún)" #: ../bleachbit/GUI.py:798 msgctxt "button" msgid "Clean" msgstr "Llimpiar" #: ../bleachbit/GUI.py:802 msgid "Clean files in the selected operations" msgstr "Llimipia los ficheros nes operaciones esbillaes" #: ../bleachbit/GUI.py:893 msgid "Error when checking for updates: " msgstr "Fallu al comprobar anovamientos: " #: ../bleachbit/GUI.py:932 msgid "" "Error loading the SQLite module: the antivirus software may be blocking it." msgstr "" "Fallu cargando'l módulu de SQLite: quiciabes el software antivirus tea " "bloquiándolu." #: ../bleachbit/GUI.py:935 msgid "" "You are running BleachBit with administrative privileges for cleaning shared " "parts of the system, and references to the user profile folder will clean " "only the root account." msgstr "" "Tas executando BleachBit con privilexos alministrativos pa llimpiar les " "partes compartíes del sistema y les referencies a la carpeta del perfil " "d'usuariu namái llimparán la cuenta root." #: ../bleachbit/GUI.py:940 msgid "" "Run BleachBit with administrator privileges to improve the accuracy of " "overwriting the contents of files." msgstr "" "Executa BleachBit con privilexos alministrativos p'ameyorar la precisión de " "la sobrescritura del conteníu de los ficheros." #: ../bleachbit/GuiPreferences.py:64 msgid "General" msgstr "Xeneral" #: ../bleachbit/GuiPreferences.py:67 msgid "Drives" msgstr "Unidaes" #: ../bleachbit/GuiPreferences.py:70 msgid "Languages" msgstr "Llingües" #: ../bleachbit/GuiPreferences.py:72 msgid "Whitelist" msgstr "Llistáu blancu" #: ../bleachbit/GuiPreferences.py:117 msgid "Check periodically for software updates via the Internet" msgstr "Comprobar davezu anovamientos de software per internet" #: ../bleachbit/GuiPreferences.py:122 msgid "" "If an update is found, you will be given the option to view information " "about it. Then, you may manually download and install the update." msgstr "" "Si s'alcuentra un anovamientu, darásete la opción de ver información tocante " "a elli. Darréu, podrás baxar ya instalar l'anovamientu." #: ../bleachbit/GuiPreferences.py:128 msgid "Check for new beta releases" msgstr "Comprobar versiones beta nueves" #: ../bleachbit/GuiPreferences.py:137 msgid "Download and update cleaners from community (winapp2.ini)" msgstr "Baxar y anovar dende la comunidá los llimpiadores (winapp2.ini)" #. TRANSLATORS: This means to hide cleaners which would do #. nothing. For example, if Firefox were never used on #. this system, this option would hide Firefox to simplify #. the list of cleaners. #: ../bleachbit/GuiPreferences.py:151 msgid "Hide irrelevant cleaners" msgstr "Anubrir llimpiadores irrelevantes" #. TRANSLATORS: Overwriting is the same as shredding. It is a way #. to prevent recovery of the data. You could also translate #. 'Shred files to prevent recovery.' #: ../bleachbit/GuiPreferences.py:159 msgid "Overwrite contents of files to prevent recovery" msgstr "Sobrescribe'l conteníu de los ficheros pa evitar la recuperación" #: ../bleachbit/GuiPreferences.py:163 msgid "" "Overwriting is ineffective on some file systems and with certain BleachBit " "operations. Overwriting is significantly slower." msgstr "" "El sobrescribir ye ineficaz en dellos sistemes de ficheros y con ciertes " "operaciones de BleachBit, amás d'enforma más lento." #: ../bleachbit/GuiPreferences.py:166 msgid "Start BleachBit with computer" msgstr "Aniciar BleachBit col ordenador" #: ../bleachbit/GuiPreferences.py:172 msgid "Exit after cleaning" msgstr "Colar dempués de llimpiar" #: ../bleachbit/GuiPreferences.py:178 msgid "Confirm before delete" msgstr "Confirmar enantes de desaniciar" #: ../bleachbit/GuiPreferences.py:186 msgid "Use IEC sizes (1 KiB = 1024 bytes) instead of SI (1 kB = 1000 bytes)" msgstr "" "Usar tamaños de la IEC (1 KiB = 1024 bytes) en cuentes del SI (1 kB = 1000 " "bytes)" #: ../bleachbit/GuiPreferences.py:221 msgid "" "Choose a writable folder for each drive for which to overwrite free space." msgstr "" "Escueyi una carpeta pa cada preséu na que se puea escribir y porder usala pa " "sobrescribir l'espaciu llibre." #. TRANSLATORS: In the preferences dialog, this button adds a path to #. the list of paths #: ../bleachbit/GuiPreferences.py:243 msgctxt "button" msgid "Add" msgstr "Amestar" #. TRANSLATORS: In the preferences dialog, this button removes a path #. from the list of paths #: ../bleachbit/GuiPreferences.py:247 ../bleachbit/GuiPreferences.py:458 msgctxt "button" msgid "Remove" msgstr "Desaniciar" #: ../bleachbit/GuiPreferences.py:272 msgid "All languages will be deleted except those checked." msgstr "Desaniciaránse toles llingües quitante les conseñaes." #: ../bleachbit/GuiPreferences.py:288 msgid "Preserve" msgstr "Caltener" #: ../bleachbit/GuiPreferences.py:292 msgid "Code" msgstr "Códigu" #: ../bleachbit/GuiPreferences.py:313 ../bleachbit/GuiPreferences.py:354 msgid "Choose a file" msgstr "Escueyi un ficheru" #: ../bleachbit/GuiPreferences.py:320 ../bleachbit/GuiPreferences.py:361 #: ../bleachbit/GuiPreferences.py:405 msgid "File" msgstr "Ficheru" #: ../bleachbit/GuiPreferences.py:334 ../bleachbit/GuiPreferences.py:375 #: ../bleachbit/GuiPreferences.py:407 msgid "Folder" msgstr "Carpeta" #: ../bleachbit/GuiPreferences.py:417 msgid "Theses paths will not be deleted or modified." msgstr "Nun se desaniciarán o modificarán estos caminos." #: ../bleachbit/GuiPreferences.py:420 msgid "These locations can be selected for deletion." msgstr "Estos allugamientos puen esbillase pa desanicialos." #: ../bleachbit/GuiPreferences.py:428 msgid "Type" msgstr "Triba" #. TRANSLATORS: In the tree view "Path" is used generically to refer to a #. file, a folder, or a pattern describing either #: ../bleachbit/GuiPreferences.py:434 msgid "Path" msgstr "Camín" #: ../bleachbit/GuiPreferences.py:446 msgctxt "button" msgid "Add file" msgstr "Amestar ficheru" #: ../bleachbit/GuiPreferences.py:452 msgctxt "button" msgid "Add folder" msgstr "Amestar carpeta" bleachbit-2.0/po/be.po0000644000175000017500000007342413245436307012757 0ustar hlehle# Belarusian translation for bleachbit # Copyright (c) 2009 Rosetta Contributors and Canonical Ltd 2009 # This file is distributed under the same license as the bleachbit package. # FIRST AUTHOR , 2009. # msgid "" msgstr "" "Project-Id-Version: bleachbit\n" "Report-Msgid-Bugs-To: FULL NAME \n" "POT-Creation-Date: 2009-10-16 08:39-0600\n" "PO-Revision-Date: 2009-10-16 18:12+0000\n" "Last-Translator: Iryna Nikanchuk \n" "Language-Team: Belarusian \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-Launchpad-Export-Date: 2009-10-16 20:24+0000\n" "X-Generator: Launchpad (build Unknown)\n" #: ../cleaners/tremulous.xml ../cleaners/chromium.xml ../cleaners/miro.xml #: ../cleaners/audacious.xml ../cleaners/xine.xml ../cleaners/kde.xml #: ../cleaners/pidgin.xml ../cleaners/seamonkey.xml ../cleaners/liferea.xml #: ../cleaners/beagle.xml ../cleaners/opera.xml ../cleaners/rhythmbox.xml #: ../cleaners/epiphany.xml ../cleaners/transmission.xml #: ../cleaners/nexuiz.xml ../cleaners/hippo_opensim_viewer.xml #: ../cleaners/vuze.xml ../cleaners/evolution.xml ../cleaners/exaile.xml #: ../cleaners/google_chrome.xml ../cleaners/emesene.xml ../cleaners/amsn.xml #: ../cleaners/thumbnails.xml ../cleaners/java.xml ../cleaners/flash.xml #: ../cleaners/adobe_reader.xml ../cleaners/gftp.xml ../cleaners/gpodder.xml #: ../cleaners/secondlife_viewer.xml ../bleachbit/Cleaner.py:185 #: ../bleachbit/Cleaner.py:286 ../bleachbit/Cleaner.py:346 #: ../bleachbit/Cleaner.py:389 msgid "Cache" msgstr "Кэш" #: ../cleaners/tremulous.xml msgid "Delete the list of game servers" msgstr "Выдаліць сьпіс сэрвераў" #: ../cleaners/tremulous.xml ../cleaners/gl-117.xml ../cleaners/nexuiz.xml #: ../cleaners/hippo_opensim_viewer.xml ../cleaners/secondlife_viewer.xml msgid "Game" msgstr "Гульня" #: ../cleaners/yum.xml ../cleaners/chromium.xml ../cleaners/liferea.xml #: ../cleaners/google_chrome.xml ../cleaners/gpodder.xml #: ../bleachbit/Cleaner.py:194 msgid "" "Clean database fragmentation to reduce space and improve speed without " "removing any data" msgstr "" "Выдаліць фрагмэнтацыю базы даньняў, каб павялічыць вольную прастору і " "хуткасьць, без выдаленьня даньняў" #: ../cleaners/yum.xml ../cleaners/miro.xml ../cleaners/audacious.xml #: ../cleaners/xine.xml ../cleaners/kde.xml ../cleaners/pidgin.xml #: ../cleaners/liferea.xml ../cleaners/beagle.xml ../cleaners/rhythmbox.xml #: ../cleaners/transmission.xml ../cleaners/nexuiz.xml ../cleaners/apt.xml #: ../cleaners/hippo_opensim_viewer.xml ../cleaners/vuze.xml #: ../cleaners/evolution.xml ../cleaners/exaile.xml ../cleaners/amsn.xml #: ../cleaners/thumbnails.xml ../cleaners/java.xml ../cleaners/flash.xml #: ../cleaners/adobe_reader.xml ../cleaners/gftp.xml ../cleaners/gpodder.xml #: ../cleaners/secondlife_viewer.xml ../bleachbit/Cleaner.py:286 #: ../bleachbit/Cleaner.py:346 ../bleachbit/Cleaner.py:389 #: ../bleachbit/Cleaner.py:407 ../bleachbit/Cleaner.py:409 msgid "Delete the cache" msgstr "Выдаліць кэш" #. TRANSLATORS: Vacuum is a verb. The term is jargon #. from the SQLite database. Microsoft Access uses #. the term 'Compact Database' (which you may translate #. instead). Another synonym is 'defragment.' #: ../cleaners/yum.xml ../cleaners/chromium.xml ../cleaners/liferea.xml #: ../cleaners/google_chrome.xml ../cleaners/gpodder.xml #: ../bleachbit/Action.py:223 ../bleachbit/Cleaner.py:194 #: ../bleachbit/Cleaner.py:277 msgid "Vacuum" msgstr "Дэфрагментаваць" #: ../cleaners/chromium.xml ../cleaners/seamonkey.xml ../cleaners/liferea.xml #: ../cleaners/opera.xml ../cleaners/epiphany.xml #: ../cleaners/google_chrome.xml ../cleaners/flash.xml #: ../cleaners/realplayer.xml ../bleachbit/Cleaner.py:186 msgid "Cookies" msgstr "Cookies" #: ../cleaners/chromium.xml ../cleaners/opera.xml msgid "Current session" msgstr "Бягучы сэанс" #: ../cleaners/chromium.xml ../cleaners/seamonkey.xml ../cleaners/liferea.xml #: ../cleaners/opera.xml ../cleaners/epiphany.xml #: ../cleaners/google_chrome.xml ../cleaners/flash.xml #: ../cleaners/realplayer.xml ../bleachbit/Cleaner.py:186 msgid "" "Delete cookies, which contain information such as web site preferences, " "authentication, and tracking identification" msgstr "" #: ../cleaners/chromium.xml ../cleaners/opera.xml msgid "Delete the current session" msgstr "Выдаліць бягучы сэанс" #: ../cleaners/chromium.xml ../cleaners/google_chrome.xml msgid "" "Delete the history which includes visited sites, downloads, and thumbnails" msgstr "" "Выдаліць гісторыю, якая зьмяшчае наведаныя старонкі, загрузкі ды закладкі" #: ../cleaners/chromium.xml ../cleaners/seamonkey.xml ../cleaners/opera.xml #: ../cleaners/epiphany.xml ../cleaners/google_chrome.xml #: ../bleachbit/Cleaner.py:185 msgid "Delete the web cache, which reduces time to display revisited pages" msgstr "" "Выдаліць вэб-кэш, які памяньшае час адлюстраваньня паўторна наведваемых " "старонак" #: ../cleaners/chromium.xml ../cleaners/d4x.xml ../cleaners/vim.xml #: ../cleaners/mc.xml ../cleaners/seamonkey.xml ../cleaners/google_chrome.xml #: ../cleaners/nautilus.xml ../cleaners/bash.xml ../cleaners/links2.xml #: ../cleaners/elinks.xml msgid "History" msgstr "Гісторыя" #: ../cleaners/chromium.xml ../cleaners/seamonkey.xml ../cleaners/opera.xml #: ../cleaners/epiphany.xml ../cleaners/google_chrome.xml #: ../cleaners/links2.xml ../cleaners/elinks.xml ../bleachbit/Cleaner.py:207 msgid "Web browser" msgstr "Гартач Сеціва" #: ../cleaners/d4x.xml ../cleaners/mc.xml ../cleaners/nautilus.xml #: ../cleaners/gnome.xml ../cleaners/links2.xml ../bleachbit/Cleaner.py:271 #: ../bleachbit/Cleaner.py:337 msgid "Delete the usage history" msgstr "Выдаліць гісторыю ўжываньня" #: ../cleaners/vim.xml msgid "" "Delete ~/.viminfo which includes file history, command history, and buffers" msgstr "" "Выдаліць ~/.viminfo які месьціць файлавую гісторыю, гісторыю загадаў і буфэры" #: ../cleaners/vim.xml ../cleaners/gedit.xml msgid "Editor" msgstr "Рэдактар" #: ../cleaners/miro.xml ../cleaners/audacious.xml #: ../cleaners/hippo_opensim_viewer.xml ../cleaners/vuze.xml #: ../cleaners/exaile.xml ../cleaners/gftp.xml ../cleaners/amule.xml #: ../bleachbit/Cleaner.py:406 msgid "Delete the logs" msgstr "Выдаліць дзёньнікі" #: ../cleaners/miro.xml ../cleaners/audacious.xml #: ../cleaners/hippo_opensim_viewer.xml ../cleaners/vuze.xml #: ../cleaners/exaile.xml ../cleaners/easytag.xml ../cleaners/gftp.xml #: ../cleaners/amule.xml ../bleachbit/Cleaner.py:406 msgid "Logs" msgstr "Дзёньнікі" #: ../cleaners/miro.xml ../cleaners/xine.xml ../cleaners/flash.xml msgid "Multimedia viewer" msgstr "Аглядальнік мультымедыя" #: ../cleaners/gl-117.xml ../cleaners/beagle.xml ../cleaners/x11.xml #: ../cleaners/secondlife_viewer.xml msgid "Debug logs" msgstr "Дэбагавыя дзёньнікі" #: ../cleaners/gl-117.xml ../cleaners/beagle.xml ../cleaners/x11.xml #: ../cleaners/easytag.xml ../cleaners/secondlife_viewer.xml msgid "Delete the debug logs" msgstr "Выдаліць дэбагавыя дзёньнікі" #: ../cleaners/audacious.xml ../cleaners/kde.xml ../cleaners/filezilla.xml #: ../cleaners/gwenview.xml ../cleaners/gedit.xml ../cleaners/adobe_reader.xml #: ../bleachbit/Cleaner.py:287 ../bleachbit/Cleaner.py:398 msgid "Delete the list of recently used documents" msgstr "Выдаліць сьпіс нядаўна ўжытых дакумэнтаў" #: ../cleaners/audacious.xml ../cleaners/filezilla.xml #: ../cleaners/adobe_reader.xml ../bleachbit/Cleaner.py:287 msgid "Most recently used" msgstr "Апошнія ўжытыя" #: ../cleaners/kde.xml ../cleaners/vuze.xml ../cleaners/deepscan.xml #: ../cleaners/gimp.xml ../cleaners/google_earth.xml #: ../cleaners/adobe_reader.xml ../cleaners/amule.xml #: ../cleaners/winetricks.xml ../cleaners/wine.xml ../bleachbit/Cleaner.py:415 msgid "Delete the temporary files" msgstr "Выдаліць часовыя файлы" #: ../cleaners/kde.xml ../cleaners/gwenview.xml ../cleaners/gedit.xml #: ../bleachbit/Cleaner.py:398 msgid "Recent documents list" msgstr "Сьпіс апошніх дакумэнтаў" #: ../cleaners/kde.xml ../cleaners/vuze.xml ../cleaners/deepscan.xml #: ../cleaners/gimp.xml ../cleaners/google_earth.xml #: ../cleaners/adobe_reader.xml ../cleaners/amule.xml #: ../cleaners/winetricks.xml ../cleaners/wine.xml ../bleachbit/Cleaner.py:415 msgid "Temporary files" msgstr "Часовыя файлы" #: ../cleaners/pidgin.xml ../cleaners/xchat.xml ../cleaners/emesene.xml #: ../cleaners/amsn.xml msgid "Chat client" msgstr "Кліенты для гутарак" #: ../cleaners/pidgin.xml ../cleaners/seamonkey.xml ../cleaners/xchat.xml #: ../cleaners/emesene.xml ../cleaners/amsn.xml ../cleaners/skype.xml msgid "Chat logs" msgstr "Дзёньнікі гутарак" #: ../cleaners/pidgin.xml ../cleaners/seamonkey.xml ../cleaners/xchat.xml #: ../cleaners/emesene.xml ../cleaners/amsn.xml ../cleaners/skype.xml msgid "Delete the chat logs" msgstr "Выдаліць дзёньнікі гутарак" #: ../cleaners/seamonkey.xml msgid "Delete the list of visited web pages" msgstr "Выдаліць сьпіс наведаных вэб-старонак" #: ../cleaners/beagle.xml msgid "Delete the search indexes" msgstr "Выдаліць пошукавыя індэксы" #: ../cleaners/beagle.xml msgid "Search indexes" msgstr "Пошукавыя індэксы" #: ../cleaners/beagle.xml ../cleaners/recoll.xml msgid "Search tool" msgstr "Прылады пошуку" #: ../cleaners/filezilla.xml ../cleaners/transmission.xml ../cleaners/vuze.xml #: ../cleaners/gftp.xml ../cleaners/amule.xml msgid "File transfer client" msgstr "Кліент перадачы файлаў" #: ../cleaners/opera.xml ../bleachbit/Cleaner.py:187 msgid "Download history" msgstr "Гісторыя загрузак" #: ../cleaners/opera.xml ../bleachbit/Cleaner.py:187 msgid "List of files downloaded" msgstr "Сьпіс загрузак" #: ../cleaners/opera.xml ../bleachbit/Cleaner.py:193 msgid "List of visited web pages" msgstr "Сьпіс наведаных вэб-старонак" #: ../cleaners/opera.xml ../bleachbit/Cleaner.py:193 msgid "URL history" msgstr "Гісторыя адрасоў" #: ../cleaners/epiphany.xml ../bleachbit/Cleaner.py:191 msgid "" "A database of URLs including bookmarks, favicons, and a history of visited " "web sites" msgstr "" "Гісторыя адрасоў зьмяшчае закладкі, значкі й дзёньнікі наведаных вэб-старонак" #: ../cleaners/epiphany.xml ../bleachbit/Cleaner.py:190 msgid "" "A database of usernames and passwords as well as a list of sites that should " "not store passwords" msgstr "" "База імён і пароляў, а таксама сьпі сстаронак, для якіх нельга захоўваць " "паролі" #: ../cleaners/epiphany.xml ../bleachbit/Cleaner.py:190 msgid "Passwords" msgstr "Паролі" #: ../cleaners/epiphany.xml ../bleachbit/Cleaner.py:191 msgid "Places" msgstr "Месцы" #: ../cleaners/epiphany.xml ../bleachbit/Cleaner.py:192 msgid "This option deletes all bookmarks." msgstr "Гэты парамэтар выдаляе ўсе закладкі." #: ../cleaners/apt.xml msgid "Delete obsolete files" msgstr "Выдаліць састарэлыя файлы" #: ../cleaners/google_toolbar.xml ../cleaners/gnome.xml msgid "Delete the search history" msgstr "Выдаліць гісторыю пошука" #: ../cleaners/google_toolbar.xml ../cleaners/gnome.xml msgid "Search history" msgstr "Гісторыя пошука" #: ../cleaners/vuze.xml ../cleaners/deepscan.xml msgid "Backup files" msgstr "Рэзервовыя файлы" #: ../cleaners/vuze.xml ../cleaners/deepscan.xml msgid "Delete the backup files" msgstr "Выдаліць усе рэзервовыя файлы" #: ../cleaners/exaile.xml msgid "Delete downloaded podcasts" msgstr "Выдаліць загружаныя падкасты" #: ../cleaners/exaile.xml msgid "Downloaded podcasts" msgstr "Загружаныя падкасты" #: ../cleaners/google_chrome.xml msgid "Delete the current and last sessions" msgstr "Выдаліць бягучы і апошні сэансы" #: ../cleaners/google_chrome.xml msgid "Session" msgstr "Сеанс" #: ../cleaners/emesene.xml msgid "Delete the avatars and emoticons cache" msgstr "Выдаліць кэш аватараў ды смайлаў" #: ../cleaners/deepscan.xml msgid "Compiled objects" msgstr "Скампіляваныя аб'екты" #: ../cleaners/deepscan.xml msgid "Deep scan" msgstr "Глыбокае сканаваньне" #: ../cleaners/deepscan.xml msgid "Delete the files" msgstr "Выдаліць гэтыя файлы" #: ../cleaners/deepscan.xml msgid "Inspect the preview for any files you want to keep." msgstr "Праверыць кароткае апісаньне файлаў, якія Вы жадаеце захаваць." #: ../cleaners/deepscan.xml ../bleachbit/Cleaner.py:414 msgid "This option is slow." msgstr "Гэты парамэтар павольны." #: ../cleaners/thumbnails.xml msgid "Thumbnails" msgstr "Мініяцюры" #: ../cleaners/bash.xml msgid "Delete the command history" msgstr "Выдаліць гісторыю загадаў" #: ../cleaners/gnome.xml msgid "Run" msgstr "Запусьціць" #: ../cleaners/elinks.xml msgid "Delete the cookies, visited URLs, and search history" msgstr "Выдаліць цесткі, наведаныя адрасы і гісторыю пошука" #: ../cleaners/recoll.xml msgid "" "Delete the search index, a database of words and the files they contain" msgstr "Выдаліць пошукавыя індэксы, базу словаў і файлы якія іх зьмяшчаюць" #: ../cleaners/recoll.xml msgid "Index" msgstr "Індэкс" #: ../bleachbit.desktop msgid "Unnecessary file cleaner" msgstr "Неабавязковы уборшчык файлаў" #: ../bleachbit.desktop msgid "Free space and maintain privacy" msgstr "Вольная прастора і кіраваньне сакрэтнасьцю" #: ../bleachbit/Cleaner.py:188 msgid "Form history" msgstr "З дзёньніка" #: ../bleachbit/Cleaner.py:188 msgid "A history of forms entered in web sites and in the Search bar" msgstr "Гісторыя формаў уводу і пошуку" #: ../bleachbit/Cleaner.py:189 msgid "Session restore" msgstr "Аднаўленьне сэанса" #: ../bleachbit/Cleaner.py:189 msgid "Loads the initial session after the browser closes or crashes" msgstr "Загружае апошні сэанс пасьля закрыцьця гартача сеціва" #: ../bleachbit/Cleaner.py:297 msgid "Office suite" msgstr "Офісны пакет" #: ../bleachbit/Cleaner.py:349 msgid "Delete the files in the rpmbuild build directory" msgstr "Выдаліць файлы build з дырэкторыі rpmbuild" #. TRANSLATORS: desktop entries are .desktop files in Linux tha #. make up the application menu (the menu that shows BleachBit, #. Firefox, and others. The .desktop files also associate file #. types, so clicking on an .html file in Nautilus brings up #. Firefox. #. More information: http://standards.freedesktop.org/menu-spec/latest/index.html#introduction #: ../bleachbit/Cleaner.py:388 msgid "Broken desktop files" msgstr "Сапсаваныя файлы стальца" #: ../bleachbit/Cleaner.py:388 msgid "Delete broken application menu entries and file associations" msgstr "" #. TRANSLATORS: Localizations are files supporting specific #. languages, so applications appear in Spanish, etc. #: ../bleachbit/Cleaner.py:392 msgid "Localizations" msgstr "Лакалізацыі" #: ../bleachbit/Cleaner.py:392 msgid "Delete files for unwanted languages" msgstr "Выдаліць файлы непатрэбных моваў" #. TRANSLATORS: 'Rotated logs' refers to old system log files. #. Linux systems often have a scheduled job to rotate the logs #. which means compress all except the newest log and then delete #. the oldest log. You could translate this 'old logs.' #: ../bleachbit/Cleaner.py:397 msgid "Rotated logs" msgstr "Старыя дзёньнікі" #: ../bleachbit/Cleaner.py:397 msgid "Delete old system logs" msgstr "Выдаліць старыя сыстэмныя дзёньнікі" #: ../bleachbit/Cleaner.py:399 msgid "Trash" msgstr "Сьметніца" #: ../bleachbit/Cleaner.py:399 msgid "Empty the trash" msgstr "Спустошыць сьметніцу" #. TRANSLATORS: 'Free' is an adjective and could be translated #. 'unallocated.' #: ../bleachbit/Cleaner.py:403 ../bleachbit/Cleaner.py:495 msgid "Memory" msgstr "Памяць" #: ../bleachbit/Cleaner.py:403 msgid "Wipe the swap and free memory" msgstr "" #: ../bleachbit/Cleaner.py:404 msgid "This option is experimental and may cause system problems." msgstr "" "Гэта эксперыментальны парамэтар і ён можа быць прычынай сыстэмных праблемаў." #. TRANSLATORS: Prefetch is Microsoft Windows jargon. #: ../bleachbit/Cleaner.py:409 msgid "Prefetch" msgstr "" #: ../bleachbit/Cleaner.py:410 msgid "Recycle bin" msgstr "Сьметніца" #: ../bleachbit/Cleaner.py:410 msgid "Empty the recycle bin" msgstr "Спустошыць сьметніцу" #: ../bleachbit/Cleaner.py:412 ../bleachbit/Cleaner.py:567 msgid "Clipboard" msgstr "Буфэр абмену" #: ../bleachbit/Cleaner.py:412 msgid "" "The desktop environment's clipboard used for copy and paste operations" msgstr "Буфэр абмену ўжываецца для капіяваньня і ўстаўкі" #: ../bleachbit/Cleaner.py:413 msgid "Free disk space" msgstr "Вольная дыскавая прастора" #: ../bleachbit/Cleaner.py:413 msgid "Overwrite free disk space to hide deleted files" msgstr "Перапісаць вольную дыскавую прастору, каб схаваць выдаленыя файлы" #: ../bleachbit/Cleaner.py:418 msgid "The system in general" msgstr "" #: ../bleachbit/Cleaner.py:424 msgid "System" msgstr "Сыстэма" #. TRANSLATORS: 'Free' could also be translated 'unallocated.' #. %s expands to a path such as C:\ or /tmp/ #: ../bleachbit/Cleaner.py:589 #, python-format msgid "Overwrite free disk space %s" msgstr "Перапісаць вольную дыскавую пратсору на %s" #. TRANSLATORS: %s expands to a drive letter such as C:\ or D:\ #: ../bleachbit/Cleaner.py:617 #, python-format msgid "Recycle bin %s" msgstr "Сьметніца для %s" #: ../bleachbit/CLI.py:102 #, python-format msgid "not a valid cleaner: %s" msgstr "няправільны ўборшчык: %s" #. TRANSLATORS: This is the command line usage. Don't translate #. %prog, but do translate usage, options, cleaner, and option. #. More information about the command line is here #. http://bleachbit.sourceforge.net/documentation/command-line #: ../bleachbit/CLI.py:130 msgid "usage: %prog [options] cleaner.option1 cleaner.option2" msgstr "выкарыстаньне: %prog [options] cleaner.option1 cleaner.option2" #: ../bleachbit/CLI.py:133 msgid "list cleaners" msgstr "сьпіс уборшчыкаў" #: ../bleachbit/CLI.py:135 msgid "delete files and make other permanent changes" msgstr "выдаліць файлы і зрабіць іншыя зьмены" #: ../bleachbit/CLI.py:137 msgid "preview files to be deleted and other changes" msgstr "праглядзець файлы, якія неабходна выдаліць і іншыя зьмены" #: ../bleachbit/CLI.py:139 msgid "output version information and exit" msgstr "адлюстраваць зьвесткі пра вэрсію й выйсьці" #: ../bleachbit/CLI.py:141 msgid "overwrite files to hide contents" msgstr "перапісаць файлы, каб схаваць зьмест" #: ../bleachbit/Command.py:53 ../bleachbit/GUI.py:558 msgid "Delete" msgstr "Выдаліць" #. TRANSLATORS: The file will be deleted when the #. system reboots #: ../bleachbit/Command.py:73 msgid "Mark for deletion" msgstr "Пазначыць для выдаленьня" #. TRANSLATORS: The file will be truncated to 0 bytes in length #: ../bleachbit/Command.py:148 msgid "Truncate" msgstr "Абрэзаць да нулявога памеру" #: ../bleachbit/Command.py:187 msgid "Delete registry key" msgstr "Выдаліць ключ рэестру" #: ../bleachbit/FileUtilities.py:189 msgid "Cannot import Python module sqlite3: Python 2.5 or later is required." msgstr "" "Немагчыма імпартаваць модуль Python sqlite3: патрабуецца Python 2.5 ці " "пазьнейшая вэрсія." #: ../bleachbit/GuiPreferences.py:51 ../bleachbit/GUI.py:518 msgid "Preferences" msgstr "Налады" #: ../bleachbit/GuiPreferences.py:60 msgid "General" msgstr "Агульнае" #: ../bleachbit/GuiPreferences.py:61 msgid "Drives" msgstr "Дыскі" #: ../bleachbit/GuiPreferences.py:63 msgid "Languages" msgstr "Мовы" #: ../bleachbit/GuiPreferences.py:105 msgid "Check periodically for software updates via the Internet" msgstr "Перыядычна правяраць наяўнасьць абнаўленьняў праз Інтэрнэт" #: ../bleachbit/GuiPreferences.py:108 msgid "" "If an update is found, you will be given the option to view information " "about it. Then, you may manually download and install the update." msgstr "" "Калі будзе знойдзена абнаўленьне, Вы атрымаеце зьвесткі пра яго. Пасьля Вы " "зможаце ўсталяваць яго." #. TRANSLATORS: This means to hide cleaners which would do #. nothing. For example, if Firefox were never used on #. this system, this option would hide Firefox to simplify #. the list of cleaners. #: ../bleachbit/GuiPreferences.py:115 msgid "Hide irrelevant cleaners" msgstr "Схаваць непатрэбныя ўборшчыкі" #. TRANSLATORS: Overwriting is the same as shredding. It is a way #. to prevent recovery of the data. You could also translate #. 'Shred files to prevent recovery.' #: ../bleachbit/GuiPreferences.py:123 msgid "Overwrite files to hide contents" msgstr "Перапісаць файлы, каб схаваць зьмест" #: ../bleachbit/GuiPreferences.py:126 msgid "" "Overwriting is ineffective on some file systems and with certain BleachBit " "operations. Overwriting is significantly slower." msgstr "" #: ../bleachbit/GuiPreferences.py:129 msgid "Start BleachBit with computer" msgstr "Урухоміць BleachBit на кампутары" #: ../bleachbit/GuiPreferences.py:141 msgid "Choose a folder" msgstr "Выбраць тэчку" #: ../bleachbit/GuiPreferences.py:168 msgid "" "Choose a writable directory for each drive for which to overwrite free space." msgstr "" "Выбраць тэчку з магчымасьцю запісу для кожнага дыску, для якога " "перазапісваецца вольная прастора." #: ../bleachbit/GuiPreferences.py:187 msgid "Add" msgstr "Дадаць" #: ../bleachbit/GuiPreferences.py:189 msgid "Remove" msgstr "Выдаліць" #: ../bleachbit/GuiPreferences.py:214 msgid "All languages will be deleted except those checked." msgstr "Усе мовы будуць выдаленыя, акрамя вызначаных тут." #: ../bleachbit/GuiPreferences.py:232 msgid "Preserve" msgstr "Захоўваць" #: ../bleachbit/GuiPreferences.py:236 msgid "Code" msgstr "Код" #: ../bleachbit/GuiPreferences.py:240 ../bleachbit/GUI.py:171 msgid "Name" msgstr "Назва" #: ../bleachbit/GUI.py:71 msgid "Delete confirmation" msgstr "Выдаліць пацьверджаньне" #: ../bleachbit/GUI.py:79 msgid "" "Are you sure you want to permanently delete files according to the selected " "operations? The actual files that will be deleted may have changed since " "you ran the preview." msgstr "" "Вы сапраўды жадаеце назаўсёды выдаліць файлы згодна выбранаму дзеяньню? " "Гэтыя файлы магчыма былі зьмененыя пасьля апошняга прагляду." #: ../bleachbit/GUI.py:81 msgid "Are you sure you want to permanently delete these files?" msgstr "Вы сапраўды жадаеце назаўсёды выдаліць гэтыя файлы?" #: ../bleachbit/GUI.py:179 msgid "Active" msgstr "Актыўны" #: ../bleachbit/GUI.py:373 msgid "You must select an operation" msgstr "Вы павінны выбраць дзеяньне" #: ../bleachbit/GUI.py:395 msgid "Done." msgstr "Зроблена." #: ../bleachbit/GUI.py:404 msgid "Program to clean unnecessary files" msgstr "Праграма выдаленьня непатрэбных файлаў" #: ../bleachbit/GUI.py:409 msgid "" "GNU General Public License version 3 or later.\n" "See http://www.gnu.org/licenses/gpl-3.0.txt" msgstr "" "GNU General Public License вэрсіі 3 ці пазьнейшая.\n" "Глядзіце http://www.gnu.org/licenses/gpl-3.0.txt" #: ../bleachbit/GUI.py:415 msgid "translator-credits" msgstr "" "Launchpad Contributions:\n" " Iryna Nikanchuk https://launchpad.net/~unetriste" #: ../bleachbit/GUI.py:451 msgid "Choose files to shred" msgstr "Выберыце файлы для зьнішчэньня" #: ../bleachbit/GUI.py:515 msgid "_Shred Files" msgstr "_Зьнішчыць файлы" #: ../bleachbit/GUI.py:516 msgid "_Quit" msgstr "_Выйсьці" #: ../bleachbit/GUI.py:517 msgid "_File" msgstr "_Файл" #: ../bleachbit/GUI.py:519 msgid "_Edit" msgstr "_Рэдагаваць" #: ../bleachbit/GUI.py:520 msgid "Help Contents" msgstr "Зьмест даведкі" #: ../bleachbit/GUI.py:521 msgid "_Release Notes" msgstr "_Заўвагі да выпуску" #: ../bleachbit/GUI.py:522 msgid "_About" msgstr "_Аб праграме" #: ../bleachbit/GUI.py:523 msgid "_Help" msgstr "_Даведка" #: ../bleachbit/GUI.py:549 msgid "Preview" msgstr "Папярэдні прагляд" #: ../bleachbit/GUI.py:552 msgid "Preview files in the selected operations (without deleting any files)" msgstr "" #: ../bleachbit/GUI.py:561 msgid "Delete files in the selected operations" msgstr "" #: ../bleachbit/GUI.py:639 msgid "Update BleachBit" msgstr "Абнавіць BleachBit" #: ../bleachbit/GUI.py:644 msgid "BleachBit update is available" msgstr "Даступныя абнаўленьні BleachBit" #: ../bleachbit/GUI.py:652 msgid "Click 'Update BleachBit' for more information" msgstr "Націсьніце \"Абнавіць BleachBit\", каб атрымаць больш зьвестак" #. TRANSLATORS: Cleaner definitions are the CleanerML XML files #. BleachBit uses to define how to clean an application. For #. example, GIMP, Google Chrome, and Opera each have their own #. cleaner definition. Anyone may write his own cleaner #. definition. #: ../bleachbit/RecognizeCleanerML.py:67 msgid "" "The following cleaner definition file has changed. Malicious definitions " "can damage your computer." msgstr "" #: ../bleachbit/RecognizeCleanerML.py:69 msgid "" "The following cleaner definition file is new. Malicious definitions can " "damage your computer." msgstr "" #: ../bleachbit/Unix.py:359 ../bleachbit/Unix.py:389 ../bleachbit/Unix.py:569 #, python-format msgid "Executable not found: %s" msgstr "Файл для выкананьня ня знойдзены: %s" #. TRANSLATORS: %s expands to a name such as 'Firefox' or 'System'. #: ../bleachbit/Unix.py:566 ../bleachbit/Worker.py:129 #, python-format msgid "" "%s cannot be cleaned because it is currently running. Close it, and try " "again." msgstr "" #: ../bleachbit/Update.py:87 msgid "Error when checking for updates: " msgstr "Памылка падчас праверкі абнаўленьняў: " #. TRANSLATORS: This indicates an error. The special keyword #. %(operation)s will be replaced by 'firefox' or 'opera' or #. some other cleaner ID. The special keyword %(msg)s will be #. replaced by a message such as 'Permission denied.' #: ../bleachbit/Worker.py:77 #, python-format msgid "Exception while running operation '%(operation)s': '%(msg)s'" msgstr "" #. TRANSLATORS: %s is replaced with Firefox, System, etc. #: ../bleachbit/Worker.py:177 #, python-format msgid "Please wait. Cleaning %s." msgstr "Пачакайце. Чысьціцца %s." #. TRANSLATORS: %s is replaced with Firefox, System, etc. #: ../bleachbit/Worker.py:180 #, python-format msgid "Please wait. Previewing %s." msgstr "Пачакайце. Праглядаецца %s." #. TRANSLATORS: This refers to disk space that was #. really recovered (in other words, not a preview) #: ../bleachbit/Worker.py:220 #, python-format msgid "Disk space recovered: %s" msgstr "Адноўленая дыскавая прастора: %s" #. TRANSLATORS: This refers to a preview (no real #. changes were made yet) #: ../bleachbit/Worker.py:224 #, python-format msgid "Disk space to be recovered: %s" msgstr "Дыскавая прастора, якую неабходна аднавіць: %s" #. TRANSLATORS: This refers to the number of files really #. deleted (in other words, not a preview). #: ../bleachbit/Worker.py:229 #, python-format msgid "Files deleted: %d" msgstr "Выдаленыя файлы: %d" #. TRANSLATORS: This refers to the number of files that #. would be deleted (in other words, simply a preview). #: ../bleachbit/Worker.py:233 #, python-format msgid "Files to be deleted: %d" msgstr "Файлы, якія неабходна выдаліць: %d" #: ../bleachbit/Worker.py:236 #, python-format msgid "Special operations: %d" msgstr "Адмысловыя дзеяньні: %d" #: ../bleachbit/Worker.py:239 #, python-format msgid "Errors: %d" msgstr "Памылкі: %d" bleachbit-2.0/po/nds.po0000644000175000017500000011360713245436307013153 0ustar hlehle# Low German translation for bleachbit # Copyright (c) 2010 Rosetta Contributors and Canonical Ltd 2010 # This file is distributed under the same license as the bleachbit package. # FIRST AUTHOR , 2010. # msgid "" msgstr "" "Project-Id-Version: bleachbit\n" "Report-Msgid-Bugs-To: FULL NAME \n" "POT-Creation-Date: 2017-02-11 11:12-0700\n" "PO-Revision-Date: 2017-05-27 15:14+0000\n" "Last-Translator: Tee Zocker \n" "Language-Team: Low German \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n != 1;\n" "X-Launchpad-Export-Date: 2017-05-28 19:40+0000\n" "X-Generator: Launchpad (build 18391)\n" #: ../cleaners/mc.xml ../cleaners/tortoisesvn.xml ../cleaners/vim.xml #: ../cleaners/safari.xml ../cleaners/links2.xml ../cleaners/seamonkey.xml #: ../cleaners/realplayer.xml ../cleaners/windows_defender.xml #: ../cleaners/d4x.xml ../cleaners/sqlite3.xml #: ../cleaners/internet_explorer.xml ../cleaners/libreoffice.xml #: ../cleaners/easytag.xml ../cleaners/bash.xml ../cleaners/nautilus.xml #: ../cleaners/octave.xml ../cleaners/elinks.xml ../cleaners/chromium.xml #: ../cleaners/google_chrome.xml msgid "History" msgstr "" #: ../cleaners/mc.xml ../cleaners/tortoisesvn.xml ../cleaners/links2.xml #: ../cleaners/realplayer.xml ../cleaners/d4x.xml ../cleaners/libreoffice.xml #: ../cleaners/easytag.xml ../cleaners/nautilus.xml ../cleaners/gnome.xml #: ../bleachbit/Cleaner.py:349 ../bleachbit/Cleaner.py:423 #: ../bleachbit/Cleaner.py:432 msgid "Delete the usage history" msgstr "" #: ../cleaners/gpodder.xml ../cleaners/hippo_opensim_viewer.xml #: ../cleaners/thumbnails.xml ../cleaners/safari.xml ../cleaners/emesene.xml #: ../cleaners/liferea.xml ../cleaners/seamonkey.xml ../cleaners/vuze.xml #: ../cleaners/yahoo_messenger.xml ../cleaners/pidgin.xml #: ../cleaners/adobe_reader.xml ../cleaners/evolution.xml #: ../cleaners/tremulous.xml ../cleaners/libreoffice.xml ../cleaners/xine.xml #: ../cleaners/nexuiz.xml ../cleaners/exaile.xml ../cleaners/opera.xml #: ../cleaners/amsn.xml ../cleaners/gftp.xml ../cleaners/miro.xml #: ../cleaners/beagle.xml ../cleaners/kde.xml ../cleaners/epiphany.xml #: ../cleaners/flash.xml ../cleaners/secondlife_viewer.xml ../cleaners/java.xml #: ../cleaners/chromium.xml ../cleaners/audacious.xml ../cleaners/rhythmbox.xml #: ../cleaners/google_chrome.xml ../cleaners/thunderbird.xml #: ../bleachbit/Cleaner.py:192 ../bleachbit/Cleaner.py:370 #: ../bleachbit/Cleaner.py:455 msgid "Cache" msgstr "Twüschenspieker" #: ../cleaners/gpodder.xml ../cleaners/yum.xml #: ../cleaners/hippo_opensim_viewer.xml ../cleaners/thumbnails.xml #: ../cleaners/windows_explorer.xml ../cleaners/liferea.xml #: ../cleaners/vuze.xml ../cleaners/yahoo_messenger.xml ../cleaners/pidgin.xml #: ../cleaners/adobe_reader.xml ../cleaners/evolution.xml #: ../cleaners/libreoffice.xml ../cleaners/apt.xml ../cleaners/xine.xml #: ../cleaners/nexuiz.xml ../cleaners/exaile.xml ../cleaners/amsn.xml #: ../cleaners/gftp.xml ../cleaners/miro.xml ../cleaners/beagle.xml #: ../cleaners/kde.xml ../cleaners/flash.xml ../cleaners/secondlife_viewer.xml #: ../cleaners/java.xml ../cleaners/audacious.xml ../cleaners/rhythmbox.xml #: ../bleachbit/Cleaner.py:370 ../bleachbit/Cleaner.py:455 #: ../bleachbit/Cleaner.py:489 ../bleachbit/Cleaner.py:491 msgid "Delete the cache" msgstr "Twüschenspieker löschen" #. TRANSLATORS: Vacuum is a verb. The term is jargon #. from the SQLite database. Microsoft Access uses #. the term 'Compact Database' (which you may translate #. instead). Another synonym is 'defragment.' #: ../cleaners/gpodder.xml ../cleaners/yum.xml ../cleaners/safari.xml #: ../cleaners/liferea.xml ../cleaners/chromium.xml #: ../cleaners/google_chrome.xml ../cleaners/thunderbird.xml #: ../bleachbit/Cleaner.py:214 ../bleachbit/Cleaner.py:360 #: ../bleachbit/Action.py:445 msgid "Vacuum" msgstr "Vakuum" #: ../cleaners/gpodder.xml ../cleaners/yum.xml ../cleaners/safari.xml #: ../cleaners/liferea.xml ../cleaners/chromium.xml #: ../cleaners/google_chrome.xml ../cleaners/thunderbird.xml #: ../bleachbit/Cleaner.py:215 msgid "" "Clean database fragmentation to reduce space and improve speed without " "removing any data" msgstr "" #: ../cleaners/yum.xml ../cleaners/apt.xml msgid "Package manager" msgstr "Packetverwaltung" #: ../cleaners/warzone2100.xml ../cleaners/hippo_opensim_viewer.xml #: ../cleaners/gl-117.xml ../cleaners/tremulous.xml ../cleaners/nexuiz.xml #: ../cleaners/secondlife_viewer.xml msgid "Game" msgstr "Speel" #: ../cleaners/warzone2100.xml ../cleaners/hippo_opensim_viewer.xml #: ../cleaners/teamviewer.xml ../cleaners/realplayer.xml ../cleaners/vuze.xml #: ../cleaners/yahoo_messenger.xml ../cleaners/amule.xml #: ../cleaners/easytag.xml ../cleaners/exaile.xml ../cleaners/screenlets.xml #: ../cleaners/gftp.xml ../cleaners/miro.xml ../cleaners/audacious.xml #: ../bleachbit/Cleaner.py:486 msgid "Logs" msgstr "Protokolle" #: ../cleaners/warzone2100.xml ../cleaners/hippo_opensim_viewer.xml #: ../cleaners/teamviewer.xml ../cleaners/realplayer.xml ../cleaners/vuze.xml #: ../cleaners/yahoo_messenger.xml ../cleaners/amule.xml ../cleaners/exaile.xml #: ../cleaners/screenlets.xml ../cleaners/gftp.xml ../cleaners/miro.xml #: ../cleaners/audacious.xml ../bleachbit/Cleaner.py:486 msgid "Delete the logs" msgstr "" #: ../cleaners/thumbnails.xml ../cleaners/windows_explorer.xml msgid "Thumbnails" msgstr "Voransichten" #: ../cleaners/thumbnails.xml msgid "Icons for files on the system" msgstr "" #: ../cleaners/vim.xml ../cleaners/gedit.xml msgid "Editor" msgstr "Editor" #: ../cleaners/vim.xml msgid "" "Delete ~/.viminfo which includes file history, command history, and buffers" msgstr "" #: ../cleaners/filezilla.xml ../cleaners/transmission.xml ../cleaners/vuze.xml #: ../cleaners/amule.xml ../cleaners/gftp.xml msgid "File transfer client" msgstr "" #: ../cleaners/filezilla.xml ../cleaners/paint.xml #: ../cleaners/windows_media_player.xml ../cleaners/windows_explorer.xml #: ../cleaners/teamviewer.xml ../cleaners/microsoft_office.xml #: ../cleaners/vlc.xml ../cleaners/adobe_reader.xml ../cleaners/winamp.xml #: ../cleaners/winzip.xml ../cleaners/winrar.xml ../cleaners/audacious.xml #: ../cleaners/wordpad.xml ../bleachbit/Cleaner.py:371 msgid "Most recently used" msgstr "" #: ../cleaners/filezilla.xml ../cleaners/windows_explorer.xml #: ../cleaners/gwenview.xml ../cleaners/adobe_reader.xml ../cleaners/gedit.xml #: ../cleaners/kde.xml ../cleaners/audacious.xml ../bleachbit/Cleaner.py:372 #: ../bleachbit/Cleaner.py:469 msgid "Delete the list of recently used documents" msgstr "" #: ../cleaners/skype.xml ../cleaners/emesene.xml #: ../cleaners/yahoo_messenger.xml ../cleaners/pidgin.xml ../cleaners/amsn.xml msgid "Chat client" msgstr "" #: ../cleaners/skype.xml ../cleaners/hexchat.xml ../cleaners/emesene.xml #: ../cleaners/seamonkey.xml ../cleaners/yahoo_messenger.xml #: ../cleaners/pidgin.xml ../cleaners/amsn.xml msgid "Chat logs" msgstr "" #: ../cleaners/skype.xml ../cleaners/hexchat.xml ../cleaners/emesene.xml #: ../cleaners/seamonkey.xml ../cleaners/yahoo_messenger.xml #: ../cleaners/pidgin.xml ../cleaners/amsn.xml msgid "Delete the chat logs" msgstr "" #: ../cleaners/skype.xml msgid "Installers" msgstr "" #: ../cleaners/skype.xml msgid "Delete cached patches and installers" msgstr "" #: ../cleaners/hexchat.xml msgid "IRC client formerly known as XChat" msgstr "" #: ../cleaners/safari.xml ../cleaners/links2.xml ../cleaners/seamonkey.xml #: ../cleaners/konqueror.xml ../cleaners/internet_explorer.xml #: ../cleaners/opera.xml ../cleaners/epiphany.xml ../cleaners/elinks.xml #: ../cleaners/chromium.xml ../cleaners/google_chrome.xml #: ../bleachbit/Cleaner.py:226 msgid "Web browser" msgstr "Netkieker" #: ../cleaners/safari.xml ../cleaners/seamonkey.xml ../cleaners/opera.xml #: ../cleaners/epiphany.xml ../cleaners/chromium.xml #: ../cleaners/google_chrome.xml ../cleaners/thunderbird.xml #: ../bleachbit/Cleaner.py:193 msgid "Delete the web cache, which reduces time to display revisited pages" msgstr "" #: ../cleaners/safari.xml ../cleaners/liferea.xml ../cleaners/seamonkey.xml #: ../cleaners/realplayer.xml ../cleaners/konqueror.xml #: ../cleaners/internet_explorer.xml ../cleaners/opera.xml #: ../cleaners/epiphany.xml ../cleaners/flash.xml ../cleaners/silverlight.xml #: ../cleaners/chromium.xml ../cleaners/google_chrome.xml #: ../cleaners/thunderbird.xml ../bleachbit/Cleaner.py:194 msgid "Cookies" msgstr "Cookies" #: ../cleaners/safari.xml ../cleaners/liferea.xml ../cleaners/seamonkey.xml #: ../cleaners/realplayer.xml ../cleaners/konqueror.xml #: ../cleaners/internet_explorer.xml ../cleaners/opera.xml #: ../cleaners/epiphany.xml ../cleaners/flash.xml ../cleaners/silverlight.xml #: ../cleaners/chromium.xml ../cleaners/google_chrome.xml #: ../cleaners/thunderbird.xml ../bleachbit/Cleaner.py:195 msgid "" "Delete cookies, which contain information such as web site preferences, " "authentication, and tracking identification" msgstr "" #: ../cleaners/safari.xml ../cleaners/konqueror.xml #: ../cleaners/internet_explorer.xml ../cleaners/opera.xml #: ../bleachbit/Cleaner.py:213 msgid "List of visited web pages" msgstr "" #. Torrent software can block a list of IP addresses, such as those that may belong to malware or anti-piracy organizations #: ../cleaners/transmission.xml msgid "Blocklists" msgstr "" #: ../cleaners/transmission.xml ../cleaners/windows_defender.xml #: ../cleaners/beagle.xml ../cleaners/thunderbird.xml ../cleaners/deepscan.xml #: ../bleachbit/Cleaner.py:197 msgid "Delete the files" msgstr "" #: ../cleaners/transmission.xml msgid "Blocklists will need update to work." msgstr "" #: ../cleaners/transmission.xml msgid "Torrents" msgstr "Torrents" #: ../cleaners/transmission.xml msgid "Delete the torrents (just the metadata but not the files described)" msgstr "" #: ../cleaners/transmission.xml msgid "Statistics" msgstr "Statistiken" #: ../cleaners/transmission.xml msgid "Delete the file" msgstr "Löscht die Datei" #: ../cleaners/paint.xml ../cleaners/windows_media_player.xml #: ../cleaners/windows_explorer.xml ../cleaners/teamviewer.xml #: ../cleaners/microsoft_office.xml ../cleaners/vlc.xml ../cleaners/winamp.xml #: ../cleaners/winzip.xml ../cleaners/winrar.xml ../cleaners/wordpad.xml msgid "Delete the most recently used list" msgstr "" #: ../cleaners/emesene.xml msgid "Delete the avatars and emoticons cache" msgstr "" #: ../cleaners/windows_media_player.xml ../cleaners/realplayer.xml #: ../cleaners/vlc.xml ../cleaners/winamp.xml msgid "Media player" msgstr "" #: ../cleaners/windows_explorer.xml ../cleaners/nautilus.xml msgid "File manager" msgstr "" #: ../cleaners/windows_explorer.xml ../cleaners/gwenview.xml #: ../cleaners/gedit.xml ../cleaners/kde.xml ../bleachbit/Cleaner.py:468 #: ../bleachbit/Cleaner.py:663 msgid "Recent documents list" msgstr "" #: ../cleaners/windows_explorer.xml msgid "" "This option will reset pinned locations in Quick Access to their defaults." msgstr "" #. In Windows 'Run' is the dialog in the Start menu #. In GNOME 'Run' is the dialog shown when typing ALT+F2' #: ../cleaners/windows_explorer.xml ../cleaners/gnome.xml msgid "Run" msgstr "" #: ../cleaners/windows_explorer.xml ../cleaners/opera.xml ../cleaners/gnome.xml #: ../cleaners/google_toolbar.xml msgid "Search history" msgstr "" #: ../cleaners/windows_explorer.xml ../cleaners/opera.xml ../cleaners/gnome.xml #: ../cleaners/google_toolbar.xml msgid "Delete the search history" msgstr "" #: ../cleaners/windows_explorer.xml msgid "This will restart Windows Explorer." msgstr "" #: ../cleaners/gl-117.xml ../cleaners/microsoft_office.xml #: ../cleaners/beagle.xml ../cleaners/secondlife_viewer.xml ../cleaners/x11.xml msgid "Debug logs" msgstr "" #: ../cleaners/gl-117.xml ../cleaners/microsoft_office.xml #: ../cleaners/easytag.xml ../cleaners/beagle.xml #: ../cleaners/secondlife_viewer.xml ../cleaners/x11.xml msgid "Delete the debug logs" msgstr "" #: ../cleaners/google_earth.xml ../cleaners/winetricks.xml ../cleaners/vuze.xml #: ../cleaners/adobe_reader.xml ../cleaners/amule.xml ../cleaners/wine.xml #: ../cleaners/internet_explorer.xml ../cleaners/gimp.xml ../cleaners/kde.xml #: ../cleaners/deepscan.xml ../bleachbit/Cleaner.py:520 msgid "Temporary files" msgstr "" #: ../cleaners/google_earth.xml ../cleaners/winetricks.xml ../cleaners/vuze.xml #: ../cleaners/adobe_reader.xml ../cleaners/amule.xml ../cleaners/wine.xml #: ../cleaners/internet_explorer.xml ../cleaners/gimp.xml ../cleaners/kde.xml #: ../cleaners/deepscan.xml ../bleachbit/Cleaner.py:520 msgid "Delete the temporary files" msgstr "" #: ../cleaners/seamonkey.xml ../cleaners/opera.xml ../bleachbit/Cleaner.py:201 msgid "Download history" msgstr "" #: ../cleaners/seamonkey.xml ../cleaners/opera.xml ../bleachbit/Cleaner.py:201 msgid "List of files downloaded" msgstr "" #: ../cleaners/seamonkey.xml msgid "Delete the list of visited web pages" msgstr "" #: ../cleaners/vuze.xml ../cleaners/deepscan.xml ../bleachbit/Cleaner.py:190 msgid "Backup files" msgstr "Sicherungskopien" #: ../cleaners/vuze.xml ../cleaners/deepscan.xml ../bleachbit/Cleaner.py:191 msgid "Delete the backup files" msgstr "" #: ../cleaners/konqueror.xml ../cleaners/opera.xml ../cleaners/chromium.xml msgid "Current session" msgstr "Aktuelle Sitzung" #: ../cleaners/konqueror.xml ../cleaners/opera.xml ../cleaners/chromium.xml msgid "Delete the current session" msgstr "Lösche aktuelle Sitzung" #: ../cleaners/konqueror.xml ../cleaners/opera.xml ../bleachbit/Cleaner.py:213 msgid "URL history" msgstr "URL Verlauf" #: ../cleaners/microsoft_office.xml ../cleaners/libreoffice.xml #: ../bleachbit/Cleaner.py:375 msgid "Office suite" msgstr "" #: ../cleaners/windows_defender.xml msgid "Anti-virus" msgstr "" #: ../cleaners/journald.xml msgid "System journals" msgstr "" #: ../cleaners/journald.xml msgid "Clean old system journals" msgstr "" #: ../cleaners/adobe_reader.xml msgid "Document viewer" msgstr "" #: ../cleaners/evolution.xml ../cleaners/thunderbird.xml msgid "Email client" msgstr "" #: ../cleaners/tremulous.xml msgid "Delete the list of game servers" msgstr "" #: ../cleaners/sqlite3.xml ../cleaners/bash.xml ../cleaners/octave.xml msgid "Delete the command history" msgstr "" #: ../cleaners/wine.xml msgid "Compatibility layer for Windows software" msgstr "" #: ../cleaners/internet_explorer.xml ../cleaners/chromium.xml #: ../cleaners/google_chrome.xml ../bleachbit/Cleaner.py:202 msgid "Form history" msgstr "Formular Verlauf" #: ../cleaners/internet_explorer.xml ../bleachbit/Cleaner.py:203 msgid "A history of forms entered in web sites and in the Search bar" msgstr "" #. This software edits metadata tags, such as title and artist, in audio files #: ../cleaners/easytag.xml msgid "Audio files tagger" msgstr "" #: ../cleaners/apt.xml msgid "Delete obsolete files" msgstr "" #: ../cleaners/apt.xml msgid "Package lists" msgstr "" #: ../cleaners/xine.xml ../cleaners/miro.xml ../cleaners/flash.xml msgid "Multimedia viewer" msgstr "" #: ../cleaners/recoll.xml ../cleaners/beagle.xml msgid "Search tool" msgstr "Suchprogramm" #: ../cleaners/recoll.xml ../cleaners/beagle.xml ../cleaners/thunderbird.xml msgid "Index" msgstr "Index" #: ../cleaners/recoll.xml msgid "" "Delete the search index, a database of words and the files they contain" msgstr "" #: ../cleaners/gimp.xml msgid "Graphics editor" msgstr "" #: ../cleaners/exaile.xml msgid "Downloaded podcasts" msgstr "" #: ../cleaners/exaile.xml msgid "Delete downloaded podcasts" msgstr "" #: ../cleaners/bash.xml msgid "Shell" msgstr "" #. TRANSLATORS: DOM = Document Object Model. #: ../cleaners/opera.xml ../cleaners/epiphany.xml ../cleaners/chromium.xml #: ../cleaners/google_chrome.xml ../bleachbit/Cleaner.py:199 msgid "DOM Storage" msgstr "" #: ../cleaners/opera.xml ../cleaners/epiphany.xml ../cleaners/chromium.xml #: ../cleaners/google_chrome.xml ../bleachbit/Cleaner.py:199 msgid "Delete HTML5 cookies" msgstr "" #: ../cleaners/opera.xml ../cleaners/epiphany.xml ../cleaners/chromium.xml #: ../cleaners/google_chrome.xml ../cleaners/thunderbird.xml #: ../bleachbit/Cleaner.py:208 msgid "Passwords" msgstr "" #: ../cleaners/opera.xml ../cleaners/epiphany.xml ../cleaners/chromium.xml #: ../cleaners/google_chrome.xml ../cleaners/thunderbird.xml #: ../bleachbit/Cleaner.py:209 msgid "" "A database of usernames and passwords as well as a list of sites that should " "not store passwords" msgstr "" #: ../cleaners/opera.xml ../cleaners/epiphany.xml ../cleaners/chromium.xml #: ../cleaners/google_chrome.xml ../cleaners/thunderbird.xml #: ../bleachbit/Cleaner.py:211 msgid "This option will delete your saved passwords." msgstr "" #: ../cleaners/nautilus.xml msgid "Custom folders will be reset." msgstr "" #: ../cleaners/gnome.xml ../cleaners/kde.xml msgid "Desktop environment" msgstr "" #: ../cleaners/screenlets.xml msgid "Widgets for the desktop" msgstr "" #: ../cleaners/epiphany.xml msgid "Places" msgstr "Orte" #: ../cleaners/epiphany.xml msgid "" "A database of URLs including bookmarks, favicons, and a history of visited " "web sites" msgstr "" #: ../cleaners/epiphany.xml msgid "This option deletes all bookmarks." msgstr "" #: ../cleaners/winrar.xml msgid "File archiver" msgstr "" #: ../cleaners/elinks.xml msgid "Delete the cookies, visited URLs, and search history" msgstr "" #: ../cleaners/chromium.xml ../cleaners/google_chrome.xml msgid "A history of forms entered in web sites" msgstr "" #: ../cleaners/chromium.xml ../cleaners/google_chrome.xml msgid "" "Delete the history which includes visited sites, downloads, and thumbnails" msgstr "" #: ../cleaners/chromium.xml ../cleaners/google_chrome.xml msgid "Search engines" msgstr "" #. 'Factory' means a search engine that is installed by default 'from the factory,' but this is different than a 'default search engine' https://lists.launchpad.net/launchpad-translators/msg00283.html #: ../cleaners/chromium.xml ../cleaners/google_chrome.xml msgid "" "Reset the search engine usage history and delete non-factory search engines, " "some of which are added automatically" msgstr "" #: ../cleaners/audacious.xml msgid "Audio player" msgstr "" #: ../cleaners/rhythmbox.xml msgid "Database" msgstr "" #: ../cleaners/rhythmbox.xml msgid "" "Delete the database, which contain information such as play count and last " "played" msgstr "" #: ../cleaners/google_chrome.xml msgid "Session" msgstr "Sitzung" #: ../cleaners/google_chrome.xml msgid "Delete the current and last sessions" msgstr "" #: ../cleaners/x11.xml msgid "Windowing system" msgstr "" #: ../cleaners/wordpad.xml msgid "Word processor" msgstr "" #: ../cleaners/deepscan.xml msgid "Deep scan" msgstr "" #: ../cleaners/deepscan.xml msgid "Clean files widely scattered across the disk" msgstr "" #: ../cleaners/deepscan.xml msgid "Inspect the preview for any files you want to keep." msgstr "" #: ../cleaners/deepscan.xml msgid "This option is slow." msgstr "Dauert lange" #: ../bleachbit.desktop msgid "Unnecessary file cleaner" msgstr "" #: ../bleachbit.desktop msgid "Free space and maintain privacy" msgstr "" #: ../bleachbit/FileUtilities.py:668 msgid "" "There was at least one file on a file system that does not support advanced " "overwriting." msgstr "" #: ../bleachbit/Unix.py:574 #, python-format msgid "Executable not found: %s" msgstr "" #. TRANSLATORS: %s expands to a name such as 'Firefox' or 'System'. #: ../bleachbit/Unix.py:623 ../bleachbit/Worker.py:136 #, python-format msgid "" "%s cannot be cleaned because it is currently running. Close it, and try " "again." msgstr "%s wird gerade benutzt. Versuch es nacher nochmal." #: ../bleachbit/GuiBasic.py:112 msgid "Delete confirmation" msgstr "" #: ../bleachbit/GuiBasic.py:122 msgid "" "Are you sure you want to permanently delete files according to the selected " "operations? The actual files that will be deleted may have changed since " "you ran the preview." msgstr "" #: ../bleachbit/GuiBasic.py:125 msgid "Are you sure you want to permanently delete these files?" msgstr "" #: ../bleachbit/GuiBasic.py:162 #, python-format msgid "" "Because you are running as root, please manually open this link in a web " "browser:\n" "%s" msgstr "" #. TRANSLATORS: %s expands to www.bleachbit.org or similar #: ../bleachbit/GuiBasic.py:174 #, python-format msgid "Open web browser to %s?" msgstr "" #. TRANSLATORS: This is the label in the log indicating was #. skipped because it matches the whitelist #: ../bleachbit/Command.py:47 msgid "Skip" msgstr "" #. TRANSLATORS: This is the label in the log indicating will be #. deleted (for previews) or was actually deleted #: ../bleachbit/Command.py:77 msgid "Delete" msgstr "Löschen" #: ../bleachbit/Command.py:99 msgid "" "At least one file was locked by another process, so its contents could not " "be overwritten. It will be marked for deletion upon system reboot." msgstr "" #. TRANSLATORS: The file will be deleted when the #. system reboots #: ../bleachbit/Command.py:102 msgid "Mark for deletion" msgstr "Markieren zum Löschen" #. TRANSLATORS: Parts of this file will be deleted #: ../bleachbit/Command.py:199 ../bleachbit/Command.py:233 #: ../bleachbit/Action.py:254 ../bleachbit/Action.py:267 #: ../bleachbit/Action.py:280 ../bleachbit/Action.py:293 #: ../bleachbit/Action.py:306 msgid "Clean file" msgstr "" #. TRANSLATORS: The file will be truncated to 0 bytes in length #: ../bleachbit/Command.py:275 msgid "Truncate" msgstr "" #: ../bleachbit/Command.py:317 msgid "Delete registry key" msgstr "" #. TRANSLATORS: This is cleaner name for cleaners imported from winapp2.ini #: ../bleachbit/Winapp.py:44 msgid "Applications" msgstr "Programme" #. TRANSLATORS: This is cleaner name for cleaners imported #. from winapp2.ini #: ../bleachbit/Winapp.py:47 msgid "Internet" msgstr "Internet" #. TRANSLATORS: This is cleaner name for cleaners imported #. from winapp2.ini #: ../bleachbit/Winapp.py:50 msgid "Multimedia" msgstr "Medien" #. TRANSLATORS: This is cleaner name for cleaners imported #. from winapp2.ini #: ../bleachbit/Winapp.py:53 msgid "Utilities" msgstr "Werkzeuge" #: ../bleachbit/Winapp.py:64 msgid "Games" msgstr "Spiele" #: ../bleachbit/Winapp.py:162 msgid "Imported from winapp2.ini" msgstr "Lade winapp2.ini" #: ../bleachbit/Cleaner.py:197 msgid "Crash reports" msgstr "Fehlermeldungen" #: ../bleachbit/Cleaner.py:204 msgid "Session restore" msgstr "Lade letztes mal" #: ../bleachbit/Cleaner.py:205 msgid "Loads the initial session after the browser closes or crashes" msgstr "" #: ../bleachbit/Cleaner.py:207 msgid "Site preferences" msgstr "" #: ../bleachbit/Cleaner.py:207 msgid "Settings for individual sites" msgstr "" #. TRANSLATORS: desktop entries are .desktop files in Linux that #. make up the application menu (the menu that shows BleachBit, #. Firefox, and others. The .desktop files also associate file #. types, so clicking on an .html file in Nautilus brings up #. Firefox. #. More information: #. http://standards.freedesktop.org/menu-spec/latest/index.html#introduction #: ../bleachbit/Cleaner.py:453 msgid "Broken desktop files" msgstr "" #: ../bleachbit/Cleaner.py:454 msgid "Delete broken application menu entries and file associations" msgstr "" #. TRANSLATORS: Localizations are files supporting specific #. languages, so applications appear in Spanish, etc. #: ../bleachbit/Cleaner.py:458 msgid "Localizations" msgstr "Sprachen" #: ../bleachbit/Cleaner.py:459 msgid "Delete files for unwanted languages" msgstr "Lösche andere Sprachen" #: ../bleachbit/Cleaner.py:461 msgid "Configure this option in the preferences." msgstr "" #: ../bleachbit/Cleaner.py:467 msgid "Rotated logs" msgstr "" #: ../bleachbit/Cleaner.py:467 msgid "Delete old system logs" msgstr "Lösche alte Systemdateien" #: ../bleachbit/Cleaner.py:470 msgid "Trash" msgstr "Papierkorb" #: ../bleachbit/Cleaner.py:470 msgid "Empty the trash" msgstr "Leere den Papierkorb" #: ../bleachbit/Cleaner.py:476 ../bleachbit/Cleaner.py:627 #: ../bleachbit/Worker.py:184 msgid "Memory" msgstr "Speicher" #. TRANSLATORS: 'free' means 'unallocated' #: ../bleachbit/Cleaner.py:478 msgid "Wipe the swap and free memory" msgstr "" #: ../bleachbit/Cleaner.py:480 msgid "This option is experimental and may cause system problems." msgstr "" #: ../bleachbit/Cleaner.py:488 msgid "Memory dump" msgstr "" #: ../bleachbit/Cleaner.py:488 msgid "Delete the file memory.dmp" msgstr "" #. TRANSLATORS: Prefetch is Microsoft Windows jargon. #: ../bleachbit/Cleaner.py:491 msgid "Prefetch" msgstr "" #: ../bleachbit/Cleaner.py:493 msgid "Recycle bin" msgstr "" #: ../bleachbit/Cleaner.py:493 ../bleachbit/Cleaner.py:787 msgid "Empty the recycle bin" msgstr "" #. TRANSLATORS: 'Update' is a noun, and 'Update uninstallers' is an option to delete #. the uninstallers for software updates. #: ../bleachbit/Cleaner.py:496 msgid "Update uninstallers" msgstr "" #: ../bleachbit/Cleaner.py:497 msgid "" "Delete uninstallers for Microsoft updates including hotfixes, service packs, " "and Internet Explorer updates" msgstr "" #: ../bleachbit/Cleaner.py:504 ../bleachbit/Cleaner.py:727 msgid "Clipboard" msgstr "" #: ../bleachbit/Cleaner.py:505 msgid "" "The desktop environment's clipboard used for copy and paste operations" msgstr "" #. TRANSLATORS: "Custom" is an option allowing the user to specify which #. files and folders will be erased. #: ../bleachbit/Cleaner.py:512 ../bleachbit/GuiPreferences.py:66 msgid "Custom" msgstr "Angepasst" #: ../bleachbit/Cleaner.py:513 msgid "Delete user-specified files and folders" msgstr "" #. TRANSLATORS: 'free' means 'unallocated' #: ../bleachbit/Cleaner.py:515 msgid "Free disk space" msgstr "Freierspeicher" #. TRANSLATORS: 'free' means 'unallocated' #: ../bleachbit/Cleaner.py:517 msgid "Overwrite free disk space to hide deleted files" msgstr "" #: ../bleachbit/Cleaner.py:518 msgid "This option is very slow." msgstr "" #: ../bleachbit/Cleaner.py:522 msgid "The system in general" msgstr "" #: ../bleachbit/Cleaner.py:524 ../bleachbit/Cleaner.py:857 msgid "System" msgstr "System" #. TRANSLATORS: 'Free' means 'unallocated.' #. %s expands to a path such as C:\ or /tmp/ #: ../bleachbit/Cleaner.py:735 ../bleachbit/Cleaner.py:890 #, python-format msgid "Overwrite free disk space %s" msgstr "" #: ../bleachbit/RecognizeCleanerML.py:59 msgid "Security warning" msgstr "Sicherheits Wahnungen" #: ../bleachbit/RecognizeCleanerML.py:72 msgid "" "These cleaner definitions are new or have changed. Malicious definitions can " "damage your system. If you do not trust these changes, delete the files or " "quit." msgstr "" #: ../bleachbit/RecognizeCleanerML.py:88 msgctxt "column_label" msgid "Delete" msgstr "" #: ../bleachbit/RecognizeCleanerML.py:93 msgctxt "column_label" msgid "Filename" msgstr "" #. TRANSLATORS: This indicates an error. The special keyword #. %(operation)s will be replaced by 'firefox' or 'opera' or #. some other cleaner ID. The special keyword %(msg)s will be #. replaced by a message such as 'Permission denied.' #: ../bleachbit/Worker.py:74 #, python-format msgid "Exception while running operation '%(operation)s': '%(msg)s'" msgstr "" #. TRANSLATORS: 'free' means 'unallocated' #: ../bleachbit/Worker.py:182 msgid "Please wait. Wiping free disk space." msgstr "" #. TRANSLATORS: %s is replaced with Firefox, System, etc. #: ../bleachbit/Worker.py:184 ../bleachbit/Worker.py:332 #, python-format msgid "Please wait. Cleaning %s." msgstr "" #: ../bleachbit/Worker.py:199 msgid "Please wait. Wiping file system metadata." msgstr "" #: ../bleachbit/Worker.py:202 msgid "Please wait. Cleaning up after wiping file system metadata." msgstr "" #: ../bleachbit/Worker.py:205 #, python-format msgid "About %d minute remaining." msgid_plural "About %d minutes remaining." msgstr[0] "" msgstr[1] "" #. TRANSLATORS: This refers to disk space that was #. really recovered (in other words, not a preview) #: ../bleachbit/Worker.py:272 #, python-format msgid "Disk space recovered: %s" msgstr "" #. TRANSLATORS: This refers to a preview (no real #. changes were made yet) #: ../bleachbit/Worker.py:276 #, python-format msgid "Disk space to be recovered: %s" msgstr "" #. TRANSLATORS: This refers to the number of files really #. deleted (in other words, not a preview). #: ../bleachbit/Worker.py:281 #, python-format msgid "Files deleted: %d" msgstr "" #. TRANSLATORS: This refers to the number of files that #. would be deleted (in other words, simply a preview). #: ../bleachbit/Worker.py:285 #, python-format msgid "Files to be deleted: %d" msgstr "" #: ../bleachbit/Worker.py:288 #, python-format msgid "Special operations: %d" msgstr "" #: ../bleachbit/Worker.py:291 #, python-format msgid "Errors: %d" msgstr "" #. TRANSLATORS: The "deep scan" feature searches over broad #. areas of the file system such as the user's whole home directory #. or all the system executables. #: ../bleachbit/Worker.py:306 msgid "Please wait. Running deep scan." msgstr "" #. TRANSLATORS: %s is replaced with Firefox, System, etc. #: ../bleachbit/Worker.py:335 #, python-format msgid "Please wait. Previewing %s." msgstr "" #: ../bleachbit/Update.py:80 msgid "New winapp2.ini was downloaded." msgstr "" #: ../bleachbit/Update.py:125 msgid "Update BleachBit" msgstr "" #: ../bleachbit/Update.py:130 msgid "A new version is available." msgstr "" #. TRANSLATORS: %s expands to version such as '0.8.4' or '0.8.5beta' or #. similar #: ../bleachbit/Update.py:139 #, python-format msgid "Update to version %s" msgstr "" #: ../bleachbit/Update.py:164 #, python-format msgid "" "Error when opening a network connection to %s to check for updates. Please " "verify the network is working." msgstr "" #: ../bleachbit/CLI.py:106 #, python-format msgid "not a valid cleaner: %s" msgstr "" #. TRANSLATORS: This is the command line usage. Don't translate #. %prog, but do translate usage, options, cleaner, and option. #. More information about the command line is here #. https://www.bleachbit.org/documentation/command-line #: ../bleachbit/CLI.py:133 msgid "usage: %prog [options] cleaner.option1 cleaner.option2" msgstr "" #: ../bleachbit/CLI.py:136 msgid "list cleaners" msgstr "" #. TRANSLATORS: predefined cleaners are for applications, such as Firefox and Flash. #. This is different than cleaning an arbitrary file, such as a #. spreadsheet on the desktop. #: ../bleachbit/CLI.py:141 msgid "run cleaners to delete files and make other permanent changes" msgstr "" #: ../bleachbit/CLI.py:144 msgid "shred specific files or folders" msgstr "" #: ../bleachbit/CLI.py:146 msgid "show system information" msgstr "" #: ../bleachbit/CLI.py:148 msgid "launch the graphical interface" msgstr "" #: ../bleachbit/CLI.py:152 msgid "do not prompt for administrator privileges" msgstr "" #: ../bleachbit/CLI.py:157 msgid "preview files to be deleted and other changes" msgstr "" #: ../bleachbit/CLI.py:161 msgid "use options set in the graphical interface" msgstr "" #: ../bleachbit/CLI.py:164 msgid "update winapp2.ini, if a new version is available" msgstr "" #: ../bleachbit/CLI.py:166 msgid "output version information and exit" msgstr "" #: ../bleachbit/CLI.py:168 msgid "overwrite files to hide contents" msgstr "" #. TRANSLATORS: this is the context menu #: ../bleachbit/Action.py:382 ../bleachbit/GUI.py:632 msgid "Clean" msgstr "" #: ../bleachbit/Action.py:418 #, python-format msgid "Run external command: %s" msgstr "" #: ../bleachbit/GUI.py:135 ../bleachbit/GuiPreferences.py:296 msgid "Name" msgstr "" #: ../bleachbit/GUI.py:143 msgid "Active" msgstr "" #. TRANSLATORS: Size is the label for the column that shows how #. much space an option would clean or did clean #: ../bleachbit/GUI.py:155 msgid "Size" msgstr "" #. TRANSLATORS: %(cleaner) may be Firefox, System, etc. #. %(option) may be cache, logs, cookies, etc. #. %(warning) may be 'This option is really slow' #: ../bleachbit/GUI.py:186 #, python-format msgid "" "Warning regarding %(cleaner)s - %(option)s:\n" "\n" "%(warning)s" msgstr "" #: ../bleachbit/GUI.py:372 msgid "You must select an operation" msgstr "" #: ../bleachbit/GUI.py:391 ../bleachbit/GUI.py:413 msgid "Done." msgstr "" #: ../bleachbit/GUI.py:426 msgid "Program to clean unnecessary files" msgstr "" #: ../bleachbit/GUI.py:436 msgid "" "GNU General Public License version 3 or later.\n" "See http://www.gnu.org/licenses/gpl-3.0.txt" msgstr "" #. TRANSLATORS: Maintain the names of translators here. #. Launchpad does this automatically for translations #. typed in Launchpad. This is a special string shown #. in the 'About' box. #: ../bleachbit/GUI.py:442 msgid "translator-credits" msgstr "" "Launchpad Contributions:\n" " DNS https://launchpad.net/~dns\n" " Tee Zocker https://launchpad.net/~teezocker\n" " tbds https://launchpad.net/~tbds-deactivatedaccount" #: ../bleachbit/GUI.py:454 msgid "System information" msgstr "" #: ../bleachbit/GUI.py:527 msgid "Choose files to shred" msgstr "" #: ../bleachbit/GUI.py:530 msgid "Choose folder to shred" msgstr "" #: ../bleachbit/GUI.py:594 ../bleachbit/GuiPreferences.py:197 #: ../bleachbit/GuiPreferences.py:326 ../bleachbit/GuiPreferences.py:367 msgid "Choose a folder" msgstr "" #. TRANSLATORS: this is the context menu #: ../bleachbit/GUI.py:627 msgid "Preview" msgstr "" #: ../bleachbit/GUI.py:734 msgid "_Shred Files" msgstr "" #: ../bleachbit/GUI.py:736 msgid "Sh_red Folders" msgstr "" #: ../bleachbit/GUI.py:738 msgid "_Wipe Free Space" msgstr "" #: ../bleachbit/GUI.py:740 msgid "S_hred Settings and Quit" msgstr "" #: ../bleachbit/GUI.py:742 msgid "_Quit" msgstr "" #: ../bleachbit/GUI.py:744 msgid "_File" msgstr "" #: ../bleachbit/GUI.py:746 ../bleachbit/GuiPreferences.py:58 msgid "Preferences" msgstr "" #: ../bleachbit/GUI.py:747 msgid "_Edit" msgstr "" #: ../bleachbit/GUI.py:748 msgid "Help Contents" msgstr "" #: ../bleachbit/GUI.py:751 msgid "_Release Notes" msgstr "" #: ../bleachbit/GUI.py:754 msgid "_System Information" msgstr "" #: ../bleachbit/GUI.py:757 msgid "_About" msgstr "" #: ../bleachbit/GUI.py:758 msgid "_Help" msgstr "" #: ../bleachbit/GUI.py:783 msgctxt "button" msgid "Preview" msgstr "" #: ../bleachbit/GUI.py:788 msgid "Preview files in the selected operations (without deleting any files)" msgstr "" #: ../bleachbit/GUI.py:798 msgctxt "button" msgid "Clean" msgstr "" #: ../bleachbit/GUI.py:802 msgid "Clean files in the selected operations" msgstr "" #: ../bleachbit/GUI.py:893 msgid "Error when checking for updates: " msgstr "" #: ../bleachbit/GUI.py:932 msgid "" "Error loading the SQLite module: the antivirus software may be blocking it." msgstr "" #: ../bleachbit/GUI.py:935 msgid "" "You are running BleachBit with administrative privileges for cleaning shared " "parts of the system, and references to the user profile folder will clean " "only the root account." msgstr "" #: ../bleachbit/GUI.py:940 msgid "" "Run BleachBit with administrator privileges to improve the accuracy of " "overwriting the contents of files." msgstr "" #: ../bleachbit/GuiPreferences.py:64 msgid "General" msgstr "" #: ../bleachbit/GuiPreferences.py:67 msgid "Drives" msgstr "" #: ../bleachbit/GuiPreferences.py:70 msgid "Languages" msgstr "" #: ../bleachbit/GuiPreferences.py:72 msgid "Whitelist" msgstr "" #: ../bleachbit/GuiPreferences.py:117 msgid "Check periodically for software updates via the Internet" msgstr "" #: ../bleachbit/GuiPreferences.py:122 msgid "" "If an update is found, you will be given the option to view information " "about it. Then, you may manually download and install the update." msgstr "" #: ../bleachbit/GuiPreferences.py:128 msgid "Check for new beta releases" msgstr "" #: ../bleachbit/GuiPreferences.py:137 msgid "Download and update cleaners from community (winapp2.ini)" msgstr "" #. TRANSLATORS: This means to hide cleaners which would do #. nothing. For example, if Firefox were never used on #. this system, this option would hide Firefox to simplify #. the list of cleaners. #: ../bleachbit/GuiPreferences.py:151 msgid "Hide irrelevant cleaners" msgstr "" #. TRANSLATORS: Overwriting is the same as shredding. It is a way #. to prevent recovery of the data. You could also translate #. 'Shred files to prevent recovery.' #: ../bleachbit/GuiPreferences.py:159 msgid "Overwrite contents of files to prevent recovery" msgstr "" #: ../bleachbit/GuiPreferences.py:163 msgid "" "Overwriting is ineffective on some file systems and with certain BleachBit " "operations. Overwriting is significantly slower." msgstr "" #: ../bleachbit/GuiPreferences.py:166 msgid "Start BleachBit with computer" msgstr "" #: ../bleachbit/GuiPreferences.py:172 msgid "Exit after cleaning" msgstr "" #: ../bleachbit/GuiPreferences.py:178 msgid "Confirm before delete" msgstr "" #: ../bleachbit/GuiPreferences.py:186 msgid "Use IEC sizes (1 KiB = 1024 bytes) instead of SI (1 kB = 1000 bytes)" msgstr "" #: ../bleachbit/GuiPreferences.py:221 msgid "" "Choose a writable folder for each drive for which to overwrite free space." msgstr "" #. TRANSLATORS: In the preferences dialog, this button adds a path to #. the list of paths #: ../bleachbit/GuiPreferences.py:243 msgctxt "button" msgid "Add" msgstr "" #. TRANSLATORS: In the preferences dialog, this button removes a path #. from the list of paths #: ../bleachbit/GuiPreferences.py:247 ../bleachbit/GuiPreferences.py:458 msgctxt "button" msgid "Remove" msgstr "" #: ../bleachbit/GuiPreferences.py:272 msgid "All languages will be deleted except those checked." msgstr "" #: ../bleachbit/GuiPreferences.py:288 msgid "Preserve" msgstr "" #: ../bleachbit/GuiPreferences.py:292 msgid "Code" msgstr "" #: ../bleachbit/GuiPreferences.py:313 ../bleachbit/GuiPreferences.py:354 msgid "Choose a file" msgstr "" #: ../bleachbit/GuiPreferences.py:320 ../bleachbit/GuiPreferences.py:361 #: ../bleachbit/GuiPreferences.py:405 msgid "File" msgstr "" #: ../bleachbit/GuiPreferences.py:334 ../bleachbit/GuiPreferences.py:375 #: ../bleachbit/GuiPreferences.py:407 msgid "Folder" msgstr "" #: ../bleachbit/GuiPreferences.py:417 msgid "Theses paths will not be deleted or modified." msgstr "" #: ../bleachbit/GuiPreferences.py:420 msgid "These locations can be selected for deletion." msgstr "" #: ../bleachbit/GuiPreferences.py:428 msgid "Type" msgstr "" #. TRANSLATORS: In the tree view "Path" is used generically to refer to a #. file, a folder, or a pattern describing either #: ../bleachbit/GuiPreferences.py:434 msgid "Path" msgstr "" #: ../bleachbit/GuiPreferences.py:446 msgctxt "button" msgid "Add file" msgstr "" #: ../bleachbit/GuiPreferences.py:452 msgctxt "button" msgid "Add folder" msgstr "" bleachbit-2.0/po/ko.po0000644000175000017500000013435313245436307013001 0ustar hlehle# Korean translation for bleachbit # Copyright (c) 2009 Rosetta Contributors and Canonical Ltd 2009 # This file is distributed under the same license as the bleachbit package. # FIRST AUTHOR , 2009. # msgid "" msgstr "" "Project-Id-Version: bleachbit\n" "Report-Msgid-Bugs-To: FULL NAME \n" "POT-Creation-Date: 2015-12-15 17:12-0700\n" "PO-Revision-Date: 2016-02-02 10:24+0000\n" "Last-Translator: halcyonest \n" "Language-Team: Korean \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=1; plural=0;\n" "X-Launchpad-Export-Date: 2016-02-03 03:36+0000\n" "X-Generator: Launchpad (build 17908)\n" #: ../cleaners/mc.xml ../cleaners/tortoisesvn.xml ../cleaners/vim.xml #: ../cleaners/safari.xml ../cleaners/links2.xml ../cleaners/seamonkey.xml #: ../cleaners/realplayer.xml ../cleaners/windows_defender.xml #: ../cleaners/d4x.xml ../cleaners/sqlite3.xml #: ../cleaners/internet_explorer.xml ../cleaners/libreoffice.xml #: ../cleaners/easytag.xml ../cleaners/bash.xml ../cleaners/nautilus.xml #: ../cleaners/octave.xml ../cleaners/elinks.xml ../cleaners/chromium.xml #: ../cleaners/google_chrome.xml msgid "History" msgstr "사용 기록" #: ../cleaners/mc.xml ../cleaners/tortoisesvn.xml ../cleaners/links2.xml #: ../cleaners/realplayer.xml ../cleaners/d4x.xml ../cleaners/libreoffice.xml #: ../cleaners/easytag.xml ../cleaners/nautilus.xml ../cleaners/gnome.xml #: ../bleachbit/Cleaner.py:351 ../bleachbit/Cleaner.py:425 #: ../bleachbit/Cleaner.py:434 msgid "Delete the usage history" msgstr "사용 기록을 삭제합니다" #: ../cleaners/gpodder.xml ../cleaners/hippo_opensim_viewer.xml #: ../cleaners/thumbnails.xml ../cleaners/safari.xml ../cleaners/emesene.xml #: ../cleaners/liferea.xml ../cleaners/seamonkey.xml ../cleaners/vuze.xml #: ../cleaners/yahoo_messenger.xml ../cleaners/pidgin.xml #: ../cleaners/adobe_reader.xml ../cleaners/evolution.xml #: ../cleaners/tremulous.xml ../cleaners/libreoffice.xml ../cleaners/xine.xml #: ../cleaners/nexuiz.xml ../cleaners/exaile.xml ../cleaners/opera.xml #: ../cleaners/amsn.xml ../cleaners/gftp.xml ../cleaners/miro.xml #: ../cleaners/beagle.xml ../cleaners/kde.xml ../cleaners/epiphany.xml #: ../cleaners/flash.xml ../cleaners/secondlife_viewer.xml #: ../cleaners/java.xml ../cleaners/chromium.xml ../cleaners/audacious.xml #: ../cleaners/rhythmbox.xml ../cleaners/google_chrome.xml #: ../cleaners/thunderbird.xml ../bleachbit/Cleaner.py:194 #: ../bleachbit/Cleaner.py:372 ../bleachbit/Cleaner.py:457 msgid "Cache" msgstr "캐시" #: ../cleaners/gpodder.xml ../cleaners/yum.xml #: ../cleaners/hippo_opensim_viewer.xml ../cleaners/thumbnails.xml #: ../cleaners/windows_explorer.xml ../cleaners/liferea.xml #: ../cleaners/vuze.xml ../cleaners/yahoo_messenger.xml ../cleaners/pidgin.xml #: ../cleaners/adobe_reader.xml ../cleaners/evolution.xml #: ../cleaners/libreoffice.xml ../cleaners/apt.xml ../cleaners/xine.xml #: ../cleaners/nexuiz.xml ../cleaners/exaile.xml ../cleaners/amsn.xml #: ../cleaners/gftp.xml ../cleaners/miro.xml ../cleaners/beagle.xml #: ../cleaners/kde.xml ../cleaners/flash.xml ../cleaners/secondlife_viewer.xml #: ../cleaners/java.xml ../cleaners/audacious.xml ../cleaners/rhythmbox.xml #: ../bleachbit/Cleaner.py:372 ../bleachbit/Cleaner.py:457 #: ../bleachbit/Cleaner.py:491 ../bleachbit/Cleaner.py:493 msgid "Delete the cache" msgstr "캐시를 삭제합니다" #. TRANSLATORS: Vacuum is a verb. The term is jargon #. from the SQLite database. Microsoft Access uses #. the term 'Compact Database' (which you may translate #. instead). Another synonym is 'defragment.' #: ../cleaners/gpodder.xml ../cleaners/yum.xml ../cleaners/safari.xml #: ../cleaners/liferea.xml ../cleaners/chromium.xml #: ../cleaners/google_chrome.xml ../cleaners/thunderbird.xml #: ../bleachbit/Cleaner.py:216 ../bleachbit/Cleaner.py:362 #: ../bleachbit/Action.py:365 msgid "Vacuum" msgstr "최적화" #: ../cleaners/gpodder.xml ../cleaners/yum.xml ../cleaners/safari.xml #: ../cleaners/liferea.xml ../cleaners/chromium.xml #: ../cleaners/google_chrome.xml ../cleaners/thunderbird.xml #: ../bleachbit/Cleaner.py:217 msgid "" "Clean database fragmentation to reduce space and improve speed without " "removing any data" msgstr "데이터베이스에 차지하는 공간을 줄이고 속도를 향상하기 위해 데이터 삭제 없이 데이터베이스를 청소합니다" #: ../cleaners/yum.xml ../cleaners/apt.xml msgid "Package manager" msgstr "패키지 관리자" #: ../cleaners/warzone2100.xml ../cleaners/hippo_opensim_viewer.xml #: ../cleaners/gl-117.xml ../cleaners/tremulous.xml ../cleaners/nexuiz.xml #: ../cleaners/secondlife_viewer.xml msgid "Game" msgstr "게임" #: ../cleaners/warzone2100.xml ../cleaners/hippo_opensim_viewer.xml #: ../cleaners/teamviewer.xml ../cleaners/realplayer.xml ../cleaners/vuze.xml #: ../cleaners/yahoo_messenger.xml ../cleaners/amule.xml #: ../cleaners/easytag.xml ../cleaners/exaile.xml ../cleaners/screenlets.xml #: ../cleaners/gftp.xml ../cleaners/miro.xml ../cleaners/audacious.xml #: ../bleachbit/Cleaner.py:488 msgid "Logs" msgstr "로그" #: ../cleaners/warzone2100.xml ../cleaners/hippo_opensim_viewer.xml #: ../cleaners/teamviewer.xml ../cleaners/realplayer.xml ../cleaners/vuze.xml #: ../cleaners/yahoo_messenger.xml ../cleaners/amule.xml #: ../cleaners/exaile.xml ../cleaners/screenlets.xml ../cleaners/gftp.xml #: ../cleaners/miro.xml ../cleaners/audacious.xml ../bleachbit/Cleaner.py:488 msgid "Delete the logs" msgstr "로그를 삭제합니다" #: ../cleaners/thumbnails.xml ../cleaners/windows_explorer.xml msgid "Thumbnails" msgstr "섬네일" #: ../cleaners/thumbnails.xml msgid "Icons for files on the system" msgstr "시스템에 있는 파일용 아이콘" #: ../cleaners/vim.xml ../cleaners/gedit.xml msgid "Editor" msgstr "편집기" #: ../cleaners/vim.xml msgid "" "Delete ~/.viminfo which includes file history, command history, and buffers" msgstr "파일 기록, 명령어 사용 기록, 버퍼 등의 정보를 포함한 ~/.viminfo를 삭제합니다" #: ../cleaners/filezilla.xml ../cleaners/transmission.xml ../cleaners/vuze.xml #: ../cleaners/amule.xml ../cleaners/gftp.xml msgid "File transfer client" msgstr "파일 전송 클라이언트" #: ../cleaners/filezilla.xml ../cleaners/paint.xml #: ../cleaners/windows_media_player.xml ../cleaners/windows_explorer.xml #: ../cleaners/teamviewer.xml ../cleaners/microsoft_office.xml #: ../cleaners/vlc.xml ../cleaners/adobe_reader.xml ../cleaners/winamp.xml #: ../cleaners/winzip.xml ../cleaners/winrar.xml ../cleaners/audacious.xml #: ../cleaners/wordpad.xml ../bleachbit/Cleaner.py:373 msgid "Most recently used" msgstr "최근에 사용된" #: ../cleaners/filezilla.xml ../cleaners/windows_explorer.xml #: ../cleaners/gwenview.xml ../cleaners/adobe_reader.xml ../cleaners/gedit.xml #: ../cleaners/kde.xml ../cleaners/audacious.xml ../bleachbit/Cleaner.py:374 #: ../bleachbit/Cleaner.py:471 msgid "Delete the list of recently used documents" msgstr "최근에 사용된 문서 목록을 삭제합니다" #: ../cleaners/skype.xml ../cleaners/xchat.xml ../cleaners/emesene.xml #: ../cleaners/yahoo_messenger.xml ../cleaners/pidgin.xml ../cleaners/amsn.xml msgid "Chat client" msgstr "채팅 클라이언트" #: ../cleaners/skype.xml ../cleaners/xchat.xml ../cleaners/emesene.xml #: ../cleaners/seamonkey.xml ../cleaners/yahoo_messenger.xml #: ../cleaners/pidgin.xml ../cleaners/amsn.xml msgid "Chat logs" msgstr "채팅 로그" #: ../cleaners/skype.xml ../cleaners/xchat.xml ../cleaners/emesene.xml #: ../cleaners/seamonkey.xml ../cleaners/yahoo_messenger.xml #: ../cleaners/pidgin.xml ../cleaners/amsn.xml msgid "Delete the chat logs" msgstr "채팅 로그를 삭제합니다" #: ../cleaners/skype.xml msgid "Installers" msgstr "설치 프로그램" #: ../cleaners/skype.xml msgid "Delete cached patches and installers" msgstr "캐시된 패치와 설치 프로그램을 삭제합니다" #: ../cleaners/safari.xml ../cleaners/links2.xml ../cleaners/seamonkey.xml #: ../cleaners/konqueror.xml ../cleaners/internet_explorer.xml #: ../cleaners/opera.xml ../cleaners/epiphany.xml ../cleaners/elinks.xml #: ../cleaners/chromium.xml ../cleaners/google_chrome.xml #: ../bleachbit/Cleaner.py:228 msgid "Web browser" msgstr "웹 브라우저" #: ../cleaners/safari.xml ../cleaners/seamonkey.xml ../cleaners/opera.xml #: ../cleaners/epiphany.xml ../cleaners/chromium.xml #: ../cleaners/google_chrome.xml ../cleaners/thunderbird.xml #: ../bleachbit/Cleaner.py:195 msgid "Delete the web cache, which reduces time to display revisited pages" msgstr "재방문한 페이지를 표시하는 데 걸리는 시간을 단축해주는, 웹 캐시 정보를 삭제합니다" #: ../cleaners/safari.xml ../cleaners/liferea.xml ../cleaners/seamonkey.xml #: ../cleaners/realplayer.xml ../cleaners/konqueror.xml #: ../cleaners/internet_explorer.xml ../cleaners/opera.xml #: ../cleaners/epiphany.xml ../cleaners/flash.xml ../cleaners/silverlight.xml #: ../cleaners/chromium.xml ../cleaners/google_chrome.xml #: ../cleaners/thunderbird.xml ../bleachbit/Cleaner.py:196 msgid "Cookies" msgstr "쿠키" #: ../cleaners/safari.xml ../cleaners/liferea.xml ../cleaners/seamonkey.xml #: ../cleaners/realplayer.xml ../cleaners/konqueror.xml #: ../cleaners/internet_explorer.xml ../cleaners/opera.xml #: ../cleaners/epiphany.xml ../cleaners/flash.xml ../cleaners/silverlight.xml #: ../cleaners/chromium.xml ../cleaners/google_chrome.xml #: ../cleaners/thunderbird.xml ../bleachbit/Cleaner.py:197 msgid "" "Delete cookies, which contain information such as web site preferences, " "authentication, and tracking identification" msgstr "웹사이트 환경 설정, 인증, 신원 추적 등의 정보가 들어있는, 쿠키를 삭제합니다." #: ../cleaners/safari.xml ../cleaners/konqueror.xml #: ../cleaners/internet_explorer.xml ../cleaners/opera.xml #: ../bleachbit/Cleaner.py:215 msgid "List of visited web pages" msgstr "방문한 웹 페이지 목록" #. Torrent software can block a list of IP addresses, such as those that may belong to malware or anti-piracy organizations #: ../cleaners/transmission.xml msgid "Blocklists" msgstr "차단 목록" #: ../cleaners/transmission.xml ../cleaners/windows_defender.xml #: ../cleaners/beagle.xml ../cleaners/thunderbird.xml ../cleaners/deepscan.xml #: ../bleachbit/Cleaner.py:199 msgid "Delete the files" msgstr "파일을 삭제합니다" #: ../cleaners/transmission.xml msgid "Blocklists will need update to work." msgstr "차단 목록을 실행하기 위해서는 업데이트를 하셔야 합니다." #: ../cleaners/transmission.xml msgid "Torrents" msgstr "토렌트 파일" #: ../cleaners/transmission.xml msgid "Delete the torrents (just the metadata but not the files described)" msgstr "토렌트 파일을 삭제합니다(단지 메타데이터일 뿐이지만 설명되지 않은 파일입니다)" #: ../cleaners/paint.xml ../cleaners/windows_media_player.xml #: ../cleaners/windows_explorer.xml ../cleaners/teamviewer.xml #: ../cleaners/microsoft_office.xml ../cleaners/vlc.xml ../cleaners/winamp.xml #: ../cleaners/winzip.xml ../cleaners/winrar.xml ../cleaners/wordpad.xml msgid "Delete the most recently used list" msgstr "가장 최근에 사용된 파일 목록을 삭제합니다" #: ../cleaners/emesene.xml msgid "Delete the avatars and emoticons cache" msgstr "아바타와 이모티콘 캐시를 삭제합니다" #: ../cleaners/windows_media_player.xml ../cleaners/realplayer.xml #: ../cleaners/vlc.xml ../cleaners/winamp.xml msgid "Media player" msgstr "미디어 플레이어" #: ../cleaners/windows_explorer.xml ../cleaners/nautilus.xml msgid "File manager" msgstr "파일 관리자" #: ../cleaners/windows_explorer.xml ../cleaners/gwenview.xml #: ../cleaners/gedit.xml ../cleaners/kde.xml ../bleachbit/Cleaner.py:470 msgid "Recent documents list" msgstr "최근 문서 목록" #. In Windows 'Run' is the dialog in the Start menu #. In GNOME 'Run' is the dialog shown when typing ALT+F2' #: ../cleaners/windows_explorer.xml ../cleaners/gnome.xml msgid "Run" msgstr "실행" #: ../cleaners/windows_explorer.xml ../cleaners/opera.xml #: ../cleaners/gnome.xml ../cleaners/google_toolbar.xml msgid "Search history" msgstr "검색 기록" #: ../cleaners/windows_explorer.xml ../cleaners/opera.xml #: ../cleaners/gnome.xml ../cleaners/google_toolbar.xml msgid "Delete the search history" msgstr "검색 기록을 삭제합니다" #: ../cleaners/gl-117.xml ../cleaners/microsoft_office.xml #: ../cleaners/beagle.xml ../cleaners/secondlife_viewer.xml #: ../cleaners/x11.xml msgid "Debug logs" msgstr "디버그 로그" #: ../cleaners/gl-117.xml ../cleaners/microsoft_office.xml #: ../cleaners/easytag.xml ../cleaners/beagle.xml #: ../cleaners/secondlife_viewer.xml ../cleaners/x11.xml msgid "Delete the debug logs" msgstr "디버그 로그를 삭제합니다" #: ../cleaners/google_earth.xml ../cleaners/winetricks.xml #: ../cleaners/vuze.xml ../cleaners/adobe_reader.xml ../cleaners/amule.xml #: ../cleaners/wine.xml ../cleaners/internet_explorer.xml ../cleaners/gimp.xml #: ../cleaners/kde.xml ../cleaners/deepscan.xml ../bleachbit/Cleaner.py:522 msgid "Temporary files" msgstr "임시 파일" #: ../cleaners/google_earth.xml ../cleaners/winetricks.xml #: ../cleaners/vuze.xml ../cleaners/adobe_reader.xml ../cleaners/amule.xml #: ../cleaners/wine.xml ../cleaners/internet_explorer.xml ../cleaners/gimp.xml #: ../cleaners/kde.xml ../cleaners/deepscan.xml ../bleachbit/Cleaner.py:522 msgid "Delete the temporary files" msgstr "임시 파일을 삭제합니다" #: ../cleaners/seamonkey.xml ../cleaners/opera.xml ../bleachbit/Cleaner.py:203 msgid "Download history" msgstr "내려받기 기록" #: ../cleaners/seamonkey.xml ../cleaners/opera.xml ../bleachbit/Cleaner.py:203 msgid "List of files downloaded" msgstr "내려받은 파일 목록" #: ../cleaners/seamonkey.xml msgid "Delete the list of visited web pages" msgstr "방문한 웹 페이지 목록을 삭제합니다" #: ../cleaners/vuze.xml ../cleaners/deepscan.xml ../bleachbit/Cleaner.py:192 msgid "Backup files" msgstr "백업 파일" #: ../cleaners/vuze.xml ../cleaners/deepscan.xml ../bleachbit/Cleaner.py:193 msgid "Delete the backup files" msgstr "백업 파일을 삭제합니다" #: ../cleaners/konqueror.xml ../cleaners/opera.xml ../cleaners/chromium.xml msgid "Current session" msgstr "현재 세션" #: ../cleaners/konqueror.xml ../cleaners/opera.xml ../cleaners/chromium.xml msgid "Delete the current session" msgstr "현재 세션을 삭제합니다" #: ../cleaners/konqueror.xml ../cleaners/opera.xml ../bleachbit/Cleaner.py:215 msgid "URL history" msgstr "URL 기록" #: ../cleaners/microsoft_office.xml ../cleaners/libreoffice.xml #: ../bleachbit/Cleaner.py:377 msgid "Office suite" msgstr "오피스 프로그램" #: ../cleaners/windows_defender.xml msgid "Anti-virus" msgstr "" #: ../cleaners/adobe_reader.xml msgid "Document viewer" msgstr "문서 열람용 소프트웨어" #: ../cleaners/evolution.xml ../cleaners/thunderbird.xml msgid "Email client" msgstr "이메일 클라이언트" #: ../cleaners/tremulous.xml msgid "Delete the list of game servers" msgstr "게임 서버 목록을 삭제합니다" #: ../cleaners/sqlite3.xml ../cleaners/bash.xml ../cleaners/octave.xml msgid "Delete the command history" msgstr "명령어 사용 기록을 삭제합니다" #: ../cleaners/wine.xml msgid "Compatibility layer for Windows software" msgstr "윈도즈 소프트웨어용 호환성 계층" #: ../cleaners/internet_explorer.xml ../cleaners/chromium.xml #: ../cleaners/google_chrome.xml ../bleachbit/Cleaner.py:204 msgid "Form history" msgstr "양식 기록" #: ../cleaners/internet_explorer.xml ../bleachbit/Cleaner.py:205 msgid "A history of forms entered in web sites and in the Search bar" msgstr "웹사이트와 검색 창에 입력된 양식의 기록" #. This software edits metadata tags, such as title and artist, in audio files #: ../cleaners/easytag.xml msgid "Audio files tagger" msgstr "오디오 파일 태거" #: ../cleaners/apt.xml msgid "Delete obsolete files" msgstr "쓸모없게 된 파일을 삭제합니다" #: ../cleaners/apt.xml msgid "Package lists" msgstr "패키지 목록" #: ../cleaners/xine.xml ../cleaners/miro.xml ../cleaners/flash.xml msgid "Multimedia viewer" msgstr "멀티미디어 열람용 소프트웨어" #: ../cleaners/recoll.xml ../cleaners/beagle.xml msgid "Search tool" msgstr "검색 도구" #: ../cleaners/recoll.xml ../cleaners/beagle.xml ../cleaners/thunderbird.xml msgid "Index" msgstr "색인" #: ../cleaners/recoll.xml msgid "" "Delete the search index, a database of words and the files they contain" msgstr "파일에 포함된 단어의 데이터베이스인, 검색 색인을 삭제합니다" #: ../cleaners/gimp.xml msgid "Graphics editor" msgstr "" #: ../cleaners/exaile.xml msgid "Downloaded podcasts" msgstr "내려받은 팟캐스트 파일" #: ../cleaners/exaile.xml msgid "Delete downloaded podcasts" msgstr "내려받은 팟캐스트 파일을 삭제합니다" #: ../cleaners/bash.xml msgid "Shell" msgstr "셸" #. TRANSLATORS: DOM = Document Object Model. #: ../cleaners/opera.xml ../cleaners/chromium.xml #: ../cleaners/google_chrome.xml ../bleachbit/Cleaner.py:201 msgid "DOM Storage" msgstr "DOM 저장소" #: ../cleaners/opera.xml ../cleaners/chromium.xml #: ../cleaners/google_chrome.xml ../bleachbit/Cleaner.py:201 msgid "Delete HTML5 cookies" msgstr "HTML5 쿠키를 삭제합니다." #: ../cleaners/opera.xml ../cleaners/epiphany.xml ../cleaners/chromium.xml #: ../cleaners/google_chrome.xml ../cleaners/thunderbird.xml #: ../bleachbit/Cleaner.py:210 msgid "Passwords" msgstr "암호" #: ../cleaners/opera.xml ../cleaners/epiphany.xml ../cleaners/chromium.xml #: ../cleaners/google_chrome.xml ../cleaners/thunderbird.xml #: ../bleachbit/Cleaner.py:211 msgid "" "A database of usernames and passwords as well as a list of sites that should " "not store passwords" msgstr "사용자 이름 및 암호와 암호를 저장하지 않는 사이트 정보 목록의 데이터베이스" #: ../cleaners/opera.xml ../cleaners/epiphany.xml ../cleaners/chromium.xml #: ../cleaners/google_chrome.xml ../cleaners/thunderbird.xml #: ../bleachbit/Cleaner.py:213 msgid "This option will delete your saved passwords." msgstr "이 선택 사항은 당신이 저장한 암호를 삭제할 것입니다." #: ../cleaners/nautilus.xml msgid "Custom folders will be reset." msgstr "선택 폴더들이 재설정 됩니다." #: ../cleaners/gnome.xml ../cleaners/kde.xml msgid "Desktop environment" msgstr "" #: ../cleaners/screenlets.xml msgid "Widgets for the desktop" msgstr "바탕 화면을 위한 위젯들" #: ../cleaners/epiphany.xml msgid "Places" msgstr "위치" #: ../cleaners/epiphany.xml msgid "" "A database of URLs including bookmarks, favicons, and a history of visited " "web sites" msgstr "바로찾기, 즐겨찾기 아이콘, 방문한 웹사이트 정보를 포함하는 URL 데이터베이스" #: ../cleaners/epiphany.xml msgid "This option deletes all bookmarks." msgstr "이 선택 사항은 모든 바로찾기를 삭제합니다." #: ../cleaners/winrar.xml msgid "File archiver" msgstr "" #: ../cleaners/elinks.xml msgid "Delete the cookies, visited URLs, and search history" msgstr "쿠키 파일, 방문한 URL, 검색 기록을 삭제합니다" #: ../cleaners/chromium.xml ../cleaners/google_chrome.xml msgid "A history of forms entered in web sites" msgstr "웹사이트에 입력한 기록" #: ../cleaners/chromium.xml ../cleaners/google_chrome.xml msgid "" "Delete the history which includes visited sites, downloads, and thumbnails" msgstr "방문한 사이트, 내려받기, 및 섬네일을 포함한 사용 기록을 삭제합니다" #: ../cleaners/chromium.xml ../cleaners/google_chrome.xml msgid "Search engines" msgstr "검색 엔진" #. 'Factory' means a search engine that is installed by default 'from the factory,' but this is different than a 'default search engine' https://lists.launchpad.net/launchpad-translators/msg00283.html #: ../cleaners/chromium.xml ../cleaners/google_chrome.xml msgid "" "Reset the search engine usage history and delete non-factory search engines, " "some of which are added automatically" msgstr "검색 엔진 사용 기록 초기화 및 비 공정 검색 엔진 삭제는, 자동으로 추가된 요소 중 하나입니다." #: ../cleaners/audacious.xml msgid "Audio player" msgstr "오디오 플레이어" #: ../cleaners/google_chrome.xml msgid "Session" msgstr "세션" #: ../cleaners/google_chrome.xml msgid "Delete the current and last sessions" msgstr "현재 그리고 마지막 세션을 삭제합니다" #: ../cleaners/x11.xml msgid "Windowing system" msgstr "윈도잉 시스템" #: ../cleaners/wordpad.xml msgid "Word processor" msgstr "워드 프로세서" #: ../cleaners/deepscan.xml msgid "Deep scan" msgstr "정밀 검사" #: ../cleaners/deepscan.xml msgid "Clean files widely scattered across the disk" msgstr "" #: ../cleaners/deepscan.xml msgid "Inspect the preview for any files you want to keep." msgstr "보존하려는 파일에 대해 미리 보기 하며 검사합니다." #: ../cleaners/deepscan.xml msgid "This option is slow." msgstr "이 선택 사항은 느립니다." #: ../bleachbit.desktop msgid "Unnecessary file cleaner" msgstr "불필요한 파일 청소기" #: ../bleachbit.desktop msgid "Free space and maintain privacy" msgstr "자동 청소 및 개인 정보를 유지합니다" #. TRANSLATORS: This is the label in the log indicating was #. skipped because it matches the whitelist #: ../bleachbit/Command.py:44 msgid "Skip" msgstr "건너뛰기" #. TRANSLATORS: This is the label in the log indicating will be #. deleted (for previews) or was actually deleted #: ../bleachbit/Command.py:74 msgid "Delete" msgstr "삭제하기" #. TRANSLATORS: The file will be deleted when the #. system reboots #: ../bleachbit/Command.py:95 msgid "Mark for deletion" msgstr "지울 것을 표시합니다" #. TRANSLATORS: Parts of this file will be deleted #: ../bleachbit/Command.py:189 ../bleachbit/Command.py:223 #: ../bleachbit/Action.py:222 ../bleachbit/Action.py:235 #: ../bleachbit/Action.py:248 ../bleachbit/Action.py:261 #: ../bleachbit/Action.py:274 msgid "Clean file" msgstr "파일을 청소합니다" #. TRANSLATORS: The file will be truncated to 0 bytes in length #: ../bleachbit/Command.py:265 msgid "Truncate" msgstr "잘라내기" #: ../bleachbit/Command.py:308 msgid "Delete registry key" msgstr "등록된 키를 삭제합니다" #: ../bleachbit/Unix.py:348 ../bleachbit/Unix.py:378 ../bleachbit/Unix.py:568 #, python-format msgid "Executable not found: %s" msgstr "실행파일이 존재하지 않습니다: %s" #. TRANSLATORS: %s expands to a name such as 'Firefox' or 'System'. #: ../bleachbit/Unix.py:565 ../bleachbit/Worker.py:141 #, python-format msgid "" "%s cannot be cleaned because it is currently running. Close it, and try " "again." msgstr "%s은(는) 현재 실행 중이므로 청소할 수 없습니다. 이것을 닫으시고, 다시 실행하시기 바랍니다." #: ../bleachbit/GuiBasic.py:112 msgid "Delete confirmation" msgstr "삭제 확인" #: ../bleachbit/GuiBasic.py:122 msgid "" "Are you sure you want to permanently delete files according to the selected " "operations? The actual files that will be deleted may have changed since " "you ran the preview." msgstr "" "정말 당신이 선택한 작업에 따라 파일들을 영구히 삭제하시는 걸 원하십니까? 당신이 미리 보기를 실행하셨으므로 삭제될 실제 파일들은 변경될 " "수 있습니다." #: ../bleachbit/GuiBasic.py:125 msgid "Are you sure you want to permanently delete these files?" msgstr "정말로 당신은 이 파일들을 영구적으로 삭제하시는 걸 원하십니까?" #: ../bleachbit/GuiBasic.py:162 #, python-format msgid "" "Because you are running as root, please manually open this link in a web " "browser:\n" "%s" msgstr "" "현재 당신이 루트로 실행하고 있으므로, 웹 브라우저에서 수동으로 이 링크를 여십시오.:\n" "%s" #. TRANSLATORS: %s expands to bleachbit.sourceforge.net or similar #: ../bleachbit/GuiBasic.py:174 #, python-format msgid "Open web browser to %s?" msgstr "%s를 웹 브라우저로 여시겠습니까?" #. TRANSLATORS: This is cleaner name for cleaners imported from winapp2.ini #: ../bleachbit/Winapp.py:43 msgid "Applications" msgstr "프로그램" #. TRANSLATORS: This is cleaner name for cleaners imported #. from winapp2.ini #: ../bleachbit/Winapp.py:46 msgid "Internet" msgstr "인터넷" #. TRANSLATORS: This is cleaner name for cleaners imported #. from winapp2.ini #: ../bleachbit/Winapp.py:49 msgid "Multimedia" msgstr "멀티미디어" #. TRANSLATORS: This is cleaner name for cleaners imported #. from winapp2.ini #: ../bleachbit/Winapp.py:52 msgid "Utilities" msgstr "유틸리티" #: ../bleachbit/Winapp.py:63 msgid "Games" msgstr "게임" #: ../bleachbit/Winapp.py:153 msgid "Imported from winapp2.ini" msgstr "winapp2.ini에서 가져왔습니다" #: ../bleachbit/Cleaner.py:199 msgid "Crash reports" msgstr "오류 보고서" #: ../bleachbit/Cleaner.py:206 msgid "Session restore" msgstr "세션 복원" #: ../bleachbit/Cleaner.py:207 msgid "Loads the initial session after the browser closes or crashes" msgstr "브라우저가 종료 또는 충돌된 후 초기 세션을 불러옵니다" #: ../bleachbit/Cleaner.py:209 msgid "Site preferences" msgstr "사이트 환경 설정" #: ../bleachbit/Cleaner.py:209 msgid "Settings for individual sites" msgstr "개별 사이트에 대한 설정" #. TRANSLATORS: desktop entries are .desktop files in Linux tha #. make up the application menu (the menu that shows BleachBit, #. Firefox, and others. The .desktop files also associate file #. types, so clicking on an .html file in Nautilus brings up #. Firefox. #. More information: #. http://standards.freedesktop.org/menu-spec/latest/index.html#introduction #: ../bleachbit/Cleaner.py:455 msgid "Broken desktop files" msgstr "올바르지 않은 데스크톱 파일" #: ../bleachbit/Cleaner.py:456 msgid "Delete broken application menu entries and file associations" msgstr "올바르지 않은 프로그램 메뉴 및 파일 연결을 삭제합니다" #. TRANSLATORS: Localizations are files supporting specific #. languages, so applications appear in Spanish, etc. #: ../bleachbit/Cleaner.py:460 msgid "Localizations" msgstr "국가별 설정" #: ../bleachbit/Cleaner.py:461 msgid "Delete files for unwanted languages" msgstr "불필요한 언어 파일들을 삭제합니다" #: ../bleachbit/Cleaner.py:463 msgid "Configure this option in the preferences." msgstr "환경 설정에서 이 선택 사항을 설정합니다." #: ../bleachbit/Cleaner.py:469 msgid "Rotated logs" msgstr "오래된 로그" #: ../bleachbit/Cleaner.py:469 msgid "Delete old system logs" msgstr "오래된 시스템 로그를 삭제합니다" #: ../bleachbit/Cleaner.py:472 msgid "Trash" msgstr "휴지통" #: ../bleachbit/Cleaner.py:472 msgid "Empty the trash" msgstr "휴지통을 비웁니다" #: ../bleachbit/Cleaner.py:478 ../bleachbit/Cleaner.py:629 #: ../bleachbit/Worker.py:189 msgid "Memory" msgstr "메모리" #. TRANSLATORS: 'free' means 'unallocated' #: ../bleachbit/Cleaner.py:480 msgid "Wipe the swap and free memory" msgstr "스와프 및 여유 메모리를 청소합니다" #: ../bleachbit/Cleaner.py:482 msgid "This option is experimental and may cause system problems." msgstr "이 선택 사항은 실험적이라 시스템에서 문제가 발생할 수 있습니다." #: ../bleachbit/Cleaner.py:490 msgid "Memory dump" msgstr "메모리 덤프" #: ../bleachbit/Cleaner.py:490 msgid "Delete the file memory.dmp" msgstr "memory.dmp 파일을 삭제합니다" #. TRANSLATORS: Prefetch is Microsoft Windows jargon. #: ../bleachbit/Cleaner.py:493 msgid "Prefetch" msgstr "미리 가져옵니다" #: ../bleachbit/Cleaner.py:495 msgid "Recycle bin" msgstr "휴지통" #: ../bleachbit/Cleaner.py:495 msgid "Empty the recycle bin" msgstr "휴지통을 비웁니다" #. TRANSLATORS: 'Update' is a noun, and 'Update uninstallers' is an option to delete #. the uninstallers for software updates. #: ../bleachbit/Cleaner.py:498 msgid "Update uninstallers" msgstr "업데이트 언인스톨러" #: ../bleachbit/Cleaner.py:499 msgid "" "Delete uninstallers for Microsoft updates including hotfixes, service packs, " "and Internet Explorer updates" msgstr "핫픽스, 서비스 팩, 인터넷 익스플로러 업데이트를 포함한 마이크로소프트 업데이트 제거 프로그램을 삭제합니다" #: ../bleachbit/Cleaner.py:506 ../bleachbit/Cleaner.py:722 msgid "Clipboard" msgstr "클립보드" #: ../bleachbit/Cleaner.py:507 msgid "" "The desktop environment's clipboard used for copy and paste operations" msgstr "복사 및 붙어 넣기 작업에 사용되는 데스크톱 환경의 클립보드" #. TRANSLATORS: "Custom" is an option allowing the user to specify which #. files and folders will be erased. #: ../bleachbit/Cleaner.py:514 ../bleachbit/GuiPreferences.py:63 msgid "Custom" msgstr "사용자 정의" #: ../bleachbit/Cleaner.py:515 msgid "Delete user-specified files and folders" msgstr "사용자별 파일 및 폴더를 삭제합니다" #. TRANSLATORS: 'free' means 'unallocated' #: ../bleachbit/Cleaner.py:517 msgid "Free disk space" msgstr "디스크 여유 공간을 청소합니다" #. TRANSLATORS: 'free' means 'unallocated' #: ../bleachbit/Cleaner.py:519 msgid "Overwrite free disk space to hide deleted files" msgstr "디스크 여유 공간을 덮어 씌어서 복구할 수 없도록 만듭니다" #: ../bleachbit/Cleaner.py:520 msgid "This option is very slow." msgstr "이 선택 사항은 매우 느립니다." #: ../bleachbit/Cleaner.py:524 msgid "The system in general" msgstr "일반적인 상황에서의 시스템" #: ../bleachbit/Cleaner.py:526 ../bleachbit/Cleaner.py:841 msgid "System" msgstr "시스템" #. TRANSLATORS: 'Free' means 'unallocated.' #. %s expands to a path such as C:\ or /tmp/ #: ../bleachbit/Cleaner.py:730 ../bleachbit/Cleaner.py:874 #, python-format msgid "Overwrite free disk space %s" msgstr "%s의 디스크 여유 공간을 덮어 씌어서 복구할 수 없도록 만듭니다" #: ../bleachbit/GuiPreferences.py:55 ../bleachbit/GUI.py:702 msgid "Preferences" msgstr "환경 설정" #: ../bleachbit/GuiPreferences.py:61 msgid "General" msgstr "일반 설정" #: ../bleachbit/GuiPreferences.py:64 msgid "Drives" msgstr "드라이브" #: ../bleachbit/GuiPreferences.py:67 msgid "Languages" msgstr "언어" #: ../bleachbit/GuiPreferences.py:69 msgid "Whitelist" msgstr "허용 목록" #: ../bleachbit/GuiPreferences.py:114 msgid "Check periodically for software updates via the Internet" msgstr "인터넷을 통해 주기적으로 소프트웨어 업데이트를 확인합니다" #: ../bleachbit/GuiPreferences.py:119 msgid "" "If an update is found, you will be given the option to view information " "about it. Then, you may manually download and install the update." msgstr "" "업데이트를 찾았다면, 이 업데이트에 관한 정보를 볼 수 있는 선택 사항이 당신에게 주어집니다. 그러고 나서, 당신은 수동으로 업데이트를 " "내려받기 및 설치할 수 있습니다." #: ../bleachbit/GuiPreferences.py:125 msgid "Check for new beta releases" msgstr "새로운 베타 버전을 확인합니다" #: ../bleachbit/GuiPreferences.py:134 msgid "Download and update cleaners from community (winapp2.ini)" msgstr "커뮤니티로부터(winapp2.ini) 청소기를 내려받기 및 업데이트를 합니다" #. TRANSLATORS: This means to hide cleaners which would do #. nothing. For example, if Firefox were never used on #. this system, this option would hide Firefox to simplify #. the list of cleaners. #: ../bleachbit/GuiPreferences.py:148 msgid "Hide irrelevant cleaners" msgstr "연관이 없는 청소기를 숨깁니다" #. TRANSLATORS: Overwriting is the same as shredding. It is a way #. to prevent recovery of the data. You could also translate #. 'Shred files to prevent recovery.' #: ../bleachbit/GuiPreferences.py:156 msgid "Overwrite files to hide contents" msgstr "내용을 덮어 씌어서 복구할 수 없도록 만듭니다" #: ../bleachbit/GuiPreferences.py:160 msgid "" "Overwriting is ineffective on some file systems and with certain BleachBit " "operations. Overwriting is significantly slower." msgstr "덮어 씌어서 삭제하는 것은 몇몇 파일 시스템과 블리치비트 작업에서 비효율적입니다. 이는 상당히 느린 과정입니다." #: ../bleachbit/GuiPreferences.py:163 msgid "Start BleachBit with computer" msgstr "컴퓨터가 시작할 때 블리치비트를 실행합니다" #: ../bleachbit/GuiPreferences.py:169 msgid "Exit after cleaning" msgstr "청소한 후 종료합니다" #: ../bleachbit/GuiPreferences.py:175 msgid "Confirm before delete" msgstr "삭제하기 전에 확인합니다" #: ../bleachbit/GuiPreferences.py:182 msgid "Use IEC sizes (1 KiB = 1024 bytes) instead of SI (1 kB = 1000 bytes)" msgstr "" #: ../bleachbit/GuiPreferences.py:193 ../bleachbit/GuiPreferences.py:322 #: ../bleachbit/GuiPreferences.py:363 ../bleachbit/GUI.py:588 msgid "Choose a folder" msgstr "폴더를 선택하십시오" #: ../bleachbit/GuiPreferences.py:217 msgid "" "Choose a writable folder for each drive for which to overwrite free space." msgstr "디스크 여유 공간을 덮어쓰려는 각 드라이브용 쓰기가 가능한 폴더를 선택하십시오." #. TRANSLATORS: In the preferences dialog, this button adds a path to #. the list of paths #: ../bleachbit/GuiPreferences.py:239 msgctxt "button" msgid "Add" msgstr "추가하기" #. TRANSLATORS: In the preferences dialog, this button removes a path #. from the list of paths #: ../bleachbit/GuiPreferences.py:243 ../bleachbit/GuiPreferences.py:454 msgctxt "button" msgid "Remove" msgstr "제거하기" #: ../bleachbit/GuiPreferences.py:268 msgid "All languages will be deleted except those checked." msgstr "표시된 언어 항목을 제외한 모든 언어 항목을 삭제합니다." #: ../bleachbit/GuiPreferences.py:284 msgid "Preserve" msgstr "유지하기" #: ../bleachbit/GuiPreferences.py:288 msgid "Code" msgstr "코드" #: ../bleachbit/GuiPreferences.py:292 ../bleachbit/GUI.py:131 msgid "Name" msgstr "이름" #: ../bleachbit/GuiPreferences.py:309 ../bleachbit/GuiPreferences.py:350 msgid "Choose a file" msgstr "파일을 선택하십시오" #: ../bleachbit/GuiPreferences.py:316 ../bleachbit/GuiPreferences.py:357 #: ../bleachbit/GuiPreferences.py:401 msgid "File" msgstr "파일" #: ../bleachbit/GuiPreferences.py:330 ../bleachbit/GuiPreferences.py:371 #: ../bleachbit/GuiPreferences.py:403 msgid "Folder" msgstr "폴더" #: ../bleachbit/GuiPreferences.py:413 msgid "Theses paths will not be deleted or modified." msgstr "이 경로들은 삭제하거나 변경되지 않을 것입니다." #: ../bleachbit/GuiPreferences.py:416 msgid "These locations can be selected for deletion." msgstr "이러한 위치는 삭제함으로 설정하실 수 있습니다." #: ../bleachbit/GuiPreferences.py:424 msgid "Type" msgstr "형식" #. TRANSLATORS: In the tree view "Path" is used generically to refer to a #. file, a folder, or a pattern describing either #: ../bleachbit/GuiPreferences.py:430 msgid "Path" msgstr "경로" #: ../bleachbit/GuiPreferences.py:442 msgctxt "button" msgid "Add file" msgstr "파일을 추가합니다" #: ../bleachbit/GuiPreferences.py:448 msgctxt "button" msgid "Add folder" msgstr "폴더를 추가합니다" #: ../bleachbit/RecognizeCleanerML.py:57 msgid "Security warning" msgstr "보안 경고" #: ../bleachbit/RecognizeCleanerML.py:70 msgid "" "These cleaner definitions are new or have changed. Malicious definitions can " "damage your system. If you do not trust these changes, delete the files or " "quit." msgstr "" "이러한 청소 설정들이 새로이 혹은 변경되었습니다. 악의적인 설정들은 시스템에 손해를 끼칠 수가 있습니다. 만약 이러한 변경들을 신뢰하지 " "못하겠다면, 파일들을 삭제하고 종료하십시오." #: ../bleachbit/RecognizeCleanerML.py:85 msgctxt "column_label" msgid "Delete" msgstr "삭제하기" #: ../bleachbit/RecognizeCleanerML.py:90 msgctxt "column_label" msgid "Filename" msgstr "파일 이름" #. TRANSLATORS: This indicates an error. The special keyword #. %(operation)s will be replaced by 'firefox' or 'opera' or #. some other cleaner ID. The special keyword %(msg)s will be #. replaced by a message such as 'Permission denied.' #: ../bleachbit/Worker.py:74 #, python-format msgid "Exception while running operation '%(operation)s': '%(msg)s'" msgstr "'%(operation)s': '%(msg)s' 항목을 실행하던 도중에 예외상황이 발생했습니다" #. TRANSLATORS: 'free' means 'unallocated' #: ../bleachbit/Worker.py:187 msgid "Please wait. Wiping free disk space." msgstr "잠시만 기다려주십시오. 디스크 여유 공간을 청소하는 중입니다." #. TRANSLATORS: %s is replaced with Firefox, System, etc. #: ../bleachbit/Worker.py:189 ../bleachbit/Worker.py:329 #, python-format msgid "Please wait. Cleaning %s." msgstr "잠시만 기다려주십시오. %s를 청소하는 중입니다." #: ../bleachbit/Worker.py:204 msgid "Please wait. Wiping file system metadata." msgstr "잠시만 기다려주십시오. 파일 시스템 메타데이터를 삭제하는 중입니다." #: ../bleachbit/Worker.py:207 msgid "Please wait. Cleaning up after wiping file system metadata." msgstr "잠시만 기다려주십시오. 파일 시스템 메타데이터를 삭제한 후에 청소 중입니다." #: ../bleachbit/Worker.py:210 #, python-format msgid "About %d minute remaining." msgid_plural "About %d minutes remaining." msgstr[0] "%d 분 남았습니다." #. TRANSLATORS: This refers to disk space that was #. really recovered (in other words, not a preview) #: ../bleachbit/Worker.py:268 #, python-format msgid "Disk space recovered: %s" msgstr "복구된 디스크 공간: %s" #. TRANSLATORS: This refers to a preview (no real #. changes were made yet) #: ../bleachbit/Worker.py:272 #, python-format msgid "Disk space to be recovered: %s" msgstr "복구될 디스크 공간: %s" #. TRANSLATORS: This refers to the number of files really #. deleted (in other words, not a preview). #: ../bleachbit/Worker.py:277 #, python-format msgid "Files deleted: %d" msgstr "삭제된 파일: %d" #. TRANSLATORS: This refers to the number of files that #. would be deleted (in other words, simply a preview). #: ../bleachbit/Worker.py:281 #, python-format msgid "Files to be deleted: %d" msgstr "삭제될 파일: %d" #: ../bleachbit/Worker.py:284 #, python-format msgid "Special operations: %d" msgstr "특수 작업: %d" #: ../bleachbit/Worker.py:287 #, python-format msgid "Errors: %d" msgstr "오류: %d" #. TRANSLATORS: The "deep scan" feature searches over broad #. areas of the file system such as the user's whole home directory #. or all the system executables. #: ../bleachbit/Worker.py:303 msgid "Please wait. Running deep scan." msgstr "잠시만 기다려주십시오. 정밀 검사 중입니다." #. TRANSLATORS: %s is replaced with Firefox, System, etc. #: ../bleachbit/Worker.py:332 #, python-format msgid "Please wait. Previewing %s." msgstr "잠시만 기다려주십시오. %s를 미리 보는 중입니다." #: ../bleachbit/Update.py:77 msgid "New winapp2.ini was downloaded." msgstr "새로운 winapp2.ini를 내려받았습니다." #: ../bleachbit/Update.py:123 msgid "Update BleachBit" msgstr "블리치비트를 업데이트합니다" #: ../bleachbit/Update.py:128 msgid "A new version is available." msgstr "새 버전을 사용할 수 있습니다." #. TRANSLATORS: %s expands to version such as '0.8.4' or '0.8.5beta' or #. similar #: ../bleachbit/Update.py:137 #, python-format msgid "Update to version %s" msgstr "버전 %s 로 업데이트를 합니다" #: ../bleachbit/Update.py:163 #, python-format msgid "" "Error when opening a network connection to %s to check for updates. Please " "verify the network is working." msgstr "" #: ../bleachbit/CLI.py:106 #, python-format msgid "not a valid cleaner: %s" msgstr "유효하지 않은 청소기입니다: %s" #. TRANSLATORS: This is the command line usage. Don't translate #. %prog, but do translate usage, options, cleaner, and option. #. More information about the command line is here #. http://bleachbit.sourceforge.net/documentation/command-line #: ../bleachbit/CLI.py:133 msgid "usage: %prog [options] cleaner.option1 cleaner.option2" msgstr "사용법: %prog [선택 사항] 청소기.선택 사항1 청소기.선택 사항2" #: ../bleachbit/CLI.py:136 msgid "list cleaners" msgstr "청소기 목록" #. TRANSLATORS: predefined cleaners are for applications, such as Firefox and Flash. #. This is different than cleaning an arbitrary file, such as a #. spreadsheet on the desktop. #: ../bleachbit/CLI.py:141 msgid "run cleaners to delete files and make other permanent changes" msgstr "청소기를 실행하여 파일을 삭제하고 다른 변경 사항을 영구적으로 적용시킵니다" #: ../bleachbit/CLI.py:144 msgid "shred specific files or folders" msgstr "특정 파일 혹은 폴더를 파기합니다" #: ../bleachbit/CLI.py:146 msgid "show system information" msgstr "시스템 정보를 봅니다" #: ../bleachbit/CLI.py:148 msgid "launch the graphical interface" msgstr "그래픽 인터페이스를 시작합니다" #: ../bleachbit/CLI.py:150 msgid "do not prompt for administrator privileges" msgstr "관리자 권한에 대해 요청하지 않습니다" #: ../bleachbit/CLI.py:155 msgid "preview files to be deleted and other changes" msgstr "미리 보기 파일 및 기타 변경 사항을 삭제합니다" #: ../bleachbit/CLI.py:157 msgid "use options set in the graphical interface" msgstr "그래픽 인터페이스에서 이용하도록 하는 선택 사항을 사용합니다" #: ../bleachbit/CLI.py:160 msgid "update winapp2.ini, if a new version is available" msgstr "만약 새로운 버전이 유효하다면, winapp2.ini를 업데이트합니다" #: ../bleachbit/CLI.py:162 msgid "output version information and exit" msgstr "버전 정보를 출력하고 종료합니다" #: ../bleachbit/CLI.py:164 msgid "overwrite files to hide contents" msgstr "파일 내용을 덮어 씌어서 복구할 수 없도록 만듭니다" #. TRANSLATORS: this is the context menu #: ../bleachbit/Action.py:338 ../bleachbit/GUI.py:626 msgid "Clean" msgstr "청소하기" #: ../bleachbit/GUI.py:139 msgid "Active" msgstr "활성화" #. TRANSLATORS: Size is the label for the column that shows how #. much space an option would clean or did clean #: ../bleachbit/GUI.py:151 msgid "Size" msgstr "" #. TRANSLATORS: %(cleaner) may be Firefox, System, etc. #. %(option) may be cache, logs, cookies, etc. #. %(warning) may be 'This option is really slow' #: ../bleachbit/GUI.py:182 #, python-format msgid "" "Warning regarding %(cleaner)s - %(option)s:\n" "\n" "%(warning)s" msgstr "" "경고 %(cleaner)s - %(option)s가 관련돼있습니다:\n" "\n" "%(warning)s" #: ../bleachbit/GUI.py:368 msgid "You must select an operation" msgstr "반드시 실행 작업을 선택하셔야 합니다." #: ../bleachbit/GUI.py:388 ../bleachbit/GUI.py:411 msgid "Done." msgstr "완료되었습니다." #: ../bleachbit/GUI.py:424 msgid "Program to clean unnecessary files" msgstr "불필요한 파일을 청소하는 프로그램입니다" #: ../bleachbit/GUI.py:430 msgid "" "GNU General Public License version 3 or later.\n" "See http://www.gnu.org/licenses/gpl-3.0.txt" msgstr "" "GNU 일반 공중 사용 허가서 버전 3 혹은 그 이후 버전의 허가서입니다.\n" "http://www.gnu.org/licenses/gpl-3.0.txt에서 확인하시기 바랍니다." #. TRANSLATORS: Maintain the names of translators here. #. Launchpad does this automatically for translations #. typed in Launchpad. This is a special string shown #. in the 'About' box. #: ../bleachbit/GUI.py:436 msgid "translator-credits" msgstr "" "Launchpad Contributions:\n" " B. W. Knight https://launchpad.net/~kbd0651\n" " Bundo https://launchpad.net/~kang-bundo\n" " Para https://launchpad.net/~khrhee\n" " halcyonest https://launchpad.net/~official-halcyonest\n" " sungyup https://launchpad.net/~nhamfnad\n" " yonchan https://launchpad.net/~yhjang9" #: ../bleachbit/GUI.py:448 msgid "System information" msgstr "시스템 정보" #: ../bleachbit/GUI.py:521 msgid "Choose files to shred" msgstr "파기할 파일들을 선택하십시오" #: ../bleachbit/GUI.py:524 msgid "Choose folder to shred" msgstr "파기할 폴더를 선택하십시오" #. TRANSLATORS: this is the context menu #: ../bleachbit/GUI.py:621 msgid "Preview" msgstr "미리 보기" #: ../bleachbit/GUI.py:690 msgid "_Shred Files" msgstr "파일을 파기합니다(_S)" #: ../bleachbit/GUI.py:692 msgid "Sh_red Folders" msgstr "폴더를 파기합니다(_h)" #: ../bleachbit/GUI.py:694 msgid "_Wipe Free Space" msgstr "디스크 여유 공간을 청소합니다(_W)" #: ../bleachbit/GUI.py:696 msgid "S_hred Settings and Quit" msgstr "설정을 파기하고 종료합니다(_H)" #: ../bleachbit/GUI.py:698 msgid "_Quit" msgstr "종료하기(_Q)" #: ../bleachbit/GUI.py:700 msgid "_File" msgstr "파일(_F)" #: ../bleachbit/GUI.py:703 msgid "_Edit" msgstr "편집하기(_E)" #: ../bleachbit/GUI.py:704 msgid "Help Contents" msgstr "도움말 차례" #: ../bleachbit/GUI.py:707 msgid "_Release Notes" msgstr "출시 정보(_R)" #: ../bleachbit/GUI.py:710 msgid "_System Information" msgstr "시스템 정보(_S)" #: ../bleachbit/GUI.py:713 msgid "_About" msgstr "정보(_A)" #: ../bleachbit/GUI.py:714 msgid "_Help" msgstr "도움말(_H)" #: ../bleachbit/GUI.py:739 msgctxt "button" msgid "Preview" msgstr "미리 보기" #: ../bleachbit/GUI.py:744 msgid "Preview files in the selected operations (without deleting any files)" msgstr "선택된 파일들을 미리 봅니다(어떠한 파일을 삭제하지 않습니다)" #: ../bleachbit/GUI.py:754 msgctxt "button" msgid "Clean" msgstr "청소하기" #: ../bleachbit/GUI.py:758 msgid "Clean files in the selected operations" msgstr "선택된 처리 방식으로 파일을 청소합니다" #: ../bleachbit/GUI.py:847 msgid "Error when checking for updates: " msgstr "업데이트를 확인하는 중에 오류가 발생했습니다: " #: ../bleachbit/GUI.py:887 msgid "" "Error loading the SQLite module: the antivirus software may be blocking it." msgstr "SQLite 모듈 불러오기 오류: 안티바이러스 소프트웨어가 이 프로그램을 차단한 것 같습니다." #: ../bleachbit/GUI.py:890 msgid "" "You are running BleachBit with administrative privileges for cleaning shared " "parts of the system, and references to the user profile folder will clean " "only the root account." msgstr "" "당신은 시스템의 공유된 부분을 청소하기 위해 블리치비트를 관리자 권한으로 실행 중이며, 사용자 프로필 폴더와 관련 있는 설정을 이용하여 " "루트 계정만 정리할 것입니다." bleachbit-2.0/po/ta.po0000644000175000017500000012277213245436307012776 0ustar hlehle# Tamil translation for bleachbit # Copyright (c) 2010 Rosetta Contributors and Canonical Ltd 2010 # This file is distributed under the same license as the bleachbit package. # FIRST AUTHOR , 2010. # msgid "" msgstr "" "Project-Id-Version: bleachbit\n" "Report-Msgid-Bugs-To: FULL NAME \n" "POT-Creation-Date: 2015-11-27 12:03-0700\n" "PO-Revision-Date: 2015-12-14 04:32+0000\n" "Last-Translator: அவினாஷ் Avinash \n" "Language-Team: Tamil \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n != 1;\n" "X-Launchpad-Export-Date: 2015-12-14 18:16+0000\n" "X-Generator: Launchpad (build 17865)\n" #: ../cleaners/mc.xml ../cleaners/tortoisesvn.xml ../cleaners/vim.xml #: ../cleaners/safari.xml ../cleaners/links2.xml ../cleaners/seamonkey.xml #: ../cleaners/realplayer.xml ../cleaners/windows_defender.xml #: ../cleaners/d4x.xml ../cleaners/sqlite3.xml #: ../cleaners/internet_explorer.xml ../cleaners/libreoffice.xml #: ../cleaners/easytag.xml ../cleaners/bash.xml ../cleaners/nautilus.xml #: ../cleaners/octave.xml ../cleaners/elinks.xml ../cleaners/chromium.xml #: ../cleaners/google_chrome.xml msgid "History" msgstr "வரலாறு" #: ../cleaners/mc.xml ../cleaners/tortoisesvn.xml ../cleaners/links2.xml #: ../cleaners/realplayer.xml ../cleaners/d4x.xml ../cleaners/libreoffice.xml #: ../cleaners/easytag.xml ../cleaners/nautilus.xml ../cleaners/gnome.xml #: ../bleachbit/Cleaner.py:350 ../bleachbit/Cleaner.py:424 #: ../bleachbit/Cleaner.py:433 msgid "Delete the usage history" msgstr "பாவனை வரலாற்றை அழி" #: ../cleaners/gpodder.xml ../cleaners/hippo_opensim_viewer.xml #: ../cleaners/thumbnails.xml ../cleaners/safari.xml ../cleaners/emesene.xml #: ../cleaners/liferea.xml ../cleaners/seamonkey.xml ../cleaners/vuze.xml #: ../cleaners/yahoo_messenger.xml ../cleaners/pidgin.xml #: ../cleaners/adobe_reader.xml ../cleaners/evolution.xml #: ../cleaners/tremulous.xml ../cleaners/libreoffice.xml ../cleaners/xine.xml #: ../cleaners/nexuiz.xml ../cleaners/exaile.xml ../cleaners/opera.xml #: ../cleaners/amsn.xml ../cleaners/gftp.xml ../cleaners/miro.xml #: ../cleaners/beagle.xml ../cleaners/kde.xml ../cleaners/epiphany.xml #: ../cleaners/flash.xml ../cleaners/secondlife_viewer.xml #: ../cleaners/java.xml ../cleaners/chromium.xml ../cleaners/audacious.xml #: ../cleaners/rhythmbox.xml ../cleaners/google_chrome.xml #: ../cleaners/thunderbird.xml ../bleachbit/Cleaner.py:193 #: ../bleachbit/Cleaner.py:371 ../bleachbit/Cleaner.py:456 msgid "Cache" msgstr "இடைமாற்று" #: ../cleaners/gpodder.xml ../cleaners/yum.xml #: ../cleaners/hippo_opensim_viewer.xml ../cleaners/thumbnails.xml #: ../cleaners/windows_explorer.xml ../cleaners/liferea.xml #: ../cleaners/vuze.xml ../cleaners/yahoo_messenger.xml ../cleaners/pidgin.xml #: ../cleaners/adobe_reader.xml ../cleaners/evolution.xml #: ../cleaners/libreoffice.xml ../cleaners/apt.xml ../cleaners/xine.xml #: ../cleaners/nexuiz.xml ../cleaners/exaile.xml ../cleaners/amsn.xml #: ../cleaners/gftp.xml ../cleaners/miro.xml ../cleaners/beagle.xml #: ../cleaners/kde.xml ../cleaners/flash.xml ../cleaners/secondlife_viewer.xml #: ../cleaners/java.xml ../cleaners/audacious.xml ../cleaners/rhythmbox.xml #: ../bleachbit/Cleaner.py:371 ../bleachbit/Cleaner.py:456 #: ../bleachbit/Cleaner.py:490 ../bleachbit/Cleaner.py:492 msgid "Delete the cache" msgstr "நினைவில் உள்ளதை அழி" #. TRANSLATORS: Vacuum is a verb. The term is jargon #. from the SQLite database. Microsoft Access uses #. the term 'Compact Database' (which you may translate #. instead). Another synonym is 'defragment.' #: ../cleaners/gpodder.xml ../cleaners/yum.xml ../cleaners/safari.xml #: ../cleaners/liferea.xml ../cleaners/chromium.xml #: ../cleaners/google_chrome.xml ../cleaners/thunderbird.xml #: ../bleachbit/Action.py:365 ../bleachbit/Cleaner.py:215 #: ../bleachbit/Cleaner.py:361 msgid "Vacuum" msgstr "" #: ../cleaners/gpodder.xml ../cleaners/yum.xml ../cleaners/safari.xml #: ../cleaners/liferea.xml ../cleaners/chromium.xml #: ../cleaners/google_chrome.xml ../cleaners/thunderbird.xml #: ../bleachbit/Cleaner.py:216 msgid "" "Clean database fragmentation to reduce space and improve speed without " "removing any data" msgstr "" #: ../cleaners/yum.xml ../cleaners/apt.xml msgid "Package manager" msgstr "" #: ../cleaners/warzone2100.xml ../cleaners/hippo_opensim_viewer.xml #: ../cleaners/gl-117.xml ../cleaners/tremulous.xml ../cleaners/nexuiz.xml #: ../cleaners/secondlife_viewer.xml msgid "Game" msgstr "விளையாட்டு" #: ../cleaners/warzone2100.xml ../cleaners/hippo_opensim_viewer.xml #: ../cleaners/teamviewer.xml ../cleaners/realplayer.xml ../cleaners/vuze.xml #: ../cleaners/yahoo_messenger.xml ../cleaners/amule.xml #: ../cleaners/easytag.xml ../cleaners/exaile.xml ../cleaners/screenlets.xml #: ../cleaners/gftp.xml ../cleaners/miro.xml ../cleaners/audacious.xml #: ../bleachbit/Cleaner.py:487 msgid "Logs" msgstr "பதிவுகள்" #: ../cleaners/warzone2100.xml ../cleaners/hippo_opensim_viewer.xml #: ../cleaners/teamviewer.xml ../cleaners/realplayer.xml ../cleaners/vuze.xml #: ../cleaners/yahoo_messenger.xml ../cleaners/amule.xml #: ../cleaners/exaile.xml ../cleaners/screenlets.xml ../cleaners/gftp.xml #: ../cleaners/miro.xml ../cleaners/audacious.xml ../bleachbit/Cleaner.py:487 msgid "Delete the logs" msgstr "பதிவுகளை அழி" #: ../cleaners/thumbnails.xml ../cleaners/windows_explorer.xml msgid "Thumbnails" msgstr "சிறுபடங்கள்" #: ../cleaners/thumbnails.xml msgid "Icons for files on the system" msgstr "" #: ../cleaners/vim.xml ../cleaners/gedit.xml msgid "Editor" msgstr "திருத்தி" #: ../cleaners/vim.xml msgid "" "Delete ~/.viminfo which includes file history, command history, and buffers" msgstr "" "அகற்று ~/.viminfo இது உள்ளடக்கியுள்ளது கோப்பு வரலாறு,கட்டளை வரலாறு,மற்றும் " "தற்காலிக சேமிப்பு" #: ../cleaners/filezilla.xml ../cleaners/transmission.xml ../cleaners/vuze.xml #: ../cleaners/amule.xml ../cleaners/gftp.xml msgid "File transfer client" msgstr "" #: ../cleaners/filezilla.xml ../cleaners/paint.xml #: ../cleaners/windows_media_player.xml ../cleaners/windows_explorer.xml #: ../cleaners/teamviewer.xml ../cleaners/microsoft_office.xml #: ../cleaners/vlc.xml ../cleaners/adobe_reader.xml ../cleaners/winamp.xml #: ../cleaners/winzip.xml ../cleaners/winrar.xml ../cleaners/audacious.xml #: ../cleaners/wordpad.xml ../bleachbit/Cleaner.py:372 msgid "Most recently used" msgstr "சமீபத்தில் பாவிக்கப்பட்டவை" #: ../cleaners/filezilla.xml ../cleaners/windows_explorer.xml #: ../cleaners/gwenview.xml ../cleaners/adobe_reader.xml ../cleaners/gedit.xml #: ../cleaners/kde.xml ../cleaners/audacious.xml ../bleachbit/Cleaner.py:373 #: ../bleachbit/Cleaner.py:470 msgid "Delete the list of recently used documents" msgstr "சமீபத்தில் பாவித்த கோப்புகளின் பட்டியலை அழி" #: ../cleaners/skype.xml ../cleaners/xchat.xml ../cleaners/emesene.xml #: ../cleaners/yahoo_messenger.xml ../cleaners/pidgin.xml ../cleaners/amsn.xml msgid "Chat client" msgstr "" #: ../cleaners/skype.xml ../cleaners/xchat.xml ../cleaners/emesene.xml #: ../cleaners/seamonkey.xml ../cleaners/yahoo_messenger.xml #: ../cleaners/pidgin.xml ../cleaners/amsn.xml msgid "Chat logs" msgstr "அரட்டை பதிவுகள்" #: ../cleaners/skype.xml ../cleaners/xchat.xml ../cleaners/emesene.xml #: ../cleaners/seamonkey.xml ../cleaners/yahoo_messenger.xml #: ../cleaners/pidgin.xml ../cleaners/amsn.xml msgid "Delete the chat logs" msgstr "அரட்டை பதிவுகளை அழி" #: ../cleaners/skype.xml msgid "Installers" msgstr "நிறுவிகள்" #: ../cleaners/skype.xml msgid "Delete cached patches and installers" msgstr "" #: ../cleaners/safari.xml ../cleaners/links2.xml ../cleaners/seamonkey.xml #: ../cleaners/konqueror.xml ../cleaners/internet_explorer.xml #: ../cleaners/opera.xml ../cleaners/epiphany.xml ../cleaners/elinks.xml #: ../cleaners/chromium.xml ../cleaners/google_chrome.xml #: ../bleachbit/Cleaner.py:227 msgid "Web browser" msgstr "வலைய உலாவி" #: ../cleaners/safari.xml ../cleaners/seamonkey.xml ../cleaners/opera.xml #: ../cleaners/epiphany.xml ../cleaners/chromium.xml #: ../cleaners/google_chrome.xml ../cleaners/thunderbird.xml #: ../bleachbit/Cleaner.py:194 msgid "Delete the web cache, which reduces time to display revisited pages" msgstr "" #: ../cleaners/safari.xml ../cleaners/liferea.xml ../cleaners/seamonkey.xml #: ../cleaners/realplayer.xml ../cleaners/konqueror.xml #: ../cleaners/internet_explorer.xml ../cleaners/opera.xml #: ../cleaners/epiphany.xml ../cleaners/flash.xml ../cleaners/silverlight.xml #: ../cleaners/chromium.xml ../cleaners/google_chrome.xml #: ../cleaners/thunderbird.xml ../bleachbit/Cleaner.py:195 msgid "Cookies" msgstr "நினைவிகள்" #: ../cleaners/safari.xml ../cleaners/liferea.xml ../cleaners/seamonkey.xml #: ../cleaners/realplayer.xml ../cleaners/konqueror.xml #: ../cleaners/internet_explorer.xml ../cleaners/opera.xml #: ../cleaners/epiphany.xml ../cleaners/flash.xml ../cleaners/silverlight.xml #: ../cleaners/chromium.xml ../cleaners/google_chrome.xml #: ../cleaners/thunderbird.xml ../bleachbit/Cleaner.py:196 msgid "" "Delete cookies, which contain information such as web site preferences, " "authentication, and tracking identification" msgstr "" #: ../cleaners/safari.xml ../cleaners/konqueror.xml #: ../cleaners/internet_explorer.xml ../cleaners/opera.xml #: ../bleachbit/Cleaner.py:214 msgid "List of visited web pages" msgstr "பார்த்த இனைய பக்கங்களை பட்டியலிடு" #. Torrent software can block a list of IP addresses, such as those that may belong to malware or anti-piracy organizations #: ../cleaners/transmission.xml msgid "Blocklists" msgstr "தடைபடியல்கள்" #: ../cleaners/transmission.xml ../cleaners/windows_defender.xml #: ../cleaners/beagle.xml ../cleaners/thunderbird.xml ../cleaners/deepscan.xml #: ../bleachbit/Cleaner.py:198 msgid "Delete the files" msgstr "கோப்புகளை அழி" #: ../cleaners/transmission.xml msgid "Blocklists will need update to work." msgstr "" #: ../cleaners/transmission.xml msgid "Torrents" msgstr "டோரென்ட்ஸ்" #: ../cleaners/transmission.xml msgid "Delete the torrents (just the metadata but not the files described)" msgstr "" #: ../cleaners/paint.xml ../cleaners/windows_media_player.xml #: ../cleaners/windows_explorer.xml ../cleaners/teamviewer.xml #: ../cleaners/microsoft_office.xml ../cleaners/vlc.xml ../cleaners/winamp.xml #: ../cleaners/winzip.xml ../cleaners/winrar.xml ../cleaners/wordpad.xml msgid "Delete the most recently used list" msgstr "அழி மிக சமீபத்திய வரலாற்று பட்டியலை" #: ../cleaners/emesene.xml msgid "Delete the avatars and emoticons cache" msgstr "" #: ../cleaners/windows_media_player.xml ../cleaners/realplayer.xml #: ../cleaners/vlc.xml ../cleaners/winamp.xml msgid "Media player" msgstr "ஊடக இயக்கி" #: ../cleaners/windows_explorer.xml ../cleaners/nautilus.xml msgid "File manager" msgstr "கோப்பு நிர்வாகி" #: ../cleaners/windows_explorer.xml ../cleaners/gwenview.xml #: ../cleaners/gedit.xml ../cleaners/kde.xml ../bleachbit/Cleaner.py:469 msgid "Recent documents list" msgstr "சமீப ஆவணங்களின் பட்டியல்" #. In Windows 'Run' is the dialog in the Start menu #. In GNOME 'Run' is the dialog shown when typing ALT+F2' #: ../cleaners/windows_explorer.xml ../cleaners/gnome.xml msgid "Run" msgstr "இயக்கு" #: ../cleaners/windows_explorer.xml ../cleaners/opera.xml #: ../cleaners/gnome.xml ../cleaners/google_toolbar.xml msgid "Search history" msgstr "தேடல் வரலாறு" #: ../cleaners/windows_explorer.xml ../cleaners/opera.xml #: ../cleaners/gnome.xml ../cleaners/google_toolbar.xml msgid "Delete the search history" msgstr "தேடல் வரலாற்றை அழி" #: ../cleaners/gl-117.xml ../cleaners/microsoft_office.xml #: ../cleaners/beagle.xml ../cleaners/secondlife_viewer.xml #: ../cleaners/x11.xml msgid "Debug logs" msgstr "வலுநீக்கி பதிவுகள்" #: ../cleaners/gl-117.xml ../cleaners/microsoft_office.xml #: ../cleaners/easytag.xml ../cleaners/beagle.xml #: ../cleaners/secondlife_viewer.xml ../cleaners/x11.xml msgid "Delete the debug logs" msgstr "வலுநீக்கி பதிவுகளை அழி" #: ../cleaners/google_earth.xml ../cleaners/winetricks.xml #: ../cleaners/vuze.xml ../cleaners/adobe_reader.xml ../cleaners/amule.xml #: ../cleaners/wine.xml ../cleaners/internet_explorer.xml ../cleaners/gimp.xml #: ../cleaners/kde.xml ../cleaners/deepscan.xml ../bleachbit/Cleaner.py:521 msgid "Temporary files" msgstr "தற்காலிக கோப்புகள்" #: ../cleaners/google_earth.xml ../cleaners/winetricks.xml #: ../cleaners/vuze.xml ../cleaners/adobe_reader.xml ../cleaners/amule.xml #: ../cleaners/wine.xml ../cleaners/internet_explorer.xml ../cleaners/gimp.xml #: ../cleaners/kde.xml ../cleaners/deepscan.xml ../bleachbit/Cleaner.py:521 msgid "Delete the temporary files" msgstr "தற்காலிக கோப்புகளை அழி" #: ../cleaners/seamonkey.xml ../cleaners/opera.xml ../bleachbit/Cleaner.py:202 msgid "Download history" msgstr "பதிவிறக்க வரலாறு" #: ../cleaners/seamonkey.xml ../cleaners/opera.xml ../bleachbit/Cleaner.py:202 msgid "List of files downloaded" msgstr "பதிவிறக்கப்பட்ட கோப்புகளின் பட்டியல்" #: ../cleaners/seamonkey.xml msgid "Delete the list of visited web pages" msgstr "அழி பார்க்கப்பட்ட வலைப்பக்க வரலாற்றை" #: ../cleaners/vuze.xml ../cleaners/deepscan.xml ../bleachbit/Cleaner.py:191 msgid "Backup files" msgstr "காப்புக் கோப்புகள்" #: ../cleaners/vuze.xml ../cleaners/deepscan.xml ../bleachbit/Cleaner.py:192 msgid "Delete the backup files" msgstr "காப்புக் கோப்புகளை அழி" #: ../cleaners/konqueror.xml ../cleaners/opera.xml ../cleaners/chromium.xml msgid "Current session" msgstr "நடப்பு அமர்வு" #: ../cleaners/konqueror.xml ../cleaners/opera.xml ../cleaners/chromium.xml msgid "Delete the current session" msgstr "நடப்பு அமர்வை அழி" #: ../cleaners/konqueror.xml ../cleaners/opera.xml ../bleachbit/Cleaner.py:214 msgid "URL history" msgstr "" #: ../cleaners/microsoft_office.xml ../cleaners/libreoffice.xml #: ../bleachbit/Cleaner.py:376 msgid "Office suite" msgstr "அலுவலக தொகுப்பு" #: ../cleaners/windows_defender.xml msgid "Anti-virus" msgstr "" #: ../cleaners/adobe_reader.xml msgid "Document viewer" msgstr "" #: ../cleaners/evolution.xml ../cleaners/thunderbird.xml msgid "Email client" msgstr "" #: ../cleaners/tremulous.xml msgid "Delete the list of game servers" msgstr "விளையாட்டு சேவையகங்களின் பட்டியலை அழி" #: ../cleaners/sqlite3.xml ../cleaners/bash.xml ../cleaners/octave.xml msgid "Delete the command history" msgstr "கட்டளை வரலாற்றை அழி" #: ../cleaners/wine.xml msgid "Compatibility layer for Windows software" msgstr "" #: ../cleaners/internet_explorer.xml ../cleaners/chromium.xml #: ../cleaners/google_chrome.xml ../bleachbit/Cleaner.py:203 msgid "Form history" msgstr "படிவ வரலாறு" #: ../cleaners/internet_explorer.xml ../bleachbit/Cleaner.py:204 msgid "A history of forms entered in web sites and in the Search bar" msgstr "" #. This software edits metadata tags, such as title and artist, in audio files #: ../cleaners/easytag.xml msgid "Audio files tagger" msgstr "" #: ../cleaners/apt.xml msgid "Delete obsolete files" msgstr "வழக்கற்ற கோப்புகளை அழி" #: ../cleaners/apt.xml msgid "Package lists" msgstr "தொகுப்பு பட்டியல்" #: ../cleaners/xine.xml ../cleaners/miro.xml ../cleaners/flash.xml msgid "Multimedia viewer" msgstr "வரைகலை பார்வையாளர்" #: ../cleaners/recoll.xml ../cleaners/beagle.xml msgid "Search tool" msgstr "தேடற் கருவி" #: ../cleaners/recoll.xml ../cleaners/beagle.xml ../cleaners/thunderbird.xml msgid "Index" msgstr "பொருளடக்கம்" #: ../cleaners/recoll.xml msgid "" "Delete the search index, a database of words and the files they contain" msgstr "" #: ../cleaners/gimp.xml msgid "Graphics editor" msgstr "" #: ../cleaners/exaile.xml msgid "Downloaded podcasts" msgstr "பதிவிறக்கப்பட்ட podcasts" #: ../cleaners/exaile.xml msgid "Delete downloaded podcasts" msgstr "அழி பதிவிறக்கப்பட்ட podcasts" #: ../cleaners/bash.xml msgid "Shell" msgstr "" #. TRANSLATORS: DOM = Document Object Model. #: ../cleaners/opera.xml ../cleaners/chromium.xml #: ../cleaners/google_chrome.xml ../bleachbit/Cleaner.py:200 msgid "DOM Storage" msgstr "DOM சேமிப்பு" #: ../cleaners/opera.xml ../cleaners/chromium.xml #: ../cleaners/google_chrome.xml ../bleachbit/Cleaner.py:200 msgid "Delete HTML5 cookies" msgstr "அழி HTML5 ஞாபககிகளை" #: ../cleaners/opera.xml ../cleaners/epiphany.xml ../cleaners/chromium.xml #: ../cleaners/google_chrome.xml ../cleaners/thunderbird.xml #: ../bleachbit/Cleaner.py:209 msgid "Passwords" msgstr "கடவுச்சொற்கள்" #: ../cleaners/opera.xml ../cleaners/epiphany.xml ../cleaners/chromium.xml #: ../cleaners/google_chrome.xml ../cleaners/thunderbird.xml #: ../bleachbit/Cleaner.py:210 msgid "" "A database of usernames and passwords as well as a list of sites that should " "not store passwords" msgstr "" #: ../cleaners/opera.xml ../cleaners/epiphany.xml ../cleaners/chromium.xml #: ../cleaners/google_chrome.xml ../cleaners/thunderbird.xml #: ../bleachbit/Cleaner.py:212 msgid "This option will delete your saved passwords." msgstr "இந்த தேர்வு உங்கள் சேமிக்கப்பட்ட கடவுச்சொல்லை நீக்குவதற்கானது" #: ../cleaners/nautilus.xml msgid "Custom folders will be reset." msgstr "விருப்ப கோப்புறைகள் மீட்டமைக்கப்படும்." #: ../cleaners/gnome.xml ../cleaners/kde.xml msgid "Desktop environment" msgstr "" #: ../cleaners/screenlets.xml msgid "Widgets for the desktop" msgstr "திரைமுகப்பிற்கான சாளரங்கள்" #: ../cleaners/epiphany.xml msgid "Places" msgstr "இடங்கள்" #: ../cleaners/epiphany.xml msgid "" "A database of URLs including bookmarks, favicons, and a history of visited " "web sites" msgstr "" #: ../cleaners/epiphany.xml msgid "This option deletes all bookmarks." msgstr "இந்த தேர்வு அனைத்து புக்மார்க்குகளையும் நீக்கவல்லது" #: ../cleaners/winrar.xml msgid "File archiver" msgstr "" #: ../cleaners/elinks.xml msgid "Delete the cookies, visited URLs, and search history" msgstr "" #: ../cleaners/chromium.xml ../cleaners/google_chrome.xml msgid "A history of forms entered in web sites" msgstr "" #: ../cleaners/chromium.xml ../cleaners/google_chrome.xml msgid "" "Delete the history which includes visited sites, downloads, and thumbnails" msgstr "" #: ../cleaners/chromium.xml ../cleaners/google_chrome.xml msgid "Search engines" msgstr "தேடு பொறிகள்" #. 'Factory' means a search engine that is installed by default 'from the factory,' but this is different than a 'default search engine' https://lists.launchpad.net/launchpad-translators/msg00283.html #: ../cleaners/chromium.xml ../cleaners/google_chrome.xml msgid "" "Reset the search engine usage history and delete non-factory search engines, " "some of which are added automatically" msgstr "" #: ../cleaners/audacious.xml msgid "Audio player" msgstr "" #: ../cleaners/google_chrome.xml msgid "Session" msgstr "அமர்வு" #: ../cleaners/google_chrome.xml msgid "Delete the current and last sessions" msgstr "நடப்பு மற்றும் கடந்த அமர்வுகளை அழி" #: ../cleaners/x11.xml msgid "Windowing system" msgstr "" #: ../cleaners/wordpad.xml msgid "Word processor" msgstr "" #: ../cleaners/deepscan.xml msgid "Deep scan" msgstr "ஆழ் சோதனை" #: ../cleaners/deepscan.xml msgid "Clean files widely scattered across the disk" msgstr "" #: ../cleaners/deepscan.xml msgid "Inspect the preview for any files you want to keep." msgstr "" #: ../cleaners/deepscan.xml msgid "This option is slow." msgstr "இந்த தேர்வு மெதுவானது" #: ../bleachbit.desktop msgid "Unnecessary file cleaner" msgstr "தேவையற்ற கோப்புகளை நீக்கும் மென்பொருள்" #: ../bleachbit.desktop msgid "Free space and maintain privacy" msgstr "இடத்தை வெற்றாக்கவும் தகவல் பாதுகாப்பை பேணவும்" #: ../bleachbit/GuiBasic.py:112 msgid "Delete confirmation" msgstr "" #: ../bleachbit/GuiBasic.py:122 msgid "" "Are you sure you want to permanently delete files according to the selected " "operations? The actual files that will be deleted may have changed since " "you ran the preview." msgstr "" #: ../bleachbit/GuiBasic.py:125 msgid "Are you sure you want to permanently delete these files?" msgstr "" #: ../bleachbit/GuiBasic.py:162 #, python-format msgid "" "Because you are running as root, please manually open this link in a web " "browser:\n" "%s" msgstr "" #. TRANSLATORS: %s expands to bleachbit.sourceforge.net or similar #: ../bleachbit/GuiBasic.py:174 #, python-format msgid "Open web browser to %s?" msgstr "" #. TRANSLATORS: This is the label in the log indicating was #. skipped because it matches the whitelist #: ../bleachbit/Command.py:44 msgid "Skip" msgstr "தவிர்" #. TRANSLATORS: This is the label in the log indicating will be #. deleted (for previews) or was actually deleted #: ../bleachbit/Command.py:70 msgid "Delete" msgstr "அழி" #. TRANSLATORS: The file will be deleted when the #. system reboots #: ../bleachbit/Command.py:91 msgid "Mark for deletion" msgstr "அழிப்பதற்கு குறி" #. TRANSLATORS: Parts of this file will be deleted #: ../bleachbit/Command.py:181 ../bleachbit/Command.py:211 #: ../bleachbit/Action.py:222 ../bleachbit/Action.py:235 #: ../bleachbit/Action.py:248 ../bleachbit/Action.py:261 #: ../bleachbit/Action.py:274 msgid "Clean file" msgstr "கோப்பினை துடை" #. TRANSLATORS: The file will be truncated to 0 bytes in length #: ../bleachbit/Command.py:247 msgid "Truncate" msgstr "" #: ../bleachbit/Command.py:286 msgid "Delete registry key" msgstr "" #: ../bleachbit/Unix.py:348 ../bleachbit/Unix.py:378 ../bleachbit/Unix.py:568 #, python-format msgid "Executable not found: %s" msgstr "" #. TRANSLATORS: %s expands to a name such as 'Firefox' or 'System'. #: ../bleachbit/Unix.py:565 ../bleachbit/Worker.py:135 #, python-format msgid "" "%s cannot be cleaned because it is currently running. Close it, and try " "again." msgstr "" #: ../bleachbit/RecognizeCleanerML.py:57 msgid "Security warning" msgstr "பாதுகாப்பு எச்சரிக்கை" #: ../bleachbit/RecognizeCleanerML.py:70 msgid "" "These cleaner definitions are new or have changed. Malicious definitions can " "damage your system. If you do not trust these changes, delete the files or " "quit." msgstr "" #: ../bleachbit/RecognizeCleanerML.py:85 msgctxt "column_label" msgid "Delete" msgstr "அழி" #: ../bleachbit/RecognizeCleanerML.py:90 msgctxt "column_label" msgid "Filename" msgstr "கோப்பின் பெயர்" #: ../bleachbit/GUI.py:131 ../bleachbit/GuiPreferences.py:287 msgid "Name" msgstr "பெயர்" #: ../bleachbit/GUI.py:139 msgid "Active" msgstr "செயல்பாட்டிலுள்ள" #. TRANSLATORS: Size is the label for the column that shows how #. much space an option would clean or did clean #: ../bleachbit/GUI.py:152 msgid "Size" msgstr "" #. TRANSLATORS: %(cleaner) may be Firefox, System, etc. #. %(option) may be cache, logs, cookies, etc. #. %(warning) may be 'This option is really slow' #: ../bleachbit/GUI.py:183 #, python-format msgid "" "Warning regarding %(cleaner)s - %(option)s:\n" "\n" "%(warning)s" msgstr "" #: ../bleachbit/GUI.py:369 msgid "You must select an operation" msgstr "" #: ../bleachbit/GUI.py:389 ../bleachbit/GUI.py:412 msgid "Done." msgstr "முடிந்தது." #: ../bleachbit/GUI.py:425 msgid "Program to clean unnecessary files" msgstr "" #: ../bleachbit/GUI.py:431 msgid "" "GNU General Public License version 3 or later.\n" "See http://www.gnu.org/licenses/gpl-3.0.txt" msgstr "" #. TRANSLATORS: Maintain the names of translators here. #. Launchpad does this automatically for translations #. typed in Launchpad. This is a special string shown #. in the 'About' box. #: ../bleachbit/GUI.py:437 msgid "translator-credits" msgstr "" "Launchpad Contributions:\n" " Khaleel Jageer https://launchpad.net/~jskcse4\n" " Ramesh https://launchpad.net/~rame20002007\n" " raja https://launchpad.net/~thesmartraja\n" " அவினாஷ் Avinash https://launchpad.net/~avinashachu007" #: ../bleachbit/GUI.py:449 msgid "System information" msgstr "அமைப்பு தகவல்" #: ../bleachbit/GUI.py:522 msgid "Choose files to shred" msgstr "" #: ../bleachbit/GUI.py:525 msgid "Choose folder to shred" msgstr "" #: ../bleachbit/GUI.py:589 ../bleachbit/GuiPreferences.py:188 #: ../bleachbit/GuiPreferences.py:317 ../bleachbit/GuiPreferences.py:358 msgid "Choose a folder" msgstr "ஒரு அடைவை தேர்ந்தெடுக்கவும்" #. TRANSLATORS: this is the context menu #: ../bleachbit/GUI.py:622 msgid "Preview" msgstr "" #. TRANSLATORS: this is the context menu #: ../bleachbit/GUI.py:627 ../bleachbit/Action.py:338 msgid "Clean" msgstr "துடை" #: ../bleachbit/GUI.py:691 msgid "_Shred Files" msgstr "" #: ../bleachbit/GUI.py:693 msgid "Sh_red Folders" msgstr "" #: ../bleachbit/GUI.py:695 msgid "_Wipe Free Space" msgstr "" #: ../bleachbit/GUI.py:697 msgid "S_hred Settings and Quit" msgstr "" #: ../bleachbit/GUI.py:699 msgid "_Quit" msgstr "வெளியேறு (_Q)" #: ../bleachbit/GUI.py:701 msgid "_File" msgstr "கோப்பு (_F)" #: ../bleachbit/GUI.py:703 ../bleachbit/GuiPreferences.py:55 msgid "Preferences" msgstr "விருப்பத்தேர்வுகள்" #: ../bleachbit/GUI.py:704 msgid "_Edit" msgstr "தொகு (_E)" #: ../bleachbit/GUI.py:705 msgid "Help Contents" msgstr "உதவி உள்ளடக்கங்கள்" #: ../bleachbit/GUI.py:708 msgid "_Release Notes" msgstr "" #: ../bleachbit/GUI.py:711 msgid "_System Information" msgstr "அமைப்பு தகவல் (_S)" #: ../bleachbit/GUI.py:714 msgid "_About" msgstr "பற்றி (_A)" #: ../bleachbit/GUI.py:715 msgid "_Help" msgstr "உதவி (_H)" #: ../bleachbit/GUI.py:740 msgctxt "button" msgid "Preview" msgstr "முன்னோட்டம்" #: ../bleachbit/GUI.py:745 msgid "Preview files in the selected operations (without deleting any files)" msgstr "" #: ../bleachbit/GUI.py:755 msgctxt "button" msgid "Clean" msgstr "" #: ../bleachbit/GUI.py:759 msgid "Clean files in the selected operations" msgstr "" #: ../bleachbit/GUI.py:848 msgid "Error when checking for updates: " msgstr "" #: ../bleachbit/GUI.py:888 msgid "" "Error loading the SQLite module: the antivirus software may be blocking it." msgstr "" #: ../bleachbit/GUI.py:891 msgid "" "You are running BleachBit with administrative privileges for cleaning shared " "parts of the system, and references to the user profile folder will clean " "only the root account." msgstr "" #: ../bleachbit/CLI.py:106 #, python-format msgid "not a valid cleaner: %s" msgstr "" #. TRANSLATORS: This is the command line usage. Don't translate #. %prog, but do translate usage, options, cleaner, and option. #. More information about the command line is here #. http://bleachbit.sourceforge.net/documentation/command-line #: ../bleachbit/CLI.py:133 msgid "usage: %prog [options] cleaner.option1 cleaner.option2" msgstr "" #: ../bleachbit/CLI.py:136 msgid "list cleaners" msgstr "" #. TRANSLATORS: predefined cleaners are for applications, such as Firefox and Flash. #. This is different than cleaning an arbitrary file, such as a #. spreadsheet on the desktop. #: ../bleachbit/CLI.py:141 msgid "run cleaners to delete files and make other permanent changes" msgstr "" #: ../bleachbit/CLI.py:144 msgid "shred specific files or folders" msgstr "" #: ../bleachbit/CLI.py:146 msgid "show system information" msgstr "அமைப்புத் தகவலைக் காட்டு" #: ../bleachbit/CLI.py:148 msgid "launch the graphical interface" msgstr "" #: ../bleachbit/CLI.py:150 msgid "do not prompt for administrator privileges" msgstr "" #: ../bleachbit/CLI.py:155 msgid "preview files to be deleted and other changes" msgstr "" #: ../bleachbit/CLI.py:157 msgid "use options set in the graphical interface" msgstr "" #: ../bleachbit/CLI.py:160 msgid "update winapp2.ini, if a new version is available" msgstr "" #: ../bleachbit/CLI.py:162 msgid "output version information and exit" msgstr "" #: ../bleachbit/CLI.py:164 msgid "overwrite files to hide contents" msgstr "" #: ../bleachbit/Update.py:77 msgid "New winapp2.ini was downloaded." msgstr "" #: ../bleachbit/Update.py:123 msgid "Update BleachBit" msgstr "" #: ../bleachbit/Update.py:128 msgid "A new version is available." msgstr "" #. TRANSLATORS: %s expands to version such as '0.8.4' or '0.8.5beta' or #. similar #: ../bleachbit/Update.py:137 #, python-format msgid "Update to version %s" msgstr "" #: ../bleachbit/Update.py:163 #, python-format msgid "" "Error when opening a network connection to %s to check for updates. Please " "verify the network is working." msgstr "" #. TRANSLATORS: This indicates an error. The special keyword #. %(operation)s will be replaced by 'firefox' or 'opera' or #. some other cleaner ID. The special keyword %(msg)s will be #. replaced by a message such as 'Permission denied.' #: ../bleachbit/Worker.py:73 #, python-format msgid "Exception while running operation '%(operation)s': '%(msg)s'" msgstr "" #. TRANSLATORS: 'free' means 'unallocated' #: ../bleachbit/Worker.py:181 msgid "Please wait. Wiping free disk space." msgstr "" #. TRANSLATORS: %s is replaced with Firefox, System, etc. #: ../bleachbit/Worker.py:183 ../bleachbit/Worker.py:323 #, python-format msgid "Please wait. Cleaning %s." msgstr "" #: ../bleachbit/Worker.py:183 ../bleachbit/Cleaner.py:477 #: ../bleachbit/Cleaner.py:628 msgid "Memory" msgstr "நினைவகம்" #: ../bleachbit/Worker.py:198 msgid "Please wait. Wiping file system metadata." msgstr "" #: ../bleachbit/Worker.py:201 msgid "Please wait. Cleaning up after wiping file system metadata." msgstr "" #: ../bleachbit/Worker.py:204 #, python-format msgid "About %d minute remaining." msgid_plural "About %d minutes remaining." msgstr[0] "" msgstr[1] "" #. TRANSLATORS: This refers to disk space that was #. really recovered (in other words, not a preview) #: ../bleachbit/Worker.py:262 #, python-format msgid "Disk space recovered: %s" msgstr "" #. TRANSLATORS: This refers to a preview (no real #. changes were made yet) #: ../bleachbit/Worker.py:266 #, python-format msgid "Disk space to be recovered: %s" msgstr "" #. TRANSLATORS: This refers to the number of files really #. deleted (in other words, not a preview). #: ../bleachbit/Worker.py:271 #, python-format msgid "Files deleted: %d" msgstr "அழிக்கப்பட்ட கோப்புகள்: %d" #. TRANSLATORS: This refers to the number of files that #. would be deleted (in other words, simply a preview). #: ../bleachbit/Worker.py:275 #, python-format msgid "Files to be deleted: %d" msgstr "அழிக்கப்படவுள்ள கோப்புகள்: %d" #: ../bleachbit/Worker.py:278 #, python-format msgid "Special operations: %d" msgstr "" #: ../bleachbit/Worker.py:281 #, python-format msgid "Errors: %d" msgstr "பிழைகள்: %d" #. TRANSLATORS: The "deep scan" feature searches over broad #. areas of the file system such as the user's whole home directory #. or all the system executables. #: ../bleachbit/Worker.py:296 msgid "Please wait. Running deep scan." msgstr "" #. TRANSLATORS: %s is replaced with Firefox, System, etc. #: ../bleachbit/Worker.py:326 #, python-format msgid "Please wait. Previewing %s." msgstr "" #. TRANSLATORS: This is cleaner name for cleaners imported from winapp2.ini #: ../bleachbit/Winapp.py:43 msgid "Applications" msgstr "" #. TRANSLATORS: This is cleaner name for cleaners imported #. from winapp2.ini #: ../bleachbit/Winapp.py:46 msgid "Internet" msgstr "" #. TRANSLATORS: This is cleaner name for cleaners imported #. from winapp2.ini #: ../bleachbit/Winapp.py:49 msgid "Multimedia" msgstr "" #. TRANSLATORS: This is cleaner name for cleaners imported #. from winapp2.ini #: ../bleachbit/Winapp.py:52 msgid "Utilities" msgstr "" #: ../bleachbit/Winapp.py:63 msgid "Games" msgstr "" #: ../bleachbit/Winapp.py:153 msgid "Imported from winapp2.ini" msgstr "" #: ../bleachbit/Cleaner.py:198 msgid "Crash reports" msgstr "சிதைவு அறிக்கைகள்" #: ../bleachbit/Cleaner.py:205 msgid "Session restore" msgstr "" #: ../bleachbit/Cleaner.py:206 msgid "Loads the initial session after the browser closes or crashes" msgstr "" #: ../bleachbit/Cleaner.py:208 msgid "Site preferences" msgstr "" #: ../bleachbit/Cleaner.py:208 msgid "Settings for individual sites" msgstr "" #. TRANSLATORS: desktop entries are .desktop files in Linux tha #. make up the application menu (the menu that shows BleachBit, #. Firefox, and others. The .desktop files also associate file #. types, so clicking on an .html file in Nautilus brings up #. Firefox. #. More information: #. http://standards.freedesktop.org/menu-spec/latest/index.html#introduction #: ../bleachbit/Cleaner.py:454 msgid "Broken desktop files" msgstr "பழுதடைந்த திரைப்பலக கோப்புகள்" #: ../bleachbit/Cleaner.py:455 msgid "Delete broken application menu entries and file associations" msgstr "" #. TRANSLATORS: Localizations are files supporting specific #. languages, so applications appear in Spanish, etc. #: ../bleachbit/Cleaner.py:459 msgid "Localizations" msgstr "" #: ../bleachbit/Cleaner.py:460 msgid "Delete files for unwanted languages" msgstr "தேவையற்ற மொழிகளுக்கான கோப்புகளை அழி" #: ../bleachbit/Cleaner.py:462 msgid "Configure this option in the preferences." msgstr "" #: ../bleachbit/Cleaner.py:468 msgid "Rotated logs" msgstr "" #: ../bleachbit/Cleaner.py:468 msgid "Delete old system logs" msgstr "" #: ../bleachbit/Cleaner.py:471 msgid "Trash" msgstr "குப்பைத்தொட்டி" #: ../bleachbit/Cleaner.py:471 msgid "Empty the trash" msgstr "குப்பையை காலி செய்" #. TRANSLATORS: 'free' means 'unallocated' #: ../bleachbit/Cleaner.py:479 msgid "Wipe the swap and free memory" msgstr "" #: ../bleachbit/Cleaner.py:481 msgid "This option is experimental and may cause system problems." msgstr "" #: ../bleachbit/Cleaner.py:489 msgid "Memory dump" msgstr "" #: ../bleachbit/Cleaner.py:489 msgid "Delete the file memory.dmp" msgstr "" #. TRANSLATORS: Prefetch is Microsoft Windows jargon. #: ../bleachbit/Cleaner.py:492 msgid "Prefetch" msgstr "தற்காலிக" #: ../bleachbit/Cleaner.py:494 msgid "Recycle bin" msgstr "மீள்சுழற்சிக் கூடை" #: ../bleachbit/Cleaner.py:494 msgid "Empty the recycle bin" msgstr "மீள்சுழற்சிக் கூடையை வெறுமனாக்கு" #. TRANSLATORS: 'Update' is a noun, and 'Update uninstallers' is an option to delete #. the uninstallers for software updates. #: ../bleachbit/Cleaner.py:497 msgid "Update uninstallers" msgstr "" #: ../bleachbit/Cleaner.py:498 msgid "" "Delete uninstallers for Microsoft updates including hotfixes, service packs, " "and Internet Explorer updates" msgstr "" #: ../bleachbit/Cleaner.py:505 ../bleachbit/Cleaner.py:721 msgid "Clipboard" msgstr "ஒட்டுப்பலகை" #: ../bleachbit/Cleaner.py:506 msgid "" "The desktop environment's clipboard used for copy and paste operations" msgstr "" #. TRANSLATORS: "Custom" is an option allowing the user to specify which #. files and folders will be erased. #: ../bleachbit/Cleaner.py:513 ../bleachbit/GuiPreferences.py:63 msgid "Custom" msgstr "" #: ../bleachbit/Cleaner.py:514 msgid "Delete user-specified files and folders" msgstr "" #. TRANSLATORS: 'free' means 'unallocated' #: ../bleachbit/Cleaner.py:516 msgid "Free disk space" msgstr "" #. TRANSLATORS: 'free' means 'unallocated' #: ../bleachbit/Cleaner.py:518 msgid "Overwrite free disk space to hide deleted files" msgstr "" #: ../bleachbit/Cleaner.py:519 msgid "This option is very slow." msgstr "" #: ../bleachbit/Cleaner.py:523 msgid "The system in general" msgstr "" #: ../bleachbit/Cleaner.py:525 ../bleachbit/Cleaner.py:840 msgid "System" msgstr "அமைப்பு" #. TRANSLATORS: 'Free' means 'unallocated.' #. %s expands to a path such as C:\ or /tmp/ #: ../bleachbit/Cleaner.py:729 ../bleachbit/Cleaner.py:873 #, python-format msgid "Overwrite free disk space %s" msgstr "" #: ../bleachbit/GuiPreferences.py:61 msgid "General" msgstr "பொதுவான" #: ../bleachbit/GuiPreferences.py:64 msgid "Drives" msgstr "இயக்கிகள்" #: ../bleachbit/GuiPreferences.py:67 msgid "Languages" msgstr "மொழிகள்" #: ../bleachbit/GuiPreferences.py:69 msgid "Whitelist" msgstr "வெள்ளைப்பட்டியல்" #: ../bleachbit/GuiPreferences.py:114 msgid "Check periodically for software updates via the Internet" msgstr "" #: ../bleachbit/GuiPreferences.py:119 msgid "" "If an update is found, you will be given the option to view information " "about it. Then, you may manually download and install the update." msgstr "" #: ../bleachbit/GuiPreferences.py:125 msgid "Check for new beta releases" msgstr "" #: ../bleachbit/GuiPreferences.py:134 msgid "Download and update cleaners from community (winapp2.ini)" msgstr "" #. TRANSLATORS: This means to hide cleaners which would do #. nothing. For example, if Firefox were never used on #. this system, this option would hide Firefox to simplify #. the list of cleaners. #: ../bleachbit/GuiPreferences.py:148 msgid "Hide irrelevant cleaners" msgstr "" #. TRANSLATORS: Overwriting is the same as shredding. It is a way #. to prevent recovery of the data. You could also translate #. 'Shred files to prevent recovery.' #: ../bleachbit/GuiPreferences.py:156 msgid "Overwrite files to hide contents" msgstr "" #: ../bleachbit/GuiPreferences.py:160 msgid "" "Overwriting is ineffective on some file systems and with certain BleachBit " "operations. Overwriting is significantly slower." msgstr "" #: ../bleachbit/GuiPreferences.py:163 msgid "Start BleachBit with computer" msgstr "" #: ../bleachbit/GuiPreferences.py:169 msgid "Exit after cleaning" msgstr "" #: ../bleachbit/GuiPreferences.py:175 msgid "Confirm before delete" msgstr "" #: ../bleachbit/GuiPreferences.py:212 msgid "" "Choose a writable folder for each drive for which to overwrite free space." msgstr "" #. TRANSLATORS: In the preferences dialog, this button adds a path to #. the list of paths #: ../bleachbit/GuiPreferences.py:234 msgctxt "button" msgid "Add" msgstr "சேர்" #. TRANSLATORS: In the preferences dialog, this button removes a path #. from the list of paths #: ../bleachbit/GuiPreferences.py:238 ../bleachbit/GuiPreferences.py:449 msgctxt "button" msgid "Remove" msgstr "நீக்கு" #: ../bleachbit/GuiPreferences.py:263 msgid "All languages will be deleted except those checked." msgstr "" #: ../bleachbit/GuiPreferences.py:279 msgid "Preserve" msgstr "" #: ../bleachbit/GuiPreferences.py:283 msgid "Code" msgstr "குறியீடு" #: ../bleachbit/GuiPreferences.py:304 ../bleachbit/GuiPreferences.py:345 msgid "Choose a file" msgstr "கோப்பினை தேர்ந்தெடுக்கவும்" #: ../bleachbit/GuiPreferences.py:311 ../bleachbit/GuiPreferences.py:352 #: ../bleachbit/GuiPreferences.py:396 msgid "File" msgstr "கோப்பு" #: ../bleachbit/GuiPreferences.py:325 ../bleachbit/GuiPreferences.py:366 #: ../bleachbit/GuiPreferences.py:398 msgid "Folder" msgstr "அடைவு" #: ../bleachbit/GuiPreferences.py:408 msgid "Theses paths will not be deleted or modified." msgstr "" #: ../bleachbit/GuiPreferences.py:411 msgid "These locations can be selected for deletion." msgstr "" #: ../bleachbit/GuiPreferences.py:419 msgid "Type" msgstr "வகை" #. TRANSLATORS: In the tree view "Path" is used generically to refer to a #. file, a folder, or a pattern describing either #: ../bleachbit/GuiPreferences.py:425 msgid "Path" msgstr "பாதை" #: ../bleachbit/GuiPreferences.py:437 msgctxt "button" msgid "Add file" msgstr "கோப்பினை சேர்" #: ../bleachbit/GuiPreferences.py:443 msgctxt "button" msgid "Add folder" msgstr "அடைவினை சேர்" bleachbit-2.0/po/ar.po0000644000175000017500000014072713245436307012774 0ustar hlehle# Arabic translation for bleachbit # Copyright (c) 2009 Rosetta Contributors and Canonical Ltd 2009 # This file is distributed under the same license as the bleachbit package. # FIRST AUTHOR , 2009. # msgid "" msgstr "" "Project-Id-Version: bleachbit\n" "Report-Msgid-Bugs-To: FULL NAME \n" "POT-Creation-Date: 2016-06-24 19:52-0600\n" "PO-Revision-Date: 2016-11-04 19:28+0000\n" "Last-Translator: Fcmam5 \n" "Language-Team: Arabic \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=6; plural=n==0 ? 0 : n==1 ? 1 : n==2 ? 2 : n % 100 >= " "3 && n % 100 <= 10 ? 3 : n % 100 >= 11 && n % 100 <= 99 ? 4 : 5;\n" "X-Launchpad-Export-Date: 2016-11-05 14:00+0000\n" "X-Generator: Launchpad (build 18246)\n" #: ../cleaners/mc.xml ../cleaners/tortoisesvn.xml ../cleaners/vim.xml #: ../cleaners/safari.xml ../cleaners/links2.xml ../cleaners/seamonkey.xml #: ../cleaners/realplayer.xml ../cleaners/windows_defender.xml #: ../cleaners/d4x.xml ../cleaners/sqlite3.xml #: ../cleaners/internet_explorer.xml ../cleaners/libreoffice.xml #: ../cleaners/easytag.xml ../cleaners/bash.xml ../cleaners/nautilus.xml #: ../cleaners/octave.xml ../cleaners/elinks.xml ../cleaners/chromium.xml #: ../cleaners/google_chrome.xml msgid "History" msgstr "التأريخ" #: ../cleaners/mc.xml ../cleaners/tortoisesvn.xml ../cleaners/links2.xml #: ../cleaners/realplayer.xml ../cleaners/d4x.xml ../cleaners/libreoffice.xml #: ../cleaners/easytag.xml ../cleaners/nautilus.xml ../cleaners/gnome.xml #: ../bleachbit/Cleaner.py:351 ../bleachbit/Cleaner.py:425 #: ../bleachbit/Cleaner.py:434 msgid "Delete the usage history" msgstr "احذف تأريخ الاستخدام" #: ../cleaners/gpodder.xml ../cleaners/hippo_opensim_viewer.xml #: ../cleaners/thumbnails.xml ../cleaners/safari.xml ../cleaners/emesene.xml #: ../cleaners/liferea.xml ../cleaners/seamonkey.xml ../cleaners/vuze.xml #: ../cleaners/yahoo_messenger.xml ../cleaners/pidgin.xml #: ../cleaners/adobe_reader.xml ../cleaners/evolution.xml #: ../cleaners/tremulous.xml ../cleaners/libreoffice.xml ../cleaners/xine.xml #: ../cleaners/nexuiz.xml ../cleaners/exaile.xml ../cleaners/opera.xml #: ../cleaners/amsn.xml ../cleaners/gftp.xml ../cleaners/miro.xml #: ../cleaners/beagle.xml ../cleaners/kde.xml ../cleaners/epiphany.xml #: ../cleaners/flash.xml ../cleaners/secondlife_viewer.xml ../cleaners/java.xml #: ../cleaners/chromium.xml ../cleaners/audacious.xml ../cleaners/rhythmbox.xml #: ../cleaners/google_chrome.xml ../cleaners/thunderbird.xml #: ../bleachbit/Cleaner.py:194 ../bleachbit/Cleaner.py:372 #: ../bleachbit/Cleaner.py:457 msgid "Cache" msgstr "الذاكرة المخبأة" #: ../cleaners/gpodder.xml ../cleaners/yum.xml #: ../cleaners/hippo_opensim_viewer.xml ../cleaners/thumbnails.xml #: ../cleaners/windows_explorer.xml ../cleaners/liferea.xml #: ../cleaners/vuze.xml ../cleaners/yahoo_messenger.xml ../cleaners/pidgin.xml #: ../cleaners/adobe_reader.xml ../cleaners/evolution.xml #: ../cleaners/libreoffice.xml ../cleaners/apt.xml ../cleaners/xine.xml #: ../cleaners/nexuiz.xml ../cleaners/exaile.xml ../cleaners/amsn.xml #: ../cleaners/gftp.xml ../cleaners/miro.xml ../cleaners/beagle.xml #: ../cleaners/kde.xml ../cleaners/flash.xml ../cleaners/secondlife_viewer.xml #: ../cleaners/java.xml ../cleaners/audacious.xml ../cleaners/rhythmbox.xml #: ../bleachbit/Cleaner.py:372 ../bleachbit/Cleaner.py:457 #: ../bleachbit/Cleaner.py:491 ../bleachbit/Cleaner.py:493 msgid "Delete the cache" msgstr "احذف ملفات المخبئية" #. TRANSLATORS: Vacuum is a verb. The term is jargon #. from the SQLite database. Microsoft Access uses #. the term 'Compact Database' (which you may translate #. instead). Another synonym is 'defragment.' #: ../cleaners/gpodder.xml ../cleaners/yum.xml ../cleaners/safari.xml #: ../cleaners/liferea.xml ../cleaners/chromium.xml #: ../cleaners/google_chrome.xml ../cleaners/thunderbird.xml #: ../bleachbit/Cleaner.py:216 ../bleachbit/Cleaner.py:362 #: ../bleachbit/Action.py:419 msgid "Vacuum" msgstr "ادمج" #: ../cleaners/gpodder.xml ../cleaners/yum.xml ../cleaners/safari.xml #: ../cleaners/liferea.xml ../cleaners/chromium.xml #: ../cleaners/google_chrome.xml ../cleaners/thunderbird.xml #: ../bleachbit/Cleaner.py:217 msgid "" "Clean database fragmentation to reduce space and improve speed without " "removing any data" msgstr "" "قلل تناثر محتويات قاعدة البيانات لتقليل الحجم الذي تشغله و زيادة سرعة الوصول " "إلى البيانات بدون حذف أية بيانات" #: ../cleaners/yum.xml ../cleaners/apt.xml msgid "Package manager" msgstr "مدير الحزم" #: ../cleaners/warzone2100.xml ../cleaners/hippo_opensim_viewer.xml #: ../cleaners/gl-117.xml ../cleaners/tremulous.xml ../cleaners/nexuiz.xml #: ../cleaners/secondlife_viewer.xml msgid "Game" msgstr "لعبة" #: ../cleaners/warzone2100.xml ../cleaners/hippo_opensim_viewer.xml #: ../cleaners/teamviewer.xml ../cleaners/realplayer.xml ../cleaners/vuze.xml #: ../cleaners/yahoo_messenger.xml ../cleaners/amule.xml #: ../cleaners/easytag.xml ../cleaners/exaile.xml ../cleaners/screenlets.xml #: ../cleaners/gftp.xml ../cleaners/miro.xml ../cleaners/audacious.xml #: ../bleachbit/Cleaner.py:488 msgid "Logs" msgstr "السجلّات" #: ../cleaners/warzone2100.xml ../cleaners/hippo_opensim_viewer.xml #: ../cleaners/teamviewer.xml ../cleaners/realplayer.xml ../cleaners/vuze.xml #: ../cleaners/yahoo_messenger.xml ../cleaners/amule.xml ../cleaners/exaile.xml #: ../cleaners/screenlets.xml ../cleaners/gftp.xml ../cleaners/miro.xml #: ../cleaners/audacious.xml ../bleachbit/Cleaner.py:488 msgid "Delete the logs" msgstr "احذف السجّلات التي تحوي تفاصيل عمل البرمجية و جلسات استخدامها" #: ../cleaners/thumbnails.xml ../cleaners/windows_explorer.xml msgid "Thumbnails" msgstr "المُصغّرات" #: ../cleaners/thumbnails.xml msgid "Icons for files on the system" msgstr "الأيقونات للملفات في النظام" #: ../cleaners/vim.xml ../cleaners/gedit.xml msgid "Editor" msgstr "المُحرّر" #: ../cleaners/vim.xml msgid "" "Delete ~/.viminfo which includes file history, command history, and buffers" msgstr "احذف ~/.viminfo الذي يحوي تأريخ الملفات و الأوامر و المخبئية" #: ../cleaners/filezilla.xml ../cleaners/transmission.xml ../cleaners/vuze.xml #: ../cleaners/amule.xml ../cleaners/gftp.xml msgid "File transfer client" msgstr "عميل نقل الملفات" #: ../cleaners/filezilla.xml ../cleaners/paint.xml #: ../cleaners/windows_media_player.xml ../cleaners/windows_explorer.xml #: ../cleaners/teamviewer.xml ../cleaners/microsoft_office.xml #: ../cleaners/vlc.xml ../cleaners/adobe_reader.xml ../cleaners/winamp.xml #: ../cleaners/winzip.xml ../cleaners/winrar.xml ../cleaners/audacious.xml #: ../cleaners/wordpad.xml ../bleachbit/Cleaner.py:373 msgid "Most recently used" msgstr "المستخدمة مؤخرًا" #: ../cleaners/filezilla.xml ../cleaners/windows_explorer.xml #: ../cleaners/gwenview.xml ../cleaners/adobe_reader.xml ../cleaners/gedit.xml #: ../cleaners/kde.xml ../cleaners/audacious.xml ../bleachbit/Cleaner.py:374 #: ../bleachbit/Cleaner.py:471 msgid "Delete the list of recently used documents" msgstr "احذف قائمة المستندات المستخدمة مؤخرًا" #: ../cleaners/skype.xml ../cleaners/xchat.xml ../cleaners/emesene.xml #: ../cleaners/yahoo_messenger.xml ../cleaners/pidgin.xml ../cleaners/amsn.xml msgid "Chat client" msgstr "عميل المحادثة" #: ../cleaners/skype.xml ../cleaners/xchat.xml ../cleaners/emesene.xml #: ../cleaners/seamonkey.xml ../cleaners/yahoo_messenger.xml #: ../cleaners/pidgin.xml ../cleaners/amsn.xml msgid "Chat logs" msgstr "سجلات المحادثة" #: ../cleaners/skype.xml ../cleaners/xchat.xml ../cleaners/emesene.xml #: ../cleaners/seamonkey.xml ../cleaners/yahoo_messenger.xml #: ../cleaners/pidgin.xml ../cleaners/amsn.xml msgid "Delete the chat logs" msgstr "احذف سجلات المحادثة" #: ../cleaners/skype.xml msgid "Installers" msgstr "المثبتات" #: ../cleaners/skype.xml msgid "Delete cached patches and installers" msgstr "" #: ../cleaners/safari.xml ../cleaners/links2.xml ../cleaners/seamonkey.xml #: ../cleaners/konqueror.xml ../cleaners/internet_explorer.xml #: ../cleaners/opera.xml ../cleaners/epiphany.xml ../cleaners/elinks.xml #: ../cleaners/chromium.xml ../cleaners/google_chrome.xml #: ../bleachbit/Cleaner.py:228 msgid "Web browser" msgstr "متصفح الوِب" #: ../cleaners/safari.xml ../cleaners/seamonkey.xml ../cleaners/opera.xml #: ../cleaners/epiphany.xml ../cleaners/chromium.xml #: ../cleaners/google_chrome.xml ../cleaners/thunderbird.xml #: ../bleachbit/Cleaner.py:195 msgid "Delete the web cache, which reduces time to display revisited pages" msgstr "" "احذف ذاكرة الوب المخبئية التي تقلل الزمن المطلوب لعرض الصفحات التي سبقت " "زيارتها" #: ../cleaners/safari.xml ../cleaners/liferea.xml ../cleaners/seamonkey.xml #: ../cleaners/realplayer.xml ../cleaners/konqueror.xml #: ../cleaners/internet_explorer.xml ../cleaners/opera.xml #: ../cleaners/epiphany.xml ../cleaners/flash.xml ../cleaners/silverlight.xml #: ../cleaners/chromium.xml ../cleaners/google_chrome.xml #: ../cleaners/thunderbird.xml ../bleachbit/Cleaner.py:196 msgid "Cookies" msgstr "كوكيز" #: ../cleaners/safari.xml ../cleaners/liferea.xml ../cleaners/seamonkey.xml #: ../cleaners/realplayer.xml ../cleaners/konqueror.xml #: ../cleaners/internet_explorer.xml ../cleaners/opera.xml #: ../cleaners/epiphany.xml ../cleaners/flash.xml ../cleaners/silverlight.xml #: ../cleaners/chromium.xml ../cleaners/google_chrome.xml #: ../cleaners/thunderbird.xml ../bleachbit/Cleaner.py:197 msgid "" "Delete cookies, which contain information such as web site preferences, " "authentication, and tracking identification" msgstr "" "احذف الكوكيز، و هي قطع معلوماتية مُركّزة تحوي معلومات مثل تفضيلات المواقع، و " "بيانات الاستيثاق ، و تعقّب المستخدمين" #: ../cleaners/safari.xml ../cleaners/konqueror.xml #: ../cleaners/internet_explorer.xml ../cleaners/opera.xml #: ../bleachbit/Cleaner.py:215 msgid "List of visited web pages" msgstr "قائمة صفحات الوِب التي سبقت مطالعتها" #. Torrent software can block a list of IP addresses, such as those that may belong to malware or anti-piracy organizations #: ../cleaners/transmission.xml msgid "Blocklists" msgstr "قائمة المنع" #: ../cleaners/transmission.xml ../cleaners/windows_defender.xml #: ../cleaners/beagle.xml ../cleaners/thunderbird.xml ../cleaners/deepscan.xml #: ../bleachbit/Cleaner.py:199 msgid "Delete the files" msgstr "احذف ملفات الفهارس" #: ../cleaners/transmission.xml msgid "Blocklists will need update to work." msgstr "قائمة المنع ستحتاج إلى التحديث للعمل" #: ../cleaners/transmission.xml msgid "Torrents" msgstr "التورنت" #: ../cleaners/transmission.xml msgid "Delete the torrents (just the metadata but not the files described)" msgstr "" #: ../cleaners/transmission.xml msgid "Statistics" msgstr "إحصائيات" #: ../cleaners/transmission.xml msgid "Delete the file" msgstr "احذف الملف" #: ../cleaners/paint.xml ../cleaners/windows_media_player.xml #: ../cleaners/windows_explorer.xml ../cleaners/teamviewer.xml #: ../cleaners/microsoft_office.xml ../cleaners/vlc.xml ../cleaners/winamp.xml #: ../cleaners/winzip.xml ../cleaners/winrar.xml ../cleaners/wordpad.xml msgid "Delete the most recently used list" msgstr "احذف قائمة الملفات المستعملة مؤخرًا" #: ../cleaners/emesene.xml msgid "Delete the avatars and emoticons cache" msgstr "احذف الذاكرة المخبأة للأيقونات الشخصية و الإيماءات" #: ../cleaners/windows_media_player.xml ../cleaners/realplayer.xml #: ../cleaners/vlc.xml ../cleaners/winamp.xml msgid "Media player" msgstr "مشغل الوسائط" #: ../cleaners/windows_explorer.xml ../cleaners/nautilus.xml msgid "File manager" msgstr "مدير الملفات" #: ../cleaners/windows_explorer.xml ../cleaners/gwenview.xml #: ../cleaners/gedit.xml ../cleaners/kde.xml ../bleachbit/Cleaner.py:470 msgid "Recent documents list" msgstr "قائمة المستندات المستعملة مؤخرًا" #. In Windows 'Run' is the dialog in the Start menu #. In GNOME 'Run' is the dialog shown when typing ALT+F2' #: ../cleaners/windows_explorer.xml ../cleaners/gnome.xml msgid "Run" msgstr "تشغيل الأوامر" #: ../cleaners/windows_explorer.xml ../cleaners/opera.xml ../cleaners/gnome.xml #: ../cleaners/google_toolbar.xml msgid "Search history" msgstr "تأريخ البحث" #: ../cleaners/windows_explorer.xml ../cleaners/opera.xml ../cleaners/gnome.xml #: ../cleaners/google_toolbar.xml msgid "Delete the search history" msgstr "احذف تأريخ البحث" #: ../cleaners/windows_explorer.xml msgid "This will restart Windows Explorer." msgstr "هذا سيعيد تشغيل مستكشف ويندوز" #: ../cleaners/gl-117.xml ../cleaners/microsoft_office.xml #: ../cleaners/beagle.xml ../cleaners/secondlife_viewer.xml ../cleaners/x11.xml msgid "Debug logs" msgstr "سجلّات العلّات" #: ../cleaners/gl-117.xml ../cleaners/microsoft_office.xml #: ../cleaners/easytag.xml ../cleaners/beagle.xml #: ../cleaners/secondlife_viewer.xml ../cleaners/x11.xml msgid "Delete the debug logs" msgstr "احذف سجلاّت العلّات" #: ../cleaners/google_earth.xml ../cleaners/winetricks.xml ../cleaners/vuze.xml #: ../cleaners/adobe_reader.xml ../cleaners/amule.xml ../cleaners/wine.xml #: ../cleaners/internet_explorer.xml ../cleaners/gimp.xml ../cleaners/kde.xml #: ../cleaners/deepscan.xml ../bleachbit/Cleaner.py:522 msgid "Temporary files" msgstr "الملفات المؤقتة" #: ../cleaners/google_earth.xml ../cleaners/winetricks.xml ../cleaners/vuze.xml #: ../cleaners/adobe_reader.xml ../cleaners/amule.xml ../cleaners/wine.xml #: ../cleaners/internet_explorer.xml ../cleaners/gimp.xml ../cleaners/kde.xml #: ../cleaners/deepscan.xml ../bleachbit/Cleaner.py:522 msgid "Delete the temporary files" msgstr "احذف الملفات المؤقتة" #: ../cleaners/seamonkey.xml ../cleaners/opera.xml ../bleachbit/Cleaner.py:203 msgid "Download history" msgstr "تأريخ التنزيلات" #: ../cleaners/seamonkey.xml ../cleaners/opera.xml ../bleachbit/Cleaner.py:203 msgid "List of files downloaded" msgstr "قائمة الملفات المُنزّلة" #: ../cleaners/seamonkey.xml msgid "Delete the list of visited web pages" msgstr "احذف قائمة صفحات الوِب التي سبقت مطالعتها" #: ../cleaners/vuze.xml ../cleaners/deepscan.xml ../bleachbit/Cleaner.py:192 msgid "Backup files" msgstr "ملفات المحفوظات" #: ../cleaners/vuze.xml ../cleaners/deepscan.xml ../bleachbit/Cleaner.py:193 msgid "Delete the backup files" msgstr "احذف ملفات المحفوظات" #: ../cleaners/konqueror.xml ../cleaners/opera.xml ../cleaners/chromium.xml msgid "Current session" msgstr "جلسات التصفّح الحالية" #: ../cleaners/konqueror.xml ../cleaners/opera.xml ../cleaners/chromium.xml msgid "Delete the current session" msgstr "أنه و أغلق جلسات التصفّح الحالية" #: ../cleaners/konqueror.xml ../cleaners/opera.xml ../bleachbit/Cleaner.py:215 msgid "URL history" msgstr "تأريخ مسارات الإنترنت" #: ../cleaners/microsoft_office.xml ../cleaners/libreoffice.xml #: ../bleachbit/Cleaner.py:377 msgid "Office suite" msgstr "طقم التطبيقات المكتبية" #: ../cleaners/windows_defender.xml msgid "Anti-virus" msgstr "مضاد الفيروسات" #: ../cleaners/adobe_reader.xml msgid "Document viewer" msgstr "متصفح المجلدات" #: ../cleaners/evolution.xml ../cleaners/thunderbird.xml msgid "Email client" msgstr "عميل البريد الالكتروني" #: ../cleaners/tremulous.xml msgid "Delete the list of game servers" msgstr "احذف قائمة خواديم اللعب" #: ../cleaners/sqlite3.xml ../cleaners/bash.xml ../cleaners/octave.xml msgid "Delete the command history" msgstr "احذف تأريخ الأوامر" #: ../cleaners/wine.xml msgid "Compatibility layer for Windows software" msgstr "طبقة التوافق مع برامج الويندوز" #: ../cleaners/internet_explorer.xml ../cleaners/chromium.xml #: ../cleaners/google_chrome.xml ../bleachbit/Cleaner.py:204 msgid "Form history" msgstr "تأريخ الاستمارات" #: ../cleaners/internet_explorer.xml ../bleachbit/Cleaner.py:205 msgid "A history of forms entered in web sites and in the Search bar" msgstr "تأريخ البيانات المدخلة في الاستمارات في صفحات الوِب و شريط البحث" #. This software edits metadata tags, such as title and artist, in audio files #: ../cleaners/easytag.xml msgid "Audio files tagger" msgstr "" #: ../cleaners/apt.xml msgid "Delete obsolete files" msgstr "احذف ملفات الحزم غير المستعملة" #: ../cleaners/apt.xml msgid "Package lists" msgstr "قائمة الحزم" #: ../cleaners/xine.xml ../cleaners/miro.xml ../cleaners/flash.xml msgid "Multimedia viewer" msgstr "عارض الميديا" #: ../cleaners/recoll.xml ../cleaners/beagle.xml msgid "Search tool" msgstr "أداة البحث" #: ../cleaners/recoll.xml ../cleaners/beagle.xml ../cleaners/thunderbird.xml msgid "Index" msgstr "الفهرس" #: ../cleaners/recoll.xml msgid "" "Delete the search index, a database of words and the files they contain" msgstr "" "احذف فهارس البحث، و هي قاعدة بيانات تحوي الكلمات و الملفات التي تحوي هذه " "الكلمات" #: ../cleaners/gimp.xml msgid "Graphics editor" msgstr "محرر الرسوميات" #: ../cleaners/exaile.xml msgid "Downloaded podcasts" msgstr "التدوينات الصوتية المُنزّلة" #: ../cleaners/exaile.xml msgid "Delete downloaded podcasts" msgstr "احذف التدوينات الصوتية المُنزّلة" #: ../cleaners/bash.xml msgid "Shell" msgstr "الصدفة" #. TRANSLATORS: DOM = Document Object Model. #: ../cleaners/opera.xml ../cleaners/epiphany.xml ../cleaners/chromium.xml #: ../cleaners/google_chrome.xml ../bleachbit/Cleaner.py:201 msgid "DOM Storage" msgstr "مخزن DOM (نموذج كيانات الوثيقة)" #: ../cleaners/opera.xml ../cleaners/epiphany.xml ../cleaners/chromium.xml #: ../cleaners/google_chrome.xml ../bleachbit/Cleaner.py:201 msgid "Delete HTML5 cookies" msgstr "حذف كوكيز HTML5" #: ../cleaners/opera.xml ../cleaners/epiphany.xml ../cleaners/chromium.xml #: ../cleaners/google_chrome.xml ../cleaners/thunderbird.xml #: ../bleachbit/Cleaner.py:210 msgid "Passwords" msgstr "كلمات السرّ" #: ../cleaners/opera.xml ../cleaners/epiphany.xml ../cleaners/chromium.xml #: ../cleaners/google_chrome.xml ../cleaners/thunderbird.xml #: ../bleachbit/Cleaner.py:211 msgid "" "A database of usernames and passwords as well as a list of sites that should " "not store passwords" msgstr "" "قاعدة بيانات تحوي أسماء المستخدم و كلمات السرّ، و كذلك قائمة المواقع التي " "يجب عدم حفظ كلمات سرّ لها" #: ../cleaners/opera.xml ../cleaners/epiphany.xml ../cleaners/chromium.xml #: ../cleaners/google_chrome.xml ../cleaners/thunderbird.xml #: ../bleachbit/Cleaner.py:213 msgid "This option will delete your saved passwords." msgstr "هذا الخيار سيحذف كلماتك السرية المحفوظة" #: ../cleaners/nautilus.xml msgid "Custom folders will be reset." msgstr "تصفير الأدلّة المخصصة" #: ../cleaners/gnome.xml ../cleaners/kde.xml msgid "Desktop environment" msgstr "بيئة سطح مكتب" #: ../cleaners/screenlets.xml msgid "Widgets for the desktop" msgstr "ملحقات سطح المكتب" #: ../cleaners/epiphany.xml msgid "Places" msgstr "الأماكن" #: ../cleaners/epiphany.xml msgid "" "A database of URLs including bookmarks, favicons, and a history of visited " "web sites" msgstr "" "قاعدة بيانات تحوي مسارات المواقع المفضّلة و أيقوناتها، و تأريخ مطالعة صفحات " "الوِب" #: ../cleaners/epiphany.xml msgid "This option deletes all bookmarks." msgstr "هذا سيحذف كلّ علامات المواقع المفضّلة" #: ../cleaners/winrar.xml msgid "File archiver" msgstr "أرشفة الملفات" #: ../cleaners/elinks.xml msgid "Delete the cookies, visited URLs, and search history" msgstr "احذف الكوكيز و مسارات الصفحات المطالعة، و تأريخ البحث" #: ../cleaners/chromium.xml ../cleaners/google_chrome.xml msgid "A history of forms entered in web sites" msgstr "تاريخ محتويات الاستمارات المدخلة في صفحات الوِب" #: ../cleaners/chromium.xml ../cleaners/google_chrome.xml msgid "" "Delete the history which includes visited sites, downloads, and thumbnails" msgstr "" "احذف التأريخ الذي يتضمن مواقع الوِب المُطالعة، و التنزيلات، و المُصغّرات" #: ../cleaners/chromium.xml ../cleaners/google_chrome.xml msgid "Search engines" msgstr "محرّكات البحث" #. 'Factory' means a search engine that is installed by default 'from the factory,' but this is different than a 'default search engine' https://lists.launchpad.net/launchpad-translators/msg00283.html #: ../cleaners/chromium.xml ../cleaners/google_chrome.xml msgid "" "Reset the search engine usage history and delete non-factory search engines, " "some of which are added automatically" msgstr "" "صفّر تأريخ استخدام محركات البحث، و احذف محركات البحث غير التي كانت في الحالة " "المبدئية للمتصفح" #: ../cleaners/audacious.xml msgid "Audio player" msgstr "مشغل الصوتيات" #: ../cleaners/rhythmbox.xml msgid "Database" msgstr "قاعدة البيانات" #: ../cleaners/rhythmbox.xml msgid "" "Delete the database, which contain information such as play count and last " "played" msgstr "" #: ../cleaners/google_chrome.xml msgid "Session" msgstr "الجلسات" #: ../cleaners/google_chrome.xml msgid "Delete the current and last sessions" msgstr "احذف و أنه الجلسة الحالية و الجلسات السابقة" #: ../cleaners/x11.xml msgid "Windowing system" msgstr "نظام النوافذ" #: ../cleaners/wordpad.xml msgid "Word processor" msgstr "معالج الكلمات" #: ../cleaners/deepscan.xml msgid "Deep scan" msgstr "فحص عميق" #: ../cleaners/deepscan.xml msgid "Clean files widely scattered across the disk" msgstr "" #: ../cleaners/deepscan.xml msgid "Inspect the preview for any files you want to keep." msgstr "فحص لمعاينة الملفات التي تريد الاحتفاظ بها." #: ../cleaners/deepscan.xml msgid "This option is slow." msgstr "هذا الخيار بطيء." #: ../bleachbit.desktop msgid "Unnecessary file cleaner" msgstr "منظّف الملفات غير الضرورية" #: ../bleachbit.desktop msgid "Free space and maintain privacy" msgstr "لإخلاء مساحات التخزين و الحفاظ على الخصوصية" #. TRANSLATORS: This is the label in the log indicating was #. skipped because it matches the whitelist #: ../bleachbit/Command.py:44 msgid "Skip" msgstr "تُخطّي" #. TRANSLATORS: This is the label in the log indicating will be #. deleted (for previews) or was actually deleted #: ../bleachbit/Command.py:74 msgid "Delete" msgstr "حذف" #. TRANSLATORS: The file will be deleted when the #. system reboots #: ../bleachbit/Command.py:95 msgid "Mark for deletion" msgstr "أُشِّر للحذف" #. TRANSLATORS: Parts of this file will be deleted #: ../bleachbit/Command.py:192 ../bleachbit/Command.py:226 #: ../bleachbit/Action.py:256 ../bleachbit/Action.py:269 #: ../bleachbit/Action.py:282 ../bleachbit/Action.py:295 #: ../bleachbit/Action.py:308 msgid "Clean file" msgstr "نظّف الملف" #. TRANSLATORS: The file will be truncated to 0 bytes in length #: ../bleachbit/Command.py:268 msgid "Truncate" msgstr "قطع" #: ../bleachbit/Command.py:311 msgid "Delete registry key" msgstr "احذف مفتاح السجّل" #: ../bleachbit/Unix.py:340 ../bleachbit/Unix.py:370 ../bleachbit/Unix.py:574 #, python-format msgid "Executable not found: %s" msgstr "الملف التنفيذي غير موجود: %s" #. TRANSLATORS: %s expands to a name such as 'Firefox' or 'System'. #: ../bleachbit/Unix.py:571 ../bleachbit/Worker.py:141 #, python-format msgid "" "%s cannot be cleaned because it is currently running. Close it, and try " "again." msgstr "%s لا يمكن تنظيفه لأنه مشغّل حالياً. أغلقه، ثم أعد المحاولة." #: ../bleachbit/GuiBasic.py:112 msgid "Delete confirmation" msgstr "تأكيد الحذف" #: ../bleachbit/GuiBasic.py:122 msgid "" "Are you sure you want to permanently delete files according to the selected " "operations? The actual files that will be deleted may have changed since " "you ran the preview." msgstr "" "أمتأكد من أنك تريد حذف الملفات نهائيا وفق العمليات المختارة؟ الملفات المُزمع " "حذفها ربما تكون قد تغيرت منذ تشغيلك المعاينة." #: ../bleachbit/GuiBasic.py:125 msgid "Are you sure you want to permanently delete these files?" msgstr "أمتأكد من أنك تريد حذف هذه الملفات نهائيا؟" #: ../bleachbit/GuiBasic.py:162 #, python-format msgid "" "Because you are running as root, please manually open this link in a web " "browser:\n" "%s" msgstr "" "حيث أنك تُشغّل بصلاحية الجذر، افتح الرابط التالي يدويا في متصف الوِب:\n" "%s" #. TRANSLATORS: %s expands to www.bleachbit.org or similar #: ../bleachbit/GuiBasic.py:174 #, python-format msgid "Open web browser to %s?" msgstr "أتريد فتح المتصفح بالرابط %s؟" #. TRANSLATORS: This is cleaner name for cleaners imported from winapp2.ini #: ../bleachbit/Winapp.py:44 msgid "Applications" msgstr "التطبيقات" #. TRANSLATORS: This is cleaner name for cleaners imported #. from winapp2.ini #: ../bleachbit/Winapp.py:47 msgid "Internet" msgstr "الإنترنت" #. TRANSLATORS: This is cleaner name for cleaners imported #. from winapp2.ini #: ../bleachbit/Winapp.py:50 msgid "Multimedia" msgstr "الوسائط المتعددة" #. TRANSLATORS: This is cleaner name for cleaners imported #. from winapp2.ini #: ../bleachbit/Winapp.py:53 msgid "Utilities" msgstr "أدوات" #: ../bleachbit/Winapp.py:64 msgid "Games" msgstr "الألعاب" #: ../bleachbit/Winapp.py:165 msgid "Imported from winapp2.ini" msgstr "مستوردة من ملف winapp2.ini" #: ../bleachbit/Cleaner.py:199 msgid "Crash reports" msgstr "تقارير الانهيار" #: ../bleachbit/Cleaner.py:206 msgid "Session restore" msgstr "استعادة الجلسات" #: ../bleachbit/Cleaner.py:207 msgid "Loads the initial session after the browser closes or crashes" msgstr "يحمّل الجلسة السابقة للمتصفح قبل إغلاقه أو انهياره" #: ../bleachbit/Cleaner.py:209 msgid "Site preferences" msgstr "تفضيلات المواقع" #: ../bleachbit/Cleaner.py:209 msgid "Settings for individual sites" msgstr "إعدادات مواقع بعينها" #. TRANSLATORS: desktop entries are .desktop files in Linux that #. make up the application menu (the menu that shows BleachBit, #. Firefox, and others. The .desktop files also associate file #. types, so clicking on an .html file in Nautilus brings up #. Firefox. #. More information: #. http://standards.freedesktop.org/menu-spec/latest/index.html#introduction #: ../bleachbit/Cleaner.py:455 msgid "Broken desktop files" msgstr "ملفات سطح المكتب غير الصحيحة" #: ../bleachbit/Cleaner.py:456 msgid "Delete broken application menu entries and file associations" msgstr "احذف مدخلات قائمة البرامج غير العاملة و ارتباطات الملفات غير الصحيحة" #. TRANSLATORS: Localizations are files supporting specific #. languages, so applications appear in Spanish, etc. #: ../bleachbit/Cleaner.py:460 msgid "Localizations" msgstr "التوطينات" #: ../bleachbit/Cleaner.py:461 msgid "Delete files for unwanted languages" msgstr "احذف ملفات اللغات و التوطين غير المطلوبة" #: ../bleachbit/Cleaner.py:463 msgid "Configure this option in the preferences." msgstr "اضبط هذا الخيار في تفضيلات هذا التطبيق" #: ../bleachbit/Cleaner.py:469 msgid "Rotated logs" msgstr "السجلات القديمة" #: ../bleachbit/Cleaner.py:469 msgid "Delete old system logs" msgstr "احذف سجلات النظام القديمة" #: ../bleachbit/Cleaner.py:472 msgid "Trash" msgstr "المهملات" #: ../bleachbit/Cleaner.py:472 msgid "Empty the trash" msgstr "أفرغ سلة المحذوفات" #: ../bleachbit/Cleaner.py:478 ../bleachbit/Cleaner.py:629 #: ../bleachbit/Worker.py:189 msgid "Memory" msgstr "الذاكرة" #. TRANSLATORS: 'free' means 'unallocated' #: ../bleachbit/Cleaner.py:480 msgid "Wipe the swap and free memory" msgstr "امح ذاكرة المبادلة و الذاكرة غير المستغلّة" #: ../bleachbit/Cleaner.py:482 msgid "This option is experimental and may cause system problems." msgstr "هذا الخيار لازال قيد التطوير و قد يسبب خللا مؤقتا في النظام" #: ../bleachbit/Cleaner.py:490 msgid "Memory dump" msgstr "تفريغ الذاكرة" #: ../bleachbit/Cleaner.py:490 msgid "Delete the file memory.dmp" msgstr "احذف memory.dmp" #. TRANSLATORS: Prefetch is Microsoft Windows jargon. #: ../bleachbit/Cleaner.py:493 msgid "Prefetch" msgstr "الجلب المسبق" #: ../bleachbit/Cleaner.py:495 msgid "Recycle bin" msgstr "سلة المحذوفات" #: ../bleachbit/Cleaner.py:495 msgid "Empty the recycle bin" msgstr "أفرغ سلة المحذوفات" #. TRANSLATORS: 'Update' is a noun, and 'Update uninstallers' is an option to delete #. the uninstallers for software updates. #: ../bleachbit/Cleaner.py:498 msgid "Update uninstallers" msgstr "مزيلات التحديثات" #: ../bleachbit/Cleaner.py:499 msgid "" "Delete uninstallers for Microsoft updates including hotfixes, service packs, " "and Internet Explorer updates" msgstr "" "احذف مزيلات تنصيب تحديثات ميكروسُفت بما فيها التصليحات السريعة و حزم الخدمة " "و تحديثات متصفح الإنترنت \"إكسبلورر\"" #: ../bleachbit/Cleaner.py:506 ../bleachbit/Cleaner.py:722 msgid "Clipboard" msgstr "الحافظة" #: ../bleachbit/Cleaner.py:507 msgid "" "The desktop environment's clipboard used for copy and paste operations" msgstr "حافظة النسخ و اللصق" #. TRANSLATORS: "Custom" is an option allowing the user to specify which #. files and folders will be erased. #: ../bleachbit/Cleaner.py:514 ../bleachbit/GuiPreferences.py:63 msgid "Custom" msgstr "مُخصّص" #: ../bleachbit/Cleaner.py:515 msgid "Delete user-specified files and folders" msgstr "احذف ملفات و أدلة يعيّنها المستخدم" #. TRANSLATORS: 'free' means 'unallocated' #: ../bleachbit/Cleaner.py:517 msgid "Free disk space" msgstr "مساحة القرص الفارغة" #. TRANSLATORS: 'free' means 'unallocated' #: ../bleachbit/Cleaner.py:519 msgid "Overwrite free disk space to hide deleted files" msgstr "طمس مساحة القرص الفارغة لتصعيب ما كان مكتوبا فيها" #: ../bleachbit/Cleaner.py:520 msgid "This option is very slow." msgstr "هذا الخيار يبطئ" #: ../bleachbit/Cleaner.py:524 msgid "The system in general" msgstr "النظام بشكل عام" #: ../bleachbit/Cleaner.py:526 ../bleachbit/Cleaner.py:846 msgid "System" msgstr "النّظام" #. TRANSLATORS: 'Free' means 'unallocated.' #. %s expands to a path such as C:\ or /tmp/ #: ../bleachbit/Cleaner.py:730 ../bleachbit/Cleaner.py:879 #, python-format msgid "Overwrite free disk space %s" msgstr "اطمس المساحة الفارغة في %s" #: ../bleachbit/GuiPreferences.py:55 ../bleachbit/GUI.py:706 msgid "Preferences" msgstr "التفضيلات" #: ../bleachbit/GuiPreferences.py:61 msgid "General" msgstr "عامّ" #: ../bleachbit/GuiPreferences.py:64 msgid "Drives" msgstr "السوّاقات" #: ../bleachbit/GuiPreferences.py:67 msgid "Languages" msgstr "اللغات" #: ../bleachbit/GuiPreferences.py:69 msgid "Whitelist" msgstr "القائمة البيضاء" #: ../bleachbit/GuiPreferences.py:114 msgid "Check periodically for software updates via the Internet" msgstr "التمس دوريا تحديثات البرمجية عبر الإنترنت" #: ../bleachbit/GuiPreferences.py:119 msgid "" "If an update is found, you will be given the option to view information " "about it. Then, you may manually download and install the update." msgstr "" "إن وُجِدَت تحديثا فستُخيّر لمطالعة معلومات عنه، و يمكنك تنزيل التحديث يدويا " "و تنصيبه." #: ../bleachbit/GuiPreferences.py:125 msgid "Check for new beta releases" msgstr "التمس صدور إصدارات تجريبية حيثة" #: ../bleachbit/GuiPreferences.py:134 msgid "Download and update cleaners from community (winapp2.ini)" msgstr "نزّل و حدّث المنظفّات التي يساهم بها الآخرون (ملف winapp2.ini)" #. TRANSLATORS: This means to hide cleaners which would do #. nothing. For example, if Firefox were never used on #. this system, this option would hide Firefox to simplify #. the list of cleaners. #: ../bleachbit/GuiPreferences.py:148 msgid "Hide irrelevant cleaners" msgstr "اخفي المنظفات الغير معروفة" #. TRANSLATORS: Overwriting is the same as shredding. It is a way #. to prevent recovery of the data. You could also translate #. 'Shred files to prevent recovery.' #: ../bleachbit/GuiPreferences.py:156 msgid "Overwrite files to hide contents" msgstr "اطمس الملفات لمحو محتواها" #: ../bleachbit/GuiPreferences.py:160 msgid "" "Overwriting is ineffective on some file systems and with certain BleachBit " "operations. Overwriting is significantly slower." msgstr "" "الطمس بالكتابة فوق الملفات غير فعّال في بعض نظم الملفات و مع بعض إجراءات " "BleachBit. كما أن الطمس أبطأ بقدر ملحوظ." #: ../bleachbit/GuiPreferences.py:163 msgid "Start BleachBit with computer" msgstr "شغّل BleachBit مع بدء تشغيل النظام" #: ../bleachbit/GuiPreferences.py:169 msgid "Exit after cleaning" msgstr "خروج بعد التنظيف" #: ../bleachbit/GuiPreferences.py:175 msgid "Confirm before delete" msgstr "موافقة قبل الحذف" #: ../bleachbit/GuiPreferences.py:183 msgid "Use IEC sizes (1 KiB = 1024 bytes) instead of SI (1 kB = 1000 bytes)" msgstr "" #: ../bleachbit/GuiPreferences.py:194 ../bleachbit/GuiPreferences.py:323 #: ../bleachbit/GuiPreferences.py:364 ../bleachbit/GUI.py:592 msgid "Choose a folder" msgstr "اختر مجلّدًا" #: ../bleachbit/GuiPreferences.py:218 msgid "" "Choose a writable folder for each drive for which to overwrite free space." msgstr "" "اختر مجلدا قابلا للكتابة في كل مشغّل أقراص مما تريد طمس المساحة الشاغرة فيها." #. TRANSLATORS: In the preferences dialog, this button adds a path to #. the list of paths #: ../bleachbit/GuiPreferences.py:240 msgctxt "button" msgid "Add" msgstr "أضف" #. TRANSLATORS: In the preferences dialog, this button removes a path #. from the list of paths #: ../bleachbit/GuiPreferences.py:244 ../bleachbit/GuiPreferences.py:455 msgctxt "button" msgid "Remove" msgstr "أزِل" #: ../bleachbit/GuiPreferences.py:269 msgid "All languages will be deleted except those checked." msgstr "كل اللغات سيتم حذفها ما عدا المؤشر أمامها." #: ../bleachbit/GuiPreferences.py:285 msgid "Preserve" msgstr "استبقِ" #: ../bleachbit/GuiPreferences.py:289 msgid "Code" msgstr "الرمز" #: ../bleachbit/GuiPreferences.py:293 ../bleachbit/GUI.py:135 msgid "Name" msgstr "الاسم" #: ../bleachbit/GuiPreferences.py:310 ../bleachbit/GuiPreferences.py:351 msgid "Choose a file" msgstr "اختر ملفا" #: ../bleachbit/GuiPreferences.py:317 ../bleachbit/GuiPreferences.py:358 #: ../bleachbit/GuiPreferences.py:402 msgid "File" msgstr "ملف" #: ../bleachbit/GuiPreferences.py:331 ../bleachbit/GuiPreferences.py:372 #: ../bleachbit/GuiPreferences.py:404 msgid "Folder" msgstr "مجلّد" #: ../bleachbit/GuiPreferences.py:414 msgid "Theses paths will not be deleted or modified." msgstr "لا يمكن حذف و لا تعديل ما في هذه المسارات." #: ../bleachbit/GuiPreferences.py:417 msgid "These locations can be selected for deletion." msgstr "المواضع التالية يمكن حذفها." #: ../bleachbit/GuiPreferences.py:425 msgid "Type" msgstr "نوع" #. TRANSLATORS: In the tree view "Path" is used generically to refer to a #. file, a folder, or a pattern describing either #: ../bleachbit/GuiPreferences.py:431 msgid "Path" msgstr "مسار" #: ../bleachbit/GuiPreferences.py:443 msgctxt "button" msgid "Add file" msgstr "أضف ملفا" #: ../bleachbit/GuiPreferences.py:449 msgctxt "button" msgid "Add folder" msgstr "أضف مجلدا" #: ../bleachbit/RecognizeCleanerML.py:57 msgid "Security warning" msgstr "تحذير أمني" #: ../bleachbit/RecognizeCleanerML.py:70 msgid "" "These cleaner definitions are new or have changed. Malicious definitions can " "damage your system. If you do not trust these changes, delete the files or " "quit." msgstr "" "تعريفات المنظفات هذه جديدة أو تغيّرت. التعريفات الخبيثة بوسعها تخريب النظام. " "إذا كنت لا تثق بهذه التغييرات احذف الملفات أو أنهِ البرنامج." #: ../bleachbit/RecognizeCleanerML.py:85 msgctxt "column_label" msgid "Delete" msgstr "احذف" #: ../bleachbit/RecognizeCleanerML.py:90 msgctxt "column_label" msgid "Filename" msgstr "اسم الملف" #. TRANSLATORS: This indicates an error. The special keyword #. %(operation)s will be replaced by 'firefox' or 'opera' or #. some other cleaner ID. The special keyword %(msg)s will be #. replaced by a message such as 'Permission denied.' #: ../bleachbit/Worker.py:74 #, python-format msgid "Exception while running operation '%(operation)s': '%(msg)s'" msgstr "استثناء أثناء إجراء العملية '%(operation)s': '%(msg)s'" #. TRANSLATORS: 'free' means 'unallocated' #: ../bleachbit/Worker.py:187 msgid "Please wait. Wiping free disk space." msgstr "الرجاء الانتظار. يجري الآن محو المساحة الشاغرة في القرص." #. TRANSLATORS: %s is replaced with Firefox, System, etc. #: ../bleachbit/Worker.py:189 ../bleachbit/Worker.py:329 #, python-format msgid "Please wait. Cleaning %s." msgstr "الرجاء الإنتظار. يجري تنظيف %s." #: ../bleachbit/Worker.py:204 msgid "Please wait. Wiping file system metadata." msgstr "" #: ../bleachbit/Worker.py:207 msgid "Please wait. Cleaning up after wiping file system metadata." msgstr "" #: ../bleachbit/Worker.py:210 #, python-format msgid "About %d minute remaining." msgid_plural "About %d minutes remaining." msgstr[0] "المتبقي من الوقت أقل من دقيقة" msgstr[1] "المتبقي من الوقت دقيقة واحدة" msgstr[2] "المتبقي من الوقت دقيقتان" msgstr[3] "المتبقي من الوقت %d دقائق" msgstr[4] "المتبقي من الوقت %d دقائق" msgstr[5] "المتبقي من الوقت %d دقائق" #. TRANSLATORS: This refers to disk space that was #. really recovered (in other words, not a preview) #: ../bleachbit/Worker.py:268 #, python-format msgid "Disk space recovered: %s" msgstr "مساحة القرص المستعادة: %s" #. TRANSLATORS: This refers to a preview (no real #. changes were made yet) #: ../bleachbit/Worker.py:272 #, python-format msgid "Disk space to be recovered: %s" msgstr "مساحة القرص التي ستُستعاد: %s" #. TRANSLATORS: This refers to the number of files really #. deleted (in other words, not a preview). #: ../bleachbit/Worker.py:277 #, python-format msgid "Files deleted: %d" msgstr "الملفات المحذوفة: %d" #. TRANSLATORS: This refers to the number of files that #. would be deleted (in other words, simply a preview). #: ../bleachbit/Worker.py:281 #, python-format msgid "Files to be deleted: %d" msgstr "ملفات ستُحذف: %d" #: ../bleachbit/Worker.py:284 #, python-format msgid "Special operations: %d" msgstr "عمليات خاصة: %d" #: ../bleachbit/Worker.py:287 #, python-format msgid "Errors: %d" msgstr "أخطأء: %d" #. TRANSLATORS: The "deep scan" feature searches over broad #. areas of the file system such as the user's whole home directory #. or all the system executables. #: ../bleachbit/Worker.py:303 msgid "Please wait. Running deep scan." msgstr "الرجاء الانتظار. يجري الآن الفحص العميق." #. TRANSLATORS: %s is replaced with Firefox, System, etc. #: ../bleachbit/Worker.py:332 #, python-format msgid "Please wait. Previewing %s." msgstr "يرجى الانتظار. معاينة %s." #: ../bleachbit/Update.py:77 msgid "New winapp2.ini was downloaded." msgstr "تم تنزيل ملف winapp2.ini جديد." #: ../bleachbit/Update.py:123 msgid "Update BleachBit" msgstr "حدّث بليتشبِت" #: ../bleachbit/Update.py:128 msgid "A new version is available." msgstr "توجد إصدارة أحدث." #. TRANSLATORS: %s expands to version such as '0.8.4' or '0.8.5beta' or #. similar #: ../bleachbit/Update.py:137 #, python-format msgid "Update to version %s" msgstr "حدّث إلى الإصدار رقم %s" #: ../bleachbit/Update.py:163 #, python-format msgid "" "Error when opening a network connection to %s to check for updates. Please " "verify the network is working." msgstr "" #: ../bleachbit/CLI.py:106 #, python-format msgid "not a valid cleaner: %s" msgstr "منظّف غير صالح: %s" #. TRANSLATORS: This is the command line usage. Don't translate #. %prog, but do translate usage, options, cleaner, and option. #. More information about the command line is here #. http://www.bleachbit.org/documentation/command-line #: ../bleachbit/CLI.py:133 msgid "usage: %prog [options] cleaner.option1 cleaner.option2" msgstr "الاستخدام: %prog [خيارات] خيارالمنظف1 خيارالمنظف2" #: ../bleachbit/CLI.py:136 msgid "list cleaners" msgstr "اسرد المنظفّات" #. TRANSLATORS: predefined cleaners are for applications, such as Firefox and Flash. #. This is different than cleaning an arbitrary file, such as a #. spreadsheet on the desktop. #: ../bleachbit/CLI.py:141 msgid "run cleaners to delete files and make other permanent changes" msgstr "شغّل المنظفات لحذف الملفات و إحداث تغييرات أخرى دائمة" #: ../bleachbit/CLI.py:144 msgid "shred specific files or folders" msgstr "امحُ ملفات أو أدلّة بعينها" #: ../bleachbit/CLI.py:146 msgid "show system information" msgstr "أظهر معلومات النظام" #: ../bleachbit/CLI.py:148 msgid "launch the graphical interface" msgstr "شغّل الواجهة الرسومية" #: ../bleachbit/CLI.py:150 msgid "do not prompt for administrator privileges" msgstr "لا تطلب صلاحيات إدارية" #: ../bleachbit/CLI.py:155 msgid "preview files to be deleted and other changes" msgstr "استعرض الملفات المُزمع حذفها و التغييرات الأخرى" #: ../bleachbit/CLI.py:157 msgid "use options set in the graphical interface" msgstr "طبّق الإعدادات المعيّنة في الواجهة الرسومية" #: ../bleachbit/CLI.py:160 msgid "update winapp2.ini, if a new version is available" msgstr "حدّث ملف winapp2.ini إن كانت توجد منه إصدارة أحدث" #: ../bleachbit/CLI.py:162 msgid "output version information and exit" msgstr "اطبع رقم الإصدار ثم اخرج" #: ../bleachbit/CLI.py:164 msgid "overwrite files to hide contents" msgstr "اطمس الملفات لمحو محتواها" #. TRANSLATORS: this is the context menu #: ../bleachbit/Action.py:372 ../bleachbit/GUI.py:630 msgid "Clean" msgstr "نظّف" #: ../bleachbit/Action.py:392 #, python-format msgid "Run external command: %s" msgstr "تشغيل أمل خارجي: %s" #: ../bleachbit/GUI.py:143 msgid "Active" msgstr "نشِط" #. TRANSLATORS: Size is the label for the column that shows how #. much space an option would clean or did clean #: ../bleachbit/GUI.py:155 msgid "Size" msgstr "حجم" #. TRANSLATORS: %(cleaner) may be Firefox, System, etc. #. %(option) may be cache, logs, cookies, etc. #. %(warning) may be 'This option is really slow' #: ../bleachbit/GUI.py:186 #, python-format msgid "" "Warning regarding %(cleaner)s - %(option)s:\n" "\n" "%(warning)s" msgstr "" "تحذير بشأن %(cleaner)s - %(option)s:\n" "%(warning)s" #: ../bleachbit/GUI.py:372 msgid "You must select an operation" msgstr "يجب أن تختار عملية" #: ../bleachbit/GUI.py:392 ../bleachbit/GUI.py:415 msgid "Done." msgstr "تم." #: ../bleachbit/GUI.py:428 msgid "Program to clean unnecessary files" msgstr "برنامج لحذف الملفات غير المرغوب فيها" #: ../bleachbit/GUI.py:434 msgid "" "GNU General Public License version 3 or later.\n" "See http://www.gnu.org/licenses/gpl-3.0.txt" msgstr "" "رخصة GNU العمومية الإصدارة ٣ أو أحدث.\n" "طالع http://www.gnu.org/licenses/gpl-3.0.txt" #. TRANSLATORS: Maintain the names of translators here. #. Launchpad does this automatically for translations #. typed in Launchpad. This is a special string shown #. in the 'About' box. #: ../bleachbit/GUI.py:440 msgid "translator-credits" msgstr "" "Launchpad Contributions:\n" " Ahmad Gharbeia أحمد غربية https://launchpad.net/~gharbeia\n" " Fcmam5 https://launchpad.net/~fcmam5\n" " Fethi DILMI https://launchpad.net/~addictcook\n" " MaXeR https://launchpad.net/~themaxer\n" " Nizar Kerkeni https://launchpad.net/~nizarus\n" " kabdelhady https://launchpad.net/~kabdelhady\n" " someone https://launchpad.net/~somehow" #: ../bleachbit/GUI.py:452 msgid "System information" msgstr "معلومات النظام" #: ../bleachbit/GUI.py:525 msgid "Choose files to shred" msgstr "اختر ملفات لمحوها" #: ../bleachbit/GUI.py:528 msgid "Choose folder to shred" msgstr "اختيار مجلدا لمحو محتواه" #. TRANSLATORS: this is the context menu #: ../bleachbit/GUI.py:625 msgid "Preview" msgstr "عاين" #: ../bleachbit/GUI.py:694 msgid "_Shred Files" msgstr "ام_ح ملفات" #: ../bleachbit/GUI.py:696 msgid "Sh_red Folders" msgstr "ا_مح مجلّدات" #: ../bleachbit/GUI.py:698 msgid "_Wipe Free Space" msgstr "امح المساحة الشا_غرة" #: ../bleachbit/GUI.py:700 msgid "S_hred Settings and Quit" msgstr "امح الإ_عدادات و اخرج" #: ../bleachbit/GUI.py:702 msgid "_Quit" msgstr "ا_خرج" #: ../bleachbit/GUI.py:704 msgid "_File" msgstr "_ملف" #: ../bleachbit/GUI.py:707 msgid "_Edit" msgstr "_حرِّر" #: ../bleachbit/GUI.py:708 msgid "Help Contents" msgstr "محتويات المساعدة" #: ../bleachbit/GUI.py:711 msgid "_Release Notes" msgstr "ملاحظات الإ_صدارة" #: ../bleachbit/GUI.py:714 msgid "_System Information" msgstr "_معلومات النظام" #: ../bleachbit/GUI.py:717 msgid "_About" msgstr "_حوْل" #: ../bleachbit/GUI.py:718 msgid "_Help" msgstr "_مساعدة" #: ../bleachbit/GUI.py:743 msgctxt "button" msgid "Preview" msgstr "عاين" #: ../bleachbit/GUI.py:748 msgid "Preview files in the selected operations (without deleting any files)" msgstr "عاين الملفات في العمليات المختارة (بلا حذف أية ملفات)" #: ../bleachbit/GUI.py:758 msgctxt "button" msgid "Clean" msgstr "نظّف" #: ../bleachbit/GUI.py:762 msgid "Clean files in the selected operations" msgstr "نظّف الملفات في العمليات المختارة" #: ../bleachbit/GUI.py:851 msgid "Error when checking for updates: " msgstr "خطأ أثناء التماس تحديثات: " #: ../bleachbit/GUI.py:891 msgid "" "Error loading the SQLite module: the antivirus software may be blocking it." msgstr "حدث خطأ أثناء تحميل وحدةSQLite، ربما حظرها مضاد الفيروسات." #: ../bleachbit/GUI.py:894 msgid "" "You are running BleachBit with administrative privileges for cleaning shared " "parts of the system, and references to the user profile folder will clean " "only the root account." msgstr "" bleachbit-2.0/po/sl.po0000644000175000017500000013152013245436307012777 0ustar hlehle# Slovenian translation for bleachbit # Copyright (c) 2009 Rosetta Contributors and Canonical Ltd 2009 # This file is distributed under the same license as the bleachbit package. # FIRST AUTHOR , 2009. # msgid "" msgstr "" "Project-Id-Version: bleachbit\n" "Report-Msgid-Bugs-To: FULL NAME \n" "POT-Creation-Date: 2017-02-11 11:12-0700\n" "PO-Revision-Date: 2018-02-14 11:51+0000\n" "Last-Translator: Matic Gradišer \n" "Language-Team: Slovenian \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=4; plural=(n%100==1 ? 1 : n%100==2 ? 2 : n%100==3 || " "n%100==4 ? 3 : 0);\n" "X-Launchpad-Export-Date: 2018-02-15 04:28+0000\n" "X-Generator: Launchpad (build 18553)\n" "X-Poedit-Country: SLOVENIA\n" "X-Poedit-Language: Slovenian\n" "X-Poedit-SourceCharset: utf-8\n" #: ../cleaners/mc.xml ../cleaners/tortoisesvn.xml ../cleaners/vim.xml #: ../cleaners/safari.xml ../cleaners/links2.xml ../cleaners/seamonkey.xml #: ../cleaners/realplayer.xml ../cleaners/windows_defender.xml #: ../cleaners/d4x.xml ../cleaners/sqlite3.xml #: ../cleaners/internet_explorer.xml ../cleaners/libreoffice.xml #: ../cleaners/easytag.xml ../cleaners/bash.xml ../cleaners/nautilus.xml #: ../cleaners/octave.xml ../cleaners/elinks.xml ../cleaners/chromium.xml #: ../cleaners/google_chrome.xml msgid "History" msgstr "Zgodovina" #: ../cleaners/mc.xml ../cleaners/tortoisesvn.xml ../cleaners/links2.xml #: ../cleaners/realplayer.xml ../cleaners/d4x.xml ../cleaners/libreoffice.xml #: ../cleaners/easytag.xml ../cleaners/nautilus.xml ../cleaners/gnome.xml #: ../bleachbit/Cleaner.py:349 ../bleachbit/Cleaner.py:423 #: ../bleachbit/Cleaner.py:432 msgid "Delete the usage history" msgstr "Izbriši zgodovino uporabe" #: ../cleaners/gpodder.xml ../cleaners/hippo_opensim_viewer.xml #: ../cleaners/thumbnails.xml ../cleaners/safari.xml ../cleaners/emesene.xml #: ../cleaners/liferea.xml ../cleaners/seamonkey.xml ../cleaners/vuze.xml #: ../cleaners/yahoo_messenger.xml ../cleaners/pidgin.xml #: ../cleaners/adobe_reader.xml ../cleaners/evolution.xml #: ../cleaners/tremulous.xml ../cleaners/libreoffice.xml ../cleaners/xine.xml #: ../cleaners/nexuiz.xml ../cleaners/exaile.xml ../cleaners/opera.xml #: ../cleaners/amsn.xml ../cleaners/gftp.xml ../cleaners/miro.xml #: ../cleaners/beagle.xml ../cleaners/kde.xml ../cleaners/epiphany.xml #: ../cleaners/flash.xml ../cleaners/secondlife_viewer.xml ../cleaners/java.xml #: ../cleaners/chromium.xml ../cleaners/audacious.xml ../cleaners/rhythmbox.xml #: ../cleaners/google_chrome.xml ../cleaners/thunderbird.xml #: ../bleachbit/Cleaner.py:192 ../bleachbit/Cleaner.py:370 #: ../bleachbit/Cleaner.py:455 msgid "Cache" msgstr "Predpomnilnik" #: ../cleaners/gpodder.xml ../cleaners/yum.xml #: ../cleaners/hippo_opensim_viewer.xml ../cleaners/thumbnails.xml #: ../cleaners/windows_explorer.xml ../cleaners/liferea.xml #: ../cleaners/vuze.xml ../cleaners/yahoo_messenger.xml ../cleaners/pidgin.xml #: ../cleaners/adobe_reader.xml ../cleaners/evolution.xml #: ../cleaners/libreoffice.xml ../cleaners/apt.xml ../cleaners/xine.xml #: ../cleaners/nexuiz.xml ../cleaners/exaile.xml ../cleaners/amsn.xml #: ../cleaners/gftp.xml ../cleaners/miro.xml ../cleaners/beagle.xml #: ../cleaners/kde.xml ../cleaners/flash.xml ../cleaners/secondlife_viewer.xml #: ../cleaners/java.xml ../cleaners/audacious.xml ../cleaners/rhythmbox.xml #: ../bleachbit/Cleaner.py:370 ../bleachbit/Cleaner.py:455 #: ../bleachbit/Cleaner.py:489 ../bleachbit/Cleaner.py:491 msgid "Delete the cache" msgstr "Izbriši predpomnilnik" #. TRANSLATORS: Vacuum is a verb. The term is jargon #. from the SQLite database. Microsoft Access uses #. the term 'Compact Database' (which you may translate #. instead). Another synonym is 'defragment.' #: ../cleaners/gpodder.xml ../cleaners/yum.xml ../cleaners/safari.xml #: ../cleaners/liferea.xml ../cleaners/chromium.xml #: ../cleaners/google_chrome.xml ../cleaners/thunderbird.xml #: ../bleachbit/Cleaner.py:214 ../bleachbit/Cleaner.py:360 #: ../bleachbit/Action.py:445 msgid "Vacuum" msgstr "Vakuum" #: ../cleaners/gpodder.xml ../cleaners/yum.xml ../cleaners/safari.xml #: ../cleaners/liferea.xml ../cleaners/chromium.xml #: ../cleaners/google_chrome.xml ../cleaners/thunderbird.xml #: ../bleachbit/Cleaner.py:215 msgid "" "Clean database fragmentation to reduce space and improve speed without " "removing any data" msgstr "" "Počisti razdrobljene dele podatkovne zbirke in zmanjšaj porabljen prostor " "ter povečaj hitrost" #: ../cleaners/yum.xml ../cleaners/apt.xml msgid "Package manager" msgstr "Upravljalnik paketov" #: ../cleaners/warzone2100.xml ../cleaners/hippo_opensim_viewer.xml #: ../cleaners/gl-117.xml ../cleaners/tremulous.xml ../cleaners/nexuiz.xml #: ../cleaners/secondlife_viewer.xml msgid "Game" msgstr "Igra" #: ../cleaners/warzone2100.xml ../cleaners/hippo_opensim_viewer.xml #: ../cleaners/teamviewer.xml ../cleaners/realplayer.xml ../cleaners/vuze.xml #: ../cleaners/yahoo_messenger.xml ../cleaners/amule.xml #: ../cleaners/easytag.xml ../cleaners/exaile.xml ../cleaners/screenlets.xml #: ../cleaners/gftp.xml ../cleaners/miro.xml ../cleaners/audacious.xml #: ../bleachbit/Cleaner.py:486 msgid "Logs" msgstr "Dnevniki" #: ../cleaners/warzone2100.xml ../cleaners/hippo_opensim_viewer.xml #: ../cleaners/teamviewer.xml ../cleaners/realplayer.xml ../cleaners/vuze.xml #: ../cleaners/yahoo_messenger.xml ../cleaners/amule.xml ../cleaners/exaile.xml #: ../cleaners/screenlets.xml ../cleaners/gftp.xml ../cleaners/miro.xml #: ../cleaners/audacious.xml ../bleachbit/Cleaner.py:486 msgid "Delete the logs" msgstr "Izbriši dnevnike" #: ../cleaners/thumbnails.xml ../cleaners/windows_explorer.xml msgid "Thumbnails" msgstr "Sličice" #: ../cleaners/thumbnails.xml msgid "Icons for files on the system" msgstr "" #: ../cleaners/vim.xml ../cleaners/gedit.xml msgid "Editor" msgstr "Urejevalnik" #: ../cleaners/vim.xml msgid "" "Delete ~/.viminfo which includes file history, command history, and buffers" msgstr "" "Izbriši datoteko ~ /.viminfo, ki vsebuje zgodovino datotek in ukazov ter " "podatke medpomnilnika" #: ../cleaners/filezilla.xml ../cleaners/transmission.xml ../cleaners/vuze.xml #: ../cleaners/amule.xml ../cleaners/gftp.xml msgid "File transfer client" msgstr "Odjamalec prenosa datotek" #: ../cleaners/filezilla.xml ../cleaners/paint.xml #: ../cleaners/windows_media_player.xml ../cleaners/windows_explorer.xml #: ../cleaners/teamviewer.xml ../cleaners/microsoft_office.xml #: ../cleaners/vlc.xml ../cleaners/adobe_reader.xml ../cleaners/winamp.xml #: ../cleaners/winzip.xml ../cleaners/winrar.xml ../cleaners/audacious.xml #: ../cleaners/wordpad.xml ../bleachbit/Cleaner.py:371 msgid "Most recently used" msgstr "Zadnje uporabljeno" #: ../cleaners/filezilla.xml ../cleaners/windows_explorer.xml #: ../cleaners/gwenview.xml ../cleaners/adobe_reader.xml ../cleaners/gedit.xml #: ../cleaners/kde.xml ../cleaners/audacious.xml ../bleachbit/Cleaner.py:372 #: ../bleachbit/Cleaner.py:469 msgid "Delete the list of recently used documents" msgstr "Izbriši seznam nedavno uporabljenih dokumentov" #: ../cleaners/skype.xml ../cleaners/emesene.xml #: ../cleaners/yahoo_messenger.xml ../cleaners/pidgin.xml ../cleaners/amsn.xml msgid "Chat client" msgstr "Odjemalec za klepet" #: ../cleaners/skype.xml ../cleaners/hexchat.xml ../cleaners/emesene.xml #: ../cleaners/seamonkey.xml ../cleaners/yahoo_messenger.xml #: ../cleaners/pidgin.xml ../cleaners/amsn.xml msgid "Chat logs" msgstr "Dnevniki klepetov" #: ../cleaners/skype.xml ../cleaners/hexchat.xml ../cleaners/emesene.xml #: ../cleaners/seamonkey.xml ../cleaners/yahoo_messenger.xml #: ../cleaners/pidgin.xml ../cleaners/amsn.xml msgid "Delete the chat logs" msgstr "Izbriši dnevnike klepetov" #: ../cleaners/skype.xml msgid "Installers" msgstr "" #: ../cleaners/skype.xml msgid "Delete cached patches and installers" msgstr "" #: ../cleaners/hexchat.xml msgid "IRC client formerly known as XChat" msgstr "" #: ../cleaners/safari.xml ../cleaners/links2.xml ../cleaners/seamonkey.xml #: ../cleaners/konqueror.xml ../cleaners/internet_explorer.xml #: ../cleaners/opera.xml ../cleaners/epiphany.xml ../cleaners/elinks.xml #: ../cleaners/chromium.xml ../cleaners/google_chrome.xml #: ../bleachbit/Cleaner.py:226 msgid "Web browser" msgstr "Spletni brskalnik" #: ../cleaners/safari.xml ../cleaners/seamonkey.xml ../cleaners/opera.xml #: ../cleaners/epiphany.xml ../cleaners/chromium.xml #: ../cleaners/google_chrome.xml ../cleaners/thunderbird.xml #: ../bleachbit/Cleaner.py:193 msgid "Delete the web cache, which reduces time to display revisited pages" msgstr "" "Izbriši spletni predpomnilnik, ki skrajša čas za prikaz ponovno obiskanih " "strani" #: ../cleaners/safari.xml ../cleaners/liferea.xml ../cleaners/seamonkey.xml #: ../cleaners/realplayer.xml ../cleaners/konqueror.xml #: ../cleaners/internet_explorer.xml ../cleaners/opera.xml #: ../cleaners/epiphany.xml ../cleaners/flash.xml ../cleaners/silverlight.xml #: ../cleaners/chromium.xml ../cleaners/google_chrome.xml #: ../cleaners/thunderbird.xml ../bleachbit/Cleaner.py:194 msgid "Cookies" msgstr "Piškotki" #: ../cleaners/safari.xml ../cleaners/liferea.xml ../cleaners/seamonkey.xml #: ../cleaners/realplayer.xml ../cleaners/konqueror.xml #: ../cleaners/internet_explorer.xml ../cleaners/opera.xml #: ../cleaners/epiphany.xml ../cleaners/flash.xml ../cleaners/silverlight.xml #: ../cleaners/chromium.xml ../cleaners/google_chrome.xml #: ../cleaners/thunderbird.xml ../bleachbit/Cleaner.py:195 msgid "" "Delete cookies, which contain information such as web site preferences, " "authentication, and tracking identification" msgstr "" "Izbriši piškotke, ki vsebujejo podrobnosti o nastavitvah spletnih strani, " "podatke za overitve in podatke sledenja" #: ../cleaners/safari.xml ../cleaners/konqueror.xml #: ../cleaners/internet_explorer.xml ../cleaners/opera.xml #: ../bleachbit/Cleaner.py:213 msgid "List of visited web pages" msgstr "Seznam obiskanih spletnih strani" #. Torrent software can block a list of IP addresses, such as those that may belong to malware or anti-piracy organizations #: ../cleaners/transmission.xml msgid "Blocklists" msgstr "" #: ../cleaners/transmission.xml ../cleaners/windows_defender.xml #: ../cleaners/beagle.xml ../cleaners/thunderbird.xml ../cleaners/deepscan.xml #: ../bleachbit/Cleaner.py:197 msgid "Delete the files" msgstr "Izbriši datoteke" #: ../cleaners/transmission.xml msgid "Blocklists will need update to work." msgstr "" #: ../cleaners/transmission.xml msgid "Torrents" msgstr "Torrenti" #: ../cleaners/transmission.xml msgid "Delete the torrents (just the metadata but not the files described)" msgstr "" #: ../cleaners/transmission.xml msgid "Statistics" msgstr "Statistike" #: ../cleaners/transmission.xml msgid "Delete the file" msgstr "" #: ../cleaners/paint.xml ../cleaners/windows_media_player.xml #: ../cleaners/windows_explorer.xml ../cleaners/teamviewer.xml #: ../cleaners/microsoft_office.xml ../cleaners/vlc.xml ../cleaners/winamp.xml #: ../cleaners/winzip.xml ../cleaners/winrar.xml ../cleaners/wordpad.xml msgid "Delete the most recently used list" msgstr "Izbriši seznam nedavno uporabljenih spletnih strani" #: ../cleaners/emesene.xml msgid "Delete the avatars and emoticons cache" msgstr "Izbriši predpomnilnik podob in izraznih ikon" #: ../cleaners/windows_media_player.xml ../cleaners/realplayer.xml #: ../cleaners/vlc.xml ../cleaners/winamp.xml msgid "Media player" msgstr "Predstavnostni predvajalnik" #: ../cleaners/windows_explorer.xml ../cleaners/nautilus.xml msgid "File manager" msgstr "Upravljalnik datotek" #: ../cleaners/windows_explorer.xml ../cleaners/gwenview.xml #: ../cleaners/gedit.xml ../cleaners/kde.xml ../bleachbit/Cleaner.py:468 #: ../bleachbit/Cleaner.py:663 msgid "Recent documents list" msgstr "Seznam nedavnih dokumentov" #: ../cleaners/windows_explorer.xml msgid "" "This option will reset pinned locations in Quick Access to their defaults." msgstr "" #. In Windows 'Run' is the dialog in the Start menu #. In GNOME 'Run' is the dialog shown when typing ALT+F2' #: ../cleaners/windows_explorer.xml ../cleaners/gnome.xml msgid "Run" msgstr "Zaženi" #: ../cleaners/windows_explorer.xml ../cleaners/opera.xml ../cleaners/gnome.xml #: ../cleaners/google_toolbar.xml msgid "Search history" msgstr "Zgodovina iskanja" #: ../cleaners/windows_explorer.xml ../cleaners/opera.xml ../cleaners/gnome.xml #: ../cleaners/google_toolbar.xml msgid "Delete the search history" msgstr "Izbriši zgodovino iskanja" #: ../cleaners/windows_explorer.xml msgid "This will restart Windows Explorer." msgstr "" #: ../cleaners/gl-117.xml ../cleaners/microsoft_office.xml #: ../cleaners/beagle.xml ../cleaners/secondlife_viewer.xml ../cleaners/x11.xml msgid "Debug logs" msgstr "Dnevniki razhroščevanja" #: ../cleaners/gl-117.xml ../cleaners/microsoft_office.xml #: ../cleaners/easytag.xml ../cleaners/beagle.xml #: ../cleaners/secondlife_viewer.xml ../cleaners/x11.xml msgid "Delete the debug logs" msgstr "Izbriši dnevnike razhroščevanja" #: ../cleaners/google_earth.xml ../cleaners/winetricks.xml ../cleaners/vuze.xml #: ../cleaners/adobe_reader.xml ../cleaners/amule.xml ../cleaners/wine.xml #: ../cleaners/internet_explorer.xml ../cleaners/gimp.xml ../cleaners/kde.xml #: ../cleaners/deepscan.xml ../bleachbit/Cleaner.py:520 msgid "Temporary files" msgstr "Začasne datoteke" #: ../cleaners/google_earth.xml ../cleaners/winetricks.xml ../cleaners/vuze.xml #: ../cleaners/adobe_reader.xml ../cleaners/amule.xml ../cleaners/wine.xml #: ../cleaners/internet_explorer.xml ../cleaners/gimp.xml ../cleaners/kde.xml #: ../cleaners/deepscan.xml ../bleachbit/Cleaner.py:520 msgid "Delete the temporary files" msgstr "Izbriši začasne datoteke" #: ../cleaners/seamonkey.xml ../cleaners/opera.xml ../bleachbit/Cleaner.py:201 msgid "Download history" msgstr "Zgodovina prejema" #: ../cleaners/seamonkey.xml ../cleaners/opera.xml ../bleachbit/Cleaner.py:201 msgid "List of files downloaded" msgstr "Seznam prejetih datotek" #: ../cleaners/seamonkey.xml msgid "Delete the list of visited web pages" msgstr "Izbriši seznam obiskanih spletnih strani" #: ../cleaners/vuze.xml ../cleaners/deepscan.xml ../bleachbit/Cleaner.py:190 msgid "Backup files" msgstr "Varnostne kopije datotek" #: ../cleaners/vuze.xml ../cleaners/deepscan.xml ../bleachbit/Cleaner.py:191 msgid "Delete the backup files" msgstr "Izbriši varnostne kopije datotek" #: ../cleaners/konqueror.xml ../cleaners/opera.xml ../cleaners/chromium.xml msgid "Current session" msgstr "Trenutna seja" #: ../cleaners/konqueror.xml ../cleaners/opera.xml ../cleaners/chromium.xml msgid "Delete the current session" msgstr "Izbriši trenutno sejo" #: ../cleaners/konqueror.xml ../cleaners/opera.xml ../bleachbit/Cleaner.py:213 msgid "URL history" msgstr "Zgodovina naslovov URL" #: ../cleaners/microsoft_office.xml ../cleaners/libreoffice.xml #: ../bleachbit/Cleaner.py:375 msgid "Office suite" msgstr "Pisarniški programski paket" #: ../cleaners/windows_defender.xml msgid "Anti-virus" msgstr "Antivirus" #: ../cleaners/journald.xml msgid "System journals" msgstr "Sistemski dnevniki" #: ../cleaners/journald.xml msgid "Clean old system journals" msgstr "" #: ../cleaners/adobe_reader.xml msgid "Document viewer" msgstr "Pregledovalnik dokumentov" #: ../cleaners/evolution.xml ../cleaners/thunderbird.xml msgid "Email client" msgstr "Odjemalec e-pošte" #: ../cleaners/tremulous.xml msgid "Delete the list of game servers" msgstr "Izbriši seznam igralskih strežnikov" #: ../cleaners/sqlite3.xml ../cleaners/bash.xml ../cleaners/octave.xml msgid "Delete the command history" msgstr "Izbriši zgodovino ukazov" #: ../cleaners/wine.xml msgid "Compatibility layer for Windows software" msgstr "" #: ../cleaners/internet_explorer.xml ../cleaners/chromium.xml #: ../cleaners/google_chrome.xml ../bleachbit/Cleaner.py:202 msgid "Form history" msgstr "Zgodovina obrazcev" #: ../cleaners/internet_explorer.xml ../bleachbit/Cleaner.py:203 msgid "A history of forms entered in web sites and in the Search bar" msgstr "Zgodovina obrazcev, vnesenih v spletne strani in v vrstico iskanja" #. This software edits metadata tags, such as title and artist, in audio files #: ../cleaners/easytag.xml msgid "Audio files tagger" msgstr "Označevalnik zvočnih datotek" #: ../cleaners/apt.xml msgid "Delete obsolete files" msgstr "Izbriši zastarele datoteke" #: ../cleaners/apt.xml msgid "Package lists" msgstr "Seznami paketov" #: ../cleaners/xine.xml ../cleaners/miro.xml ../cleaners/flash.xml msgid "Multimedia viewer" msgstr "Pregledovalnik predstavnih vsebin" #: ../cleaners/recoll.xml ../cleaners/beagle.xml msgid "Search tool" msgstr "Orodje za iskanje" #: ../cleaners/recoll.xml ../cleaners/beagle.xml ../cleaners/thunderbird.xml msgid "Index" msgstr "Kazalo" #: ../cleaners/recoll.xml msgid "" "Delete the search index, a database of words and the files they contain" msgstr "" "Izbriši kazalo iskanja, podatkovne zbirke besed in datoteke, ki jih vsebujejo" #: ../cleaners/gimp.xml msgid "Graphics editor" msgstr "Grafični urejevalniki" #: ../cleaners/exaile.xml msgid "Downloaded podcasts" msgstr "Prejetii podcasti" #: ../cleaners/exaile.xml msgid "Delete downloaded podcasts" msgstr "Izbriši prejete podcaste" #: ../cleaners/bash.xml msgid "Shell" msgstr "Lupina" #. TRANSLATORS: DOM = Document Object Model. #: ../cleaners/opera.xml ../cleaners/epiphany.xml ../cleaners/chromium.xml #: ../cleaners/google_chrome.xml ../bleachbit/Cleaner.py:199 msgid "DOM Storage" msgstr "Shramba DOM" #: ../cleaners/opera.xml ../cleaners/epiphany.xml ../cleaners/chromium.xml #: ../cleaners/google_chrome.xml ../bleachbit/Cleaner.py:199 msgid "Delete HTML5 cookies" msgstr "Izbriši piškotke HTML5" #: ../cleaners/opera.xml ../cleaners/epiphany.xml ../cleaners/chromium.xml #: ../cleaners/google_chrome.xml ../cleaners/thunderbird.xml #: ../bleachbit/Cleaner.py:208 msgid "Passwords" msgstr "Gesla" #: ../cleaners/opera.xml ../cleaners/epiphany.xml ../cleaners/chromium.xml #: ../cleaners/google_chrome.xml ../cleaners/thunderbird.xml #: ../bleachbit/Cleaner.py:209 msgid "" "A database of usernames and passwords as well as a list of sites that should " "not store passwords" msgstr "" "Podatkovna zbirka uporabniških imen in gesel ter seznam mest, ki naj gesel " "ne shranjujejo" #: ../cleaners/opera.xml ../cleaners/epiphany.xml ../cleaners/chromium.xml #: ../cleaners/google_chrome.xml ../cleaners/thunderbird.xml #: ../bleachbit/Cleaner.py:211 msgid "This option will delete your saved passwords." msgstr "Možnost izbriše vsa shranjena gesla." #: ../cleaners/nautilus.xml msgid "Custom folders will be reset." msgstr "Prilagojene mape bodo ponastavljene" #: ../cleaners/gnome.xml ../cleaners/kde.xml msgid "Desktop environment" msgstr "Namizno okolje" #: ../cleaners/screenlets.xml msgid "Widgets for the desktop" msgstr "Pripomočki za namizje" #: ../cleaners/epiphany.xml msgid "Places" msgstr "Mesta" #: ../cleaners/epiphany.xml msgid "" "A database of URLs including bookmarks, favicons, and a history of visited " "web sites" msgstr "" "Podatkovna zbirka naslovov URL, vključno z zaznamki, ikonami in zgodovino " "obiskanih spletnih strani" #: ../cleaners/epiphany.xml msgid "This option deletes all bookmarks." msgstr "Izbrana možnost omogoči brisanje vseh zaznamkov." #: ../cleaners/winrar.xml msgid "File archiver" msgstr "" #: ../cleaners/elinks.xml msgid "Delete the cookies, visited URLs, and search history" msgstr "Izbriši piškotke, obiskane naslove URL in zgodovino iskanja" #: ../cleaners/chromium.xml ../cleaners/google_chrome.xml msgid "A history of forms entered in web sites" msgstr "Zgodovina vnosov v spletne obrazce" #: ../cleaners/chromium.xml ../cleaners/google_chrome.xml msgid "" "Delete the history which includes visited sites, downloads, and thumbnails" msgstr "" "Izbriši zgodovino, ki vključuje obiskana spletna mesta, prenose in sličice" #: ../cleaners/chromium.xml ../cleaners/google_chrome.xml msgid "Search engines" msgstr "Iskalniki" #. 'Factory' means a search engine that is installed by default 'from the factory,' but this is different than a 'default search engine' https://lists.launchpad.net/launchpad-translators/msg00283.html #: ../cleaners/chromium.xml ../cleaners/google_chrome.xml msgid "" "Reset the search engine usage history and delete non-factory search engines, " "some of which are added automatically" msgstr "" #: ../cleaners/audacious.xml msgid "Audio player" msgstr "" #: ../cleaners/rhythmbox.xml msgid "Database" msgstr "Podatkovna baza" #: ../cleaners/rhythmbox.xml msgid "" "Delete the database, which contain information such as play count and last " "played" msgstr "" #: ../cleaners/google_chrome.xml msgid "Session" msgstr "Seja" #: ../cleaners/google_chrome.xml msgid "Delete the current and last sessions" msgstr "Izbriši trenutno sejo in na zadnje shranjene seje" #: ../cleaners/x11.xml msgid "Windowing system" msgstr "" #: ../cleaners/wordpad.xml msgid "Word processor" msgstr "" #: ../cleaners/deepscan.xml msgid "Deep scan" msgstr "Podroben pregled" #: ../cleaners/deepscan.xml msgid "Clean files widely scattered across the disk" msgstr "" #: ../cleaners/deepscan.xml msgid "Inspect the preview for any files you want to keep." msgstr "Podroben pregled vse datotek, ki bi jih želeli obdržati." #: ../cleaners/deepscan.xml msgid "This option is slow." msgstr "Izbrana možnost upočasni hitrost čiščenja." #: ../bleachbit.desktop msgid "Unnecessary file cleaner" msgstr "Čistilnik nepotrebnih datotek" #: ../bleachbit.desktop msgid "Free space and maintain privacy" msgstr "Sprostite prostor in ohranite zasebnost" #: ../bleachbit/FileUtilities.py:668 msgid "" "There was at least one file on a file system that does not support advanced " "overwriting." msgstr "" #: ../bleachbit/Unix.py:574 #, python-format msgid "Executable not found: %s" msgstr "Izvedljive datoteke ni mogoče najti: %s" #. TRANSLATORS: %s expands to a name such as 'Firefox' or 'System'. #: ../bleachbit/Unix.py:623 ../bleachbit/Worker.py:136 #, python-format msgid "" "%s cannot be cleaned because it is currently running. Close it, and try " "again." msgstr "" "%s ni mogoče očistiti, saj se trenutno izvaja. Zaprite in poskusite znova." #: ../bleachbit/GuiBasic.py:112 msgid "Delete confirmation" msgstr "Potrditev brisanja" #: ../bleachbit/GuiBasic.py:122 msgid "" "Are you sure you want to permanently delete files according to the selected " "operations? The actual files that will be deleted may have changed since " "you ran the preview." msgstr "" "Ali ste prepričani, da želite trajno izbrisati datoteke v skladu z izbranimi " "opravili? Datoteke, pripravljene za izbris, so bile morda spremenjene." #: ../bleachbit/GuiBasic.py:125 msgid "Are you sure you want to permanently delete these files?" msgstr "Ali ste prepričani, da želite trajno izbrisati te datoteke?" #: ../bleachbit/GuiBasic.py:162 #, python-format msgid "" "Because you are running as root, please manually open this link in a web " "browser:\n" "%s" msgstr "" "V skrbniškem načinu delovanja je treba povezavo do spletne strani odpreti " "ročno:\n" "%s" #. TRANSLATORS: %s expands to www.bleachbit.org or similar #: ../bleachbit/GuiBasic.py:174 #, python-format msgid "Open web browser to %s?" msgstr "Odpri spletni brskalnik na %s?" #. TRANSLATORS: This is the label in the log indicating was #. skipped because it matches the whitelist #: ../bleachbit/Command.py:47 msgid "Skip" msgstr "Preskoči" #. TRANSLATORS: This is the label in the log indicating will be #. deleted (for previews) or was actually deleted #: ../bleachbit/Command.py:77 msgid "Delete" msgstr "Izbriši" #: ../bleachbit/Command.py:99 msgid "" "At least one file was locked by another process, so its contents could not " "be overwritten. It will be marked for deletion upon system reboot." msgstr "" #. TRANSLATORS: The file will be deleted when the #. system reboots #: ../bleachbit/Command.py:102 msgid "Mark for deletion" msgstr "Označi za brisanje" #. TRANSLATORS: Parts of this file will be deleted #: ../bleachbit/Command.py:199 ../bleachbit/Command.py:233 #: ../bleachbit/Action.py:254 ../bleachbit/Action.py:267 #: ../bleachbit/Action.py:280 ../bleachbit/Action.py:293 #: ../bleachbit/Action.py:306 msgid "Clean file" msgstr "Počisti datoteko" #. TRANSLATORS: The file will be truncated to 0 bytes in length #: ../bleachbit/Command.py:275 msgid "Truncate" msgstr "Razdeli" #: ../bleachbit/Command.py:317 msgid "Delete registry key" msgstr "Izbriši ključ registra" #. TRANSLATORS: This is cleaner name for cleaners imported from winapp2.ini #: ../bleachbit/Winapp.py:44 msgid "Applications" msgstr "Programi" #. TRANSLATORS: This is cleaner name for cleaners imported #. from winapp2.ini #: ../bleachbit/Winapp.py:47 msgid "Internet" msgstr "Internet" #. TRANSLATORS: This is cleaner name for cleaners imported #. from winapp2.ini #: ../bleachbit/Winapp.py:50 msgid "Multimedia" msgstr "Predstavnost" #. TRANSLATORS: This is cleaner name for cleaners imported #. from winapp2.ini #: ../bleachbit/Winapp.py:53 msgid "Utilities" msgstr "Pripomočki" #: ../bleachbit/Winapp.py:64 msgid "Games" msgstr "Igre" #: ../bleachbit/Winapp.py:162 msgid "Imported from winapp2.ini" msgstr "Uvoženo iz winapp2.ini" #: ../bleachbit/Cleaner.py:197 msgid "Crash reports" msgstr "Poročila o sesutjih" #: ../bleachbit/Cleaner.py:204 msgid "Session restore" msgstr "Obnovi sejo" #: ../bleachbit/Cleaner.py:205 msgid "Loads the initial session after the browser closes or crashes" msgstr "Naloži začetno sejo, po zapiranju ali sesutju brskalnika" #: ../bleachbit/Cleaner.py:207 msgid "Site preferences" msgstr "Nastavitve spletnih mest" #: ../bleachbit/Cleaner.py:207 msgid "Settings for individual sites" msgstr "Nastavitve posameznih spletnih mest" #. TRANSLATORS: desktop entries are .desktop files in Linux that #. make up the application menu (the menu that shows BleachBit, #. Firefox, and others. The .desktop files also associate file #. types, so clicking on an .html file in Nautilus brings up #. Firefox. #. More information: #. http://standards.freedesktop.org/menu-spec/latest/index.html#introduction #: ../bleachbit/Cleaner.py:453 msgid "Broken desktop files" msgstr "Okvarjene datoteke namizja" #: ../bleachbit/Cleaner.py:454 msgid "Delete broken application menu entries and file associations" msgstr "Izbriši okvarjene vnose menijev in vezi datotek" #. TRANSLATORS: Localizations are files supporting specific #. languages, so applications appear in Spanish, etc. #: ../bleachbit/Cleaner.py:458 msgid "Localizations" msgstr "Jezikovne prilagoditve" #: ../bleachbit/Cleaner.py:459 msgid "Delete files for unwanted languages" msgstr "Izbriše datoteke neuporabljenih jezikov" #: ../bleachbit/Cleaner.py:461 msgid "Configure this option in the preferences." msgstr "Izbor jezikov je mogoče prilagoditi med nastavitvami" #: ../bleachbit/Cleaner.py:467 msgid "Rotated logs" msgstr "Stari dnevniki" #: ../bleachbit/Cleaner.py:467 msgid "Delete old system logs" msgstr "Izbriši stare sistemske dnevnike" #: ../bleachbit/Cleaner.py:470 msgid "Trash" msgstr "Smeti" #: ../bleachbit/Cleaner.py:470 msgid "Empty the trash" msgstr "Izprazni smeti" #: ../bleachbit/Cleaner.py:476 ../bleachbit/Cleaner.py:627 #: ../bleachbit/Worker.py:184 msgid "Memory" msgstr "Pomnilnik" #. TRANSLATORS: 'free' means 'unallocated' #: ../bleachbit/Cleaner.py:478 msgid "Wipe the swap and free memory" msgstr "Počisti izmenjevalni razdelek in sprosti pomnilnik" #: ../bleachbit/Cleaner.py:480 msgid "This option is experimental and may cause system problems." msgstr "Možnost je poskusna in lahko povzroči sistemske napake" #: ../bleachbit/Cleaner.py:488 msgid "Memory dump" msgstr "Izpis pomnilnika" #: ../bleachbit/Cleaner.py:488 msgid "Delete the file memory.dmp" msgstr "Izbriši datoteko memory.dmp" #. TRANSLATORS: Prefetch is Microsoft Windows jargon. #: ../bleachbit/Cleaner.py:491 msgid "Prefetch" msgstr "Vnaprejšnje pridobivanje" #: ../bleachbit/Cleaner.py:493 msgid "Recycle bin" msgstr "Smeti" #: ../bleachbit/Cleaner.py:493 ../bleachbit/Cleaner.py:787 msgid "Empty the recycle bin" msgstr "Izprazni smeti" #. TRANSLATORS: 'Update' is a noun, and 'Update uninstallers' is an option to delete #. the uninstallers for software updates. #: ../bleachbit/Cleaner.py:496 msgid "Update uninstallers" msgstr "Posodobi odstranjevalnike namestitev" #: ../bleachbit/Cleaner.py:497 msgid "" "Delete uninstallers for Microsoft updates including hotfixes, service packs, " "and Internet Explorer updates" msgstr "" #: ../bleachbit/Cleaner.py:504 ../bleachbit/Cleaner.py:727 msgid "Clipboard" msgstr "Odložišče" #: ../bleachbit/Cleaner.py:505 msgid "" "The desktop environment's clipboard used for copy and paste operations" msgstr "" "Odložišče za okolje namizja, ki se ga uporablja za kopiranje in lepljenje" #. TRANSLATORS: "Custom" is an option allowing the user to specify which #. files and folders will be erased. #: ../bleachbit/Cleaner.py:512 ../bleachbit/GuiPreferences.py:66 msgid "Custom" msgstr "Po meri" #: ../bleachbit/Cleaner.py:513 msgid "Delete user-specified files and folders" msgstr "Izbriši datoteke in mape, ki jih določi uporabnik" #. TRANSLATORS: 'free' means 'unallocated' #: ../bleachbit/Cleaner.py:515 msgid "Free disk space" msgstr "Prostor na disku" #. TRANSLATORS: 'free' means 'unallocated' #: ../bleachbit/Cleaner.py:517 msgid "Overwrite free disk space to hide deleted files" msgstr "Prepiši prosti prostor na disku, da se izbrisane datoteke skrije" #: ../bleachbit/Cleaner.py:518 msgid "This option is very slow." msgstr "Izbrana možnost upočasni čiščenje" #: ../bleachbit/Cleaner.py:522 msgid "The system in general" msgstr "Sistem na splošno" #: ../bleachbit/Cleaner.py:524 ../bleachbit/Cleaner.py:857 msgid "System" msgstr "Sistem" #. TRANSLATORS: 'Free' means 'unallocated.' #. %s expands to a path such as C:\ or /tmp/ #: ../bleachbit/Cleaner.py:735 ../bleachbit/Cleaner.py:890 #, python-format msgid "Overwrite free disk space %s" msgstr "Prepiši nedodeljen prostor na disku %s" #: ../bleachbit/RecognizeCleanerML.py:59 msgid "Security warning" msgstr "Varnostno opozorilo" #: ../bleachbit/RecognizeCleanerML.py:72 msgid "" "These cleaner definitions are new or have changed. Malicious definitions can " "damage your system. If you do not trust these changes, delete the files or " "quit." msgstr "" "Določila čistilnikov so ali nova ali pa so spremenila. Zlonamerna določila " "lahko sistem okvarijo. V kolikor tem spremembam ne zaupate, izbrišite " "datoteke ali pa končajte program." #: ../bleachbit/RecognizeCleanerML.py:88 msgctxt "column_label" msgid "Delete" msgstr "Izbriši" #: ../bleachbit/RecognizeCleanerML.py:93 msgctxt "column_label" msgid "Filename" msgstr "Ime datoteke" #. TRANSLATORS: This indicates an error. The special keyword #. %(operation)s will be replaced by 'firefox' or 'opera' or #. some other cleaner ID. The special keyword %(msg)s will be #. replaced by a message such as 'Permission denied.' #: ../bleachbit/Worker.py:74 #, python-format msgid "Exception while running operation '%(operation)s': '%(msg)s'" msgstr "" "Prišlo je do izjemne napake med izvajanjem '%(operation)s': '%(msg)s'" #. TRANSLATORS: 'free' means 'unallocated' #: ../bleachbit/Worker.py:182 msgid "Please wait. Wiping free disk space." msgstr "Počakajte. Poteka brisanje nezasedenega prostora na disku." #. TRANSLATORS: %s is replaced with Firefox, System, etc. #: ../bleachbit/Worker.py:184 ../bleachbit/Worker.py:332 #, python-format msgid "Please wait. Cleaning %s." msgstr "Počakajte. Poteka čiščenje %s." #: ../bleachbit/Worker.py:199 msgid "Please wait. Wiping file system metadata." msgstr "Počakajte. Poteka popolno brisanje metapodatkov sistema." #: ../bleachbit/Worker.py:202 msgid "Please wait. Cleaning up after wiping file system metadata." msgstr "" "Počakajte. Poteka čiščenje po popolnem brisanju metapodatkov sistema." #: ../bleachbit/Worker.py:205 #, python-format msgid "About %d minute remaining." msgid_plural "About %d minutes remaining." msgstr[0] "Še približno %d minuta." msgstr[1] "Še približno %d minuti." msgstr[2] "Še približno %d minute." msgstr[3] "Še približno %d minut." #. TRANSLATORS: This refers to disk space that was #. really recovered (in other words, not a preview) #: ../bleachbit/Worker.py:272 #, python-format msgid "Disk space recovered: %s" msgstr "Pridobljeni prostor na disku: %s" #. TRANSLATORS: This refers to a preview (no real #. changes were made yet) #: ../bleachbit/Worker.py:276 #, python-format msgid "Disk space to be recovered: %s" msgstr "Prostor na disku, ki ga je mogoče pridobiti: %s" #. TRANSLATORS: This refers to the number of files really #. deleted (in other words, not a preview). #: ../bleachbit/Worker.py:281 #, python-format msgid "Files deleted: %d" msgstr "Izbrisane datoteke: %d" #. TRANSLATORS: This refers to the number of files that #. would be deleted (in other words, simply a preview). #: ../bleachbit/Worker.py:285 #, python-format msgid "Files to be deleted: %d" msgstr "Datoteke, ki bodo izbrisane: %d" #: ../bleachbit/Worker.py:288 #, python-format msgid "Special operations: %d" msgstr "Posebna opravila: %d" #: ../bleachbit/Worker.py:291 #, python-format msgid "Errors: %d" msgstr "Napake: %d" #. TRANSLATORS: The "deep scan" feature searches over broad #. areas of the file system such as the user's whole home directory #. or all the system executables. #: ../bleachbit/Worker.py:306 msgid "Please wait. Running deep scan." msgstr "Počakajte, poteka podrobni pregled sistema." #. TRANSLATORS: %s is replaced with Firefox, System, etc. #: ../bleachbit/Worker.py:335 #, python-format msgid "Please wait. Previewing %s." msgstr "Počakajte, poteka predogled %s." #: ../bleachbit/Update.py:80 msgid "New winapp2.ini was downloaded." msgstr "Prejeta je nova različica winapp2.ini." #: ../bleachbit/Update.py:125 msgid "Update BleachBit" msgstr "Posodobi BleachBit" #: ../bleachbit/Update.py:130 msgid "A new version is available." msgstr "Na voljo je nova različica." #. TRANSLATORS: %s expands to version such as '0.8.4' or '0.8.5beta' or #. similar #: ../bleachbit/Update.py:139 #, python-format msgid "Update to version %s" msgstr "Posodobi na različico %s" #: ../bleachbit/Update.py:164 #, python-format msgid "" "Error when opening a network connection to %s to check for updates. Please " "verify the network is working." msgstr "" #: ../bleachbit/CLI.py:106 #, python-format msgid "not a valid cleaner: %s" msgstr "ni veljaven čistilnik: %s" #. TRANSLATORS: This is the command line usage. Don't translate #. %prog, but do translate usage, options, cleaner, and option. #. More information about the command line is here #. https://www.bleachbit.org/documentation/command-line #: ../bleachbit/CLI.py:133 msgid "usage: %prog [options] cleaner.option1 cleaner.option2" msgstr "Uporaba: %program [možnosti] čistilnik.možnost1 čistilnik.možnost2" #: ../bleachbit/CLI.py:136 msgid "list cleaners" msgstr "Seznam čistilnikov" #. TRANSLATORS: predefined cleaners are for applications, such as Firefox and Flash. #. This is different than cleaning an arbitrary file, such as a #. spreadsheet on the desktop. #: ../bleachbit/CLI.py:141 msgid "run cleaners to delete files and make other permanent changes" msgstr "" "zagon čistilnikov za brisanje datotek in izvajanje drugih trajnih sprememb" #: ../bleachbit/CLI.py:144 msgid "shred specific files or folders" msgstr "počisti izbrane datoteke in mape" #: ../bleachbit/CLI.py:146 msgid "show system information" msgstr "prikaži podrobnosti o sistemu" #: ../bleachbit/CLI.py:148 msgid "launch the graphical interface" msgstr "zaženi grafični uporabniški vmesnik" #: ../bleachbit/CLI.py:152 msgid "do not prompt for administrator privileges" msgstr "ne zahtevaj skrbniških dovoljenj" #: ../bleachbit/CLI.py:157 msgid "preview files to be deleted and other changes" msgstr "predogled datotek, pripravljenih za izbris, in drugih sprememb" #: ../bleachbit/CLI.py:161 msgid "use options set in the graphical interface" msgstr "uporabi nastavitve, določene v uporabniškem vmesniku" #: ../bleachbit/CLI.py:164 msgid "update winapp2.ini, if a new version is available" msgstr "posodobi datoteko winapp2.ini, če je na voljo novejša različica" #: ../bleachbit/CLI.py:166 msgid "output version information and exit" msgstr "izpiši podrobnosti različice iz zapusti program" #: ../bleachbit/CLI.py:168 msgid "overwrite files to hide contents" msgstr "prepiši datoteke, za varnostno skrivanje vsebine" #. TRANSLATORS: this is the context menu #: ../bleachbit/Action.py:382 ../bleachbit/GUI.py:632 msgid "Clean" msgstr "Počisti" #: ../bleachbit/Action.py:418 #, python-format msgid "Run external command: %s" msgstr "" #: ../bleachbit/GUI.py:135 ../bleachbit/GuiPreferences.py:296 msgid "Name" msgstr "Ime" #: ../bleachbit/GUI.py:143 msgid "Active" msgstr "Dejavno" #. TRANSLATORS: Size is the label for the column that shows how #. much space an option would clean or did clean #: ../bleachbit/GUI.py:155 msgid "Size" msgstr "Velikost" #. TRANSLATORS: %(cleaner) may be Firefox, System, etc. #. %(option) may be cache, logs, cookies, etc. #. %(warning) may be 'This option is really slow' #: ../bleachbit/GUI.py:186 #, python-format msgid "" "Warning regarding %(cleaner)s - %(option)s:\n" "\n" "%(warning)s" msgstr "" "Opozorilo glede %(cleaner)s - %(option)s:\n" "\n" "%(warning)s" #: ../bleachbit/GUI.py:372 msgid "You must select an operation" msgstr "Izbrati je traba opravilo" #: ../bleachbit/GUI.py:391 ../bleachbit/GUI.py:413 msgid "Done." msgstr "Končano." #: ../bleachbit/GUI.py:426 msgid "Program to clean unnecessary files" msgstr "Program za čiščenje nepotrebnih datotek" #: ../bleachbit/GUI.py:436 msgid "" "GNU General Public License version 3 or later.\n" "See http://www.gnu.org/licenses/gpl-3.0.txt" msgstr "" "Splošno Javno dovoljenje GNU, različice 3 ali višje.\n" "Več podrobnosti je na ://www.gnu.org/licenses/gpl-3.0.txt" #. TRANSLATORS: Maintain the names of translators here. #. Launchpad does this automatically for translations #. typed in Launchpad. This is a special string shown #. in the 'About' box. #: ../bleachbit/GUI.py:442 msgid "translator-credits" msgstr "" "Launchpad Contributions:\n" " Matej Urbančič https://launchpad.net/~mateju\n" " Matic Gradišer https://launchpad.net/~0micky\n" " smo https://launchpad.net/~smolejv\n" " Štefan Baebler https://launchpad.net/~stefanba" #: ../bleachbit/GUI.py:454 msgid "System information" msgstr "Podatki o sistemu" #: ../bleachbit/GUI.py:527 msgid "Choose files to shred" msgstr "Izbor datoteke za popoln izbris" #: ../bleachbit/GUI.py:530 msgid "Choose folder to shred" msgstr "Izbor mape za popoln izbris" #: ../bleachbit/GUI.py:594 ../bleachbit/GuiPreferences.py:197 #: ../bleachbit/GuiPreferences.py:326 ../bleachbit/GuiPreferences.py:367 msgid "Choose a folder" msgstr "Izbor mapo" #. TRANSLATORS: this is the context menu #: ../bleachbit/GUI.py:627 msgid "Preview" msgstr "Predogled" #: ../bleachbit/GUI.py:734 msgid "_Shred Files" msgstr "_Popoln izbris datotek" #: ../bleachbit/GUI.py:736 msgid "Sh_red Folders" msgstr "Popoln izbris _map" #: ../bleachbit/GUI.py:738 msgid "_Wipe Free Space" msgstr "_Počisti prazen prostor" #: ../bleachbit/GUI.py:740 msgid "S_hred Settings and Quit" msgstr "Počisti _nastavitve in končaj" #: ../bleachbit/GUI.py:742 msgid "_Quit" msgstr "_Končaj" #: ../bleachbit/GUI.py:744 msgid "_File" msgstr "_Datoteka" #: ../bleachbit/GUI.py:746 ../bleachbit/GuiPreferences.py:58 msgid "Preferences" msgstr "Nastavitve" #: ../bleachbit/GUI.py:747 msgid "_Edit" msgstr "_Uredi" #: ../bleachbit/GUI.py:748 msgid "Help Contents" msgstr "Vsebina pomoči" #: ../bleachbit/GUI.py:751 msgid "_Release Notes" msgstr "_Opombe o izdaji" #: ../bleachbit/GUI.py:754 msgid "_System Information" msgstr "Podatki o _sistemu" #: ../bleachbit/GUI.py:757 msgid "_About" msgstr "_O programu" #: ../bleachbit/GUI.py:758 msgid "_Help" msgstr "Pomo_č" #: ../bleachbit/GUI.py:783 msgctxt "button" msgid "Preview" msgstr "Predogled" #: ../bleachbit/GUI.py:788 msgid "Preview files in the selected operations (without deleting any files)" msgstr "Predogled datotek v izbranih opravilih (brez brisanja datotek)" #: ../bleachbit/GUI.py:798 msgctxt "button" msgid "Clean" msgstr "Počisti" #: ../bleachbit/GUI.py:802 msgid "Clean files in the selected operations" msgstr "Počisti datoteke izbranih opravil" #: ../bleachbit/GUI.py:893 msgid "Error when checking for updates: " msgstr "Napaka med preverjanjem za posodobitve: " #: ../bleachbit/GUI.py:932 msgid "" "Error loading the SQLite module: the antivirus software may be blocking it." msgstr "" "Napaka med nalaganjem modula SQLite: program najverjetneje ovira antivirusni " "program." #: ../bleachbit/GUI.py:935 msgid "" "You are running BleachBit with administrative privileges for cleaning shared " "parts of the system, and references to the user profile folder will clean " "only the root account." msgstr "" #: ../bleachbit/GUI.py:940 msgid "" "Run BleachBit with administrator privileges to improve the accuracy of " "overwriting the contents of files." msgstr "" #: ../bleachbit/GuiPreferences.py:64 msgid "General" msgstr "Splošno" #: ../bleachbit/GuiPreferences.py:67 msgid "Drives" msgstr "Pogoni" #: ../bleachbit/GuiPreferences.py:70 msgid "Languages" msgstr "Jeziki" #: ../bleachbit/GuiPreferences.py:72 msgid "Whitelist" msgstr "Beli seznam" #: ../bleachbit/GuiPreferences.py:117 msgid "Check periodically for software updates via the Internet" msgstr "Občasno preveri za novejše različice" #: ../bleachbit/GuiPreferences.py:122 msgid "" "If an update is found, you will be given the option to view information " "about it. Then, you may manually download and install the update." msgstr "" "Če se posodobitev najde, si boste lahko najprej ogledali podatke o njej. " "Nato lahko posodobitev ročno prejmete in namestite." #: ../bleachbit/GuiPreferences.py:128 msgid "Check for new beta releases" msgstr "Išči tudi nove različice beta" #: ../bleachbit/GuiPreferences.py:137 msgid "Download and update cleaners from community (winapp2.ini)" msgstr "Prejmi in posodobi čistilnike (winapp2.ini)" #. TRANSLATORS: This means to hide cleaners which would do #. nothing. For example, if Firefox were never used on #. this system, this option would hide Firefox to simplify #. the list of cleaners. #: ../bleachbit/GuiPreferences.py:151 msgid "Hide irrelevant cleaners" msgstr "" #. TRANSLATORS: Overwriting is the same as shredding. It is a way #. to prevent recovery of the data. You could also translate #. 'Shred files to prevent recovery.' #: ../bleachbit/GuiPreferences.py:159 msgid "Overwrite contents of files to prevent recovery" msgstr "" #: ../bleachbit/GuiPreferences.py:163 msgid "" "Overwriting is ineffective on some file systems and with certain BleachBit " "operations. Overwriting is significantly slower." msgstr "" "Prepisovanje datotek je na nekaterih datotečnih sistemih neučinkovito. " "Izbira te možnosti močno podaljša čas čiščenja." #: ../bleachbit/GuiPreferences.py:166 msgid "Start BleachBit with computer" msgstr "Zaženi program BleachBit ob prijavi" #: ../bleachbit/GuiPreferences.py:172 msgid "Exit after cleaning" msgstr "" #: ../bleachbit/GuiPreferences.py:178 msgid "Confirm before delete" msgstr "" #: ../bleachbit/GuiPreferences.py:186 msgid "Use IEC sizes (1 KiB = 1024 bytes) instead of SI (1 kB = 1000 bytes)" msgstr "" #: ../bleachbit/GuiPreferences.py:221 msgid "" "Choose a writable folder for each drive for which to overwrite free space." msgstr "" "Izbor zapisljive mape za vsak pogon na katerem bo prepisan nedodeljen " "prostor diska." #. TRANSLATORS: In the preferences dialog, this button adds a path to #. the list of paths #: ../bleachbit/GuiPreferences.py:243 msgctxt "button" msgid "Add" msgstr "Dodaj" #. TRANSLATORS: In the preferences dialog, this button removes a path #. from the list of paths #: ../bleachbit/GuiPreferences.py:247 ../bleachbit/GuiPreferences.py:458 msgctxt "button" msgid "Remove" msgstr "Odstrani" #: ../bleachbit/GuiPreferences.py:272 msgid "All languages will be deleted except those checked." msgstr "Jezikovne datoteke vseh neizbranih jezikov bodo izbrisane." #: ../bleachbit/GuiPreferences.py:288 msgid "Preserve" msgstr "Ohrani" #: ../bleachbit/GuiPreferences.py:292 msgid "Code" msgstr "Koda" #: ../bleachbit/GuiPreferences.py:313 ../bleachbit/GuiPreferences.py:354 msgid "Choose a file" msgstr "Izberi datoteko" #: ../bleachbit/GuiPreferences.py:320 ../bleachbit/GuiPreferences.py:361 #: ../bleachbit/GuiPreferences.py:405 msgid "File" msgstr "Datoteka" #: ../bleachbit/GuiPreferences.py:334 ../bleachbit/GuiPreferences.py:375 #: ../bleachbit/GuiPreferences.py:407 msgid "Folder" msgstr "Mapa" #: ../bleachbit/GuiPreferences.py:417 msgid "Theses paths will not be deleted or modified." msgstr "Te poti ne bodo izbrisane ali spremenjene." #: ../bleachbit/GuiPreferences.py:420 msgid "These locations can be selected for deletion." msgstr "Ta mesta so lahko izbrana za izbris" #: ../bleachbit/GuiPreferences.py:428 msgid "Type" msgstr "Vrsta" #. TRANSLATORS: In the tree view "Path" is used generically to refer to a #. file, a folder, or a pattern describing either #: ../bleachbit/GuiPreferences.py:434 msgid "Path" msgstr "Pot" #: ../bleachbit/GuiPreferences.py:446 msgctxt "button" msgid "Add file" msgstr "Dodaj datoteko" #: ../bleachbit/GuiPreferences.py:452 msgctxt "button" msgid "Add folder" msgstr "Dodaj mapo" bleachbit-2.0/po/sr.po0000644000175000017500000014414613245436307013015 0ustar hlehle# Serbian translations for PACKAGE package # енглески преводи за пакет PACKAGE. # Copyright (C) 2009 THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. # Automatically generated, 2009. # # Marko Uskokovic , 2009. msgid "" msgstr "" "Project-Id-Version: bleachbit\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2011-05-23 12:10-0600\n" "PO-Revision-Date: 2011-06-14 07:21+0000\n" "Last-Translator: Данило Шеган \n" "Language-Team: sr \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=3; plural=n%10==1 && n%100!=11 ? 0 : n%10>=2 && " "n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2;\n" "X-Launchpad-Export-Date: 2011-06-14 13:24+0000\n" "X-Generator: Launchpad (build 13216)\n" #: ../cleaners/tremulous.xml ../cleaners/gl-117.xml ../cleaners/nexuiz.xml #: ../cleaners/hippo_opensim_viewer.xml ../cleaners/secondlife_viewer.xml msgid "Game" msgstr "Игра" #: ../cleaners/tremulous.xml ../cleaners/chromium.xml ../cleaners/miro.xml #: ../cleaners/audacious.xml ../cleaners/xine.xml ../cleaners/kde.xml #: ../cleaners/pidgin.xml ../cleaners/seamonkey.xml ../cleaners/liferea.xml #: ../cleaners/beagle.xml ../cleaners/opera.xml ../cleaners/rhythmbox.xml #: ../cleaners/epiphany.xml ../cleaners/transmission.xml #: ../cleaners/nexuiz.xml ../cleaners/hippo_opensim_viewer.xml #: ../cleaners/vuze.xml ../cleaners/evolution.xml ../cleaners/exaile.xml #: ../cleaners/google_chrome.xml ../cleaners/emesene.xml ../cleaners/amsn.xml #: ../cleaners/yahoo_messenger.xml ../cleaners/thumbnails.xml #: ../cleaners/safari.xml ../cleaners/java.xml ../cleaners/flash.xml #: ../cleaners/thunderbird.xml ../cleaners/adobe_reader.xml #: ../cleaners/gftp.xml ../cleaners/gpodder.xml #: ../cleaners/secondlife_viewer.xml ../bleachbit/Cleaner.py:187 #: ../bleachbit/Cleaner.py:297 ../bleachbit/Cleaner.py:364 msgid "Cache" msgstr "Привремена меморија" #: ../cleaners/tremulous.xml msgid "Delete the list of game servers" msgstr "Избриши списак сервера игара" #: ../cleaners/yum.xml ../cleaners/miro.xml ../cleaners/audacious.xml #: ../cleaners/xine.xml ../cleaners/kde.xml ../cleaners/pidgin.xml #: ../cleaners/liferea.xml ../cleaners/beagle.xml ../cleaners/rhythmbox.xml #: ../cleaners/transmission.xml ../cleaners/nexuiz.xml ../cleaners/apt.xml #: ../cleaners/hippo_opensim_viewer.xml ../cleaners/vuze.xml #: ../cleaners/evolution.xml ../cleaners/exaile.xml ../cleaners/amsn.xml #: ../cleaners/yahoo_messenger.xml ../cleaners/thumbnails.xml #: ../cleaners/java.xml ../cleaners/windows_explorer.xml ../cleaners/flash.xml #: ../cleaners/adobe_reader.xml ../cleaners/gftp.xml ../cleaners/gpodder.xml #: ../cleaners/secondlife_viewer.xml ../bleachbit/Cleaner.py:297 #: ../bleachbit/Cleaner.py:364 ../bleachbit/Cleaner.py:384 #: ../bleachbit/Cleaner.py:386 msgid "Delete the cache" msgstr "Избриши привремену меморију" #. TRANSLATORS: Vacuum is a verb. The term is jargon #. from the SQLite database. Microsoft Access uses #. the term 'Compact Database' (which you may translate #. instead). Another synonym is 'defragment.' #: ../cleaners/yum.xml ../cleaners/chromium.xml ../cleaners/liferea.xml #: ../cleaners/firefox_vacuum.xml ../cleaners/google_chrome.xml #: ../cleaners/safari.xml ../cleaners/thunderbird.xml ../cleaners/gpodder.xml #: ../bleachbit/Cleaner.py:197 ../bleachbit/Cleaner.py:287 #: ../bleachbit/Action.py:285 msgid "Vacuum" msgstr "Дефрагментација базе" #: ../cleaners/yum.xml ../cleaners/chromium.xml ../cleaners/liferea.xml #: ../cleaners/firefox_vacuum.xml ../cleaners/google_chrome.xml #: ../cleaners/safari.xml ../cleaners/thunderbird.xml ../cleaners/gpodder.xml #: ../bleachbit/Cleaner.py:197 msgid "" "Clean database fragmentation to reduce space and improve speed without " "removing any data" msgstr "" "Очисти фрагментацију базе података ради смањења простора и убрзања без " "брисања података" #: ../cleaners/chromium.xml ../cleaners/internet_explorer.xml #: ../cleaners/seamonkey.xml ../cleaners/opera.xml ../cleaners/epiphany.xml #: ../cleaners/firefox_vacuum.xml ../cleaners/google_chrome.xml #: ../cleaners/safari.xml ../cleaners/links2.xml ../cleaners/elinks.xml #: ../cleaners/konqueror.xml ../bleachbit/Cleaner.py:210 msgid "Web browser" msgstr "Читач веба" #: ../cleaners/chromium.xml ../cleaners/seamonkey.xml ../cleaners/opera.xml #: ../cleaners/epiphany.xml ../cleaners/google_chrome.xml #: ../cleaners/safari.xml ../cleaners/thunderbird.xml #: ../bleachbit/Cleaner.py:187 msgid "Delete the web cache, which reduces time to display revisited pages" msgstr "Избриши списак посећених страница, што смањује време приказа истих" #: ../cleaners/chromium.xml ../cleaners/internet_explorer.xml #: ../cleaners/seamonkey.xml ../cleaners/liferea.xml ../cleaners/opera.xml #: ../cleaners/epiphany.xml ../cleaners/google_chrome.xml #: ../cleaners/safari.xml ../cleaners/flash.xml ../cleaners/thunderbird.xml #: ../cleaners/konqueror.xml ../cleaners/realplayer.xml #: ../cleaners/silverlight.xml ../bleachbit/Cleaner.py:188 msgid "Cookies" msgstr "Колачићи" #: ../cleaners/chromium.xml ../cleaners/internet_explorer.xml #: ../cleaners/seamonkey.xml ../cleaners/liferea.xml ../cleaners/opera.xml #: ../cleaners/epiphany.xml ../cleaners/google_chrome.xml #: ../cleaners/safari.xml ../cleaners/flash.xml ../cleaners/thunderbird.xml #: ../cleaners/konqueror.xml ../cleaners/realplayer.xml #: ../cleaners/silverlight.xml ../bleachbit/Cleaner.py:188 msgid "" "Delete cookies, which contain information such as web site preferences, " "authentication, and tracking identification" msgstr "" "Избриши колачиће који садрже податке као што су поставке веб страница, " "потврду и праћење идентитета" #. TRANSLATORS: DOM = Document Object Model. #: ../cleaners/chromium.xml ../cleaners/opera.xml #: ../cleaners/google_chrome.xml ../bleachbit/Cleaner.py:190 msgid "DOM Storage" msgstr "DOM складиште" #: ../cleaners/chromium.xml ../cleaners/opera.xml #: ../cleaners/google_chrome.xml ../bleachbit/Cleaner.py:190 msgid "Delete HTML5 cookies" msgstr "Избриши HTML5 колачиће" #: ../cleaners/chromium.xml ../cleaners/internet_explorer.xml #: ../cleaners/google_chrome.xml ../bleachbit/Cleaner.py:192 msgid "Form history" msgstr "Историјат образаца" #: ../cleaners/chromium.xml ../cleaners/google_chrome.xml msgid "A history of forms entered in web sites" msgstr "" #: ../cleaners/chromium.xml ../cleaners/d4x.xml ../cleaners/vim.xml #: ../cleaners/internet_explorer.xml ../cleaners/mc.xml #: ../cleaners/seamonkey.xml ../cleaners/windows_defender.xml #: ../cleaners/google_chrome.xml ../cleaners/nautilus.xml #: ../cleaners/safari.xml ../cleaners/bash.xml ../cleaners/links2.xml #: ../cleaners/elinks.xml ../cleaners/tortoisesvn.xml #: ../cleaners/realplayer.xml msgid "History" msgstr "Историјат" #: ../cleaners/chromium.xml ../cleaners/google_chrome.xml msgid "" "Delete the history which includes visited sites, downloads, and thumbnails" msgstr "Избриши историјат посећених страница, преузимања и сличица" #: ../cleaners/chromium.xml ../cleaners/google_chrome.xml msgid "Search engines" msgstr "" #. 'Factory' means a search engine that is installed by default 'from the factory,' but this is different than a 'default search engine' https://lists.launchpad.net/launchpad-translators/msg00283.html #: ../cleaners/chromium.xml ../cleaners/google_chrome.xml msgid "" "Reset the search engine usage history and delete non-factory search engines, " "some of which are added automatically" msgstr "" #: ../cleaners/chromium.xml ../cleaners/opera.xml ../cleaners/konqueror.xml msgid "Current session" msgstr "Текућа сесија" #: ../cleaners/chromium.xml ../cleaners/opera.xml ../cleaners/konqueror.xml msgid "Delete the current session" msgstr "Избриши текућу сесију" #: ../cleaners/d4x.xml ../cleaners/mc.xml ../cleaners/nautilus.xml #: ../cleaners/gnome.xml ../cleaners/links2.xml ../cleaners/tortoisesvn.xml #: ../cleaners/realplayer.xml ../bleachbit/Cleaner.py:277 #: ../bleachbit/Cleaner.py:348 msgid "Delete the usage history" msgstr "Избриши историјат коришћења" #: ../cleaners/vim.xml ../cleaners/gedit.xml msgid "Editor" msgstr "Уређивач" #: ../cleaners/vim.xml msgid "" "Delete ~/.viminfo which includes file history, command history, and buffers" msgstr "Избриши ~/.viminfo који садржи историјат датотека, наредби и бафере" #: ../cleaners/miro.xml ../cleaners/xine.xml ../cleaners/flash.xml msgid "Multimedia viewer" msgstr "Мултимедијални прегледач" #: ../cleaners/miro.xml ../cleaners/audacious.xml ../cleaners/screenlets.xml #: ../cleaners/hippo_opensim_viewer.xml ../cleaners/vuze.xml #: ../cleaners/exaile.xml ../cleaners/easytag.xml #: ../cleaners/yahoo_messenger.xml ../cleaners/teamviewer.xml #: ../cleaners/gftp.xml ../cleaners/amule.xml ../cleaners/realplayer.xml #: ../bleachbit/Cleaner.py:382 msgid "Logs" msgstr "Записници" #: ../cleaners/miro.xml ../cleaners/audacious.xml ../cleaners/screenlets.xml #: ../cleaners/hippo_opensim_viewer.xml ../cleaners/vuze.xml #: ../cleaners/exaile.xml ../cleaners/yahoo_messenger.xml #: ../cleaners/teamviewer.xml ../cleaners/gftp.xml ../cleaners/amule.xml #: ../cleaners/realplayer.xml ../bleachbit/Cleaner.py:382 msgid "Delete the logs" msgstr "Избриши записнике" #: ../cleaners/gl-117.xml ../cleaners/beagle.xml ../cleaners/x11.xml #: ../cleaners/microsoft_office.xml ../cleaners/secondlife_viewer.xml msgid "Debug logs" msgstr "Записници за уклањање грешака" #: ../cleaners/gl-117.xml ../cleaners/beagle.xml ../cleaners/x11.xml #: ../cleaners/microsoft_office.xml ../cleaners/easytag.xml #: ../cleaners/secondlife_viewer.xml msgid "Delete the debug logs" msgstr "Избриши записнике за уклањање грешака" #: ../cleaners/internet_explorer.xml ../bleachbit/Cleaner.py:192 msgid "A history of forms entered in web sites and in the Search bar" msgstr "Историјат попуњених образаца на веб-сајтовима и пољима за претрагу" #: ../cleaners/internet_explorer.xml ../cleaners/opera.xml #: ../cleaners/safari.xml ../cleaners/konqueror.xml #: ../bleachbit/Cleaner.py:196 msgid "List of visited web pages" msgstr "Списак посећених веб страница" #: ../cleaners/internet_explorer.xml ../cleaners/kde.xml ../cleaners/vuze.xml #: ../cleaners/deepscan.xml ../cleaners/gimp.xml ../cleaners/google_earth.xml #: ../cleaners/adobe_reader.xml ../cleaners/amule.xml #: ../cleaners/winetricks.xml ../cleaners/wine.xml ../bleachbit/Cleaner.py:398 msgid "Temporary files" msgstr "Привремене датотеке" #: ../cleaners/internet_explorer.xml ../cleaners/kde.xml ../cleaners/vuze.xml #: ../cleaners/deepscan.xml ../cleaners/gimp.xml ../cleaners/google_earth.xml #: ../cleaners/adobe_reader.xml ../cleaners/amule.xml #: ../cleaners/winetricks.xml ../cleaners/wine.xml ../bleachbit/Cleaner.py:398 msgid "Delete the temporary files" msgstr "Избриши привремене датотеке" #: ../cleaners/audacious.xml ../cleaners/filezilla.xml ../cleaners/winrar.xml #: ../cleaners/wordpad.xml ../cleaners/winamp.xml #: ../cleaners/windows_media_player.xml ../cleaners/microsoft_office.xml #: ../cleaners/winzip.xml ../cleaners/vlc.xml ../cleaners/windows_explorer.xml #: ../cleaners/teamviewer.xml ../cleaners/adobe_reader.xml #: ../cleaners/paint.xml ../bleachbit/Cleaner.py:298 msgid "Most recently used" msgstr "Недавно коришћене" #: ../cleaners/audacious.xml ../cleaners/kde.xml ../cleaners/filezilla.xml #: ../cleaners/gwenview.xml ../cleaners/gedit.xml #: ../cleaners/windows_explorer.xml ../cleaners/adobe_reader.xml #: ../bleachbit/Cleaner.py:298 ../bleachbit/Cleaner.py:374 msgid "Delete the list of recently used documents" msgstr "Избриши списак недавно коришћених докумената" #: ../cleaners/kde.xml ../cleaners/gwenview.xml ../cleaners/gedit.xml #: ../cleaners/windows_explorer.xml ../bleachbit/Cleaner.py:374 msgid "Recent documents list" msgstr "Скорашњи документи" #: ../cleaners/pidgin.xml ../cleaners/xchat.xml ../cleaners/emesene.xml #: ../cleaners/amsn.xml ../cleaners/yahoo_messenger.xml msgid "Chat client" msgstr "Ћаскање" #: ../cleaners/pidgin.xml ../cleaners/seamonkey.xml ../cleaners/xchat.xml #: ../cleaners/emesene.xml ../cleaners/amsn.xml #: ../cleaners/yahoo_messenger.xml ../cleaners/skype.xml msgid "Chat logs" msgstr "Записници ћаскања" #: ../cleaners/pidgin.xml ../cleaners/seamonkey.xml ../cleaners/xchat.xml #: ../cleaners/emesene.xml ../cleaners/amsn.xml #: ../cleaners/yahoo_messenger.xml ../cleaners/skype.xml msgid "Delete the chat logs" msgstr "Избриши записнике ћаскања" #: ../cleaners/seamonkey.xml msgid "Delete the list of visited web pages" msgstr "Избриши списак посећених веб страница" #: ../cleaners/screenlets.xml msgid "Widgets for the desktop" msgstr "Виџети за радну површину" #: ../cleaners/beagle.xml ../cleaners/recoll.xml msgid "Search tool" msgstr "Претраживач" #: ../cleaners/beagle.xml msgid "Search indexes" msgstr "Пописи претраживања" #: ../cleaners/beagle.xml msgid "Delete the search indexes" msgstr "Избриши пописе претраживања" #: ../cleaners/filezilla.xml ../cleaners/transmission.xml ../cleaners/vuze.xml #: ../cleaners/gftp.xml ../cleaners/amule.xml msgid "File transfer client" msgstr "Програм за пренос података" #: ../cleaners/windows_defender.xml ../cleaners/deepscan.xml msgid "Delete the files" msgstr "Избриши датотеке" #: ../cleaners/opera.xml ../bleachbit/Cleaner.py:191 msgid "Download history" msgstr "Историјат преузимања" #: ../cleaners/opera.xml ../bleachbit/Cleaner.py:191 msgid "List of files downloaded" msgstr "Списак преузетих датотека" #: ../cleaners/opera.xml ../cleaners/google_toolbar.xml ../cleaners/gnome.xml #: ../cleaners/windows_explorer.xml msgid "Search history" msgstr "Историјат претраживања" #: ../cleaners/opera.xml ../cleaners/google_toolbar.xml ../cleaners/gnome.xml #: ../cleaners/windows_explorer.xml msgid "Delete the search history" msgstr "Избриши историјат претраживања" #: ../cleaners/opera.xml ../cleaners/konqueror.xml ../bleachbit/Cleaner.py:196 msgid "URL history" msgstr "Историјат адреса" #: ../cleaners/winrar.xml ../cleaners/wordpad.xml ../cleaners/winamp.xml #: ../cleaners/windows_media_player.xml ../cleaners/microsoft_office.xml #: ../cleaners/winzip.xml ../cleaners/vlc.xml ../cleaners/windows_explorer.xml #: ../cleaners/teamviewer.xml ../cleaners/paint.xml msgid "Delete the most recently used list" msgstr "Избриши списак недавно коришћених" #: ../cleaners/epiphany.xml ../cleaners/thunderbird.xml #: ../bleachbit/Cleaner.py:195 msgid "Passwords" msgstr "Лозинке" #: ../cleaners/epiphany.xml ../cleaners/thunderbird.xml #: ../bleachbit/Cleaner.py:195 msgid "" "A database of usernames and passwords as well as a list of sites that should " "not store passwords" msgstr "" "База корисничких имена и лозинки, као и списак сајтова који не би требало да " "чувају лозинке" #: ../cleaners/epiphany.xml msgid "Places" msgstr "Места" #: ../cleaners/epiphany.xml msgid "" "A database of URLs including bookmarks, favicons, and a history of visited " "web sites" msgstr "" "База URL адреса која садржи забелешке, сличице сајта и историјат посећених " "страница" #: ../cleaners/epiphany.xml msgid "This option deletes all bookmarks." msgstr "Ова опција брише све забелешке." #: ../cleaners/microsoft_office.xml ../bleachbit/Cleaner.py:308 msgid "Office suite" msgstr "Канцеларијски пакети" #: ../cleaners/apt.xml msgid "Delete obsolete files" msgstr "Избриши застареле датотеке" #: ../cleaners/vuze.xml ../cleaners/deepscan.xml msgid "Backup files" msgstr "Резервне датотеке" #: ../cleaners/vuze.xml ../cleaners/deepscan.xml msgid "Delete the backup files" msgstr "Избриши резервне датотеке" #: ../cleaners/exaile.xml msgid "Downloaded podcasts" msgstr "Преузети поткастови" #: ../cleaners/exaile.xml msgid "Delete downloaded podcasts" msgstr "Избриши преузете поткастове" #: ../cleaners/google_chrome.xml msgid "Session" msgstr "Сесија" #: ../cleaners/google_chrome.xml msgid "Delete the current and last sessions" msgstr "Избриши текућу и последњу сесију" #: ../cleaners/emesene.xml msgid "Delete the avatars and emoticons cache" msgstr "Избриши корисникове сличице и емотиконе из оставе" #: ../cleaners/deepscan.xml msgid "Deep scan" msgstr "Детаљно скенирање" #: ../cleaners/deepscan.xml msgid "Inspect the preview for any files you want to keep." msgstr "Проверите преглед свих датотека које желите да задржите." #: ../cleaners/deepscan.xml msgid "This option is slow." msgstr "Ова опција је спора." #: ../cleaners/nautilus.xml msgid "Custom folders will be reset." msgstr "Прилагођене фасцикле ће бити поништене." #: ../cleaners/thumbnails.xml ../cleaners/windows_explorer.xml msgid "Thumbnails" msgstr "Умањени прикази слика" #: ../cleaners/bash.xml msgid "Delete the command history" msgstr "Избриши историјат наредби" #. In GNOME 'Run' is the dialog shown when typing ALT+F2' #. In Windows 'Run' is the dialog in the Start menu #: ../cleaners/gnome.xml ../cleaners/windows_explorer.xml msgid "Run" msgstr "Покрени" #: ../cleaners/elinks.xml msgid "Delete the cookies, visited URLs, and search history" msgstr "Избриши колачиће, посећене адресе и историјат претраживања" #: ../cleaners/recoll.xml msgid "Index" msgstr "Попис" #: ../cleaners/recoll.xml msgid "" "Delete the search index, a database of words and the files they contain" msgstr "Избриши попис претраживања, базу речи и датотеке које садржи" #: ../bleachbit.desktop msgid "Unnecessary file cleaner" msgstr "Чистач непотребних датотека" #: ../bleachbit.desktop msgid "Free space and maintain privacy" msgstr "Ослобађање простора и чување приватности" #. TRANSLATORS: This is the label in the log indicating was #. skipped because it matches the whitelist #: ../bleachbit/Command.py:46 msgid "Skip" msgstr "Прескочи" #. TRANSLATORS: This is the label in the log indicating will be #. deleted (for previews) or was actually deleted #: ../bleachbit/Command.py:73 ../bleachbit/GUI.py:585 msgid "Delete" msgstr "Обриши" #. TRANSLATORS: The file will be deleted when the #. system reboots #: ../bleachbit/Command.py:93 msgid "Mark for deletion" msgstr "Означи за брисање" #. TRANSLATORS: Parts of this file will be deleted #: ../bleachbit/Command.py:182 ../bleachbit/Command.py:212 #: ../bleachbit/Action.py:203 ../bleachbit/Action.py:215 msgid "Clean file" msgstr "" #. TRANSLATORS: The file will be truncated to 0 bytes in length #: ../bleachbit/Command.py:249 msgid "Truncate" msgstr "Скрати" #: ../bleachbit/Command.py:288 msgid "Delete registry key" msgstr "Обриши кључ регистра" #: ../bleachbit/Unix.py:364 ../bleachbit/Unix.py:394 ../bleachbit/Unix.py:574 #, python-format msgid "Executable not found: %s" msgstr "Извршна датотека није нађена: %s" #. TRANSLATORS: %s expands to a name such as 'Firefox' or 'System'. #: ../bleachbit/Unix.py:571 ../bleachbit/Worker.py:131 #, python-format msgid "" "%s cannot be cleaned because it is currently running. Close it, and try " "again." msgstr "" "%s не може бити очишћен јер је тренутно активан. Затворите га, и пробајте " "поново." #: ../bleachbit/GuiBasic.py:113 msgid "Delete confirmation" msgstr "Потврда брисања" #: ../bleachbit/GuiBasic.py:121 msgid "" "Are you sure you want to permanently delete files according to the selected " "operations? The actual files that will be deleted may have changed since " "you ran the preview." msgstr "" "Сигурно желите трајно да обришете датотеке у складу са изабраним " "операцијама? Постојеће датотеке које ће бити обрисане су можда измењене " "откад сте покренули преглед." #: ../bleachbit/GuiBasic.py:123 msgid "Are you sure you want to permanently delete these files?" msgstr "Сигурно желите да трајно уклоните ове датотеке?" #: ../bleachbit/GuiBasic.py:159 #, python-format msgid "" "Because you are running as root, please manually open this link in a web " "browser:\n" "%s" msgstr "" "Пошто сте тренутно администратор, ручно отворите овај линк у читачу веба:\n" "%s" #. TRANSLATORS: %s expands to bleachbit.sourceforge.net or similar #: ../bleachbit/GuiBasic.py:171 #, python-format msgid "Open web browser to %s?" msgstr "Отворите читач веба са %s?" #. TRANSLATORS: This is cleaner name for cleaners imported from winapp2.ini #: ../bleachbit/Winapp.py:45 msgid "Applications" msgstr "" #. TRANSLATORS: This is cleaner name for cleaners imported from winapp2.ini #: ../bleachbit/Winapp.py:47 ../bleachbit/Winapp.py:54 #: ../bleachbit/Winapp.py:55 ../bleachbit/Winapp.py:56 msgid "Internet" msgstr "" #. TRANSLATORS: This is cleaner name for cleaners imported from winapp2.ini #: ../bleachbit/Winapp.py:49 msgid "Multimedia" msgstr "" #. TRANSLATORS: This is cleaner name for cleaners imported from winapp2.ini #: ../bleachbit/Winapp.py:51 msgid "Utilities" msgstr "" #. TRANSLATORS: This is cleaner name for cleaners imported from winapp2.ini. #: ../bleachbit/Winapp.py:53 msgid "Microsoft Windows" msgstr "" #: ../bleachbit/Winapp.py:87 msgid "Imported from winapp2.ini" msgstr "" #: ../bleachbit/Cleaner.py:193 msgid "Session restore" msgstr "Повратак сесије" #: ../bleachbit/Cleaner.py:193 msgid "Loads the initial session after the browser closes or crashes" msgstr "Учитава почетну сесију након што се прегледач затвори или сруши" #: ../bleachbit/Cleaner.py:194 msgid "Site preferences" msgstr "" #: ../bleachbit/Cleaner.py:194 msgid "Settings for individual sites" msgstr "" #. TRANSLATORS: desktop entries are .desktop files in Linux tha #. make up the application menu (the menu that shows BleachBit, #. Firefox, and others. The .desktop files also associate file #. types, so clicking on an .html file in Nautilus brings up #. Firefox. #. More information: http://standards.freedesktop.org/menu-spec/latest/index.html#introduction #: ../bleachbit/Cleaner.py:363 msgid "Broken desktop files" msgstr "Неисправне датотеке пречица" #: ../bleachbit/Cleaner.py:363 msgid "Delete broken application menu entries and file associations" msgstr "" "Избриши неисправне уносе у менију програма и придружене формате датотека" #. TRANSLATORS: Localizations are files supporting specific #. languages, so applications appear in Spanish, etc. #: ../bleachbit/Cleaner.py:367 msgid "Localizations" msgstr "Локализације" #: ../bleachbit/Cleaner.py:367 msgid "Delete files for unwanted languages" msgstr "Избриши датотеке нежељених језика" #: ../bleachbit/Cleaner.py:368 msgid "Configure this option in the preferences." msgstr "" #. TRANSLATORS: 'Rotated logs' refers to old system log files. #. Linux systems often have a scheduled job to rotate the logs #. which means compress all except the newest log and then delete #. the oldest log. You could translate this 'old logs.' #: ../bleachbit/Cleaner.py:373 msgid "Rotated logs" msgstr "Застарели записници" #: ../bleachbit/Cleaner.py:373 msgid "Delete old system logs" msgstr "Избриши застареле записнике система" #: ../bleachbit/Cleaner.py:375 msgid "Trash" msgstr "Смеће" #: ../bleachbit/Cleaner.py:375 msgid "Empty the trash" msgstr "Испразни смеће" #: ../bleachbit/Cleaner.py:377 ../bleachbit/Cleaner.py:483 #: ../bleachbit/Worker.py:210 msgid "Memory" msgstr "Меморија" #. TRANSLATORS: 'free' means 'unallocated' #: ../bleachbit/Cleaner.py:379 msgid "Wipe the swap and free memory" msgstr "Очисти помоћну и слободну меморију" #: ../bleachbit/Cleaner.py:380 msgid "This option is experimental and may cause system problems." msgstr "Ова опција је експериментална и може изазвати системске проблеме." #: ../bleachbit/Cleaner.py:383 msgid "Memory dump" msgstr "Сачуван меморијски садржај" #: ../bleachbit/Cleaner.py:383 msgid "Delete the file memory.dmp" msgstr "Избриши memory.dmp датотеку" #. TRANSLATORS: Prefetch is Microsoft Windows jargon. #: ../bleachbit/Cleaner.py:386 msgid "Prefetch" msgstr "Предохват" #: ../bleachbit/Cleaner.py:387 msgid "Recycle bin" msgstr "Корпа за отпатке" #: ../bleachbit/Cleaner.py:387 msgid "Empty the recycle bin" msgstr "Испразни корпу за отпатке" #. TRANSLATORS: 'Update' is a noun, and 'Update uninstallers' is an option to delete #. the uninstallers for software updates. #: ../bleachbit/Cleaner.py:390 msgid "Update uninstallers" msgstr "" #: ../bleachbit/Cleaner.py:390 msgid "" "Delete uninstallers for Microsoft updates including hotfixes, service packs, " "and Internet Explorer updates" msgstr "" #: ../bleachbit/Cleaner.py:392 ../bleachbit/Cleaner.py:565 msgid "Clipboard" msgstr "Исечци" #: ../bleachbit/Cleaner.py:392 msgid "" "The desktop environment's clipboard used for copy and paste operations" msgstr "Исечци се користе за радње као што су „умножи“ и „убаци“" #. TRANSLATORS: 'free' means 'unallocated' #: ../bleachbit/Cleaner.py:394 msgid "Free disk space" msgstr "Слободан простор на диску" #. TRANSLATORS: 'free' means 'unallocated' #: ../bleachbit/Cleaner.py:396 msgid "Overwrite free disk space to hide deleted files" msgstr "" "Препиши преко слободног простора на диску да бисте сакрили избрисане датотеке" #: ../bleachbit/Cleaner.py:397 msgid "This option is very slow." msgstr "Ова опција је веома спора." #: ../bleachbit/Cleaner.py:401 msgid "The system in general" msgstr "Систем у целини" #: ../bleachbit/Cleaner.py:407 ../bleachbit/Cleaner.py:659 msgid "System" msgstr "Систем" #. TRANSLATORS: 'Free' means 'unallocated.' #. %s expands to a path such as C:\ or /tmp/ #: ../bleachbit/Cleaner.py:591 ../bleachbit/Cleaner.py:684 #, python-format msgid "Overwrite free disk space %s" msgstr "Препиши преко слободног простора на диску %s" #. TRANSLATORS: %s expands to a drive letter such as C:\ or D:\ #: ../bleachbit/Cleaner.py:619 #, python-format msgid "Recycle bin %s" msgstr "Корпа за отпатке %s" #: ../bleachbit/GuiPreferences.py:52 ../bleachbit/GUI.py:637 msgid "Preferences" msgstr "Поставке" #: ../bleachbit/GuiPreferences.py:58 msgid "General" msgstr "Опште" #: ../bleachbit/GuiPreferences.py:59 msgid "Drives" msgstr "Дискови" #: ../bleachbit/GuiPreferences.py:61 msgid "Languages" msgstr "Језици" #: ../bleachbit/GuiPreferences.py:62 msgid "Whitelist" msgstr "Списак дозвољених" #: ../bleachbit/GuiPreferences.py:105 msgid "Check periodically for software updates via the Internet" msgstr "Повремено проверавај путем интернета да ли има ажурирања програма" #: ../bleachbit/GuiPreferences.py:108 msgid "" "If an update is found, you will be given the option to view information " "about it. Then, you may manually download and install the update." msgstr "" "Ако се пронађе ажурирање, биће вам дата могућност да прегледате информације " "о ажурирању. Онда можете ручно преузети и инсталирати нову верзију" #: ../bleachbit/GuiPreferences.py:114 msgid "Check for new beta releases" msgstr "" #: ../bleachbit/GuiPreferences.py:121 msgid "Download and update cleaners from community (winapp2.ini)" msgstr "" #. TRANSLATORS: This means to hide cleaners which would do #. nothing. For example, if Firefox were never used on #. this system, this option would hide Firefox to simplify #. the list of cleaners. #: ../bleachbit/GuiPreferences.py:133 msgid "Hide irrelevant cleaners" msgstr "Сакриј неприменљиве чистаче" #. TRANSLATORS: Overwriting is the same as shredding. It is a way #. to prevent recovery of the data. You could also translate #. 'Shred files to prevent recovery.' #: ../bleachbit/GuiPreferences.py:141 msgid "Overwrite files to hide contents" msgstr "Препиши преко датотека да сакријеш садржај" #: ../bleachbit/GuiPreferences.py:144 msgid "" "Overwriting is ineffective on some file systems and with certain BleachBit " "operations. Overwriting is significantly slower." msgstr "" "Преписивање фајлова нема ефекта на неким фајл системима и са одређеним " "операцијама програма BleachBit. Преписивање је значајно спорије" #: ../bleachbit/GuiPreferences.py:147 msgid "Start BleachBit with computer" msgstr "Покрени BleachBit с' рачунаром" #: ../bleachbit/GuiPreferences.py:158 ../bleachbit/GuiPreferences.py:289 #: ../bleachbit/GUI.py:547 msgid "Choose a folder" msgstr "Изаберите фасциклу" #. TRANSLATORS: 'free' means 'unallocated' #: ../bleachbit/GuiPreferences.py:183 msgid "" "Choose a writable folder for each drive for which to overwrite free space." msgstr "" "Изаберите фасциклу са правом уписа за сваки диск коме желите да препишете " "слободан простор." #. TRANSLATORS: In the preferences dialog, this button adds a path to the list of paths #: ../bleachbit/GuiPreferences.py:204 msgctxt "button" msgid "Add" msgstr "Додај" #. TRANSLATORS: In the preferences dialog, this button removes a path from the list of paths #: ../bleachbit/GuiPreferences.py:207 ../bleachbit/GuiPreferences.py:367 msgctxt "button" msgid "Remove" msgstr "Уклони" #: ../bleachbit/GuiPreferences.py:232 msgid "All languages will be deleted except those checked." msgstr "Сви језици ће бити обрисани осим оних који су штиклирани." #: ../bleachbit/GuiPreferences.py:249 msgid "Preserve" msgstr "Сачувај" #: ../bleachbit/GuiPreferences.py:253 msgid "Code" msgstr "Код" #: ../bleachbit/GuiPreferences.py:257 ../bleachbit/GUI.py:136 msgid "Name" msgstr "Име" #: ../bleachbit/GuiPreferences.py:275 msgid "Choose a file" msgstr "Изаберите датотеку" #: ../bleachbit/GuiPreferences.py:282 ../bleachbit/GuiPreferences.py:326 msgid "File" msgstr "Датотека" #: ../bleachbit/GuiPreferences.py:297 ../bleachbit/GuiPreferences.py:328 msgid "Folder" msgstr "Фасцикла" #. TRANSLATORS: "Paths" is used generically to refer to both files and folders #: ../bleachbit/GuiPreferences.py:335 msgid "Theses paths will not be deleted or modified." msgstr "Ове путање не могу бити обрисане или промењене." #: ../bleachbit/GuiPreferences.py:343 msgid "Type" msgstr "" #. TRANSLATORS: In the tree view "Path" is used generically to refer to a #. file, a folder, or a pattern describing either #: ../bleachbit/GuiPreferences.py:349 msgid "Path" msgstr "Путања" #: ../bleachbit/GuiPreferences.py:361 msgctxt "button" msgid "Add file" msgstr "Додај датотеку" #: ../bleachbit/GuiPreferences.py:364 msgctxt "button" msgid "Add folder" msgstr "Додај фасциклу" #: ../bleachbit/RecognizeCleanerML.py:63 msgid "Security warning" msgstr "Безбедносно упозорење" #. TRANSLATORS: Cleaner definitions are XML data files that define #. which files will be cleaned. #: ../bleachbit/RecognizeCleanerML.py:75 msgid "" "These cleaner definitions are new or have changed. Malicious definitions can " "damage your system. If you do not trust these changes, delete the files or " "quit." msgstr "" "Ове дефиниције чистача су нове или су измењене. Злонамерне дефиниције могу " "оштетити систем. Ако не верујете овим изменама, избришите датотеке или " "одустаните." #. TRANSLATORS: This is the column label (header) in the tree view for the security dialog #: ../bleachbit/RecognizeCleanerML.py:88 msgctxt "column_label" msgid "Delete" msgstr "Избриши" #. TRANSLATORS: This is the column label (header) in the tree view for the security dialog #: ../bleachbit/RecognizeCleanerML.py:91 msgctxt "column_label" msgid "Filename" msgstr "Име датотеке" #. TRANSLATORS: This indicates an error. The special keyword #. %(operation)s will be replaced by 'firefox' or 'opera' or #. some other cleaner ID. The special keyword %(msg)s will be #. replaced by a message such as 'Permission denied.' #: ../bleachbit/Worker.py:76 #, python-format msgid "Exception while running operation '%(operation)s': '%(msg)s'" msgstr "Изузетак код извршења операције '%(operation)s': '%(msg)s'" #. TRANSLATORS: 'free' means 'unallocated' #: ../bleachbit/Worker.py:208 msgid "Please wait. Wiping free disk space." msgstr "Молим сачекајте. Брисање слободног простора диска." #. TRANSLATORS: %s is replaced with Firefox, System, etc. #: ../bleachbit/Worker.py:210 ../bleachbit/Worker.py:297 #, python-format msgid "Please wait. Cleaning %s." msgstr "Молим сачекајте. Чишћење %s." #: ../bleachbit/Worker.py:220 #, python-format msgid "About %d minute remaining." msgid_plural "About %d minutes remaining." msgstr[0] "" msgstr[1] "" #. TRANSLATORS: This refers to disk space that was #. really recovered (in other words, not a preview) #: ../bleachbit/Worker.py:235 #, python-format msgid "Disk space recovered: %s" msgstr "Ослобођен простор на диску: %s" #. TRANSLATORS: This refers to a preview (no real #. changes were made yet) #: ../bleachbit/Worker.py:239 #, python-format msgid "Disk space to be recovered: %s" msgstr "Биће ослобођено простора на диску: %s" #. TRANSLATORS: This refers to the number of files really #. deleted (in other words, not a preview). #: ../bleachbit/Worker.py:244 #, python-format msgid "Files deleted: %d" msgstr "Датотека уклоњено: %d" #. TRANSLATORS: This refers to the number of files that #. would be deleted (in other words, simply a preview). #: ../bleachbit/Worker.py:248 #, python-format msgid "Files to be deleted: %d" msgstr "Датотека за брисање: %d" #: ../bleachbit/Worker.py:251 #, python-format msgid "Special operations: %d" msgstr "Специјалне операције: %d" #: ../bleachbit/Worker.py:254 #, python-format msgid "Errors: %d" msgstr "Грешке: %d" #. TRANSLATORS: The "deep scan" feature searches over broad #. areas of the file system such as the user's whole home directory #. or all the system executables. #: ../bleachbit/Worker.py:270 msgid "Please wait. Running deep scan." msgstr "Молим сачекајте. Покренуто је детаљно скенирање." #. TRANSLATORS: %s is replaced with Firefox, System, etc. #: ../bleachbit/Worker.py:300 #, python-format msgid "Please wait. Previewing %s." msgstr "Молим сачекајте. Приказ %s." #: ../bleachbit/Update.py:75 msgid "New winapp2.ini was downloaded." msgstr "" #: ../bleachbit/Update.py:111 msgid "Update BleachBit" msgstr "Ажурирај програм BleachBit" #: ../bleachbit/Update.py:116 msgid "A new version is available." msgstr "" #. TRANSLATORS: %s expands to version such as '0.8.4' or '0.8.5beta' or similar #: ../bleachbit/Update.py:124 #, python-format msgid "Update to version %s" msgstr "" #: ../bleachbit/CLI.py:123 #, python-format msgid "not a valid cleaner: %s" msgstr "није важећи чистач: %s" #. TRANSLATORS: This is the command line usage. Don't translate #. %prog, but do translate usage, options, cleaner, and option. #. More information about the command line is here #. http://bleachbit.sourceforge.net/documentation/command-line #: ../bleachbit/CLI.py:150 msgid "usage: %prog [options] cleaner.option1 cleaner.option2" msgstr "употреба: %prog [options] cleaner.option1 cleaner.option2" #: ../bleachbit/CLI.py:153 msgid "list cleaners" msgstr "списак чистача" #: ../bleachbit/CLI.py:155 msgid "delete files and make other permanent changes" msgstr "избриши датотеке и уради остале трајне измене" #: ../bleachbit/CLI.py:157 msgid "show system information" msgstr "прикажи системске податке" #: ../bleachbit/CLI.py:159 msgid "preview files to be deleted and other changes" msgstr "прикажи датотеке које ће бити избрисане и остале измене" #: ../bleachbit/CLI.py:161 msgid "use options set in the graphical interface" msgstr "" #: ../bleachbit/CLI.py:163 msgid "output version information and exit" msgstr "прикажи податке о издању и изађи" #: ../bleachbit/CLI.py:165 msgid "overwrite files to hide contents" msgstr "преснимите датотеке да сакријете садржај" #: ../bleachbit/GUI.py:144 msgid "Active" msgstr "Активно" #. TRANSLATORS: %(cleaner) may be Firefox, System, etc. #. %(option) may be cache, logs, cookies, etc. #. %(warning) may be 'This option is really slow' #: ../bleachbit/GUI.py:176 #, python-format msgid "" "Warning regarding %(cleaner)s - %(option)s:\n" "\n" "%(warning)s" msgstr "" #: ../bleachbit/GUI.py:346 msgid "You must select an operation" msgstr "Морате одабрати операцију" #: ../bleachbit/GUI.py:369 ../bleachbit/GUI.py:384 msgid "Done." msgstr "Готово." #: ../bleachbit/GUI.py:396 msgid "Program to clean unnecessary files" msgstr "Програм за брисање непотребних фајлова" #: ../bleachbit/GUI.py:401 msgid "" "GNU General Public License version 3 or later.\n" "See http://www.gnu.org/licenses/gpl-3.0.txt" msgstr "" "ГНУ-ова Општа јавна лиценца (GNU General Public License) верзије 3 или " "новије.\n" "Погледајте http://www.gnu.org/licenses/gpl-3.0.txt" #. TRANSLATORS: Maintain the names of translators here. #. Launchpad does this automatically for translations #. typed in Launchpad. This is a special string shown #. in the 'About' box. #: ../bleachbit/GUI.py:407 msgid "translator-credits" msgstr "" "Launchpad Contributions:\n" " Anaximandar https://launchpad.net/~anaximandar\n" " Milan Masic https://launchpad.net/~mmasic-gmx\n" " Rancher https://launchpad.net/~rancher\n" " Roman Horník https://launchpad.net/~roman.hornik\n" " turncoat https://launchpad.net/~uskokovic\n" " Данило Шеган https://launchpad.net/~danilo" #: ../bleachbit/GUI.py:420 msgid "System information" msgstr "Подаци о систему" #: ../bleachbit/GUI.py:490 msgid "Choose files to shred" msgstr "Изаберите датотеке за уништење" #: ../bleachbit/GUI.py:493 msgid "Choose folder to shred" msgstr "" #: ../bleachbit/GUI.py:581 msgid "Preview" msgstr "Преглед" #: ../bleachbit/GUI.py:631 msgid "_Shred Files" msgstr "_Уништи датотеке" #: ../bleachbit/GUI.py:632 msgid "Sh_red Folders" msgstr "" #: ../bleachbit/GUI.py:633 msgid "_Wipe Free Space" msgstr "" #: ../bleachbit/GUI.py:634 msgid "S_hred Settings and Quit" msgstr "Уништи п_одешавања и изађи" #: ../bleachbit/GUI.py:635 msgid "_Quit" msgstr "_Заврши" #: ../bleachbit/GUI.py:636 msgid "_File" msgstr "_Фајл" #: ../bleachbit/GUI.py:638 msgid "_Edit" msgstr "_Уређивање" #: ../bleachbit/GUI.py:639 msgid "Help Contents" msgstr "Садржај помоћи" #: ../bleachbit/GUI.py:641 msgid "_Release Notes" msgstr "_Белешке о издању" #: ../bleachbit/GUI.py:643 msgid "_System Information" msgstr "Подаци о _систему" #: ../bleachbit/GUI.py:644 msgid "_About" msgstr "_О програму" #: ../bleachbit/GUI.py:645 msgid "_Help" msgstr "_Помоћ" #. TRANSLATORS: This is the preview button on the main window. It previews changes. #: ../bleachbit/GUI.py:669 msgctxt "button" msgid "Preview" msgstr "Преглед" #: ../bleachbit/GUI.py:672 msgid "Preview files in the selected operations (without deleting any files)" msgstr "" "Даје преглед фајлова наведеним операцијама (фајлови неће бити обрисани)" #. TRANSLATORS: This is the delete button on the main window. #. It makes permanent changes: usually deleting files, sometimes altering them. #: ../bleachbit/GUI.py:680 msgctxt "button" msgid "Delete" msgstr "Избриши" #: ../bleachbit/GUI.py:683 msgid "Delete files in the selected operations" msgstr "Обриши фајлове наведеним операцијама" #: ../bleachbit/GUI.py:769 msgid "Error when checking for updates: " msgstr "Јавила се грешка приликом провере ажурирања: " #: ../bleachbit/GUI.py:800 msgid "" "Error loading the SQLite module: the antivirus software may be blocking it." msgstr "" "Грешка при учитавању SQLite модула: антивирусни програм га можда блокира." #~ msgid "Delete Adobe Reader's cache" #~ msgstr "Обриши кеш програма Adobe Reader" #~ msgid "Delete the Bash history" #~ msgstr "Обриши историју Bash команди" #~ msgid "Delete Beagle indexes and logs" #~ msgstr "Обриши индексе и дневник програма Beagle" #~ msgid "Web cache reduces time to display revisited pages" #~ msgstr "Веб кеш скраћује време потребно за приказ страна које су већ виђене." #~ msgid "" #~ "HTTP cookies contain information such as web site prefereneces, " #~ "authentication, and tracking identification" #~ msgstr "" #~ "HTTP колачићи садрже информације као што су опције веб сајтова, " #~ "аутентификацију и информације за праћење." #~ msgid "" #~ "A database of URLs including bookmarks and a history of visited web sites" #~ msgstr "База УРЛ-ова укључујући и забелешке и историју посећених сајтова" #~ msgid "Epiphany web browser" #~ msgstr "Веб читач Epiphany" #~ msgid "Mozilla Firefox web browser" #~ msgstr "Веб читач Mozilla Firefox" #~ msgid "Delete Adobe Flash's cache and settings" #~ msgstr "Обриши кеш и подешавања Adobe-овог Flash-а" #~ msgid "Delete Second Life Viewer's cache and temporary files" #~ msgstr "Обриши кеш и привремене фајлове програма Second Life" #~ msgid "Second Life Viewer" #~ msgstr "Програм Second Life" #~ msgid "Broken desktop entries" #~ msgstr "Неисправни објекти радне површине" #~ msgid "" #~ "Unusable .desktop files (menu entries and file associtations) that are " #~ "either invalid structurally or point to non-existant locations" #~ msgstr "" #~ "Стакве менија и програми за отварање фајлова записани у desktop фајловима " #~ "који су неисправно структуирани или показују на непостојећу локацију" #~ msgid "Cache location specified by XDG and used by various applications" #~ msgstr "Локације кеша које наводи XDG и које користе разне програми" #~ msgid "Data used to operate the system in various languages and countries" #~ msgstr "Преводи програма на разне језике и подешавања" #~ msgid "User-owned, unopened, regular files in /tmp/ and /var/tmp/" #~ msgstr "" #~ "Регуларни фајлови у /tmp/ и /var/tmp/ који припадају корисницима и који нису " #~ "отворени" #~ msgid "Temporary storage for deleted files" #~ msgstr "Привремено складиште за обрисане фајлове" #~ msgid "A common list of recently used documents" #~ msgstr "Листа недавно отворених докумената" #~ msgid "Delete GIMP's temporary folder" #~ msgstr "Обриши привремену фасциклу програма GIMP" #~ msgid "Delete the contents of Google Earth's cache and temporary files" #~ msgstr "Обриши кеш и привремене фајлове програма Google Earth" #~ msgid "Delete Java's cache" #~ msgstr "Обриши Java кеш" #~ msgid "" #~ "KDE cache including Konqueror. Often contains sparse files where the " #~ "apparent file size does not match the actual disk usage." #~ msgstr "" #~ "KDE кеш, укључујући и програм Konqueror. Често садржи раштркане фајлове где " #~ "привидна величина фајла није стварно заузет простор на диску." #~ msgid "Temporary files stored by KDE under the home directory" #~ msgstr "Привремени фајлови које KDE чува у корисниковом личном директоријуму" #~ msgid "KDE desktop environment" #~ msgstr "KDE радно окружење" #~ msgid "Cached registry and package data" #~ msgstr "Кеширани регистри и подаци о пакетима" #~ msgid "OpenOffice.org's list of recently used documents." #~ msgstr "Листа недавно коришћених докумената у програму OpenOffice.org" #~ msgid "OpenOffice.org office suite" #~ msgstr "OpenOffice.org канцеларијски алати" #~ msgid "Opera web browser" #~ msgstr "Веб читач Opera" #~ msgid "Delete RealPlayer's cookies" #~ msgstr "Обриши колачиће програма RealPlayer" #~ msgid "Delete the files in the rpmbuild build directory" #~ msgstr "Обриши фајлове у директоријуму rpmbuild за компајлирање" #~ msgid "Delete thumbnails in the thumbnails folder" #~ msgstr "Обриши мале прегледе слика" #~ msgid "" #~ "Delete ~/.viminfo which includes VIM file history, command history, and " #~ "buffers" #~ msgstr "" #~ "Обриши ~/.viminfo који садржи историју фајлова, команди и бафере програма VIM" #~ msgid "Delete the temporary files from winetricks" #~ msgstr "Обриши привремене фајлове програма winetricks" #~ msgid "Delete XChat logs and scrollback" #~ msgstr "Обриши дневник XChat и историјат" #~ msgid "Cannot import Python module sqlite3: Python 2.5 or later is required." #~ msgstr "" #~ "Не могу да увезем Python модул sqlite3: потребна је верзија Python-а 2.5 или " #~ "новија" #~ msgid "Overwrite files to hide contents (ineffective in some situations)" #~ msgstr "" #~ "Препиши фајлове како би сакрио садржај (нема ефекта у неким случајевима)" #~ msgid "" #~ "Are you sure you want to delete files according to the selected operations? " #~ "The actual files that will be deleted may have changed since you ran the " #~ "preview. Files cannot be undeleted." #~ msgstr "" #~ "Да ли сте сигурни да желите да обришете фајлове према назначеним " #~ "операцијама? Ти фајлови су можда промењени у међувремену. Фајлови се не могу " #~ "вратити." #, python-format #~ msgid "Exception while getting running operation '%s': '%s'" #~ msgstr "Јавио се изузетак приликом покретања операције „%s“: „%s“" #~ msgid "Special operation: " #~ msgstr "Специјална операција: " #~ msgid "Please wait. Scanning and deleting: " #~ msgstr "Молим сачекајте. Претражујем и бришем: " #~ msgid "Please wait. Scanning: " #~ msgstr "Молим сачекајте. Претражујем: " #~ msgid "Total size: " #~ msgstr "Укупна величина: " #~ msgid "Quit BleachBit" #~ msgstr "Заврши програм BleachBit" #~ msgid "Configure BleachBit" #~ msgstr "Подешавање програма BleachBit" #~ msgid "Show about" #~ msgstr "Приказује информације о програму" #~ msgid "BleachBit update is available" #~ msgstr "Доступно је ажурирање програма BleachBit" #~ msgid "Click 'Update BleachBit' for more information" #~ msgstr "Кликните на „Ажурирај програм BleachBit“ за више информација" bleachbit-2.0/po/bg.po0000644000175000017500000013515513245436307012761 0ustar hlehle# SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. # FIRST AUTHOR , YEAR. # msgid "" msgstr "" "Project-Id-Version: BleachBit\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2013-09-12 20:36-0600\n" "PO-Revision-Date: 2013-11-26 20:08+0000\n" "Last-Translator: Atanas Kovachki \n" "Language-Team: Svetoslav Stefanov \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=utf-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n != 1;\n" "X-Launchpad-Export-Date: 2014-01-24 03:57+0000\n" "X-Generator: Launchpad (build 16914)\n" "X-Poedit-Country: BULGARIA\n" "X-Poedit-Language: Bulgarian\n" "X-Poedit-SourceCharset: utf-8\n" #: ../cleaners/mc.xml ../cleaners/tortoisesvn.xml ../cleaners/vim.xml #: ../cleaners/safari.xml ../cleaners/links2.xml ../cleaners/seamonkey.xml #: ../cleaners/realplayer.xml ../cleaners/windows_defender.xml #: ../cleaners/d4x.xml ../cleaners/sqlite3.xml #: ../cleaners/internet_explorer.xml ../cleaners/libreoffice.xml #: ../cleaners/bash.xml ../cleaners/nautilus.xml ../cleaners/octave.xml #: ../cleaners/elinks.xml ../cleaners/chromium.xml #: ../cleaners/google_chrome.xml msgid "History" msgstr "История" #: ../cleaners/mc.xml ../cleaners/tortoisesvn.xml ../cleaners/links2.xml #: ../cleaners/realplayer.xml ../cleaners/d4x.xml ../cleaners/libreoffice.xml #: ../cleaners/nautilus.xml ../cleaners/gnome.xml ../bleachbit/Cleaner.py:291 #: ../bleachbit/Cleaner.py:362 ../bleachbit/Cleaner.py:371 msgid "Delete the usage history" msgstr "Изтриване на историята на използване" #: ../cleaners/gpodder.xml ../cleaners/hippo_opensim_viewer.xml #: ../cleaners/thumbnails.xml ../cleaners/safari.xml #: ../cleaners/transmission.xml ../cleaners/emesene.xml #: ../cleaners/liferea.xml ../cleaners/seamonkey.xml ../cleaners/vuze.xml #: ../cleaners/yahoo_messenger.xml ../cleaners/pidgin.xml #: ../cleaners/adobe_reader.xml ../cleaners/evolution.xml #: ../cleaners/tremulous.xml ../cleaners/libreoffice.xml ../cleaners/xine.xml #: ../cleaners/nexuiz.xml ../cleaners/exaile.xml ../cleaners/opera.xml #: ../cleaners/amsn.xml ../cleaners/gftp.xml ../cleaners/miro.xml #: ../cleaners/beagle.xml ../cleaners/kde.xml ../cleaners/epiphany.xml #: ../cleaners/flash.xml ../cleaners/secondlife_viewer.xml #: ../cleaners/java.xml ../cleaners/chromium.xml ../cleaners/audacious.xml #: ../cleaners/rhythmbox.xml ../cleaners/google_chrome.xml #: ../cleaners/thunderbird.xml ../bleachbit/Cleaner.py:187 #: ../bleachbit/Cleaner.py:311 ../bleachbit/Cleaner.py:390 msgid "Cache" msgstr "Кеш" #: ../cleaners/gpodder.xml ../cleaners/yum.xml #: ../cleaners/hippo_opensim_viewer.xml ../cleaners/thumbnails.xml #: ../cleaners/transmission.xml ../cleaners/windows_explorer.xml #: ../cleaners/liferea.xml ../cleaners/vuze.xml #: ../cleaners/yahoo_messenger.xml ../cleaners/pidgin.xml #: ../cleaners/adobe_reader.xml ../cleaners/evolution.xml #: ../cleaners/libreoffice.xml ../cleaners/apt.xml ../cleaners/xine.xml #: ../cleaners/nexuiz.xml ../cleaners/exaile.xml ../cleaners/amsn.xml #: ../cleaners/gftp.xml ../cleaners/miro.xml ../cleaners/beagle.xml #: ../cleaners/kde.xml ../cleaners/flash.xml ../cleaners/secondlife_viewer.xml #: ../cleaners/java.xml ../cleaners/audacious.xml ../cleaners/rhythmbox.xml #: ../bleachbit/Cleaner.py:311 ../bleachbit/Cleaner.py:390 #: ../bleachbit/Cleaner.py:418 ../bleachbit/Cleaner.py:420 msgid "Delete the cache" msgstr "Изтриване на кешираните данни" #. TRANSLATORS: Vacuum is a verb. The term is jargon #. from the SQLite database. Microsoft Access uses #. the term 'Compact Database' (which you may translate #. instead). Another synonym is 'defragment.' #: ../cleaners/gpodder.xml ../cleaners/yum.xml ../cleaners/safari.xml #: ../cleaners/liferea.xml ../cleaners/chromium.xml #: ../cleaners/google_chrome.xml ../cleaners/thunderbird.xml #: ../bleachbit/Action.py:334 ../bleachbit/Cleaner.py:198 #: ../bleachbit/Cleaner.py:301 msgid "Vacuum" msgstr "Вакуум" #: ../cleaners/gpodder.xml ../cleaners/yum.xml ../cleaners/safari.xml #: ../cleaners/liferea.xml ../cleaners/chromium.xml #: ../cleaners/google_chrome.xml ../cleaners/thunderbird.xml #: ../bleachbit/Cleaner.py:198 msgid "" "Clean database fragmentation to reduce space and improve speed without " "removing any data" msgstr "" "Изчистване фрагментацията на базата данни, за да се освободи място и да се " "подобри скоростта, без да се премахват никакви данни" #: ../cleaners/warzone2100.xml ../cleaners/hippo_opensim_viewer.xml #: ../cleaners/teamviewer.xml ../cleaners/realplayer.xml ../cleaners/vuze.xml #: ../cleaners/yahoo_messenger.xml ../cleaners/amule.xml #: ../cleaners/easytag.xml ../cleaners/exaile.xml ../cleaners/screenlets.xml #: ../cleaners/gftp.xml ../cleaners/miro.xml ../cleaners/audacious.xml #: ../bleachbit/Cleaner.py:416 msgid "Logs" msgstr "Дневници" #: ../cleaners/warzone2100.xml ../cleaners/hippo_opensim_viewer.xml #: ../cleaners/teamviewer.xml ../cleaners/realplayer.xml ../cleaners/vuze.xml #: ../cleaners/yahoo_messenger.xml ../cleaners/amule.xml #: ../cleaners/exaile.xml ../cleaners/screenlets.xml ../cleaners/gftp.xml #: ../cleaners/miro.xml ../cleaners/audacious.xml ../bleachbit/Cleaner.py:416 msgid "Delete the logs" msgstr "Изтриване на дневниците" #: ../cleaners/hippo_opensim_viewer.xml ../cleaners/gl-117.xml #: ../cleaners/tremulous.xml ../cleaners/nexuiz.xml #: ../cleaners/secondlife_viewer.xml msgid "Game" msgstr "Игра" #: ../cleaners/thumbnails.xml ../cleaners/windows_explorer.xml msgid "Thumbnails" msgstr "Миниатюри" #: ../cleaners/vim.xml ../cleaners/gedit.xml msgid "Editor" msgstr "Редактор" #: ../cleaners/vim.xml msgid "" "Delete ~/.viminfo which includes file history, command history, and buffers" msgstr "" "Изтриване на файла ~/.viminfo, съдържащ история на файловете, историята на " "командите и буфери" #: ../cleaners/filezilla.xml ../cleaners/transmission.xml ../cleaners/vuze.xml #: ../cleaners/amule.xml ../cleaners/gftp.xml msgid "File transfer client" msgstr "Клиент за трансфер на файлове" #: ../cleaners/filezilla.xml ../cleaners/paint.xml #: ../cleaners/windows_media_player.xml ../cleaners/windows_explorer.xml #: ../cleaners/teamviewer.xml ../cleaners/microsoft_office.xml #: ../cleaners/vlc.xml ../cleaners/adobe_reader.xml ../cleaners/winamp.xml #: ../cleaners/winzip.xml ../cleaners/winrar.xml ../cleaners/audacious.xml #: ../cleaners/wordpad.xml ../bleachbit/Cleaner.py:312 msgid "Most recently used" msgstr "Най-често употребявани" #: ../cleaners/filezilla.xml ../cleaners/windows_explorer.xml #: ../cleaners/gwenview.xml ../cleaners/adobe_reader.xml ../cleaners/gedit.xml #: ../cleaners/kde.xml ../cleaners/audacious.xml ../bleachbit/Cleaner.py:312 #: ../bleachbit/Cleaner.py:400 msgid "Delete the list of recently used documents" msgstr "Изтрива списъка с последно използвани документи" #: ../cleaners/skype.xml ../cleaners/xchat.xml ../cleaners/emesene.xml #: ../cleaners/seamonkey.xml ../cleaners/yahoo_messenger.xml #: ../cleaners/pidgin.xml ../cleaners/amsn.xml msgid "Chat logs" msgstr "Дневници на моментални съобщения" #: ../cleaners/skype.xml ../cleaners/xchat.xml ../cleaners/emesene.xml #: ../cleaners/seamonkey.xml ../cleaners/yahoo_messenger.xml #: ../cleaners/pidgin.xml ../cleaners/amsn.xml msgid "Delete the chat logs" msgstr "Изтриване дневниците на моменталните съобщения" #: ../cleaners/xchat.xml ../cleaners/emesene.xml #: ../cleaners/yahoo_messenger.xml ../cleaners/pidgin.xml ../cleaners/amsn.xml msgid "Chat client" msgstr "Клиент за моментални съобщения" #: ../cleaners/safari.xml ../cleaners/links2.xml ../cleaners/seamonkey.xml #: ../cleaners/konqueror.xml ../cleaners/internet_explorer.xml #: ../cleaners/opera.xml ../cleaners/epiphany.xml ../cleaners/elinks.xml #: ../cleaners/chromium.xml ../cleaners/google_chrome.xml #: ../bleachbit/Cleaner.py:210 msgid "Web browser" msgstr "Уеб четец" #: ../cleaners/safari.xml ../cleaners/seamonkey.xml ../cleaners/opera.xml #: ../cleaners/epiphany.xml ../cleaners/chromium.xml #: ../cleaners/google_chrome.xml ../cleaners/thunderbird.xml #: ../bleachbit/Cleaner.py:187 msgid "Delete the web cache, which reduces time to display revisited pages" msgstr "" "Изтриване на кешираните данни от уеб страници, които намаляват времето за " "зареждане на вече посещавани страници" #: ../cleaners/safari.xml ../cleaners/liferea.xml ../cleaners/seamonkey.xml #: ../cleaners/realplayer.xml ../cleaners/konqueror.xml #: ../cleaners/internet_explorer.xml ../cleaners/opera.xml #: ../cleaners/epiphany.xml ../cleaners/flash.xml ../cleaners/silverlight.xml #: ../cleaners/chromium.xml ../cleaners/google_chrome.xml #: ../cleaners/thunderbird.xml ../bleachbit/Cleaner.py:188 msgid "Cookies" msgstr "Бисквитки" #: ../cleaners/safari.xml ../cleaners/liferea.xml ../cleaners/seamonkey.xml #: ../cleaners/realplayer.xml ../cleaners/konqueror.xml #: ../cleaners/internet_explorer.xml ../cleaners/opera.xml #: ../cleaners/epiphany.xml ../cleaners/flash.xml ../cleaners/silverlight.xml #: ../cleaners/chromium.xml ../cleaners/google_chrome.xml #: ../cleaners/thunderbird.xml ../bleachbit/Cleaner.py:188 msgid "" "Delete cookies, which contain information such as web site preferences, " "authentication, and tracking identification" msgstr "" "Изтрий \"бисквитки\", които съдържат информация за потребителя или лични " "настройки на посещаваните сайтове." #: ../cleaners/safari.xml ../cleaners/konqueror.xml #: ../cleaners/internet_explorer.xml ../cleaners/opera.xml #: ../bleachbit/Cleaner.py:197 msgid "List of visited web pages" msgstr "Списък на посетените страници" #: ../cleaners/paint.xml ../cleaners/windows_media_player.xml #: ../cleaners/windows_explorer.xml ../cleaners/teamviewer.xml #: ../cleaners/microsoft_office.xml ../cleaners/vlc.xml ../cleaners/winamp.xml #: ../cleaners/winzip.xml ../cleaners/winrar.xml ../cleaners/wordpad.xml msgid "Delete the most recently used list" msgstr "Изтриване на списъка най-често употребявани" #: ../cleaners/emesene.xml msgid "Delete the avatars and emoticons cache" msgstr "Изтриване кеша на аватарите и емотиконите" #: ../cleaners/windows_explorer.xml ../cleaners/gwenview.xml #: ../cleaners/gedit.xml ../cleaners/kde.xml ../bleachbit/Cleaner.py:400 msgid "Recent documents list" msgstr "Списък с последно отваряни документи" #. In Windows 'Run' is the dialog in the Start menu #. In GNOME 'Run' is the dialog shown when typing ALT+F2' #: ../cleaners/windows_explorer.xml ../cleaners/gnome.xml msgid "Run" msgstr "Стартиране на програма" #: ../cleaners/windows_explorer.xml ../cleaners/opera.xml #: ../cleaners/gnome.xml ../cleaners/google_toolbar.xml msgid "Search history" msgstr "История на търсенията" #: ../cleaners/windows_explorer.xml ../cleaners/opera.xml #: ../cleaners/gnome.xml ../cleaners/google_toolbar.xml msgid "Delete the search history" msgstr "Изтрива историята на търсенията" #: ../cleaners/gl-117.xml ../cleaners/microsoft_office.xml #: ../cleaners/beagle.xml ../cleaners/secondlife_viewer.xml #: ../cleaners/x11.xml msgid "Debug logs" msgstr "Дневници с грешки" #: ../cleaners/gl-117.xml ../cleaners/microsoft_office.xml #: ../cleaners/easytag.xml ../cleaners/beagle.xml #: ../cleaners/secondlife_viewer.xml ../cleaners/x11.xml msgid "Delete the debug logs" msgstr "Изтриване на дневниците с грешки" #: ../cleaners/google_earth.xml ../cleaners/winetricks.xml #: ../cleaners/vuze.xml ../cleaners/adobe_reader.xml ../cleaners/amule.xml #: ../cleaners/wine.xml ../cleaners/internet_explorer.xml ../cleaners/gimp.xml #: ../cleaners/kde.xml ../cleaners/deepscan.xml ../bleachbit/Cleaner.py:443 msgid "Temporary files" msgstr "Временни файлове" #: ../cleaners/google_earth.xml ../cleaners/winetricks.xml #: ../cleaners/vuze.xml ../cleaners/adobe_reader.xml ../cleaners/amule.xml #: ../cleaners/wine.xml ../cleaners/internet_explorer.xml ../cleaners/gimp.xml #: ../cleaners/kde.xml ../cleaners/deepscan.xml ../bleachbit/Cleaner.py:443 msgid "Delete the temporary files" msgstr "Изтриване на временните файлове" #: ../cleaners/seamonkey.xml ../cleaners/opera.xml ../bleachbit/Cleaner.py:192 msgid "Download history" msgstr "История на изтеглянията" #: ../cleaners/seamonkey.xml ../cleaners/opera.xml ../bleachbit/Cleaner.py:192 msgid "List of files downloaded" msgstr "Списък с изтеглените файлове" #: ../cleaners/seamonkey.xml msgid "Delete the list of visited web pages" msgstr "Изтрива списъка с посещаваните уеб страници" #: ../cleaners/vuze.xml ../cleaners/deepscan.xml msgid "Backup files" msgstr "Резервни файлове" #: ../cleaners/vuze.xml ../cleaners/deepscan.xml msgid "Delete the backup files" msgstr "Изтрива резервните файлове" #: ../cleaners/konqueror.xml ../cleaners/opera.xml ../cleaners/chromium.xml msgid "Current session" msgstr "Текуща сесия" #: ../cleaners/konqueror.xml ../cleaners/opera.xml ../cleaners/chromium.xml msgid "Delete the current session" msgstr "Изтриване на текущата сесия" #: ../cleaners/konqueror.xml ../cleaners/opera.xml ../bleachbit/Cleaner.py:197 msgid "URL history" msgstr "История на посетените адреси" #: ../cleaners/microsoft_office.xml ../cleaners/libreoffice.xml #: ../bleachbit/Cleaner.py:322 msgid "Office suite" msgstr "Офис пакет" #: ../cleaners/windows_defender.xml ../cleaners/beagle.xml #: ../cleaners/thunderbird.xml ../cleaners/deepscan.xml #: ../bleachbit/Cleaner.py:189 msgid "Delete the files" msgstr "Изтриване на файловете" #: ../cleaners/tremulous.xml msgid "Delete the list of game servers" msgstr "Изтриване на списъка с игрови сървъри" #: ../cleaners/sqlite3.xml ../cleaners/bash.xml ../cleaners/octave.xml msgid "Delete the command history" msgstr "Изтриване историята на командите" #: ../cleaners/internet_explorer.xml ../cleaners/chromium.xml #: ../cleaners/google_chrome.xml ../bleachbit/Cleaner.py:193 msgid "Form history" msgstr "История на формите" #: ../cleaners/internet_explorer.xml ../bleachbit/Cleaner.py:193 msgid "A history of forms entered in web sites and in the Search bar" msgstr "История на формите, въведени в уеб страниците и в полето за търсене" #: ../cleaners/apt.xml msgid "Delete obsolete files" msgstr "Изтриване на непотребни файлове" #: ../cleaners/xine.xml ../cleaners/miro.xml ../cleaners/flash.xml msgid "Multimedia viewer" msgstr "Програма за преглеждане на мултимедийни файлове" #: ../cleaners/recoll.xml ../cleaners/beagle.xml msgid "Search tool" msgstr "Инструмент за търсене" #: ../cleaners/recoll.xml ../cleaners/beagle.xml ../cleaners/thunderbird.xml msgid "Index" msgstr "Индекс" #: ../cleaners/recoll.xml msgid "" "Delete the search index, a database of words and the files they contain" msgstr "" "Изтриване на индекса за търсене, база данни от думи и файлове, които те " "съдържат" #: ../cleaners/exaile.xml msgid "Downloaded podcasts" msgstr "Изтеглени подкасти" #: ../cleaners/exaile.xml msgid "Delete downloaded podcasts" msgstr "Изтрива изтеглените подкасти" #. TRANSLATORS: DOM = Document Object Model. #: ../cleaners/opera.xml ../cleaners/chromium.xml #: ../cleaners/google_chrome.xml ../bleachbit/Cleaner.py:191 msgid "DOM Storage" msgstr "Хранилище DOM" #: ../cleaners/opera.xml ../cleaners/chromium.xml #: ../cleaners/google_chrome.xml ../bleachbit/Cleaner.py:191 msgid "Delete HTML5 cookies" msgstr "Изтриване на HTML5 бисквитки" #: ../cleaners/nautilus.xml msgid "Custom folders will be reset." msgstr "Потребителските папки ще бъдат върнати към начално състояние" #: ../cleaners/screenlets.xml msgid "Widgets for the desktop" msgstr "Джаджи за работния плот" #: ../cleaners/epiphany.xml ../cleaners/chromium.xml #: ../cleaners/google_chrome.xml ../cleaners/thunderbird.xml #: ../bleachbit/Cleaner.py:196 msgid "Passwords" msgstr "Пароли" #: ../cleaners/epiphany.xml ../cleaners/chromium.xml #: ../cleaners/google_chrome.xml ../cleaners/thunderbird.xml #: ../bleachbit/Cleaner.py:196 msgid "" "A database of usernames and passwords as well as a list of sites that should " "not store passwords" msgstr "" "База данни с имена и пароли, както и списък със страници, които не бива да " "запазват пароли" #: ../cleaners/epiphany.xml msgid "Places" msgstr "Места" #: ../cleaners/epiphany.xml msgid "" "A database of URLs including bookmarks, favicons, and a history of visited " "web sites" msgstr "" "База данни от адреси, включваща отметки, уеб икони и история на посетените " "страници." #: ../cleaners/epiphany.xml msgid "This option deletes all bookmarks." msgstr "Тази опция изтрива всички запазени връзки." #: ../cleaners/elinks.xml msgid "Delete the cookies, visited URLs, and search history" msgstr "Изтриване на бисквитките, посетените адреси и историята на търсене" #: ../cleaners/chromium.xml ../cleaners/google_chrome.xml msgid "A history of forms entered in web sites" msgstr "История на записи, въвеждани в уеб страници" #: ../cleaners/chromium.xml ../cleaners/google_chrome.xml msgid "" "Delete the history which includes visited sites, downloads, and thumbnails" msgstr "" "Изтриване на историята, включващо посотени сайтове, изтегляния и миниатюри" #: ../cleaners/chromium.xml ../cleaners/google_chrome.xml msgid "Search engines" msgstr "Търсещи машини" #. 'Factory' means a search engine that is installed by default 'from the factory,' but this is different than a 'default search engine' https://lists.launchpad.net/launchpad-translators/msg00283.html #: ../cleaners/chromium.xml ../cleaners/google_chrome.xml msgid "" "Reset the search engine usage history and delete non-factory search engines, " "some of which are added automatically" msgstr "" "Изчистване на историята на търсене на търсещата машина и изтриване на " "нестандартните търсещи машини, някои от които са добавени автоматично" #: ../cleaners/google_chrome.xml msgid "Session" msgstr "Сесия" #: ../cleaners/google_chrome.xml msgid "Delete the current and last sessions" msgstr "Изтрива текущата и последната сесия" #: ../cleaners/deepscan.xml msgid "Deep scan" msgstr "Дълбоко сканиране" #: ../cleaners/deepscan.xml msgid "Inspect the preview for any files you want to keep." msgstr "Проверете и прегледайте всички файлове, които желаете да запазите." #: ../cleaners/deepscan.xml msgid "This option is slow." msgstr "Тази настройка е бавна" #: ../bleachbit.desktop msgid "Unnecessary file cleaner" msgstr "Изчистване на непотребни файлове" #: ../bleachbit.desktop msgid "Free space and maintain privacy" msgstr "Освободете място и запазете поверителност" #. TRANSLATORS: Parts of this file will be deleted #: ../bleachbit/Action.py:203 ../bleachbit/Action.py:216 #: ../bleachbit/Action.py:228 ../bleachbit/Action.py:241 #: ../bleachbit/Action.py:253 ../bleachbit/Command.py:183 #: ../bleachbit/Command.py:213 msgid "Clean file" msgstr "Изчистване на файл" #. TRANSLATORS: this is the context menu #: ../bleachbit/Action.py:307 ../bleachbit/GUI.py:587 msgid "Clean" msgstr "Почистване" #: ../bleachbit/Cleaner.py:189 msgid "Crash reports" msgstr "Отчети за грешки" #: ../bleachbit/Cleaner.py:194 msgid "Session restore" msgstr "Възстановяване на сесията" #: ../bleachbit/Cleaner.py:194 msgid "Loads the initial session after the browser closes or crashes" msgstr "Зарежда началната сесия след затваряне или срив на уеб четеца" #: ../bleachbit/Cleaner.py:195 msgid "Site preferences" msgstr "Предпочитания за уеб страници" #: ../bleachbit/Cleaner.py:195 msgid "Settings for individual sites" msgstr "Настройка за отделни уеб страници" #. TRANSLATORS: desktop entries are .desktop files in Linux tha #. make up the application menu (the menu that shows BleachBit, #. Firefox, and others. The .desktop files also associate file #. types, so clicking on an .html file in Nautilus brings up #. Firefox. #. More information: http://standards.freedesktop.org/menu-spec/latest/index.html#introduction #: ../bleachbit/Cleaner.py:389 msgid "Broken desktop files" msgstr "Развалени desktop файлове" #: ../bleachbit/Cleaner.py:389 msgid "Delete broken application menu entries and file associations" msgstr "" "Изтрива развалените стартери за програми от менюто и файлови асоциации" #. TRANSLATORS: Localizations are files supporting specific #. languages, so applications appear in Spanish, etc. #: ../bleachbit/Cleaner.py:393 msgid "Localizations" msgstr "Локализации" #: ../bleachbit/Cleaner.py:393 msgid "Delete files for unwanted languages" msgstr "Изтриване на файловете за непотребни езици" #: ../bleachbit/Cleaner.py:394 msgid "Configure this option in the preferences." msgstr "Настройте това в настройките." #. TRANSLATORS: 'Rotated logs' refers to old system log files. #. Linux systems often have a scheduled job to rotate the logs #. which means compress all except the newest log and then delete #. the oldest log. You could translate this 'old logs.' #: ../bleachbit/Cleaner.py:399 msgid "Rotated logs" msgstr "Стари логове" #: ../bleachbit/Cleaner.py:399 msgid "Delete old system logs" msgstr "Изтриване на стари системни доклади" #: ../bleachbit/Cleaner.py:401 msgid "Trash" msgstr "Кошче" #: ../bleachbit/Cleaner.py:401 msgid "Empty the trash" msgstr "Изпразване на кошчето" #: ../bleachbit/Cleaner.py:407 ../bleachbit/Cleaner.py:549 #: ../bleachbit/Worker.py:207 msgid "Memory" msgstr "Памет" #. TRANSLATORS: 'free' means 'unallocated' #: ../bleachbit/Cleaner.py:409 msgid "Wipe the swap and free memory" msgstr "Изчистване на swap и свободна памет" #: ../bleachbit/Cleaner.py:410 msgid "This option is experimental and may cause system problems." msgstr "" "Тази опция е експериментална и може да предизвика проблеми в системата." #: ../bleachbit/Cleaner.py:417 msgid "Memory dump" msgstr "Съдържание на паметта" #: ../bleachbit/Cleaner.py:417 msgid "Delete the file memory.dmp" msgstr "Изтриване на файла memory.dmp" #. TRANSLATORS: Prefetch is Microsoft Windows jargon. #: ../bleachbit/Cleaner.py:420 msgid "Prefetch" msgstr "Prefetch" #: ../bleachbit/Cleaner.py:421 msgid "Recycle bin" msgstr "Кошче" #: ../bleachbit/Cleaner.py:421 msgid "Empty the recycle bin" msgstr "Изпразване на кошчето" #. TRANSLATORS: 'Update' is a noun, and 'Update uninstallers' is an option to delete #. the uninstallers for software updates. #: ../bleachbit/Cleaner.py:424 msgid "Update uninstallers" msgstr "Деинсталатори на обновления" #: ../bleachbit/Cleaner.py:424 msgid "" "Delete uninstallers for Microsoft updates including hotfixes, service packs, " "and Internet Explorer updates" msgstr "" "Изтрий дейнсталатора за актуализациите на Microsoft, включително актуалните " "корекции, сервизни пакети и актуализациите на Internet Explorer" #: ../bleachbit/Cleaner.py:431 ../bleachbit/Cleaner.py:640 msgid "Clipboard" msgstr "Буфер за обмен" #: ../bleachbit/Cleaner.py:431 msgid "" "The desktop environment's clipboard used for copy and paste operations" msgstr "" "Буферът за обмен на работната среда, служещ за операциите копиране и " "поставяне" #. TRANSLATORS: "Custom" is an option allowing the user to specify which files and folders will be erased. #: ../bleachbit/Cleaner.py:437 ../bleachbit/GuiPreferences.py:60 msgid "Custom" msgstr "По избор" #: ../bleachbit/Cleaner.py:437 msgid "Delete user-specified files and folders" msgstr "Изтриване на избраните потребителски каталози и файлове" #. TRANSLATORS: 'free' means 'unallocated' #: ../bleachbit/Cleaner.py:439 msgid "Free disk space" msgstr "Свободно пространство" #. TRANSLATORS: 'free' means 'unallocated' #: ../bleachbit/Cleaner.py:441 msgid "Overwrite free disk space to hide deleted files" msgstr "" "Презаписване на свободното дисково пространство, за да се скрият изтритите " "файлове" #: ../bleachbit/Cleaner.py:442 msgid "This option is very slow." msgstr "Тази настройка е много бавна." #: ../bleachbit/Cleaner.py:446 msgid "The system in general" msgstr "Системата като цяло" #: ../bleachbit/Cleaner.py:452 ../bleachbit/Cleaner.py:741 msgid "System" msgstr "Система" #. TRANSLATORS: 'Free' means 'unallocated.' #. %s expands to a path such as C:\ or /tmp/ #: ../bleachbit/Cleaner.py:649 ../bleachbit/Cleaner.py:768 #, python-format msgid "Overwrite free disk space %s" msgstr "Презапиши свободното пространство %s" #. TRANSLATORS: %s expands to a drive letter such as C:\ or D:\ #: ../bleachbit/Cleaner.py:677 #, python-format msgid "Recycle bin %s" msgstr "Кошче %s" #: ../bleachbit/CLI.py:114 #, python-format msgid "not a valid cleaner: %s" msgstr "невалиден чистач: %s" #. TRANSLATORS: This is the command line usage. Don't translate #. %prog, but do translate usage, options, cleaner, and option. #. More information about the command line is here #. http://bleachbit.sourceforge.net/documentation/command-line #: ../bleachbit/CLI.py:141 msgid "usage: %prog [options] cleaner.option1 cleaner.option2" msgstr "употреба: %prog [опции] чистач.опция1 чистач.опция2" #: ../bleachbit/CLI.py:144 msgid "list cleaners" msgstr "чистачи на списъци" #. TRANSLATORS: predefined cleaners are for applications, such as Firefox and Flash. #. This is different than cleaning an arbitrary file, such as a spreadsheet on the desktop. #: ../bleachbit/CLI.py:148 msgid "run cleaners to delete files and make other permanent changes" msgstr "" #: ../bleachbit/CLI.py:150 msgid "shred specific files or folders" msgstr "" #: ../bleachbit/CLI.py:152 msgid "show system information" msgstr "показване на системна информация" #: ../bleachbit/CLI.py:153 msgid "launch the graphical interface" msgstr "стартирате на графичния интерфейс" #: ../bleachbit/CLI.py:155 msgid "do not prompt for administrator privileges" msgstr "не питай за администраторски права" #: ../bleachbit/CLI.py:160 msgid "preview files to be deleted and other changes" msgstr "прегледай файловете за изитриване и прилагане на други промени" #: ../bleachbit/CLI.py:162 msgid "use options set in the graphical interface" msgstr "използвайте зададените настройки в графичния интерфейс" #: ../bleachbit/CLI.py:165 msgid "update winapp2.ini, if a new version is available" msgstr "Актуализиране на winapp2.ini, ако има налична нова версия" #: ../bleachbit/CLI.py:167 msgid "output version information and exit" msgstr "извеждане на информация за версията и изход" #: ../bleachbit/CLI.py:169 msgid "overwrite files to hide contents" msgstr "презапиши файлове за да скриеш съдържанието" #. TRANSLATORS: This is the label in the log indicating was #. skipped because it matches the whitelist #: ../bleachbit/Command.py:46 msgid "Skip" msgstr "Пропускане" #. TRANSLATORS: This is the label in the log indicating will be #. deleted (for previews) or was actually deleted #: ../bleachbit/Command.py:73 msgid "Delete" msgstr "Изтриване" #. TRANSLATORS: The file will be deleted when the #. system reboots #: ../bleachbit/Command.py:93 msgid "Mark for deletion" msgstr "Маркирай за изтриване" #. TRANSLATORS: The file will be truncated to 0 bytes in length #: ../bleachbit/Command.py:250 msgid "Truncate" msgstr "Изпразни" #: ../bleachbit/Command.py:289 msgid "Delete registry key" msgstr "Изтрий регистърния ключ" #: ../bleachbit/GuiBasic.py:113 msgid "Delete confirmation" msgstr "Потвърждение за изтриване" #: ../bleachbit/GuiBasic.py:121 msgid "" "Are you sure you want to permanently delete files according to the selected " "operations? The actual files that will be deleted may have changed since " "you ran the preview." msgstr "" "Сигурни ли сте, че желаете окончателно да изтриете файловете, съгласно " "избраните операции? Те може да са се променили откакто вие сте ги прегледали." #: ../bleachbit/GuiBasic.py:123 msgid "Are you sure you want to permanently delete these files?" msgstr "Сигурни ли сте, че желаете окончателно да изтриете тези файлове?" #: ../bleachbit/GuiBasic.py:159 #, python-format msgid "" "Because you are running as root, please manually open this link in a web " "browser:\n" "%s" msgstr "" "Тъй като работите като root, моля отворете ръчно следната връзка в уеб " "четец:\n" "%s" #. TRANSLATORS: %s expands to bleachbit.sourceforge.net or similar #: ../bleachbit/GuiBasic.py:171 #, python-format msgid "Open web browser to %s?" msgstr "Зареждане на %s в уеб четеца?" #: ../bleachbit/GuiPreferences.py:53 ../bleachbit/GUI.py:639 msgid "Preferences" msgstr "Настройки" #: ../bleachbit/GuiPreferences.py:59 msgid "General" msgstr "Общи" #: ../bleachbit/GuiPreferences.py:61 msgid "Drives" msgstr "Устройства" #: ../bleachbit/GuiPreferences.py:63 msgid "Languages" msgstr "Езици" #: ../bleachbit/GuiPreferences.py:64 msgid "Whitelist" msgstr "Бял списък" #: ../bleachbit/GuiPreferences.py:107 msgid "Check periodically for software updates via the Internet" msgstr "Да проверява ли автоматично BleachBit за обновления през Интернет" #: ../bleachbit/GuiPreferences.py:110 msgid "" "If an update is found, you will be given the option to view information " "about it. Then, you may manually download and install the update." msgstr "" "Ако е намерено обновление, ще ви се даде възможност да видите информация за " "него. След това ще можете ръчно да изтеглите и инсталирате обновлението." #: ../bleachbit/GuiPreferences.py:116 msgid "Check for new beta releases" msgstr "Проверяване за нови бета версии" #: ../bleachbit/GuiPreferences.py:123 msgid "Download and update cleaners from community (winapp2.ini)" msgstr "" "Изтегляне и актуализиране на шаблоните за почистване от общността " "(winapp2.ini)" #. TRANSLATORS: Overwriting is the same as shredding. It is a way #. to prevent recovery of the data. You could also translate #. 'Shred files to prevent recovery.' #: ../bleachbit/GuiPreferences.py:134 msgid "Overwrite files to hide contents" msgstr "Презаписване на файловете за да се скрие съдържанието" #: ../bleachbit/GuiPreferences.py:137 msgid "" "Overwriting is ineffective on some file systems and with certain BleachBit " "operations. Overwriting is significantly slower." msgstr "" "Презаписването е неефективно при някои файлови системи и при определени " "операции на BleachBit. Презаписването е значително по-бавно." #: ../bleachbit/GuiPreferences.py:140 msgid "Start BleachBit with computer" msgstr "Стартиране на BleachBit с компютъра" #: ../bleachbit/GuiPreferences.py:151 ../bleachbit/GuiPreferences.py:282 #: ../bleachbit/GuiPreferences.py:328 ../bleachbit/GUI.py:548 msgid "Choose a folder" msgstr "Изберете папка" #. TRANSLATORS: 'free' means 'unallocated' #: ../bleachbit/GuiPreferences.py:176 msgid "" "Choose a writable folder for each drive for which to overwrite free space." msgstr "" "Изберете папка с права за запис за всяко устройтво, за което желаете да " "презапишете свободното пространство." #. TRANSLATORS: In the preferences dialog, this button adds a path to the list of paths #: ../bleachbit/GuiPreferences.py:197 msgctxt "button" msgid "Add" msgstr "Добавяне" #. TRANSLATORS: In the preferences dialog, this button removes a path from the list of paths #: ../bleachbit/GuiPreferences.py:200 ../bleachbit/GuiPreferences.py:420 msgctxt "button" msgid "Remove" msgstr "Премахване" #: ../bleachbit/GuiPreferences.py:225 msgid "All languages will be deleted except those checked." msgstr "Всички езици освен отметнатите ще бъдат изтрити." #: ../bleachbit/GuiPreferences.py:242 msgid "Preserve" msgstr "Запазване" #: ../bleachbit/GuiPreferences.py:246 msgid "Code" msgstr "Код" #: ../bleachbit/GuiPreferences.py:250 ../bleachbit/GUI.py:135 msgid "Name" msgstr "Име" #: ../bleachbit/GuiPreferences.py:268 ../bleachbit/GuiPreferences.py:314 msgid "Choose a file" msgstr "Избор на фаил" #: ../bleachbit/GuiPreferences.py:275 ../bleachbit/GuiPreferences.py:321 #: ../bleachbit/GuiPreferences.py:368 msgid "File" msgstr "Файл" #: ../bleachbit/GuiPreferences.py:290 ../bleachbit/GuiPreferences.py:336 #: ../bleachbit/GuiPreferences.py:370 msgid "Folder" msgstr "Папка" #. TRANSLATORS: "Paths" is used generically to refer to both files and folders #: ../bleachbit/GuiPreferences.py:378 msgid "Theses paths will not be deleted or modified." msgstr "Тези пътища няма да бъдат изтрити или променени." #: ../bleachbit/GuiPreferences.py:380 msgid "These locations can be selected for deletion." msgstr "Тези места могат да бъдат избрани за изтриване." #: ../bleachbit/GuiPreferences.py:388 msgid "Type" msgstr "Тип" #. TRANSLATORS: In the tree view "Path" is used generically to refer to a #. file, a folder, or a pattern describing either #: ../bleachbit/GuiPreferences.py:394 msgid "Path" msgstr "Път" #: ../bleachbit/GuiPreferences.py:406 msgctxt "button" msgid "Add file" msgstr "Добавяне на файл" #: ../bleachbit/GuiPreferences.py:413 msgctxt "button" msgid "Add folder" msgstr "Добавяне на папка" #: ../bleachbit/GUI.py:143 msgid "Active" msgstr "Активен" #. TRANSLATORS: %(cleaner) may be Firefox, System, etc. #. %(option) may be cache, logs, cookies, etc. #. %(warning) may be 'This option is really slow' #: ../bleachbit/GUI.py:175 #, python-format msgid "" "Warning regarding %(cleaner)s - %(option)s:\n" "\n" "%(warning)s" msgstr "" "Обърнете внимание на %(cleaner)s - %(option)s:\n" "\n" "%(warning)s" #: ../bleachbit/GUI.py:345 msgid "You must select an operation" msgstr "Трябва да изберете операция" #: ../bleachbit/GUI.py:368 ../bleachbit/GUI.py:383 msgid "Done." msgstr "Готово." #: ../bleachbit/GUI.py:397 msgid "Program to clean unnecessary files" msgstr "Програма за изчистване на непотребните файлове" #: ../bleachbit/GUI.py:402 msgid "" "GNU General Public License version 3 or later.\n" "See http://www.gnu.org/licenses/gpl-3.0.txt" msgstr "" "GNU General Public License версия 3 или по-късна.\n" "Вижте http://www.gnu.org/licenses/gpl-3.0.txt" #. TRANSLATORS: Maintain the names of translators here. #. Launchpad does this automatically for translations #. typed in Launchpad. This is a special string shown #. in the 'About' box. #: ../bleachbit/GUI.py:408 msgid "translator-credits" msgstr "" "Svetoslav Stefanov\n" "\n" "Launchpad Contributions:\n" " Atanas Kovachki https://launchpad.net/~zdar\n" " Svetoslav Stefanov https://launchpad.net/~svetlisashkov\n" " svilborg https://launchpad.net/~svilborg\n" " vlood https://launchpad.net/~vladimir-vassilev" #: ../bleachbit/GUI.py:421 msgid "System information" msgstr "Системна информация" #: ../bleachbit/GUI.py:495 msgid "Choose files to shred" msgstr "Избери файлове за раздробяване" #: ../bleachbit/GUI.py:498 msgid "Choose folder to shred" msgstr "Изберете папка за изтриване" #. TRANSLATORS: this is the context menu #: ../bleachbit/GUI.py:582 msgid "Preview" msgstr "Преглед" #: ../bleachbit/GUI.py:633 msgid "_Shred Files" msgstr "_Раздробяване на файлове" #: ../bleachbit/GUI.py:634 msgid "Sh_red Folders" msgstr "Премахване на директории (безвъзвратно)" #: ../bleachbit/GUI.py:635 msgid "_Wipe Free Space" msgstr "_Почисти свободното място" #: ../bleachbit/GUI.py:636 msgid "S_hred Settings and Quit" msgstr "И_зтриване на настройките и изход" #: ../bleachbit/GUI.py:637 msgid "_Quit" msgstr "_Изход" #: ../bleachbit/GUI.py:638 msgid "_File" msgstr "_Файл" #: ../bleachbit/GUI.py:640 msgid "_Edit" msgstr "_Редактиране" #: ../bleachbit/GUI.py:641 msgid "Help Contents" msgstr "Съдържание" #: ../bleachbit/GUI.py:643 msgid "_Release Notes" msgstr "_Бележки на изданието" #: ../bleachbit/GUI.py:645 msgid "_System Information" msgstr "_Системна информация" #: ../bleachbit/GUI.py:646 msgid "_About" msgstr "_Относно" #: ../bleachbit/GUI.py:647 msgid "_Help" msgstr "_Помощ" #. TRANSLATORS: This is the preview button on the main window. It previews changes. #: ../bleachbit/GUI.py:671 msgctxt "button" msgid "Preview" msgstr "Преглед" #: ../bleachbit/GUI.py:674 msgid "Preview files in the selected operations (without deleting any files)" msgstr "Преглед на файловете в избраните операции (без да се изтриват)" #. TRANSLATORS: This is the clean button on the main window. #. It makes permanent changes: usually deleting files, sometimes altering them. #: ../bleachbit/GUI.py:682 msgctxt "button" msgid "Clean" msgstr "Почистване" #: ../bleachbit/GUI.py:685 msgid "Clean files in the selected operations" msgstr "Почистване на файлове за избраните операции" #: ../bleachbit/GUI.py:774 msgid "Error when checking for updates: " msgstr "Грешка при проверка за обновления: " #: ../bleachbit/GUI.py:804 msgid "" "Error loading the SQLite module: the antivirus software may be blocking it." msgstr "" "Грешка при зареждане на модула SQLite: може да го блокира антивирусен " "софтуер." #: ../bleachbit/RecognizeCleanerML.py:62 msgid "Security warning" msgstr "Предупреждение за безопасност" #. TRANSLATORS: Cleaner definitions are XML data files that define #. which files will be cleaned. #: ../bleachbit/RecognizeCleanerML.py:74 msgid "" "These cleaner definitions are new or have changed. Malicious definitions can " "damage your system. If you do not trust these changes, delete the files or " "quit." msgstr "" "Тези настройки на чистача са нови или са променени. Злонамерените настройки " "могат да повредят системата ви. Ако нямате доверие на тези промени, изтрийте " "файловете или излезте." #. TRANSLATORS: This is the column label (header) in the tree view for the security dialog #: ../bleachbit/RecognizeCleanerML.py:87 msgctxt "column_label" msgid "Delete" msgstr "Изтриване" #. TRANSLATORS: This is the column label (header) in the tree view for the security dialog #: ../bleachbit/RecognizeCleanerML.py:90 msgctxt "column_label" msgid "Filename" msgstr "Име на файл" #: ../bleachbit/Unix.py:366 ../bleachbit/Unix.py:396 ../bleachbit/Unix.py:576 #, python-format msgid "Executable not found: %s" msgstr "Не е открит изпълнимият файл: %s" #. TRANSLATORS: %s expands to a name such as 'Firefox' or 'System'. #: ../bleachbit/Unix.py:573 ../bleachbit/Worker.py:131 #, python-format msgid "" "%s cannot be cleaned because it is currently running. Close it, and try " "again." msgstr "" "%s не може да бъде почистен, защото в момента работи. Затворете го и " "пробвайте отново." #: ../bleachbit/Update.py:73 msgid "New winapp2.ini was downloaded." msgstr "Новият winapp2.ini бе свален." #: ../bleachbit/Update.py:112 msgid "Update BleachBit" msgstr "Обновяване на BleachBit" #: ../bleachbit/Update.py:117 msgid "A new version is available." msgstr "Налична е нова версия." #. TRANSLATORS: %s expands to version such as '0.8.4' or '0.8.5beta' or similar #: ../bleachbit/Update.py:125 #, python-format msgid "Update to version %s" msgstr "Обновяване до версия %s" #. TRANSLATORS: This is cleaner name for cleaners imported from winapp2.ini #: ../bleachbit/Winapp.py:45 msgid "Applications" msgstr "Приложения" #. TRANSLATORS: This is cleaner name for cleaners imported from winapp2.ini #: ../bleachbit/Winapp.py:47 msgid "Internet" msgstr "Интернет" #. TRANSLATORS: This is cleaner name for cleaners imported from winapp2.ini #: ../bleachbit/Winapp.py:49 msgid "Multimedia" msgstr "Мултимедия" #. TRANSLATORS: This is cleaner name for cleaners imported from winapp2.ini #: ../bleachbit/Winapp.py:51 msgid "Utilities" msgstr "Инструменти" #: ../bleachbit/Winapp.py:65 msgid "Games" msgstr "Игри" #: ../bleachbit/Winapp.py:129 msgid "Imported from winapp2.ini" msgstr "Внесено от winapp2.ini" #. TRANSLATORS: This indicates an error. The special keyword #. %(operation)s will be replaced by 'firefox' or 'opera' or #. some other cleaner ID. The special keyword %(msg)s will be #. replaced by a message such as 'Permission denied.' #: ../bleachbit/Worker.py:71 #, python-format msgid "Exception while running operation '%(operation)s': '%(msg)s'" msgstr "Грешка при изпълнение на операцията '%(operation)s': '%(msg)s'" #. TRANSLATORS: 'free' means 'unallocated' #: ../bleachbit/Worker.py:205 msgid "Please wait. Wiping free disk space." msgstr "" "Моля, почакайте. Извършва се почистване на свободното дисково пространство." #. TRANSLATORS: %s is replaced with Firefox, System, etc. #: ../bleachbit/Worker.py:207 ../bleachbit/Worker.py:294 #, python-format msgid "Please wait. Cleaning %s." msgstr "Моля изчакайте. Изчистване на %s." #: ../bleachbit/Worker.py:217 #, python-format msgid "About %d minute remaining." msgid_plural "About %d minutes remaining." msgstr[0] "Остава още %d минута." msgstr[1] "Остават още %d минути." #. TRANSLATORS: This refers to disk space that was #. really recovered (in other words, not a preview) #: ../bleachbit/Worker.py:232 #, python-format msgid "Disk space recovered: %s" msgstr "Възстановено пространство: %s" #. TRANSLATORS: This refers to a preview (no real #. changes were made yet) #: ../bleachbit/Worker.py:236 #, python-format msgid "Disk space to be recovered: %s" msgstr "Пространство за възстановяване: %s" #. TRANSLATORS: This refers to the number of files really #. deleted (in other words, not a preview). #: ../bleachbit/Worker.py:241 #, python-format msgid "Files deleted: %d" msgstr "Изтрити файлове: %d" #. TRANSLATORS: This refers to the number of files that #. would be deleted (in other words, simply a preview). #: ../bleachbit/Worker.py:245 #, python-format msgid "Files to be deleted: %d" msgstr "Файлове за изтриване: %d" #: ../bleachbit/Worker.py:248 #, python-format msgid "Special operations: %d" msgstr "Специални операции: %d" #: ../bleachbit/Worker.py:251 #, python-format msgid "Errors: %d" msgstr "Грешки: %d" #. TRANSLATORS: The "deep scan" feature searches over broad #. areas of the file system such as the user's whole home directory #. or all the system executables. #: ../bleachbit/Worker.py:267 msgid "Please wait. Running deep scan." msgstr "Моля изчакайте. Извършва се дълбоко сканиране." #. TRANSLATORS: %s is replaced with Firefox, System, etc. #: ../bleachbit/Worker.py:297 #, python-format msgid "Please wait. Previewing %s." msgstr "Моля изчакайте. Преглеждане на %s." bleachbit-2.0/po/uk.po0000644000175000017500000015007213245436307013003 0ustar hlehle# Ukrainian translation for bleachbit # Copyright (c) 2009 Rosetta Contributors and Canonical Ltd 2009 # This file is distributed under the same license as the bleachbit package. # FIRST AUTHOR , 2009. # msgid "" msgstr "" "Project-Id-Version: bleachbit\n" "Report-Msgid-Bugs-To: FULL NAME \n" "POT-Creation-Date: 2016-06-24 19:52-0600\n" "PO-Revision-Date: 2016-09-05 06:05+0000\n" "Last-Translator: Maxim Nosovets \n" "Language-Team: Ukrainian \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=3; plural=n%10==1 && n%100!=11 ? 0 : n%10>=2 && " "n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2;\n" "X-Launchpad-Export-Date: 2016-09-06 02:56+0000\n" "X-Generator: Launchpad (build 18179)\n" #: ../cleaners/mc.xml ../cleaners/tortoisesvn.xml ../cleaners/vim.xml #: ../cleaners/safari.xml ../cleaners/links2.xml ../cleaners/seamonkey.xml #: ../cleaners/realplayer.xml ../cleaners/windows_defender.xml #: ../cleaners/d4x.xml ../cleaners/sqlite3.xml #: ../cleaners/internet_explorer.xml ../cleaners/libreoffice.xml #: ../cleaners/easytag.xml ../cleaners/bash.xml ../cleaners/nautilus.xml #: ../cleaners/octave.xml ../cleaners/elinks.xml ../cleaners/chromium.xml #: ../cleaners/google_chrome.xml msgid "History" msgstr "Історія" #: ../cleaners/mc.xml ../cleaners/tortoisesvn.xml ../cleaners/links2.xml #: ../cleaners/realplayer.xml ../cleaners/d4x.xml ../cleaners/libreoffice.xml #: ../cleaners/easytag.xml ../cleaners/nautilus.xml ../cleaners/gnome.xml #: ../bleachbit/Cleaner.py:351 ../bleachbit/Cleaner.py:425 #: ../bleachbit/Cleaner.py:434 msgid "Delete the usage history" msgstr "Вилучити історію використання" #: ../cleaners/gpodder.xml ../cleaners/hippo_opensim_viewer.xml #: ../cleaners/thumbnails.xml ../cleaners/safari.xml ../cleaners/emesene.xml #: ../cleaners/liferea.xml ../cleaners/seamonkey.xml ../cleaners/vuze.xml #: ../cleaners/yahoo_messenger.xml ../cleaners/pidgin.xml #: ../cleaners/adobe_reader.xml ../cleaners/evolution.xml #: ../cleaners/tremulous.xml ../cleaners/libreoffice.xml ../cleaners/xine.xml #: ../cleaners/nexuiz.xml ../cleaners/exaile.xml ../cleaners/opera.xml #: ../cleaners/amsn.xml ../cleaners/gftp.xml ../cleaners/miro.xml #: ../cleaners/beagle.xml ../cleaners/kde.xml ../cleaners/epiphany.xml #: ../cleaners/flash.xml ../cleaners/secondlife_viewer.xml ../cleaners/java.xml #: ../cleaners/chromium.xml ../cleaners/audacious.xml ../cleaners/rhythmbox.xml #: ../cleaners/google_chrome.xml ../cleaners/thunderbird.xml #: ../bleachbit/Cleaner.py:194 ../bleachbit/Cleaner.py:372 #: ../bleachbit/Cleaner.py:457 msgid "Cache" msgstr "Кеш" #: ../cleaners/gpodder.xml ../cleaners/yum.xml #: ../cleaners/hippo_opensim_viewer.xml ../cleaners/thumbnails.xml #: ../cleaners/windows_explorer.xml ../cleaners/liferea.xml #: ../cleaners/vuze.xml ../cleaners/yahoo_messenger.xml ../cleaners/pidgin.xml #: ../cleaners/adobe_reader.xml ../cleaners/evolution.xml #: ../cleaners/libreoffice.xml ../cleaners/apt.xml ../cleaners/xine.xml #: ../cleaners/nexuiz.xml ../cleaners/exaile.xml ../cleaners/amsn.xml #: ../cleaners/gftp.xml ../cleaners/miro.xml ../cleaners/beagle.xml #: ../cleaners/kde.xml ../cleaners/flash.xml ../cleaners/secondlife_viewer.xml #: ../cleaners/java.xml ../cleaners/audacious.xml ../cleaners/rhythmbox.xml #: ../bleachbit/Cleaner.py:372 ../bleachbit/Cleaner.py:457 #: ../bleachbit/Cleaner.py:491 ../bleachbit/Cleaner.py:493 msgid "Delete the cache" msgstr "Вилучити кеш" #. TRANSLATORS: Vacuum is a verb. The term is jargon #. from the SQLite database. Microsoft Access uses #. the term 'Compact Database' (which you may translate #. instead). Another synonym is 'defragment.' #: ../cleaners/gpodder.xml ../cleaners/yum.xml ../cleaners/safari.xml #: ../cleaners/liferea.xml ../cleaners/chromium.xml #: ../cleaners/google_chrome.xml ../cleaners/thunderbird.xml #: ../bleachbit/Cleaner.py:216 ../bleachbit/Cleaner.py:362 #: ../bleachbit/Action.py:419 msgid "Vacuum" msgstr "Оптимізація" #: ../cleaners/gpodder.xml ../cleaners/yum.xml ../cleaners/safari.xml #: ../cleaners/liferea.xml ../cleaners/chromium.xml #: ../cleaners/google_chrome.xml ../cleaners/thunderbird.xml #: ../bleachbit/Cleaner.py:217 msgid "" "Clean database fragmentation to reduce space and improve speed without " "removing any data" msgstr "" "Вилучити фрагментацію бази даних для зменшення зайнятим нею обсягом та " "збільшення швидкості без вилучення даних" #: ../cleaners/yum.xml ../cleaners/apt.xml msgid "Package manager" msgstr "Менеджер пакунків" #: ../cleaners/warzone2100.xml ../cleaners/hippo_opensim_viewer.xml #: ../cleaners/gl-117.xml ../cleaners/tremulous.xml ../cleaners/nexuiz.xml #: ../cleaners/secondlife_viewer.xml msgid "Game" msgstr "Гра" #: ../cleaners/warzone2100.xml ../cleaners/hippo_opensim_viewer.xml #: ../cleaners/teamviewer.xml ../cleaners/realplayer.xml ../cleaners/vuze.xml #: ../cleaners/yahoo_messenger.xml ../cleaners/amule.xml #: ../cleaners/easytag.xml ../cleaners/exaile.xml ../cleaners/screenlets.xml #: ../cleaners/gftp.xml ../cleaners/miro.xml ../cleaners/audacious.xml #: ../bleachbit/Cleaner.py:488 msgid "Logs" msgstr "Журнали подій" #: ../cleaners/warzone2100.xml ../cleaners/hippo_opensim_viewer.xml #: ../cleaners/teamviewer.xml ../cleaners/realplayer.xml ../cleaners/vuze.xml #: ../cleaners/yahoo_messenger.xml ../cleaners/amule.xml ../cleaners/exaile.xml #: ../cleaners/screenlets.xml ../cleaners/gftp.xml ../cleaners/miro.xml #: ../cleaners/audacious.xml ../bleachbit/Cleaner.py:488 msgid "Delete the logs" msgstr "Вилучити журнали" #: ../cleaners/thumbnails.xml ../cleaners/windows_explorer.xml msgid "Thumbnails" msgstr "Мініатюри" #: ../cleaners/thumbnails.xml msgid "Icons for files on the system" msgstr "Значки для файлів в системі" #: ../cleaners/vim.xml ../cleaners/gedit.xml msgid "Editor" msgstr "Редактор" #: ../cleaners/vim.xml msgid "" "Delete ~/.viminfo which includes file history, command history, and buffers" msgstr "" "Вилучити ~/.viminfo, включаючи історію файлів, історію команд та буфери" #: ../cleaners/filezilla.xml ../cleaners/transmission.xml ../cleaners/vuze.xml #: ../cleaners/amule.xml ../cleaners/gftp.xml msgid "File transfer client" msgstr "Клієнт для передавання файлів" #: ../cleaners/filezilla.xml ../cleaners/paint.xml #: ../cleaners/windows_media_player.xml ../cleaners/windows_explorer.xml #: ../cleaners/teamviewer.xml ../cleaners/microsoft_office.xml #: ../cleaners/vlc.xml ../cleaners/adobe_reader.xml ../cleaners/winamp.xml #: ../cleaners/winzip.xml ../cleaners/winrar.xml ../cleaners/audacious.xml #: ../cleaners/wordpad.xml ../bleachbit/Cleaner.py:373 msgid "Most recently used" msgstr "Використані нещодавно" #: ../cleaners/filezilla.xml ../cleaners/windows_explorer.xml #: ../cleaners/gwenview.xml ../cleaners/adobe_reader.xml ../cleaners/gedit.xml #: ../cleaners/kde.xml ../cleaners/audacious.xml ../bleachbit/Cleaner.py:374 #: ../bleachbit/Cleaner.py:471 msgid "Delete the list of recently used documents" msgstr "Вилучити список нещодавно використаних документів" #: ../cleaners/skype.xml ../cleaners/xchat.xml ../cleaners/emesene.xml #: ../cleaners/yahoo_messenger.xml ../cleaners/pidgin.xml ../cleaners/amsn.xml msgid "Chat client" msgstr "Клієнт для балачок" #: ../cleaners/skype.xml ../cleaners/xchat.xml ../cleaners/emesene.xml #: ../cleaners/seamonkey.xml ../cleaners/yahoo_messenger.xml #: ../cleaners/pidgin.xml ../cleaners/amsn.xml msgid "Chat logs" msgstr "Журнали балачок" #: ../cleaners/skype.xml ../cleaners/xchat.xml ../cleaners/emesene.xml #: ../cleaners/seamonkey.xml ../cleaners/yahoo_messenger.xml #: ../cleaners/pidgin.xml ../cleaners/amsn.xml msgid "Delete the chat logs" msgstr "Вилучити журнали балачок" #: ../cleaners/skype.xml msgid "Installers" msgstr "Встановлювачі" #: ../cleaners/skype.xml msgid "Delete cached patches and installers" msgstr "Видалити кешовані патчі та встановлювачі" #: ../cleaners/safari.xml ../cleaners/links2.xml ../cleaners/seamonkey.xml #: ../cleaners/konqueror.xml ../cleaners/internet_explorer.xml #: ../cleaners/opera.xml ../cleaners/epiphany.xml ../cleaners/elinks.xml #: ../cleaners/chromium.xml ../cleaners/google_chrome.xml #: ../bleachbit/Cleaner.py:228 msgid "Web browser" msgstr "Веб-переглядач" #: ../cleaners/safari.xml ../cleaners/seamonkey.xml ../cleaners/opera.xml #: ../cleaners/epiphany.xml ../cleaners/chromium.xml #: ../cleaners/google_chrome.xml ../cleaners/thunderbird.xml #: ../bleachbit/Cleaner.py:195 msgid "Delete the web cache, which reduces time to display revisited pages" msgstr "Вилучити кеш веб, який зменшує час показу відвіданих сторінок" #: ../cleaners/safari.xml ../cleaners/liferea.xml ../cleaners/seamonkey.xml #: ../cleaners/realplayer.xml ../cleaners/konqueror.xml #: ../cleaners/internet_explorer.xml ../cleaners/opera.xml #: ../cleaners/epiphany.xml ../cleaners/flash.xml ../cleaners/silverlight.xml #: ../cleaners/chromium.xml ../cleaners/google_chrome.xml #: ../cleaners/thunderbird.xml ../bleachbit/Cleaner.py:196 msgid "Cookies" msgstr "Куки" #: ../cleaners/safari.xml ../cleaners/liferea.xml ../cleaners/seamonkey.xml #: ../cleaners/realplayer.xml ../cleaners/konqueror.xml #: ../cleaners/internet_explorer.xml ../cleaners/opera.xml #: ../cleaners/epiphany.xml ../cleaners/flash.xml ../cleaners/silverlight.xml #: ../cleaners/chromium.xml ../cleaners/google_chrome.xml #: ../cleaners/thunderbird.xml ../bleachbit/Cleaner.py:197 msgid "" "Delete cookies, which contain information such as web site preferences, " "authentication, and tracking identification" msgstr "" "Вилучити куки, які містять інформацію, таку як налаштування веб-сайтів, " "автентифікацію та ідентифікацію стеження" #: ../cleaners/safari.xml ../cleaners/konqueror.xml #: ../cleaners/internet_explorer.xml ../cleaners/opera.xml #: ../bleachbit/Cleaner.py:215 msgid "List of visited web pages" msgstr "Список відвіданих сторінок у Інтернеті" #. Torrent software can block a list of IP addresses, such as those that may belong to malware or anti-piracy organizations #: ../cleaners/transmission.xml msgid "Blocklists" msgstr "Блокування реєстри" #: ../cleaners/transmission.xml ../cleaners/windows_defender.xml #: ../cleaners/beagle.xml ../cleaners/thunderbird.xml ../cleaners/deepscan.xml #: ../bleachbit/Cleaner.py:199 msgid "Delete the files" msgstr "Вилучення файлів" #: ../cleaners/transmission.xml msgid "Blocklists will need update to work." msgstr "" "Реєстри блокування потребуватимуть оновлення даних для працездатності" #: ../cleaners/transmission.xml msgid "Torrents" msgstr "Торренти" #: ../cleaners/transmission.xml msgid "Delete the torrents (just the metadata but not the files described)" msgstr "Видалити метадані перелічених торрентів" #: ../cleaners/transmission.xml msgid "Statistics" msgstr "Статистика" #: ../cleaners/transmission.xml msgid "Delete the file" msgstr "Видалити файл" #: ../cleaners/paint.xml ../cleaners/windows_media_player.xml #: ../cleaners/windows_explorer.xml ../cleaners/teamviewer.xml #: ../cleaners/microsoft_office.xml ../cleaners/vlc.xml ../cleaners/winamp.xml #: ../cleaners/winzip.xml ../cleaners/winrar.xml ../cleaners/wordpad.xml msgid "Delete the most recently used list" msgstr "Вилучити список найбільш використовуваних документів" #: ../cleaners/emesene.xml msgid "Delete the avatars and emoticons cache" msgstr "Вилучення кеш аватарок та смайликів" #: ../cleaners/windows_media_player.xml ../cleaners/realplayer.xml #: ../cleaners/vlc.xml ../cleaners/winamp.xml msgid "Media player" msgstr "Медіапрогравач" #: ../cleaners/windows_explorer.xml ../cleaners/nautilus.xml msgid "File manager" msgstr "Файловий менеджер" #: ../cleaners/windows_explorer.xml ../cleaners/gwenview.xml #: ../cleaners/gedit.xml ../cleaners/kde.xml ../bleachbit/Cleaner.py:470 msgid "Recent documents list" msgstr "Список нещодавно використаних документів" #. In Windows 'Run' is the dialog in the Start menu #. In GNOME 'Run' is the dialog shown when typing ALT+F2' #: ../cleaners/windows_explorer.xml ../cleaners/gnome.xml msgid "Run" msgstr "Виконати" #: ../cleaners/windows_explorer.xml ../cleaners/opera.xml ../cleaners/gnome.xml #: ../cleaners/google_toolbar.xml msgid "Search history" msgstr "Історія пошуку" #: ../cleaners/windows_explorer.xml ../cleaners/opera.xml ../cleaners/gnome.xml #: ../cleaners/google_toolbar.xml msgid "Delete the search history" msgstr "Вилучити історію пошуку" #: ../cleaners/windows_explorer.xml msgid "This will restart Windows Explorer." msgstr "Це перезавантажить Провідник Windows." #: ../cleaners/gl-117.xml ../cleaners/microsoft_office.xml #: ../cleaners/beagle.xml ../cleaners/secondlife_viewer.xml ../cleaners/x11.xml msgid "Debug logs" msgstr "Журнали відлагодження" #: ../cleaners/gl-117.xml ../cleaners/microsoft_office.xml #: ../cleaners/easytag.xml ../cleaners/beagle.xml #: ../cleaners/secondlife_viewer.xml ../cleaners/x11.xml msgid "Delete the debug logs" msgstr "Вилучити журнали відлагодження" #: ../cleaners/google_earth.xml ../cleaners/winetricks.xml ../cleaners/vuze.xml #: ../cleaners/adobe_reader.xml ../cleaners/amule.xml ../cleaners/wine.xml #: ../cleaners/internet_explorer.xml ../cleaners/gimp.xml ../cleaners/kde.xml #: ../cleaners/deepscan.xml ../bleachbit/Cleaner.py:522 msgid "Temporary files" msgstr "Тимчасові файли" #: ../cleaners/google_earth.xml ../cleaners/winetricks.xml ../cleaners/vuze.xml #: ../cleaners/adobe_reader.xml ../cleaners/amule.xml ../cleaners/wine.xml #: ../cleaners/internet_explorer.xml ../cleaners/gimp.xml ../cleaners/kde.xml #: ../cleaners/deepscan.xml ../bleachbit/Cleaner.py:522 msgid "Delete the temporary files" msgstr "Вилучити тимчасові файли" #: ../cleaners/seamonkey.xml ../cleaners/opera.xml ../bleachbit/Cleaner.py:203 msgid "Download history" msgstr "Історія завантажень" #: ../cleaners/seamonkey.xml ../cleaners/opera.xml ../bleachbit/Cleaner.py:203 msgid "List of files downloaded" msgstr "Список завантажених файлів" #: ../cleaners/seamonkey.xml msgid "Delete the list of visited web pages" msgstr "Вилучити список відвіданих веб-сторінок" #: ../cleaners/vuze.xml ../cleaners/deepscan.xml ../bleachbit/Cleaner.py:192 msgid "Backup files" msgstr "Резервні файли" #: ../cleaners/vuze.xml ../cleaners/deepscan.xml ../bleachbit/Cleaner.py:193 msgid "Delete the backup files" msgstr "Вилучити резервні файли" #: ../cleaners/konqueror.xml ../cleaners/opera.xml ../cleaners/chromium.xml msgid "Current session" msgstr "Поточна сесія" #: ../cleaners/konqueror.xml ../cleaners/opera.xml ../cleaners/chromium.xml msgid "Delete the current session" msgstr "Вилучити поточну сесію" #: ../cleaners/konqueror.xml ../cleaners/opera.xml ../bleachbit/Cleaner.py:215 msgid "URL history" msgstr "Історія посилань" #: ../cleaners/microsoft_office.xml ../cleaners/libreoffice.xml #: ../bleachbit/Cleaner.py:377 msgid "Office suite" msgstr "Офісний комплект" #: ../cleaners/windows_defender.xml msgid "Anti-virus" msgstr "Антивірус" #: ../cleaners/adobe_reader.xml msgid "Document viewer" msgstr "Переглядач документів" #: ../cleaners/evolution.xml ../cleaners/thunderbird.xml msgid "Email client" msgstr "Клієнт ел. пошти" #: ../cleaners/tremulous.xml msgid "Delete the list of game servers" msgstr "Вилучити список ігрових серверів" #: ../cleaners/sqlite3.xml ../cleaners/bash.xml ../cleaners/octave.xml msgid "Delete the command history" msgstr "Вилучити історію команд" #: ../cleaners/wine.xml msgid "Compatibility layer for Windows software" msgstr "Надлаштування сумісності для Windows програм" #: ../cleaners/internet_explorer.xml ../cleaners/chromium.xml #: ../cleaners/google_chrome.xml ../bleachbit/Cleaner.py:204 msgid "Form history" msgstr "Історія заповнення форм" #: ../cleaners/internet_explorer.xml ../bleachbit/Cleaner.py:205 msgid "A history of forms entered in web sites and in the Search bar" msgstr "Історія форм, заповнених на веб-сайтах та у пошуковій панелі" #. This software edits metadata tags, such as title and artist, in audio files #: ../cleaners/easytag.xml msgid "Audio files tagger" msgstr "Засіб редагування метаданих(тегів) звукових файлів" #: ../cleaners/apt.xml msgid "Delete obsolete files" msgstr "Вилучити застарілі файли" #: ../cleaners/apt.xml msgid "Package lists" msgstr "Реєстр пакунків" #: ../cleaners/xine.xml ../cleaners/miro.xml ../cleaners/flash.xml msgid "Multimedia viewer" msgstr "Програвач мультимедія" #: ../cleaners/recoll.xml ../cleaners/beagle.xml msgid "Search tool" msgstr "Інструмент пошуку" #: ../cleaners/recoll.xml ../cleaners/beagle.xml ../cleaners/thunderbird.xml msgid "Index" msgstr "Індекс" #: ../cleaners/recoll.xml msgid "" "Delete the search index, a database of words and the files they contain" msgstr "Вилучити пошуковий індекс, базу даних слів та файли, які їх містять" #: ../cleaners/gimp.xml msgid "Graphics editor" msgstr "Редактор зображень" #: ../cleaners/exaile.xml msgid "Downloaded podcasts" msgstr "Завантажені подкасти" #: ../cleaners/exaile.xml msgid "Delete downloaded podcasts" msgstr "Вилучити завантажені подкасти" #: ../cleaners/bash.xml msgid "Shell" msgstr "Командна оболонка" #. TRANSLATORS: DOM = Document Object Model. #: ../cleaners/opera.xml ../cleaners/epiphany.xml ../cleaners/chromium.xml #: ../cleaners/google_chrome.xml ../bleachbit/Cleaner.py:201 msgid "DOM Storage" msgstr "Сховище DOM" #: ../cleaners/opera.xml ../cleaners/epiphany.xml ../cleaners/chromium.xml #: ../cleaners/google_chrome.xml ../bleachbit/Cleaner.py:201 msgid "Delete HTML5 cookies" msgstr "Вилучити куки HTML5" #: ../cleaners/opera.xml ../cleaners/epiphany.xml ../cleaners/chromium.xml #: ../cleaners/google_chrome.xml ../cleaners/thunderbird.xml #: ../bleachbit/Cleaner.py:210 msgid "Passwords" msgstr "Паролі" #: ../cleaners/opera.xml ../cleaners/epiphany.xml ../cleaners/chromium.xml #: ../cleaners/google_chrome.xml ../cleaners/thunderbird.xml #: ../bleachbit/Cleaner.py:211 msgid "" "A database of usernames and passwords as well as a list of sites that should " "not store passwords" msgstr "" "База даних імен користувачів та паролів, а також список сайтів, для яких не " "потрібно зберігати паролі" #: ../cleaners/opera.xml ../cleaners/epiphany.xml ../cleaners/chromium.xml #: ../cleaners/google_chrome.xml ../cleaners/thunderbird.xml #: ../bleachbit/Cleaner.py:213 msgid "This option will delete your saved passwords." msgstr "Цей засіб видалить збережені паролі" #: ../cleaners/nautilus.xml msgid "Custom folders will be reset." msgstr "Власні теки будуть скинуті" #: ../cleaners/gnome.xml ../cleaners/kde.xml msgid "Desktop environment" msgstr "Середовище робочого столу" #: ../cleaners/screenlets.xml msgid "Widgets for the desktop" msgstr "Віджети для стільниці" #: ../cleaners/epiphany.xml msgid "Places" msgstr "Місця" #: ../cleaners/epiphany.xml msgid "" "A database of URLs including bookmarks, favicons, and a history of visited " "web sites" msgstr "" "База даних посилань, яка включає закладки, значки та історію відвідування " "веб-сайтів" #: ../cleaners/epiphany.xml msgid "This option deletes all bookmarks." msgstr "Ця опція вилучає усі закладки." #: ../cleaners/winrar.xml msgid "File archiver" msgstr "Архіватор" #: ../cleaners/elinks.xml msgid "Delete the cookies, visited URLs, and search history" msgstr "Вилучити куки, відвідані посилання та історію пошуку" #: ../cleaners/chromium.xml ../cleaners/google_chrome.xml msgid "A history of forms entered in web sites" msgstr "Історія форм на веб-сайтах" #: ../cleaners/chromium.xml ../cleaners/google_chrome.xml msgid "" "Delete the history which includes visited sites, downloads, and thumbnails" msgstr "" "Вилучення журналу, який включає відвідані сайти, завантаження та мініатюри" #: ../cleaners/chromium.xml ../cleaners/google_chrome.xml msgid "Search engines" msgstr "Пошукові системи" #. 'Factory' means a search engine that is installed by default 'from the factory,' but this is different than a 'default search engine' https://lists.launchpad.net/launchpad-translators/msg00283.html #: ../cleaners/chromium.xml ../cleaners/google_chrome.xml msgid "" "Reset the search engine usage history and delete non-factory search engines, " "some of which are added automatically" msgstr "" "Очистити історію використання пошукових систем та вилучити пошукові системи, " "які були додані вручну або автоматично" #: ../cleaners/audacious.xml msgid "Audio player" msgstr "Аудіопрогравач" #: ../cleaners/rhythmbox.xml msgid "Database" msgstr "База даних" #: ../cleaners/rhythmbox.xml msgid "" "Delete the database, which contain information such as play count and last " "played" msgstr "" "Видалити базу даних, що містить інформацію про кількість програвання та " "останній програний трек" #: ../cleaners/google_chrome.xml msgid "Session" msgstr "Сеанс" #: ../cleaners/google_chrome.xml msgid "Delete the current and last sessions" msgstr "Вилучити поточний та останній сеанси" #: ../cleaners/x11.xml msgid "Windowing system" msgstr "Вікнотворча система" #: ../cleaners/wordpad.xml msgid "Word processor" msgstr "Засіб обробки текстів" #: ../cleaners/deepscan.xml msgid "Deep scan" msgstr "Глибоке сканування" #: ../cleaners/deepscan.xml msgid "Clean files widely scattered across the disk" msgstr "Чистити файли дуже розрізнені по диску" #: ../cleaners/deepscan.xml msgid "Inspect the preview for any files you want to keep." msgstr "Перевірте перегляд будь-яких файлів, які ви хотіли б зберегти." #: ../cleaners/deepscan.xml msgid "This option is slow." msgstr "Це дуже повільна опція" #: ../bleachbit.desktop msgid "Unnecessary file cleaner" msgstr "Необов'язкова чистка файлів" #: ../bleachbit.desktop msgid "Free space and maintain privacy" msgstr "Вільний простір та керування приватністю" #. TRANSLATORS: This is the label in the log indicating was #. skipped because it matches the whitelist #: ../bleachbit/Command.py:44 msgid "Skip" msgstr "Пропустити" #. TRANSLATORS: This is the label in the log indicating will be #. deleted (for previews) or was actually deleted #: ../bleachbit/Command.py:74 msgid "Delete" msgstr "Вилучити" #. TRANSLATORS: The file will be deleted when the #. system reboots #: ../bleachbit/Command.py:95 msgid "Mark for deletion" msgstr "Позначити для вилучення" #. TRANSLATORS: Parts of this file will be deleted #: ../bleachbit/Command.py:192 ../bleachbit/Command.py:226 #: ../bleachbit/Action.py:256 ../bleachbit/Action.py:269 #: ../bleachbit/Action.py:282 ../bleachbit/Action.py:295 #: ../bleachbit/Action.py:308 msgid "Clean file" msgstr "Очистити файл" #. TRANSLATORS: The file will be truncated to 0 bytes in length #: ../bleachbit/Command.py:268 msgid "Truncate" msgstr "Спустошити" #: ../bleachbit/Command.py:311 msgid "Delete registry key" msgstr "Знищити ключ реєстру" #: ../bleachbit/Unix.py:340 ../bleachbit/Unix.py:370 ../bleachbit/Unix.py:574 #, python-format msgid "Executable not found: %s" msgstr "Виконуваний файл не знайдено: %s" #. TRANSLATORS: %s expands to a name such as 'Firefox' or 'System'. #: ../bleachbit/Unix.py:571 ../bleachbit/Worker.py:141 #, python-format msgid "" "%s cannot be cleaned because it is currently running. Close it, and try " "again." msgstr "" "Неможливо очистити програму %s, бо її запущено зараз. Завершіть її роботу " "та спробуйте ще раз." #: ../bleachbit/GuiBasic.py:112 msgid "Delete confirmation" msgstr "Підтвердити вилучення" #: ../bleachbit/GuiBasic.py:122 msgid "" "Are you sure you want to permanently delete files according to the selected " "operations? The actual files that will be deleted may have changed since " "you ran the preview." msgstr "" "Ви справді впевнені, що ви хочете назавжди вилучити файли згідно обраних " "операцій? Дані файли, які будуть вилучені могли бути змінені з моменту " "вашого останнього їх перегляду." #: ../bleachbit/GuiBasic.py:125 msgid "Are you sure you want to permanently delete these files?" msgstr "Ви справді впевнені, що ви хочете назавжди вилучити файли?" #: ../bleachbit/GuiBasic.py:162 #, python-format msgid "" "Because you are running as root, please manually open this link in a web " "browser:\n" "%s" msgstr "" "Відкрийте вручну це посилання у веб-браузері , бо ви працюєте з правами " "адміністратора:\n" "%s" #. TRANSLATORS: %s expands to www.bleachbit.org or similar #: ../bleachbit/GuiBasic.py:174 #, python-format msgid "Open web browser to %s?" msgstr "Відкрити сторінку %s у браузері?" #. TRANSLATORS: This is cleaner name for cleaners imported from winapp2.ini #: ../bleachbit/Winapp.py:44 msgid "Applications" msgstr "Додатки" #. TRANSLATORS: This is cleaner name for cleaners imported #. from winapp2.ini #: ../bleachbit/Winapp.py:47 msgid "Internet" msgstr "Інтернет" #. TRANSLATORS: This is cleaner name for cleaners imported #. from winapp2.ini #: ../bleachbit/Winapp.py:50 msgid "Multimedia" msgstr "Мультимедіа" #. TRANSLATORS: This is cleaner name for cleaners imported #. from winapp2.ini #: ../bleachbit/Winapp.py:53 msgid "Utilities" msgstr "Інструменти" #: ../bleachbit/Winapp.py:64 msgid "Games" msgstr "Ігри" #: ../bleachbit/Winapp.py:165 msgid "Imported from winapp2.ini" msgstr "Імпортовано з winapp2.ini" #: ../bleachbit/Cleaner.py:199 msgid "Crash reports" msgstr "Аварійні звіти" #: ../bleachbit/Cleaner.py:206 msgid "Session restore" msgstr "Відновлення сеансу" #: ../bleachbit/Cleaner.py:207 msgid "Loads the initial session after the browser closes or crashes" msgstr "Завантажує вихідний сеанс після закриття чи краху браузера" #: ../bleachbit/Cleaner.py:209 msgid "Site preferences" msgstr "Налаштування сайту" #: ../bleachbit/Cleaner.py:209 msgid "Settings for individual sites" msgstr "Налаштування для окремих сайтів" #. TRANSLATORS: desktop entries are .desktop files in Linux that #. make up the application menu (the menu that shows BleachBit, #. Firefox, and others. The .desktop files also associate file #. types, so clicking on an .html file in Nautilus brings up #. Firefox. #. More information: #. http://standards.freedesktop.org/menu-spec/latest/index.html#introduction #: ../bleachbit/Cleaner.py:455 msgid "Broken desktop files" msgstr "Пошкоджені файли стільниці" #: ../bleachbit/Cleaner.py:456 msgid "Delete broken application menu entries and file associations" msgstr "Вилучити пошкоджені пункти меню програм та асоціації файлів" #. TRANSLATORS: Localizations are files supporting specific #. languages, so applications appear in Spanish, etc. #: ../bleachbit/Cleaner.py:460 msgid "Localizations" msgstr "Локалізації" #: ../bleachbit/Cleaner.py:461 msgid "Delete files for unwanted languages" msgstr "Вилучити файли для непотрібних мов" #: ../bleachbit/Cleaner.py:463 msgid "Configure this option in the preferences." msgstr "Відкоригувати цю опцію у налаштуваннях" #: ../bleachbit/Cleaner.py:469 msgid "Rotated logs" msgstr "Архівні журнали" #: ../bleachbit/Cleaner.py:469 msgid "Delete old system logs" msgstr "Вилучити старі системні журнали" #: ../bleachbit/Cleaner.py:472 msgid "Trash" msgstr "Смітник" #: ../bleachbit/Cleaner.py:472 msgid "Empty the trash" msgstr "Очистити смітник" #: ../bleachbit/Cleaner.py:478 ../bleachbit/Cleaner.py:629 #: ../bleachbit/Worker.py:189 msgid "Memory" msgstr "Пам'ять" #. TRANSLATORS: 'free' means 'unallocated' #: ../bleachbit/Cleaner.py:480 msgid "Wipe the swap and free memory" msgstr "Витерти простір довантаження та нерозподілену пам'ять" #: ../bleachbit/Cleaner.py:482 msgid "This option is experimental and may cause system problems." msgstr "" "Це налаштування є експериментальним та може викликати певні проблеми з " "роботою системи" #: ../bleachbit/Cleaner.py:490 msgid "Memory dump" msgstr "Дамп пам'яті" #: ../bleachbit/Cleaner.py:490 msgid "Delete the file memory.dmp" msgstr "Вилучити файл memory.dmp" #. TRANSLATORS: Prefetch is Microsoft Windows jargon. #: ../bleachbit/Cleaner.py:493 msgid "Prefetch" msgstr "Вибірка з випередженням" #: ../bleachbit/Cleaner.py:495 msgid "Recycle bin" msgstr "Кошик" #: ../bleachbit/Cleaner.py:495 msgid "Empty the recycle bin" msgstr "Очистити кошик" #. TRANSLATORS: 'Update' is a noun, and 'Update uninstallers' is an option to delete #. the uninstallers for software updates. #: ../bleachbit/Cleaner.py:498 msgid "Update uninstallers" msgstr "Видалення деінсталяторів оновлень" #: ../bleachbit/Cleaner.py:499 msgid "" "Delete uninstallers for Microsoft updates including hotfixes, service packs, " "and Internet Explorer updates" msgstr "" "Вилучити деінсталятори оновлень Microsoft, включаючи виправлення, пакунки " "оновлень та оновлення Internet Explorer" #: ../bleachbit/Cleaner.py:506 ../bleachbit/Cleaner.py:722 msgid "Clipboard" msgstr "Буфер обміну" #: ../bleachbit/Cleaner.py:507 msgid "" "The desktop environment's clipboard used for copy and paste operations" msgstr "" "Буфер обміну середовища стільниці, що використовується для операцій " "копіювання та вставлення" #. TRANSLATORS: "Custom" is an option allowing the user to specify which #. files and folders will be erased. #: ../bleachbit/Cleaner.py:514 ../bleachbit/GuiPreferences.py:63 msgid "Custom" msgstr "По вибору" #: ../bleachbit/Cleaner.py:515 msgid "Delete user-specified files and folders" msgstr "Вилучення обраних користувачем каталогів та файлів" #. TRANSLATORS: 'free' means 'unallocated' #: ../bleachbit/Cleaner.py:517 msgid "Free disk space" msgstr "Вільний дисковий простір" #. TRANSLATORS: 'free' means 'unallocated' #: ../bleachbit/Cleaner.py:519 msgid "Overwrite free disk space to hide deleted files" msgstr "" "Перезаписувати вільний дисковий простір для приховування вилучених файлів" #: ../bleachbit/Cleaner.py:520 msgid "This option is very slow." msgstr "Цей варіант дуже повільний." #: ../bleachbit/Cleaner.py:524 msgid "The system in general" msgstr "Система вцілому" #: ../bleachbit/Cleaner.py:526 ../bleachbit/Cleaner.py:846 msgid "System" msgstr "Система" #. TRANSLATORS: 'Free' means 'unallocated.' #. %s expands to a path such as C:\ or /tmp/ #: ../bleachbit/Cleaner.py:730 ../bleachbit/Cleaner.py:879 #, python-format msgid "Overwrite free disk space %s" msgstr "Перезаписувати вільний дисковий простір %s" #: ../bleachbit/GuiPreferences.py:55 ../bleachbit/GUI.py:706 msgid "Preferences" msgstr "Налаштування" #: ../bleachbit/GuiPreferences.py:61 msgid "General" msgstr "Загальні" #: ../bleachbit/GuiPreferences.py:64 msgid "Drives" msgstr "Пристрої" #: ../bleachbit/GuiPreferences.py:67 msgid "Languages" msgstr "Мови" #: ../bleachbit/GuiPreferences.py:69 msgid "Whitelist" msgstr "Білий список" #: ../bleachbit/GuiPreferences.py:114 msgid "Check periodically for software updates via the Internet" msgstr "Періодично перевіряти оновлення програми через Інтернет." #: ../bleachbit/GuiPreferences.py:119 msgid "" "If an update is found, you will be given the option to view information " "about it. Then, you may manually download and install the update." msgstr "" "Якщо буде виявлено оновлення, то ви отримаєте інформацію про нього. Потім ви " "можете завантажити його вручну та встановити." #: ../bleachbit/GuiPreferences.py:125 msgid "Check for new beta releases" msgstr "Перевіряти наявність нових бета версій" #: ../bleachbit/GuiPreferences.py:134 msgid "Download and update cleaners from community (winapp2.ini)" msgstr "Завантажити та оновити очищувачі зі спільноти (winapp2.ini)" #. TRANSLATORS: This means to hide cleaners which would do #. nothing. For example, if Firefox were never used on #. this system, this option would hide Firefox to simplify #. the list of cleaners. #: ../bleachbit/GuiPreferences.py:148 msgid "Hide irrelevant cleaners" msgstr "Сховати незначущі очищувачі" #. TRANSLATORS: Overwriting is the same as shredding. It is a way #. to prevent recovery of the data. You could also translate #. 'Shred files to prevent recovery.' #: ../bleachbit/GuiPreferences.py:156 msgid "Overwrite files to hide contents" msgstr "Перезаписувати файли для приховування змісту" #: ../bleachbit/GuiPreferences.py:160 msgid "" "Overwriting is ineffective on some file systems and with certain BleachBit " "operations. Overwriting is significantly slower." msgstr "" "Перезапис може бути неефективним на деяких файлових системах і для деяких " "операцій BleachBit. Перезапис значно повільніший." #: ../bleachbit/GuiPreferences.py:163 msgid "Start BleachBit with computer" msgstr "Завантажувати BleachBit автоматично" #: ../bleachbit/GuiPreferences.py:169 msgid "Exit after cleaning" msgstr "Вийти після очищення" #: ../bleachbit/GuiPreferences.py:175 msgid "Confirm before delete" msgstr "Запитати перед видаленням" #: ../bleachbit/GuiPreferences.py:183 msgid "Use IEC sizes (1 KiB = 1024 bytes) instead of SI (1 kB = 1000 bytes)" msgstr "" "Використовувати IEC розміри (1 КиБ = 1024 байта) замість SI (1 кБ = 1000 " "байт)" #: ../bleachbit/GuiPreferences.py:194 ../bleachbit/GuiPreferences.py:323 #: ../bleachbit/GuiPreferences.py:364 ../bleachbit/GUI.py:592 msgid "Choose a folder" msgstr "Оберіть теку" #: ../bleachbit/GuiPreferences.py:218 msgid "" "Choose a writable folder for each drive for which to overwrite free space." msgstr "" "Оберіть перезаписувану теку для кожного диску, щоб перезаписати вільний " "простір." #. TRANSLATORS: In the preferences dialog, this button adds a path to #. the list of paths #: ../bleachbit/GuiPreferences.py:240 msgctxt "button" msgid "Add" msgstr "Додати" #. TRANSLATORS: In the preferences dialog, this button removes a path #. from the list of paths #: ../bleachbit/GuiPreferences.py:244 ../bleachbit/GuiPreferences.py:455 msgctxt "button" msgid "Remove" msgstr "Вилучити" #: ../bleachbit/GuiPreferences.py:269 msgid "All languages will be deleted except those checked." msgstr "Усі мови будуть вилучені крім тих, що тут зазначені." #: ../bleachbit/GuiPreferences.py:285 msgid "Preserve" msgstr "Зберігати" #: ../bleachbit/GuiPreferences.py:289 msgid "Code" msgstr "Код" #: ../bleachbit/GuiPreferences.py:293 ../bleachbit/GUI.py:135 msgid "Name" msgstr "Назва" #: ../bleachbit/GuiPreferences.py:310 ../bleachbit/GuiPreferences.py:351 msgid "Choose a file" msgstr "Обрати файл" #: ../bleachbit/GuiPreferences.py:317 ../bleachbit/GuiPreferences.py:358 #: ../bleachbit/GuiPreferences.py:402 msgid "File" msgstr "Файл" #: ../bleachbit/GuiPreferences.py:331 ../bleachbit/GuiPreferences.py:372 #: ../bleachbit/GuiPreferences.py:404 msgid "Folder" msgstr "Тека" #: ../bleachbit/GuiPreferences.py:414 msgid "Theses paths will not be deleted or modified." msgstr "Ці шляхи не будуть вилучені або змінені." #: ../bleachbit/GuiPreferences.py:417 msgid "These locations can be selected for deletion." msgstr "Ці розташування можуть бути обрані для вилучення" #: ../bleachbit/GuiPreferences.py:425 msgid "Type" msgstr "Тип" #. TRANSLATORS: In the tree view "Path" is used generically to refer to a #. file, a folder, or a pattern describing either #: ../bleachbit/GuiPreferences.py:431 msgid "Path" msgstr "Шлях" #: ../bleachbit/GuiPreferences.py:443 msgctxt "button" msgid "Add file" msgstr "Додати файл" #: ../bleachbit/GuiPreferences.py:449 msgctxt "button" msgid "Add folder" msgstr "Додати теку" #: ../bleachbit/RecognizeCleanerML.py:57 msgid "Security warning" msgstr "Повідомлення безпеки" #: ../bleachbit/RecognizeCleanerML.py:70 msgid "" "These cleaner definitions are new or have changed. Malicious definitions can " "damage your system. If you do not trust these changes, delete the files or " "quit." msgstr "" "Дані вказівки очищувача є новими або вони змінені. Шкідливі вказівки можуть " "пошкодити вашу систему. Якщо ви не довіряєте цим змінам, вилучіть дані файли " "або вийдіть з програми." #: ../bleachbit/RecognizeCleanerML.py:85 msgctxt "column_label" msgid "Delete" msgstr "Вилучити" #: ../bleachbit/RecognizeCleanerML.py:90 msgctxt "column_label" msgid "Filename" msgstr "Назва файлу" #. TRANSLATORS: This indicates an error. The special keyword #. %(operation)s will be replaced by 'firefox' or 'opera' or #. some other cleaner ID. The special keyword %(msg)s will be #. replaced by a message such as 'Permission denied.' #: ../bleachbit/Worker.py:74 #, python-format msgid "Exception while running operation '%(operation)s': '%(msg)s'" msgstr "Помилка під час виконання операції '%(operation)s': '%(msg)s'" #. TRANSLATORS: 'free' means 'unallocated' #: ../bleachbit/Worker.py:187 msgid "Please wait. Wiping free disk space." msgstr "Зачекайте. Виконується очистка вільного дискового простору." #. TRANSLATORS: %s is replaced with Firefox, System, etc. #: ../bleachbit/Worker.py:189 ../bleachbit/Worker.py:329 #, python-format msgid "Please wait. Cleaning %s." msgstr "Зачекайте, будь-ласка. Очистка %s." #: ../bleachbit/Worker.py:204 msgid "Please wait. Wiping file system metadata." msgstr "Зачекайте, видаляю метадані з файлової системи." #: ../bleachbit/Worker.py:207 msgid "Please wait. Cleaning up after wiping file system metadata." msgstr "Зачекайте, виконую видалення сміття після очистки метаданих." #: ../bleachbit/Worker.py:210 #, python-format msgid "About %d minute remaining." msgid_plural "About %d minutes remaining." msgstr[0] "До завершення лишилась %d хвилина." msgstr[1] "До завершення лишилось %d хвилини." msgstr[2] "До завершення лишилось %d хвилин." #. TRANSLATORS: This refers to disk space that was #. really recovered (in other words, not a preview) #: ../bleachbit/Worker.py:268 #, python-format msgid "Disk space recovered: %s" msgstr "Вивільнено дискового простору: %s" #. TRANSLATORS: This refers to a preview (no real #. changes were made yet) #: ../bleachbit/Worker.py:272 #, python-format msgid "Disk space to be recovered: %s" msgstr "Дисковий простір, який має бути вивільнено: %s" #. TRANSLATORS: This refers to the number of files really #. deleted (in other words, not a preview). #: ../bleachbit/Worker.py:277 #, python-format msgid "Files deleted: %d" msgstr "Вилучено файлів: %d" #. TRANSLATORS: This refers to the number of files that #. would be deleted (in other words, simply a preview). #: ../bleachbit/Worker.py:281 #, python-format msgid "Files to be deleted: %d" msgstr "Файли до вилучення: %d" #: ../bleachbit/Worker.py:284 #, python-format msgid "Special operations: %d" msgstr "Спеціальні операції: %d" #: ../bleachbit/Worker.py:287 #, python-format msgid "Errors: %d" msgstr "Помилки: %d" #. TRANSLATORS: The "deep scan" feature searches over broad #. areas of the file system such as the user's whole home directory #. or all the system executables. #: ../bleachbit/Worker.py:303 msgid "Please wait. Running deep scan." msgstr "Зачекайте. Виконується глибоке сканування." #. TRANSLATORS: %s is replaced with Firefox, System, etc. #: ../bleachbit/Worker.py:332 #, python-format msgid "Please wait. Previewing %s." msgstr "Зачекайте, будь-ласка. Попередній перегляд %s." #: ../bleachbit/Update.py:77 msgid "New winapp2.ini was downloaded." msgstr "Новий winapp2.ini було завантажено." #: ../bleachbit/Update.py:123 msgid "Update BleachBit" msgstr "Оновити BleachBit" #: ../bleachbit/Update.py:128 msgid "A new version is available." msgstr "Доступна нова версія." #. TRANSLATORS: %s expands to version such as '0.8.4' or '0.8.5beta' or #. similar #: ../bleachbit/Update.py:137 #, python-format msgid "Update to version %s" msgstr "Оновити до версії %s" #: ../bleachbit/Update.py:163 #, python-format msgid "" "Error when opening a network connection to %s to check for updates. Please " "verify the network is working." msgstr "" "Сталася помилка з’єднання із %s для перевірки оновлень. Будь ласка " "перевірте працездатність мережі." #: ../bleachbit/CLI.py:106 #, python-format msgid "not a valid cleaner: %s" msgstr "невірний очищувач: %s" #. TRANSLATORS: This is the command line usage. Don't translate #. %prog, but do translate usage, options, cleaner, and option. #. More information about the command line is here #. http://www.bleachbit.org/documentation/command-line #: ../bleachbit/CLI.py:133 msgid "usage: %prog [options] cleaner.option1 cleaner.option2" msgstr "використання: %prog [опції] очищувач.опція1 очищувач.опція2" #: ../bleachbit/CLI.py:136 msgid "list cleaners" msgstr "показати список очищувачів" #. TRANSLATORS: predefined cleaners are for applications, such as Firefox and Flash. #. This is different than cleaning an arbitrary file, such as a #. spreadsheet on the desktop. #: ../bleachbit/CLI.py:141 msgid "run cleaners to delete files and make other permanent changes" msgstr "" "Розпочати видалення файлів створених програмами та призначити інші постійні " "зміни" #: ../bleachbit/CLI.py:144 msgid "shred specific files or folders" msgstr "скорочення спеціфічних файлів або папок" #: ../bleachbit/CLI.py:146 msgid "show system information" msgstr "показати інформацію про систему" #: ../bleachbit/CLI.py:148 msgid "launch the graphical interface" msgstr "запустити графічний інтерфейс" #: ../bleachbit/CLI.py:150 msgid "do not prompt for administrator privileges" msgstr "не вимагати прав адміністратора" #: ../bleachbit/CLI.py:155 msgid "preview files to be deleted and other changes" msgstr "перегляд файлів, які мають бути вилучені та інших змін" #: ../bleachbit/CLI.py:157 msgid "use options set in the graphical interface" msgstr "використовувати набір опцій у графічному інтерфейсі" #: ../bleachbit/CLI.py:160 msgid "update winapp2.ini, if a new version is available" msgstr "оновити winapp2.ini якщо наявна нова версія" #: ../bleachbit/CLI.py:162 msgid "output version information and exit" msgstr "показати інформацію про версію та вийти" #: ../bleachbit/CLI.py:164 msgid "overwrite files to hide contents" msgstr "перезаписати файли, щоб приховати вміст" #. TRANSLATORS: this is the context menu #: ../bleachbit/Action.py:372 ../bleachbit/GUI.py:630 msgid "Clean" msgstr "Очистити" #: ../bleachbit/Action.py:392 #, python-format msgid "Run external command: %s" msgstr "Виконати наступну команду: %s" #: ../bleachbit/GUI.py:143 msgid "Active" msgstr "Активно" #. TRANSLATORS: Size is the label for the column that shows how #. much space an option would clean or did clean #: ../bleachbit/GUI.py:155 msgid "Size" msgstr "Обсяг" #. TRANSLATORS: %(cleaner) may be Firefox, System, etc. #. %(option) may be cache, logs, cookies, etc. #. %(warning) may be 'This option is really slow' #: ../bleachbit/GUI.py:186 #, python-format msgid "" "Warning regarding %(cleaner)s - %(option)s:\n" "\n" "%(warning)s" msgstr "" "Зверніть увагу на %(cleaner)s - опція %(option)s:\n" "\n" "%(warning)s" #: ../bleachbit/GUI.py:372 msgid "You must select an operation" msgstr "Ви повинні обрати операцію" #: ../bleachbit/GUI.py:392 ../bleachbit/GUI.py:415 msgid "Done." msgstr "Завершено." #: ../bleachbit/GUI.py:428 msgid "Program to clean unnecessary files" msgstr "Програма для вилучення непотрібних файлів" #: ../bleachbit/GUI.py:434 msgid "" "GNU General Public License version 3 or later.\n" "See http://www.gnu.org/licenses/gpl-3.0.txt" msgstr "" "GNU General Public License версії 3 або пізнішої.\n" "Прочитайте, будь-ласка, http://www.gnu.org/licenses/gpl-3.0.txt" #. TRANSLATORS: Maintain the names of translators here. #. Launchpad does this automatically for translations #. typed in Launchpad. This is a special string shown #. in the 'About' box. #: ../bleachbit/GUI.py:440 msgid "translator-credits" msgstr "" "Launchpad Contributions:\n" " Alex_N-B https://launchpad.net/~northside-b\n" " Anton Tolpeev https://launchpad.net/~anton-tolpeev\n" " Max Lyashuk aka Ma)(imuM https://launchpad.net/~probel\n" " Maxim Nosovets https://launchpad.net/~molny\n" " Serge Gavrilenko https://launchpad.net/~screamer-sg\n" " Sergiy Gavrylov https://launchpad.net/~gavro\n" " Sergiy Matrunchyk https://launchpad.net/~sergiy.matrunchyk\n" " ma$terok https://launchpad.net/~m-shein\n" " Микола Ткач https://launchpad.net/~stuartlittle1970" #: ../bleachbit/GUI.py:452 msgid "System information" msgstr "Інформація про систему" #: ../bleachbit/GUI.py:525 msgid "Choose files to shred" msgstr "Оберіть файли для знищення" #: ../bleachbit/GUI.py:528 msgid "Choose folder to shred" msgstr "Оберіть теку для очистки" #. TRANSLATORS: this is the context menu #: ../bleachbit/GUI.py:625 msgid "Preview" msgstr "Попередній перегляд" #: ../bleachbit/GUI.py:694 msgid "_Shred Files" msgstr "_Знищення файлів" #: ../bleachbit/GUI.py:696 msgid "Sh_red Folders" msgstr "О_чистити теки" #: ../bleachbit/GUI.py:698 msgid "_Wipe Free Space" msgstr "_Очистити вільне місце" #: ../bleachbit/GUI.py:700 msgid "S_hred Settings and Quit" msgstr "В_итерти налаштування та вийти" #: ../bleachbit/GUI.py:702 msgid "_Quit" msgstr "_Вихід" #: ../bleachbit/GUI.py:704 msgid "_File" msgstr "_Файл" #: ../bleachbit/GUI.py:707 msgid "_Edit" msgstr "_Редагування" #: ../bleachbit/GUI.py:708 msgid "Help Contents" msgstr "Зміст довідки" #: ../bleachbit/GUI.py:711 msgid "_Release Notes" msgstr "_Примітки щодо релізу" #: ../bleachbit/GUI.py:714 msgid "_System Information" msgstr "_Інформація про систему" #: ../bleachbit/GUI.py:717 msgid "_About" msgstr "_Про програму" #: ../bleachbit/GUI.py:718 msgid "_Help" msgstr "_Довідка" #: ../bleachbit/GUI.py:743 msgctxt "button" msgid "Preview" msgstr "Перегляд" #: ../bleachbit/GUI.py:748 msgid "Preview files in the selected operations (without deleting any files)" msgstr "" "Попередній перегляд файлів, на які впливають обрані операції (без вилучення " "файлів)" #: ../bleachbit/GUI.py:758 msgctxt "button" msgid "Clean" msgstr "Очистити" #: ../bleachbit/GUI.py:762 msgid "Clean files in the selected operations" msgstr "Очистити файли для обраних дій" #: ../bleachbit/GUI.py:851 msgid "Error when checking for updates: " msgstr "Помилка при перевірці оновлень: " #: ../bleachbit/GUI.py:891 msgid "" "Error loading the SQLite module: the antivirus software may be blocking it." msgstr "" "Помилка завантаження модуля SQLite: антивірусна програма може блокувати його." #: ../bleachbit/GUI.py:894 msgid "" "You are running BleachBit with administrative privileges for cleaning shared " "parts of the system, and references to the user profile folder will clean " "only the root account." msgstr "" "Ви запустили BleachBit із правами адміністратора, що дає змогу чистити " "загальні частини системи, стосовно директорії користувача - програма " "вичистить лише профіль суперкористувача." bleachbit-2.0/po/en_CA.po0000644000175000017500000011662113245436307013333 0ustar hlehle# English (Canada) translation for bleachbit # Copyright (c) 2016 Rosetta Contributors and Canonical Ltd 2016 # This file is distributed under the same license as the bleachbit package. # FIRST AUTHOR , 2016. # msgid "" msgstr "" "Project-Id-Version: bleachbit\n" "Report-Msgid-Bugs-To: FULL NAME \n" "POT-Creation-Date: 2016-06-24 19:52-0600\n" "PO-Revision-Date: 2016-06-25 15:29+0000\n" "Last-Translator: Danilo Silva \n" "Language-Team: English (Canada) \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n != 1;\n" "X-Launchpad-Export-Date: 2016-06-26 16:24+0000\n" "X-Generator: Launchpad (build 18111)\n" #: ../cleaners/mc.xml ../cleaners/tortoisesvn.xml ../cleaners/vim.xml #: ../cleaners/safari.xml ../cleaners/links2.xml ../cleaners/seamonkey.xml #: ../cleaners/realplayer.xml ../cleaners/windows_defender.xml #: ../cleaners/d4x.xml ../cleaners/sqlite3.xml #: ../cleaners/internet_explorer.xml ../cleaners/libreoffice.xml #: ../cleaners/easytag.xml ../cleaners/bash.xml ../cleaners/nautilus.xml #: ../cleaners/octave.xml ../cleaners/elinks.xml ../cleaners/chromium.xml #: ../cleaners/google_chrome.xml msgid "History" msgstr "History" #: ../cleaners/mc.xml ../cleaners/tortoisesvn.xml ../cleaners/links2.xml #: ../cleaners/realplayer.xml ../cleaners/d4x.xml ../cleaners/libreoffice.xml #: ../cleaners/easytag.xml ../cleaners/nautilus.xml ../cleaners/gnome.xml #: ../bleachbit/Cleaner.py:351 ../bleachbit/Cleaner.py:425 #: ../bleachbit/Cleaner.py:434 msgid "Delete the usage history" msgstr "Delete the usage history" #: ../cleaners/gpodder.xml ../cleaners/hippo_opensim_viewer.xml #: ../cleaners/thumbnails.xml ../cleaners/safari.xml ../cleaners/emesene.xml #: ../cleaners/liferea.xml ../cleaners/seamonkey.xml ../cleaners/vuze.xml #: ../cleaners/yahoo_messenger.xml ../cleaners/pidgin.xml #: ../cleaners/adobe_reader.xml ../cleaners/evolution.xml #: ../cleaners/tremulous.xml ../cleaners/libreoffice.xml ../cleaners/xine.xml #: ../cleaners/nexuiz.xml ../cleaners/exaile.xml ../cleaners/opera.xml #: ../cleaners/amsn.xml ../cleaners/gftp.xml ../cleaners/miro.xml #: ../cleaners/beagle.xml ../cleaners/kde.xml ../cleaners/epiphany.xml #: ../cleaners/flash.xml ../cleaners/secondlife_viewer.xml ../cleaners/java.xml #: ../cleaners/chromium.xml ../cleaners/audacious.xml ../cleaners/rhythmbox.xml #: ../cleaners/google_chrome.xml ../cleaners/thunderbird.xml #: ../bleachbit/Cleaner.py:194 ../bleachbit/Cleaner.py:372 #: ../bleachbit/Cleaner.py:457 msgid "Cache" msgstr "Cache" #: ../cleaners/gpodder.xml ../cleaners/yum.xml #: ../cleaners/hippo_opensim_viewer.xml ../cleaners/thumbnails.xml #: ../cleaners/windows_explorer.xml ../cleaners/liferea.xml #: ../cleaners/vuze.xml ../cleaners/yahoo_messenger.xml ../cleaners/pidgin.xml #: ../cleaners/adobe_reader.xml ../cleaners/evolution.xml #: ../cleaners/libreoffice.xml ../cleaners/apt.xml ../cleaners/xine.xml #: ../cleaners/nexuiz.xml ../cleaners/exaile.xml ../cleaners/amsn.xml #: ../cleaners/gftp.xml ../cleaners/miro.xml ../cleaners/beagle.xml #: ../cleaners/kde.xml ../cleaners/flash.xml ../cleaners/secondlife_viewer.xml #: ../cleaners/java.xml ../cleaners/audacious.xml ../cleaners/rhythmbox.xml #: ../bleachbit/Cleaner.py:372 ../bleachbit/Cleaner.py:457 #: ../bleachbit/Cleaner.py:491 ../bleachbit/Cleaner.py:493 msgid "Delete the cache" msgstr "Delete the cache" #. TRANSLATORS: Vacuum is a verb. The term is jargon #. from the SQLite database. Microsoft Access uses #. the term 'Compact Database' (which you may translate #. instead). Another synonym is 'defragment.' #: ../cleaners/gpodder.xml ../cleaners/yum.xml ../cleaners/safari.xml #: ../cleaners/liferea.xml ../cleaners/chromium.xml #: ../cleaners/google_chrome.xml ../cleaners/thunderbird.xml #: ../bleachbit/Cleaner.py:216 ../bleachbit/Cleaner.py:362 #: ../bleachbit/Action.py:419 msgid "Vacuum" msgstr "Compact database" #: ../cleaners/gpodder.xml ../cleaners/yum.xml ../cleaners/safari.xml #: ../cleaners/liferea.xml ../cleaners/chromium.xml #: ../cleaners/google_chrome.xml ../cleaners/thunderbird.xml #: ../bleachbit/Cleaner.py:217 msgid "" "Clean database fragmentation to reduce space and improve speed without " "removing any data" msgstr "" "Clean database fragmentation to reduce space and improve speed without " "removing any data" #: ../cleaners/yum.xml ../cleaners/apt.xml msgid "Package manager" msgstr "Package manager" #: ../cleaners/warzone2100.xml ../cleaners/hippo_opensim_viewer.xml #: ../cleaners/gl-117.xml ../cleaners/tremulous.xml ../cleaners/nexuiz.xml #: ../cleaners/secondlife_viewer.xml msgid "Game" msgstr "Game" #: ../cleaners/warzone2100.xml ../cleaners/hippo_opensim_viewer.xml #: ../cleaners/teamviewer.xml ../cleaners/realplayer.xml ../cleaners/vuze.xml #: ../cleaners/yahoo_messenger.xml ../cleaners/amule.xml #: ../cleaners/easytag.xml ../cleaners/exaile.xml ../cleaners/screenlets.xml #: ../cleaners/gftp.xml ../cleaners/miro.xml ../cleaners/audacious.xml #: ../bleachbit/Cleaner.py:488 msgid "Logs" msgstr "Logs" #: ../cleaners/warzone2100.xml ../cleaners/hippo_opensim_viewer.xml #: ../cleaners/teamviewer.xml ../cleaners/realplayer.xml ../cleaners/vuze.xml #: ../cleaners/yahoo_messenger.xml ../cleaners/amule.xml ../cleaners/exaile.xml #: ../cleaners/screenlets.xml ../cleaners/gftp.xml ../cleaners/miro.xml #: ../cleaners/audacious.xml ../bleachbit/Cleaner.py:488 msgid "Delete the logs" msgstr "Delete the logs" #: ../cleaners/thumbnails.xml ../cleaners/windows_explorer.xml msgid "Thumbnails" msgstr "Thumbnails" #: ../cleaners/thumbnails.xml msgid "Icons for files on the system" msgstr "Icons for files on the system" #: ../cleaners/vim.xml ../cleaners/gedit.xml msgid "Editor" msgstr "Editor" #: ../cleaners/vim.xml msgid "" "Delete ~/.viminfo which includes file history, command history, and buffers" msgstr "" "Delete ~/.viminfo which includes file history, command history, and buffers" #: ../cleaners/filezilla.xml ../cleaners/transmission.xml ../cleaners/vuze.xml #: ../cleaners/amule.xml ../cleaners/gftp.xml msgid "File transfer client" msgstr "File transfer client" #: ../cleaners/filezilla.xml ../cleaners/paint.xml #: ../cleaners/windows_media_player.xml ../cleaners/windows_explorer.xml #: ../cleaners/teamviewer.xml ../cleaners/microsoft_office.xml #: ../cleaners/vlc.xml ../cleaners/adobe_reader.xml ../cleaners/winamp.xml #: ../cleaners/winzip.xml ../cleaners/winrar.xml ../cleaners/audacious.xml #: ../cleaners/wordpad.xml ../bleachbit/Cleaner.py:373 msgid "Most recently used" msgstr "Most recently used" #: ../cleaners/filezilla.xml ../cleaners/windows_explorer.xml #: ../cleaners/gwenview.xml ../cleaners/adobe_reader.xml ../cleaners/gedit.xml #: ../cleaners/kde.xml ../cleaners/audacious.xml ../bleachbit/Cleaner.py:374 #: ../bleachbit/Cleaner.py:471 msgid "Delete the list of recently used documents" msgstr "Delete the list of recently used documents" #: ../cleaners/skype.xml ../cleaners/xchat.xml ../cleaners/emesene.xml #: ../cleaners/yahoo_messenger.xml ../cleaners/pidgin.xml ../cleaners/amsn.xml msgid "Chat client" msgstr "Chat client" #: ../cleaners/skype.xml ../cleaners/xchat.xml ../cleaners/emesene.xml #: ../cleaners/seamonkey.xml ../cleaners/yahoo_messenger.xml #: ../cleaners/pidgin.xml ../cleaners/amsn.xml msgid "Chat logs" msgstr "Chat logs" #: ../cleaners/skype.xml ../cleaners/xchat.xml ../cleaners/emesene.xml #: ../cleaners/seamonkey.xml ../cleaners/yahoo_messenger.xml #: ../cleaners/pidgin.xml ../cleaners/amsn.xml msgid "Delete the chat logs" msgstr "Delete the chat logs" #: ../cleaners/skype.xml msgid "Installers" msgstr "Installers" #: ../cleaners/skype.xml msgid "Delete cached patches and installers" msgstr "Delete cached patches and installers" #: ../cleaners/safari.xml ../cleaners/links2.xml ../cleaners/seamonkey.xml #: ../cleaners/konqueror.xml ../cleaners/internet_explorer.xml #: ../cleaners/opera.xml ../cleaners/epiphany.xml ../cleaners/elinks.xml #: ../cleaners/chromium.xml ../cleaners/google_chrome.xml #: ../bleachbit/Cleaner.py:228 msgid "Web browser" msgstr "Web browser" #: ../cleaners/safari.xml ../cleaners/seamonkey.xml ../cleaners/opera.xml #: ../cleaners/epiphany.xml ../cleaners/chromium.xml #: ../cleaners/google_chrome.xml ../cleaners/thunderbird.xml #: ../bleachbit/Cleaner.py:195 msgid "Delete the web cache, which reduces time to display revisited pages" msgstr "Delete the web cache, which reduces time to display revisited pages" #: ../cleaners/safari.xml ../cleaners/liferea.xml ../cleaners/seamonkey.xml #: ../cleaners/realplayer.xml ../cleaners/konqueror.xml #: ../cleaners/internet_explorer.xml ../cleaners/opera.xml #: ../cleaners/epiphany.xml ../cleaners/flash.xml ../cleaners/silverlight.xml #: ../cleaners/chromium.xml ../cleaners/google_chrome.xml #: ../cleaners/thunderbird.xml ../bleachbit/Cleaner.py:196 msgid "Cookies" msgstr "Cookies" #: ../cleaners/safari.xml ../cleaners/liferea.xml ../cleaners/seamonkey.xml #: ../cleaners/realplayer.xml ../cleaners/konqueror.xml #: ../cleaners/internet_explorer.xml ../cleaners/opera.xml #: ../cleaners/epiphany.xml ../cleaners/flash.xml ../cleaners/silverlight.xml #: ../cleaners/chromium.xml ../cleaners/google_chrome.xml #: ../cleaners/thunderbird.xml ../bleachbit/Cleaner.py:197 msgid "" "Delete cookies, which contain information such as web site preferences, " "authentication, and tracking identification" msgstr "" "Delete cookies, which contain information such as web site preferences, " "authentication, and tracking identification" #: ../cleaners/safari.xml ../cleaners/konqueror.xml #: ../cleaners/internet_explorer.xml ../cleaners/opera.xml #: ../bleachbit/Cleaner.py:215 msgid "List of visited web pages" msgstr "List of visited web pages" #. Torrent software can block a list of IP addresses, such as those that may belong to malware or anti-piracy organizations #: ../cleaners/transmission.xml msgid "Blocklists" msgstr "Blocklists" #: ../cleaners/transmission.xml ../cleaners/windows_defender.xml #: ../cleaners/beagle.xml ../cleaners/thunderbird.xml ../cleaners/deepscan.xml #: ../bleachbit/Cleaner.py:199 msgid "Delete the files" msgstr "Delete the files" #: ../cleaners/transmission.xml msgid "Blocklists will need update to work." msgstr "Blocklists will require updating" #: ../cleaners/transmission.xml msgid "Torrents" msgstr "Torrents" #: ../cleaners/transmission.xml msgid "Delete the torrents (just the metadata but not the files described)" msgstr "Delete the torrents (just the metadata but not the files described)" #: ../cleaners/transmission.xml msgid "Statistics" msgstr "Statistics" #: ../cleaners/transmission.xml msgid "Delete the file" msgstr "Delete the file" #: ../cleaners/paint.xml ../cleaners/windows_media_player.xml #: ../cleaners/windows_explorer.xml ../cleaners/teamviewer.xml #: ../cleaners/microsoft_office.xml ../cleaners/vlc.xml ../cleaners/winamp.xml #: ../cleaners/winzip.xml ../cleaners/winrar.xml ../cleaners/wordpad.xml msgid "Delete the most recently used list" msgstr "Delete the most recently used list" #: ../cleaners/emesene.xml msgid "Delete the avatars and emoticons cache" msgstr "Delete the avatars and emoticons cache" #: ../cleaners/windows_media_player.xml ../cleaners/realplayer.xml #: ../cleaners/vlc.xml ../cleaners/winamp.xml msgid "Media player" msgstr "Media player" #: ../cleaners/windows_explorer.xml ../cleaners/nautilus.xml msgid "File manager" msgstr "File manager" #: ../cleaners/windows_explorer.xml ../cleaners/gwenview.xml #: ../cleaners/gedit.xml ../cleaners/kde.xml ../bleachbit/Cleaner.py:470 msgid "Recent documents list" msgstr "Recent documents list" #. In Windows 'Run' is the dialog in the Start menu #. In GNOME 'Run' is the dialog shown when typing ALT+F2' #: ../cleaners/windows_explorer.xml ../cleaners/gnome.xml msgid "Run" msgstr "Run" #: ../cleaners/windows_explorer.xml ../cleaners/opera.xml ../cleaners/gnome.xml #: ../cleaners/google_toolbar.xml msgid "Search history" msgstr "Search history" #: ../cleaners/windows_explorer.xml ../cleaners/opera.xml ../cleaners/gnome.xml #: ../cleaners/google_toolbar.xml msgid "Delete the search history" msgstr "Delete the search history" #: ../cleaners/windows_explorer.xml msgid "This will restart Windows Explorer." msgstr "This will restart Windows Explorer." #: ../cleaners/gl-117.xml ../cleaners/microsoft_office.xml #: ../cleaners/beagle.xml ../cleaners/secondlife_viewer.xml ../cleaners/x11.xml msgid "Debug logs" msgstr "Debug logs" #: ../cleaners/gl-117.xml ../cleaners/microsoft_office.xml #: ../cleaners/easytag.xml ../cleaners/beagle.xml #: ../cleaners/secondlife_viewer.xml ../cleaners/x11.xml msgid "Delete the debug logs" msgstr "Delete the debug logs" #: ../cleaners/google_earth.xml ../cleaners/winetricks.xml ../cleaners/vuze.xml #: ../cleaners/adobe_reader.xml ../cleaners/amule.xml ../cleaners/wine.xml #: ../cleaners/internet_explorer.xml ../cleaners/gimp.xml ../cleaners/kde.xml #: ../cleaners/deepscan.xml ../bleachbit/Cleaner.py:522 msgid "Temporary files" msgstr "Temporary files" #: ../cleaners/google_earth.xml ../cleaners/winetricks.xml ../cleaners/vuze.xml #: ../cleaners/adobe_reader.xml ../cleaners/amule.xml ../cleaners/wine.xml #: ../cleaners/internet_explorer.xml ../cleaners/gimp.xml ../cleaners/kde.xml #: ../cleaners/deepscan.xml ../bleachbit/Cleaner.py:522 msgid "Delete the temporary files" msgstr "Delete the temporary files" #: ../cleaners/seamonkey.xml ../cleaners/opera.xml ../bleachbit/Cleaner.py:203 msgid "Download history" msgstr "Download history" #: ../cleaners/seamonkey.xml ../cleaners/opera.xml ../bleachbit/Cleaner.py:203 msgid "List of files downloaded" msgstr "List of files downloaded" #: ../cleaners/seamonkey.xml msgid "Delete the list of visited web pages" msgstr "Delete the list of visited web pages" #: ../cleaners/vuze.xml ../cleaners/deepscan.xml ../bleachbit/Cleaner.py:192 msgid "Backup files" msgstr "Backup files" #: ../cleaners/vuze.xml ../cleaners/deepscan.xml ../bleachbit/Cleaner.py:193 msgid "Delete the backup files" msgstr "Delete the backup files" #: ../cleaners/konqueror.xml ../cleaners/opera.xml ../cleaners/chromium.xml msgid "Current session" msgstr "Current session" #: ../cleaners/konqueror.xml ../cleaners/opera.xml ../cleaners/chromium.xml msgid "Delete the current session" msgstr "Delete the current session" #: ../cleaners/konqueror.xml ../cleaners/opera.xml ../bleachbit/Cleaner.py:215 msgid "URL history" msgstr "URL history" #: ../cleaners/microsoft_office.xml ../cleaners/libreoffice.xml #: ../bleachbit/Cleaner.py:377 msgid "Office suite" msgstr "Office suite" #: ../cleaners/windows_defender.xml msgid "Anti-virus" msgstr "Anti-virus" #: ../cleaners/adobe_reader.xml msgid "Document viewer" msgstr "Document viewer" #: ../cleaners/evolution.xml ../cleaners/thunderbird.xml msgid "Email client" msgstr "E-mail client" #: ../cleaners/tremulous.xml msgid "Delete the list of game servers" msgstr "Delete the list of game servers" #: ../cleaners/sqlite3.xml ../cleaners/bash.xml ../cleaners/octave.xml msgid "Delete the command history" msgstr "Delete the command history" #: ../cleaners/wine.xml msgid "Compatibility layer for Windows software" msgstr "Compatibility layer for Windows software" #: ../cleaners/internet_explorer.xml ../cleaners/chromium.xml #: ../cleaners/google_chrome.xml ../bleachbit/Cleaner.py:204 msgid "Form history" msgstr "Form history" #: ../cleaners/internet_explorer.xml ../bleachbit/Cleaner.py:205 msgid "A history of forms entered in web sites and in the Search bar" msgstr "Search and web form submissions history" #. This software edits metadata tags, such as title and artist, in audio files #: ../cleaners/easytag.xml msgid "Audio files tagger" msgstr "Audio files tagger" #: ../cleaners/apt.xml msgid "Delete obsolete files" msgstr "Delete obsolete files" #: ../cleaners/apt.xml msgid "Package lists" msgstr "Package lists" #: ../cleaners/xine.xml ../cleaners/miro.xml ../cleaners/flash.xml msgid "Multimedia viewer" msgstr "Multimedia viewer" #: ../cleaners/recoll.xml ../cleaners/beagle.xml msgid "Search tool" msgstr "Search tool" #: ../cleaners/recoll.xml ../cleaners/beagle.xml ../cleaners/thunderbird.xml msgid "Index" msgstr "Index" #: ../cleaners/recoll.xml msgid "" "Delete the search index, a database of words and the files they contain" msgstr "" "Delete the search index, a database of words and the files they contain" #: ../cleaners/gimp.xml msgid "Graphics editor" msgstr "Graphics editor" #: ../cleaners/exaile.xml msgid "Downloaded podcasts" msgstr "Downloaded podcasts" #: ../cleaners/exaile.xml msgid "Delete downloaded podcasts" msgstr "Delete downloaded podcasts" #: ../cleaners/bash.xml msgid "Shell" msgstr "Shell" #. TRANSLATORS: DOM = Document Object Model. #: ../cleaners/opera.xml ../cleaners/epiphany.xml ../cleaners/chromium.xml #: ../cleaners/google_chrome.xml ../bleachbit/Cleaner.py:201 msgid "DOM Storage" msgstr "DOM Storage" #: ../cleaners/opera.xml ../cleaners/epiphany.xml ../cleaners/chromium.xml #: ../cleaners/google_chrome.xml ../bleachbit/Cleaner.py:201 msgid "Delete HTML5 cookies" msgstr "Delete HTML5 cookies" #: ../cleaners/opera.xml ../cleaners/epiphany.xml ../cleaners/chromium.xml #: ../cleaners/google_chrome.xml ../cleaners/thunderbird.xml #: ../bleachbit/Cleaner.py:210 msgid "Passwords" msgstr "Passwords" #: ../cleaners/opera.xml ../cleaners/epiphany.xml ../cleaners/chromium.xml #: ../cleaners/google_chrome.xml ../cleaners/thunderbird.xml #: ../bleachbit/Cleaner.py:211 msgid "" "A database of usernames and passwords as well as a list of sites that should " "not store passwords" msgstr "" "A database of usernames and passwords as well as a list of sites that should " "not store passwords" #: ../cleaners/opera.xml ../cleaners/epiphany.xml ../cleaners/chromium.xml #: ../cleaners/google_chrome.xml ../cleaners/thunderbird.xml #: ../bleachbit/Cleaner.py:213 msgid "This option will delete your saved passwords." msgstr "This option will delete your saved passwords." #: ../cleaners/nautilus.xml msgid "Custom folders will be reset." msgstr "Custom folders will be reset." #: ../cleaners/gnome.xml ../cleaners/kde.xml msgid "Desktop environment" msgstr "Desktop environment" #: ../cleaners/screenlets.xml msgid "Widgets for the desktop" msgstr "Widgets for the desktop" #: ../cleaners/epiphany.xml msgid "Places" msgstr "Places" #: ../cleaners/epiphany.xml msgid "" "A database of URLs including bookmarks, favicons, and a history of visited " "web sites" msgstr "" "A database of URLs including bookmarks, favicons, and a history of visited " "web sites" #: ../cleaners/epiphany.xml msgid "This option deletes all bookmarks." msgstr "This option deletes all bookmarks." #: ../cleaners/winrar.xml msgid "File archiver" msgstr "File archiver" #: ../cleaners/elinks.xml msgid "Delete the cookies, visited URLs, and search history" msgstr "Delete the cookies, visited URLs, and search history" #: ../cleaners/chromium.xml ../cleaners/google_chrome.xml msgid "A history of forms entered in web sites" msgstr "A history of forms entered in web sites" #: ../cleaners/chromium.xml ../cleaners/google_chrome.xml msgid "" "Delete the history which includes visited sites, downloads, and thumbnails" msgstr "" #: ../cleaners/chromium.xml ../cleaners/google_chrome.xml msgid "Search engines" msgstr "" #. 'Factory' means a search engine that is installed by default 'from the factory,' but this is different than a 'default search engine' https://lists.launchpad.net/launchpad-translators/msg00283.html #: ../cleaners/chromium.xml ../cleaners/google_chrome.xml msgid "" "Reset the search engine usage history and delete non-factory search engines, " "some of which are added automatically" msgstr "" #: ../cleaners/audacious.xml msgid "Audio player" msgstr "Audio player" #: ../cleaners/rhythmbox.xml msgid "Database" msgstr "" #: ../cleaners/rhythmbox.xml msgid "" "Delete the database, which contain information such as play count and last " "played" msgstr "" #: ../cleaners/google_chrome.xml msgid "Session" msgstr "Session" #: ../cleaners/google_chrome.xml msgid "Delete the current and last sessions" msgstr "Delete the current and last sessions" #: ../cleaners/x11.xml msgid "Windowing system" msgstr "Windowing system" #: ../cleaners/wordpad.xml msgid "Word processor" msgstr "Word processor" #: ../cleaners/deepscan.xml msgid "Deep scan" msgstr "Deep scan" #: ../cleaners/deepscan.xml msgid "Clean files widely scattered across the disk" msgstr "Clean files widely scattered across the disk" #: ../cleaners/deepscan.xml msgid "Inspect the preview for any files you want to keep." msgstr "Inspect the preview for any files you want to keep." #: ../cleaners/deepscan.xml msgid "This option is slow." msgstr "This option is slow." #: ../bleachbit.desktop msgid "Unnecessary file cleaner" msgstr "Unnecessary file cleaner" #: ../bleachbit.desktop msgid "Free space and maintain privacy" msgstr "Free space and maintain privacy" #. TRANSLATORS: This is the label in the log indicating was #. skipped because it matches the whitelist #: ../bleachbit/Command.py:44 msgid "Skip" msgstr "Skip" #. TRANSLATORS: This is the label in the log indicating will be #. deleted (for previews) or was actually deleted #: ../bleachbit/Command.py:74 msgid "Delete" msgstr "Delete" #. TRANSLATORS: The file will be deleted when the #. system reboots #: ../bleachbit/Command.py:95 msgid "Mark for deletion" msgstr "Delete on system restart" #. TRANSLATORS: Parts of this file will be deleted #: ../bleachbit/Command.py:192 ../bleachbit/Command.py:226 #: ../bleachbit/Action.py:256 ../bleachbit/Action.py:269 #: ../bleachbit/Action.py:282 ../bleachbit/Action.py:295 #: ../bleachbit/Action.py:308 msgid "Clean file" msgstr "Clean file" #. TRANSLATORS: The file will be truncated to 0 bytes in length #: ../bleachbit/Command.py:268 msgid "Truncate" msgstr "Truncate" #: ../bleachbit/Command.py:311 msgid "Delete registry key" msgstr "Delete registry key" #: ../bleachbit/Unix.py:340 ../bleachbit/Unix.py:370 ../bleachbit/Unix.py:574 #, python-format msgid "Executable not found: %s" msgstr "Executable not found: %s" #. TRANSLATORS: %s expands to a name such as 'Firefox' or 'System'. #: ../bleachbit/Unix.py:571 ../bleachbit/Worker.py:141 #, python-format msgid "" "%s cannot be cleaned because it is currently running. Close it, and try " "again." msgstr "" "%s cannot be cleaned because it is currently running. Close it, and try " "again." #: ../bleachbit/GuiBasic.py:112 msgid "Delete confirmation" msgstr "Delete confirmation" #: ../bleachbit/GuiBasic.py:122 msgid "" "Are you sure you want to permanently delete files according to the selected " "operations? The actual files that will be deleted may have changed since " "you ran the preview." msgstr "" "Are you sure you want to permanently delete files according to the selected " "operations? The actual files that will be deleted may have changed since " "you ran the preview." #: ../bleachbit/GuiBasic.py:125 msgid "Are you sure you want to permanently delete these files?" msgstr "Are you sure you want to permanently delete these files?" #: ../bleachbit/GuiBasic.py:162 #, python-format msgid "" "Because you are running as root, please manually open this link in a web " "browser:\n" "%s" msgstr "" "Because you are running as root, please manually open this link in a web " "browser:\n" "%s" #. TRANSLATORS: %s expands to www.bleachbit.org or similar #: ../bleachbit/GuiBasic.py:174 #, python-format msgid "Open web browser to %s?" msgstr "" #. TRANSLATORS: This is cleaner name for cleaners imported from winapp2.ini #: ../bleachbit/Winapp.py:44 msgid "Applications" msgstr "Applications" #. TRANSLATORS: This is cleaner name for cleaners imported #. from winapp2.ini #: ../bleachbit/Winapp.py:47 msgid "Internet" msgstr "" #. TRANSLATORS: This is cleaner name for cleaners imported #. from winapp2.ini #: ../bleachbit/Winapp.py:50 msgid "Multimedia" msgstr "" #. TRANSLATORS: This is cleaner name for cleaners imported #. from winapp2.ini #: ../bleachbit/Winapp.py:53 msgid "Utilities" msgstr "" #: ../bleachbit/Winapp.py:64 msgid "Games" msgstr "" #: ../bleachbit/Winapp.py:165 msgid "Imported from winapp2.ini" msgstr "" #: ../bleachbit/Cleaner.py:199 msgid "Crash reports" msgstr "" #: ../bleachbit/Cleaner.py:206 msgid "Session restore" msgstr "" #: ../bleachbit/Cleaner.py:207 msgid "Loads the initial session after the browser closes or crashes" msgstr "" #: ../bleachbit/Cleaner.py:209 msgid "Site preferences" msgstr "" #: ../bleachbit/Cleaner.py:209 msgid "Settings for individual sites" msgstr "" #. TRANSLATORS: desktop entries are .desktop files in Linux that #. make up the application menu (the menu that shows BleachBit, #. Firefox, and others. The .desktop files also associate file #. types, so clicking on an .html file in Nautilus brings up #. Firefox. #. More information: #. http://standards.freedesktop.org/menu-spec/latest/index.html#introduction #: ../bleachbit/Cleaner.py:455 msgid "Broken desktop files" msgstr "" #: ../bleachbit/Cleaner.py:456 msgid "Delete broken application menu entries and file associations" msgstr "" #. TRANSLATORS: Localizations are files supporting specific #. languages, so applications appear in Spanish, etc. #: ../bleachbit/Cleaner.py:460 msgid "Localizations" msgstr "" #: ../bleachbit/Cleaner.py:461 msgid "Delete files for unwanted languages" msgstr "" #: ../bleachbit/Cleaner.py:463 msgid "Configure this option in the preferences." msgstr "" #: ../bleachbit/Cleaner.py:469 msgid "Rotated logs" msgstr "" #: ../bleachbit/Cleaner.py:469 msgid "Delete old system logs" msgstr "" #: ../bleachbit/Cleaner.py:472 msgid "Trash" msgstr "" #: ../bleachbit/Cleaner.py:472 msgid "Empty the trash" msgstr "" #: ../bleachbit/Cleaner.py:478 ../bleachbit/Cleaner.py:629 #: ../bleachbit/Worker.py:189 msgid "Memory" msgstr "" #. TRANSLATORS: 'free' means 'unallocated' #: ../bleachbit/Cleaner.py:480 msgid "Wipe the swap and free memory" msgstr "" #: ../bleachbit/Cleaner.py:482 msgid "This option is experimental and may cause system problems." msgstr "" #: ../bleachbit/Cleaner.py:490 msgid "Memory dump" msgstr "" #: ../bleachbit/Cleaner.py:490 msgid "Delete the file memory.dmp" msgstr "" #. TRANSLATORS: Prefetch is Microsoft Windows jargon. #: ../bleachbit/Cleaner.py:493 msgid "Prefetch" msgstr "" #: ../bleachbit/Cleaner.py:495 msgid "Recycle bin" msgstr "" #: ../bleachbit/Cleaner.py:495 msgid "Empty the recycle bin" msgstr "" #. TRANSLATORS: 'Update' is a noun, and 'Update uninstallers' is an option to delete #. the uninstallers for software updates. #: ../bleachbit/Cleaner.py:498 msgid "Update uninstallers" msgstr "" #: ../bleachbit/Cleaner.py:499 msgid "" "Delete uninstallers for Microsoft updates including hotfixes, service packs, " "and Internet Explorer updates" msgstr "" #: ../bleachbit/Cleaner.py:506 ../bleachbit/Cleaner.py:722 msgid "Clipboard" msgstr "" #: ../bleachbit/Cleaner.py:507 msgid "" "The desktop environment's clipboard used for copy and paste operations" msgstr "" #. TRANSLATORS: "Custom" is an option allowing the user to specify which #. files and folders will be erased. #: ../bleachbit/Cleaner.py:514 ../bleachbit/GuiPreferences.py:63 msgid "Custom" msgstr "" #: ../bleachbit/Cleaner.py:515 msgid "Delete user-specified files and folders" msgstr "" #. TRANSLATORS: 'free' means 'unallocated' #: ../bleachbit/Cleaner.py:517 msgid "Free disk space" msgstr "" #. TRANSLATORS: 'free' means 'unallocated' #: ../bleachbit/Cleaner.py:519 msgid "Overwrite free disk space to hide deleted files" msgstr "" #: ../bleachbit/Cleaner.py:520 msgid "This option is very slow." msgstr "" #: ../bleachbit/Cleaner.py:524 msgid "The system in general" msgstr "" #: ../bleachbit/Cleaner.py:526 ../bleachbit/Cleaner.py:846 msgid "System" msgstr "" #. TRANSLATORS: 'Free' means 'unallocated.' #. %s expands to a path such as C:\ or /tmp/ #: ../bleachbit/Cleaner.py:730 ../bleachbit/Cleaner.py:879 #, python-format msgid "Overwrite free disk space %s" msgstr "" #: ../bleachbit/GuiPreferences.py:55 ../bleachbit/GUI.py:706 msgid "Preferences" msgstr "" #: ../bleachbit/GuiPreferences.py:61 msgid "General" msgstr "" #: ../bleachbit/GuiPreferences.py:64 msgid "Drives" msgstr "" #: ../bleachbit/GuiPreferences.py:67 msgid "Languages" msgstr "" #: ../bleachbit/GuiPreferences.py:69 msgid "Whitelist" msgstr "" #: ../bleachbit/GuiPreferences.py:114 msgid "Check periodically for software updates via the Internet" msgstr "" #: ../bleachbit/GuiPreferences.py:119 msgid "" "If an update is found, you will be given the option to view information " "about it. Then, you may manually download and install the update." msgstr "" #: ../bleachbit/GuiPreferences.py:125 msgid "Check for new beta releases" msgstr "" #: ../bleachbit/GuiPreferences.py:134 msgid "Download and update cleaners from community (winapp2.ini)" msgstr "" #. TRANSLATORS: This means to hide cleaners which would do #. nothing. For example, if Firefox were never used on #. this system, this option would hide Firefox to simplify #. the list of cleaners. #: ../bleachbit/GuiPreferences.py:148 msgid "Hide irrelevant cleaners" msgstr "" #. TRANSLATORS: Overwriting is the same as shredding. It is a way #. to prevent recovery of the data. You could also translate #. 'Shred files to prevent recovery.' #: ../bleachbit/GuiPreferences.py:156 msgid "Overwrite files to hide contents" msgstr "" #: ../bleachbit/GuiPreferences.py:160 msgid "" "Overwriting is ineffective on some file systems and with certain BleachBit " "operations. Overwriting is significantly slower." msgstr "" #: ../bleachbit/GuiPreferences.py:163 msgid "Start BleachBit with computer" msgstr "" #: ../bleachbit/GuiPreferences.py:169 msgid "Exit after cleaning" msgstr "" #: ../bleachbit/GuiPreferences.py:175 msgid "Confirm before delete" msgstr "" #: ../bleachbit/GuiPreferences.py:183 msgid "Use IEC sizes (1 KiB = 1024 bytes) instead of SI (1 kB = 1000 bytes)" msgstr "" #: ../bleachbit/GuiPreferences.py:194 ../bleachbit/GuiPreferences.py:323 #: ../bleachbit/GuiPreferences.py:364 ../bleachbit/GUI.py:592 msgid "Choose a folder" msgstr "" #: ../bleachbit/GuiPreferences.py:218 msgid "" "Choose a writable folder for each drive for which to overwrite free space." msgstr "" #. TRANSLATORS: In the preferences dialog, this button adds a path to #. the list of paths #: ../bleachbit/GuiPreferences.py:240 msgctxt "button" msgid "Add" msgstr "" #. TRANSLATORS: In the preferences dialog, this button removes a path #. from the list of paths #: ../bleachbit/GuiPreferences.py:244 ../bleachbit/GuiPreferences.py:455 msgctxt "button" msgid "Remove" msgstr "" #: ../bleachbit/GuiPreferences.py:269 msgid "All languages will be deleted except those checked." msgstr "" #: ../bleachbit/GuiPreferences.py:285 msgid "Preserve" msgstr "" #: ../bleachbit/GuiPreferences.py:289 msgid "Code" msgstr "" #: ../bleachbit/GuiPreferences.py:293 ../bleachbit/GUI.py:135 msgid "Name" msgstr "" #: ../bleachbit/GuiPreferences.py:310 ../bleachbit/GuiPreferences.py:351 msgid "Choose a file" msgstr "" #: ../bleachbit/GuiPreferences.py:317 ../bleachbit/GuiPreferences.py:358 #: ../bleachbit/GuiPreferences.py:402 msgid "File" msgstr "" #: ../bleachbit/GuiPreferences.py:331 ../bleachbit/GuiPreferences.py:372 #: ../bleachbit/GuiPreferences.py:404 msgid "Folder" msgstr "" #: ../bleachbit/GuiPreferences.py:414 msgid "Theses paths will not be deleted or modified." msgstr "" #: ../bleachbit/GuiPreferences.py:417 msgid "These locations can be selected for deletion." msgstr "" #: ../bleachbit/GuiPreferences.py:425 msgid "Type" msgstr "" #. TRANSLATORS: In the tree view "Path" is used generically to refer to a #. file, a folder, or a pattern describing either #: ../bleachbit/GuiPreferences.py:431 msgid "Path" msgstr "" #: ../bleachbit/GuiPreferences.py:443 msgctxt "button" msgid "Add file" msgstr "" #: ../bleachbit/GuiPreferences.py:449 msgctxt "button" msgid "Add folder" msgstr "" #: ../bleachbit/RecognizeCleanerML.py:57 msgid "Security warning" msgstr "" #: ../bleachbit/RecognizeCleanerML.py:70 msgid "" "These cleaner definitions are new or have changed. Malicious definitions can " "damage your system. If you do not trust these changes, delete the files or " "quit." msgstr "" #: ../bleachbit/RecognizeCleanerML.py:85 msgctxt "column_label" msgid "Delete" msgstr "" #: ../bleachbit/RecognizeCleanerML.py:90 msgctxt "column_label" msgid "Filename" msgstr "" #. TRANSLATORS: This indicates an error. The special keyword #. %(operation)s will be replaced by 'firefox' or 'opera' or #. some other cleaner ID. The special keyword %(msg)s will be #. replaced by a message such as 'Permission denied.' #: ../bleachbit/Worker.py:74 #, python-format msgid "Exception while running operation '%(operation)s': '%(msg)s'" msgstr "" #. TRANSLATORS: 'free' means 'unallocated' #: ../bleachbit/Worker.py:187 msgid "Please wait. Wiping free disk space." msgstr "" #. TRANSLATORS: %s is replaced with Firefox, System, etc. #: ../bleachbit/Worker.py:189 ../bleachbit/Worker.py:329 #, python-format msgid "Please wait. Cleaning %s." msgstr "" #: ../bleachbit/Worker.py:204 msgid "Please wait. Wiping file system metadata." msgstr "" #: ../bleachbit/Worker.py:207 msgid "Please wait. Cleaning up after wiping file system metadata." msgstr "" #: ../bleachbit/Worker.py:210 #, python-format msgid "About %d minute remaining." msgid_plural "About %d minutes remaining." msgstr[0] "" msgstr[1] "" #. TRANSLATORS: This refers to disk space that was #. really recovered (in other words, not a preview) #: ../bleachbit/Worker.py:268 #, python-format msgid "Disk space recovered: %s" msgstr "" #. TRANSLATORS: This refers to a preview (no real #. changes were made yet) #: ../bleachbit/Worker.py:272 #, python-format msgid "Disk space to be recovered: %s" msgstr "" #. TRANSLATORS: This refers to the number of files really #. deleted (in other words, not a preview). #: ../bleachbit/Worker.py:277 #, python-format msgid "Files deleted: %d" msgstr "" #. TRANSLATORS: This refers to the number of files that #. would be deleted (in other words, simply a preview). #: ../bleachbit/Worker.py:281 #, python-format msgid "Files to be deleted: %d" msgstr "" #: ../bleachbit/Worker.py:284 #, python-format msgid "Special operations: %d" msgstr "" #: ../bleachbit/Worker.py:287 #, python-format msgid "Errors: %d" msgstr "" #. TRANSLATORS: The "deep scan" feature searches over broad #. areas of the file system such as the user's whole home directory #. or all the system executables. #: ../bleachbit/Worker.py:303 msgid "Please wait. Running deep scan." msgstr "" #. TRANSLATORS: %s is replaced with Firefox, System, etc. #: ../bleachbit/Worker.py:332 #, python-format msgid "Please wait. Previewing %s." msgstr "" #: ../bleachbit/Update.py:77 msgid "New winapp2.ini was downloaded." msgstr "" #: ../bleachbit/Update.py:123 msgid "Update BleachBit" msgstr "" #: ../bleachbit/Update.py:128 msgid "A new version is available." msgstr "" #. TRANSLATORS: %s expands to version such as '0.8.4' or '0.8.5beta' or #. similar #: ../bleachbit/Update.py:137 #, python-format msgid "Update to version %s" msgstr "" #: ../bleachbit/Update.py:163 #, python-format msgid "" "Error when opening a network connection to %s to check for updates. Please " "verify the network is working." msgstr "" #: ../bleachbit/CLI.py:106 #, python-format msgid "not a valid cleaner: %s" msgstr "" #. TRANSLATORS: This is the command line usage. Don't translate #. %prog, but do translate usage, options, cleaner, and option. #. More information about the command line is here #. http://www.bleachbit.org/documentation/command-line #: ../bleachbit/CLI.py:133 msgid "usage: %prog [options] cleaner.option1 cleaner.option2" msgstr "" #: ../bleachbit/CLI.py:136 msgid "list cleaners" msgstr "" #. TRANSLATORS: predefined cleaners are for applications, such as Firefox and Flash. #. This is different than cleaning an arbitrary file, such as a #. spreadsheet on the desktop. #: ../bleachbit/CLI.py:141 msgid "run cleaners to delete files and make other permanent changes" msgstr "" #: ../bleachbit/CLI.py:144 msgid "shred specific files or folders" msgstr "" #: ../bleachbit/CLI.py:146 msgid "show system information" msgstr "" #: ../bleachbit/CLI.py:148 msgid "launch the graphical interface" msgstr "" #: ../bleachbit/CLI.py:150 msgid "do not prompt for administrator privileges" msgstr "" #: ../bleachbit/CLI.py:155 msgid "preview files to be deleted and other changes" msgstr "" #: ../bleachbit/CLI.py:157 msgid "use options set in the graphical interface" msgstr "" #: ../bleachbit/CLI.py:160 msgid "update winapp2.ini, if a new version is available" msgstr "" #: ../bleachbit/CLI.py:162 msgid "output version information and exit" msgstr "" #: ../bleachbit/CLI.py:164 msgid "overwrite files to hide contents" msgstr "" #. TRANSLATORS: this is the context menu #: ../bleachbit/Action.py:372 ../bleachbit/GUI.py:630 msgid "Clean" msgstr "" #: ../bleachbit/Action.py:392 #, python-format msgid "Run external command: %s" msgstr "" #: ../bleachbit/GUI.py:143 msgid "Active" msgstr "" #. TRANSLATORS: Size is the label for the column that shows how #. much space an option would clean or did clean #: ../bleachbit/GUI.py:155 msgid "Size" msgstr "" #. TRANSLATORS: %(cleaner) may be Firefox, System, etc. #. %(option) may be cache, logs, cookies, etc. #. %(warning) may be 'This option is really slow' #: ../bleachbit/GUI.py:186 #, python-format msgid "" "Warning regarding %(cleaner)s - %(option)s:\n" "\n" "%(warning)s" msgstr "" #: ../bleachbit/GUI.py:372 msgid "You must select an operation" msgstr "" #: ../bleachbit/GUI.py:392 ../bleachbit/GUI.py:415 msgid "Done." msgstr "" #: ../bleachbit/GUI.py:428 msgid "Program to clean unnecessary files" msgstr "" #: ../bleachbit/GUI.py:434 msgid "" "GNU General Public License version 3 or later.\n" "See http://www.gnu.org/licenses/gpl-3.0.txt" msgstr "" #. TRANSLATORS: Maintain the names of translators here. #. Launchpad does this automatically for translations #. typed in Launchpad. This is a special string shown #. in the 'About' box. #: ../bleachbit/GUI.py:440 msgid "translator-credits" msgstr "" "Launchpad Contributions:\n" " Danilo Silva https://launchpad.net/~shoyu\n" " mike https://launchpad.net/~dickmanitoba" #: ../bleachbit/GUI.py:452 msgid "System information" msgstr "" #: ../bleachbit/GUI.py:525 msgid "Choose files to shred" msgstr "" #: ../bleachbit/GUI.py:528 msgid "Choose folder to shred" msgstr "" #. TRANSLATORS: this is the context menu #: ../bleachbit/GUI.py:625 msgid "Preview" msgstr "" #: ../bleachbit/GUI.py:694 msgid "_Shred Files" msgstr "" #: ../bleachbit/GUI.py:696 msgid "Sh_red Folders" msgstr "" #: ../bleachbit/GUI.py:698 msgid "_Wipe Free Space" msgstr "" #: ../bleachbit/GUI.py:700 msgid "S_hred Settings and Quit" msgstr "" #: ../bleachbit/GUI.py:702 msgid "_Quit" msgstr "" #: ../bleachbit/GUI.py:704 msgid "_File" msgstr "" #: ../bleachbit/GUI.py:707 msgid "_Edit" msgstr "" #: ../bleachbit/GUI.py:708 msgid "Help Contents" msgstr "" #: ../bleachbit/GUI.py:711 msgid "_Release Notes" msgstr "" #: ../bleachbit/GUI.py:714 msgid "_System Information" msgstr "" #: ../bleachbit/GUI.py:717 msgid "_About" msgstr "" #: ../bleachbit/GUI.py:718 msgid "_Help" msgstr "" #: ../bleachbit/GUI.py:743 msgctxt "button" msgid "Preview" msgstr "" #: ../bleachbit/GUI.py:748 msgid "Preview files in the selected operations (without deleting any files)" msgstr "" #: ../bleachbit/GUI.py:758 msgctxt "button" msgid "Clean" msgstr "" #: ../bleachbit/GUI.py:762 msgid "Clean files in the selected operations" msgstr "" #: ../bleachbit/GUI.py:851 msgid "Error when checking for updates: " msgstr "" #: ../bleachbit/GUI.py:891 msgid "" "Error loading the SQLite module: the antivirus software may be blocking it." msgstr "" #: ../bleachbit/GUI.py:894 msgid "" "You are running BleachBit with administrative privileges for cleaning shared " "parts of the system, and references to the user profile folder will clean " "only the root account." msgstr "" bleachbit-2.0/po/sq.po0000644000175000017500000013272413245436307013013 0ustar hlehlemsgid "" msgstr "" "Project-Id-Version: bleachbit\n" "Report-Msgid-Bugs-To: FULL NAME \n" "POT-Creation-Date: 2016-06-24 19:52-0600\n" "PO-Revision-Date: 2016-09-10 00:51+0000\n" "Last-Translator: Arben Çokaj \n" "Language-Team: BMC Computer \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n != 1;\n" "X-Launchpad-Export-Date: 2016-09-11 17:32+0000\n" "X-Generator: Launchpad (build 18186)\n" "Language: sq\n" "X-Poedit-SourceCharset: UTF-8\n" #: ../cleaners/mc.xml ../cleaners/tortoisesvn.xml ../cleaners/vim.xml #: ../cleaners/safari.xml ../cleaners/links2.xml ../cleaners/seamonkey.xml #: ../cleaners/realplayer.xml ../cleaners/windows_defender.xml #: ../cleaners/d4x.xml ../cleaners/sqlite3.xml #: ../cleaners/internet_explorer.xml ../cleaners/libreoffice.xml #: ../cleaners/easytag.xml ../cleaners/bash.xml ../cleaners/nautilus.xml #: ../cleaners/octave.xml ../cleaners/elinks.xml ../cleaners/chromium.xml #: ../cleaners/google_chrome.xml msgid "History" msgstr "Historia" #: ../cleaners/mc.xml ../cleaners/tortoisesvn.xml ../cleaners/links2.xml #: ../cleaners/realplayer.xml ../cleaners/d4x.xml ../cleaners/libreoffice.xml #: ../cleaners/easytag.xml ../cleaners/nautilus.xml ../cleaners/gnome.xml #: ../bleachbit/Cleaner.py:351 ../bleachbit/Cleaner.py:425 #: ../bleachbit/Cleaner.py:434 msgid "Delete the usage history" msgstr "Fshij historinë e përdorimit" #: ../cleaners/gpodder.xml ../cleaners/hippo_opensim_viewer.xml #: ../cleaners/thumbnails.xml ../cleaners/safari.xml ../cleaners/emesene.xml #: ../cleaners/liferea.xml ../cleaners/seamonkey.xml ../cleaners/vuze.xml #: ../cleaners/yahoo_messenger.xml ../cleaners/pidgin.xml #: ../cleaners/adobe_reader.xml ../cleaners/evolution.xml #: ../cleaners/tremulous.xml ../cleaners/libreoffice.xml ../cleaners/xine.xml #: ../cleaners/nexuiz.xml ../cleaners/exaile.xml ../cleaners/opera.xml #: ../cleaners/amsn.xml ../cleaners/gftp.xml ../cleaners/miro.xml #: ../cleaners/beagle.xml ../cleaners/kde.xml ../cleaners/epiphany.xml #: ../cleaners/flash.xml ../cleaners/secondlife_viewer.xml ../cleaners/java.xml #: ../cleaners/chromium.xml ../cleaners/audacious.xml ../cleaners/rhythmbox.xml #: ../cleaners/google_chrome.xml ../cleaners/thunderbird.xml #: ../bleachbit/Cleaner.py:194 ../bleachbit/Cleaner.py:372 #: ../bleachbit/Cleaner.py:457 msgid "Cache" msgstr "Cache (vend i fshehtë)" #: ../cleaners/gpodder.xml ../cleaners/yum.xml #: ../cleaners/hippo_opensim_viewer.xml ../cleaners/thumbnails.xml #: ../cleaners/windows_explorer.xml ../cleaners/liferea.xml #: ../cleaners/vuze.xml ../cleaners/yahoo_messenger.xml ../cleaners/pidgin.xml #: ../cleaners/adobe_reader.xml ../cleaners/evolution.xml #: ../cleaners/libreoffice.xml ../cleaners/apt.xml ../cleaners/xine.xml #: ../cleaners/nexuiz.xml ../cleaners/exaile.xml ../cleaners/amsn.xml #: ../cleaners/gftp.xml ../cleaners/miro.xml ../cleaners/beagle.xml #: ../cleaners/kde.xml ../cleaners/flash.xml ../cleaners/secondlife_viewer.xml #: ../cleaners/java.xml ../cleaners/audacious.xml ../cleaners/rhythmbox.xml #: ../bleachbit/Cleaner.py:372 ../bleachbit/Cleaner.py:457 #: ../bleachbit/Cleaner.py:491 ../bleachbit/Cleaner.py:493 msgid "Delete the cache" msgstr "Fshij cache (vend i fshehur)" #. TRANSLATORS: Vacuum is a verb. The term is jargon #. from the SQLite database. Microsoft Access uses #. the term 'Compact Database' (which you may translate #. instead). Another synonym is 'defragment.' #: ../cleaners/gpodder.xml ../cleaners/yum.xml ../cleaners/safari.xml #: ../cleaners/liferea.xml ../cleaners/chromium.xml #: ../cleaners/google_chrome.xml ../cleaners/thunderbird.xml #: ../bleachbit/Cleaner.py:216 ../bleachbit/Cleaner.py:362 #: ../bleachbit/Action.py:419 msgid "Vacuum" msgstr "Vakumi" #: ../cleaners/gpodder.xml ../cleaners/yum.xml ../cleaners/safari.xml #: ../cleaners/liferea.xml ../cleaners/chromium.xml #: ../cleaners/google_chrome.xml ../cleaners/thunderbird.xml #: ../bleachbit/Cleaner.py:217 msgid "" "Clean database fragmentation to reduce space and improve speed without " "removing any data" msgstr "" "Pastro fragmentimin e databazës për të reduktuar hapësirën dhe përmirësuar " "shpejtësinë, pa larguar asnjë të dhënë" #: ../cleaners/yum.xml ../cleaners/apt.xml msgid "Package manager" msgstr "Menaxheri i pakove" #: ../cleaners/warzone2100.xml ../cleaners/hippo_opensim_viewer.xml #: ../cleaners/gl-117.xml ../cleaners/tremulous.xml ../cleaners/nexuiz.xml #: ../cleaners/secondlife_viewer.xml msgid "Game" msgstr "Lojë" #: ../cleaners/warzone2100.xml ../cleaners/hippo_opensim_viewer.xml #: ../cleaners/teamviewer.xml ../cleaners/realplayer.xml ../cleaners/vuze.xml #: ../cleaners/yahoo_messenger.xml ../cleaners/amule.xml #: ../cleaners/easytag.xml ../cleaners/exaile.xml ../cleaners/screenlets.xml #: ../cleaners/gftp.xml ../cleaners/miro.xml ../cleaners/audacious.xml #: ../bleachbit/Cleaner.py:488 msgid "Logs" msgstr "Regjistrat (logs)" #: ../cleaners/warzone2100.xml ../cleaners/hippo_opensim_viewer.xml #: ../cleaners/teamviewer.xml ../cleaners/realplayer.xml ../cleaners/vuze.xml #: ../cleaners/yahoo_messenger.xml ../cleaners/amule.xml ../cleaners/exaile.xml #: ../cleaners/screenlets.xml ../cleaners/gftp.xml ../cleaners/miro.xml #: ../cleaners/audacious.xml ../bleachbit/Cleaner.py:488 msgid "Delete the logs" msgstr "Fshij regjistrat (logs)" #: ../cleaners/thumbnails.xml ../cleaners/windows_explorer.xml msgid "Thumbnails" msgstr "Miniaturat" #: ../cleaners/thumbnails.xml msgid "Icons for files on the system" msgstr "Ikonat për filet në sistem" #: ../cleaners/vim.xml ../cleaners/gedit.xml msgid "Editor" msgstr "Editor" #: ../cleaners/vim.xml msgid "" "Delete ~/.viminfo which includes file history, command history, and buffers" msgstr "" "Fshij ~/.viminfo e cila përfshin historinë e fileve, historinë e komandave " "dhe zbutësit" #: ../cleaners/filezilla.xml ../cleaners/transmission.xml ../cleaners/vuze.xml #: ../cleaners/amule.xml ../cleaners/gftp.xml msgid "File transfer client" msgstr "Klient i transferimit të fileve" #: ../cleaners/filezilla.xml ../cleaners/paint.xml #: ../cleaners/windows_media_player.xml ../cleaners/windows_explorer.xml #: ../cleaners/teamviewer.xml ../cleaners/microsoft_office.xml #: ../cleaners/vlc.xml ../cleaners/adobe_reader.xml ../cleaners/winamp.xml #: ../cleaners/winzip.xml ../cleaners/winrar.xml ../cleaners/audacious.xml #: ../cleaners/wordpad.xml ../bleachbit/Cleaner.py:373 msgid "Most recently used" msgstr "Më të përdorura së fundi" #: ../cleaners/filezilla.xml ../cleaners/windows_explorer.xml #: ../cleaners/gwenview.xml ../cleaners/adobe_reader.xml ../cleaners/gedit.xml #: ../cleaners/kde.xml ../cleaners/audacious.xml ../bleachbit/Cleaner.py:374 #: ../bleachbit/Cleaner.py:471 msgid "Delete the list of recently used documents" msgstr "Fshij listën e dokumenteve të përdorura së fundi" #: ../cleaners/skype.xml ../cleaners/xchat.xml ../cleaners/emesene.xml #: ../cleaners/yahoo_messenger.xml ../cleaners/pidgin.xml ../cleaners/amsn.xml msgid "Chat client" msgstr "Klient bisede" #: ../cleaners/skype.xml ../cleaners/xchat.xml ../cleaners/emesene.xml #: ../cleaners/seamonkey.xml ../cleaners/yahoo_messenger.xml #: ../cleaners/pidgin.xml ../cleaners/amsn.xml msgid "Chat logs" msgstr "Regjistra bisede" #: ../cleaners/skype.xml ../cleaners/xchat.xml ../cleaners/emesene.xml #: ../cleaners/seamonkey.xml ../cleaners/yahoo_messenger.xml #: ../cleaners/pidgin.xml ../cleaners/amsn.xml msgid "Delete the chat logs" msgstr "Fshij regjistrat (logs) e bisedës" #: ../cleaners/skype.xml msgid "Installers" msgstr "Instaluesit" #: ../cleaners/skype.xml msgid "Delete cached patches and installers" msgstr "Fshij arnat e ruajtur dhe instaluesit" #: ../cleaners/safari.xml ../cleaners/links2.xml ../cleaners/seamonkey.xml #: ../cleaners/konqueror.xml ../cleaners/internet_explorer.xml #: ../cleaners/opera.xml ../cleaners/epiphany.xml ../cleaners/elinks.xml #: ../cleaners/chromium.xml ../cleaners/google_chrome.xml #: ../bleachbit/Cleaner.py:228 msgid "Web browser" msgstr "Shfletues ueb" #: ../cleaners/safari.xml ../cleaners/seamonkey.xml ../cleaners/opera.xml #: ../cleaners/epiphany.xml ../cleaners/chromium.xml #: ../cleaners/google_chrome.xml ../cleaners/thunderbird.xml #: ../bleachbit/Cleaner.py:195 msgid "Delete the web cache, which reduces time to display revisited pages" msgstr "" "Fshij ueb cache, që redukton kohën e shfaqjes së faqeve të rivizituara" #: ../cleaners/safari.xml ../cleaners/liferea.xml ../cleaners/seamonkey.xml #: ../cleaners/realplayer.xml ../cleaners/konqueror.xml #: ../cleaners/internet_explorer.xml ../cleaners/opera.xml #: ../cleaners/epiphany.xml ../cleaners/flash.xml ../cleaners/silverlight.xml #: ../cleaners/chromium.xml ../cleaners/google_chrome.xml #: ../cleaners/thunderbird.xml ../bleachbit/Cleaner.py:196 msgid "Cookies" msgstr "Cookies (gatime)" #: ../cleaners/safari.xml ../cleaners/liferea.xml ../cleaners/seamonkey.xml #: ../cleaners/realplayer.xml ../cleaners/konqueror.xml #: ../cleaners/internet_explorer.xml ../cleaners/opera.xml #: ../cleaners/epiphany.xml ../cleaners/flash.xml ../cleaners/silverlight.xml #: ../cleaners/chromium.xml ../cleaners/google_chrome.xml #: ../cleaners/thunderbird.xml ../bleachbit/Cleaner.py:197 msgid "" "Delete cookies, which contain information such as web site preferences, " "authentication, and tracking identification" msgstr "" "Fshij gatimet (cookies), të cilat përmbajnë informacione të tilla si " "preferencat e ueb faqes, vërtetimet dhe identifikimin e gjurmës" #: ../cleaners/safari.xml ../cleaners/konqueror.xml #: ../cleaners/internet_explorer.xml ../cleaners/opera.xml #: ../bleachbit/Cleaner.py:215 msgid "List of visited web pages" msgstr "Lista e ueb faqeve të vizituara" #. Torrent software can block a list of IP addresses, such as those that may belong to malware or anti-piracy organizations #: ../cleaners/transmission.xml msgid "Blocklists" msgstr "Listat e blloqeve" #: ../cleaners/transmission.xml ../cleaners/windows_defender.xml #: ../cleaners/beagle.xml ../cleaners/thunderbird.xml ../cleaners/deepscan.xml #: ../bleachbit/Cleaner.py:199 msgid "Delete the files" msgstr "Fshij filet" #: ../cleaners/transmission.xml msgid "Blocklists will need update to work." msgstr "" "Lista e blloqeve do të ketë nevojë të aktualizohet për të punuar me " "efiçiencë." #: ../cleaners/transmission.xml msgid "Torrents" msgstr "Torrents" #: ../cleaners/transmission.xml msgid "Delete the torrents (just the metadata but not the files described)" msgstr "Fshij torrents (vetëm meta-data por jo filet e përshkruara)" #: ../cleaners/transmission.xml msgid "Statistics" msgstr "Statistikat" #: ../cleaners/transmission.xml msgid "Delete the file" msgstr "Fshij filin" #: ../cleaners/paint.xml ../cleaners/windows_media_player.xml #: ../cleaners/windows_explorer.xml ../cleaners/teamviewer.xml #: ../cleaners/microsoft_office.xml ../cleaners/vlc.xml ../cleaners/winamp.xml #: ../cleaners/winzip.xml ../cleaners/winrar.xml ../cleaners/wordpad.xml msgid "Delete the most recently used list" msgstr "Fshij lisën e përdorur më së fundi" #: ../cleaners/emesene.xml msgid "Delete the avatars and emoticons cache" msgstr "Fshij cache për avatars dhe emotikona" #: ../cleaners/windows_media_player.xml ../cleaners/realplayer.xml #: ../cleaners/vlc.xml ../cleaners/winamp.xml msgid "Media player" msgstr "Media luajtës" #: ../cleaners/windows_explorer.xml ../cleaners/nautilus.xml msgid "File manager" msgstr "Menaxhuesi i fileve" #: ../cleaners/windows_explorer.xml ../cleaners/gwenview.xml #: ../cleaners/gedit.xml ../cleaners/kde.xml ../bleachbit/Cleaner.py:470 msgid "Recent documents list" msgstr "Lista e dokumenteve të fundit" #. In Windows 'Run' is the dialog in the Start menu #. In GNOME 'Run' is the dialog shown when typing ALT+F2' #: ../cleaners/windows_explorer.xml ../cleaners/gnome.xml msgid "Run" msgstr "Ekzekuto" #: ../cleaners/windows_explorer.xml ../cleaners/opera.xml ../cleaners/gnome.xml #: ../cleaners/google_toolbar.xml msgid "Search history" msgstr "Historia e kërkimit" #: ../cleaners/windows_explorer.xml ../cleaners/opera.xml ../cleaners/gnome.xml #: ../cleaners/google_toolbar.xml msgid "Delete the search history" msgstr "Fshij historinë e kërkimit" #: ../cleaners/windows_explorer.xml msgid "This will restart Windows Explorer." msgstr "Kjo do të rifillojë Windows Explorer." #: ../cleaners/gl-117.xml ../cleaners/microsoft_office.xml #: ../cleaners/beagle.xml ../cleaners/secondlife_viewer.xml ../cleaners/x11.xml msgid "Debug logs" msgstr "Regjistrat debug (rregullime)" #: ../cleaners/gl-117.xml ../cleaners/microsoft_office.xml #: ../cleaners/easytag.xml ../cleaners/beagle.xml #: ../cleaners/secondlife_viewer.xml ../cleaners/x11.xml msgid "Delete the debug logs" msgstr "Fshij regjistrat debug" #: ../cleaners/google_earth.xml ../cleaners/winetricks.xml ../cleaners/vuze.xml #: ../cleaners/adobe_reader.xml ../cleaners/amule.xml ../cleaners/wine.xml #: ../cleaners/internet_explorer.xml ../cleaners/gimp.xml ../cleaners/kde.xml #: ../cleaners/deepscan.xml ../bleachbit/Cleaner.py:522 msgid "Temporary files" msgstr "Filet e përkohëshme" #: ../cleaners/google_earth.xml ../cleaners/winetricks.xml ../cleaners/vuze.xml #: ../cleaners/adobe_reader.xml ../cleaners/amule.xml ../cleaners/wine.xml #: ../cleaners/internet_explorer.xml ../cleaners/gimp.xml ../cleaners/kde.xml #: ../cleaners/deepscan.xml ../bleachbit/Cleaner.py:522 msgid "Delete the temporary files" msgstr "Fshij filet e përkohëshme" #: ../cleaners/seamonkey.xml ../cleaners/opera.xml ../bleachbit/Cleaner.py:203 msgid "Download history" msgstr "Historinë e shkarkimit" #: ../cleaners/seamonkey.xml ../cleaners/opera.xml ../bleachbit/Cleaner.py:203 msgid "List of files downloaded" msgstr "Lista e fileve të shkarkuara" #: ../cleaners/seamonkey.xml msgid "Delete the list of visited web pages" msgstr "Fshij listën e ueb faqeve të vizituara" #: ../cleaners/vuze.xml ../cleaners/deepscan.xml ../bleachbit/Cleaner.py:192 msgid "Backup files" msgstr "Kopje e sigurisë (backup) fileve" #: ../cleaners/vuze.xml ../cleaners/deepscan.xml ../bleachbit/Cleaner.py:193 msgid "Delete the backup files" msgstr "Fshij filet backup (kopje e sigurisë)" #: ../cleaners/konqueror.xml ../cleaners/opera.xml ../cleaners/chromium.xml msgid "Current session" msgstr "Sesioni aktual" #: ../cleaners/konqueror.xml ../cleaners/opera.xml ../cleaners/chromium.xml msgid "Delete the current session" msgstr "Fshij sesionin aktual" #: ../cleaners/konqueror.xml ../cleaners/opera.xml ../bleachbit/Cleaner.py:215 msgid "URL history" msgstr "Historia URL" #: ../cleaners/microsoft_office.xml ../cleaners/libreoffice.xml #: ../bleachbit/Cleaner.py:377 msgid "Office suite" msgstr "Suita e zyrës" #: ../cleaners/windows_defender.xml msgid "Anti-virus" msgstr "Anti-virus" #: ../cleaners/adobe_reader.xml msgid "Document viewer" msgstr "Shfaqësi i dokumentit" #: ../cleaners/evolution.xml ../cleaners/thunderbird.xml msgid "Email client" msgstr "Email klient" #: ../cleaners/tremulous.xml msgid "Delete the list of game servers" msgstr "Fshij listën e serverave të lojërave" #: ../cleaners/sqlite3.xml ../cleaners/bash.xml ../cleaners/octave.xml msgid "Delete the command history" msgstr "Fshij historinë e komandave" #: ../cleaners/wine.xml msgid "Compatibility layer for Windows software" msgstr "Shtresë e përshtatsme për Windows software" #: ../cleaners/internet_explorer.xml ../cleaners/chromium.xml #: ../cleaners/google_chrome.xml ../bleachbit/Cleaner.py:204 msgid "Form history" msgstr "Historia e formularit" #: ../cleaners/internet_explorer.xml ../bleachbit/Cleaner.py:205 msgid "A history of forms entered in web sites and in the Search bar" msgstr "Një histori e formularëve të futura në ueb faqe dhe në linjën Kërko" #. This software edits metadata tags, such as title and artist, in audio files #: ../cleaners/easytag.xml msgid "Audio files tagger" msgstr "Audio etiketuesi i fileve" #: ../cleaners/apt.xml msgid "Delete obsolete files" msgstr "Fshij filet e vjetër" #: ../cleaners/apt.xml msgid "Package lists" msgstr "Listat e pakove" #: ../cleaners/xine.xml ../cleaners/miro.xml ../cleaners/flash.xml msgid "Multimedia viewer" msgstr "Multimedia shfaqës" #: ../cleaners/recoll.xml ../cleaners/beagle.xml msgid "Search tool" msgstr "Mjeti i kërkimit" #: ../cleaners/recoll.xml ../cleaners/beagle.xml ../cleaners/thunderbird.xml msgid "Index" msgstr "Indeksi" #: ../cleaners/recoll.xml msgid "" "Delete the search index, a database of words and the files they contain" msgstr "" "Fshij indeksin e kërkimit, një databazë fjalësh dhe filet që ata përmbajnë" #: ../cleaners/gimp.xml msgid "Graphics editor" msgstr "Editori grafik" #: ../cleaners/exaile.xml msgid "Downloaded podcasts" msgstr "Shkarko podcasts" #: ../cleaners/exaile.xml msgid "Delete downloaded podcasts" msgstr "Fshij podcasts e shkarkuara" #: ../cleaners/bash.xml msgid "Shell" msgstr "Guaskë" #. TRANSLATORS: DOM = Document Object Model. #: ../cleaners/opera.xml ../cleaners/epiphany.xml ../cleaners/chromium.xml #: ../cleaners/google_chrome.xml ../bleachbit/Cleaner.py:201 msgid "DOM Storage" msgstr "Depoja DOM" #: ../cleaners/opera.xml ../cleaners/epiphany.xml ../cleaners/chromium.xml #: ../cleaners/google_chrome.xml ../bleachbit/Cleaner.py:201 msgid "Delete HTML5 cookies" msgstr "Fshij gatimet HTML5 (cookies)" #: ../cleaners/opera.xml ../cleaners/epiphany.xml ../cleaners/chromium.xml #: ../cleaners/google_chrome.xml ../cleaners/thunderbird.xml #: ../bleachbit/Cleaner.py:210 msgid "Passwords" msgstr "Fjalëkalimet" #: ../cleaners/opera.xml ../cleaners/epiphany.xml ../cleaners/chromium.xml #: ../cleaners/google_chrome.xml ../cleaners/thunderbird.xml #: ../bleachbit/Cleaner.py:211 msgid "" "A database of usernames and passwords as well as a list of sites that should " "not store passwords" msgstr "" "Një databazë e emrave të përdoruesve dhe fjalëkalimeve ashtu si edhe një " "listë të uebfaqeve, që nuk duhet të ruajnë fjalëkalimre" #: ../cleaners/opera.xml ../cleaners/epiphany.xml ../cleaners/chromium.xml #: ../cleaners/google_chrome.xml ../cleaners/thunderbird.xml #: ../bleachbit/Cleaner.py:213 msgid "This option will delete your saved passwords." msgstr "Ky opsion do të fshijë fjalëkalimet e ruajtura." #: ../cleaners/nautilus.xml msgid "Custom folders will be reset." msgstr "Dosjet e përshtatura do të rivendosen." #: ../cleaners/gnome.xml ../cleaners/kde.xml msgid "Desktop environment" msgstr "Desktop mjedis" #: ../cleaners/screenlets.xml msgid "Widgets for the desktop" msgstr "Widgets për desktop" #: ../cleaners/epiphany.xml msgid "Places" msgstr "Vendet" #: ../cleaners/epiphany.xml msgid "" "A database of URLs including bookmarks, favicons, and a history of visited " "web sites" msgstr "" "Një databazë e URL-ve përfshin faqerojtës (bookmarks), favicons, dhe një " "histori të uebfaqeve të vizituara" #: ../cleaners/epiphany.xml msgid "This option deletes all bookmarks." msgstr "Ky opsion fshin të gjithë faqerojtësit (bookmarks)." #: ../cleaners/winrar.xml msgid "File archiver" msgstr "Arkivuesi i fileve" #: ../cleaners/elinks.xml msgid "Delete the cookies, visited URLs, and search history" msgstr "" "Fshij gatimet (cookies), URL-të e vizituara, dhe historinë e kërkimit" #: ../cleaners/chromium.xml ../cleaners/google_chrome.xml msgid "A history of forms entered in web sites" msgstr "Një histori e formularëve të futura në ueb faqe" #: ../cleaners/chromium.xml ../cleaners/google_chrome.xml msgid "" "Delete the history which includes visited sites, downloads, and thumbnails" msgstr "" "Fshij historinë që përfshin uebfaqet e vizituara, shkarkimet, dhe miniaturat" #: ../cleaners/chromium.xml ../cleaners/google_chrome.xml msgid "Search engines" msgstr "Makinat e kërkimit" #. 'Factory' means a search engine that is installed by default 'from the factory,' but this is different than a 'default search engine' https://lists.launchpad.net/launchpad-translators/msg00283.html #: ../cleaners/chromium.xml ../cleaners/google_chrome.xml msgid "" "Reset the search engine usage history and delete non-factory search engines, " "some of which are added automatically" msgstr "" "Rivendos historinë e përdorimit të makinës së kërkimit dhe fshij makinat e " "kërkimit të jo-fabrikuara, disa prej të cilave janë shtuar automatikisht" #: ../cleaners/audacious.xml msgid "Audio player" msgstr "Audio luajtës" #: ../cleaners/rhythmbox.xml msgid "Database" msgstr "Databaza" #: ../cleaners/rhythmbox.xml msgid "" "Delete the database, which contain information such as play count and last " "played" msgstr "" "Fshij databazën, që përmban informacion të tillë si numrin e luajtjeve dhe " "luajtjen e fundit" #: ../cleaners/google_chrome.xml msgid "Session" msgstr "Sesioni" #: ../cleaners/google_chrome.xml msgid "Delete the current and last sessions" msgstr "Fshij sesionet aktuale dhe të kaluar" #: ../cleaners/x11.xml msgid "Windowing system" msgstr "Windowing sistem" #: ../cleaners/wordpad.xml msgid "Word processor" msgstr "Procesori i fjalëve" #: ../cleaners/deepscan.xml msgid "Deep scan" msgstr "Skanim i thellë" #: ../cleaners/deepscan.xml msgid "Clean files widely scattered across the disk" msgstr "Pastro filet e shpërndara gjerësisht përgjatë diskut" #: ../cleaners/deepscan.xml msgid "Inspect the preview for any files you want to keep." msgstr "Inspekto pamjen për çdo fil që doni të mbani." #: ../cleaners/deepscan.xml msgid "This option is slow." msgstr "Ky opsion është i ngadalshëm." #: ../bleachbit.desktop msgid "Unnecessary file cleaner" msgstr "Pastrues filesh i panevojshëm" #: ../bleachbit.desktop msgid "Free space and maintain privacy" msgstr "Liro hapësirë dhe mbaj privacinë" #. TRANSLATORS: This is the label in the log indicating was #. skipped because it matches the whitelist #: ../bleachbit/Command.py:44 msgid "Skip" msgstr "Shmang" #. TRANSLATORS: This is the label in the log indicating will be #. deleted (for previews) or was actually deleted #: ../bleachbit/Command.py:74 msgid "Delete" msgstr "Fshij" #. TRANSLATORS: The file will be deleted when the #. system reboots #: ../bleachbit/Command.py:95 msgid "Mark for deletion" msgstr "Shënjo për fshirje" #. TRANSLATORS: Parts of this file will be deleted #: ../bleachbit/Command.py:192 ../bleachbit/Command.py:226 #: ../bleachbit/Action.py:256 ../bleachbit/Action.py:269 #: ../bleachbit/Action.py:282 ../bleachbit/Action.py:295 #: ../bleachbit/Action.py:308 msgid "Clean file" msgstr "Pastro filin" #. TRANSLATORS: The file will be truncated to 0 bytes in length #: ../bleachbit/Command.py:268 msgid "Truncate" msgstr "Cungimi" #: ../bleachbit/Command.py:311 msgid "Delete registry key" msgstr "Fshij çelësin e regjistrit" #: ../bleachbit/Unix.py:340 ../bleachbit/Unix.py:370 ../bleachbit/Unix.py:574 #, python-format msgid "Executable not found: %s" msgstr "Të ekzekutueshmet nuk gjenden: %s" #. TRANSLATORS: %s expands to a name such as 'Firefox' or 'System'. #: ../bleachbit/Unix.py:571 ../bleachbit/Worker.py:141 #, python-format msgid "" "%s cannot be cleaned because it is currently running. Close it, and try " "again." msgstr "" "%s nuk mund të pastrohet sepse është aktualisht në funksion. Mbylle atë, " "dhe provo përsëri." #: ../bleachbit/GuiBasic.py:112 msgid "Delete confirmation" msgstr "Fshij konfirmimin" #: ../bleachbit/GuiBasic.py:122 msgid "" "Are you sure you want to permanently delete files according to the selected " "operations? The actual files that will be deleted may have changed since " "you ran the preview." msgstr "" "A jeni i sigurtë se doni t'i fshini filet përfundimisht, në përputhje me " "veprimet e zgjedhura? Filet aktuale që do të fshihen mund të kenë " "ndryshuar, që nga hera e fundit që keni ekzekutuar paraqit (preview)." #: ../bleachbit/GuiBasic.py:125 msgid "Are you sure you want to permanently delete these files?" msgstr "A jeni i sigurtë se doni t'i fshini këto file përfundimisht?" #: ../bleachbit/GuiBasic.py:162 #, python-format msgid "" "Because you are running as root, please manually open this link in a web " "browser:\n" "%s" msgstr "" "Për arsye se jeni duke ekzekutuar si rrënjë (root), ju lutem hapni " "manualisht këtë lidhje në një shfletues ueb:\n" "%s" #. TRANSLATORS: %s expands to www.bleachbit.org or similar #: ../bleachbit/GuiBasic.py:174 #, python-format msgid "Open web browser to %s?" msgstr "Hap shfletuesin ueb në %s?" #. TRANSLATORS: This is cleaner name for cleaners imported from winapp2.ini #: ../bleachbit/Winapp.py:44 msgid "Applications" msgstr "Aplikacione" #. TRANSLATORS: This is cleaner name for cleaners imported #. from winapp2.ini #: ../bleachbit/Winapp.py:47 msgid "Internet" msgstr "Interneti" #. TRANSLATORS: This is cleaner name for cleaners imported #. from winapp2.ini #: ../bleachbit/Winapp.py:50 msgid "Multimedia" msgstr "Multimedia" #. TRANSLATORS: This is cleaner name for cleaners imported #. from winapp2.ini #: ../bleachbit/Winapp.py:53 msgid "Utilities" msgstr "Shërbimet" #: ../bleachbit/Winapp.py:64 msgid "Games" msgstr "Lojëra" #: ../bleachbit/Winapp.py:165 msgid "Imported from winapp2.ini" msgstr "Importuar nga winapp2.ini" #: ../bleachbit/Cleaner.py:199 msgid "Crash reports" msgstr "Raportet e defekteve" #: ../bleachbit/Cleaner.py:206 msgid "Session restore" msgstr "Rikthim i sesionit" #: ../bleachbit/Cleaner.py:207 msgid "Loads the initial session after the browser closes or crashes" msgstr "Ngarko sesionin fillestar pasi të mbyllet shfletuesi ose të thyhet" #: ../bleachbit/Cleaner.py:209 msgid "Site preferences" msgstr "Preferencat e uebfaqeve" #: ../bleachbit/Cleaner.py:209 msgid "Settings for individual sites" msgstr "Rregullimet për uebfaqet individuale" #. TRANSLATORS: desktop entries are .desktop files in Linux that #. make up the application menu (the menu that shows BleachBit, #. Firefox, and others. The .desktop files also associate file #. types, so clicking on an .html file in Nautilus brings up #. Firefox. #. More information: #. http://standards.freedesktop.org/menu-spec/latest/index.html#introduction #: ../bleachbit/Cleaner.py:455 msgid "Broken desktop files" msgstr "File të thyera të desktop" #: ../bleachbit/Cleaner.py:456 msgid "Delete broken application menu entries and file associations" msgstr "" "Fshij hyrjet e menysë së aplikacionit të dëmtuar dhe shoqërimet e filit" #. TRANSLATORS: Localizations are files supporting specific #. languages, so applications appear in Spanish, etc. #: ../bleachbit/Cleaner.py:460 msgid "Localizations" msgstr "Lokalizimet" #: ../bleachbit/Cleaner.py:461 msgid "Delete files for unwanted languages" msgstr "Fshij filet për gjuhët e padëshiruara" #: ../bleachbit/Cleaner.py:463 msgid "Configure this option in the preferences." msgstr "Konfiguro këtë opsion tek preferencat." #: ../bleachbit/Cleaner.py:469 msgid "Rotated logs" msgstr "Regjistrat (logs) rrotullues" #: ../bleachbit/Cleaner.py:469 msgid "Delete old system logs" msgstr "Fshij regjistrat e vjetër të sistemit" #: ../bleachbit/Cleaner.py:472 msgid "Trash" msgstr "Rubbish Bin (koshi i mbeturinave)" #: ../bleachbit/Cleaner.py:472 msgid "Empty the trash" msgstr "Zbraz Rubbish Bin (koshin e mbeturinave)" #: ../bleachbit/Cleaner.py:478 ../bleachbit/Cleaner.py:629 #: ../bleachbit/Worker.py:189 msgid "Memory" msgstr "Kujtesë" #. TRANSLATORS: 'free' means 'unallocated' #: ../bleachbit/Cleaner.py:480 msgid "Wipe the swap and free memory" msgstr "Fshij shkëmbimin dhe liro kujtesë" #: ../bleachbit/Cleaner.py:482 msgid "This option is experimental and may cause system problems." msgstr "" "Ky opsion është eksperimental dhe mund të shkaktojë probleme të sistemit." #: ../bleachbit/Cleaner.py:490 msgid "Memory dump" msgstr "Mbetjet e kujtesës" #: ../bleachbit/Cleaner.py:490 msgid "Delete the file memory.dmp" msgstr "Fshij filin memory.dmp" #. TRANSLATORS: Prefetch is Microsoft Windows jargon. #: ../bleachbit/Cleaner.py:493 msgid "Prefetch" msgstr "Prefetch" #: ../bleachbit/Cleaner.py:495 msgid "Recycle bin" msgstr "Recycle bin (koshi i mbeturinave)" #: ../bleachbit/Cleaner.py:495 msgid "Empty the recycle bin" msgstr "Zbraz recycle bin (koshin e mbeturinave)" #. TRANSLATORS: 'Update' is a noun, and 'Update uninstallers' is an option to delete #. the uninstallers for software updates. #: ../bleachbit/Cleaner.py:498 msgid "Update uninstallers" msgstr "Aktualizo ç'instaluesit" #: ../bleachbit/Cleaner.py:499 msgid "" "Delete uninstallers for Microsoft updates including hotfixes, service packs, " "and Internet Explorer updates" msgstr "" "Fshij ç'instaluesit për aktualizimet e Microsoft, duke përfshirë hotfixes, " "pakot e shërbimit dhe aktualizimet e Internet Explorer" #: ../bleachbit/Cleaner.py:506 ../bleachbit/Cleaner.py:722 msgid "Clipboard" msgstr "Bordi i klipeve" #: ../bleachbit/Cleaner.py:507 msgid "" "The desktop environment's clipboard used for copy and paste operations" msgstr "" "Mjediset desktop të clipboard (bordi i klipeve) përdoren për veprimet kopjo " "dhe ngjit" #. TRANSLATORS: "Custom" is an option allowing the user to specify which #. files and folders will be erased. #: ../bleachbit/Cleaner.py:514 ../bleachbit/GuiPreferences.py:63 msgid "Custom" msgstr "Përshtatja" #: ../bleachbit/Cleaner.py:515 msgid "Delete user-specified files and folders" msgstr "Fshij filet dhe dosjet e specifikuara sipas përdoruesit" #. TRANSLATORS: 'free' means 'unallocated' #: ../bleachbit/Cleaner.py:517 msgid "Free disk space" msgstr "Liro hapësirë disku" #. TRANSLATORS: 'free' means 'unallocated' #: ../bleachbit/Cleaner.py:519 msgid "Overwrite free disk space to hide deleted files" msgstr "Mbishkruaj hapësirën e lirë në disk për të fshehur filet e fshira" #: ../bleachbit/Cleaner.py:520 msgid "This option is very slow." msgstr "Ky opsion është shumë i ngadalshëm." #: ../bleachbit/Cleaner.py:524 msgid "The system in general" msgstr "Sistemi në përgjithësi" #: ../bleachbit/Cleaner.py:526 ../bleachbit/Cleaner.py:846 msgid "System" msgstr "Sistemi" #. TRANSLATORS: 'Free' means 'unallocated.' #. %s expands to a path such as C:\ or /tmp/ #: ../bleachbit/Cleaner.py:730 ../bleachbit/Cleaner.py:879 #, python-format msgid "Overwrite free disk space %s" msgstr "Mbishkruaj hapësirën e lirë të diskut %s" #: ../bleachbit/GuiPreferences.py:55 ../bleachbit/GUI.py:706 msgid "Preferences" msgstr "Preferencat" #: ../bleachbit/GuiPreferences.py:61 msgid "General" msgstr "E përgjithshme" #: ../bleachbit/GuiPreferences.py:64 msgid "Drives" msgstr "Disqet" #: ../bleachbit/GuiPreferences.py:67 msgid "Languages" msgstr "Gjuhët" #: ../bleachbit/GuiPreferences.py:69 msgid "Whitelist" msgstr "Lista e bardhë" #: ../bleachbit/GuiPreferences.py:114 msgid "Check periodically for software updates via the Internet" msgstr "" "Kontrollo periodikisht për aktualizime të (programit) software via Internet" #: ../bleachbit/GuiPreferences.py:119 msgid "" "If an update is found, you will be given the option to view information " "about it. Then, you may manually download and install the update." msgstr "" "Nëse është gjetur një aktualizim, do u jepet mundësia për të parë " "informacionin rreth tij. Pastaj, mund ta shkarkoni manualisht dhe instaloni " "aktualizimin." #: ../bleachbit/GuiPreferences.py:125 msgid "Check for new beta releases" msgstr "Kontrollo për versione të reja beta" #: ../bleachbit/GuiPreferences.py:134 msgid "Download and update cleaners from community (winapp2.ini)" msgstr "Shkarko dhe aktualizo pastruesit nga komuniteti (winapp2.ini)" #. TRANSLATORS: This means to hide cleaners which would do #. nothing. For example, if Firefox were never used on #. this system, this option would hide Firefox to simplify #. the list of cleaners. #: ../bleachbit/GuiPreferences.py:148 msgid "Hide irrelevant cleaners" msgstr "Fshih pastruesit irrelevantë" #. TRANSLATORS: Overwriting is the same as shredding. It is a way #. to prevent recovery of the data. You could also translate #. 'Shred files to prevent recovery.' #: ../bleachbit/GuiPreferences.py:156 msgid "Overwrite files to hide contents" msgstr "Mbishkruaj filet për të fshirë përmbajtjen" #: ../bleachbit/GuiPreferences.py:160 msgid "" "Overwriting is ineffective on some file systems and with certain BleachBit " "operations. Overwriting is significantly slower." msgstr "" "Mbishkrimi është i paefektshëm në disa sisteme filesh dhe me veprime të " "caktuara BleachBit. Mbishkrimi është dukshëm më i ngadalshëm." #: ../bleachbit/GuiPreferences.py:163 msgid "Start BleachBit with computer" msgstr "Fillo BleachBit me kompjuterin" #: ../bleachbit/GuiPreferences.py:169 msgid "Exit after cleaning" msgstr "Dalje pas pastrimit" #: ../bleachbit/GuiPreferences.py:175 msgid "Confirm before delete" msgstr "Konfirmo para fshirjes" #: ../bleachbit/GuiPreferences.py:183 msgid "Use IEC sizes (1 KiB = 1024 bytes) instead of SI (1 kB = 1000 bytes)" msgstr "" "Përdor madhësitë IEC (1 KiB = 1024 bajt) në vend të SI (1 kB = 1000 bajt)" #: ../bleachbit/GuiPreferences.py:194 ../bleachbit/GuiPreferences.py:323 #: ../bleachbit/GuiPreferences.py:364 ../bleachbit/GUI.py:592 msgid "Choose a folder" msgstr "Zgjedh një dosje" #: ../bleachbit/GuiPreferences.py:218 msgid "" "Choose a writable folder for each drive for which to overwrite free space." msgstr "" "Zgjedh një dosje të shkrueshme për secilin disk, për të cilin doni të " "mbishkruani hapësirë të lirë." #. TRANSLATORS: In the preferences dialog, this button adds a path to #. the list of paths #: ../bleachbit/GuiPreferences.py:240 msgctxt "button" msgid "Add" msgstr "Shto" #. TRANSLATORS: In the preferences dialog, this button removes a path #. from the list of paths #: ../bleachbit/GuiPreferences.py:244 ../bleachbit/GuiPreferences.py:455 msgctxt "button" msgid "Remove" msgstr "Largo" #: ../bleachbit/GuiPreferences.py:269 msgid "All languages will be deleted except those checked." msgstr "Të gjitha gjuhët do të fshihen, përveç atyre të shënuara." #: ../bleachbit/GuiPreferences.py:285 msgid "Preserve" msgstr "Mbro" #: ../bleachbit/GuiPreferences.py:289 msgid "Code" msgstr "Kodi" #: ../bleachbit/GuiPreferences.py:293 ../bleachbit/GUI.py:135 msgid "Name" msgstr "Emri" #: ../bleachbit/GuiPreferences.py:310 ../bleachbit/GuiPreferences.py:351 msgid "Choose a file" msgstr "Zgjedh një fil" #: ../bleachbit/GuiPreferences.py:317 ../bleachbit/GuiPreferences.py:358 #: ../bleachbit/GuiPreferences.py:402 msgid "File" msgstr "Fili" #: ../bleachbit/GuiPreferences.py:331 ../bleachbit/GuiPreferences.py:372 #: ../bleachbit/GuiPreferences.py:404 msgid "Folder" msgstr "Dosje" #: ../bleachbit/GuiPreferences.py:414 msgid "Theses paths will not be deleted or modified." msgstr "Këto rrugë nuk do të fshihen ose modifikohen." #: ../bleachbit/GuiPreferences.py:417 msgid "These locations can be selected for deletion." msgstr "Këto lokalizime mund të zgjidhen për fshirje." #: ../bleachbit/GuiPreferences.py:425 msgid "Type" msgstr "Tipi" #. TRANSLATORS: In the tree view "Path" is used generically to refer to a #. file, a folder, or a pattern describing either #: ../bleachbit/GuiPreferences.py:431 msgid "Path" msgstr "Rruga" #: ../bleachbit/GuiPreferences.py:443 msgctxt "button" msgid "Add file" msgstr "Shto fil" #: ../bleachbit/GuiPreferences.py:449 msgctxt "button" msgid "Add folder" msgstr "Shto dosje" #: ../bleachbit/RecognizeCleanerML.py:57 msgid "Security warning" msgstr "Paralajmërim sigurie" #: ../bleachbit/RecognizeCleanerML.py:70 msgid "" "These cleaner definitions are new or have changed. Malicious definitions can " "damage your system. If you do not trust these changes, delete the files or " "quit." msgstr "" "Këto përkufizime pastrimi janë të reja ose kanë ndryshuar. Përkufizimet me " "qëllim të keq mund ta dëmtojnë sistemin tuaj. Nëse nuk i besoni këto " "ndryshime, fshini filet ose dilni." #: ../bleachbit/RecognizeCleanerML.py:85 msgctxt "column_label" msgid "Delete" msgstr "Fshij përfundimisht" #: ../bleachbit/RecognizeCleanerML.py:90 msgctxt "column_label" msgid "Filename" msgstr "Emri i filit" #. TRANSLATORS: This indicates an error. The special keyword #. %(operation)s will be replaced by 'firefox' or 'opera' or #. some other cleaner ID. The special keyword %(msg)s will be #. replaced by a message such as 'Permission denied.' #: ../bleachbit/Worker.py:74 #, python-format msgid "Exception while running operation '%(operation)s': '%(msg)s'" msgstr "Përjashtim ndërsa ekzekuton veprimin '%(operation)s': '%(msg)s'" #. TRANSLATORS: 'free' means 'unallocated' #: ../bleachbit/Worker.py:187 msgid "Please wait. Wiping free disk space." msgstr "Ju lutem prit. Fshin hapësirën e lirë të diskut." #. TRANSLATORS: %s is replaced with Firefox, System, etc. #: ../bleachbit/Worker.py:189 ../bleachbit/Worker.py:329 #, python-format msgid "Please wait. Cleaning %s." msgstr "Ju lutem prit. Pastron %s." #: ../bleachbit/Worker.py:204 msgid "Please wait. Wiping file system metadata." msgstr "Ju lutem prit. Fshirja e sistemit të fileve metadata." #: ../bleachbit/Worker.py:207 msgid "Please wait. Cleaning up after wiping file system metadata." msgstr "Ju lutem prit. Pastron pas fshirjes së sistemit të fileve metadata." #: ../bleachbit/Worker.py:210 #, python-format msgid "About %d minute remaining." msgid_plural "About %d minutes remaining." msgstr[0] "Rreth %d minut ka mbetur." msgstr[1] "Rreth %d minuta kanë mbetur." #. TRANSLATORS: This refers to disk space that was #. really recovered (in other words, not a preview) #: ../bleachbit/Worker.py:268 #, python-format msgid "Disk space recovered: %s" msgstr "Hapësira në disk e rikthyer: %s" #. TRANSLATORS: This refers to a preview (no real #. changes were made yet) #: ../bleachbit/Worker.py:272 #, python-format msgid "Disk space to be recovered: %s" msgstr "Hapësira në disk, që duhet rikthyer: %s" #. TRANSLATORS: This refers to the number of files really #. deleted (in other words, not a preview). #: ../bleachbit/Worker.py:277 #, python-format msgid "Files deleted: %d" msgstr "File të fshira: %d" #. TRANSLATORS: This refers to the number of files that #. would be deleted (in other words, simply a preview). #: ../bleachbit/Worker.py:281 #, python-format msgid "Files to be deleted: %d" msgstr "File që do të fshihen: %d" #: ../bleachbit/Worker.py:284 #, python-format msgid "Special operations: %d" msgstr "Veprime të veçanta: %d" #: ../bleachbit/Worker.py:287 #, python-format msgid "Errors: %d" msgstr "Gabimet: %d" #. TRANSLATORS: The "deep scan" feature searches over broad #. areas of the file system such as the user's whole home directory #. or all the system executables. #: ../bleachbit/Worker.py:303 msgid "Please wait. Running deep scan." msgstr "Ju lutem prit. Po kryen skanim të thellë." #. TRANSLATORS: %s is replaced with Firefox, System, etc. #: ../bleachbit/Worker.py:332 #, python-format msgid "Please wait. Previewing %s." msgstr "Ju lutem prit. Paraqet %s." #: ../bleachbit/Update.py:77 msgid "New winapp2.ini was downloaded." msgstr "winapp2.ini i ri u shkarkua." #: ../bleachbit/Update.py:123 msgid "Update BleachBit" msgstr "Aktualizo BleachBit" #: ../bleachbit/Update.py:128 msgid "A new version is available." msgstr "Një version i ri është i vlefshëm." #. TRANSLATORS: %s expands to version such as '0.8.4' or '0.8.5beta' or #. similar #: ../bleachbit/Update.py:137 #, python-format msgid "Update to version %s" msgstr "Aktualizo në versionin %s" #: ../bleachbit/Update.py:163 #, python-format msgid "" "Error when opening a network connection to %s to check for updates. Please " "verify the network is working." msgstr "" "Gabim kur hapën një rrjet lidhjesh për %s të kontrolluar për aktualizime. Ju " "lutem, verifiko nëse rrjeti funksionon." #: ../bleachbit/CLI.py:106 #, python-format msgid "not a valid cleaner: %s" msgstr "nuk ka pastrues të vlefshëm: %s" #. TRANSLATORS: This is the command line usage. Don't translate #. %prog, but do translate usage, options, cleaner, and option. #. More information about the command line is here #. http://www.bleachbit.org/documentation/command-line #: ../bleachbit/CLI.py:133 msgid "usage: %prog [options] cleaner.option1 cleaner.option2" msgstr "përdorimi: %prog [options] cleaner.option1 cleaner.option2" #: ../bleachbit/CLI.py:136 msgid "list cleaners" msgstr "listo pastruesit" #. TRANSLATORS: predefined cleaners are for applications, such as Firefox and Flash. #. This is different than cleaning an arbitrary file, such as a #. spreadsheet on the desktop. #: ../bleachbit/CLI.py:141 msgid "run cleaners to delete files and make other permanent changes" msgstr "" "ekzekuto pastruesit për të fshirë filet dhe bëj ndryshimet e tjera të " "përhershme" #: ../bleachbit/CLI.py:144 msgid "shred specific files or folders" msgstr "copëzo filet ose dosjet specifike" #: ../bleachbit/CLI.py:146 msgid "show system information" msgstr "shfaq informacionin e sistemit" #: ../bleachbit/CLI.py:148 msgid "launch the graphical interface" msgstr "lësho ndërfaqen grafike" #: ../bleachbit/CLI.py:150 msgid "do not prompt for administrator privileges" msgstr "mos kërko për privilegjet e administratorit" #: ../bleachbit/CLI.py:155 msgid "preview files to be deleted and other changes" msgstr "paraqit filet që do të fshihen dhe ndryshimet e tjera" #: ../bleachbit/CLI.py:157 msgid "use options set in the graphical interface" msgstr "përdor opsionet e vendosura në ndërfaqen grafike" #: ../bleachbit/CLI.py:160 msgid "update winapp2.ini, if a new version is available" msgstr "aktualizo winapp2.ini, nëse një version i ri është i vlefshëm" #: ../bleachbit/CLI.py:162 msgid "output version information and exit" msgstr "informacioni i rezultatit të versionit dhe dalje" #: ../bleachbit/CLI.py:164 msgid "overwrite files to hide contents" msgstr "mbishkruaj filet për të fshirë përmbajtjen" #. TRANSLATORS: this is the context menu #: ../bleachbit/Action.py:372 ../bleachbit/GUI.py:630 msgid "Clean" msgstr "Pastro" #: ../bleachbit/Action.py:392 #, python-format msgid "Run external command: %s" msgstr "Eksekuto komandën e jashtme: %s" #: ../bleachbit/GUI.py:143 msgid "Active" msgstr "Aktive" #. TRANSLATORS: Size is the label for the column that shows how #. much space an option would clean or did clean #: ../bleachbit/GUI.py:155 msgid "Size" msgstr "Madhësia" #. TRANSLATORS: %(cleaner) may be Firefox, System, etc. #. %(option) may be cache, logs, cookies, etc. #. %(warning) may be 'This option is really slow' #: ../bleachbit/GUI.py:186 #, python-format msgid "" "Warning regarding %(cleaner)s - %(option)s:\n" "\n" "%(warning)s" msgstr "" "Paralajmërim në lidhje me %(cleaner)s - %(option)s:\n" "\n" "%(warning)s" #: ../bleachbit/GUI.py:372 msgid "You must select an operation" msgstr "Duhet të zgjidhni një veprim" #: ../bleachbit/GUI.py:392 ../bleachbit/GUI.py:415 msgid "Done." msgstr "Përfundoi." #: ../bleachbit/GUI.py:428 msgid "Program to clean unnecessary files" msgstr "Programon pastrimin e fileve të panevojshme" #: ../bleachbit/GUI.py:434 msgid "" "GNU General Public License version 3 or later.\n" "See http://www.gnu.org/licenses/gpl-3.0.txt" msgstr "" "GNU General Public License versioni 3 ose më i fundit.\n" "Shiko http://www.gnu.org/licenses/gpl-3.0.txt" #. TRANSLATORS: Maintain the names of translators here. #. Launchpad does this automatically for translations #. typed in Launchpad. This is a special string shown #. in the 'About' box. #: ../bleachbit/GUI.py:440 msgid "translator-credits" msgstr "" "Launchpad Contributions:\n" " Arben Çokaj https://launchpad.net/~5z-info-ia" #: ../bleachbit/GUI.py:452 msgid "System information" msgstr "Informacion sistemi" #: ../bleachbit/GUI.py:525 msgid "Choose files to shred" msgstr "Zgjedh filet për copëzim" #: ../bleachbit/GUI.py:528 msgid "Choose folder to shred" msgstr "Zgjedh dosjen për copëzim" #. TRANSLATORS: this is the context menu #: ../bleachbit/GUI.py:625 msgid "Preview" msgstr "Paraqit" #: ../bleachbit/GUI.py:694 msgid "_Shred Files" msgstr "_Copëzo filet" #: ../bleachbit/GUI.py:696 msgid "Sh_red Folders" msgstr "Co_pëzo dosjet" #: ../bleachbit/GUI.py:698 msgid "_Wipe Free Space" msgstr "_Fshij hapësirën e lirë" #: ../bleachbit/GUI.py:700 msgid "S_hred Settings and Quit" msgstr "C_opëzo Rregullimet dhe Dilni" #: ../bleachbit/GUI.py:702 msgid "_Quit" msgstr "_Dalje" #: ../bleachbit/GUI.py:704 msgid "_File" msgstr "_Filet" #: ../bleachbit/GUI.py:707 msgid "_Edit" msgstr "_Korrigjo" #: ../bleachbit/GUI.py:708 msgid "Help Contents" msgstr "Përmbajtja e ndihmës" #: ../bleachbit/GUI.py:711 msgid "_Release Notes" msgstr "_Shënimet e publikimit" #: ../bleachbit/GUI.py:714 msgid "_System Information" msgstr "_Informacion sistemi" #: ../bleachbit/GUI.py:717 msgid "_About" msgstr "_Rreth" #: ../bleachbit/GUI.py:718 msgid "_Help" msgstr "_Ndihmë" #: ../bleachbit/GUI.py:743 msgctxt "button" msgid "Preview" msgstr "Paraqit" #: ../bleachbit/GUI.py:748 msgid "Preview files in the selected operations (without deleting any files)" msgstr "Paraqit filet në veprimet e zgjedhura (pa fshirë ndonjë fil)" #: ../bleachbit/GUI.py:758 msgctxt "button" msgid "Clean" msgstr "Pastro" #: ../bleachbit/GUI.py:762 msgid "Clean files in the selected operations" msgstr "Pastro filet në veprimet e zgjedhura" #: ../bleachbit/GUI.py:851 msgid "Error when checking for updates: " msgstr "Gabim gjatë kontrollit të aktualizimeve: " #: ../bleachbit/GUI.py:891 msgid "" "Error loading the SQLite module: the antivirus software may be blocking it." msgstr "" "Gabim në ngarkimin e modulit SQLite: programi antivirus është ndoshta duke e " "bllokuar atë." #: ../bleachbit/GUI.py:894 msgid "" "You are running BleachBit with administrative privileges for cleaning shared " "parts of the system, and references to the user profile folder will clean " "only the root account." msgstr "" "Po ekzekutoni BleachBit me privilegje administrative për pastrimin e pjesëve " "të përbashkëta të sistemit, dhe referencat në dosjen e profilit të " "përdoruesit do të pastrojnë vetëm llogarinë e rrënjës." bleachbit-2.0/po/fa.po0000644000175000017500000011400513245436307012746 0ustar hlehle# Persian translation for bleachbit # Copyright (c) 2012 Rosetta Contributors and Canonical Ltd 2012 # This file is distributed under the same license as the bleachbit package. # FIRST AUTHOR , 2012. # msgid "" msgstr "" "Project-Id-Version: bleachbit\n" "Report-Msgid-Bugs-To: FULL NAME \n" "POT-Creation-Date: 2014-04-16 22:25-0600\n" "PO-Revision-Date: 2014-05-01 17:56+0000\n" "Last-Translator: Mehdi Moayedi \n" "Language-Team: Persian \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=1; plural=0;\n" "X-Launchpad-Export-Date: 2014-05-04 19:40+0000\n" "X-Generator: Launchpad (build 16985)\n" #: ../cleaners/mc.xml ../cleaners/tortoisesvn.xml ../cleaners/vim.xml #: ../cleaners/safari.xml ../cleaners/links2.xml ../cleaners/seamonkey.xml #: ../cleaners/realplayer.xml ../cleaners/windows_defender.xml #: ../cleaners/d4x.xml ../cleaners/sqlite3.xml #: ../cleaners/internet_explorer.xml ../cleaners/libreoffice.xml #: ../cleaners/bash.xml ../cleaners/nautilus.xml ../cleaners/octave.xml #: ../cleaners/elinks.xml ../cleaners/chromium.xml #: ../cleaners/google_chrome.xml msgid "History" msgstr "پیشینه" #: ../cleaners/mc.xml ../cleaners/tortoisesvn.xml ../cleaners/links2.xml #: ../cleaners/realplayer.xml ../cleaners/d4x.xml ../cleaners/libreoffice.xml #: ../cleaners/nautilus.xml ../cleaners/gnome.xml ../bleachbit/Cleaner.py:319 #: ../bleachbit/Cleaner.py:393 ../bleachbit/Cleaner.py:402 msgid "Delete the usage history" msgstr "پاک کردن تاریخچه" #: ../cleaners/gpodder.xml ../cleaners/hippo_opensim_viewer.xml #: ../cleaners/thumbnails.xml ../cleaners/safari.xml #: ../cleaners/transmission.xml ../cleaners/emesene.xml #: ../cleaners/liferea.xml ../cleaners/seamonkey.xml ../cleaners/vuze.xml #: ../cleaners/yahoo_messenger.xml ../cleaners/pidgin.xml #: ../cleaners/adobe_reader.xml ../cleaners/evolution.xml #: ../cleaners/tremulous.xml ../cleaners/libreoffice.xml ../cleaners/xine.xml #: ../cleaners/nexuiz.xml ../cleaners/exaile.xml ../cleaners/opera.xml #: ../cleaners/amsn.xml ../cleaners/gftp.xml ../cleaners/miro.xml #: ../cleaners/beagle.xml ../cleaners/kde.xml ../cleaners/epiphany.xml #: ../cleaners/flash.xml ../cleaners/secondlife_viewer.xml #: ../cleaners/java.xml ../cleaners/chromium.xml ../cleaners/audacious.xml #: ../cleaners/rhythmbox.xml ../cleaners/google_chrome.xml #: ../cleaners/thunderbird.xml ../bleachbit/Cleaner.py:187 #: ../bleachbit/Cleaner.py:340 ../bleachbit/Cleaner.py:425 msgid "Cache" msgstr "نهانگاه" #: ../cleaners/gpodder.xml ../cleaners/yum.xml #: ../cleaners/hippo_opensim_viewer.xml ../cleaners/thumbnails.xml #: ../cleaners/transmission.xml ../cleaners/windows_explorer.xml #: ../cleaners/liferea.xml ../cleaners/vuze.xml #: ../cleaners/yahoo_messenger.xml ../cleaners/pidgin.xml #: ../cleaners/adobe_reader.xml ../cleaners/evolution.xml #: ../cleaners/libreoffice.xml ../cleaners/apt.xml ../cleaners/xine.xml #: ../cleaners/nexuiz.xml ../cleaners/exaile.xml ../cleaners/amsn.xml #: ../cleaners/gftp.xml ../cleaners/miro.xml ../cleaners/beagle.xml #: ../cleaners/kde.xml ../cleaners/flash.xml ../cleaners/secondlife_viewer.xml #: ../cleaners/java.xml ../cleaners/audacious.xml ../cleaners/rhythmbox.xml #: ../bleachbit/Cleaner.py:340 ../bleachbit/Cleaner.py:425 #: ../bleachbit/Cleaner.py:459 ../bleachbit/Cleaner.py:461 msgid "Delete the cache" msgstr "پاک کردن نهانگاه" #. TRANSLATORS: Vacuum is a verb. The term is jargon #. from the SQLite database. Microsoft Access uses #. the term 'Compact Database' (which you may translate #. instead). Another synonym is 'defragment.' #: ../cleaners/gpodder.xml ../cleaners/yum.xml ../cleaners/safari.xml #: ../cleaners/liferea.xml ../cleaners/chromium.xml #: ../cleaners/google_chrome.xml ../cleaners/thunderbird.xml #: ../bleachbit/Action.py:335 ../bleachbit/Cleaner.py:207 #: ../bleachbit/Cleaner.py:330 msgid "Vacuum" msgstr "فشرده ساز" #: ../cleaners/gpodder.xml ../cleaners/yum.xml ../cleaners/safari.xml #: ../cleaners/liferea.xml ../cleaners/chromium.xml #: ../cleaners/google_chrome.xml ../cleaners/thunderbird.xml #: ../bleachbit/Cleaner.py:208 msgid "" "Clean database fragmentation to reduce space and improve speed without " "removing any data" msgstr "" "فشرده سازی تکه های پایگاه داده برای بیشتر کردن فضا و بهینه کردن سرعت بدون " "پاک کردن داده ها" #: ../cleaners/warzone2100.xml ../cleaners/hippo_opensim_viewer.xml #: ../cleaners/teamviewer.xml ../cleaners/realplayer.xml ../cleaners/vuze.xml #: ../cleaners/yahoo_messenger.xml ../cleaners/amule.xml #: ../cleaners/easytag.xml ../cleaners/exaile.xml ../cleaners/screenlets.xml #: ../cleaners/gftp.xml ../cleaners/miro.xml ../cleaners/audacious.xml #: ../bleachbit/Cleaner.py:456 msgid "Logs" msgstr "گزارشها" #: ../cleaners/warzone2100.xml ../cleaners/hippo_opensim_viewer.xml #: ../cleaners/teamviewer.xml ../cleaners/realplayer.xml ../cleaners/vuze.xml #: ../cleaners/yahoo_messenger.xml ../cleaners/amule.xml #: ../cleaners/exaile.xml ../cleaners/screenlets.xml ../cleaners/gftp.xml #: ../cleaners/miro.xml ../cleaners/audacious.xml ../bleachbit/Cleaner.py:456 msgid "Delete the logs" msgstr "پاک کردن گزارشها" #: ../cleaners/hippo_opensim_viewer.xml ../cleaners/gl-117.xml #: ../cleaners/tremulous.xml ../cleaners/nexuiz.xml #: ../cleaners/secondlife_viewer.xml msgid "Game" msgstr "بازی" #: ../cleaners/thumbnails.xml ../cleaners/windows_explorer.xml msgid "Thumbnails" msgstr "ریزنقشها" #: ../cleaners/vim.xml ../cleaners/gedit.xml msgid "Editor" msgstr "ویرایشگر" #: ../cleaners/vim.xml msgid "" "Delete ~/.viminfo which includes file history, command history, and buffers" msgstr "پاک کردن" #: ../cleaners/filezilla.xml ../cleaners/transmission.xml ../cleaners/vuze.xml #: ../cleaners/amule.xml ../cleaners/gftp.xml msgid "File transfer client" msgstr "برنامه انتقال فایل" #: ../cleaners/filezilla.xml ../cleaners/paint.xml #: ../cleaners/windows_media_player.xml ../cleaners/windows_explorer.xml #: ../cleaners/teamviewer.xml ../cleaners/microsoft_office.xml #: ../cleaners/vlc.xml ../cleaners/adobe_reader.xml ../cleaners/winamp.xml #: ../cleaners/winzip.xml ../cleaners/winrar.xml ../cleaners/audacious.xml #: ../cleaners/wordpad.xml ../bleachbit/Cleaner.py:341 msgid "Most recently used" msgstr "به تازگی بکاررفته ها" #: ../cleaners/filezilla.xml ../cleaners/windows_explorer.xml #: ../cleaners/gwenview.xml ../cleaners/adobe_reader.xml ../cleaners/gedit.xml #: ../cleaners/kde.xml ../cleaners/audacious.xml ../bleachbit/Cleaner.py:342 #: ../bleachbit/Cleaner.py:439 msgid "Delete the list of recently used documents" msgstr "پاک کردن فهرست آخرین مستندات بکار رفته" #: ../cleaners/skype.xml ../cleaners/xchat.xml ../cleaners/emesene.xml #: ../cleaners/seamonkey.xml ../cleaners/yahoo_messenger.xml #: ../cleaners/pidgin.xml ../cleaners/amsn.xml msgid "Chat logs" msgstr "گزارشهای گپ" #: ../cleaners/skype.xml ../cleaners/xchat.xml ../cleaners/emesene.xml #: ../cleaners/seamonkey.xml ../cleaners/yahoo_messenger.xml #: ../cleaners/pidgin.xml ../cleaners/amsn.xml msgid "Delete the chat logs" msgstr "" #: ../cleaners/xchat.xml ../cleaners/emesene.xml #: ../cleaners/yahoo_messenger.xml ../cleaners/pidgin.xml ../cleaners/amsn.xml msgid "Chat client" msgstr "برنامه گپ" #: ../cleaners/safari.xml ../cleaners/links2.xml ../cleaners/seamonkey.xml #: ../cleaners/konqueror.xml ../cleaners/internet_explorer.xml #: ../cleaners/opera.xml ../cleaners/epiphany.xml ../cleaners/elinks.xml #: ../cleaners/chromium.xml ../cleaners/google_chrome.xml #: ../bleachbit/Cleaner.py:220 msgid "Web browser" msgstr "مرورگر وب" #: ../cleaners/safari.xml ../cleaners/seamonkey.xml ../cleaners/opera.xml #: ../cleaners/epiphany.xml ../cleaners/chromium.xml #: ../cleaners/google_chrome.xml ../cleaners/thunderbird.xml #: ../bleachbit/Cleaner.py:188 msgid "Delete the web cache, which reduces time to display revisited pages" msgstr "پاک کردن نهانگاه مرورگر،که سرعت نمایش صفحات دیده شده را بهینه می کند" #: ../cleaners/safari.xml ../cleaners/liferea.xml ../cleaners/seamonkey.xml #: ../cleaners/realplayer.xml ../cleaners/konqueror.xml #: ../cleaners/internet_explorer.xml ../cleaners/opera.xml #: ../cleaners/epiphany.xml ../cleaners/flash.xml ../cleaners/silverlight.xml #: ../cleaners/chromium.xml ../cleaners/google_chrome.xml #: ../cleaners/thunderbird.xml ../bleachbit/Cleaner.py:189 msgid "Cookies" msgstr "کوکی‌ها" #: ../cleaners/safari.xml ../cleaners/liferea.xml ../cleaners/seamonkey.xml #: ../cleaners/realplayer.xml ../cleaners/konqueror.xml #: ../cleaners/internet_explorer.xml ../cleaners/opera.xml #: ../cleaners/epiphany.xml ../cleaners/flash.xml ../cleaners/silverlight.xml #: ../cleaners/chromium.xml ../cleaners/google_chrome.xml #: ../cleaners/thunderbird.xml ../bleachbit/Cleaner.py:190 msgid "" "Delete cookies, which contain information such as web site preferences, " "authentication, and tracking identification" msgstr "" "پاک کردن کوکی ها،کوکی ها شامل داده هایی مانند تنظیمات،مجوزهای امنیتی و شناسه " "های دنبال کردن کاربر توسط سایتها هستند." #: ../cleaners/safari.xml ../cleaners/konqueror.xml #: ../cleaners/internet_explorer.xml ../cleaners/opera.xml #: ../bleachbit/Cleaner.py:206 msgid "List of visited web pages" msgstr "فهرست آخرین صفحات وب دیده شده" #: ../cleaners/paint.xml ../cleaners/windows_media_player.xml #: ../cleaners/windows_explorer.xml ../cleaners/teamviewer.xml #: ../cleaners/microsoft_office.xml ../cleaners/vlc.xml ../cleaners/winamp.xml #: ../cleaners/winzip.xml ../cleaners/winrar.xml ../cleaners/wordpad.xml msgid "Delete the most recently used list" msgstr "پاک کردن تازه ترین فهرست بکار رفته" #: ../cleaners/emesene.xml msgid "Delete the avatars and emoticons cache" msgstr "پاک کردن نهانگاه آواتار و شکلکک ها" #: ../cleaners/windows_explorer.xml ../cleaners/gwenview.xml #: ../cleaners/gedit.xml ../cleaners/kde.xml ../bleachbit/Cleaner.py:438 msgid "Recent documents list" msgstr "فهرست آخرین مستندات" #. In Windows 'Run' is the dialog in the Start menu #. In GNOME 'Run' is the dialog shown when typing ALT+F2' #: ../cleaners/windows_explorer.xml ../cleaners/gnome.xml msgid "Run" msgstr "اجرا" #: ../cleaners/windows_explorer.xml ../cleaners/opera.xml #: ../cleaners/gnome.xml ../cleaners/google_toolbar.xml msgid "Search history" msgstr "پیشینه جستجو" #: ../cleaners/windows_explorer.xml ../cleaners/opera.xml #: ../cleaners/gnome.xml ../cleaners/google_toolbar.xml msgid "Delete the search history" msgstr "پاک کردن پیشینه جستجو" #: ../cleaners/gl-117.xml ../cleaners/microsoft_office.xml #: ../cleaners/beagle.xml ../cleaners/secondlife_viewer.xml #: ../cleaners/x11.xml msgid "Debug logs" msgstr "تحلیل گزارش ها" #: ../cleaners/gl-117.xml ../cleaners/microsoft_office.xml #: ../cleaners/easytag.xml ../cleaners/beagle.xml #: ../cleaners/secondlife_viewer.xml ../cleaners/x11.xml msgid "Delete the debug logs" msgstr "پاک کردن گزارش دیباگ" #: ../cleaners/google_earth.xml ../cleaners/winetricks.xml #: ../cleaners/vuze.xml ../cleaners/adobe_reader.xml ../cleaners/amule.xml #: ../cleaners/wine.xml ../cleaners/internet_explorer.xml ../cleaners/gimp.xml #: ../cleaners/kde.xml ../cleaners/deepscan.xml ../bleachbit/Cleaner.py:490 msgid "Temporary files" msgstr "پرونده‌های موقت" #: ../cleaners/google_earth.xml ../cleaners/winetricks.xml #: ../cleaners/vuze.xml ../cleaners/adobe_reader.xml ../cleaners/amule.xml #: ../cleaners/wine.xml ../cleaners/internet_explorer.xml ../cleaners/gimp.xml #: ../cleaners/kde.xml ../cleaners/deepscan.xml ../bleachbit/Cleaner.py:490 msgid "Delete the temporary files" msgstr "پاک کردن پرونده های موقت" #: ../cleaners/seamonkey.xml ../cleaners/opera.xml ../bleachbit/Cleaner.py:196 msgid "Download history" msgstr "پیشینه بارگذاری" #: ../cleaners/seamonkey.xml ../cleaners/opera.xml ../bleachbit/Cleaner.py:196 msgid "List of files downloaded" msgstr "فهرست پرونده های بارگذاری شده" #: ../cleaners/seamonkey.xml msgid "Delete the list of visited web pages" msgstr "پاک کردن فهرست صفحات وب دیده شده" #: ../cleaners/vuze.xml ../cleaners/deepscan.xml msgid "Backup files" msgstr "پشتیبان گیری از پرونده ها" #: ../cleaners/vuze.xml ../cleaners/deepscan.xml msgid "Delete the backup files" msgstr "پاک کردن فایلهای پشتیبان" #: ../cleaners/konqueror.xml ../cleaners/opera.xml ../cleaners/chromium.xml msgid "Current session" msgstr "نشست کنونی" #: ../cleaners/konqueror.xml ../cleaners/opera.xml ../cleaners/chromium.xml msgid "Delete the current session" msgstr "پاک کردن نشست کنونی" #: ../cleaners/konqueror.xml ../cleaners/opera.xml ../bleachbit/Cleaner.py:206 msgid "URL history" msgstr "پیشینه آدرس اینترنتی" #: ../cleaners/microsoft_office.xml ../cleaners/libreoffice.xml #: ../bleachbit/Cleaner.py:354 msgid "Office suite" msgstr "مجموعه آفیس" #: ../cleaners/windows_defender.xml ../cleaners/beagle.xml #: ../cleaners/thunderbird.xml ../cleaners/deepscan.xml #: ../bleachbit/Cleaner.py:192 msgid "Delete the files" msgstr "پاک کردن پرونده ها" #: ../cleaners/tremulous.xml msgid "Delete the list of game servers" msgstr "پاک کردن فهرست سرورهای بازی" #: ../cleaners/sqlite3.xml ../cleaners/bash.xml ../cleaners/octave.xml msgid "Delete the command history" msgstr "پاک کردن پیشینه فرمان" #: ../cleaners/internet_explorer.xml ../cleaners/chromium.xml #: ../cleaners/google_chrome.xml ../bleachbit/Cleaner.py:197 msgid "Form history" msgstr "پیشینه فرمها" #: ../cleaners/internet_explorer.xml ../bleachbit/Cleaner.py:198 msgid "A history of forms entered in web sites and in the Search bar" msgstr "" #: ../cleaners/apt.xml msgid "Delete obsolete files" msgstr "پاک کردن پرونده های به درد نخور" #: ../cleaners/apt.xml msgid "Package lists" msgstr "فهرست بسته ها" #: ../cleaners/apt.xml msgid "Delete the cached package lists" msgstr "پاک کردن نهانگاه فهرست بسته ها" #: ../cleaners/xine.xml ../cleaners/miro.xml ../cleaners/flash.xml msgid "Multimedia viewer" msgstr "برنامه چند رسانه ای" #: ../cleaners/recoll.xml ../cleaners/beagle.xml msgid "Search tool" msgstr "ابزار جستجو" #: ../cleaners/recoll.xml ../cleaners/beagle.xml ../cleaners/thunderbird.xml msgid "Index" msgstr "فهرست" #: ../cleaners/recoll.xml msgid "" "Delete the search index, a database of words and the files they contain" msgstr "" "پاک کردن سابقه جستجو در فهرست، پایگاه داده ای از کلمات و پرونده های شامل آنها" #: ../cleaners/exaile.xml msgid "Downloaded podcasts" msgstr "پادکستهای بارگذاری شده" #: ../cleaners/exaile.xml msgid "Delete downloaded podcasts" msgstr "پاک کردن پادکستهای بارگذاری شده" #. TRANSLATORS: DOM = Document Object Model. #: ../cleaners/opera.xml ../cleaners/chromium.xml #: ../cleaners/google_chrome.xml ../bleachbit/Cleaner.py:194 msgid "DOM Storage" msgstr "انبار DOM" #: ../cleaners/opera.xml ../cleaners/chromium.xml #: ../cleaners/google_chrome.xml ../bleachbit/Cleaner.py:194 msgid "Delete HTML5 cookies" msgstr "پاک کردن کوکی های HTML5" #: ../cleaners/nautilus.xml msgid "Custom folders will be reset." msgstr "برگرداندن پوشه های شخصی شده به حالت نخست" #: ../cleaners/screenlets.xml msgid "Widgets for the desktop" msgstr "ابزارکهایی برای میزکار" #: ../cleaners/epiphany.xml ../cleaners/chromium.xml #: ../cleaners/google_chrome.xml ../cleaners/thunderbird.xml #: ../bleachbit/Cleaner.py:203 msgid "Passwords" msgstr "گذرواژه‌ها" #: ../cleaners/epiphany.xml ../cleaners/chromium.xml #: ../cleaners/google_chrome.xml ../cleaners/thunderbird.xml #: ../bleachbit/Cleaner.py:204 msgid "" "A database of usernames and passwords as well as a list of sites that should " "not store passwords" msgstr "" "پایگاه داده ای برای نامهای کاربری و گذرواژه های مناسب برای سایتهایی که نباید " "گذرواژه ها را دخیره کنند" #: ../cleaners/epiphany.xml ../cleaners/chromium.xml #: ../cleaners/google_chrome.xml msgid "This option will delete your saved passwords." msgstr "این گزینه گذرواژه های ذخیره شده شما را پاک خواهد کرد" #: ../cleaners/epiphany.xml msgid "Places" msgstr "مکان‌ها" #: ../cleaners/epiphany.xml msgid "" "A database of URLs including bookmarks, favicons, and a history of visited " "web sites" msgstr "" "پایگاه داده ای برای آدرسهای اینترنتی شامل علاقه مندیها، نمایه سایتها و " "پیشینه صفحات دیده شده" #: ../cleaners/epiphany.xml msgid "This option deletes all bookmarks." msgstr "این گزینه همه علاقه مندیها را پاک می کند" #: ../cleaners/elinks.xml msgid "Delete the cookies, visited URLs, and search history" msgstr "پاک کردن کوکی ها، آدرسهای اینترنتی دیده شده و پیشینه جستجو" #: ../cleaners/chromium.xml ../cleaners/google_chrome.xml msgid "A history of forms entered in web sites" msgstr "پیشینه ای از فرمهایی که وارد صفحات وب شده اند" #: ../cleaners/chromium.xml ../cleaners/google_chrome.xml msgid "" "Delete the history which includes visited sites, downloads, and thumbnails" msgstr "پاک کردن پیشینه شامل سایتهای دیده شده، بارگذاری ها و ریزنقشها" #: ../cleaners/chromium.xml ../cleaners/google_chrome.xml msgid "Search engines" msgstr "موتورهای جستجو" #. 'Factory' means a search engine that is installed by default 'from the factory,' but this is different than a 'default search engine' https://lists.launchpad.net/launchpad-translators/msg00283.html #: ../cleaners/chromium.xml ../cleaners/google_chrome.xml msgid "" "Reset the search engine usage history and delete non-factory search engines, " "some of which are added automatically" msgstr "" "بازگرداندن موتورهای جستجوی پیش فرض و پاک کردن موتورهای جستجویی که خودکار " "اضافه شده اند" #: ../cleaners/google_chrome.xml msgid "Session" msgstr "نشست" #: ../cleaners/google_chrome.xml msgid "Delete the current and last sessions" msgstr "پاک کردن نشستهای کنونی و نهایی" #: ../cleaners/deepscan.xml msgid "Deep scan" msgstr "جستجوی ژرف" #: ../cleaners/deepscan.xml msgid "Inspect the preview for any files you want to keep." msgstr "دیدن پیش نمایشی از پرونده هایی که می خواهید نگهداری کنید" #: ../cleaners/deepscan.xml msgid "This option is slow." msgstr "این گزینه کند کار می کند" #: ../bleachbit.desktop msgid "Unnecessary file cleaner" msgstr "پاک کننده پرونده های بدرد نخور" #: ../bleachbit.desktop msgid "Free space and maintain privacy" msgstr "ایجاد فضای آزاد و برقراری امنیت" #. TRANSLATORS: Parts of this file will be deleted #: ../bleachbit/Action.py:192 ../bleachbit/Action.py:205 #: ../bleachbit/Action.py:218 ../bleachbit/Action.py:231 #: ../bleachbit/Action.py:244 ../bleachbit/Command.py:181 #: ../bleachbit/Command.py:211 msgid "Clean file" msgstr "پاک کردن پرونده" #. TRANSLATORS: this is the context menu #: ../bleachbit/Action.py:308 ../bleachbit/GUI.py:566 msgid "Clean" msgstr "پاک کردن" #: ../bleachbit/Cleaner.py:192 msgid "Crash reports" msgstr "گزارش شکست" #: ../bleachbit/Cleaner.py:199 msgid "Session restore" msgstr "بازگرداندن نشست" #: ../bleachbit/Cleaner.py:200 msgid "Loads the initial session after the browser closes or crashes" msgstr "بازگرداندن نخستین نشست پس از بسته شدن یا شکست مرورگر" #: ../bleachbit/Cleaner.py:202 msgid "Site preferences" msgstr "" #: ../bleachbit/Cleaner.py:202 msgid "Settings for individual sites" msgstr "" #. TRANSLATORS: desktop entries are .desktop files in Linux tha #. make up the application menu (the menu that shows BleachBit, #. Firefox, and others. The .desktop files also associate file #. types, so clicking on an .html file in Nautilus brings up #. Firefox. #. More information: #. http://standards.freedesktop.org/menu-spec/latest/index.html#introduction #: ../bleachbit/Cleaner.py:423 msgid "Broken desktop files" msgstr "" #: ../bleachbit/Cleaner.py:424 msgid "Delete broken application menu entries and file associations" msgstr "" #. TRANSLATORS: Localizations are files supporting specific #. languages, so applications appear in Spanish, etc. #: ../bleachbit/Cleaner.py:428 msgid "Localizations" msgstr "نسخه‌های محلی" #: ../bleachbit/Cleaner.py:429 msgid "Delete files for unwanted languages" msgstr "پاک کردن زبانهای ناخواسته" #: ../bleachbit/Cleaner.py:431 msgid "Configure this option in the preferences." msgstr "" #: ../bleachbit/Cleaner.py:437 msgid "Rotated logs" msgstr "گزارشهای مربوط" #: ../bleachbit/Cleaner.py:437 msgid "Delete old system logs" msgstr "پاک کردن گزارشهای قدیمی سامانه" #: ../bleachbit/Cleaner.py:440 msgid "Trash" msgstr "زباله‌دان" #: ../bleachbit/Cleaner.py:440 msgid "Empty the trash" msgstr "خالی کردن زباله دان" #: ../bleachbit/Cleaner.py:446 ../bleachbit/Cleaner.py:598 #: ../bleachbit/Worker.py:169 msgid "Memory" msgstr "حافظه" #. TRANSLATORS: 'free' means 'unallocated' #: ../bleachbit/Cleaner.py:448 msgid "Wipe the swap and free memory" msgstr "پاک کردن فایلهای موقت و آزادسازی حافظه" #: ../bleachbit/Cleaner.py:450 msgid "This option is experimental and may cause system problems." msgstr "این گزینه آزمایشی است و می تواندبه کارکرد سامانه آسیب بزند" #: ../bleachbit/Cleaner.py:458 msgid "Memory dump" msgstr "باقی مانده حافظه" #: ../bleachbit/Cleaner.py:458 msgid "Delete the file memory.dmp" msgstr "پاک کردن باقی مانده های حافظه" #. TRANSLATORS: Prefetch is Microsoft Windows jargon. #: ../bleachbit/Cleaner.py:461 msgid "Prefetch" msgstr "بالا بردن سرعت اجرای برنامه ها با روش Prefetch" #: ../bleachbit/Cleaner.py:463 msgid "Recycle bin" msgstr "بازیافت" #: ../bleachbit/Cleaner.py:463 msgid "Empty the recycle bin" msgstr "پاک کردن بازیافت" #. TRANSLATORS: 'Update' is a noun, and 'Update uninstallers' is an option to delete #. the uninstallers for software updates. #: ../bleachbit/Cleaner.py:466 msgid "Update uninstallers" msgstr "به روزرسانی برنامه های پاک کننده" #: ../bleachbit/Cleaner.py:467 msgid "" "Delete uninstallers for Microsoft updates including hotfixes, service packs, " "and Internet Explorer updates" msgstr "" #: ../bleachbit/Cleaner.py:474 ../bleachbit/Cleaner.py:687 msgid "Clipboard" msgstr "تخته یادداشت" #: ../bleachbit/Cleaner.py:475 msgid "" "The desktop environment's clipboard used for copy and paste operations" msgstr "" #. TRANSLATORS: "Custom" is an option allowing the user to specify which #. files and folders will be erased. #: ../bleachbit/Cleaner.py:482 ../bleachbit/GuiPreferences.py:61 msgid "Custom" msgstr "گزینه های دلخواه" #: ../bleachbit/Cleaner.py:483 msgid "Delete user-specified files and folders" msgstr "پاک کردن فایلها و پوشه هایی که کاربر برگزیده است" #. TRANSLATORS: 'free' means 'unallocated' #: ../bleachbit/Cleaner.py:485 msgid "Free disk space" msgstr "آزادسازی فضای دیسک" #. TRANSLATORS: 'free' means 'unallocated' #: ../bleachbit/Cleaner.py:487 msgid "Overwrite free disk space to hide deleted files" msgstr "بازنویسی فضای آزاد دیسک برای پنهان سازی فایلهای پاک شده" #: ../bleachbit/Cleaner.py:488 msgid "This option is very slow." msgstr "این گزینه بسیار کند است" #: ../bleachbit/Cleaner.py:493 msgid "The system in general" msgstr "" #: ../bleachbit/Cleaner.py:499 ../bleachbit/Cleaner.py:788 msgid "System" msgstr "سامانه" #. TRANSLATORS: 'Free' means 'unallocated.' #. %s expands to a path such as C:\ or /tmp/ #: ../bleachbit/Cleaner.py:695 ../bleachbit/Cleaner.py:819 #, python-format msgid "Overwrite free disk space %s" msgstr "" #. TRANSLATORS: %s expands to a drive letter such as C:\ or D:\ #: ../bleachbit/Cleaner.py:722 #, python-format msgid "Recycle bin %s" msgstr "" #: ../bleachbit/CLI.py:107 #, python-format msgid "not a valid cleaner: %s" msgstr "" #. TRANSLATORS: This is the command line usage. Don't translate #. %prog, but do translate usage, options, cleaner, and option. #. More information about the command line is here #. http://bleachbit.sourceforge.net/documentation/command-line #: ../bleachbit/CLI.py:134 msgid "usage: %prog [options] cleaner.option1 cleaner.option2" msgstr "کاربرد: %prog [options] cleaner.option1 cleaner.option2" #: ../bleachbit/CLI.py:137 msgid "list cleaners" msgstr "فهرست پاک کننده ها" #. TRANSLATORS: predefined cleaners are for applications, such as Firefox and Flash. #. This is different than cleaning an arbitrary file, such as a #. spreadsheet on the desktop. #: ../bleachbit/CLI.py:142 msgid "run cleaners to delete files and make other permanent changes" msgstr "" #: ../bleachbit/CLI.py:144 msgid "shred specific files or folders" msgstr "اشتراک گذاری فایلها و پوشه های برگزیده" #: ../bleachbit/CLI.py:146 msgid "show system information" msgstr "" #: ../bleachbit/CLI.py:148 msgid "launch the graphical interface" msgstr "" #: ../bleachbit/CLI.py:150 msgid "do not prompt for administrator privileges" msgstr "" #: ../bleachbit/CLI.py:155 msgid "preview files to be deleted and other changes" msgstr "" #: ../bleachbit/CLI.py:157 msgid "use options set in the graphical interface" msgstr "" #: ../bleachbit/CLI.py:160 msgid "update winapp2.ini, if a new version is available" msgstr "" #: ../bleachbit/CLI.py:162 msgid "output version information and exit" msgstr "" #: ../bleachbit/CLI.py:164 msgid "overwrite files to hide contents" msgstr "" #: ../bleachbit/CLI.py:166 msgid "wipe file system metadata" msgstr "" #. TRANSLATORS: This is the label in the log indicating was #. skipped because it matches the whitelist #: ../bleachbit/Command.py:44 msgid "Skip" msgstr "" #. TRANSLATORS: This is the label in the log indicating will be #. deleted (for previews) or was actually deleted #: ../bleachbit/Command.py:70 msgid "Delete" msgstr "" #. TRANSLATORS: The file will be deleted when the #. system reboots #: ../bleachbit/Command.py:91 msgid "Mark for deletion" msgstr "" #. TRANSLATORS: The file will be truncated to 0 bytes in length #: ../bleachbit/Command.py:247 msgid "Truncate" msgstr "" #: ../bleachbit/Command.py:286 msgid "Delete registry key" msgstr "" #: ../bleachbit/GuiBasic.py:112 msgid "Delete confirmation" msgstr "" #: ../bleachbit/GuiBasic.py:122 msgid "" "Are you sure you want to permanently delete files according to the selected " "operations? The actual files that will be deleted may have changed since " "you ran the preview." msgstr "" #: ../bleachbit/GuiBasic.py:125 msgid "Are you sure you want to permanently delete these files?" msgstr "" #: ../bleachbit/GuiBasic.py:162 #, python-format msgid "" "Because you are running as root, please manually open this link in a web " "browser:\n" "%s" msgstr "" #. TRANSLATORS: %s expands to bleachbit.sourceforge.net or similar #: ../bleachbit/GuiBasic.py:174 #, python-format msgid "Open web browser to %s?" msgstr "" #: ../bleachbit/GuiPreferences.py:53 ../bleachbit/GUI.py:621 msgid "Preferences" msgstr "" #: ../bleachbit/GuiPreferences.py:59 msgid "General" msgstr "" #: ../bleachbit/GuiPreferences.py:62 msgid "Drives" msgstr "" #: ../bleachbit/GuiPreferences.py:65 msgid "Languages" msgstr "" #: ../bleachbit/GuiPreferences.py:67 msgid "Whitelist" msgstr "" #: ../bleachbit/GuiPreferences.py:110 msgid "Check periodically for software updates via the Internet" msgstr "" #: ../bleachbit/GuiPreferences.py:115 msgid "" "If an update is found, you will be given the option to view information " "about it. Then, you may manually download and install the update." msgstr "" #: ../bleachbit/GuiPreferences.py:121 msgid "Check for new beta releases" msgstr "" #: ../bleachbit/GuiPreferences.py:130 msgid "Download and update cleaners from community (winapp2.ini)" msgstr "" #. TRANSLATORS: Overwriting is the same as shredding. It is a way #. to prevent recovery of the data. You could also translate #. 'Shred files to prevent recovery.' #: ../bleachbit/GuiPreferences.py:143 msgid "Overwrite files to hide contents" msgstr "" #: ../bleachbit/GuiPreferences.py:147 msgid "" "Overwriting is ineffective on some file systems and with certain BleachBit " "operations. Overwriting is significantly slower." msgstr "" #: ../bleachbit/GuiPreferences.py:150 msgid "Start BleachBit with computer" msgstr "" #: ../bleachbit/GuiPreferences.py:161 ../bleachbit/GuiPreferences.py:292 #: ../bleachbit/GuiPreferences.py:333 ../bleachbit/GUI.py:528 msgid "Choose a folder" msgstr "" #: ../bleachbit/GuiPreferences.py:185 msgid "" "Choose a writable folder for each drive for which to overwrite free space." msgstr "" #. TRANSLATORS: In the preferences dialog, this button adds a path to #. the list of paths #: ../bleachbit/GuiPreferences.py:207 msgctxt "button" msgid "Add" msgstr "" #. TRANSLATORS: In the preferences dialog, this button removes a path #. from the list of paths #: ../bleachbit/GuiPreferences.py:211 ../bleachbit/GuiPreferences.py:424 msgctxt "button" msgid "Remove" msgstr "" #: ../bleachbit/GuiPreferences.py:236 msgid "All languages will be deleted except those checked." msgstr "" #: ../bleachbit/GuiPreferences.py:254 msgid "Preserve" msgstr "" #: ../bleachbit/GuiPreferences.py:258 msgid "Code" msgstr "" #: ../bleachbit/GuiPreferences.py:262 ../bleachbit/GUI.py:130 msgid "Name" msgstr "" #: ../bleachbit/GuiPreferences.py:279 ../bleachbit/GuiPreferences.py:320 msgid "Choose a file" msgstr "" #: ../bleachbit/GuiPreferences.py:286 ../bleachbit/GuiPreferences.py:327 #: ../bleachbit/GuiPreferences.py:371 msgid "File" msgstr "" #: ../bleachbit/GuiPreferences.py:300 ../bleachbit/GuiPreferences.py:341 #: ../bleachbit/GuiPreferences.py:373 msgid "Folder" msgstr "" #: ../bleachbit/GuiPreferences.py:383 msgid "Theses paths will not be deleted or modified." msgstr "" #: ../bleachbit/GuiPreferences.py:386 msgid "These locations can be selected for deletion." msgstr "" #: ../bleachbit/GuiPreferences.py:394 msgid "Type" msgstr "" #. TRANSLATORS: In the tree view "Path" is used generically to refer to a #. file, a folder, or a pattern describing either #: ../bleachbit/GuiPreferences.py:400 msgid "Path" msgstr "" #: ../bleachbit/GuiPreferences.py:412 msgctxt "button" msgid "Add file" msgstr "" #: ../bleachbit/GuiPreferences.py:418 msgctxt "button" msgid "Add folder" msgstr "" #: ../bleachbit/GUI.py:138 msgid "Active" msgstr "" #. TRANSLATORS: %(cleaner) may be Firefox, System, etc. #. %(option) may be cache, logs, cookies, etc. #. %(warning) may be 'This option is really slow' #: ../bleachbit/GUI.py:169 #, python-format msgid "" "Warning regarding %(cleaner)s - %(option)s:\n" "\n" "%(warning)s" msgstr "" #: ../bleachbit/GUI.py:331 msgid "You must select an operation" msgstr "" #: ../bleachbit/GUI.py:352 ../bleachbit/GUI.py:367 msgid "Done." msgstr "" #: ../bleachbit/GUI.py:380 msgid "Program to clean unnecessary files" msgstr "" #: ../bleachbit/GUI.py:386 msgid "" "GNU General Public License version 3 or later.\n" "See http://www.gnu.org/licenses/gpl-3.0.txt" msgstr "" #. TRANSLATORS: Maintain the names of translators here. #. Launchpad does this automatically for translations #. typed in Launchpad. This is a special string shown #. in the 'About' box. #: ../bleachbit/GUI.py:392 msgid "translator-credits" msgstr "" "Launchpad Contributions:\n" " Mehdi Moayedi https://launchpad.net/~mehdimcitp\n" " Youhanna Parvizinejad https://launchpad.net/~parvizinejad" #: ../bleachbit/GUI.py:404 msgid "System information" msgstr "" #: ../bleachbit/GUI.py:477 msgid "Choose files to shred" msgstr "" #: ../bleachbit/GUI.py:480 msgid "Choose folder to shred" msgstr "" #. TRANSLATORS: this is the context menu #: ../bleachbit/GUI.py:561 msgid "Preview" msgstr "" #: ../bleachbit/GUI.py:609 msgid "_Shred Files" msgstr "" #: ../bleachbit/GUI.py:611 msgid "Sh_red Folders" msgstr "" #: ../bleachbit/GUI.py:613 msgid "_Wipe Free Space" msgstr "" #: ../bleachbit/GUI.py:615 msgid "S_hred Settings and Quit" msgstr "" #: ../bleachbit/GUI.py:617 msgid "_Quit" msgstr "" #: ../bleachbit/GUI.py:619 msgid "_File" msgstr "" #: ../bleachbit/GUI.py:622 msgid "_Edit" msgstr "" #: ../bleachbit/GUI.py:623 msgid "Help Contents" msgstr "" #: ../bleachbit/GUI.py:626 msgid "_Release Notes" msgstr "" #: ../bleachbit/GUI.py:629 msgid "_System Information" msgstr "" #: ../bleachbit/GUI.py:632 msgid "_About" msgstr "" #: ../bleachbit/GUI.py:633 msgid "_Help" msgstr "" #: ../bleachbit/GUI.py:658 msgctxt "button" msgid "Preview" msgstr "" #: ../bleachbit/GUI.py:663 msgid "Preview files in the selected operations (without deleting any files)" msgstr "" #: ../bleachbit/GUI.py:673 msgctxt "button" msgid "Clean" msgstr "" #: ../bleachbit/GUI.py:677 msgid "Clean files in the selected operations" msgstr "" #: ../bleachbit/GUI.py:766 msgid "Error when checking for updates: " msgstr "" #: ../bleachbit/GUI.py:796 msgid "" "Error loading the SQLite module: the antivirus software may be blocking it." msgstr "" #: ../bleachbit/RecognizeCleanerML.py:57 msgid "Security warning" msgstr "" #: ../bleachbit/RecognizeCleanerML.py:70 msgid "" "These cleaner definitions are new or have changed. Malicious definitions can " "damage your system. If you do not trust these changes, delete the files or " "quit." msgstr "" #: ../bleachbit/RecognizeCleanerML.py:85 msgctxt "column_label" msgid "Delete" msgstr "" #: ../bleachbit/RecognizeCleanerML.py:90 msgctxt "column_label" msgid "Filename" msgstr "" #: ../bleachbit/Unix.py:360 ../bleachbit/Unix.py:390 ../bleachbit/Unix.py:573 #, python-format msgid "Executable not found: %s" msgstr "" #. TRANSLATORS: %s expands to a name such as 'Firefox' or 'System'. #: ../bleachbit/Unix.py:570 ../bleachbit/Worker.py:128 #, python-format msgid "" "%s cannot be cleaned because it is currently running. Close it, and try " "again." msgstr "" #: ../bleachbit/Update.py:72 msgid "New winapp2.ini was downloaded." msgstr "" #: ../bleachbit/Update.py:111 msgid "Update BleachBit" msgstr "" #: ../bleachbit/Update.py:116 msgid "A new version is available." msgstr "" #. TRANSLATORS: %s expands to version such as '0.8.4' or '0.8.5beta' or #. similar #: ../bleachbit/Update.py:125 #, python-format msgid "Update to version %s" msgstr "" #. TRANSLATORS: This is cleaner name for cleaners imported from winapp2.ini #: ../bleachbit/Winapp.py:43 msgid "Applications" msgstr "" #. TRANSLATORS: This is cleaner name for cleaners imported #. from winapp2.ini #: ../bleachbit/Winapp.py:46 msgid "Internet" msgstr "" #. TRANSLATORS: This is cleaner name for cleaners imported #. from winapp2.ini #: ../bleachbit/Winapp.py:49 msgid "Multimedia" msgstr "" #. TRANSLATORS: This is cleaner name for cleaners imported #. from winapp2.ini #: ../bleachbit/Winapp.py:52 msgid "Utilities" msgstr "" #: ../bleachbit/Winapp.py:67 msgid "Games" msgstr "" #: ../bleachbit/Winapp.py:134 msgid "Imported from winapp2.ini" msgstr "" #. TRANSLATORS: This indicates an error. The special keyword #. %(operation)s will be replaced by 'firefox' or 'opera' or #. some other cleaner ID. The special keyword %(msg)s will be #. replaced by a message such as 'Permission denied.' #: ../bleachbit/Worker.py:71 #, python-format msgid "Exception while running operation '%(operation)s': '%(msg)s'" msgstr "" #. TRANSLATORS: 'free' means 'unallocated' #: ../bleachbit/Worker.py:167 msgid "Please wait. Wiping free disk space." msgstr "" #. TRANSLATORS: %s is replaced with Firefox, System, etc. #: ../bleachbit/Worker.py:169 ../bleachbit/Worker.py:308 #, python-format msgid "Please wait. Cleaning %s." msgstr "" #: ../bleachbit/Worker.py:184 msgid "Please wait. Wiping file system metadata." msgstr "" #: ../bleachbit/Worker.py:187 msgid "Please wait. Cleaning up after wiping file system metadata." msgstr "" #: ../bleachbit/Worker.py:190 #, python-format msgid "About %d minute remaining." msgid_plural "About %d minutes remaining." msgstr[0] "" msgstr[1] "" #. TRANSLATORS: This refers to disk space that was #. really recovered (in other words, not a preview) #: ../bleachbit/Worker.py:247 #, python-format msgid "Disk space recovered: %s" msgstr "" #. TRANSLATORS: This refers to a preview (no real #. changes were made yet) #: ../bleachbit/Worker.py:251 #, python-format msgid "Disk space to be recovered: %s" msgstr "" #. TRANSLATORS: This refers to the number of files really #. deleted (in other words, not a preview). #: ../bleachbit/Worker.py:256 #, python-format msgid "Files deleted: %d" msgstr "" #. TRANSLATORS: This refers to the number of files that #. would be deleted (in other words, simply a preview). #: ../bleachbit/Worker.py:260 #, python-format msgid "Files to be deleted: %d" msgstr "" #: ../bleachbit/Worker.py:263 #, python-format msgid "Special operations: %d" msgstr "" #: ../bleachbit/Worker.py:266 #, python-format msgid "Errors: %d" msgstr "" #. TRANSLATORS: The "deep scan" feature searches over broad #. areas of the file system such as the user's whole home directory #. or all the system executables. #: ../bleachbit/Worker.py:281 msgid "Please wait. Running deep scan." msgstr "" #. TRANSLATORS: %s is replaced with Firefox, System, etc. #: ../bleachbit/Worker.py:311 #, python-format msgid "Please wait. Previewing %s." msgstr "" bleachbit-2.0/po/eu.po0000644000175000017500000012061113245436307012771 0ustar hlehle# Basque translation for bleachbit # Copyright (c) 2011 Rosetta Contributors and Canonical Ltd 2011 # This file is distributed under the same license as the bleachbit package. # FIRST AUTHOR , 2011. # msgid "" msgstr "" "Project-Id-Version: bleachbit\n" "Report-Msgid-Bugs-To: FULL NAME \n" "POT-Creation-Date: 2012-12-29 17:07-0700\n" "PO-Revision-Date: 2013-05-30 14:28+0000\n" "Last-Translator: gorkaazk \n" "Language-Team: Basque \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n != 1;\n" "X-Launchpad-Export-Date: 2013-05-31 05:01+0000\n" "X-Generator: Launchpad (build 16660)\n" #: ../cleaners/mc.xml ../cleaners/tortoisesvn.xml ../cleaners/vim.xml #: ../cleaners/safari.xml ../cleaners/links2.xml ../cleaners/seamonkey.xml #: ../cleaners/realplayer.xml ../cleaners/windows_defender.xml #: ../cleaners/d4x.xml ../cleaners/internet_explorer.xml #: ../cleaners/libreoffice.xml ../cleaners/bash.xml ../cleaners/nautilus.xml #: ../cleaners/elinks.xml ../cleaners/chromium.xml #: ../cleaners/google_chrome.xml msgid "History" msgstr "Historia" #: ../cleaners/mc.xml ../cleaners/tortoisesvn.xml ../cleaners/links2.xml #: ../cleaners/realplayer.xml ../cleaners/d4x.xml ../cleaners/libreoffice.xml #: ../cleaners/nautilus.xml ../cleaners/gnome.xml ../bleachbit/Cleaner.py:286 #: ../bleachbit/Cleaner.py:357 msgid "Delete the usage history" msgstr "Ezabatu erabilera-historia" #: ../cleaners/gpodder.xml ../cleaners/hippo_opensim_viewer.xml #: ../cleaners/thumbnails.xml ../cleaners/safari.xml #: ../cleaners/transmission.xml ../cleaners/emesene.xml #: ../cleaners/liferea.xml ../cleaners/seamonkey.xml ../cleaners/vuze.xml #: ../cleaners/yahoo_messenger.xml ../cleaners/pidgin.xml #: ../cleaners/adobe_reader.xml ../cleaners/evolution.xml #: ../cleaners/tremulous.xml ../cleaners/libreoffice.xml ../cleaners/xine.xml #: ../cleaners/nexuiz.xml ../cleaners/exaile.xml ../cleaners/opera.xml #: ../cleaners/amsn.xml ../cleaners/gftp.xml ../cleaners/miro.xml #: ../cleaners/beagle.xml ../cleaners/kde.xml ../cleaners/epiphany.xml #: ../cleaners/flash.xml ../cleaners/secondlife_viewer.xml #: ../cleaners/java.xml ../cleaners/chromium.xml ../cleaners/audacious.xml #: ../cleaners/rhythmbox.xml ../cleaners/google_chrome.xml #: ../cleaners/thunderbird.xml ../bleachbit/Cleaner.py:186 #: ../bleachbit/Cleaner.py:306 ../bleachbit/Cleaner.py:377 msgid "Cache" msgstr "Cache-a" #: ../cleaners/gpodder.xml ../cleaners/yum.xml #: ../cleaners/hippo_opensim_viewer.xml ../cleaners/thumbnails.xml #: ../cleaners/transmission.xml ../cleaners/windows_explorer.xml #: ../cleaners/liferea.xml ../cleaners/vuze.xml #: ../cleaners/yahoo_messenger.xml ../cleaners/pidgin.xml #: ../cleaners/adobe_reader.xml ../cleaners/evolution.xml #: ../cleaners/libreoffice.xml ../cleaners/apt.xml ../cleaners/xine.xml #: ../cleaners/nexuiz.xml ../cleaners/exaile.xml ../cleaners/amsn.xml #: ../cleaners/gftp.xml ../cleaners/miro.xml ../cleaners/beagle.xml #: ../cleaners/kde.xml ../cleaners/flash.xml ../cleaners/secondlife_viewer.xml #: ../cleaners/java.xml ../cleaners/audacious.xml ../cleaners/rhythmbox.xml #: ../bleachbit/Cleaner.py:306 ../bleachbit/Cleaner.py:377 #: ../bleachbit/Cleaner.py:405 ../bleachbit/Cleaner.py:407 msgid "Delete the cache" msgstr "Ezabatu cache-a" #. TRANSLATORS: Vacuum is a verb. The term is jargon #. from the SQLite database. Microsoft Access uses #. the term 'Compact Database' (which you may translate #. instead). Another synonym is 'defragment.' #: ../cleaners/gpodder.xml ../cleaners/yum.xml ../cleaners/safari.xml #: ../cleaners/liferea.xml ../cleaners/chromium.xml #: ../cleaners/google_chrome.xml ../cleaners/thunderbird.xml #: ../bleachbit/Action.py:334 ../bleachbit/Cleaner.py:197 #: ../bleachbit/Cleaner.py:296 msgid "Vacuum" msgstr "Trinkotu" #: ../cleaners/gpodder.xml ../cleaners/yum.xml ../cleaners/safari.xml #: ../cleaners/liferea.xml ../cleaners/chromium.xml #: ../cleaners/google_chrome.xml ../cleaners/thunderbird.xml #: ../bleachbit/Cleaner.py:197 msgid "" "Clean database fragmentation to reduce space and improve speed without " "removing any data" msgstr "" "Garbitu datu-basearen fragmentazioa tamaina txikitu eta abiadura handitzeko " "daturik ezabatu gabe" #: ../cleaners/hippo_opensim_viewer.xml ../cleaners/gl-117.xml #: ../cleaners/tremulous.xml ../cleaners/nexuiz.xml #: ../cleaners/secondlife_viewer.xml msgid "Game" msgstr "Jokoa" #: ../cleaners/hippo_opensim_viewer.xml ../cleaners/teamviewer.xml #: ../cleaners/realplayer.xml ../cleaners/vuze.xml #: ../cleaners/yahoo_messenger.xml ../cleaners/amule.xml #: ../cleaners/easytag.xml ../cleaners/exaile.xml ../cleaners/screenlets.xml #: ../cleaners/gftp.xml ../cleaners/miro.xml ../cleaners/audacious.xml #: ../bleachbit/Cleaner.py:403 msgid "Logs" msgstr "Egunkariak" #: ../cleaners/hippo_opensim_viewer.xml ../cleaners/teamviewer.xml #: ../cleaners/realplayer.xml ../cleaners/vuze.xml #: ../cleaners/yahoo_messenger.xml ../cleaners/amule.xml #: ../cleaners/exaile.xml ../cleaners/screenlets.xml ../cleaners/gftp.xml #: ../cleaners/miro.xml ../cleaners/audacious.xml ../bleachbit/Cleaner.py:403 msgid "Delete the logs" msgstr "Ezabatu egunkariak" #: ../cleaners/thumbnails.xml ../cleaners/windows_explorer.xml msgid "Thumbnails" msgstr "Koadro txikiak" #: ../cleaners/vim.xml ../cleaners/gedit.xml msgid "Editor" msgstr "Editorea" #: ../cleaners/vim.xml msgid "" "Delete ~/.viminfo which includes file history, command history, and buffers" msgstr "" "Ezabatu ~/.viminfo (fitxategi-historia, komando-historia eta buffer-ak daude " "bertan)" #: ../cleaners/filezilla.xml ../cleaners/transmission.xml ../cleaners/vuze.xml #: ../cleaners/amule.xml ../cleaners/gftp.xml msgid "File transfer client" msgstr "Fitxategi transferentzia bezeroa" #: ../cleaners/filezilla.xml ../cleaners/paint.xml #: ../cleaners/windows_media_player.xml ../cleaners/windows_explorer.xml #: ../cleaners/teamviewer.xml ../cleaners/microsoft_office.xml #: ../cleaners/vlc.xml ../cleaners/adobe_reader.xml ../cleaners/winamp.xml #: ../cleaners/winzip.xml ../cleaners/winrar.xml ../cleaners/audacious.xml #: ../cleaners/wordpad.xml ../bleachbit/Cleaner.py:307 msgid "Most recently used" msgstr "Azkenaldian erabilitakoak" #: ../cleaners/filezilla.xml ../cleaners/windows_explorer.xml #: ../cleaners/gwenview.xml ../cleaners/adobe_reader.xml ../cleaners/gedit.xml #: ../cleaners/kde.xml ../cleaners/audacious.xml ../bleachbit/Cleaner.py:307 #: ../bleachbit/Cleaner.py:387 msgid "Delete the list of recently used documents" msgstr "Ezabatu azkenaldian erabilitako dokumentuen zerrenda" #: ../cleaners/skype.xml ../cleaners/xchat.xml ../cleaners/emesene.xml #: ../cleaners/seamonkey.xml ../cleaners/yahoo_messenger.xml #: ../cleaners/pidgin.xml ../cleaners/amsn.xml msgid "Chat logs" msgstr "Berriketa-egunkariak" #: ../cleaners/skype.xml ../cleaners/xchat.xml ../cleaners/emesene.xml #: ../cleaners/seamonkey.xml ../cleaners/yahoo_messenger.xml #: ../cleaners/pidgin.xml ../cleaners/amsn.xml msgid "Delete the chat logs" msgstr "Ezabatu berriketa-egunkariak" #: ../cleaners/xchat.xml ../cleaners/emesene.xml #: ../cleaners/yahoo_messenger.xml ../cleaners/pidgin.xml ../cleaners/amsn.xml msgid "Chat client" msgstr "Berriketa bezeroa" #: ../cleaners/safari.xml ../cleaners/links2.xml ../cleaners/seamonkey.xml #: ../cleaners/konqueror.xml ../cleaners/internet_explorer.xml #: ../cleaners/opera.xml ../cleaners/epiphany.xml ../cleaners/elinks.xml #: ../cleaners/chromium.xml ../cleaners/google_chrome.xml #: ../bleachbit/Cleaner.py:209 msgid "Web browser" msgstr "Web arakatzailea" #: ../cleaners/safari.xml ../cleaners/seamonkey.xml ../cleaners/opera.xml #: ../cleaners/epiphany.xml ../cleaners/chromium.xml #: ../cleaners/google_chrome.xml ../cleaners/thunderbird.xml #: ../bleachbit/Cleaner.py:186 msgid "Delete the web cache, which reduces time to display revisited pages" msgstr "" "Ezabatu aurretik bisitatutako orriak bistaratzeko denbora txikitzen duen web " "cache-a" #: ../cleaners/safari.xml ../cleaners/liferea.xml ../cleaners/seamonkey.xml #: ../cleaners/realplayer.xml ../cleaners/konqueror.xml #: ../cleaners/internet_explorer.xml ../cleaners/opera.xml #: ../cleaners/epiphany.xml ../cleaners/flash.xml ../cleaners/silverlight.xml #: ../cleaners/chromium.xml ../cleaners/google_chrome.xml #: ../cleaners/thunderbird.xml ../bleachbit/Cleaner.py:187 msgid "Cookies" msgstr "Cookie-ak" #: ../cleaners/safari.xml ../cleaners/liferea.xml ../cleaners/seamonkey.xml #: ../cleaners/realplayer.xml ../cleaners/konqueror.xml #: ../cleaners/internet_explorer.xml ../cleaners/opera.xml #: ../cleaners/epiphany.xml ../cleaners/flash.xml ../cleaners/silverlight.xml #: ../cleaners/chromium.xml ../cleaners/google_chrome.xml #: ../cleaners/thunderbird.xml ../bleachbit/Cleaner.py:187 msgid "" "Delete cookies, which contain information such as web site preferences, " "authentication, and tracking identification" msgstr "" "Ezabatu cookie-ak (webguneen hobespen, autentifikazio eta jarraipen " "identifikazioen gisako informazioa gordetzen dute)" #: ../cleaners/safari.xml ../cleaners/konqueror.xml #: ../cleaners/internet_explorer.xml ../cleaners/opera.xml #: ../bleachbit/Cleaner.py:196 msgid "List of visited web pages" msgstr "Bisitatutako web orrien zerrenda" #: ../cleaners/paint.xml ../cleaners/windows_media_player.xml #: ../cleaners/windows_explorer.xml ../cleaners/teamviewer.xml #: ../cleaners/microsoft_office.xml ../cleaners/vlc.xml ../cleaners/winamp.xml #: ../cleaners/winzip.xml ../cleaners/winrar.xml ../cleaners/wordpad.xml msgid "Delete the most recently used list" msgstr "Ezabatu azkenaldian erabilitakoen zerrenda" #: ../cleaners/emesene.xml msgid "Delete the avatars and emoticons cache" msgstr "Ezabatu avatar eta aurpegieren cache-a" #: ../cleaners/windows_explorer.xml ../cleaners/gwenview.xml #: ../cleaners/gedit.xml ../cleaners/kde.xml ../bleachbit/Cleaner.py:387 msgid "Recent documents list" msgstr "Azkenaldiko dokumentuen zerrenda" #. In Windows 'Run' is the dialog in the Start menu #. In GNOME 'Run' is the dialog shown when typing ALT+F2' #: ../cleaners/windows_explorer.xml ../cleaners/gnome.xml msgid "Run" msgstr "Exekutatu" #: ../cleaners/windows_explorer.xml ../cleaners/opera.xml #: ../cleaners/gnome.xml ../cleaners/google_toolbar.xml msgid "Search history" msgstr "Bilaketen historia" #: ../cleaners/windows_explorer.xml ../cleaners/opera.xml #: ../cleaners/gnome.xml ../cleaners/google_toolbar.xml msgid "Delete the search history" msgstr "Ezabatu bilaketen historia" #: ../cleaners/gl-117.xml ../cleaners/microsoft_office.xml #: ../cleaners/beagle.xml ../cleaners/secondlife_viewer.xml #: ../cleaners/x11.xml msgid "Debug logs" msgstr "Arazketa-egunkariak" #: ../cleaners/gl-117.xml ../cleaners/microsoft_office.xml #: ../cleaners/easytag.xml ../cleaners/beagle.xml #: ../cleaners/secondlife_viewer.xml ../cleaners/x11.xml msgid "Delete the debug logs" msgstr "Ezabatu arazketa-egunkariak" #: ../cleaners/google_earth.xml ../cleaners/winetricks.xml #: ../cleaners/vuze.xml ../cleaners/adobe_reader.xml ../cleaners/amule.xml #: ../cleaners/wine.xml ../cleaners/internet_explorer.xml ../cleaners/gimp.xml #: ../cleaners/kde.xml ../cleaners/deepscan.xml ../bleachbit/Cleaner.py:430 msgid "Temporary files" msgstr "Aldi baterako fitxategiak" #: ../cleaners/google_earth.xml ../cleaners/winetricks.xml #: ../cleaners/vuze.xml ../cleaners/adobe_reader.xml ../cleaners/amule.xml #: ../cleaners/wine.xml ../cleaners/internet_explorer.xml ../cleaners/gimp.xml #: ../cleaners/kde.xml ../cleaners/deepscan.xml ../bleachbit/Cleaner.py:430 msgid "Delete the temporary files" msgstr "Ezabatu aldi baterako fitxategiak" #: ../cleaners/seamonkey.xml ../cleaners/opera.xml ../bleachbit/Cleaner.py:191 msgid "Download history" msgstr "Deskargen historia" #: ../cleaners/seamonkey.xml ../cleaners/opera.xml ../bleachbit/Cleaner.py:191 msgid "List of files downloaded" msgstr "Deskargatutako fitxategien zerrenda" #: ../cleaners/seamonkey.xml msgid "Delete the list of visited web pages" msgstr "Ezabatu bisitatutako web-orrien zerrenda" #: ../cleaners/vuze.xml ../cleaners/deepscan.xml msgid "Backup files" msgstr "Babeskopia-fitxategiak" #: ../cleaners/vuze.xml ../cleaners/deepscan.xml msgid "Delete the backup files" msgstr "Ezabatu babeskopia-fitxategiak" #: ../cleaners/konqueror.xml ../cleaners/opera.xml ../cleaners/chromium.xml msgid "Current session" msgstr "Uneko saioa" #: ../cleaners/konqueror.xml ../cleaners/opera.xml ../cleaners/chromium.xml msgid "Delete the current session" msgstr "Ezabatu uneko saioa" #: ../cleaners/konqueror.xml ../cleaners/opera.xml ../bleachbit/Cleaner.py:196 msgid "URL history" msgstr "URL historia" #: ../cleaners/microsoft_office.xml ../cleaners/libreoffice.xml #: ../bleachbit/Cleaner.py:317 msgid "Office suite" msgstr "Bulegotikako suitea" #: ../cleaners/windows_defender.xml ../cleaners/beagle.xml #: ../cleaners/thunderbird.xml ../cleaners/deepscan.xml #: ../bleachbit/Cleaner.py:188 msgid "Delete the files" msgstr "Ezabatu fitxategiak" #: ../cleaners/tremulous.xml msgid "Delete the list of game servers" msgstr "Ezabatu joko zerbitzari zerrenda" #: ../cleaners/internet_explorer.xml ../cleaners/chromium.xml #: ../cleaners/google_chrome.xml ../bleachbit/Cleaner.py:192 msgid "Form history" msgstr "Formularioen historia" #: ../cleaners/internet_explorer.xml ../bleachbit/Cleaner.py:192 msgid "A history of forms entered in web sites and in the Search bar" msgstr "Webguneetan sartutako formularioen eta bilaketa barraren historia" #: ../cleaners/apt.xml msgid "Delete obsolete files" msgstr "Ezabatu fitxategi zaharkituak" #: ../cleaners/xine.xml ../cleaners/miro.xml ../cleaners/flash.xml msgid "Multimedia viewer" msgstr "Multimedia ikustailea" #: ../cleaners/recoll.xml ../cleaners/beagle.xml msgid "Search tool" msgstr "Bilaketa tresna" #: ../cleaners/recoll.xml ../cleaners/beagle.xml ../cleaners/thunderbird.xml msgid "Index" msgstr "Indizea" #: ../cleaners/recoll.xml msgid "" "Delete the search index, a database of words and the files they contain" msgstr "" "Ezabatu bilaketa-indizea (hitzen eta hitz hauek agertzen diren fitxategien " "datu-basea)" #: ../cleaners/exaile.xml msgid "Downloaded podcasts" msgstr "Deskargatutako podcast-ak" #: ../cleaners/exaile.xml msgid "Delete downloaded podcasts" msgstr "Ezabatu deskargatutako podcast-ak" #: ../cleaners/bash.xml msgid "Delete the command history" msgstr "Ezabatu komandoen historia" #. TRANSLATORS: DOM = Document Object Model. #: ../cleaners/opera.xml ../cleaners/chromium.xml #: ../cleaners/google_chrome.xml ../bleachbit/Cleaner.py:190 msgid "DOM Storage" msgstr "DOM biltegiratzea" #: ../cleaners/opera.xml ../cleaners/chromium.xml #: ../cleaners/google_chrome.xml ../bleachbit/Cleaner.py:190 msgid "Delete HTML5 cookies" msgstr "Ezabatu HTML5 cookie-ak" #: ../cleaners/nautilus.xml msgid "Custom folders will be reset." msgstr "Karpeta pertsonalizatuak berrezarriko dira." #: ../cleaners/screenlets.xml msgid "Widgets for the desktop" msgstr "Mahaigainerako trepetak" #: ../cleaners/epiphany.xml ../cleaners/chromium.xml #: ../cleaners/google_chrome.xml ../cleaners/thunderbird.xml #: ../bleachbit/Cleaner.py:195 msgid "Passwords" msgstr "Pasahitzak" #: ../cleaners/epiphany.xml ../cleaners/chromium.xml #: ../cleaners/google_chrome.xml ../cleaners/thunderbird.xml #: ../bleachbit/Cleaner.py:195 msgid "" "A database of usernames and passwords as well as a list of sites that should " "not store passwords" msgstr "" "Erabiltzaile-izen eta pasahitzen datu-basea eta pasahitzik gorde behar ez " "duten guneen zerrenda" #: ../cleaners/epiphany.xml msgid "Places" msgstr "Lekuak" #: ../cleaners/epiphany.xml msgid "" "A database of URLs including bookmarks, favicons, and a history of visited " "web sites" msgstr "" "URL-en datu-basea (laster-markak, gogoko ikonoak eta bisitatutako web-orrien " "historia daude bertan)" #: ../cleaners/epiphany.xml msgid "This option deletes all bookmarks." msgstr "Aukera honek laster-marka guztiak ezabatzen ditu." #: ../cleaners/elinks.xml msgid "Delete the cookies, visited URLs, and search history" msgstr "Ezabatu cookie-ak, bisitatutako URL-ak eta bilaketa-historia" #: ../cleaners/chromium.xml ../cleaners/google_chrome.xml msgid "A history of forms entered in web sites" msgstr "Webguneetan sartutako formularioen historia" #: ../cleaners/chromium.xml ../cleaners/google_chrome.xml msgid "" "Delete the history which includes visited sites, downloads, and thumbnails" msgstr "" "Ezabatu historia, bisitatutako guneak, deskargak eta koadro txikiak barne" #: ../cleaners/chromium.xml ../cleaners/google_chrome.xml msgid "Search engines" msgstr "Bilatzaileak" #. 'Factory' means a search engine that is installed by default 'from the factory,' but this is different than a 'default search engine' https://lists.launchpad.net/launchpad-translators/msg00283.html #: ../cleaners/chromium.xml ../cleaners/google_chrome.xml msgid "" "Reset the search engine usage history and delete non-factory search engines, " "some of which are added automatically" msgstr "" "Berrezarri bilatzailearen erabilera-historia eta ezabatu bilatzaile ez-" "lehenetsiak, horietako batzuk automatikoki gehitzen dira" #: ../cleaners/google_chrome.xml msgid "Session" msgstr "Saioa" #: ../cleaners/google_chrome.xml msgid "Delete the current and last sessions" msgstr "Ezabatu uneko eta azkenengo saioak" #: ../cleaners/deepscan.xml msgid "Deep scan" msgstr "Eskaneatze sakona" #: ../cleaners/deepscan.xml msgid "Inspect the preview for any files you want to keep." msgstr "Aztertu aurrebista gorde nahi dituzun fitxategientzat." #: ../cleaners/deepscan.xml msgid "This option is slow." msgstr "Aukera hau mantsoa da." #: ../bleachbit.desktop msgid "Unnecessary file cleaner" msgstr "Beharrezko ez diren fitxategien garbitzailea" #: ../bleachbit.desktop msgid "Free space and maintain privacy" msgstr "Egin leku librea eta mantendu pribatutasuna" #. TRANSLATORS: Parts of this file will be deleted #: ../bleachbit/Action.py:203 ../bleachbit/Action.py:216 #: ../bleachbit/Action.py:228 ../bleachbit/Action.py:241 #: ../bleachbit/Action.py:253 ../bleachbit/Command.py:183 #: ../bleachbit/Command.py:213 msgid "Clean file" msgstr "Garbitu fitxategia" #. TRANSLATORS: this is the context menu #: ../bleachbit/Action.py:307 ../bleachbit/GUI.py:585 msgid "Clean" msgstr "Garbitu" #: ../bleachbit/Cleaner.py:188 msgid "Crash reports" msgstr "Kraskatze-txostenak" #: ../bleachbit/Cleaner.py:193 msgid "Session restore" msgstr "Saioa berrezarri" #: ../bleachbit/Cleaner.py:193 msgid "Loads the initial session after the browser closes or crashes" msgstr "" "Azken saioa kargatzen du arakatzailea ustekabean itxi edo kraskatzean" #: ../bleachbit/Cleaner.py:194 msgid "Site preferences" msgstr "Gunearen hobespenak" #: ../bleachbit/Cleaner.py:194 msgid "Settings for individual sites" msgstr "Banakako guneen hobespenak" #. TRANSLATORS: desktop entries are .desktop files in Linux tha #. make up the application menu (the menu that shows BleachBit, #. Firefox, and others. The .desktop files also associate file #. types, so clicking on an .html file in Nautilus brings up #. Firefox. #. More information: http://standards.freedesktop.org/menu-spec/latest/index.html#introduction #: ../bleachbit/Cleaner.py:376 msgid "Broken desktop files" msgstr "Hondatutako .desktop fitxategiak" #: ../bleachbit/Cleaner.py:376 msgid "Delete broken application menu entries and file associations" msgstr "" "Ezabatu aplikazioen hondatutako menu-sarrerak eta fitxategi elkarketak" #. TRANSLATORS: Localizations are files supporting specific #. languages, so applications appear in Spanish, etc. #: ../bleachbit/Cleaner.py:380 msgid "Localizations" msgstr "Itzulpenak" #: ../bleachbit/Cleaner.py:380 msgid "Delete files for unwanted languages" msgstr "Ezabatu nahi ez diren hizkuntzetarako fitxategiak" #: ../bleachbit/Cleaner.py:381 msgid "Configure this option in the preferences." msgstr "Konfiguratu aukera hau hobespenetan." #. TRANSLATORS: 'Rotated logs' refers to old system log files. #. Linux systems often have a scheduled job to rotate the logs #. which means compress all except the newest log and then delete #. the oldest log. You could translate this 'old logs.' #: ../bleachbit/Cleaner.py:386 msgid "Rotated logs" msgstr "Biratutako egunkariak" #: ../bleachbit/Cleaner.py:386 msgid "Delete old system logs" msgstr "Ezabatu sistemaren egunkari zaharrak" #: ../bleachbit/Cleaner.py:388 msgid "Trash" msgstr "Zakarrontzia" #: ../bleachbit/Cleaner.py:388 msgid "Empty the trash" msgstr "Hustu zakarrontzia" #: ../bleachbit/Cleaner.py:394 ../bleachbit/Cleaner.py:536 #: ../bleachbit/Worker.py:212 msgid "Memory" msgstr "Memoria" #. TRANSLATORS: 'free' means 'unallocated' #: ../bleachbit/Cleaner.py:396 msgid "Wipe the swap and free memory" msgstr "Garbitu swap memoria eta memoria librea" #: ../bleachbit/Cleaner.py:397 msgid "This option is experimental and may cause system problems." msgstr "" "Aukera hau esperimentala da eta arazoak sortu ditzazke zure sisteman." #: ../bleachbit/Cleaner.py:404 msgid "Memory dump" msgstr "Memoria-iraulketa" #: ../bleachbit/Cleaner.py:404 msgid "Delete the file memory.dmp" msgstr "Ezabatu memory.dmp fitxategia" #. TRANSLATORS: Prefetch is Microsoft Windows jargon. #: ../bleachbit/Cleaner.py:407 msgid "Prefetch" msgstr "Aurrez eskuratu" #: ../bleachbit/Cleaner.py:408 msgid "Recycle bin" msgstr "Zakarrontzia" #: ../bleachbit/Cleaner.py:408 msgid "Empty the recycle bin" msgstr "Hustu zakarrontzia" #. TRANSLATORS: 'Update' is a noun, and 'Update uninstallers' is an option to delete #. the uninstallers for software updates. #: ../bleachbit/Cleaner.py:411 msgid "Update uninstallers" msgstr "Eguneraketen desinstalatzaileak" #: ../bleachbit/Cleaner.py:411 msgid "" "Delete uninstallers for Microsoft updates including hotfixes, service packs, " "and Internet Explorer updates" msgstr "" "Ezabatu Microsoft eguneraketen desinstalatzaileak (hotfix-ak, service pack-" "ak eta Internet Explorer-en eguneraketak barne)" #: ../bleachbit/Cleaner.py:418 ../bleachbit/Cleaner.py:627 msgid "Clipboard" msgstr "Arbela" #: ../bleachbit/Cleaner.py:418 msgid "" "The desktop environment's clipboard used for copy and paste operations" msgstr "" "Kopiatu eta itsatsi eragiketetan erabiltzen den mahaigain inguruneko arbela" #. TRANSLATORS: "Custom" is an option allowing the user to specify which files and folders will be erased. #: ../bleachbit/Cleaner.py:424 ../bleachbit/GuiPreferences.py:62 msgid "Custom" msgstr "Pertsonalizatua" #: ../bleachbit/Cleaner.py:424 msgid "Delete user-specified files and folders" msgstr "Ezabatu erabiltzaileak zehazturiko fitxategi eta karpetak" #. TRANSLATORS: 'free' means 'unallocated' #: ../bleachbit/Cleaner.py:426 msgid "Free disk space" msgstr "Leku librea diskoan" #. TRANSLATORS: 'free' means 'unallocated' #: ../bleachbit/Cleaner.py:428 msgid "Overwrite free disk space to hide deleted files" msgstr "Diskoko leku librea gainidatzi ezabatutako fitxategiak ezkutatzeko" #: ../bleachbit/Cleaner.py:429 msgid "This option is very slow." msgstr "Aukera hau oso mantsoa da." #: ../bleachbit/Cleaner.py:433 msgid "The system in general" msgstr "Sistema orokorrean" #: ../bleachbit/Cleaner.py:439 ../bleachbit/Cleaner.py:712 msgid "System" msgstr "Sistema" #. TRANSLATORS: 'Free' means 'unallocated.' #. %s expands to a path such as C:\ or /tmp/ #: ../bleachbit/Cleaner.py:636 ../bleachbit/Cleaner.py:739 #, python-format msgid "Overwrite free disk space %s" msgstr "Gainidatzi %s diskoko leku librea" #. TRANSLATORS: %s expands to a drive letter such as C:\ or D:\ #: ../bleachbit/Cleaner.py:664 #, python-format msgid "Recycle bin %s" msgstr "%s zakarrontzia" #: ../bleachbit/CLI.py:123 #, python-format msgid "not a valid cleaner: %s" msgstr "ez da baliozko garbitzailea: %s" #. TRANSLATORS: This is the command line usage. Don't translate #. %prog, but do translate usage, options, cleaner, and option. #. More information about the command line is here #. http://bleachbit.sourceforge.net/documentation/command-line #: ../bleachbit/CLI.py:150 msgid "usage: %prog [options] cleaner.option1 cleaner.option2" msgstr "erabilera: %prog [aukerak] garbitzailea.aukera1 garbitzailea.aukera2" #: ../bleachbit/CLI.py:153 msgid "list cleaners" msgstr "Zerrendatu garbitzaileak" #: ../bleachbit/CLI.py:155 msgid "delete files and make other permanent changes" msgstr "ezabatu fitxategiak eta gauzatu beste aldaketa iraunkorrak" #. TRANSLATORS: this is a warning for using --delete which will go away one day #: ../bleachbit/CLI.py:158 msgid "depreciated alias for --clean" msgstr "alias zaharkitua --clean-entzako" #: ../bleachbit/CLI.py:160 msgid "show system information" msgstr "erakutsi sistemaren informazioa" #: ../bleachbit/CLI.py:161 msgid "launch the graphical interface" msgstr "abiarazi interfaze grafikoa" #: ../bleachbit/CLI.py:163 msgid "do not prompt for administrator privileges" msgstr "ez eskatu administratzaile baimenik" #: ../bleachbit/CLI.py:168 msgid "preview files to be deleted and other changes" msgstr "ezabatuko diren fitxategien eta beste aldaketen aurrebista" #: ../bleachbit/CLI.py:170 msgid "use options set in the graphical interface" msgstr "erabili interfaze grafikoan zehaztutako aukerak" #: ../bleachbit/CLI.py:172 msgid "output version information and exit" msgstr "bertsioaren informazioa erakutsi eta irten" #: ../bleachbit/CLI.py:174 msgid "overwrite files to hide contents" msgstr "gainidatzi fitxategiak edukiak ezkutatzeko" #. TRANSLATORS: This is the label in the log indicating was #. skipped because it matches the whitelist #: ../bleachbit/Command.py:46 msgid "Skip" msgstr "Saltatu" #. TRANSLATORS: This is the label in the log indicating will be #. deleted (for previews) or was actually deleted #: ../bleachbit/Command.py:73 msgid "Delete" msgstr "Ezabatu" #. TRANSLATORS: The file will be deleted when the #. system reboots #: ../bleachbit/Command.py:93 msgid "Mark for deletion" msgstr "Ezabatzeko markatu" #. TRANSLATORS: The file will be truncated to 0 bytes in length #: ../bleachbit/Command.py:250 msgid "Truncate" msgstr "Trunkatu" #: ../bleachbit/Command.py:289 msgid "Delete registry key" msgstr "Ezabatu erregistro-gakoa" #: ../bleachbit/GuiBasic.py:113 msgid "Delete confirmation" msgstr "Ezabaketaren baieztapena" #: ../bleachbit/GuiBasic.py:121 msgid "" "Are you sure you want to permanently delete files according to the selected " "operations? The actual files that will be deleted may have changed since " "you ran the preview." msgstr "" "Ziur zaude betirako ezabatu nahi dituzula fitxategiak hautatutako eragiketen " "arabera? Ezabatuko diren fitxategiak aldatu egin dira aurrebista exekutatu " "zenuen azken alditik." #: ../bleachbit/GuiBasic.py:123 msgid "Are you sure you want to permanently delete these files?" msgstr "Ziur zaude betirako ezabatu nahi dituzula fitxategi hauek?" #: ../bleachbit/GuiBasic.py:159 #, python-format msgid "" "Because you are running as root, please manually open this link in a web " "browser:\n" "%s" msgstr "" "Administratzaile gisa exekutatzen ari zarenez, mesedez ireki eskuz lotura " "hau web arakatzaile batean:\n" "%s" #. TRANSLATORS: %s expands to bleachbit.sourceforge.net or similar #: ../bleachbit/GuiBasic.py:171 #, python-format msgid "Open web browser to %s?" msgstr "%s ireki nahi duzu web arakatzailean?" #: ../bleachbit/GuiPreferences.py:55 ../bleachbit/GUI.py:637 msgid "Preferences" msgstr "Hobespenak" #: ../bleachbit/GuiPreferences.py:61 msgid "General" msgstr "Orokorra" #: ../bleachbit/GuiPreferences.py:63 msgid "Drives" msgstr "Unitateak" #: ../bleachbit/GuiPreferences.py:65 msgid "Languages" msgstr "Hizkuntzak" #: ../bleachbit/GuiPreferences.py:66 msgid "Whitelist" msgstr "Zerrenda zuria" #: ../bleachbit/GuiPreferences.py:111 msgid "Check periodically for software updates via the Internet" msgstr "Egiaztatu aldian behin eguneraketarik badagoen Interneten" #: ../bleachbit/GuiPreferences.py:114 msgid "" "If an update is found, you will be given the option to view information " "about it. Then, you may manually download and install the update." msgstr "" "Eguneraketa bat aurkitzen bada, informazioa ikusteko aukera eskainiko zaizu. " "Orduan, eskuz deskargatu eta instalatu ahalko duzu." #: ../bleachbit/GuiPreferences.py:120 msgid "Check for new beta releases" msgstr "Egiaztatu beta bertsio berririk baden" #: ../bleachbit/GuiPreferences.py:127 msgid "Download and update cleaners from community (winapp2.ini)" msgstr "Deskargatu eta eguneratu garbitzaileak komunitatetik (winapp2.ini)" #. TRANSLATORS: This means to hide cleaners which would do #. nothing. For example, if Firefox were never used on #. this system, this option would hide Firefox to simplify #. the list of cleaners. #: ../bleachbit/GuiPreferences.py:139 msgid "Hide irrelevant cleaners" msgstr "Ezkutatu garrantzirik gabeko garbitzaileak" #. TRANSLATORS: Overwriting is the same as shredding. It is a way #. to prevent recovery of the data. You could also translate #. 'Shred files to prevent recovery.' #: ../bleachbit/GuiPreferences.py:147 msgid "Overwrite files to hide contents" msgstr "Gainidatzi fitxategiak edukiak ezkutatzeko" #: ../bleachbit/GuiPreferences.py:150 msgid "" "Overwriting is ineffective on some file systems and with certain BleachBit " "operations. Overwriting is significantly slower." msgstr "" "Gainidazketa ez da eraginkorra fitxategi sistema batzuetan eta BleachBit-en " "zenbait eragiketan. Gainidazketa nabarmen mantsoagoa da." #: ../bleachbit/GuiPreferences.py:153 msgid "Start BleachBit with computer" msgstr "Abiarazi BleachBit ordenagailua abiaraztean" #: ../bleachbit/GuiPreferences.py:164 ../bleachbit/GuiPreferences.py:295 #: ../bleachbit/GuiPreferences.py:341 ../bleachbit/GUI.py:545 msgid "Choose a folder" msgstr "Hautatu karpeta" #. TRANSLATORS: 'free' means 'unallocated' #: ../bleachbit/GuiPreferences.py:189 msgid "" "Choose a writable folder for each drive for which to overwrite free space." msgstr "" "Hautatu idazteko baimena duen karpeta bat leku librea gainidatzi behar den " "unitate bakoitzeko." #. TRANSLATORS: In the preferences dialog, this button adds a path to the list of paths #: ../bleachbit/GuiPreferences.py:210 msgctxt "button" msgid "Add" msgstr "Gehitu" #. TRANSLATORS: In the preferences dialog, this button removes a path from the list of paths #: ../bleachbit/GuiPreferences.py:213 ../bleachbit/GuiPreferences.py:433 msgctxt "button" msgid "Remove" msgstr "Ezabatu" #: ../bleachbit/GuiPreferences.py:238 msgid "All languages will be deleted except those checked." msgstr "Hizkuntza guztiak ezabatuko dira, hautatutakoak ezik." #: ../bleachbit/GuiPreferences.py:255 msgid "Preserve" msgstr "Mantendu" #: ../bleachbit/GuiPreferences.py:259 msgid "Code" msgstr "Kodea" #: ../bleachbit/GuiPreferences.py:263 ../bleachbit/GUI.py:136 msgid "Name" msgstr "Izena" #: ../bleachbit/GuiPreferences.py:281 ../bleachbit/GuiPreferences.py:327 msgid "Choose a file" msgstr "Hautatu fitxategi bat" #: ../bleachbit/GuiPreferences.py:288 ../bleachbit/GuiPreferences.py:334 #: ../bleachbit/GuiPreferences.py:381 msgid "File" msgstr "Fitxategia" #: ../bleachbit/GuiPreferences.py:303 ../bleachbit/GuiPreferences.py:349 #: ../bleachbit/GuiPreferences.py:383 msgid "Folder" msgstr "Karpeta" #. TRANSLATORS: "Paths" is used generically to refer to both files and folders #: ../bleachbit/GuiPreferences.py:391 msgid "Theses paths will not be deleted or modified." msgstr "Bide hauek ez dira ezabatu edo aldatuko." #: ../bleachbit/GuiPreferences.py:393 msgid "These locations can be selected for deletion." msgstr "Kokapen hauek hauta daitezke ezabatzeko." #: ../bleachbit/GuiPreferences.py:401 msgid "Type" msgstr "Mota" #. TRANSLATORS: In the tree view "Path" is used generically to refer to a #. file, a folder, or a pattern describing either #: ../bleachbit/GuiPreferences.py:407 msgid "Path" msgstr "Bidea" #: ../bleachbit/GuiPreferences.py:419 msgctxt "button" msgid "Add file" msgstr "Gehitu fitxategia" #: ../bleachbit/GuiPreferences.py:426 msgctxt "button" msgid "Add folder" msgstr "Gehitu karpeta" #: ../bleachbit/GUI.py:144 msgid "Active" msgstr "Aktiboa" #. TRANSLATORS: %(cleaner) may be Firefox, System, etc. #. %(option) may be cache, logs, cookies, etc. #. %(warning) may be 'This option is really slow' #: ../bleachbit/GUI.py:176 #, python-format msgid "" "Warning regarding %(cleaner)s - %(option)s:\n" "\n" "%(warning)s" msgstr "" "%(cleaner)s - %(option)s-i buruzko oharra:\n" "\n" "%(warning)s" #: ../bleachbit/GUI.py:346 msgid "You must select an operation" msgstr "Eragiketa bat hautatu behar duzu" #: ../bleachbit/GUI.py:369 ../bleachbit/GUI.py:384 msgid "Done." msgstr "Eginda." #: ../bleachbit/GUI.py:398 msgid "Program to clean unnecessary files" msgstr "Behar ez diren fitxategiak ezabatzeko programa" #: ../bleachbit/GUI.py:403 msgid "" "GNU General Public License version 3 or later.\n" "See http://www.gnu.org/licenses/gpl-3.0.txt" msgstr "" "GNU Lizentzia Publiko Orokorraren (GPL) 3. bertsioa edo berriagoa.\n" "Ikusi http://www.gnu.org/licenses/gpl-3.0.txt" #. TRANSLATORS: Maintain the names of translators here. #. Launchpad does this automatically for translations #. typed in Launchpad. This is a special string shown #. in the 'About' box. #: ../bleachbit/GUI.py:409 msgid "translator-credits" msgstr "" "Launchpad Contributions:\n" " Asier Iturralde Sarasola https://launchpad.net/~asier-iturralde\n" " gorkaazk https://launchpad.net/~gorkaazkarate" #: ../bleachbit/GUI.py:422 msgid "System information" msgstr "Sistemaren informazioa" #: ../bleachbit/GUI.py:492 msgid "Choose files to shred" msgstr "Hautatu fitxategiak birrintzeko" #: ../bleachbit/GUI.py:495 msgid "Choose folder to shred" msgstr "Hautatu karpeta birrintzeko" #. TRANSLATORS: this is the context menu #: ../bleachbit/GUI.py:580 msgid "Preview" msgstr "Aurrebista" #: ../bleachbit/GUI.py:631 msgid "_Shred Files" msgstr "_Birrindu Fitxategiak" #: ../bleachbit/GUI.py:632 msgid "Sh_red Folders" msgstr "Bi_rrindu Karpetak" #: ../bleachbit/GUI.py:633 msgid "_Wipe Free Space" msgstr "_Garbitu Leku Librea" #: ../bleachbit/GUI.py:634 msgid "S_hred Settings and Quit" msgstr "Birrindu _Ezarpenak eta Irten" #: ../bleachbit/GUI.py:635 msgid "_Quit" msgstr "_Irten" #: ../bleachbit/GUI.py:636 msgid "_File" msgstr "_Fitxategia" #: ../bleachbit/GUI.py:638 msgid "_Edit" msgstr "_Editatu" #: ../bleachbit/GUI.py:639 msgid "Help Contents" msgstr "Laguntzaren edukia" #: ../bleachbit/GUI.py:641 msgid "_Release Notes" msgstr "_Bertsio oharrak" #: ../bleachbit/GUI.py:643 msgid "_System Information" msgstr "_Sistemaren Informazioa" #: ../bleachbit/GUI.py:644 msgid "_About" msgstr "_Honi buruz" #: ../bleachbit/GUI.py:645 msgid "_Help" msgstr "_Laguntza" #. TRANSLATORS: This is the preview button on the main window. It previews changes. #: ../bleachbit/GUI.py:669 msgctxt "button" msgid "Preview" msgstr "Aurrebista" #: ../bleachbit/GUI.py:672 msgid "Preview files in the selected operations (without deleting any files)" msgstr "" "Hautatutako eragiketetako fitxategien aurrebista ikusi (fitxategirik ezabatu " "gabe)" #. TRANSLATORS: This is the clean button on the main window. #. It makes permanent changes: usually deleting files, sometimes altering them. #: ../bleachbit/GUI.py:680 msgctxt "button" msgid "Clean" msgstr "Garbitu" #: ../bleachbit/GUI.py:683 msgid "Clean files in the selected operations" msgstr "Garbitu hautatutako eragiketetako fitxategiak" #: ../bleachbit/GUI.py:769 msgid "Error when checking for updates: " msgstr "Errorea eguneraketak egiaztatzean: " #: ../bleachbit/GUI.py:800 msgid "" "Error loading the SQLite module: the antivirus software may be blocking it." msgstr "" "Errorea SQLite modulua kargatzean: antibirus softwareak blokeatuta egon " "daiteke." #: ../bleachbit/RecognizeCleanerML.py:62 msgid "Security warning" msgstr "Segurtasun oharra" #. TRANSLATORS: Cleaner definitions are XML data files that define #. which files will be cleaned. #: ../bleachbit/RecognizeCleanerML.py:74 msgid "" "These cleaner definitions are new or have changed. Malicious definitions can " "damage your system. If you do not trust these changes, delete the files or " "quit." msgstr "" "Garbiketarako definizio hauek berriak dira edo aldatu egin dira. Definizio " "maltzurrek zure sistema kaltetu dezakete. Aldaketa hauekin fidatzen ez " "bazara, ezabatu fitxategiak edo irten." #. TRANSLATORS: This is the column label (header) in the tree view for the security dialog #: ../bleachbit/RecognizeCleanerML.py:87 msgctxt "column_label" msgid "Delete" msgstr "Ezabatu" #. TRANSLATORS: This is the column label (header) in the tree view for the security dialog #: ../bleachbit/RecognizeCleanerML.py:90 msgctxt "column_label" msgid "Filename" msgstr "Fitxategi-izena" #: ../bleachbit/Unix.py:366 ../bleachbit/Unix.py:396 ../bleachbit/Unix.py:576 #, python-format msgid "Executable not found: %s" msgstr "Exekutagarria ez da aurkitu: %s" #. TRANSLATORS: %s expands to a name such as 'Firefox' or 'System'. #: ../bleachbit/Unix.py:573 ../bleachbit/Worker.py:136 #, python-format msgid "" "%s cannot be cleaned because it is currently running. Close it, and try " "again." msgstr "%s ezin da garbitu exekutatzen ari delako. Itxi eta saiatu berriz." #: ../bleachbit/Update.py:73 msgid "New winapp2.ini was downloaded." msgstr "winapp2.ini berria deskargatu da." #: ../bleachbit/Update.py:111 msgid "Update BleachBit" msgstr "Eguneratu BleachBit" #: ../bleachbit/Update.py:116 msgid "A new version is available." msgstr "Bertsio berri bat eskuragarri dago." #. TRANSLATORS: %s expands to version such as '0.8.4' or '0.8.5beta' or similar #: ../bleachbit/Update.py:124 #, python-format msgid "Update to version %s" msgstr "Eguneratu %s bertsiora" #. TRANSLATORS: This is cleaner name for cleaners imported from winapp2.ini #: ../bleachbit/Winapp.py:48 msgid "Applications" msgstr "Aplikazioak" #. TRANSLATORS: This is cleaner name for cleaners imported from winapp2.ini #: ../bleachbit/Winapp.py:50 msgid "Internet" msgstr "Internet" #. TRANSLATORS: This is cleaner name for cleaners imported from winapp2.ini #: ../bleachbit/Winapp.py:52 msgid "Multimedia" msgstr "Multimedia" #. TRANSLATORS: This is cleaner name for cleaners imported from winapp2.ini #: ../bleachbit/Winapp.py:54 msgid "Utilities" msgstr "Tresnak" #: ../bleachbit/Winapp.py:68 msgid "Games" msgstr "Jokoak" #: ../bleachbit/Winapp.py:99 msgid "Imported from winapp2.ini" msgstr "winapp2.ini-tik inportatua" #. TRANSLATORS: This indicates an error. The special keyword #. %(operation)s will be replaced by 'firefox' or 'opera' or #. some other cleaner ID. The special keyword %(msg)s will be #. replaced by a message such as 'Permission denied.' #: ../bleachbit/Worker.py:76 #, python-format msgid "Exception while running operation '%(operation)s': '%(msg)s'" msgstr "Salbuespena '%(operation)s': '%(msg)s' eragiketa exekutatzean" #. TRANSLATORS: 'free' means 'unallocated' #: ../bleachbit/Worker.py:210 msgid "Please wait. Wiping free disk space." msgstr "Mesedez itxaron. Diskoko leku librea garbitzen." #. TRANSLATORS: %s is replaced with Firefox, System, etc. #: ../bleachbit/Worker.py:212 ../bleachbit/Worker.py:299 #, python-format msgid "Please wait. Cleaning %s." msgstr "Mesedez itxaron. %s garbitzen." #: ../bleachbit/Worker.py:222 #, python-format msgid "About %d minute remaining." msgid_plural "About %d minutes remaining." msgstr[0] "Minutu %d inguru falta da." msgstr[1] "%d minutu inguru falta dira." #. TRANSLATORS: This refers to disk space that was #. really recovered (in other words, not a preview) #: ../bleachbit/Worker.py:237 #, python-format msgid "Disk space recovered: %s" msgstr "Berreskuratutako diskoko lekua: %s" #. TRANSLATORS: This refers to a preview (no real #. changes were made yet) #: ../bleachbit/Worker.py:241 #, python-format msgid "Disk space to be recovered: %s" msgstr "Berreskuratuko den diskoko lekua: %s" #. TRANSLATORS: This refers to the number of files really #. deleted (in other words, not a preview). #: ../bleachbit/Worker.py:246 #, python-format msgid "Files deleted: %d" msgstr "Ezabatutako fitxategiak: %d" #. TRANSLATORS: This refers to the number of files that #. would be deleted (in other words, simply a preview). #: ../bleachbit/Worker.py:250 #, python-format msgid "Files to be deleted: %d" msgstr "Ezabatuko diren fitxategiak: %d" #: ../bleachbit/Worker.py:253 #, python-format msgid "Special operations: %d" msgstr "Eragiketa bereziak: %d" #: ../bleachbit/Worker.py:256 #, python-format msgid "Errors: %d" msgstr "Erroreak: %d" #. TRANSLATORS: The "deep scan" feature searches over broad #. areas of the file system such as the user's whole home directory #. or all the system executables. #: ../bleachbit/Worker.py:272 msgid "Please wait. Running deep scan." msgstr "Mesedez itxaron. Eskaneatze sakona exekutatzen." #. TRANSLATORS: %s is replaced with Firefox, System, etc. #: ../bleachbit/Worker.py:302 #, python-format msgid "Please wait. Previewing %s." msgstr "Mesedez itxaron. %s aurrikusten." bleachbit-2.0/po/bn.po0000644000175000017500000010174313245436307012764 0ustar hlehle# Bengali translation for bleachbit # Copyright (c) 2011 Rosetta Contributors and Canonical Ltd 2011 # This file is distributed under the same license as the bleachbit package. # FIRST AUTHOR , 2011. # msgid "" msgstr "" "Project-Id-Version: bleachbit\n" "Report-Msgid-Bugs-To: FULL NAME \n" "POT-Creation-Date: 2011-08-17 20:52-0600\n" "PO-Revision-Date: 2011-08-18 09:26+0000\n" "Last-Translator: Mahay Alam Khan \n" "Language-Team: Bengali \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n != 1;\n" "X-Launchpad-Export-Date: 2011-08-19 23:38+0000\n" "X-Generator: Launchpad (build 13697)\n" #: ../cleaners/tremulous.xml ../cleaners/gl-117.xml ../cleaners/nexuiz.xml #: ../cleaners/hippo_opensim_viewer.xml ../cleaners/secondlife_viewer.xml msgid "Game" msgstr "খেলা" #: ../cleaners/tremulous.xml ../cleaners/chromium.xml ../cleaners/miro.xml #: ../cleaners/audacious.xml ../cleaners/xine.xml ../cleaners/kde.xml #: ../cleaners/pidgin.xml ../cleaners/seamonkey.xml ../cleaners/liferea.xml #: ../cleaners/beagle.xml ../cleaners/opera.xml ../cleaners/rhythmbox.xml #: ../cleaners/epiphany.xml ../cleaners/transmission.xml #: ../cleaners/nexuiz.xml ../cleaners/hippo_opensim_viewer.xml #: ../cleaners/vuze.xml ../cleaners/evolution.xml ../cleaners/exaile.xml #: ../cleaners/google_chrome.xml ../cleaners/emesene.xml ../cleaners/amsn.xml #: ../cleaners/yahoo_messenger.xml ../cleaners/thumbnails.xml #: ../cleaners/safari.xml ../cleaners/java.xml ../cleaners/flash.xml #: ../cleaners/thunderbird.xml ../cleaners/adobe_reader.xml #: ../cleaners/gftp.xml ../cleaners/gpodder.xml #: ../cleaners/secondlife_viewer.xml ../bleachbit/Cleaner.py:186 #: ../bleachbit/Cleaner.py:296 ../bleachbit/Cleaner.py:363 msgid "Cache" msgstr "ক্যাশ" #: ../cleaners/tremulous.xml msgid "Delete the list of game servers" msgstr "সার্ভার হতে খেলার তালিমু অপসারণ করো" #: ../cleaners/yum.xml ../cleaners/miro.xml ../cleaners/audacious.xml #: ../cleaners/xine.xml ../cleaners/kde.xml ../cleaners/pidgin.xml #: ../cleaners/liferea.xml ../cleaners/beagle.xml ../cleaners/rhythmbox.xml #: ../cleaners/transmission.xml ../cleaners/nexuiz.xml ../cleaners/apt.xml #: ../cleaners/hippo_opensim_viewer.xml ../cleaners/vuze.xml #: ../cleaners/evolution.xml ../cleaners/exaile.xml ../cleaners/amsn.xml #: ../cleaners/yahoo_messenger.xml ../cleaners/thumbnails.xml #: ../cleaners/java.xml ../cleaners/windows_explorer.xml ../cleaners/flash.xml #: ../cleaners/adobe_reader.xml ../cleaners/gftp.xml ../cleaners/gpodder.xml #: ../cleaners/secondlife_viewer.xml ../bleachbit/Cleaner.py:296 #: ../bleachbit/Cleaner.py:363 ../bleachbit/Cleaner.py:383 #: ../bleachbit/Cleaner.py:385 msgid "Delete the cache" msgstr "ক্যাশ পরিস্কার করো" #. TRANSLATORS: Vacuum is a verb. The term is jargon #. from the SQLite database. Microsoft Access uses #. the term 'Compact Database' (which you may translate #. instead). Another synonym is 'defragment.' #: ../cleaners/yum.xml ../cleaners/chromium.xml ../cleaners/liferea.xml #: ../cleaners/google_chrome.xml ../cleaners/safari.xml #: ../cleaners/thunderbird.xml ../cleaners/gpodder.xml #: ../bleachbit/Cleaner.py:196 ../bleachbit/Cleaner.py:286 #: ../bleachbit/Action.py:323 msgid "Vacuum" msgstr "সু-শৃঙ্খল" #: ../cleaners/yum.xml ../cleaners/chromium.xml ../cleaners/liferea.xml #: ../cleaners/google_chrome.xml ../cleaners/safari.xml #: ../cleaners/thunderbird.xml ../cleaners/gpodder.xml #: ../bleachbit/Cleaner.py:196 msgid "" "Clean database fragmentation to reduce space and improve speed without " "removing any data" msgstr "" #: ../cleaners/chromium.xml ../cleaners/internet_explorer.xml #: ../cleaners/seamonkey.xml ../cleaners/opera.xml ../cleaners/epiphany.xml #: ../cleaners/google_chrome.xml ../cleaners/safari.xml ../cleaners/links2.xml #: ../cleaners/elinks.xml ../cleaners/konqueror.xml #: ../bleachbit/Cleaner.py:209 msgid "Web browser" msgstr "ওয়েব ব্রাউজার" #: ../cleaners/chromium.xml ../cleaners/seamonkey.xml ../cleaners/opera.xml #: ../cleaners/epiphany.xml ../cleaners/google_chrome.xml #: ../cleaners/safari.xml ../cleaners/thunderbird.xml #: ../bleachbit/Cleaner.py:186 msgid "Delete the web cache, which reduces time to display revisited pages" msgstr "" #: ../cleaners/chromium.xml ../cleaners/internet_explorer.xml #: ../cleaners/seamonkey.xml ../cleaners/liferea.xml ../cleaners/opera.xml #: ../cleaners/epiphany.xml ../cleaners/google_chrome.xml #: ../cleaners/safari.xml ../cleaners/flash.xml ../cleaners/thunderbird.xml #: ../cleaners/konqueror.xml ../cleaners/realplayer.xml #: ../cleaners/silverlight.xml ../bleachbit/Cleaner.py:187 msgid "Cookies" msgstr "কুকি" #: ../cleaners/chromium.xml ../cleaners/internet_explorer.xml #: ../cleaners/seamonkey.xml ../cleaners/liferea.xml ../cleaners/opera.xml #: ../cleaners/epiphany.xml ../cleaners/google_chrome.xml #: ../cleaners/safari.xml ../cleaners/flash.xml ../cleaners/thunderbird.xml #: ../cleaners/konqueror.xml ../cleaners/realplayer.xml #: ../cleaners/silverlight.xml ../bleachbit/Cleaner.py:187 msgid "" "Delete cookies, which contain information such as web site preferences, " "authentication, and tracking identification" msgstr "" #. TRANSLATORS: DOM = Document Object Model. #: ../cleaners/chromium.xml ../cleaners/opera.xml #: ../cleaners/google_chrome.xml ../bleachbit/Cleaner.py:189 msgid "DOM Storage" msgstr "" #: ../cleaners/chromium.xml ../cleaners/opera.xml #: ../cleaners/google_chrome.xml ../bleachbit/Cleaner.py:189 msgid "Delete HTML5 cookies" msgstr "" #: ../cleaners/chromium.xml ../cleaners/internet_explorer.xml #: ../cleaners/google_chrome.xml ../bleachbit/Cleaner.py:191 msgid "Form history" msgstr "" #: ../cleaners/chromium.xml ../cleaners/google_chrome.xml msgid "A history of forms entered in web sites" msgstr "" #: ../cleaners/chromium.xml ../cleaners/d4x.xml ../cleaners/vim.xml #: ../cleaners/internet_explorer.xml ../cleaners/mc.xml #: ../cleaners/seamonkey.xml ../cleaners/windows_defender.xml #: ../cleaners/google_chrome.xml ../cleaners/nautilus.xml #: ../cleaners/safari.xml ../cleaners/bash.xml ../cleaners/links2.xml #: ../cleaners/elinks.xml ../cleaners/tortoisesvn.xml #: ../cleaners/realplayer.xml msgid "History" msgstr "ইতিহাস" #: ../cleaners/chromium.xml ../cleaners/google_chrome.xml msgid "" "Delete the history which includes visited sites, downloads, and thumbnails" msgstr "" #: ../cleaners/chromium.xml ../cleaners/google_chrome.xml msgid "Search engines" msgstr "সার্চ ইঞ্জিন" #. 'Factory' means a search engine that is installed by default 'from the factory,' but this is different than a 'default search engine' https://lists.launchpad.net/launchpad-translators/msg00283.html #: ../cleaners/chromium.xml ../cleaners/google_chrome.xml msgid "" "Reset the search engine usage history and delete non-factory search engines, " "some of which are added automatically" msgstr "" #: ../cleaners/chromium.xml ../cleaners/opera.xml ../cleaners/konqueror.xml msgid "Current session" msgstr "বর্তমান সেশন" #: ../cleaners/chromium.xml ../cleaners/opera.xml ../cleaners/konqueror.xml msgid "Delete the current session" msgstr "" #: ../cleaners/d4x.xml ../cleaners/mc.xml ../cleaners/nautilus.xml #: ../cleaners/gnome.xml ../cleaners/links2.xml ../cleaners/tortoisesvn.xml #: ../cleaners/realplayer.xml ../bleachbit/Cleaner.py:276 #: ../bleachbit/Cleaner.py:347 msgid "Delete the usage history" msgstr "" #: ../cleaners/vim.xml ../cleaners/gedit.xml msgid "Editor" msgstr "সম্পাদক" #: ../cleaners/vim.xml msgid "" "Delete ~/.viminfo which includes file history, command history, and buffers" msgstr "" #: ../cleaners/miro.xml ../cleaners/xine.xml ../cleaners/flash.xml msgid "Multimedia viewer" msgstr "মাল্টিমিডিয়া প্রদর্শক" #: ../cleaners/miro.xml ../cleaners/audacious.xml ../cleaners/screenlets.xml #: ../cleaners/hippo_opensim_viewer.xml ../cleaners/vuze.xml #: ../cleaners/exaile.xml ../cleaners/easytag.xml #: ../cleaners/yahoo_messenger.xml ../cleaners/teamviewer.xml #: ../cleaners/gftp.xml ../cleaners/amule.xml ../cleaners/realplayer.xml #: ../bleachbit/Cleaner.py:381 msgid "Logs" msgstr "লগ" #: ../cleaners/miro.xml ../cleaners/audacious.xml ../cleaners/screenlets.xml #: ../cleaners/hippo_opensim_viewer.xml ../cleaners/vuze.xml #: ../cleaners/exaile.xml ../cleaners/yahoo_messenger.xml #: ../cleaners/teamviewer.xml ../cleaners/gftp.xml ../cleaners/amule.xml #: ../cleaners/realplayer.xml ../bleachbit/Cleaner.py:381 msgid "Delete the logs" msgstr "লগ পরিস্কার করুন" #: ../cleaners/gl-117.xml ../cleaners/beagle.xml ../cleaners/x11.xml #: ../cleaners/microsoft_office.xml ../cleaners/secondlife_viewer.xml msgid "Debug logs" msgstr "" #: ../cleaners/gl-117.xml ../cleaners/beagle.xml ../cleaners/x11.xml #: ../cleaners/microsoft_office.xml ../cleaners/easytag.xml #: ../cleaners/secondlife_viewer.xml msgid "Delete the debug logs" msgstr "" #: ../cleaners/internet_explorer.xml ../bleachbit/Cleaner.py:191 msgid "A history of forms entered in web sites and in the Search bar" msgstr "" #: ../cleaners/internet_explorer.xml ../cleaners/opera.xml #: ../cleaners/safari.xml ../cleaners/konqueror.xml #: ../bleachbit/Cleaner.py:195 msgid "List of visited web pages" msgstr "" #: ../cleaners/internet_explorer.xml ../cleaners/kde.xml ../cleaners/vuze.xml #: ../cleaners/deepscan.xml ../cleaners/gimp.xml ../cleaners/google_earth.xml #: ../cleaners/adobe_reader.xml ../cleaners/amule.xml #: ../cleaners/winetricks.xml ../cleaners/wine.xml ../bleachbit/Cleaner.py:397 msgid "Temporary files" msgstr "অস্থায়ী ফাইল" #: ../cleaners/internet_explorer.xml ../cleaners/kde.xml ../cleaners/vuze.xml #: ../cleaners/deepscan.xml ../cleaners/gimp.xml ../cleaners/google_earth.xml #: ../cleaners/adobe_reader.xml ../cleaners/amule.xml #: ../cleaners/winetricks.xml ../cleaners/wine.xml ../bleachbit/Cleaner.py:397 msgid "Delete the temporary files" msgstr "" #: ../cleaners/audacious.xml ../cleaners/filezilla.xml ../cleaners/winrar.xml #: ../cleaners/wordpad.xml ../cleaners/winamp.xml #: ../cleaners/windows_media_player.xml ../cleaners/microsoft_office.xml #: ../cleaners/winzip.xml ../cleaners/vlc.xml ../cleaners/windows_explorer.xml #: ../cleaners/teamviewer.xml ../cleaners/adobe_reader.xml #: ../cleaners/paint.xml ../bleachbit/Cleaner.py:297 msgid "Most recently used" msgstr "" #: ../cleaners/audacious.xml ../cleaners/kde.xml ../cleaners/filezilla.xml #: ../cleaners/gwenview.xml ../cleaners/gedit.xml #: ../cleaners/windows_explorer.xml ../cleaners/adobe_reader.xml #: ../bleachbit/Cleaner.py:297 ../bleachbit/Cleaner.py:373 msgid "Delete the list of recently used documents" msgstr "" #: ../cleaners/kde.xml ../cleaners/gwenview.xml ../cleaners/gedit.xml #: ../cleaners/windows_explorer.xml ../bleachbit/Cleaner.py:373 msgid "Recent documents list" msgstr "" #: ../cleaners/pidgin.xml ../cleaners/xchat.xml ../cleaners/emesene.xml #: ../cleaners/amsn.xml ../cleaners/yahoo_messenger.xml msgid "Chat client" msgstr "" #: ../cleaners/pidgin.xml ../cleaners/seamonkey.xml ../cleaners/xchat.xml #: ../cleaners/emesene.xml ../cleaners/amsn.xml #: ../cleaners/yahoo_messenger.xml ../cleaners/skype.xml msgid "Chat logs" msgstr "" #: ../cleaners/pidgin.xml ../cleaners/seamonkey.xml ../cleaners/xchat.xml #: ../cleaners/emesene.xml ../cleaners/amsn.xml #: ../cleaners/yahoo_messenger.xml ../cleaners/skype.xml msgid "Delete the chat logs" msgstr "" #: ../cleaners/seamonkey.xml ../cleaners/opera.xml ../bleachbit/Cleaner.py:190 msgid "Download history" msgstr "" #: ../cleaners/seamonkey.xml ../cleaners/opera.xml ../bleachbit/Cleaner.py:190 msgid "List of files downloaded" msgstr "" #: ../cleaners/seamonkey.xml msgid "Delete the list of visited web pages" msgstr "" #: ../cleaners/screenlets.xml msgid "Widgets for the desktop" msgstr "" #: ../cleaners/beagle.xml ../cleaners/recoll.xml msgid "Search tool" msgstr "" #: ../cleaners/beagle.xml msgid "Search indexes" msgstr "" #: ../cleaners/beagle.xml msgid "Delete the search indexes" msgstr "" #: ../cleaners/filezilla.xml ../cleaners/transmission.xml ../cleaners/vuze.xml #: ../cleaners/gftp.xml ../cleaners/amule.xml msgid "File transfer client" msgstr "" #: ../cleaners/windows_defender.xml ../cleaners/deepscan.xml msgid "Delete the files" msgstr "" #: ../cleaners/opera.xml ../cleaners/google_toolbar.xml ../cleaners/gnome.xml #: ../cleaners/windows_explorer.xml msgid "Search history" msgstr "ইতিহাস অনুসন্ধান" #: ../cleaners/opera.xml ../cleaners/google_toolbar.xml ../cleaners/gnome.xml #: ../cleaners/windows_explorer.xml msgid "Delete the search history" msgstr "" #: ../cleaners/opera.xml ../cleaners/konqueror.xml ../bleachbit/Cleaner.py:195 msgid "URL history" msgstr "" #: ../cleaners/winrar.xml ../cleaners/wordpad.xml ../cleaners/winamp.xml #: ../cleaners/windows_media_player.xml ../cleaners/microsoft_office.xml #: ../cleaners/winzip.xml ../cleaners/vlc.xml ../cleaners/windows_explorer.xml #: ../cleaners/teamviewer.xml ../cleaners/paint.xml msgid "Delete the most recently used list" msgstr "" #: ../cleaners/epiphany.xml ../cleaners/thunderbird.xml #: ../bleachbit/Cleaner.py:194 msgid "Passwords" msgstr "পাসওয়ার্ড" #: ../cleaners/epiphany.xml ../cleaners/thunderbird.xml #: ../bleachbit/Cleaner.py:194 msgid "" "A database of usernames and passwords as well as a list of sites that should " "not store passwords" msgstr "" #: ../cleaners/epiphany.xml msgid "Places" msgstr "অবস্থান" #: ../cleaners/epiphany.xml msgid "" "A database of URLs including bookmarks, favicons, and a history of visited " "web sites" msgstr "" #: ../cleaners/epiphany.xml msgid "This option deletes all bookmarks." msgstr "" #: ../cleaners/microsoft_office.xml ../bleachbit/Cleaner.py:307 msgid "Office suite" msgstr "অফিস স্যুট" #: ../cleaners/apt.xml msgid "Delete obsolete files" msgstr "" #: ../cleaners/vuze.xml ../cleaners/deepscan.xml msgid "Backup files" msgstr "" #: ../cleaners/vuze.xml ../cleaners/deepscan.xml msgid "Delete the backup files" msgstr "" #: ../cleaners/exaile.xml msgid "Downloaded podcasts" msgstr "" #: ../cleaners/exaile.xml msgid "Delete downloaded podcasts" msgstr "" #: ../cleaners/google_chrome.xml msgid "Session" msgstr "" #: ../cleaners/google_chrome.xml msgid "Delete the current and last sessions" msgstr "" #: ../cleaners/emesene.xml msgid "Delete the avatars and emoticons cache" msgstr "" #: ../cleaners/deepscan.xml msgid "Deep scan" msgstr "" #: ../cleaners/deepscan.xml msgid "Inspect the preview for any files you want to keep." msgstr "" #: ../cleaners/deepscan.xml msgid "This option is slow." msgstr "" #: ../cleaners/nautilus.xml msgid "Custom folders will be reset." msgstr "" #: ../cleaners/thumbnails.xml ../cleaners/windows_explorer.xml msgid "Thumbnails" msgstr "" #: ../cleaners/bash.xml msgid "Delete the command history" msgstr "" #. In GNOME 'Run' is the dialog shown when typing ALT+F2' #. In Windows 'Run' is the dialog in the Start menu #: ../cleaners/gnome.xml ../cleaners/windows_explorer.xml msgid "Run" msgstr "" #: ../cleaners/elinks.xml msgid "Delete the cookies, visited URLs, and search history" msgstr "" #: ../cleaners/recoll.xml msgid "Index" msgstr "" #: ../cleaners/recoll.xml msgid "" "Delete the search index, a database of words and the files they contain" msgstr "" #: ../bleachbit.desktop msgid "Unnecessary file cleaner" msgstr "" #: ../bleachbit.desktop msgid "Free space and maintain privacy" msgstr "" #. TRANSLATORS: This is the label in the log indicating was #. skipped because it matches the whitelist #: ../bleachbit/Command.py:46 msgid "Skip" msgstr "" #. TRANSLATORS: This is the label in the log indicating will be #. deleted (for previews) or was actually deleted #: ../bleachbit/Command.py:73 msgid "Delete" msgstr "" #. TRANSLATORS: The file will be deleted when the #. system reboots #: ../bleachbit/Command.py:93 msgid "Mark for deletion" msgstr "" #. TRANSLATORS: Parts of this file will be deleted #: ../bleachbit/Command.py:182 ../bleachbit/Command.py:212 #: ../bleachbit/Action.py:203 ../bleachbit/Action.py:216 #: ../bleachbit/Action.py:228 ../bleachbit/Action.py:241 #: ../bleachbit/Action.py:253 msgid "Clean file" msgstr "" #. TRANSLATORS: The file will be truncated to 0 bytes in length #: ../bleachbit/Command.py:249 msgid "Truncate" msgstr "" #: ../bleachbit/Command.py:288 msgid "Delete registry key" msgstr "" #: ../bleachbit/Unix.py:365 ../bleachbit/Unix.py:395 ../bleachbit/Unix.py:575 #, python-format msgid "Executable not found: %s" msgstr "" #. TRANSLATORS: %s expands to a name such as 'Firefox' or 'System'. #: ../bleachbit/Unix.py:572 ../bleachbit/Worker.py:135 #, python-format msgid "" "%s cannot be cleaned because it is currently running. Close it, and try " "again." msgstr "" #. TRANSLATORS: This is cleaner name for cleaners imported from winapp2.ini #: ../bleachbit/Winapp.py:45 msgid "Applications" msgstr "" #. TRANSLATORS: This is cleaner name for cleaners imported from winapp2.ini #: ../bleachbit/Winapp.py:47 ../bleachbit/Winapp.py:54 #: ../bleachbit/Winapp.py:55 ../bleachbit/Winapp.py:56 msgid "Internet" msgstr "" #. TRANSLATORS: This is cleaner name for cleaners imported from winapp2.ini #: ../bleachbit/Winapp.py:49 msgid "Multimedia" msgstr "" #. TRANSLATORS: This is cleaner name for cleaners imported from winapp2.ini #: ../bleachbit/Winapp.py:51 msgid "Utilities" msgstr "" #. TRANSLATORS: This is cleaner name for cleaners imported from winapp2.ini. #: ../bleachbit/Winapp.py:53 msgid "Microsoft Windows" msgstr "" #: ../bleachbit/Winapp.py:87 msgid "Imported from winapp2.ini" msgstr "" #: ../bleachbit/Cleaner.py:192 msgid "Session restore" msgstr "" #: ../bleachbit/Cleaner.py:192 msgid "Loads the initial session after the browser closes or crashes" msgstr "" #: ../bleachbit/Cleaner.py:193 msgid "Site preferences" msgstr "" #: ../bleachbit/Cleaner.py:193 msgid "Settings for individual sites" msgstr "" #. TRANSLATORS: desktop entries are .desktop files in Linux tha #. make up the application menu (the menu that shows BleachBit, #. Firefox, and others. The .desktop files also associate file #. types, so clicking on an .html file in Nautilus brings up #. Firefox. #. More information: http://standards.freedesktop.org/menu-spec/latest/index.html#introduction #: ../bleachbit/Cleaner.py:362 msgid "Broken desktop files" msgstr "" #: ../bleachbit/Cleaner.py:362 msgid "Delete broken application menu entries and file associations" msgstr "" #. TRANSLATORS: Localizations are files supporting specific #. languages, so applications appear in Spanish, etc. #: ../bleachbit/Cleaner.py:366 msgid "Localizations" msgstr "" #: ../bleachbit/Cleaner.py:366 msgid "Delete files for unwanted languages" msgstr "" #: ../bleachbit/Cleaner.py:367 msgid "Configure this option in the preferences." msgstr "" #. TRANSLATORS: 'Rotated logs' refers to old system log files. #. Linux systems often have a scheduled job to rotate the logs #. which means compress all except the newest log and then delete #. the oldest log. You could translate this 'old logs.' #: ../bleachbit/Cleaner.py:372 msgid "Rotated logs" msgstr "" #: ../bleachbit/Cleaner.py:372 msgid "Delete old system logs" msgstr "" #: ../bleachbit/Cleaner.py:374 msgid "Trash" msgstr "" #: ../bleachbit/Cleaner.py:374 msgid "Empty the trash" msgstr "" #: ../bleachbit/Cleaner.py:376 ../bleachbit/Cleaner.py:482 #: ../bleachbit/Worker.py:211 msgid "Memory" msgstr "" #. TRANSLATORS: 'free' means 'unallocated' #: ../bleachbit/Cleaner.py:378 msgid "Wipe the swap and free memory" msgstr "" #: ../bleachbit/Cleaner.py:379 msgid "This option is experimental and may cause system problems." msgstr "" #: ../bleachbit/Cleaner.py:382 msgid "Memory dump" msgstr "" #: ../bleachbit/Cleaner.py:382 msgid "Delete the file memory.dmp" msgstr "" #. TRANSLATORS: Prefetch is Microsoft Windows jargon. #: ../bleachbit/Cleaner.py:385 msgid "Prefetch" msgstr "" #: ../bleachbit/Cleaner.py:386 msgid "Recycle bin" msgstr "" #: ../bleachbit/Cleaner.py:386 msgid "Empty the recycle bin" msgstr "" #. TRANSLATORS: 'Update' is a noun, and 'Update uninstallers' is an option to delete #. the uninstallers for software updates. #: ../bleachbit/Cleaner.py:389 msgid "Update uninstallers" msgstr "" #: ../bleachbit/Cleaner.py:389 msgid "" "Delete uninstallers for Microsoft updates including hotfixes, service packs, " "and Internet Explorer updates" msgstr "" #: ../bleachbit/Cleaner.py:391 ../bleachbit/Cleaner.py:564 msgid "Clipboard" msgstr "" #: ../bleachbit/Cleaner.py:391 msgid "" "The desktop environment's clipboard used for copy and paste operations" msgstr "" #. TRANSLATORS: 'free' means 'unallocated' #: ../bleachbit/Cleaner.py:393 msgid "Free disk space" msgstr "" #. TRANSLATORS: 'free' means 'unallocated' #: ../bleachbit/Cleaner.py:395 msgid "Overwrite free disk space to hide deleted files" msgstr "" #: ../bleachbit/Cleaner.py:396 msgid "This option is very slow." msgstr "" #: ../bleachbit/Cleaner.py:400 msgid "The system in general" msgstr "" #: ../bleachbit/Cleaner.py:406 ../bleachbit/Cleaner.py:659 msgid "System" msgstr "" #. TRANSLATORS: 'Free' means 'unallocated.' #. %s expands to a path such as C:\ or /tmp/ #: ../bleachbit/Cleaner.py:590 ../bleachbit/Cleaner.py:686 #, python-format msgid "Overwrite free disk space %s" msgstr "" #. TRANSLATORS: %s expands to a drive letter such as C:\ or D:\ #: ../bleachbit/Cleaner.py:618 #, python-format msgid "Recycle bin %s" msgstr "" #: ../bleachbit/GuiPreferences.py:52 ../bleachbit/GUI.py:637 msgid "Preferences" msgstr "" #: ../bleachbit/GuiPreferences.py:58 msgid "General" msgstr "" #: ../bleachbit/GuiPreferences.py:59 msgid "Drives" msgstr "" #: ../bleachbit/GuiPreferences.py:61 msgid "Languages" msgstr "" #: ../bleachbit/GuiPreferences.py:62 msgid "Whitelist" msgstr "" #: ../bleachbit/GuiPreferences.py:107 msgid "Check periodically for software updates via the Internet" msgstr "" #: ../bleachbit/GuiPreferences.py:110 msgid "" "If an update is found, you will be given the option to view information " "about it. Then, you may manually download and install the update." msgstr "" #: ../bleachbit/GuiPreferences.py:116 msgid "Check for new beta releases" msgstr "" #: ../bleachbit/GuiPreferences.py:123 msgid "Download and update cleaners from community (winapp2.ini)" msgstr "" #. TRANSLATORS: This means to hide cleaners which would do #. nothing. For example, if Firefox were never used on #. this system, this option would hide Firefox to simplify #. the list of cleaners. #: ../bleachbit/GuiPreferences.py:135 msgid "Hide irrelevant cleaners" msgstr "" #. TRANSLATORS: Overwriting is the same as shredding. It is a way #. to prevent recovery of the data. You could also translate #. 'Shred files to prevent recovery.' #: ../bleachbit/GuiPreferences.py:143 msgid "Overwrite files to hide contents" msgstr "" #: ../bleachbit/GuiPreferences.py:146 msgid "" "Overwriting is ineffective on some file systems and with certain BleachBit " "operations. Overwriting is significantly slower." msgstr "" #: ../bleachbit/GuiPreferences.py:149 msgid "Start BleachBit with computer" msgstr "" #: ../bleachbit/GuiPreferences.py:160 ../bleachbit/GuiPreferences.py:291 #: ../bleachbit/GUI.py:545 msgid "Choose a folder" msgstr "" #. TRANSLATORS: 'free' means 'unallocated' #: ../bleachbit/GuiPreferences.py:185 msgid "" "Choose a writable folder for each drive for which to overwrite free space." msgstr "" #. TRANSLATORS: In the preferences dialog, this button adds a path to the list of paths #: ../bleachbit/GuiPreferences.py:206 msgctxt "button" msgid "Add" msgstr "" #. TRANSLATORS: In the preferences dialog, this button removes a path from the list of paths #: ../bleachbit/GuiPreferences.py:209 ../bleachbit/GuiPreferences.py:369 msgctxt "button" msgid "Remove" msgstr "" #: ../bleachbit/GuiPreferences.py:234 msgid "All languages will be deleted except those checked." msgstr "" #: ../bleachbit/GuiPreferences.py:251 msgid "Preserve" msgstr "" #: ../bleachbit/GuiPreferences.py:255 msgid "Code" msgstr "" #: ../bleachbit/GuiPreferences.py:259 ../bleachbit/GUI.py:136 msgid "Name" msgstr "" #: ../bleachbit/GuiPreferences.py:277 msgid "Choose a file" msgstr "" #: ../bleachbit/GuiPreferences.py:284 ../bleachbit/GuiPreferences.py:328 msgid "File" msgstr "" #: ../bleachbit/GuiPreferences.py:299 ../bleachbit/GuiPreferences.py:330 msgid "Folder" msgstr "" #. TRANSLATORS: "Paths" is used generically to refer to both files and folders #: ../bleachbit/GuiPreferences.py:337 msgid "Theses paths will not be deleted or modified." msgstr "" #: ../bleachbit/GuiPreferences.py:345 msgid "Type" msgstr "" #. TRANSLATORS: In the tree view "Path" is used generically to refer to a #. file, a folder, or a pattern describing either #: ../bleachbit/GuiPreferences.py:351 msgid "Path" msgstr "" #: ../bleachbit/GuiPreferences.py:363 msgctxt "button" msgid "Add file" msgstr "" #: ../bleachbit/GuiPreferences.py:366 msgctxt "button" msgid "Add folder" msgstr "" #: ../bleachbit/RecognizeCleanerML.py:63 msgid "Security warning" msgstr "" #. TRANSLATORS: Cleaner definitions are XML data files that define #. which files will be cleaned. #: ../bleachbit/RecognizeCleanerML.py:75 msgid "" "These cleaner definitions are new or have changed. Malicious definitions can " "damage your system. If you do not trust these changes, delete the files or " "quit." msgstr "" #. TRANSLATORS: This is the column label (header) in the tree view for the security dialog #: ../bleachbit/RecognizeCleanerML.py:88 msgctxt "column_label" msgid "Delete" msgstr "" #. TRANSLATORS: This is the column label (header) in the tree view for the security dialog #: ../bleachbit/RecognizeCleanerML.py:91 msgctxt "column_label" msgid "Filename" msgstr "" #. TRANSLATORS: This indicates an error. The special keyword #. %(operation)s will be replaced by 'firefox' or 'opera' or #. some other cleaner ID. The special keyword %(msg)s will be #. replaced by a message such as 'Permission denied.' #: ../bleachbit/Worker.py:76 #, python-format msgid "Exception while running operation '%(operation)s': '%(msg)s'" msgstr "" #. TRANSLATORS: 'free' means 'unallocated' #: ../bleachbit/Worker.py:209 msgid "Please wait. Wiping free disk space." msgstr "" #. TRANSLATORS: %s is replaced with Firefox, System, etc. #: ../bleachbit/Worker.py:211 ../bleachbit/Worker.py:298 #, python-format msgid "Please wait. Cleaning %s." msgstr "" #: ../bleachbit/Worker.py:221 #, python-format msgid "About %d minute remaining." msgid_plural "About %d minutes remaining." msgstr[0] "" msgstr[1] "" #. TRANSLATORS: This refers to disk space that was #. really recovered (in other words, not a preview) #: ../bleachbit/Worker.py:236 #, python-format msgid "Disk space recovered: %s" msgstr "" #. TRANSLATORS: This refers to a preview (no real #. changes were made yet) #: ../bleachbit/Worker.py:240 #, python-format msgid "Disk space to be recovered: %s" msgstr "" #. TRANSLATORS: This refers to the number of files really #. deleted (in other words, not a preview). #: ../bleachbit/Worker.py:245 #, python-format msgid "Files deleted: %d" msgstr "" #. TRANSLATORS: This refers to the number of files that #. would be deleted (in other words, simply a preview). #: ../bleachbit/Worker.py:249 #, python-format msgid "Files to be deleted: %d" msgstr "" #: ../bleachbit/Worker.py:252 #, python-format msgid "Special operations: %d" msgstr "" #: ../bleachbit/Worker.py:255 #, python-format msgid "Errors: %d" msgstr "" #. TRANSLATORS: The "deep scan" feature searches over broad #. areas of the file system such as the user's whole home directory #. or all the system executables. #: ../bleachbit/Worker.py:271 msgid "Please wait. Running deep scan." msgstr "" #. TRANSLATORS: %s is replaced with Firefox, System, etc. #: ../bleachbit/Worker.py:301 #, python-format msgid "Please wait. Previewing %s." msgstr "" #: ../bleachbit/Update.py:75 msgid "New winapp2.ini was downloaded." msgstr "" #: ../bleachbit/Update.py:111 msgid "Update BleachBit" msgstr "" #: ../bleachbit/Update.py:116 msgid "A new version is available." msgstr "" #. TRANSLATORS: %s expands to version such as '0.8.4' or '0.8.5beta' or similar #: ../bleachbit/Update.py:124 #, python-format msgid "Update to version %s" msgstr "" #: ../bleachbit/CLI.py:123 #, python-format msgid "not a valid cleaner: %s" msgstr "" #. TRANSLATORS: This is the command line usage. Don't translate #. %prog, but do translate usage, options, cleaner, and option. #. More information about the command line is here #. http://bleachbit.sourceforge.net/documentation/command-line #: ../bleachbit/CLI.py:150 msgid "usage: %prog [options] cleaner.option1 cleaner.option2" msgstr "" #: ../bleachbit/CLI.py:153 msgid "list cleaners" msgstr "" #: ../bleachbit/CLI.py:155 msgid "delete files and make other permanent changes" msgstr "" #. TRANSLATORS: this is a warning for using --delete which will go away one day #: ../bleachbit/CLI.py:158 msgid "depreciated alias for --clean" msgstr "" #: ../bleachbit/CLI.py:160 msgid "show system information" msgstr "" #: ../bleachbit/CLI.py:161 msgid "launch the graphical interface" msgstr "" #: ../bleachbit/CLI.py:163 msgid "do not prompt for administrator privileges" msgstr "" #: ../bleachbit/CLI.py:168 msgid "preview files to be deleted and other changes" msgstr "" #: ../bleachbit/CLI.py:170 msgid "use options set in the graphical interface" msgstr "" #: ../bleachbit/CLI.py:172 msgid "output version information and exit" msgstr "" #: ../bleachbit/CLI.py:174 msgid "overwrite files to hide contents" msgstr "" #: ../bleachbit/GuiBasic.py:113 msgid "Delete confirmation" msgstr "" #: ../bleachbit/GuiBasic.py:121 msgid "" "Are you sure you want to permanently delete files according to the selected " "operations? The actual files that will be deleted may have changed since " "you ran the preview." msgstr "" #: ../bleachbit/GuiBasic.py:123 msgid "Are you sure you want to permanently delete these files?" msgstr "" #: ../bleachbit/GuiBasic.py:159 #, python-format msgid "" "Because you are running as root, please manually open this link in a web " "browser:\n" "%s" msgstr "" #. TRANSLATORS: %s expands to bleachbit.sourceforge.net or similar #: ../bleachbit/GuiBasic.py:171 #, python-format msgid "Open web browser to %s?" msgstr "" #: ../bleachbit/GUI.py:144 msgid "Active" msgstr "" #. TRANSLATORS: %(cleaner) may be Firefox, System, etc. #. %(option) may be cache, logs, cookies, etc. #. %(warning) may be 'This option is really slow' #: ../bleachbit/GUI.py:176 #, python-format msgid "" "Warning regarding %(cleaner)s - %(option)s:\n" "\n" "%(warning)s" msgstr "" #: ../bleachbit/GUI.py:346 msgid "You must select an operation" msgstr "" #: ../bleachbit/GUI.py:369 ../bleachbit/GUI.py:384 msgid "Done." msgstr "" #: ../bleachbit/GUI.py:398 msgid "Program to clean unnecessary files" msgstr "" #: ../bleachbit/GUI.py:403 msgid "" "GNU General Public License version 3 or later.\n" "See http://www.gnu.org/licenses/gpl-3.0.txt" msgstr "" #. TRANSLATORS: Maintain the names of translators here. #. Launchpad does this automatically for translations #. typed in Launchpad. This is a special string shown #. in the 'About' box. #: ../bleachbit/GUI.py:409 msgid "translator-credits" msgstr "" "Launchpad Contributions:\n" " Mahay Alam Khan https://launchpad.net/~mahayalamkhan" #: ../bleachbit/GUI.py:422 msgid "System information" msgstr "" #: ../bleachbit/GUI.py:492 msgid "Choose files to shred" msgstr "" #: ../bleachbit/GUI.py:495 msgid "Choose folder to shred" msgstr "" #. TRANSLATORS: this is the context menu #: ../bleachbit/GUI.py:580 msgid "Preview" msgstr "" #. TRANSLATORS: this is the context menu #: ../bleachbit/GUI.py:585 msgid "Clean" msgstr "" #: ../bleachbit/GUI.py:631 msgid "_Shred Files" msgstr "" #: ../bleachbit/GUI.py:632 msgid "Sh_red Folders" msgstr "" #: ../bleachbit/GUI.py:633 msgid "_Wipe Free Space" msgstr "" #: ../bleachbit/GUI.py:634 msgid "S_hred Settings and Quit" msgstr "" #: ../bleachbit/GUI.py:635 msgid "_Quit" msgstr "" #: ../bleachbit/GUI.py:636 msgid "_File" msgstr "" #: ../bleachbit/GUI.py:638 msgid "_Edit" msgstr "" #: ../bleachbit/GUI.py:639 msgid "Help Contents" msgstr "" #: ../bleachbit/GUI.py:641 msgid "_Release Notes" msgstr "" #: ../bleachbit/GUI.py:643 msgid "_System Information" msgstr "" #: ../bleachbit/GUI.py:644 msgid "_About" msgstr "" #: ../bleachbit/GUI.py:645 msgid "_Help" msgstr "" #. TRANSLATORS: This is the preview button on the main window. It previews changes. #: ../bleachbit/GUI.py:669 msgctxt "button" msgid "Preview" msgstr "" #: ../bleachbit/GUI.py:672 msgid "Preview files in the selected operations (without deleting any files)" msgstr "" #. TRANSLATORS: This is the clean button on the main window. #. It makes permanent changes: usually deleting files, sometimes altering them. #: ../bleachbit/GUI.py:680 msgctxt "button" msgid "Clean" msgstr "" #: ../bleachbit/GUI.py:683 msgid "Clean files in the selected operations" msgstr "" #: ../bleachbit/GUI.py:769 msgid "Error when checking for updates: " msgstr "" #: ../bleachbit/GUI.py:800 msgid "" "Error loading the SQLite module: the antivirus software may be blocking it." msgstr "" bleachbit-2.0/po/sv.po0000644000175000017500000013510313245436307013012 0ustar hlehle# Swedish translation for bleachbit # Copyright © 2009 - 2014 Rosetta Contributors and Canonical Ltd 2009 - 2014 # This file is distributed under the same license as the bleachbit package. # Daniel Nylander , 2011. # Josef Andersson , 2014. # msgid "" msgstr "" "Project-Id-Version: bleachbit\n" "Report-Msgid-Bugs-To: FULL NAME \n" "POT-Creation-Date: 2017-02-11 11:12-0700\n" "PO-Revision-Date: 2018-01-20 06:20+0000\n" "Last-Translator: Jonatan Nyberg \n" "Language-Team: Swedish \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n != 1;\n" "X-Launchpad-Export-Date: 2018-01-21 00:00+0000\n" "X-Generator: Launchpad (build 18532)\n" "Language: sv\n" #: ../cleaners/mc.xml ../cleaners/tortoisesvn.xml ../cleaners/vim.xml #: ../cleaners/safari.xml ../cleaners/links2.xml ../cleaners/seamonkey.xml #: ../cleaners/realplayer.xml ../cleaners/windows_defender.xml #: ../cleaners/d4x.xml ../cleaners/sqlite3.xml #: ../cleaners/internet_explorer.xml ../cleaners/libreoffice.xml #: ../cleaners/easytag.xml ../cleaners/bash.xml ../cleaners/nautilus.xml #: ../cleaners/octave.xml ../cleaners/elinks.xml ../cleaners/chromium.xml #: ../cleaners/google_chrome.xml msgid "History" msgstr "Historik" #: ../cleaners/mc.xml ../cleaners/tortoisesvn.xml ../cleaners/links2.xml #: ../cleaners/realplayer.xml ../cleaners/d4x.xml ../cleaners/libreoffice.xml #: ../cleaners/easytag.xml ../cleaners/nautilus.xml ../cleaners/gnome.xml #: ../bleachbit/Cleaner.py:349 ../bleachbit/Cleaner.py:423 #: ../bleachbit/Cleaner.py:432 msgid "Delete the usage history" msgstr "Ta bort användningshistoriken" #: ../cleaners/gpodder.xml ../cleaners/hippo_opensim_viewer.xml #: ../cleaners/thumbnails.xml ../cleaners/safari.xml ../cleaners/emesene.xml #: ../cleaners/liferea.xml ../cleaners/seamonkey.xml ../cleaners/vuze.xml #: ../cleaners/yahoo_messenger.xml ../cleaners/pidgin.xml #: ../cleaners/adobe_reader.xml ../cleaners/evolution.xml #: ../cleaners/tremulous.xml ../cleaners/libreoffice.xml ../cleaners/xine.xml #: ../cleaners/nexuiz.xml ../cleaners/exaile.xml ../cleaners/opera.xml #: ../cleaners/amsn.xml ../cleaners/gftp.xml ../cleaners/miro.xml #: ../cleaners/beagle.xml ../cleaners/kde.xml ../cleaners/epiphany.xml #: ../cleaners/flash.xml ../cleaners/secondlife_viewer.xml ../cleaners/java.xml #: ../cleaners/chromium.xml ../cleaners/audacious.xml ../cleaners/rhythmbox.xml #: ../cleaners/google_chrome.xml ../cleaners/thunderbird.xml #: ../bleachbit/Cleaner.py:192 ../bleachbit/Cleaner.py:370 #: ../bleachbit/Cleaner.py:455 msgid "Cache" msgstr "Cacheminne" #: ../cleaners/gpodder.xml ../cleaners/yum.xml #: ../cleaners/hippo_opensim_viewer.xml ../cleaners/thumbnails.xml #: ../cleaners/windows_explorer.xml ../cleaners/liferea.xml #: ../cleaners/vuze.xml ../cleaners/yahoo_messenger.xml ../cleaners/pidgin.xml #: ../cleaners/adobe_reader.xml ../cleaners/evolution.xml #: ../cleaners/libreoffice.xml ../cleaners/apt.xml ../cleaners/xine.xml #: ../cleaners/nexuiz.xml ../cleaners/exaile.xml ../cleaners/amsn.xml #: ../cleaners/gftp.xml ../cleaners/miro.xml ../cleaners/beagle.xml #: ../cleaners/kde.xml ../cleaners/flash.xml ../cleaners/secondlife_viewer.xml #: ../cleaners/java.xml ../cleaners/audacious.xml ../cleaners/rhythmbox.xml #: ../bleachbit/Cleaner.py:370 ../bleachbit/Cleaner.py:455 #: ../bleachbit/Cleaner.py:489 ../bleachbit/Cleaner.py:491 msgid "Delete the cache" msgstr "Ta bort cacheminnet" #. TRANSLATORS: Vacuum is a verb. The term is jargon #. from the SQLite database. Microsoft Access uses #. the term 'Compact Database' (which you may translate #. instead). Another synonym is 'defragment.' #: ../cleaners/gpodder.xml ../cleaners/yum.xml ../cleaners/safari.xml #: ../cleaners/liferea.xml ../cleaners/chromium.xml #: ../cleaners/google_chrome.xml ../cleaners/thunderbird.xml #: ../bleachbit/Cleaner.py:214 ../bleachbit/Cleaner.py:360 #: ../bleachbit/Action.py:445 msgid "Vacuum" msgstr "Komprimera databas" #: ../cleaners/gpodder.xml ../cleaners/yum.xml ../cleaners/safari.xml #: ../cleaners/liferea.xml ../cleaners/chromium.xml #: ../cleaners/google_chrome.xml ../cleaners/thunderbird.xml #: ../bleachbit/Cleaner.py:215 msgid "" "Clean database fragmentation to reduce space and improve speed without " "removing any data" msgstr "" "Städa upp databasfragmentering för att minska utrymmesanvändning och öka " "hastighet utan att ta bort någon data" #: ../cleaners/yum.xml ../cleaners/apt.xml msgid "Package manager" msgstr "Pakethanterare" #: ../cleaners/warzone2100.xml ../cleaners/hippo_opensim_viewer.xml #: ../cleaners/gl-117.xml ../cleaners/tremulous.xml ../cleaners/nexuiz.xml #: ../cleaners/secondlife_viewer.xml msgid "Game" msgstr "Spel" #: ../cleaners/warzone2100.xml ../cleaners/hippo_opensim_viewer.xml #: ../cleaners/teamviewer.xml ../cleaners/realplayer.xml ../cleaners/vuze.xml #: ../cleaners/yahoo_messenger.xml ../cleaners/amule.xml #: ../cleaners/easytag.xml ../cleaners/exaile.xml ../cleaners/screenlets.xml #: ../cleaners/gftp.xml ../cleaners/miro.xml ../cleaners/audacious.xml #: ../bleachbit/Cleaner.py:486 msgid "Logs" msgstr "Loggar" #: ../cleaners/warzone2100.xml ../cleaners/hippo_opensim_viewer.xml #: ../cleaners/teamviewer.xml ../cleaners/realplayer.xml ../cleaners/vuze.xml #: ../cleaners/yahoo_messenger.xml ../cleaners/amule.xml ../cleaners/exaile.xml #: ../cleaners/screenlets.xml ../cleaners/gftp.xml ../cleaners/miro.xml #: ../cleaners/audacious.xml ../bleachbit/Cleaner.py:486 msgid "Delete the logs" msgstr "Ta bort loggarna" #: ../cleaners/thumbnails.xml ../cleaners/windows_explorer.xml msgid "Thumbnails" msgstr "Miniatyrbilder" #: ../cleaners/thumbnails.xml msgid "Icons for files on the system" msgstr "Ikoner för filer i systemet" #: ../cleaners/vim.xml ../cleaners/gedit.xml msgid "Editor" msgstr "Redigerare" #: ../cleaners/vim.xml msgid "" "Delete ~/.viminfo which includes file history, command history, and buffers" msgstr "" "Ta bort ~/.viminfo som innehåller filhistorik, kommandohistorik och " "buffertdata" #: ../cleaners/filezilla.xml ../cleaners/transmission.xml ../cleaners/vuze.xml #: ../cleaners/amule.xml ../cleaners/gftp.xml msgid "File transfer client" msgstr "Filöverföringsklient" #: ../cleaners/filezilla.xml ../cleaners/paint.xml #: ../cleaners/windows_media_player.xml ../cleaners/windows_explorer.xml #: ../cleaners/teamviewer.xml ../cleaners/microsoft_office.xml #: ../cleaners/vlc.xml ../cleaners/adobe_reader.xml ../cleaners/winamp.xml #: ../cleaners/winzip.xml ../cleaners/winrar.xml ../cleaners/audacious.xml #: ../cleaners/wordpad.xml ../bleachbit/Cleaner.py:371 msgid "Most recently used" msgstr "Senast använda" #: ../cleaners/filezilla.xml ../cleaners/windows_explorer.xml #: ../cleaners/gwenview.xml ../cleaners/adobe_reader.xml ../cleaners/gedit.xml #: ../cleaners/kde.xml ../cleaners/audacious.xml ../bleachbit/Cleaner.py:372 #: ../bleachbit/Cleaner.py:469 msgid "Delete the list of recently used documents" msgstr "Rensa listan över senast använda dokument" #: ../cleaners/skype.xml ../cleaners/emesene.xml #: ../cleaners/yahoo_messenger.xml ../cleaners/pidgin.xml ../cleaners/amsn.xml msgid "Chat client" msgstr "Chattklient" #: ../cleaners/skype.xml ../cleaners/hexchat.xml ../cleaners/emesene.xml #: ../cleaners/seamonkey.xml ../cleaners/yahoo_messenger.xml #: ../cleaners/pidgin.xml ../cleaners/amsn.xml msgid "Chat logs" msgstr "Chattloggar" #: ../cleaners/skype.xml ../cleaners/hexchat.xml ../cleaners/emesene.xml #: ../cleaners/seamonkey.xml ../cleaners/yahoo_messenger.xml #: ../cleaners/pidgin.xml ../cleaners/amsn.xml msgid "Delete the chat logs" msgstr "Ta bort chattloggarna" #: ../cleaners/skype.xml msgid "Installers" msgstr "Installerare" #: ../cleaners/skype.xml msgid "Delete cached patches and installers" msgstr "Ta bort cacheminne för programfixar och installerare" #: ../cleaners/hexchat.xml msgid "IRC client formerly known as XChat" msgstr "IRC-klient tidigare känd som XChat" #: ../cleaners/safari.xml ../cleaners/links2.xml ../cleaners/seamonkey.xml #: ../cleaners/konqueror.xml ../cleaners/internet_explorer.xml #: ../cleaners/opera.xml ../cleaners/epiphany.xml ../cleaners/elinks.xml #: ../cleaners/chromium.xml ../cleaners/google_chrome.xml #: ../bleachbit/Cleaner.py:226 msgid "Web browser" msgstr "Webbläsare" #: ../cleaners/safari.xml ../cleaners/seamonkey.xml ../cleaners/opera.xml #: ../cleaners/epiphany.xml ../cleaners/chromium.xml #: ../cleaners/google_chrome.xml ../cleaners/thunderbird.xml #: ../bleachbit/Cleaner.py:193 msgid "Delete the web cache, which reduces time to display revisited pages" msgstr "" "Ta bort webbcacheminnet som minskar tiden som det tar att visa återbesökta " "sidor" #: ../cleaners/safari.xml ../cleaners/liferea.xml ../cleaners/seamonkey.xml #: ../cleaners/realplayer.xml ../cleaners/konqueror.xml #: ../cleaners/internet_explorer.xml ../cleaners/opera.xml #: ../cleaners/epiphany.xml ../cleaners/flash.xml ../cleaners/silverlight.xml #: ../cleaners/chromium.xml ../cleaners/google_chrome.xml #: ../cleaners/thunderbird.xml ../bleachbit/Cleaner.py:194 msgid "Cookies" msgstr "Kakor" #: ../cleaners/safari.xml ../cleaners/liferea.xml ../cleaners/seamonkey.xml #: ../cleaners/realplayer.xml ../cleaners/konqueror.xml #: ../cleaners/internet_explorer.xml ../cleaners/opera.xml #: ../cleaners/epiphany.xml ../cleaners/flash.xml ../cleaners/silverlight.xml #: ../cleaners/chromium.xml ../cleaners/google_chrome.xml #: ../cleaners/thunderbird.xml ../bleachbit/Cleaner.py:195 msgid "" "Delete cookies, which contain information such as web site preferences, " "authentication, and tracking identification" msgstr "" "Ta bort kakor som innehåller info såsom webbplatsinställningar, " "autentisering och spårningsidentifiering" #: ../cleaners/safari.xml ../cleaners/konqueror.xml #: ../cleaners/internet_explorer.xml ../cleaners/opera.xml #: ../bleachbit/Cleaner.py:213 msgid "List of visited web pages" msgstr "Lista över besökta webbplatser" #. Torrent software can block a list of IP addresses, such as those that may belong to malware or anti-piracy organizations #: ../cleaners/transmission.xml msgid "Blocklists" msgstr "Blockeringslistor" #: ../cleaners/transmission.xml ../cleaners/windows_defender.xml #: ../cleaners/beagle.xml ../cleaners/thunderbird.xml ../cleaners/deepscan.xml #: ../bleachbit/Cleaner.py:197 msgid "Delete the files" msgstr "Ta bort filerna" #: ../cleaners/transmission.xml msgid "Blocklists will need update to work." msgstr "Blockeringslistor behöver uppdateras för att fungera." #: ../cleaners/transmission.xml msgid "Torrents" msgstr "Torrentfiler" #: ../cleaners/transmission.xml msgid "Delete the torrents (just the metadata but not the files described)" msgstr "" "Ta bort torrentfilerna (bara metadatan, men inte filerna som har beskrivits)" #: ../cleaners/transmission.xml msgid "Statistics" msgstr "Statistik" #: ../cleaners/transmission.xml msgid "Delete the file" msgstr "Ta bort filen" #: ../cleaners/paint.xml ../cleaners/windows_media_player.xml #: ../cleaners/windows_explorer.xml ../cleaners/teamviewer.xml #: ../cleaners/microsoft_office.xml ../cleaners/vlc.xml ../cleaners/winamp.xml #: ../cleaners/winzip.xml ../cleaners/winrar.xml ../cleaners/wordpad.xml msgid "Delete the most recently used list" msgstr "Ta bort listan över senast använda" #: ../cleaners/emesene.xml msgid "Delete the avatars and emoticons cache" msgstr "Ta bort cacheminnet för avatarer och humörsymboler" #: ../cleaners/windows_media_player.xml ../cleaners/realplayer.xml #: ../cleaners/vlc.xml ../cleaners/winamp.xml msgid "Media player" msgstr "Mediaspelare" #: ../cleaners/windows_explorer.xml ../cleaners/nautilus.xml msgid "File manager" msgstr "Filhanterare" #: ../cleaners/windows_explorer.xml ../cleaners/gwenview.xml #: ../cleaners/gedit.xml ../cleaners/kde.xml ../bleachbit/Cleaner.py:468 #: ../bleachbit/Cleaner.py:663 msgid "Recent documents list" msgstr "Lista över senaste dokument" #: ../cleaners/windows_explorer.xml msgid "" "This option will reset pinned locations in Quick Access to their defaults." msgstr "" "Det här valet återställer de pinnade platserna i Snabbåtkomst till deras " "standardvärden." #. In Windows 'Run' is the dialog in the Start menu #. In GNOME 'Run' is the dialog shown when typing ALT+F2' #: ../cleaners/windows_explorer.xml ../cleaners/gnome.xml msgid "Run" msgstr "Kör" #: ../cleaners/windows_explorer.xml ../cleaners/opera.xml ../cleaners/gnome.xml #: ../cleaners/google_toolbar.xml msgid "Search history" msgstr "Sökhistorik" #: ../cleaners/windows_explorer.xml ../cleaners/opera.xml ../cleaners/gnome.xml #: ../cleaners/google_toolbar.xml msgid "Delete the search history" msgstr "Ta bort sökhistoriken" #: ../cleaners/windows_explorer.xml msgid "This will restart Windows Explorer." msgstr "Detta startar om Windows utforskaren." #: ../cleaners/gl-117.xml ../cleaners/microsoft_office.xml #: ../cleaners/beagle.xml ../cleaners/secondlife_viewer.xml ../cleaners/x11.xml msgid "Debug logs" msgstr "Felsökningsloggar" #: ../cleaners/gl-117.xml ../cleaners/microsoft_office.xml #: ../cleaners/easytag.xml ../cleaners/beagle.xml #: ../cleaners/secondlife_viewer.xml ../cleaners/x11.xml msgid "Delete the debug logs" msgstr "Ta bort felsökningsloggar" #: ../cleaners/google_earth.xml ../cleaners/winetricks.xml ../cleaners/vuze.xml #: ../cleaners/adobe_reader.xml ../cleaners/amule.xml ../cleaners/wine.xml #: ../cleaners/internet_explorer.xml ../cleaners/gimp.xml ../cleaners/kde.xml #: ../cleaners/deepscan.xml ../bleachbit/Cleaner.py:520 msgid "Temporary files" msgstr "Temporära filer" #: ../cleaners/google_earth.xml ../cleaners/winetricks.xml ../cleaners/vuze.xml #: ../cleaners/adobe_reader.xml ../cleaners/amule.xml ../cleaners/wine.xml #: ../cleaners/internet_explorer.xml ../cleaners/gimp.xml ../cleaners/kde.xml #: ../cleaners/deepscan.xml ../bleachbit/Cleaner.py:520 msgid "Delete the temporary files" msgstr "Ta bort temporära filer" #: ../cleaners/seamonkey.xml ../cleaners/opera.xml ../bleachbit/Cleaner.py:201 msgid "Download history" msgstr "Hämtningshistorik" #: ../cleaners/seamonkey.xml ../cleaners/opera.xml ../bleachbit/Cleaner.py:201 msgid "List of files downloaded" msgstr "Lista över hämtade filer" #: ../cleaners/seamonkey.xml msgid "Delete the list of visited web pages" msgstr "Ta bort listan över besökta webbplatser" #: ../cleaners/vuze.xml ../cleaners/deepscan.xml ../bleachbit/Cleaner.py:190 msgid "Backup files" msgstr "Säkerhetskopior" #: ../cleaners/vuze.xml ../cleaners/deepscan.xml ../bleachbit/Cleaner.py:191 msgid "Delete the backup files" msgstr "Ta bort säkerhetskopior" #: ../cleaners/konqueror.xml ../cleaners/opera.xml ../cleaners/chromium.xml msgid "Current session" msgstr "Aktuell session" #: ../cleaners/konqueror.xml ../cleaners/opera.xml ../cleaners/chromium.xml msgid "Delete the current session" msgstr "Ta bort den aktuella sessionen" #: ../cleaners/konqueror.xml ../cleaners/opera.xml ../bleachbit/Cleaner.py:213 msgid "URL history" msgstr "Webbadresshistorik" #: ../cleaners/microsoft_office.xml ../cleaners/libreoffice.xml #: ../bleachbit/Cleaner.py:375 msgid "Office suite" msgstr "Kontorspaket" #: ../cleaners/windows_defender.xml msgid "Anti-virus" msgstr "Antivirus" #: ../cleaners/journald.xml msgid "System journals" msgstr "Systemjournaler" #: ../cleaners/journald.xml msgid "Clean old system journals" msgstr "Rensa gamla systemjournaler" #: ../cleaners/adobe_reader.xml msgid "Document viewer" msgstr "Dokumentvisare" #: ../cleaners/evolution.xml ../cleaners/thunderbird.xml msgid "Email client" msgstr "E-postprogram" #: ../cleaners/tremulous.xml msgid "Delete the list of game servers" msgstr "Ta bort listan över spelservrar" #: ../cleaners/sqlite3.xml ../cleaners/bash.xml ../cleaners/octave.xml msgid "Delete the command history" msgstr "Ta bort kommandohistoriken" #: ../cleaners/wine.xml msgid "Compatibility layer for Windows software" msgstr "Kompatibilitetslager för Windows-programvara" #: ../cleaners/internet_explorer.xml ../cleaners/chromium.xml #: ../cleaners/google_chrome.xml ../bleachbit/Cleaner.py:202 msgid "Form history" msgstr "Formulärhistorik" #: ../cleaners/internet_explorer.xml ../bleachbit/Cleaner.py:203 msgid "A history of forms entered in web sites and in the Search bar" msgstr "Inmatningshistorik i formulär på webbplatser och i sökfält" #. This software edits metadata tags, such as title and artist, in audio files #: ../cleaners/easytag.xml msgid "Audio files tagger" msgstr "Ljudfilstaggare" #: ../cleaners/apt.xml msgid "Delete obsolete files" msgstr "Ta bort föråldrade filer" #: ../cleaners/apt.xml msgid "Package lists" msgstr "Paketlistor" #: ../cleaners/xine.xml ../cleaners/miro.xml ../cleaners/flash.xml msgid "Multimedia viewer" msgstr "Multimediaspelare" #: ../cleaners/recoll.xml ../cleaners/beagle.xml msgid "Search tool" msgstr "Sökverktyg" #: ../cleaners/recoll.xml ../cleaners/beagle.xml ../cleaners/thunderbird.xml msgid "Index" msgstr "Index" #: ../cleaners/recoll.xml msgid "" "Delete the search index, a database of words and the files they contain" msgstr "Ta bort sökindexet, en orddatabas och filerna den innehåller" #: ../cleaners/gimp.xml msgid "Graphics editor" msgstr "Grafikredigerare" #: ../cleaners/exaile.xml msgid "Downloaded podcasts" msgstr "Hämtade poddsändningar" #: ../cleaners/exaile.xml msgid "Delete downloaded podcasts" msgstr "Ta bort hämtade poddsändningar" #: ../cleaners/bash.xml msgid "Shell" msgstr "Skal" #. TRANSLATORS: DOM = Document Object Model. #: ../cleaners/opera.xml ../cleaners/epiphany.xml ../cleaners/chromium.xml #: ../cleaners/google_chrome.xml ../bleachbit/Cleaner.py:199 msgid "DOM Storage" msgstr "DOM-lagring" #: ../cleaners/opera.xml ../cleaners/epiphany.xml ../cleaners/chromium.xml #: ../cleaners/google_chrome.xml ../bleachbit/Cleaner.py:199 msgid "Delete HTML5 cookies" msgstr "Ta bort HTML5-kakor" #: ../cleaners/opera.xml ../cleaners/epiphany.xml ../cleaners/chromium.xml #: ../cleaners/google_chrome.xml ../cleaners/thunderbird.xml #: ../bleachbit/Cleaner.py:208 msgid "Passwords" msgstr "Lösenord" #: ../cleaners/opera.xml ../cleaners/epiphany.xml ../cleaners/chromium.xml #: ../cleaners/google_chrome.xml ../cleaners/thunderbird.xml #: ../bleachbit/Cleaner.py:209 msgid "" "A database of usernames and passwords as well as a list of sites that should " "not store passwords" msgstr "" "Databas över användarnamn och lösenord samt lista över webbplatser som inte " "bör lagra lösenord" #: ../cleaners/opera.xml ../cleaners/epiphany.xml ../cleaners/chromium.xml #: ../cleaners/google_chrome.xml ../cleaners/thunderbird.xml #: ../bleachbit/Cleaner.py:211 msgid "This option will delete your saved passwords." msgstr "Detta alternativ kommer att ta bort sparade lösenord." #: ../cleaners/nautilus.xml msgid "Custom folders will be reset." msgstr "Anpassade mappar återställs." #: ../cleaners/gnome.xml ../cleaners/kde.xml msgid "Desktop environment" msgstr "Skrivbordsmiljö" #: ../cleaners/screenlets.xml msgid "Widgets for the desktop" msgstr "Gränssnittskomponenter för skrivbordet" #: ../cleaners/epiphany.xml msgid "Places" msgstr "Platser" #: ../cleaners/epiphany.xml msgid "" "A database of URLs including bookmarks, favicons, and a history of visited " "web sites" msgstr "" "Databas med webbadresser inkluderande bokmärken, favoritikoner och historik " "över besökta webbplatser" #: ../cleaners/epiphany.xml msgid "This option deletes all bookmarks." msgstr "Det här alternativet tar bort alla bokmärken." #: ../cleaners/winrar.xml msgid "File archiver" msgstr "Arkiveringsprogram" #: ../cleaners/elinks.xml msgid "Delete the cookies, visited URLs, and search history" msgstr "Ta bort kakor, besökta webbadresser och sökhistorik" #: ../cleaners/chromium.xml ../cleaners/google_chrome.xml msgid "A history of forms entered in web sites" msgstr "Formulärhistorik från webbplatser" #: ../cleaners/chromium.xml ../cleaners/google_chrome.xml msgid "" "Delete the history which includes visited sites, downloads, and thumbnails" msgstr "" "Ta bort historiken som innehåller besökta webbplatser, hämtningar och " "miniatyrbilder" #: ../cleaners/chromium.xml ../cleaners/google_chrome.xml msgid "Search engines" msgstr "Sökmotorer" #. 'Factory' means a search engine that is installed by default 'from the factory,' but this is different than a 'default search engine' https://lists.launchpad.net/launchpad-translators/msg00283.html #: ../cleaners/chromium.xml ../cleaners/google_chrome.xml msgid "" "Reset the search engine usage history and delete non-factory search engines, " "some of which are added automatically" msgstr "" "Återställ sökmotorns användningshistorik och ta bort icke-standard " "sökmotorer, av vilka några lagts till automatiskt" #: ../cleaners/audacious.xml msgid "Audio player" msgstr "Ljudspelare" #: ../cleaners/rhythmbox.xml msgid "Database" msgstr "Databas" #: ../cleaners/rhythmbox.xml msgid "" "Delete the database, which contain information such as play count and last " "played" msgstr "" "Ta bort databasen, som innehåller information om till exempel antal " "spelningar och senast spelad" #: ../cleaners/google_chrome.xml msgid "Session" msgstr "Session" #: ../cleaners/google_chrome.xml msgid "Delete the current and last sessions" msgstr "Ta bort de aktuella och senaste sessionerna" #: ../cleaners/x11.xml msgid "Windowing system" msgstr "Fönstersystem" #: ../cleaners/wordpad.xml msgid "Word processor" msgstr "Ordbehandlare" #: ../cleaners/deepscan.xml msgid "Deep scan" msgstr "Djupgenomsökning" #: ../cleaners/deepscan.xml msgid "Clean files widely scattered across the disk" msgstr "Rensa bort filer som är utspridda över disken" #: ../cleaners/deepscan.xml msgid "Inspect the preview for any files you want to keep." msgstr "Granska förhandsvisning för filer du vill behålla." #: ../cleaners/deepscan.xml msgid "This option is slow." msgstr "Detta alternativ är långsamt." #: ../bleachbit.desktop msgid "Unnecessary file cleaner" msgstr "Städare av onödiga filer" #: ../bleachbit.desktop msgid "Free space and maintain privacy" msgstr "Frigör utrymme och bibehåll integritet" #: ../bleachbit/FileUtilities.py:668 msgid "" "There was at least one file on a file system that does not support advanced " "overwriting." msgstr "" "Det fanns åtminstone en fil i ett filsystem som inte har stöd för avancerad " "överskrivning." #: ../bleachbit/Unix.py:574 #, python-format msgid "Executable not found: %s" msgstr "Körbar fil hittades inte: %s" #. TRANSLATORS: %s expands to a name such as 'Firefox' or 'System'. #: ../bleachbit/Unix.py:623 ../bleachbit/Worker.py:136 #, python-format msgid "" "%s cannot be cleaned because it is currently running. Close it, and try " "again." msgstr "" "%s kan inte rensas eftersom att den körs för närvarande. Stäng den och " "försök igen." #: ../bleachbit/GuiBasic.py:112 msgid "Delete confirmation" msgstr "Bekräfta borttagning" #: ../bleachbit/GuiBasic.py:122 msgid "" "Are you sure you want to permanently delete files according to the selected " "operations? The actual files that will be deleted may have changed since " "you ran the preview." msgstr "" "Du är säker på att du vill ta bort filer permanent enligt de valda " "metoderna? De aktuella filerna som tas bort kan ha ändrats sedan du körde " "förhandsvisningen." #: ../bleachbit/GuiBasic.py:125 msgid "Are you sure you want to permanently delete these files?" msgstr "Är du säker på att du vill ta bort dessa filer permanent?" #: ../bleachbit/GuiBasic.py:162 #, python-format msgid "" "Because you are running as root, please manually open this link in a web " "browser:\n" "%s" msgstr "" "Då du kör som root, öppna denna länk manuellt i en webbläsare:\n" "%s" #. TRANSLATORS: %s expands to www.bleachbit.org or similar #: ../bleachbit/GuiBasic.py:174 #, python-format msgid "Open web browser to %s?" msgstr "Öppna webbläsaren för %s?" #. TRANSLATORS: This is the label in the log indicating was #. skipped because it matches the whitelist #: ../bleachbit/Command.py:47 msgid "Skip" msgstr "Hoppa över" #. TRANSLATORS: This is the label in the log indicating will be #. deleted (for previews) or was actually deleted #: ../bleachbit/Command.py:77 msgid "Delete" msgstr "Ta bort" #: ../bleachbit/Command.py:99 msgid "" "At least one file was locked by another process, so its contents could not " "be overwritten. It will be marked for deletion upon system reboot." msgstr "" "Åtminstone en fil låstes av en annan process, så dess innehåll kunde inte " "skrivas över. Det blir markerat för borttagning vid nästa omstart." #. TRANSLATORS: The file will be deleted when the #. system reboots #: ../bleachbit/Command.py:102 msgid "Mark for deletion" msgstr "Markera för borttagning" #. TRANSLATORS: Parts of this file will be deleted #: ../bleachbit/Command.py:199 ../bleachbit/Command.py:233 #: ../bleachbit/Action.py:254 ../bleachbit/Action.py:267 #: ../bleachbit/Action.py:280 ../bleachbit/Action.py:293 #: ../bleachbit/Action.py:306 msgid "Clean file" msgstr "Rensa fil" #. TRANSLATORS: The file will be truncated to 0 bytes in length #: ../bleachbit/Command.py:275 msgid "Truncate" msgstr "Trunkera" #: ../bleachbit/Command.py:317 msgid "Delete registry key" msgstr "Ta bort registernyckel" #. TRANSLATORS: This is cleaner name for cleaners imported from winapp2.ini #: ../bleachbit/Winapp.py:44 msgid "Applications" msgstr "Program" #. TRANSLATORS: This is cleaner name for cleaners imported #. from winapp2.ini #: ../bleachbit/Winapp.py:47 msgid "Internet" msgstr "Internet" #. TRANSLATORS: This is cleaner name for cleaners imported #. from winapp2.ini #: ../bleachbit/Winapp.py:50 msgid "Multimedia" msgstr "Multimedia" #. TRANSLATORS: This is cleaner name for cleaners imported #. from winapp2.ini #: ../bleachbit/Winapp.py:53 msgid "Utilities" msgstr "Tillbehör" #: ../bleachbit/Winapp.py:64 msgid "Games" msgstr "Spel" #: ../bleachbit/Winapp.py:162 msgid "Imported from winapp2.ini" msgstr "Importerat från winapp2.ini" #: ../bleachbit/Cleaner.py:197 msgid "Crash reports" msgstr "Kraschrapporter" #: ../bleachbit/Cleaner.py:204 msgid "Session restore" msgstr "Sessionsåterställning" #: ../bleachbit/Cleaner.py:205 msgid "Loads the initial session after the browser closes or crashes" msgstr "Kör inledande session efter webbläsaren stängts eller kraschat" #: ../bleachbit/Cleaner.py:207 msgid "Site preferences" msgstr "Webbplatsinställningar" #: ../bleachbit/Cleaner.py:207 msgid "Settings for individual sites" msgstr "Inställningar för individuella webbplatser" #. TRANSLATORS: desktop entries are .desktop files in Linux that #. make up the application menu (the menu that shows BleachBit, #. Firefox, and others. The .desktop files also associate file #. types, so clicking on an .html file in Nautilus brings up #. Firefox. #. More information: #. http://standards.freedesktop.org/menu-spec/latest/index.html#introduction #: ../bleachbit/Cleaner.py:453 msgid "Broken desktop files" msgstr "Trasiga skrivbordsfiler" #: ../bleachbit/Cleaner.py:454 msgid "Delete broken application menu entries and file associations" msgstr "Ta bort trasiga programmenyposter och filassociationer" #. TRANSLATORS: Localizations are files supporting specific #. languages, so applications appear in Spanish, etc. #: ../bleachbit/Cleaner.py:458 msgid "Localizations" msgstr "Språk" #: ../bleachbit/Cleaner.py:459 msgid "Delete files for unwanted languages" msgstr "Ta bort filer för oönskade språk" #: ../bleachbit/Cleaner.py:461 msgid "Configure this option in the preferences." msgstr "Konfigurera detta alternativ i inställningarna." #: ../bleachbit/Cleaner.py:467 msgid "Rotated logs" msgstr "Roterade loggar" #: ../bleachbit/Cleaner.py:467 msgid "Delete old system logs" msgstr "Ta bort gamla systemloggar" #: ../bleachbit/Cleaner.py:470 msgid "Trash" msgstr "Papperskorgen" #: ../bleachbit/Cleaner.py:470 msgid "Empty the trash" msgstr "Töm papperskorgen" #: ../bleachbit/Cleaner.py:476 ../bleachbit/Cleaner.py:627 #: ../bleachbit/Worker.py:184 msgid "Memory" msgstr "Minne" #. TRANSLATORS: 'free' means 'unallocated' #: ../bleachbit/Cleaner.py:478 msgid "Wipe the swap and free memory" msgstr "Rensa swappen och frigör minne" #: ../bleachbit/Cleaner.py:480 msgid "This option is experimental and may cause system problems." msgstr "Detta val är experimentellt och kan orsaka systemproblem." #: ../bleachbit/Cleaner.py:488 msgid "Memory dump" msgstr "Minnesdump" #: ../bleachbit/Cleaner.py:488 msgid "Delete the file memory.dmp" msgstr "Ta bort filen memory.dmp" #. TRANSLATORS: Prefetch is Microsoft Windows jargon. #: ../bleachbit/Cleaner.py:491 msgid "Prefetch" msgstr "Hämta i förväg" #: ../bleachbit/Cleaner.py:493 msgid "Recycle bin" msgstr "Papperskorgen" #: ../bleachbit/Cleaner.py:493 ../bleachbit/Cleaner.py:787 msgid "Empty the recycle bin" msgstr "Töm papperskorgen" #. TRANSLATORS: 'Update' is a noun, and 'Update uninstallers' is an option to delete #. the uninstallers for software updates. #: ../bleachbit/Cleaner.py:496 msgid "Update uninstallers" msgstr "Uppdaterare avinstallerare" #: ../bleachbit/Cleaner.py:497 msgid "" "Delete uninstallers for Microsoft updates including hotfixes, service packs, " "and Internet Explorer updates" msgstr "" "Ta bort avinstallerare for Microsoft-uppdateringar inklusive programfixar, " "service pack och Internet Explorer" #: ../bleachbit/Cleaner.py:504 ../bleachbit/Cleaner.py:727 msgid "Clipboard" msgstr "Klippbord" #: ../bleachbit/Cleaner.py:505 msgid "" "The desktop environment's clipboard used for copy and paste operations" msgstr "" "Skrivbordsmiljöns klippbord används till metoder för att Kopiera och Klistra " "in" #. TRANSLATORS: "Custom" is an option allowing the user to specify which #. files and folders will be erased. #: ../bleachbit/Cleaner.py:512 ../bleachbit/GuiPreferences.py:66 msgid "Custom" msgstr "Anpassat" #: ../bleachbit/Cleaner.py:513 msgid "Delete user-specified files and folders" msgstr "Ta bort användarspecifika filer och mappar" #. TRANSLATORS: 'free' means 'unallocated' #: ../bleachbit/Cleaner.py:515 msgid "Free disk space" msgstr "Ledigt diskutrymme" #. TRANSLATORS: 'free' means 'unallocated' #: ../bleachbit/Cleaner.py:517 msgid "Overwrite free disk space to hide deleted files" msgstr "Skriv över ledigt diskutrymme för att dölja borttagna filer" #: ../bleachbit/Cleaner.py:518 msgid "This option is very slow." msgstr "Detta val är mycket långsamt." #: ../bleachbit/Cleaner.py:522 msgid "The system in general" msgstr "Systemet i allmänhet" #: ../bleachbit/Cleaner.py:524 ../bleachbit/Cleaner.py:857 msgid "System" msgstr "System" #. TRANSLATORS: 'Free' means 'unallocated.' #. %s expands to a path such as C:\ or /tmp/ #: ../bleachbit/Cleaner.py:735 ../bleachbit/Cleaner.py:890 #, python-format msgid "Overwrite free disk space %s" msgstr "Skriv över ledigt diskutrymme %s" #: ../bleachbit/RecognizeCleanerML.py:59 msgid "Security warning" msgstr "Säkerhetsvarning" #: ../bleachbit/RecognizeCleanerML.py:72 msgid "" "These cleaner definitions are new or have changed. Malicious definitions can " "damage your system. If you do not trust these changes, delete the files or " "quit." msgstr "" "De här städdefinitionerna är nya eller så har de ändrats. Skadliga " "definitioner kan skada ditt system. Ta bort filerna om du inte litar på de " "här ändringarna eller avsluta." #: ../bleachbit/RecognizeCleanerML.py:88 msgctxt "column_label" msgid "Delete" msgstr "Ta bort" #: ../bleachbit/RecognizeCleanerML.py:93 msgctxt "column_label" msgid "Filename" msgstr "Filnamn" #. TRANSLATORS: This indicates an error. The special keyword #. %(operation)s will be replaced by 'firefox' or 'opera' or #. some other cleaner ID. The special keyword %(msg)s will be #. replaced by a message such as 'Permission denied.' #: ../bleachbit/Worker.py:74 #, python-format msgid "Exception while running operation '%(operation)s': '%(msg)s'" msgstr "Undantag vid körning av åtgärden '%(operation)s': '%(msg)s'" #. TRANSLATORS: 'free' means 'unallocated' #: ../bleachbit/Worker.py:182 msgid "Please wait. Wiping free disk space." msgstr "Vänta. Raderar ledigt diskutrymme." #. TRANSLATORS: %s is replaced with Firefox, System, etc. #: ../bleachbit/Worker.py:184 ../bleachbit/Worker.py:332 #, python-format msgid "Please wait. Cleaning %s." msgstr "Vänta. Rensar %s." #: ../bleachbit/Worker.py:199 msgid "Please wait. Wiping file system metadata." msgstr "Vänta. Raderar filsystemsmetadata." #: ../bleachbit/Worker.py:202 msgid "Please wait. Cleaning up after wiping file system metadata." msgstr "Vänta. Rensar upp efter radering av filsystemsmetadata." #: ../bleachbit/Worker.py:205 #, python-format msgid "About %d minute remaining." msgid_plural "About %d minutes remaining." msgstr[0] "Ungefär %d minut kvar." msgstr[1] "Ungefär %d minuter kvar." #. TRANSLATORS: This refers to disk space that was #. really recovered (in other words, not a preview) #: ../bleachbit/Worker.py:272 #, python-format msgid "Disk space recovered: %s" msgstr "Diskutrymme återställt: %s" #. TRANSLATORS: This refers to a preview (no real #. changes were made yet) #: ../bleachbit/Worker.py:276 #, python-format msgid "Disk space to be recovered: %s" msgstr "Diskutrymme som ska återställas: %s" #. TRANSLATORS: This refers to the number of files really #. deleted (in other words, not a preview). #: ../bleachbit/Worker.py:281 #, python-format msgid "Files deleted: %d" msgstr "Borttagna filer: %d" #. TRANSLATORS: This refers to the number of files that #. would be deleted (in other words, simply a preview). #: ../bleachbit/Worker.py:285 #, python-format msgid "Files to be deleted: %d" msgstr "Filer att ta bort: %d" #: ../bleachbit/Worker.py:288 #, python-format msgid "Special operations: %d" msgstr "Speciella åtgärder: %d" #: ../bleachbit/Worker.py:291 #, python-format msgid "Errors: %d" msgstr "Fel: %d" #. TRANSLATORS: The "deep scan" feature searches over broad #. areas of the file system such as the user's whole home directory #. or all the system executables. #: ../bleachbit/Worker.py:306 msgid "Please wait. Running deep scan." msgstr "Vänta. Djupgenomsökning körs." #. TRANSLATORS: %s is replaced with Firefox, System, etc. #: ../bleachbit/Worker.py:335 #, python-format msgid "Please wait. Previewing %s." msgstr "Vänta. Förhandsgranskar %s." #: ../bleachbit/Update.py:80 msgid "New winapp2.ini was downloaded." msgstr "En ny winapp2.ini hämtades." #: ../bleachbit/Update.py:125 msgid "Update BleachBit" msgstr "Uppdatera BleachBit" #: ../bleachbit/Update.py:130 msgid "A new version is available." msgstr "En ny version är tillgänglig." #. TRANSLATORS: %s expands to version such as '0.8.4' or '0.8.5beta' or #. similar #: ../bleachbit/Update.py:139 #, python-format msgid "Update to version %s" msgstr "Uppdatera till version %s" #: ../bleachbit/Update.py:164 #, python-format msgid "" "Error when opening a network connection to %s to check for updates. Please " "verify the network is working." msgstr "" "Fel vid försök att öppna en nätverksanslutning till %s för att söka efter " "uppdateringar. Var snäll och bekräfta att nätverket fungerar." #: ../bleachbit/CLI.py:106 #, python-format msgid "not a valid cleaner: %s" msgstr "ogiltig städare: %s" #. TRANSLATORS: This is the command line usage. Don't translate #. %prog, but do translate usage, options, cleaner, and option. #. More information about the command line is here #. https://www.bleachbit.org/documentation/command-line #: ../bleachbit/CLI.py:133 msgid "usage: %prog [options] cleaner.option1 cleaner.option2" msgstr "användning: %prog [alternativ] städare.alt1 städare.alt2" #: ../bleachbit/CLI.py:136 msgid "list cleaners" msgstr "lista över städare" #. TRANSLATORS: predefined cleaners are for applications, such as Firefox and Flash. #. This is different than cleaning an arbitrary file, such as a #. spreadsheet on the desktop. #: ../bleachbit/CLI.py:141 msgid "run cleaners to delete files and make other permanent changes" msgstr "" "kör städare för att ta bort filer och göra andra permanenta ändringar" #: ../bleachbit/CLI.py:144 msgid "shred specific files or folders" msgstr "förstör specifika filer eller mappar" #: ../bleachbit/CLI.py:146 msgid "show system information" msgstr "visa systeminformation" #: ../bleachbit/CLI.py:148 msgid "launch the graphical interface" msgstr "starta grafiska gränssnittet" #: ../bleachbit/CLI.py:152 msgid "do not prompt for administrator privileges" msgstr "fråga inte efter administratörsbehörighet" #: ../bleachbit/CLI.py:157 msgid "preview files to be deleted and other changes" msgstr "granska filer som kommer att tas bort och andra ändringar" #: ../bleachbit/CLI.py:161 msgid "use options set in the graphical interface" msgstr "använd alternativ angivna i grafiska gränssnittet" #: ../bleachbit/CLI.py:164 msgid "update winapp2.ini, if a new version is available" msgstr "uppdatera winapp2.ini om en ny version är tillgänglig" #: ../bleachbit/CLI.py:166 msgid "output version information and exit" msgstr "mata ut versionsinformation och avsluta" #: ../bleachbit/CLI.py:168 msgid "overwrite files to hide contents" msgstr "skriv över filer för att dölja innehåll" #. TRANSLATORS: this is the context menu #: ../bleachbit/Action.py:382 ../bleachbit/GUI.py:632 msgid "Clean" msgstr "Rensa" #: ../bleachbit/Action.py:418 #, python-format msgid "Run external command: %s" msgstr "Kör externt kommando: %s" #: ../bleachbit/GUI.py:135 ../bleachbit/GuiPreferences.py:296 msgid "Name" msgstr "Namn" #: ../bleachbit/GUI.py:143 msgid "Active" msgstr "Aktiv" #. TRANSLATORS: Size is the label for the column that shows how #. much space an option would clean or did clean #: ../bleachbit/GUI.py:155 msgid "Size" msgstr "Storlek" #. TRANSLATORS: %(cleaner) may be Firefox, System, etc. #. %(option) may be cache, logs, cookies, etc. #. %(warning) may be 'This option is really slow' #: ../bleachbit/GUI.py:186 #, python-format msgid "" "Warning regarding %(cleaner)s - %(option)s:\n" "\n" "%(warning)s" msgstr "" "Varning angående %(cleaner)s - %(option)s:\n" "\n" "%(warning)s" #: ../bleachbit/GUI.py:372 msgid "You must select an operation" msgstr "Du måste välja en åtgärd" #: ../bleachbit/GUI.py:391 ../bleachbit/GUI.py:413 msgid "Done." msgstr "Klar." #: ../bleachbit/GUI.py:426 msgid "Program to clean unnecessary files" msgstr "Program för att rensa onödiga filer" #: ../bleachbit/GUI.py:436 msgid "" "GNU General Public License version 3 or later.\n" "See http://www.gnu.org/licenses/gpl-3.0.txt" msgstr "" "GNU General Public Licens version 3 eller senare.\n" "Se http://www.gnu.org/licenses/gpl-3.0.txt" #. TRANSLATORS: Maintain the names of translators here. #. Launchpad does this automatically for translations #. typed in Launchpad. This is a special string shown #. in the 'About' box. #: ../bleachbit/GUI.py:442 msgid "translator-credits" msgstr "" "Launchpad Contributions:\n" " Daniel Nylander https://launchpad.net/~yeager\n" " Göran Malmberg https://launchpad.net/~sweidre\n" " Jens Stääf https://launchpad.net/~jens-staaf\n" " Jonatan Nyberg https://launchpad.net/~jony0008\n" " Josef Andersson https://launchpad.net/~northar\n" " Kristoffer Grundström https://launchpad.net/~umeaboy\n" " Mikael Hiort af Ornäs https://launchpad.net/~lakritslemmel\n" " Peter Almer https://launchpad.net/~remla\n" " Rikard Edgren https://launchpad.net/~rikard-edgren\n" " sweidre https://launchpad.net/~info-idre\n" " Åke Engelbrektson https://launchpad.net/~eson" #: ../bleachbit/GUI.py:454 msgid "System information" msgstr "Systeminformation" #: ../bleachbit/GUI.py:527 msgid "Choose files to shred" msgstr "Välj filer att förstöra" #: ../bleachbit/GUI.py:530 msgid "Choose folder to shred" msgstr "Välj mapp att förstöra" #: ../bleachbit/GUI.py:594 ../bleachbit/GuiPreferences.py:197 #: ../bleachbit/GuiPreferences.py:326 ../bleachbit/GuiPreferences.py:367 msgid "Choose a folder" msgstr "Välj en mapp" #. TRANSLATORS: this is the context menu #: ../bleachbit/GUI.py:627 msgid "Preview" msgstr "Förhandvisning" #: ../bleachbit/GUI.py:734 msgid "_Shred Files" msgstr "_Förstör filer" #: ../bleachbit/GUI.py:736 msgid "Sh_red Folders" msgstr "F_örstör mappar" #: ../bleachbit/GUI.py:738 msgid "_Wipe Free Space" msgstr "_Rensa ledigt utrymme" #: ../bleachbit/GUI.py:740 msgid "S_hred Settings and Quit" msgstr "För_stör inställningar och avsluta" #: ../bleachbit/GUI.py:742 msgid "_Quit" msgstr "Av_sluta" #: ../bleachbit/GUI.py:744 msgid "_File" msgstr "_Fil" #: ../bleachbit/GUI.py:746 ../bleachbit/GuiPreferences.py:58 msgid "Preferences" msgstr "Inställningar" #: ../bleachbit/GUI.py:747 msgid "_Edit" msgstr "R_edigera" #: ../bleachbit/GUI.py:748 msgid "Help Contents" msgstr "Hjälpinnehåll" #: ../bleachbit/GUI.py:751 msgid "_Release Notes" msgstr "_Utgåveanteckningar" #: ../bleachbit/GUI.py:754 msgid "_System Information" msgstr "_Systeminformation" #: ../bleachbit/GUI.py:757 msgid "_About" msgstr "_Om" #: ../bleachbit/GUI.py:758 msgid "_Help" msgstr "_Hjälp" #: ../bleachbit/GUI.py:783 msgctxt "button" msgid "Preview" msgstr "Förhandsvisning" #: ../bleachbit/GUI.py:788 msgid "Preview files in the selected operations (without deleting any files)" msgstr "Förhandsvisa filer i valda funktioner (utan att ta bort några filer)" #: ../bleachbit/GUI.py:798 msgctxt "button" msgid "Clean" msgstr "Rensa" #: ../bleachbit/GUI.py:802 msgid "Clean files in the selected operations" msgstr "Rensa filer i de markerade åtgärderna" #: ../bleachbit/GUI.py:893 msgid "Error when checking for updates: " msgstr "Fel vid uppdateringssökning: " #: ../bleachbit/GUI.py:932 msgid "" "Error loading the SQLite module: the antivirus software may be blocking it." msgstr "" "Fel vid inläsning av SQLite-modulen: antivirusprogrammet kanske blockerar " "den." #: ../bleachbit/GUI.py:935 msgid "" "You are running BleachBit with administrative privileges for cleaning shared " "parts of the system, and references to the user profile folder will clean " "only the root account." msgstr "" "Du kör BleachBit med administrativa rättigheter för att rensa delade delar " "av systemet, referenser till användarens hemmapp kommer endast att städa " "root-kontot." #: ../bleachbit/GUI.py:940 msgid "" "Run BleachBit with administrator privileges to improve the accuracy of " "overwriting the contents of files." msgstr "" "Kör BleachBit med administrativa privilegier för att förbättra " "träffsäkerheten för att skriva över filernas innehåll." #: ../bleachbit/GuiPreferences.py:64 msgid "General" msgstr "Allmänt" #: ../bleachbit/GuiPreferences.py:67 msgid "Drives" msgstr "Diskar" #: ../bleachbit/GuiPreferences.py:70 msgid "Languages" msgstr "Språk" #: ../bleachbit/GuiPreferences.py:72 msgid "Whitelist" msgstr "Vitlista" #: ../bleachbit/GuiPreferences.py:117 msgid "Check periodically for software updates via the Internet" msgstr "Sök periodvis efter programuppdateringar via internet" #: ../bleachbit/GuiPreferences.py:122 msgid "" "If an update is found, you will be given the option to view information " "about it. Then, you may manually download and install the update." msgstr "" "Om en uppdatering hittas får du information om denna. Du kan sedan manuellt " "hämta och installera uppdateringen." #: ../bleachbit/GuiPreferences.py:128 msgid "Check for new beta releases" msgstr "Sök efter nya beta-utgåvor" #: ../bleachbit/GuiPreferences.py:137 msgid "Download and update cleaners from community (winapp2.ini)" msgstr "Hämta och uppdatera städare från gemenskapen (winapp2.ini)" #. TRANSLATORS: This means to hide cleaners which would do #. nothing. For example, if Firefox were never used on #. this system, this option would hide Firefox to simplify #. the list of cleaners. #: ../bleachbit/GuiPreferences.py:151 msgid "Hide irrelevant cleaners" msgstr "Dölj irrelevanta städare" #. TRANSLATORS: Overwriting is the same as shredding. It is a way #. to prevent recovery of the data. You could also translate #. 'Shred files to prevent recovery.' #: ../bleachbit/GuiPreferences.py:159 msgid "Overwrite contents of files to prevent recovery" msgstr "Skriv över filernas innehåll för att förhindra återställning" #: ../bleachbit/GuiPreferences.py:163 msgid "" "Overwriting is ineffective on some file systems and with certain BleachBit " "operations. Overwriting is significantly slower." msgstr "" "Att skriva över filer är ineffektivt på vissa filsystem, samt när det rör " "vissa operationer i BleachBit. Att skriva över filer är också betydligt " "långsammare." #: ../bleachbit/GuiPreferences.py:166 msgid "Start BleachBit with computer" msgstr "Starta BleachBit samtidigt med datorn" #: ../bleachbit/GuiPreferences.py:172 msgid "Exit after cleaning" msgstr "Avsluta efter rensning" #: ../bleachbit/GuiPreferences.py:178 msgid "Confirm before delete" msgstr "Bekräfta innan borttagning" #: ../bleachbit/GuiPreferences.py:186 msgid "Use IEC sizes (1 KiB = 1024 bytes) instead of SI (1 kB = 1000 bytes)" msgstr "" "Använd IEC-storlekar (1 KiB = 1024 bytes) istället för SI (1 kB = 1000 bytes)" #: ../bleachbit/GuiPreferences.py:221 msgid "" "Choose a writable folder for each drive for which to overwrite free space." msgstr "" "Välj en skrivbar mapp för varje disk vars lediga utrymme ska skrivas över." #. TRANSLATORS: In the preferences dialog, this button adds a path to #. the list of paths #: ../bleachbit/GuiPreferences.py:243 msgctxt "button" msgid "Add" msgstr "Lägg till" #. TRANSLATORS: In the preferences dialog, this button removes a path #. from the list of paths #: ../bleachbit/GuiPreferences.py:247 ../bleachbit/GuiPreferences.py:458 msgctxt "button" msgid "Remove" msgstr "Ta bort" #: ../bleachbit/GuiPreferences.py:272 msgid "All languages will be deleted except those checked." msgstr "Alla språk kommer att tas bort utom de som markerats." #: ../bleachbit/GuiPreferences.py:288 msgid "Preserve" msgstr "Bevara" #: ../bleachbit/GuiPreferences.py:292 msgid "Code" msgstr "Kod" #: ../bleachbit/GuiPreferences.py:313 ../bleachbit/GuiPreferences.py:354 msgid "Choose a file" msgstr "Välj en fil" #: ../bleachbit/GuiPreferences.py:320 ../bleachbit/GuiPreferences.py:361 #: ../bleachbit/GuiPreferences.py:405 msgid "File" msgstr "Fil" #: ../bleachbit/GuiPreferences.py:334 ../bleachbit/GuiPreferences.py:375 #: ../bleachbit/GuiPreferences.py:407 msgid "Folder" msgstr "Mapp" #: ../bleachbit/GuiPreferences.py:417 msgid "Theses paths will not be deleted or modified." msgstr "Dessa sökvägar kommer inte att tas bort eller ändras." #: ../bleachbit/GuiPreferences.py:420 msgid "These locations can be selected for deletion." msgstr "De här platserna kan markeras för borttagning." #: ../bleachbit/GuiPreferences.py:428 msgid "Type" msgstr "Typ" #. TRANSLATORS: In the tree view "Path" is used generically to refer to a #. file, a folder, or a pattern describing either #: ../bleachbit/GuiPreferences.py:434 msgid "Path" msgstr "Sökväg" #: ../bleachbit/GuiPreferences.py:446 msgctxt "button" msgid "Add file" msgstr "Lägg till fil" #: ../bleachbit/GuiPreferences.py:452 msgctxt "button" msgid "Add folder" msgstr "Lägg till mapp" bleachbit-2.0/po/da.po0000644000175000017500000012775113245436307012760 0ustar hlehle# Danish translation for bleachbit # Copyright (c) 2009 Rosetta Contributors and Canonical Ltd 2009 # This file is distributed under the same license as the bleachbit package. # FIRST AUTHOR , 2009. # msgid "" msgstr "" "Project-Id-Version: bleachbit\n" "Report-Msgid-Bugs-To: FULL NAME \n" "POT-Creation-Date: 2017-02-11 11:12-0700\n" "PO-Revision-Date: 2018-02-01 20:37+0000\n" "Last-Translator: Daniel Ejsing-Duun \n" "Language-Team: Danish \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n != 1;\n" "X-Launchpad-Export-Date: 2018-02-02 19:48+0000\n" "X-Generator: Launchpad (build 18544)\n" #: ../cleaners/mc.xml ../cleaners/tortoisesvn.xml ../cleaners/vim.xml #: ../cleaners/safari.xml ../cleaners/links2.xml ../cleaners/seamonkey.xml #: ../cleaners/realplayer.xml ../cleaners/windows_defender.xml #: ../cleaners/d4x.xml ../cleaners/sqlite3.xml #: ../cleaners/internet_explorer.xml ../cleaners/libreoffice.xml #: ../cleaners/easytag.xml ../cleaners/bash.xml ../cleaners/nautilus.xml #: ../cleaners/octave.xml ../cleaners/elinks.xml ../cleaners/chromium.xml #: ../cleaners/google_chrome.xml msgid "History" msgstr "Historik" #: ../cleaners/mc.xml ../cleaners/tortoisesvn.xml ../cleaners/links2.xml #: ../cleaners/realplayer.xml ../cleaners/d4x.xml ../cleaners/libreoffice.xml #: ../cleaners/easytag.xml ../cleaners/nautilus.xml ../cleaners/gnome.xml #: ../bleachbit/Cleaner.py:349 ../bleachbit/Cleaner.py:423 #: ../bleachbit/Cleaner.py:432 msgid "Delete the usage history" msgstr "Slet brugshistorikken" #: ../cleaners/gpodder.xml ../cleaners/hippo_opensim_viewer.xml #: ../cleaners/thumbnails.xml ../cleaners/safari.xml ../cleaners/emesene.xml #: ../cleaners/liferea.xml ../cleaners/seamonkey.xml ../cleaners/vuze.xml #: ../cleaners/yahoo_messenger.xml ../cleaners/pidgin.xml #: ../cleaners/adobe_reader.xml ../cleaners/evolution.xml #: ../cleaners/tremulous.xml ../cleaners/libreoffice.xml ../cleaners/xine.xml #: ../cleaners/nexuiz.xml ../cleaners/exaile.xml ../cleaners/opera.xml #: ../cleaners/amsn.xml ../cleaners/gftp.xml ../cleaners/miro.xml #: ../cleaners/beagle.xml ../cleaners/kde.xml ../cleaners/epiphany.xml #: ../cleaners/flash.xml ../cleaners/secondlife_viewer.xml ../cleaners/java.xml #: ../cleaners/chromium.xml ../cleaners/audacious.xml ../cleaners/rhythmbox.xml #: ../cleaners/google_chrome.xml ../cleaners/thunderbird.xml #: ../bleachbit/Cleaner.py:192 ../bleachbit/Cleaner.py:370 #: ../bleachbit/Cleaner.py:455 msgid "Cache" msgstr "Cache" #: ../cleaners/gpodder.xml ../cleaners/yum.xml #: ../cleaners/hippo_opensim_viewer.xml ../cleaners/thumbnails.xml #: ../cleaners/windows_explorer.xml ../cleaners/liferea.xml #: ../cleaners/vuze.xml ../cleaners/yahoo_messenger.xml ../cleaners/pidgin.xml #: ../cleaners/adobe_reader.xml ../cleaners/evolution.xml #: ../cleaners/libreoffice.xml ../cleaners/apt.xml ../cleaners/xine.xml #: ../cleaners/nexuiz.xml ../cleaners/exaile.xml ../cleaners/amsn.xml #: ../cleaners/gftp.xml ../cleaners/miro.xml ../cleaners/beagle.xml #: ../cleaners/kde.xml ../cleaners/flash.xml ../cleaners/secondlife_viewer.xml #: ../cleaners/java.xml ../cleaners/audacious.xml ../cleaners/rhythmbox.xml #: ../bleachbit/Cleaner.py:370 ../bleachbit/Cleaner.py:455 #: ../bleachbit/Cleaner.py:489 ../bleachbit/Cleaner.py:491 msgid "Delete the cache" msgstr "Slet cachen" #. TRANSLATORS: Vacuum is a verb. The term is jargon #. from the SQLite database. Microsoft Access uses #. the term 'Compact Database' (which you may translate #. instead). Another synonym is 'defragment.' #: ../cleaners/gpodder.xml ../cleaners/yum.xml ../cleaners/safari.xml #: ../cleaners/liferea.xml ../cleaners/chromium.xml #: ../cleaners/google_chrome.xml ../cleaners/thunderbird.xml #: ../bleachbit/Cleaner.py:214 ../bleachbit/Cleaner.py:360 #: ../bleachbit/Action.py:445 msgid "Vacuum" msgstr "Vacuum" #: ../cleaners/gpodder.xml ../cleaners/yum.xml ../cleaners/safari.xml #: ../cleaners/liferea.xml ../cleaners/chromium.xml #: ../cleaners/google_chrome.xml ../cleaners/thunderbird.xml #: ../bleachbit/Cleaner.py:215 msgid "" "Clean database fragmentation to reduce space and improve speed without " "removing any data" msgstr "" "Ryd database information for at reducere plads og forbedre hastighed uden at " "fjerne data" #: ../cleaners/yum.xml ../cleaners/apt.xml msgid "Package manager" msgstr "Pakkehåndtering" #: ../cleaners/warzone2100.xml ../cleaners/hippo_opensim_viewer.xml #: ../cleaners/gl-117.xml ../cleaners/tremulous.xml ../cleaners/nexuiz.xml #: ../cleaners/secondlife_viewer.xml msgid "Game" msgstr "Spil" #: ../cleaners/warzone2100.xml ../cleaners/hippo_opensim_viewer.xml #: ../cleaners/teamviewer.xml ../cleaners/realplayer.xml ../cleaners/vuze.xml #: ../cleaners/yahoo_messenger.xml ../cleaners/amule.xml #: ../cleaners/easytag.xml ../cleaners/exaile.xml ../cleaners/screenlets.xml #: ../cleaners/gftp.xml ../cleaners/miro.xml ../cleaners/audacious.xml #: ../bleachbit/Cleaner.py:486 msgid "Logs" msgstr "Logge" #: ../cleaners/warzone2100.xml ../cleaners/hippo_opensim_viewer.xml #: ../cleaners/teamviewer.xml ../cleaners/realplayer.xml ../cleaners/vuze.xml #: ../cleaners/yahoo_messenger.xml ../cleaners/amule.xml ../cleaners/exaile.xml #: ../cleaners/screenlets.xml ../cleaners/gftp.xml ../cleaners/miro.xml #: ../cleaners/audacious.xml ../bleachbit/Cleaner.py:486 msgid "Delete the logs" msgstr "Slet alle logge" #: ../cleaners/thumbnails.xml ../cleaners/windows_explorer.xml msgid "Thumbnails" msgstr "Miniaturer" #: ../cleaners/thumbnails.xml msgid "Icons for files on the system" msgstr "Ikoner til filer på systemet" #: ../cleaners/vim.xml ../cleaners/gedit.xml msgid "Editor" msgstr "Redigering" #: ../cleaners/vim.xml msgid "" "Delete ~/.viminfo which includes file history, command history, and buffers" msgstr "" "Slet ~/.viminfo som inkluderer filhistorik, kommandohistorik, og buffere" #: ../cleaners/filezilla.xml ../cleaners/transmission.xml ../cleaners/vuze.xml #: ../cleaners/amule.xml ../cleaners/gftp.xml msgid "File transfer client" msgstr "Filoverførselsklient" #: ../cleaners/filezilla.xml ../cleaners/paint.xml #: ../cleaners/windows_media_player.xml ../cleaners/windows_explorer.xml #: ../cleaners/teamviewer.xml ../cleaners/microsoft_office.xml #: ../cleaners/vlc.xml ../cleaners/adobe_reader.xml ../cleaners/winamp.xml #: ../cleaners/winzip.xml ../cleaners/winrar.xml ../cleaners/audacious.xml #: ../cleaners/wordpad.xml ../bleachbit/Cleaner.py:371 msgid "Most recently used" msgstr "Sidst anvendt" #: ../cleaners/filezilla.xml ../cleaners/windows_explorer.xml #: ../cleaners/gwenview.xml ../cleaners/adobe_reader.xml ../cleaners/gedit.xml #: ../cleaners/kde.xml ../cleaners/audacious.xml ../bleachbit/Cleaner.py:372 #: ../bleachbit/Cleaner.py:469 msgid "Delete the list of recently used documents" msgstr "Slet listen over de senest brugte dokumenter" #: ../cleaners/skype.xml ../cleaners/emesene.xml #: ../cleaners/yahoo_messenger.xml ../cleaners/pidgin.xml ../cleaners/amsn.xml msgid "Chat client" msgstr "Chatklient" #: ../cleaners/skype.xml ../cleaners/hexchat.xml ../cleaners/emesene.xml #: ../cleaners/seamonkey.xml ../cleaners/yahoo_messenger.xml #: ../cleaners/pidgin.xml ../cleaners/amsn.xml msgid "Chat logs" msgstr "Chatlogge" #: ../cleaners/skype.xml ../cleaners/hexchat.xml ../cleaners/emesene.xml #: ../cleaners/seamonkey.xml ../cleaners/yahoo_messenger.xml #: ../cleaners/pidgin.xml ../cleaners/amsn.xml msgid "Delete the chat logs" msgstr "Slet chatlogge" #: ../cleaners/skype.xml msgid "Installers" msgstr "Installationsfiler" #: ../cleaners/skype.xml msgid "Delete cached patches and installers" msgstr "Slet gemte patches og installationsfiler" #: ../cleaners/hexchat.xml msgid "IRC client formerly known as XChat" msgstr "IRC-klient tidligere kendt som XChat" #: ../cleaners/safari.xml ../cleaners/links2.xml ../cleaners/seamonkey.xml #: ../cleaners/konqueror.xml ../cleaners/internet_explorer.xml #: ../cleaners/opera.xml ../cleaners/epiphany.xml ../cleaners/elinks.xml #: ../cleaners/chromium.xml ../cleaners/google_chrome.xml #: ../bleachbit/Cleaner.py:226 msgid "Web browser" msgstr "Web browser" #: ../cleaners/safari.xml ../cleaners/seamonkey.xml ../cleaners/opera.xml #: ../cleaners/epiphany.xml ../cleaners/chromium.xml #: ../cleaners/google_chrome.xml ../cleaners/thunderbird.xml #: ../bleachbit/Cleaner.py:193 msgid "Delete the web cache, which reduces time to display revisited pages" msgstr "Slet web cache, som reducerer tid til at vise genbesøgte sider" #: ../cleaners/safari.xml ../cleaners/liferea.xml ../cleaners/seamonkey.xml #: ../cleaners/realplayer.xml ../cleaners/konqueror.xml #: ../cleaners/internet_explorer.xml ../cleaners/opera.xml #: ../cleaners/epiphany.xml ../cleaners/flash.xml ../cleaners/silverlight.xml #: ../cleaners/chromium.xml ../cleaners/google_chrome.xml #: ../cleaners/thunderbird.xml ../bleachbit/Cleaner.py:194 msgid "Cookies" msgstr "Cookies" #: ../cleaners/safari.xml ../cleaners/liferea.xml ../cleaners/seamonkey.xml #: ../cleaners/realplayer.xml ../cleaners/konqueror.xml #: ../cleaners/internet_explorer.xml ../cleaners/opera.xml #: ../cleaners/epiphany.xml ../cleaners/flash.xml ../cleaners/silverlight.xml #: ../cleaners/chromium.xml ../cleaners/google_chrome.xml #: ../cleaners/thunderbird.xml ../bleachbit/Cleaner.py:195 msgid "" "Delete cookies, which contain information such as web site preferences, " "authentication, and tracking identification" msgstr "" "Slet cookies som indeholder information om foretrukne internetsider, " "godkendelse og sporingsidentifikation" #: ../cleaners/safari.xml ../cleaners/konqueror.xml #: ../cleaners/internet_explorer.xml ../cleaners/opera.xml #: ../bleachbit/Cleaner.py:213 msgid "List of visited web pages" msgstr "Liste over besøgte websider" #. Torrent software can block a list of IP addresses, such as those that may belong to malware or anti-piracy organizations #: ../cleaners/transmission.xml msgid "Blocklists" msgstr "Blokeringslister" #: ../cleaners/transmission.xml ../cleaners/windows_defender.xml #: ../cleaners/beagle.xml ../cleaners/thunderbird.xml ../cleaners/deepscan.xml #: ../bleachbit/Cleaner.py:197 msgid "Delete the files" msgstr "Slet disse filer" #: ../cleaners/transmission.xml msgid "Blocklists will need update to work." msgstr "Blokeringslisterne vil skulle opdateres for at virke" #: ../cleaners/transmission.xml msgid "Torrents" msgstr "Torrents" #: ../cleaners/transmission.xml msgid "Delete the torrents (just the metadata but not the files described)" msgstr "" #: ../cleaners/transmission.xml msgid "Statistics" msgstr "Statistik" #: ../cleaners/transmission.xml msgid "Delete the file" msgstr "Slet filen" #: ../cleaners/paint.xml ../cleaners/windows_media_player.xml #: ../cleaners/windows_explorer.xml ../cleaners/teamviewer.xml #: ../cleaners/microsoft_office.xml ../cleaners/vlc.xml ../cleaners/winamp.xml #: ../cleaners/winzip.xml ../cleaners/winrar.xml ../cleaners/wordpad.xml msgid "Delete the most recently used list" msgstr "Slet listen over de senest brugte emner" #: ../cleaners/emesene.xml msgid "Delete the avatars and emoticons cache" msgstr "Slet profilbilleder og smileyer" #: ../cleaners/windows_media_player.xml ../cleaners/realplayer.xml #: ../cleaners/vlc.xml ../cleaners/winamp.xml msgid "Media player" msgstr "Medieafspiller" #: ../cleaners/windows_explorer.xml ../cleaners/nautilus.xml msgid "File manager" msgstr "Filhåndtering" #: ../cleaners/windows_explorer.xml ../cleaners/gwenview.xml #: ../cleaners/gedit.xml ../cleaners/kde.xml ../bleachbit/Cleaner.py:468 #: ../bleachbit/Cleaner.py:663 msgid "Recent documents list" msgstr "Listen over seneste dokumenter" #: ../cleaners/windows_explorer.xml msgid "" "This option will reset pinned locations in Quick Access to their defaults." msgstr "" #. In Windows 'Run' is the dialog in the Start menu #. In GNOME 'Run' is the dialog shown when typing ALT+F2' #: ../cleaners/windows_explorer.xml ../cleaners/gnome.xml msgid "Run" msgstr "Kør" #: ../cleaners/windows_explorer.xml ../cleaners/opera.xml ../cleaners/gnome.xml #: ../cleaners/google_toolbar.xml msgid "Search history" msgstr "Søg i historik" #: ../cleaners/windows_explorer.xml ../cleaners/opera.xml ../cleaners/gnome.xml #: ../cleaners/google_toolbar.xml msgid "Delete the search history" msgstr "Slet søgehistorik" #: ../cleaners/windows_explorer.xml msgid "This will restart Windows Explorer." msgstr "" #: ../cleaners/gl-117.xml ../cleaners/microsoft_office.xml #: ../cleaners/beagle.xml ../cleaners/secondlife_viewer.xml ../cleaners/x11.xml msgid "Debug logs" msgstr "Fejlsøgningslogge" #: ../cleaners/gl-117.xml ../cleaners/microsoft_office.xml #: ../cleaners/easytag.xml ../cleaners/beagle.xml #: ../cleaners/secondlife_viewer.xml ../cleaners/x11.xml msgid "Delete the debug logs" msgstr "Slet alle fejlsøgningslogge" #: ../cleaners/google_earth.xml ../cleaners/winetricks.xml ../cleaners/vuze.xml #: ../cleaners/adobe_reader.xml ../cleaners/amule.xml ../cleaners/wine.xml #: ../cleaners/internet_explorer.xml ../cleaners/gimp.xml ../cleaners/kde.xml #: ../cleaners/deepscan.xml ../bleachbit/Cleaner.py:520 msgid "Temporary files" msgstr "Midlertidige filer" #: ../cleaners/google_earth.xml ../cleaners/winetricks.xml ../cleaners/vuze.xml #: ../cleaners/adobe_reader.xml ../cleaners/amule.xml ../cleaners/wine.xml #: ../cleaners/internet_explorer.xml ../cleaners/gimp.xml ../cleaners/kde.xml #: ../cleaners/deepscan.xml ../bleachbit/Cleaner.py:520 msgid "Delete the temporary files" msgstr "Slet midlertidige filer" #: ../cleaners/seamonkey.xml ../cleaners/opera.xml ../bleachbit/Cleaner.py:201 msgid "Download history" msgstr "Filhentnings-historik" #: ../cleaners/seamonkey.xml ../cleaners/opera.xml ../bleachbit/Cleaner.py:201 msgid "List of files downloaded" msgstr "Liste af hentede filer" #: ../cleaners/seamonkey.xml msgid "Delete the list of visited web pages" msgstr "Slet listen over besøgte websider" #: ../cleaners/vuze.xml ../cleaners/deepscan.xml ../bleachbit/Cleaner.py:190 msgid "Backup files" msgstr "Sikkerhedskopier" #: ../cleaners/vuze.xml ../cleaners/deepscan.xml ../bleachbit/Cleaner.py:191 msgid "Delete the backup files" msgstr "Slet sikkerhedskopier af filer" #: ../cleaners/konqueror.xml ../cleaners/opera.xml ../cleaners/chromium.xml msgid "Current session" msgstr "Nuværende session" #: ../cleaners/konqueror.xml ../cleaners/opera.xml ../cleaners/chromium.xml msgid "Delete the current session" msgstr "Slet den nuværende session" #: ../cleaners/konqueror.xml ../cleaners/opera.xml ../bleachbit/Cleaner.py:213 msgid "URL history" msgstr "Adressehistorik" #: ../cleaners/microsoft_office.xml ../cleaners/libreoffice.xml #: ../bleachbit/Cleaner.py:375 msgid "Office suite" msgstr "Kontorpakke" #: ../cleaners/windows_defender.xml msgid "Anti-virus" msgstr "" #: ../cleaners/journald.xml msgid "System journals" msgstr "" #: ../cleaners/journald.xml msgid "Clean old system journals" msgstr "" #: ../cleaners/adobe_reader.xml msgid "Document viewer" msgstr "" #: ../cleaners/evolution.xml ../cleaners/thunderbird.xml msgid "Email client" msgstr "" #: ../cleaners/tremulous.xml msgid "Delete the list of game servers" msgstr "Slet listen over spil servere" #: ../cleaners/sqlite3.xml ../cleaners/bash.xml ../cleaners/octave.xml msgid "Delete the command history" msgstr "Slet kommandohistorik" #: ../cleaners/wine.xml msgid "Compatibility layer for Windows software" msgstr "" #: ../cleaners/internet_explorer.xml ../cleaners/chromium.xml #: ../cleaners/google_chrome.xml ../bleachbit/Cleaner.py:202 msgid "Form history" msgstr "Formularhistorik" #: ../cleaners/internet_explorer.xml ../bleachbit/Cleaner.py:203 msgid "A history of forms entered in web sites and in the Search bar" msgstr "En historik over formularer indtastet på websider og i søgebjælken." #. This software edits metadata tags, such as title and artist, in audio files #: ../cleaners/easytag.xml msgid "Audio files tagger" msgstr "" #: ../cleaners/apt.xml msgid "Delete obsolete files" msgstr "Slet forældede filer" #: ../cleaners/apt.xml msgid "Package lists" msgstr "" #: ../cleaners/xine.xml ../cleaners/miro.xml ../cleaners/flash.xml msgid "Multimedia viewer" msgstr "Multimediefremviser" #: ../cleaners/recoll.xml ../cleaners/beagle.xml msgid "Search tool" msgstr "Søgeværktøj" #: ../cleaners/recoll.xml ../cleaners/beagle.xml ../cleaners/thunderbird.xml msgid "Index" msgstr "Indeks" #: ../cleaners/recoll.xml msgid "" "Delete the search index, a database of words and the files they contain" msgstr "Slet søgeindekset, en database af ord og de filer de indeholder" #: ../cleaners/gimp.xml msgid "Graphics editor" msgstr "" #: ../cleaners/exaile.xml msgid "Downloaded podcasts" msgstr "Hentede podcasts" #: ../cleaners/exaile.xml msgid "Delete downloaded podcasts" msgstr "Slet hentede podcasts" #: ../cleaners/bash.xml msgid "Shell" msgstr "" #. TRANSLATORS: DOM = Document Object Model. #: ../cleaners/opera.xml ../cleaners/epiphany.xml ../cleaners/chromium.xml #: ../cleaners/google_chrome.xml ../bleachbit/Cleaner.py:199 msgid "DOM Storage" msgstr "DOM-lager" #: ../cleaners/opera.xml ../cleaners/epiphany.xml ../cleaners/chromium.xml #: ../cleaners/google_chrome.xml ../bleachbit/Cleaner.py:199 msgid "Delete HTML5 cookies" msgstr "Slet HTML5-cookies" #: ../cleaners/opera.xml ../cleaners/epiphany.xml ../cleaners/chromium.xml #: ../cleaners/google_chrome.xml ../cleaners/thunderbird.xml #: ../bleachbit/Cleaner.py:208 msgid "Passwords" msgstr "Adgangskoder" #: ../cleaners/opera.xml ../cleaners/epiphany.xml ../cleaners/chromium.xml #: ../cleaners/google_chrome.xml ../cleaners/thunderbird.xml #: ../bleachbit/Cleaner.py:209 msgid "" "A database of usernames and passwords as well as a list of sites that should " "not store passwords" msgstr "" "En database af brugernavne og adgangskoder såvel som en liste over sider som " "ikke skal gemme adgangskoder" #: ../cleaners/opera.xml ../cleaners/epiphany.xml ../cleaners/chromium.xml #: ../cleaners/google_chrome.xml ../cleaners/thunderbird.xml #: ../bleachbit/Cleaner.py:211 msgid "This option will delete your saved passwords." msgstr "" #: ../cleaners/nautilus.xml msgid "Custom folders will be reset." msgstr "Brugerdefinerede mapper vil blive nulstillet." #: ../cleaners/gnome.xml ../cleaners/kde.xml msgid "Desktop environment" msgstr "" #: ../cleaners/screenlets.xml msgid "Widgets for the desktop" msgstr "Kontroller til skrivebordet" #: ../cleaners/epiphany.xml msgid "Places" msgstr "Steder" #: ../cleaners/epiphany.xml msgid "" "A database of URLs including bookmarks, favicons, and a history of visited " "web sites" msgstr "" "En database over adresser inklusive bogmærker, favoritikoner og en historik " "over besøgte websider" #: ../cleaners/epiphany.xml msgid "This option deletes all bookmarks." msgstr "Dette valg sletter alle bogmærker." #: ../cleaners/winrar.xml msgid "File archiver" msgstr "" #: ../cleaners/elinks.xml msgid "Delete the cookies, visited URLs, and search history" msgstr "Slet cookies, besøgte adresser og søgehistorik" #: ../cleaners/chromium.xml ../cleaners/google_chrome.xml msgid "A history of forms entered in web sites" msgstr "En historik af skemaer, som er udfyldt på websider" #: ../cleaners/chromium.xml ../cleaners/google_chrome.xml msgid "" "Delete the history which includes visited sites, downloads, and thumbnails" msgstr "" "Slet historik som inkluderer besøgte sider, hentede filer og " "miniaturebilleder" #: ../cleaners/chromium.xml ../cleaners/google_chrome.xml msgid "Search engines" msgstr "Søgemaskiner" #. 'Factory' means a search engine that is installed by default 'from the factory,' but this is different than a 'default search engine' https://lists.launchpad.net/launchpad-translators/msg00283.html #: ../cleaners/chromium.xml ../cleaners/google_chrome.xml msgid "" "Reset the search engine usage history and delete non-factory search engines, " "some of which are added automatically" msgstr "" "Nulstil brugshistorikken for søgemaskiner og slet søgemaskiner, der ikke er " "installeret fra starten (hvoraf visse blev tilføjet automatisk)" #: ../cleaners/audacious.xml msgid "Audio player" msgstr "" #: ../cleaners/rhythmbox.xml msgid "Database" msgstr "" #: ../cleaners/rhythmbox.xml msgid "" "Delete the database, which contain information such as play count and last " "played" msgstr "" #: ../cleaners/google_chrome.xml msgid "Session" msgstr "Session" #: ../cleaners/google_chrome.xml msgid "Delete the current and last sessions" msgstr "Slet denne og forrige session" #: ../cleaners/x11.xml msgid "Windowing system" msgstr "" #: ../cleaners/wordpad.xml msgid "Word processor" msgstr "" #: ../cleaners/deepscan.xml msgid "Deep scan" msgstr "Dyb skanning" #: ../cleaners/deepscan.xml msgid "Clean files widely scattered across the disk" msgstr "" #: ../cleaners/deepscan.xml msgid "Inspect the preview for any files you want to keep." msgstr "Tjek forhåndsvisningen for filer du ønsker at beholde." #: ../cleaners/deepscan.xml msgid "This option is slow." msgstr "Dette valg er langsomt." #: ../bleachbit.desktop msgid "Unnecessary file cleaner" msgstr "Unødvendig fil-oprydder" #: ../bleachbit.desktop msgid "Free space and maintain privacy" msgstr "Frigør plads og beskyt privatlivet" #: ../bleachbit/FileUtilities.py:668 msgid "" "There was at least one file on a file system that does not support advanced " "overwriting." msgstr "" #: ../bleachbit/Unix.py:574 #, python-format msgid "Executable not found: %s" msgstr "Eksekvérbar fil ikke fundet: %s" #. TRANSLATORS: %s expands to a name such as 'Firefox' or 'System'. #: ../bleachbit/Unix.py:623 ../bleachbit/Worker.py:136 #, python-format msgid "" "%s cannot be cleaned because it is currently running. Close it, and try " "again." msgstr "" "%s kan ikke renses fordi det i øjeblikket kører. Luk det og prøv igen." #: ../bleachbit/GuiBasic.py:112 msgid "Delete confirmation" msgstr "Bekræftelse af sletning" #: ../bleachbit/GuiBasic.py:122 msgid "" "Are you sure you want to permanently delete files according to the selected " "operations? The actual files that will be deleted may have changed since " "you ran the preview." msgstr "" "Er du sikker på, at du vil slette filer permanent som følge af de valgte " "operationer? De faktiske filer, som vil blive slettet, kan være ændret siden " "du kørte forhåndsvisningen." #: ../bleachbit/GuiBasic.py:125 msgid "Are you sure you want to permanently delete these files?" msgstr "Er du sikker på at du vil slette disse filer permanent?" #: ../bleachbit/GuiBasic.py:162 #, python-format msgid "" "Because you are running as root, please manually open this link in a web " "browser:\n" "%s" msgstr "" "Åbn venligst dette link i en webbrowser manuelt, da du kører som root i " "øjeblikket:\n" "%s" #. TRANSLATORS: %s expands to www.bleachbit.org or similar #: ../bleachbit/GuiBasic.py:174 #, python-format msgid "Open web browser to %s?" msgstr "Åbn webbrowser til %s?" #. TRANSLATORS: This is the label in the log indicating was #. skipped because it matches the whitelist #: ../bleachbit/Command.py:47 msgid "Skip" msgstr "Spring over" #. TRANSLATORS: This is the label in the log indicating will be #. deleted (for previews) or was actually deleted #: ../bleachbit/Command.py:77 msgid "Delete" msgstr "Slet" #: ../bleachbit/Command.py:99 msgid "" "At least one file was locked by another process, so its contents could not " "be overwritten. It will be marked for deletion upon system reboot." msgstr "" #. TRANSLATORS: The file will be deleted when the #. system reboots #: ../bleachbit/Command.py:102 msgid "Mark for deletion" msgstr "Markér til sletning" #. TRANSLATORS: Parts of this file will be deleted #: ../bleachbit/Command.py:199 ../bleachbit/Command.py:233 #: ../bleachbit/Action.py:254 ../bleachbit/Action.py:267 #: ../bleachbit/Action.py:280 ../bleachbit/Action.py:293 #: ../bleachbit/Action.py:306 msgid "Clean file" msgstr "Rens fil" #. TRANSLATORS: The file will be truncated to 0 bytes in length #: ../bleachbit/Command.py:275 msgid "Truncate" msgstr "Afkort" #: ../bleachbit/Command.py:317 msgid "Delete registry key" msgstr "Slet registernøgle" #. TRANSLATORS: This is cleaner name for cleaners imported from winapp2.ini #: ../bleachbit/Winapp.py:44 msgid "Applications" msgstr "Programmer" #. TRANSLATORS: This is cleaner name for cleaners imported #. from winapp2.ini #: ../bleachbit/Winapp.py:47 msgid "Internet" msgstr "Internet" #. TRANSLATORS: This is cleaner name for cleaners imported #. from winapp2.ini #: ../bleachbit/Winapp.py:50 msgid "Multimedia" msgstr "Multimedie" #. TRANSLATORS: This is cleaner name for cleaners imported #. from winapp2.ini #: ../bleachbit/Winapp.py:53 msgid "Utilities" msgstr "Værktøjer" #: ../bleachbit/Winapp.py:64 msgid "Games" msgstr "" #: ../bleachbit/Winapp.py:162 msgid "Imported from winapp2.ini" msgstr "Importeret fra winapp2.ini" #: ../bleachbit/Cleaner.py:197 msgid "Crash reports" msgstr "" #: ../bleachbit/Cleaner.py:204 msgid "Session restore" msgstr "Genskab session" #: ../bleachbit/Cleaner.py:205 msgid "Loads the initial session after the browser closes or crashes" msgstr "Indlæser den indledende session efter browseren lukker eller går ned" #: ../bleachbit/Cleaner.py:207 msgid "Site preferences" msgstr "Indstillinger for steder" #: ../bleachbit/Cleaner.py:207 msgid "Settings for individual sites" msgstr "Indstillinger for individuelle steder" #. TRANSLATORS: desktop entries are .desktop files in Linux that #. make up the application menu (the menu that shows BleachBit, #. Firefox, and others. The .desktop files also associate file #. types, so clicking on an .html file in Nautilus brings up #. Firefox. #. More information: #. http://standards.freedesktop.org/menu-spec/latest/index.html#introduction #: ../bleachbit/Cleaner.py:453 msgid "Broken desktop files" msgstr "Ødelagte skrivebordsfiler" #: ../bleachbit/Cleaner.py:454 msgid "Delete broken application menu entries and file associations" msgstr "Slet ødelagte menupunkter og filtilknytninger" #. TRANSLATORS: Localizations are files supporting specific #. languages, so applications appear in Spanish, etc. #: ../bleachbit/Cleaner.py:458 msgid "Localizations" msgstr "Oversættelser" #: ../bleachbit/Cleaner.py:459 msgid "Delete files for unwanted languages" msgstr "Slet filer med uønskede sprog" #: ../bleachbit/Cleaner.py:461 msgid "Configure this option in the preferences." msgstr "Konfigurér dette i indstillingerne." #: ../bleachbit/Cleaner.py:467 msgid "Rotated logs" msgstr "Gamle logfiler" #: ../bleachbit/Cleaner.py:467 msgid "Delete old system logs" msgstr "Slet gamle systemlogfiler" #: ../bleachbit/Cleaner.py:470 msgid "Trash" msgstr "Affald" #: ../bleachbit/Cleaner.py:470 msgid "Empty the trash" msgstr "Tøm papirkurven" #: ../bleachbit/Cleaner.py:476 ../bleachbit/Cleaner.py:627 #: ../bleachbit/Worker.py:184 msgid "Memory" msgstr "Hukommelse" #. TRANSLATORS: 'free' means 'unallocated' #: ../bleachbit/Cleaner.py:478 msgid "Wipe the swap and free memory" msgstr "Ryd swap og fri hukommelse" #: ../bleachbit/Cleaner.py:480 msgid "This option is experimental and may cause system problems." msgstr "Dette valg er eksperimentelt, og kan føre til systemproblemer." #: ../bleachbit/Cleaner.py:488 msgid "Memory dump" msgstr "Hukommelses-dump" #: ../bleachbit/Cleaner.py:488 msgid "Delete the file memory.dmp" msgstr "Slet filen memory.dmp" #. TRANSLATORS: Prefetch is Microsoft Windows jargon. #: ../bleachbit/Cleaner.py:491 msgid "Prefetch" msgstr "Forhåndshentning" #: ../bleachbit/Cleaner.py:493 msgid "Recycle bin" msgstr "Papirkurv" #: ../bleachbit/Cleaner.py:493 ../bleachbit/Cleaner.py:787 msgid "Empty the recycle bin" msgstr "Tøm papirkurven" #. TRANSLATORS: 'Update' is a noun, and 'Update uninstallers' is an option to delete #. the uninstallers for software updates. #: ../bleachbit/Cleaner.py:496 msgid "Update uninstallers" msgstr "Afinstallationsprogrammer til opdateringer" #: ../bleachbit/Cleaner.py:497 msgid "" "Delete uninstallers for Microsoft updates including hotfixes, service packs, " "and Internet Explorer updates" msgstr "" "Fjern afinstallationsprogrammer til Microsoft-opdateringer, inklusive " "\"hotfixes\", servicepakker og opdateringer til Internet Explorer" #: ../bleachbit/Cleaner.py:504 ../bleachbit/Cleaner.py:727 msgid "Clipboard" msgstr "Udklipsholder" #: ../bleachbit/Cleaner.py:505 msgid "" "The desktop environment's clipboard used for copy and paste operations" msgstr "" "Skrivebordsmiljøets udklipsholder, der bruges til kopiér- og sæt ind-" "handlinger" #. TRANSLATORS: "Custom" is an option allowing the user to specify which #. files and folders will be erased. #: ../bleachbit/Cleaner.py:512 ../bleachbit/GuiPreferences.py:66 msgid "Custom" msgstr "Brugertilpasset" #: ../bleachbit/Cleaner.py:513 msgid "Delete user-specified files and folders" msgstr "" #. TRANSLATORS: 'free' means 'unallocated' #: ../bleachbit/Cleaner.py:515 msgid "Free disk space" msgstr "Ledig diskplads" #. TRANSLATORS: 'free' means 'unallocated' #: ../bleachbit/Cleaner.py:517 msgid "Overwrite free disk space to hide deleted files" msgstr "Overskriv ledig diskplads for at skjule slettede filer" #: ../bleachbit/Cleaner.py:518 msgid "This option is very slow." msgstr "Denne valgmulighed er meget langsom." #: ../bleachbit/Cleaner.py:522 msgid "The system in general" msgstr "Systemet generelt" #: ../bleachbit/Cleaner.py:524 ../bleachbit/Cleaner.py:857 msgid "System" msgstr "System" #. TRANSLATORS: 'Free' means 'unallocated.' #. %s expands to a path such as C:\ or /tmp/ #: ../bleachbit/Cleaner.py:735 ../bleachbit/Cleaner.py:890 #, python-format msgid "Overwrite free disk space %s" msgstr "Overskriv ledig diskplads i %s" #: ../bleachbit/RecognizeCleanerML.py:59 msgid "Security warning" msgstr "Sikkerhedsadvarsel" #: ../bleachbit/RecognizeCleanerML.py:72 msgid "" "These cleaner definitions are new or have changed. Malicious definitions can " "damage your system. If you do not trust these changes, delete the files or " "quit." msgstr "" "Disse rensningsdefinitioner er nye eller er blevet ændret. Ondsindede " "definitioner kan skade dit system. Hvis du ikke har tillid til disse " "ændringer, så slet filen eller afslut." #: ../bleachbit/RecognizeCleanerML.py:88 msgctxt "column_label" msgid "Delete" msgstr "Slet" #: ../bleachbit/RecognizeCleanerML.py:93 msgctxt "column_label" msgid "Filename" msgstr "Filnavn" #. TRANSLATORS: This indicates an error. The special keyword #. %(operation)s will be replaced by 'firefox' or 'opera' or #. some other cleaner ID. The special keyword %(msg)s will be #. replaced by a message such as 'Permission denied.' #: ../bleachbit/Worker.py:74 #, python-format msgid "Exception while running operation '%(operation)s': '%(msg)s'" msgstr "Undtagelser under kørsel af operationen '%(operation)s': '%(msg)s'" #. TRANSLATORS: 'free' means 'unallocated' #: ../bleachbit/Worker.py:182 msgid "Please wait. Wiping free disk space." msgstr "Vent venligst. Rydder fri diskplads." #. TRANSLATORS: %s is replaced with Firefox, System, etc. #: ../bleachbit/Worker.py:184 ../bleachbit/Worker.py:332 #, python-format msgid "Please wait. Cleaning %s." msgstr "Vent venligst. Renser %s." #: ../bleachbit/Worker.py:199 msgid "Please wait. Wiping file system metadata." msgstr "" #: ../bleachbit/Worker.py:202 msgid "Please wait. Cleaning up after wiping file system metadata." msgstr "" #: ../bleachbit/Worker.py:205 #, python-format msgid "About %d minute remaining." msgid_plural "About %d minutes remaining." msgstr[0] "Omtrent %d minut tilbage." msgstr[1] "Omtrent %d minutter tilbage." #. TRANSLATORS: This refers to disk space that was #. really recovered (in other words, not a preview) #: ../bleachbit/Worker.py:272 #, python-format msgid "Disk space recovered: %s" msgstr "Frigjort diskplads: %s" #. TRANSLATORS: This refers to a preview (no real #. changes were made yet) #: ../bleachbit/Worker.py:276 #, python-format msgid "Disk space to be recovered: %s" msgstr "Diskplads som skal frigøres: %s" #. TRANSLATORS: This refers to the number of files really #. deleted (in other words, not a preview). #: ../bleachbit/Worker.py:281 #, python-format msgid "Files deleted: %d" msgstr "Filer slettet: %d" #. TRANSLATORS: This refers to the number of files that #. would be deleted (in other words, simply a preview). #: ../bleachbit/Worker.py:285 #, python-format msgid "Files to be deleted: %d" msgstr "Filer der skal slettes: %d" #: ../bleachbit/Worker.py:288 #, python-format msgid "Special operations: %d" msgstr "Specialoperationer: %d" #: ../bleachbit/Worker.py:291 #, python-format msgid "Errors: %d" msgstr "Fejl: %d" #. TRANSLATORS: The "deep scan" feature searches over broad #. areas of the file system such as the user's whole home directory #. or all the system executables. #: ../bleachbit/Worker.py:306 msgid "Please wait. Running deep scan." msgstr "Vent venligst. Skanner filsystemet." #. TRANSLATORS: %s is replaced with Firefox, System, etc. #: ../bleachbit/Worker.py:335 #, python-format msgid "Please wait. Previewing %s." msgstr "Vent venligst. Forhåndsviser %s." #: ../bleachbit/Update.py:80 msgid "New winapp2.ini was downloaded." msgstr "Ny winapp2.ini blev hentet." #: ../bleachbit/Update.py:125 msgid "Update BleachBit" msgstr "Opdater BleachBit" #: ../bleachbit/Update.py:130 msgid "A new version is available." msgstr "Der er en ny version tilgængelig." #. TRANSLATORS: %s expands to version such as '0.8.4' or '0.8.5beta' or #. similar #: ../bleachbit/Update.py:139 #, python-format msgid "Update to version %s" msgstr "Opdatér til version %s" #: ../bleachbit/Update.py:164 #, python-format msgid "" "Error when opening a network connection to %s to check for updates. Please " "verify the network is working." msgstr "" #: ../bleachbit/CLI.py:106 #, python-format msgid "not a valid cleaner: %s" msgstr "ugyldig renser: %s" #. TRANSLATORS: This is the command line usage. Don't translate #. %prog, but do translate usage, options, cleaner, and option. #. More information about the command line is here #. https://www.bleachbit.org/documentation/command-line #: ../bleachbit/CLI.py:133 msgid "usage: %prog [options] cleaner.option1 cleaner.option2" msgstr "brug: %prog [tilvalg] renser.tilvalg1 renser.tilvalg2" #: ../bleachbit/CLI.py:136 msgid "list cleaners" msgstr "vis rensere" #. TRANSLATORS: predefined cleaners are for applications, such as Firefox and Flash. #. This is different than cleaning an arbitrary file, such as a #. spreadsheet on the desktop. #: ../bleachbit/CLI.py:141 msgid "run cleaners to delete files and make other permanent changes" msgstr "" #: ../bleachbit/CLI.py:144 msgid "shred specific files or folders" msgstr "" #: ../bleachbit/CLI.py:146 msgid "show system information" msgstr "vis systeminformation" #: ../bleachbit/CLI.py:148 msgid "launch the graphical interface" msgstr "" #: ../bleachbit/CLI.py:152 msgid "do not prompt for administrator privileges" msgstr "" #: ../bleachbit/CLI.py:157 msgid "preview files to be deleted and other changes" msgstr "vis filer som vil blive slettet samt andre ændringer" #: ../bleachbit/CLI.py:161 msgid "use options set in the graphical interface" msgstr "brug indstillinger fra den grafiske brugerflade" #: ../bleachbit/CLI.py:164 msgid "update winapp2.ini, if a new version is available" msgstr "" #: ../bleachbit/CLI.py:166 msgid "output version information and exit" msgstr "vis versionsinformation og afslut" #: ../bleachbit/CLI.py:168 msgid "overwrite files to hide contents" msgstr "overskriv filer for at skjule indhold" #. TRANSLATORS: this is the context menu #: ../bleachbit/Action.py:382 ../bleachbit/GUI.py:632 msgid "Clean" msgstr "Ryd op" #: ../bleachbit/Action.py:418 #, python-format msgid "Run external command: %s" msgstr "" #: ../bleachbit/GUI.py:135 ../bleachbit/GuiPreferences.py:296 msgid "Name" msgstr "Navn" #: ../bleachbit/GUI.py:143 msgid "Active" msgstr "Aktiv" #. TRANSLATORS: Size is the label for the column that shows how #. much space an option would clean or did clean #: ../bleachbit/GUI.py:155 msgid "Size" msgstr "" #. TRANSLATORS: %(cleaner) may be Firefox, System, etc. #. %(option) may be cache, logs, cookies, etc. #. %(warning) may be 'This option is really slow' #: ../bleachbit/GUI.py:186 #, python-format msgid "" "Warning regarding %(cleaner)s - %(option)s:\n" "\n" "%(warning)s" msgstr "" "Advarsel angående %(cleaner)s - %(option)s:\n" "\n" "%(warning)s" #: ../bleachbit/GUI.py:372 msgid "You must select an operation" msgstr "Du skal vælge en operation" #: ../bleachbit/GUI.py:391 ../bleachbit/GUI.py:413 msgid "Done." msgstr "Færdig." #: ../bleachbit/GUI.py:426 msgid "Program to clean unnecessary files" msgstr "Program til at rydde op i unødvendige filer" #: ../bleachbit/GUI.py:436 msgid "" "GNU General Public License version 3 or later.\n" "See http://www.gnu.org/licenses/gpl-3.0.txt" msgstr "" "GNU General Public License version 3 eller senere.\n" "See http://www.gnu.org/licenses/gpl-3.0.txt" #. TRANSLATORS: Maintain the names of translators here. #. Launchpad does this automatically for translations #. typed in Launchpad. This is a special string shown #. in the 'About' box. #: ../bleachbit/GUI.py:442 msgid "translator-credits" msgstr "" "Launchpad Contributions:\n" " Ask Hjorth Larsen https://launchpad.net/~askhl\n" " Daniel Ejsing-Duun https://launchpad.net/~zilvador\n" " Jens E. Jensen https://launchpad.net/~jens-e-jensen\n" " Jimmy Frydkær Dürr https://launchpad.net/~jimmy-frydkaer\n" " TLE https://launchpad.net/~k-nielsen81\n" " nanker https://launchpad.net/~nanker" #: ../bleachbit/GUI.py:454 msgid "System information" msgstr "Systeminformation" #: ../bleachbit/GUI.py:527 msgid "Choose files to shred" msgstr "Vælg fil du vil slette og overskrive" #: ../bleachbit/GUI.py:530 msgid "Choose folder to shred" msgstr "Vælg mappe der skal slettes og overskrives" #: ../bleachbit/GUI.py:594 ../bleachbit/GuiPreferences.py:197 #: ../bleachbit/GuiPreferences.py:326 ../bleachbit/GuiPreferences.py:367 msgid "Choose a folder" msgstr "Vælg en mappe" #. TRANSLATORS: this is the context menu #: ../bleachbit/GUI.py:627 msgid "Preview" msgstr "Forhåndsvisning" #: ../bleachbit/GUI.py:734 msgid "_Shred Files" msgstr "_Slet og overskriv filer" #: ../bleachbit/GUI.py:736 msgid "Sh_red Folders" msgstr "S_let og overskriv mapper" #: ../bleachbit/GUI.py:738 msgid "_Wipe Free Space" msgstr "_Ryd fri plads" #: ../bleachbit/GUI.py:740 msgid "S_hred Settings and Quit" msgstr "S_let og overskriv indstillinger og afslut" #: ../bleachbit/GUI.py:742 msgid "_Quit" msgstr "_Afslut" #: ../bleachbit/GUI.py:744 msgid "_File" msgstr "_Fil" #: ../bleachbit/GUI.py:746 ../bleachbit/GuiPreferences.py:58 msgid "Preferences" msgstr "Indstillinger" #: ../bleachbit/GUI.py:747 msgid "_Edit" msgstr "_Rediger" #: ../bleachbit/GUI.py:748 msgid "Help Contents" msgstr "Indhold i hjælp" #: ../bleachbit/GUI.py:751 msgid "_Release Notes" msgstr "_Udgivelsesnoter" #: ../bleachbit/GUI.py:754 msgid "_System Information" msgstr "_Systeminformation" #: ../bleachbit/GUI.py:757 msgid "_About" msgstr "_Om" #: ../bleachbit/GUI.py:758 msgid "_Help" msgstr "_Hjælp" #: ../bleachbit/GUI.py:783 msgctxt "button" msgid "Preview" msgstr "Forhåndsvisning" #: ../bleachbit/GUI.py:788 msgid "Preview files in the selected operations (without deleting any files)" msgstr "Se filer in de valgte operationer (uden at slette nogen filer)" #: ../bleachbit/GUI.py:798 msgctxt "button" msgid "Clean" msgstr "Ryd op" #: ../bleachbit/GUI.py:802 msgid "Clean files in the selected operations" msgstr "" #: ../bleachbit/GUI.py:893 msgid "Error when checking for updates: " msgstr "Fejl ved søgning efter opdateringer: " #: ../bleachbit/GUI.py:932 msgid "" "Error loading the SQLite module: the antivirus software may be blocking it." msgstr "" "Fejl ved indlæsning af SQLite-modulet: antivirusprogrammet blokerer det " "måske." #: ../bleachbit/GUI.py:935 msgid "" "You are running BleachBit with administrative privileges for cleaning shared " "parts of the system, and references to the user profile folder will clean " "only the root account." msgstr "" #: ../bleachbit/GUI.py:940 msgid "" "Run BleachBit with administrator privileges to improve the accuracy of " "overwriting the contents of files." msgstr "" #: ../bleachbit/GuiPreferences.py:64 msgid "General" msgstr "Generelt" #: ../bleachbit/GuiPreferences.py:67 msgid "Drives" msgstr "Drev" #: ../bleachbit/GuiPreferences.py:70 msgid "Languages" msgstr "Sprog" #: ../bleachbit/GuiPreferences.py:72 msgid "Whitelist" msgstr "Hvidliste" #: ../bleachbit/GuiPreferences.py:117 msgid "Check periodically for software updates via the Internet" msgstr "Kig periodisk efter programopdateringer via internet" #: ../bleachbit/GuiPreferences.py:122 msgid "" "If an update is found, you will be given the option to view information " "about it. Then, you may manually download and install the update." msgstr "" "Hvis der bliver fundet en opdatering, vil du få mulighed for at se dens " "oplysninger. Derefter kan du manuelt hente og installere opdateringen." #: ../bleachbit/GuiPreferences.py:128 msgid "Check for new beta releases" msgstr "Tjek om der er nye betaudgaver" #: ../bleachbit/GuiPreferences.py:137 msgid "Download and update cleaners from community (winapp2.ini)" msgstr "Hent og opdatér rensere fra fællesskabet (winapp2.ini)" #. TRANSLATORS: This means to hide cleaners which would do #. nothing. For example, if Firefox were never used on #. this system, this option would hide Firefox to simplify #. the list of cleaners. #: ../bleachbit/GuiPreferences.py:151 msgid "Hide irrelevant cleaners" msgstr "" #. TRANSLATORS: Overwriting is the same as shredding. It is a way #. to prevent recovery of the data. You could also translate #. 'Shred files to prevent recovery.' #: ../bleachbit/GuiPreferences.py:159 msgid "Overwrite contents of files to prevent recovery" msgstr "" #: ../bleachbit/GuiPreferences.py:163 msgid "" "Overwriting is ineffective on some file systems and with certain BleachBit " "operations. Overwriting is significantly slower." msgstr "" "Overskrivning er uden betydning på visse filsystemer og med visse BleachBit-" "operationer. Overskrivning er betragteligt langsommere." #: ../bleachbit/GuiPreferences.py:166 msgid "Start BleachBit with computer" msgstr "Kør BleachBit ved systemopstart" #: ../bleachbit/GuiPreferences.py:172 msgid "Exit after cleaning" msgstr "" #: ../bleachbit/GuiPreferences.py:178 msgid "Confirm before delete" msgstr "" #: ../bleachbit/GuiPreferences.py:186 msgid "Use IEC sizes (1 KiB = 1024 bytes) instead of SI (1 kB = 1000 bytes)" msgstr "" #: ../bleachbit/GuiPreferences.py:221 msgid "" "Choose a writable folder for each drive for which to overwrite free space." msgstr "" "Vælg en mappe med skriverettigheder for hvert af de drev, hvor der skal " "overskrives fri plads." #. TRANSLATORS: In the preferences dialog, this button adds a path to #. the list of paths #: ../bleachbit/GuiPreferences.py:243 msgctxt "button" msgid "Add" msgstr "Tilføj" #. TRANSLATORS: In the preferences dialog, this button removes a path #. from the list of paths #: ../bleachbit/GuiPreferences.py:247 ../bleachbit/GuiPreferences.py:458 msgctxt "button" msgid "Remove" msgstr "Fjern" #: ../bleachbit/GuiPreferences.py:272 msgid "All languages will be deleted except those checked." msgstr "Alle sprog vil blive slettet undtagen de markerede." #: ../bleachbit/GuiPreferences.py:288 msgid "Preserve" msgstr "Bevar" #: ../bleachbit/GuiPreferences.py:292 msgid "Code" msgstr "Kode" #: ../bleachbit/GuiPreferences.py:313 ../bleachbit/GuiPreferences.py:354 msgid "Choose a file" msgstr "Vælg en fil" #: ../bleachbit/GuiPreferences.py:320 ../bleachbit/GuiPreferences.py:361 #: ../bleachbit/GuiPreferences.py:405 msgid "File" msgstr "Fil" #: ../bleachbit/GuiPreferences.py:334 ../bleachbit/GuiPreferences.py:375 #: ../bleachbit/GuiPreferences.py:407 msgid "Folder" msgstr "Mappe" #: ../bleachbit/GuiPreferences.py:417 msgid "Theses paths will not be deleted or modified." msgstr "Disse stier vil ikke blive slettet eller ændret." #: ../bleachbit/GuiPreferences.py:420 msgid "These locations can be selected for deletion." msgstr "" #: ../bleachbit/GuiPreferences.py:428 msgid "Type" msgstr "Type" #. TRANSLATORS: In the tree view "Path" is used generically to refer to a #. file, a folder, or a pattern describing either #: ../bleachbit/GuiPreferences.py:434 msgid "Path" msgstr "Sti" #: ../bleachbit/GuiPreferences.py:446 msgctxt "button" msgid "Add file" msgstr "Tilføj fil" #: ../bleachbit/GuiPreferences.py:452 msgctxt "button" msgid "Add folder" msgstr "Tilføj mappe" bleachbit-2.0/po/pt.po0000644000175000017500000013336213245436307013012 0ustar hlehle# Portuguese translation for bleachbit # Copyright (c) 2009 Rosetta Contributors and Canonical Ltd 2009 # This file is distributed under the same license as the bleachbit package. # FIRST AUTHOR , 2009. # msgid "" msgstr "" "Project-Id-Version: bleachbit\n" "Report-Msgid-Bugs-To: FULL NAME \n" "POT-Creation-Date: 2016-06-24 19:52-0600\n" "PO-Revision-Date: 2016-06-25 14:59+0000\n" "Last-Translator: Ivo Xavier \n" "Language-Team: Portuguese \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n != 1;\n" "X-Launchpad-Export-Date: 2016-06-26 16:24+0000\n" "X-Generator: Launchpad (build 18111)\n" #: ../cleaners/mc.xml ../cleaners/tortoisesvn.xml ../cleaners/vim.xml #: ../cleaners/safari.xml ../cleaners/links2.xml ../cleaners/seamonkey.xml #: ../cleaners/realplayer.xml ../cleaners/windows_defender.xml #: ../cleaners/d4x.xml ../cleaners/sqlite3.xml #: ../cleaners/internet_explorer.xml ../cleaners/libreoffice.xml #: ../cleaners/easytag.xml ../cleaners/bash.xml ../cleaners/nautilus.xml #: ../cleaners/octave.xml ../cleaners/elinks.xml ../cleaners/chromium.xml #: ../cleaners/google_chrome.xml msgid "History" msgstr "Histórico" #: ../cleaners/mc.xml ../cleaners/tortoisesvn.xml ../cleaners/links2.xml #: ../cleaners/realplayer.xml ../cleaners/d4x.xml ../cleaners/libreoffice.xml #: ../cleaners/easytag.xml ../cleaners/nautilus.xml ../cleaners/gnome.xml #: ../bleachbit/Cleaner.py:351 ../bleachbit/Cleaner.py:425 #: ../bleachbit/Cleaner.py:434 msgid "Delete the usage history" msgstr "Apagar histórico de utilização" #: ../cleaners/gpodder.xml ../cleaners/hippo_opensim_viewer.xml #: ../cleaners/thumbnails.xml ../cleaners/safari.xml ../cleaners/emesene.xml #: ../cleaners/liferea.xml ../cleaners/seamonkey.xml ../cleaners/vuze.xml #: ../cleaners/yahoo_messenger.xml ../cleaners/pidgin.xml #: ../cleaners/adobe_reader.xml ../cleaners/evolution.xml #: ../cleaners/tremulous.xml ../cleaners/libreoffice.xml ../cleaners/xine.xml #: ../cleaners/nexuiz.xml ../cleaners/exaile.xml ../cleaners/opera.xml #: ../cleaners/amsn.xml ../cleaners/gftp.xml ../cleaners/miro.xml #: ../cleaners/beagle.xml ../cleaners/kde.xml ../cleaners/epiphany.xml #: ../cleaners/flash.xml ../cleaners/secondlife_viewer.xml ../cleaners/java.xml #: ../cleaners/chromium.xml ../cleaners/audacious.xml ../cleaners/rhythmbox.xml #: ../cleaners/google_chrome.xml ../cleaners/thunderbird.xml #: ../bleachbit/Cleaner.py:194 ../bleachbit/Cleaner.py:372 #: ../bleachbit/Cleaner.py:457 msgid "Cache" msgstr "Cache" #: ../cleaners/gpodder.xml ../cleaners/yum.xml #: ../cleaners/hippo_opensim_viewer.xml ../cleaners/thumbnails.xml #: ../cleaners/windows_explorer.xml ../cleaners/liferea.xml #: ../cleaners/vuze.xml ../cleaners/yahoo_messenger.xml ../cleaners/pidgin.xml #: ../cleaners/adobe_reader.xml ../cleaners/evolution.xml #: ../cleaners/libreoffice.xml ../cleaners/apt.xml ../cleaners/xine.xml #: ../cleaners/nexuiz.xml ../cleaners/exaile.xml ../cleaners/amsn.xml #: ../cleaners/gftp.xml ../cleaners/miro.xml ../cleaners/beagle.xml #: ../cleaners/kde.xml ../cleaners/flash.xml ../cleaners/secondlife_viewer.xml #: ../cleaners/java.xml ../cleaners/audacious.xml ../cleaners/rhythmbox.xml #: ../bleachbit/Cleaner.py:372 ../bleachbit/Cleaner.py:457 #: ../bleachbit/Cleaner.py:491 ../bleachbit/Cleaner.py:493 msgid "Delete the cache" msgstr "Apagar cache" #. TRANSLATORS: Vacuum is a verb. The term is jargon #. from the SQLite database. Microsoft Access uses #. the term 'Compact Database' (which you may translate #. instead). Another synonym is 'defragment.' #: ../cleaners/gpodder.xml ../cleaners/yum.xml ../cleaners/safari.xml #: ../cleaners/liferea.xml ../cleaners/chromium.xml #: ../cleaners/google_chrome.xml ../cleaners/thunderbird.xml #: ../bleachbit/Cleaner.py:216 ../bleachbit/Cleaner.py:362 #: ../bleachbit/Action.py:419 msgid "Vacuum" msgstr "Otimizar" #: ../cleaners/gpodder.xml ../cleaners/yum.xml ../cleaners/safari.xml #: ../cleaners/liferea.xml ../cleaners/chromium.xml #: ../cleaners/google_chrome.xml ../cleaners/thunderbird.xml #: ../bleachbit/Cleaner.py:217 msgid "" "Clean database fragmentation to reduce space and improve speed without " "removing any data" msgstr "" "Limpar fragmentação da base de dados para reduzir espaço e melhorar a " "velocidade sem remover quaisquer dados." #: ../cleaners/yum.xml ../cleaners/apt.xml msgid "Package manager" msgstr "Gestor de pacotes" #: ../cleaners/warzone2100.xml ../cleaners/hippo_opensim_viewer.xml #: ../cleaners/gl-117.xml ../cleaners/tremulous.xml ../cleaners/nexuiz.xml #: ../cleaners/secondlife_viewer.xml msgid "Game" msgstr "Jogos" #: ../cleaners/warzone2100.xml ../cleaners/hippo_opensim_viewer.xml #: ../cleaners/teamviewer.xml ../cleaners/realplayer.xml ../cleaners/vuze.xml #: ../cleaners/yahoo_messenger.xml ../cleaners/amule.xml #: ../cleaners/easytag.xml ../cleaners/exaile.xml ../cleaners/screenlets.xml #: ../cleaners/gftp.xml ../cleaners/miro.xml ../cleaners/audacious.xml #: ../bleachbit/Cleaner.py:488 msgid "Logs" msgstr "Registos" #: ../cleaners/warzone2100.xml ../cleaners/hippo_opensim_viewer.xml #: ../cleaners/teamviewer.xml ../cleaners/realplayer.xml ../cleaners/vuze.xml #: ../cleaners/yahoo_messenger.xml ../cleaners/amule.xml ../cleaners/exaile.xml #: ../cleaners/screenlets.xml ../cleaners/gftp.xml ../cleaners/miro.xml #: ../cleaners/audacious.xml ../bleachbit/Cleaner.py:488 msgid "Delete the logs" msgstr "Apagar registos" #: ../cleaners/thumbnails.xml ../cleaners/windows_explorer.xml msgid "Thumbnails" msgstr "Miniaturas" #: ../cleaners/thumbnails.xml msgid "Icons for files on the system" msgstr "Ícones para ficheiros do sistema" #: ../cleaners/vim.xml ../cleaners/gedit.xml msgid "Editor" msgstr "Editor" #: ../cleaners/vim.xml msgid "" "Delete ~/.viminfo which includes file history, command history, and buffers" msgstr "" "Apagar ~/.viminfo que inclui histórico de ficheiros, histórico de comandos e " "buffers" #: ../cleaners/filezilla.xml ../cleaners/transmission.xml ../cleaners/vuze.xml #: ../cleaners/amule.xml ../cleaners/gftp.xml msgid "File transfer client" msgstr "Cliente de transferência de ficheiros" #: ../cleaners/filezilla.xml ../cleaners/paint.xml #: ../cleaners/windows_media_player.xml ../cleaners/windows_explorer.xml #: ../cleaners/teamviewer.xml ../cleaners/microsoft_office.xml #: ../cleaners/vlc.xml ../cleaners/adobe_reader.xml ../cleaners/winamp.xml #: ../cleaners/winzip.xml ../cleaners/winrar.xml ../cleaners/audacious.xml #: ../cleaners/wordpad.xml ../bleachbit/Cleaner.py:373 msgid "Most recently used" msgstr "Documentos recentes" #: ../cleaners/filezilla.xml ../cleaners/windows_explorer.xml #: ../cleaners/gwenview.xml ../cleaners/adobe_reader.xml ../cleaners/gedit.xml #: ../cleaners/kde.xml ../cleaners/audacious.xml ../bleachbit/Cleaner.py:374 #: ../bleachbit/Cleaner.py:471 msgid "Delete the list of recently used documents" msgstr "Apagar lista de documentos recentes" #: ../cleaners/skype.xml ../cleaners/xchat.xml ../cleaners/emesene.xml #: ../cleaners/yahoo_messenger.xml ../cleaners/pidgin.xml ../cleaners/amsn.xml msgid "Chat client" msgstr "Cliente de conversação" #: ../cleaners/skype.xml ../cleaners/xchat.xml ../cleaners/emesene.xml #: ../cleaners/seamonkey.xml ../cleaners/yahoo_messenger.xml #: ../cleaners/pidgin.xml ../cleaners/amsn.xml msgid "Chat logs" msgstr "Registo de conversação" #: ../cleaners/skype.xml ../cleaners/xchat.xml ../cleaners/emesene.xml #: ../cleaners/seamonkey.xml ../cleaners/yahoo_messenger.xml #: ../cleaners/pidgin.xml ../cleaners/amsn.xml msgid "Delete the chat logs" msgstr "Apagar registos de conversação" #: ../cleaners/skype.xml msgid "Installers" msgstr "Instaladores" #: ../cleaners/skype.xml msgid "Delete cached patches and installers" msgstr "Apagar pacotes e instaladores em cache" #: ../cleaners/safari.xml ../cleaners/links2.xml ../cleaners/seamonkey.xml #: ../cleaners/konqueror.xml ../cleaners/internet_explorer.xml #: ../cleaners/opera.xml ../cleaners/epiphany.xml ../cleaners/elinks.xml #: ../cleaners/chromium.xml ../cleaners/google_chrome.xml #: ../bleachbit/Cleaner.py:228 msgid "Web browser" msgstr "Navegador web" #: ../cleaners/safari.xml ../cleaners/seamonkey.xml ../cleaners/opera.xml #: ../cleaners/epiphany.xml ../cleaners/chromium.xml #: ../cleaners/google_chrome.xml ../cleaners/thunderbird.xml #: ../bleachbit/Cleaner.py:195 msgid "Delete the web cache, which reduces time to display revisited pages" msgstr "" "Apagar cache web, que reduz o tempo de carga das páginas já visitadas" #: ../cleaners/safari.xml ../cleaners/liferea.xml ../cleaners/seamonkey.xml #: ../cleaners/realplayer.xml ../cleaners/konqueror.xml #: ../cleaners/internet_explorer.xml ../cleaners/opera.xml #: ../cleaners/epiphany.xml ../cleaners/flash.xml ../cleaners/silverlight.xml #: ../cleaners/chromium.xml ../cleaners/google_chrome.xml #: ../cleaners/thunderbird.xml ../bleachbit/Cleaner.py:196 msgid "Cookies" msgstr "Cookies" #: ../cleaners/safari.xml ../cleaners/liferea.xml ../cleaners/seamonkey.xml #: ../cleaners/realplayer.xml ../cleaners/konqueror.xml #: ../cleaners/internet_explorer.xml ../cleaners/opera.xml #: ../cleaners/epiphany.xml ../cleaners/flash.xml ../cleaners/silverlight.xml #: ../cleaners/chromium.xml ../cleaners/google_chrome.xml #: ../cleaners/thunderbird.xml ../bleachbit/Cleaner.py:197 msgid "" "Delete cookies, which contain information such as web site preferences, " "authentication, and tracking identification" msgstr "" "Apagar cookies, os quais podem conter informação sobre as preferências dos " "sítios web, credenciais de autenticação e histórico de comportamento" #: ../cleaners/safari.xml ../cleaners/konqueror.xml #: ../cleaners/internet_explorer.xml ../cleaners/opera.xml #: ../bleachbit/Cleaner.py:215 msgid "List of visited web pages" msgstr "Lista de sítios web visitados" #. Torrent software can block a list of IP addresses, such as those that may belong to malware or anti-piracy organizations #: ../cleaners/transmission.xml msgid "Blocklists" msgstr "Listas de bloqueio" #: ../cleaners/transmission.xml ../cleaners/windows_defender.xml #: ../cleaners/beagle.xml ../cleaners/thunderbird.xml ../cleaners/deepscan.xml #: ../bleachbit/Cleaner.py:199 msgid "Delete the files" msgstr "Apagar ficheiros" #: ../cleaners/transmission.xml msgid "Blocklists will need update to work." msgstr "Tem que atualizar a lista de bloqueios para a utilizar" #: ../cleaners/transmission.xml msgid "Torrents" msgstr "Torrents" #: ../cleaners/transmission.xml msgid "Delete the torrents (just the metadata but not the files described)" msgstr "Apagar torrents (apenas os dados e não os ficheiros)" #: ../cleaners/transmission.xml msgid "Statistics" msgstr "Estatísticas" #: ../cleaners/transmission.xml msgid "Delete the file" msgstr "Eliminar o ficheiro" #: ../cleaners/paint.xml ../cleaners/windows_media_player.xml #: ../cleaners/windows_explorer.xml ../cleaners/teamviewer.xml #: ../cleaners/microsoft_office.xml ../cleaners/vlc.xml ../cleaners/winamp.xml #: ../cleaners/winzip.xml ../cleaners/winrar.xml ../cleaners/wordpad.xml msgid "Delete the most recently used list" msgstr "Apagar lista de utilizados recentemente" #: ../cleaners/emesene.xml msgid "Delete the avatars and emoticons cache" msgstr "Apagar cache de avatars e de ícones emotivos" #: ../cleaners/windows_media_player.xml ../cleaners/realplayer.xml #: ../cleaners/vlc.xml ../cleaners/winamp.xml msgid "Media player" msgstr "Leitor de multimédia" #: ../cleaners/windows_explorer.xml ../cleaners/nautilus.xml msgid "File manager" msgstr "Gestor de ficheiros" #: ../cleaners/windows_explorer.xml ../cleaners/gwenview.xml #: ../cleaners/gedit.xml ../cleaners/kde.xml ../bleachbit/Cleaner.py:470 msgid "Recent documents list" msgstr "Lista de documentos recentes" #. In Windows 'Run' is the dialog in the Start menu #. In GNOME 'Run' is the dialog shown when typing ALT+F2' #: ../cleaners/windows_explorer.xml ../cleaners/gnome.xml msgid "Run" msgstr "Executar" #: ../cleaners/windows_explorer.xml ../cleaners/opera.xml ../cleaners/gnome.xml #: ../cleaners/google_toolbar.xml msgid "Search history" msgstr "Histórico de pesquisas" #: ../cleaners/windows_explorer.xml ../cleaners/opera.xml ../cleaners/gnome.xml #: ../cleaners/google_toolbar.xml msgid "Delete the search history" msgstr "Eliminar histórico de pesquisas" #: ../cleaners/windows_explorer.xml msgid "This will restart Windows Explorer." msgstr "Isto vai reiniciar o Windows Explorer." #: ../cleaners/gl-117.xml ../cleaners/microsoft_office.xml #: ../cleaners/beagle.xml ../cleaners/secondlife_viewer.xml ../cleaners/x11.xml msgid "Debug logs" msgstr "Registos de depuração" #: ../cleaners/gl-117.xml ../cleaners/microsoft_office.xml #: ../cleaners/easytag.xml ../cleaners/beagle.xml #: ../cleaners/secondlife_viewer.xml ../cleaners/x11.xml msgid "Delete the debug logs" msgstr "Apagar registos de depuração" #: ../cleaners/google_earth.xml ../cleaners/winetricks.xml ../cleaners/vuze.xml #: ../cleaners/adobe_reader.xml ../cleaners/amule.xml ../cleaners/wine.xml #: ../cleaners/internet_explorer.xml ../cleaners/gimp.xml ../cleaners/kde.xml #: ../cleaners/deepscan.xml ../bleachbit/Cleaner.py:522 msgid "Temporary files" msgstr "Ficheiros temporários" #: ../cleaners/google_earth.xml ../cleaners/winetricks.xml ../cleaners/vuze.xml #: ../cleaners/adobe_reader.xml ../cleaners/amule.xml ../cleaners/wine.xml #: ../cleaners/internet_explorer.xml ../cleaners/gimp.xml ../cleaners/kde.xml #: ../cleaners/deepscan.xml ../bleachbit/Cleaner.py:522 msgid "Delete the temporary files" msgstr "Apagar ficheiros temporários" #: ../cleaners/seamonkey.xml ../cleaners/opera.xml ../bleachbit/Cleaner.py:203 msgid "Download history" msgstr "Histórico de transferências" #: ../cleaners/seamonkey.xml ../cleaners/opera.xml ../bleachbit/Cleaner.py:203 msgid "List of files downloaded" msgstr "Lista de ficheiros transferidos" #: ../cleaners/seamonkey.xml msgid "Delete the list of visited web pages" msgstr "Apagar lista de ficheiros transferidos" #: ../cleaners/vuze.xml ../cleaners/deepscan.xml ../bleachbit/Cleaner.py:192 msgid "Backup files" msgstr "Cópias de segurança" #: ../cleaners/vuze.xml ../cleaners/deepscan.xml ../bleachbit/Cleaner.py:193 msgid "Delete the backup files" msgstr "Apagar cópias de segurança" #: ../cleaners/konqueror.xml ../cleaners/opera.xml ../cleaners/chromium.xml msgid "Current session" msgstr "Sessão atual" #: ../cleaners/konqueror.xml ../cleaners/opera.xml ../cleaners/chromium.xml msgid "Delete the current session" msgstr "Apagar sessão atual" #: ../cleaners/konqueror.xml ../cleaners/opera.xml ../bleachbit/Cleaner.py:215 msgid "URL history" msgstr "Histórico de URL" #: ../cleaners/microsoft_office.xml ../cleaners/libreoffice.xml #: ../bleachbit/Cleaner.py:377 msgid "Office suite" msgstr "Aplicações de produtividade" #: ../cleaners/windows_defender.xml msgid "Anti-virus" msgstr "Anti-virus" #: ../cleaners/adobe_reader.xml msgid "Document viewer" msgstr "Visualizador de documentos" #: ../cleaners/evolution.xml ../cleaners/thunderbird.xml msgid "Email client" msgstr "Cliente de correio eletrónico" #: ../cleaners/tremulous.xml msgid "Delete the list of game servers" msgstr "Apagar lista de servidores de jogos" #: ../cleaners/sqlite3.xml ../cleaners/bash.xml ../cleaners/octave.xml msgid "Delete the command history" msgstr "Apagar histórico de comandos" #: ../cleaners/wine.xml msgid "Compatibility layer for Windows software" msgstr "Nível de compatibilidade para programas Windows" #: ../cleaners/internet_explorer.xml ../cleaners/chromium.xml #: ../cleaners/google_chrome.xml ../bleachbit/Cleaner.py:204 msgid "Form history" msgstr "Histórico de formulários" #: ../cleaners/internet_explorer.xml ../bleachbit/Cleaner.py:205 msgid "A history of forms entered in web sites and in the Search bar" msgstr "Apagar histórico de formulários de sítios web e da barra de procura" #. This software edits metadata tags, such as title and artist, in audio files #: ../cleaners/easytag.xml msgid "Audio files tagger" msgstr "Aplicação de etiquetas áudio" #: ../cleaners/apt.xml msgid "Delete obsolete files" msgstr "Apagar ficheiros obsoletos" #: ../cleaners/apt.xml msgid "Package lists" msgstr "Lista de pacotes" #: ../cleaners/xine.xml ../cleaners/miro.xml ../cleaners/flash.xml msgid "Multimedia viewer" msgstr "Visualizador multimédia" #: ../cleaners/recoll.xml ../cleaners/beagle.xml msgid "Search tool" msgstr "Ferramenta de pesquisa" #: ../cleaners/recoll.xml ../cleaners/beagle.xml ../cleaners/thunderbird.xml msgid "Index" msgstr "Índice" #: ../cleaners/recoll.xml msgid "" "Delete the search index, a database of words and the files they contain" msgstr "" "Apagar índice de procuras, base de dados de palavras e os ficheiros que " "existam" #: ../cleaners/gimp.xml msgid "Graphics editor" msgstr "Editor de gráficos" #: ../cleaners/exaile.xml msgid "Downloaded podcasts" msgstr "Podcasts transferidos" #: ../cleaners/exaile.xml msgid "Delete downloaded podcasts" msgstr "Apagar podcasts transferidos" #: ../cleaners/bash.xml msgid "Shell" msgstr "Consola" #. TRANSLATORS: DOM = Document Object Model. #: ../cleaners/opera.xml ../cleaners/epiphany.xml ../cleaners/chromium.xml #: ../cleaners/google_chrome.xml ../bleachbit/Cleaner.py:201 msgid "DOM Storage" msgstr "Armazenamento DOM" #: ../cleaners/opera.xml ../cleaners/epiphany.xml ../cleaners/chromium.xml #: ../cleaners/google_chrome.xml ../bleachbit/Cleaner.py:201 msgid "Delete HTML5 cookies" msgstr "Apagar cookies HTML5" #: ../cleaners/opera.xml ../cleaners/epiphany.xml ../cleaners/chromium.xml #: ../cleaners/google_chrome.xml ../cleaners/thunderbird.xml #: ../bleachbit/Cleaner.py:210 msgid "Passwords" msgstr "Palavras-passe" #: ../cleaners/opera.xml ../cleaners/epiphany.xml ../cleaners/chromium.xml #: ../cleaners/google_chrome.xml ../cleaners/thunderbird.xml #: ../bleachbit/Cleaner.py:211 msgid "" "A database of usernames and passwords as well as a list of sites that should " "not store passwords" msgstr "" "Apagar base de dados dos nomes de utilizador e palavras-passe, bem como a " "lista de sítios que não deveriam guardar palavras-passe" #: ../cleaners/opera.xml ../cleaners/epiphany.xml ../cleaners/chromium.xml #: ../cleaners/google_chrome.xml ../cleaners/thunderbird.xml #: ../bleachbit/Cleaner.py:213 msgid "This option will delete your saved passwords." msgstr "Esta opção apagará as palavras-passe guardadas" #: ../cleaners/nautilus.xml msgid "Custom folders will be reset." msgstr "As pastas personalizadas serão repostas." #: ../cleaners/gnome.xml ../cleaners/kde.xml msgid "Desktop environment" msgstr "Ambiente desktop" #: ../cleaners/screenlets.xml msgid "Widgets for the desktop" msgstr "Widgets para o ambiente de trabalho" #: ../cleaners/epiphany.xml msgid "Places" msgstr "Locais" #: ../cleaners/epiphany.xml msgid "" "A database of URLs including bookmarks, favicons, and a history of visited " "web sites" msgstr "" "Apagar base de dados de URL, incluindo marcadores, \"favicons\" e o " "histórico de sítios web visitados" #: ../cleaners/epiphany.xml msgid "This option deletes all bookmarks." msgstr "Esta opção remove todos os marcadores" #: ../cleaners/winrar.xml msgid "File archiver" msgstr "Arquivo de ficheiros" #: ../cleaners/elinks.xml msgid "Delete the cookies, visited URLs, and search history" msgstr "Apagar cookies, URL visitados e o histórico de procuras" #: ../cleaners/chromium.xml ../cleaners/google_chrome.xml msgid "A history of forms entered in web sites" msgstr "O histórico de formulários introduzidos nos sítios web" #: ../cleaners/chromium.xml ../cleaners/google_chrome.xml msgid "" "Delete the history which includes visited sites, downloads, and thumbnails" msgstr "" "Apagar histórico dos sítios web visitados, transferências e miniaturas" #: ../cleaners/chromium.xml ../cleaners/google_chrome.xml msgid "Search engines" msgstr "Motores de pesquisa" #. 'Factory' means a search engine that is installed by default 'from the factory,' but this is different than a 'default search engine' https://lists.launchpad.net/launchpad-translators/msg00283.html #: ../cleaners/chromium.xml ../cleaners/google_chrome.xml msgid "" "Reset the search engine usage history and delete non-factory search engines, " "some of which are added automatically" msgstr "" "Repor mecanismo de pesquisa e eliminar todos os mecanismos de pesquisa " "adicionados pelo utilizador." #: ../cleaners/audacious.xml msgid "Audio player" msgstr "Reprodutor áudio" #: ../cleaners/rhythmbox.xml msgid "Database" msgstr "Base de dados" #: ../cleaners/rhythmbox.xml msgid "" "Delete the database, which contain information such as play count and last " "played" msgstr "" #: ../cleaners/google_chrome.xml msgid "Session" msgstr "Sessão" #: ../cleaners/google_chrome.xml msgid "Delete the current and last sessions" msgstr "Apagar a sessão atual e a anterior" #: ../cleaners/x11.xml msgid "Windowing system" msgstr "Sistema de janelas" #: ../cleaners/wordpad.xml msgid "Word processor" msgstr "Processador de texto" #: ../cleaners/deepscan.xml msgid "Deep scan" msgstr "Análise profunda" #: ../cleaners/deepscan.xml msgid "Clean files widely scattered across the disk" msgstr "Limpa ficheiros por todo o disco" #: ../cleaners/deepscan.xml msgid "Inspect the preview for any files you want to keep." msgstr "Inspecionar a pré-visualização dos ficheiros que pode querer manter" #: ../cleaners/deepscan.xml msgid "This option is slow." msgstr "Esta opção é lenta" #: ../bleachbit.desktop msgid "Unnecessary file cleaner" msgstr "Limpeza de ficheiros desnecessários" #: ../bleachbit.desktop msgid "Free space and maintain privacy" msgstr "Libertar espaço e manter a privacidade" #. TRANSLATORS: This is the label in the log indicating was #. skipped because it matches the whitelist #: ../bleachbit/Command.py:44 msgid "Skip" msgstr "Ignorar" #. TRANSLATORS: This is the label in the log indicating will be #. deleted (for previews) or was actually deleted #: ../bleachbit/Command.py:74 msgid "Delete" msgstr "Apagar" #. TRANSLATORS: The file will be deleted when the #. system reboots #: ../bleachbit/Command.py:95 msgid "Mark for deletion" msgstr "Marcar para eliminação" #. TRANSLATORS: Parts of this file will be deleted #: ../bleachbit/Command.py:192 ../bleachbit/Command.py:226 #: ../bleachbit/Action.py:256 ../bleachbit/Action.py:269 #: ../bleachbit/Action.py:282 ../bleachbit/Action.py:295 #: ../bleachbit/Action.py:308 msgid "Clean file" msgstr "Limpar ficheiro" #. TRANSLATORS: The file will be truncated to 0 bytes in length #: ../bleachbit/Command.py:268 msgid "Truncate" msgstr "Truncar" #: ../bleachbit/Command.py:311 msgid "Delete registry key" msgstr "Apagar chave de registo" #: ../bleachbit/Unix.py:340 ../bleachbit/Unix.py:370 ../bleachbit/Unix.py:574 #, python-format msgid "Executable not found: %s" msgstr "Executável não encontrado: %s" #. TRANSLATORS: %s expands to a name such as 'Firefox' or 'System'. #: ../bleachbit/Unix.py:571 ../bleachbit/Worker.py:141 #, python-format msgid "" "%s cannot be cleaned because it is currently running. Close it, and try " "again." msgstr "" "%s não pode ser limpo porque está a ser utilizado. Feche-o e tente novamente." #: ../bleachbit/GuiBasic.py:112 msgid "Delete confirmation" msgstr "Confirmação para eliminar" #: ../bleachbit/GuiBasic.py:122 msgid "" "Are you sure you want to permanently delete files according to the selected " "operations? The actual files that will be deleted may have changed since " "you ran the preview." msgstr "" "Tem a certeza que pretende apagar, PERMANENTEMENTE, os ficheiros das " "operações selecionadas? Os ficheiros atuais que serão apagados podem ter " "alterações desde a última pré-visualização." #: ../bleachbit/GuiBasic.py:125 msgid "Are you sure you want to permanently delete these files?" msgstr "Tem a certeza que pretende eliminar PERMANENTEMENTE estes ficheiros?" #: ../bleachbit/GuiBasic.py:162 #, python-format msgid "" "Because you are running as root, please manually open this link in a web " "browser:\n" "%s" msgstr "" "Uma vez que iniciou a ferramenta como root, abra esta ligação no seu " "navegador:\n" "%s" #. TRANSLATORS: %s expands to www.bleachbit.org or similar #: ../bleachbit/GuiBasic.py:174 #, python-format msgid "Open web browser to %s?" msgstr "Abrir navegador web em %s?" #. TRANSLATORS: This is cleaner name for cleaners imported from winapp2.ini #: ../bleachbit/Winapp.py:44 msgid "Applications" msgstr "Aplicações" #. TRANSLATORS: This is cleaner name for cleaners imported #. from winapp2.ini #: ../bleachbit/Winapp.py:47 msgid "Internet" msgstr "Internet" #. TRANSLATORS: This is cleaner name for cleaners imported #. from winapp2.ini #: ../bleachbit/Winapp.py:50 msgid "Multimedia" msgstr "Multimédia" #. TRANSLATORS: This is cleaner name for cleaners imported #. from winapp2.ini #: ../bleachbit/Winapp.py:53 msgid "Utilities" msgstr "Utilitários" #: ../bleachbit/Winapp.py:64 msgid "Games" msgstr "Jogos" #: ../bleachbit/Winapp.py:165 msgid "Imported from winapp2.ini" msgstr "Importado de winapp2.ini" #: ../bleachbit/Cleaner.py:199 msgid "Crash reports" msgstr "Relatórios de erro" #: ../bleachbit/Cleaner.py:206 msgid "Session restore" msgstr "Restaurar sessão" #: ../bleachbit/Cleaner.py:207 msgid "Loads the initial session after the browser closes or crashes" msgstr "Carrega a sessão atual após o encerramento do navegador" #: ../bleachbit/Cleaner.py:209 msgid "Site preferences" msgstr "Preferências de sítios web" #: ../bleachbit/Cleaner.py:209 msgid "Settings for individual sites" msgstr "Definições específicas para sítios web" #. TRANSLATORS: desktop entries are .desktop files in Linux that #. make up the application menu (the menu that shows BleachBit, #. Firefox, and others. The .desktop files also associate file #. types, so clicking on an .html file in Nautilus brings up #. Firefox. #. More information: #. http://standards.freedesktop.org/menu-spec/latest/index.html#introduction #: ../bleachbit/Cleaner.py:455 msgid "Broken desktop files" msgstr "Ficheiros do ambiente de trabalho danificados" #: ../bleachbit/Cleaner.py:456 msgid "Delete broken application menu entries and file associations" msgstr "Apagar entradas de menu danificadas e associação de ficheiros" #. TRANSLATORS: Localizations are files supporting specific #. languages, so applications appear in Spanish, etc. #: ../bleachbit/Cleaner.py:460 msgid "Localizations" msgstr "Localizações" #: ../bleachbit/Cleaner.py:461 msgid "Delete files for unwanted languages" msgstr "Apagar ficheiros de idiomas não utilizados" #: ../bleachbit/Cleaner.py:463 msgid "Configure this option in the preferences." msgstr "Configure esta opção nas preferências" #: ../bleachbit/Cleaner.py:469 msgid "Rotated logs" msgstr "Registos antigos" #: ../bleachbit/Cleaner.py:469 msgid "Delete old system logs" msgstr "Apagar registos antigos do sistema" #: ../bleachbit/Cleaner.py:472 msgid "Trash" msgstr "Lixo" #: ../bleachbit/Cleaner.py:472 msgid "Empty the trash" msgstr "Esvaziar o lixo" #: ../bleachbit/Cleaner.py:478 ../bleachbit/Cleaner.py:629 #: ../bleachbit/Worker.py:189 msgid "Memory" msgstr "Memória" #. TRANSLATORS: 'free' means 'unallocated' #: ../bleachbit/Cleaner.py:480 msgid "Wipe the swap and free memory" msgstr "Limpar swap e a memória não ocupada" #: ../bleachbit/Cleaner.py:482 msgid "This option is experimental and may cause system problems." msgstr "Esta opção é experimental e pode causar problemas" #: ../bleachbit/Cleaner.py:490 msgid "Memory dump" msgstr "Limpar memória" #: ../bleachbit/Cleaner.py:490 msgid "Delete the file memory.dmp" msgstr "Apagar o ficheiro memory.dmp" #. TRANSLATORS: Prefetch is Microsoft Windows jargon. #: ../bleachbit/Cleaner.py:493 msgid "Prefetch" msgstr "Prefetch" #: ../bleachbit/Cleaner.py:495 msgid "Recycle bin" msgstr "Reciclagem" #: ../bleachbit/Cleaner.py:495 msgid "Empty the recycle bin" msgstr "Esvaziar a reciclagem" #. TRANSLATORS: 'Update' is a noun, and 'Update uninstallers' is an option to delete #. the uninstallers for software updates. #: ../bleachbit/Cleaner.py:498 msgid "Update uninstallers" msgstr "Atualizações de programas" #: ../bleachbit/Cleaner.py:499 msgid "" "Delete uninstallers for Microsoft updates including hotfixes, service packs, " "and Internet Explorer updates" msgstr "" "Apagar desinstaladores das atualizações Microsoft, incluído hotfixes, " "service packs e outras" #: ../bleachbit/Cleaner.py:506 ../bleachbit/Cleaner.py:722 msgid "Clipboard" msgstr "Área de transferência" #: ../bleachbit/Cleaner.py:507 msgid "" "The desktop environment's clipboard used for copy and paste operations" msgstr "" "Apagar itens na área de transferência, utilizados nas operações de cortar e " "colar" #. TRANSLATORS: "Custom" is an option allowing the user to specify which #. files and folders will be erased. #: ../bleachbit/Cleaner.py:514 ../bleachbit/GuiPreferences.py:63 msgid "Custom" msgstr "Personalizada" #: ../bleachbit/Cleaner.py:515 msgid "Delete user-specified files and folders" msgstr "Apagar pastas e ficheiros específicas" #. TRANSLATORS: 'free' means 'unallocated' #: ../bleachbit/Cleaner.py:517 msgid "Free disk space" msgstr "Espaço livre em disco" #. TRANSLATORS: 'free' means 'unallocated' #: ../bleachbit/Cleaner.py:519 msgid "Overwrite free disk space to hide deleted files" msgstr "" "Escrever sobre o espaço livre em disco para ocultar os ficheiros eliminados" #: ../bleachbit/Cleaner.py:520 msgid "This option is very slow." msgstr "Esta opção é muito lenta" #: ../bleachbit/Cleaner.py:524 msgid "The system in general" msgstr "O sistema em geral" #: ../bleachbit/Cleaner.py:526 ../bleachbit/Cleaner.py:846 msgid "System" msgstr "Sistema" #. TRANSLATORS: 'Free' means 'unallocated.' #. %s expands to a path such as C:\ or /tmp/ #: ../bleachbit/Cleaner.py:730 ../bleachbit/Cleaner.py:879 #, python-format msgid "Overwrite free disk space %s" msgstr "Escrever sobre espaço livre do disco %s" #: ../bleachbit/GuiPreferences.py:55 ../bleachbit/GUI.py:706 msgid "Preferences" msgstr "Preferências" #: ../bleachbit/GuiPreferences.py:61 msgid "General" msgstr "Geral" #: ../bleachbit/GuiPreferences.py:64 msgid "Drives" msgstr "Unidades" #: ../bleachbit/GuiPreferences.py:67 msgid "Languages" msgstr "Idiomas" #: ../bleachbit/GuiPreferences.py:69 msgid "Whitelist" msgstr "Lista branca" #: ../bleachbit/GuiPreferences.py:114 msgid "Check periodically for software updates via the Internet" msgstr "Procurar periodicamente por atualizações na Internet" #: ../bleachbit/GuiPreferences.py:119 msgid "" "If an update is found, you will be given the option to view information " "about it. Then, you may manually download and install the update." msgstr "" "Se existir uma atualização, poderá ver as informações da nova versão. " "Posteriormente, poderá transferir e instalar a atualização." #: ../bleachbit/GuiPreferences.py:125 msgid "Check for new beta releases" msgstr "Procurar por versões beta" #: ../bleachbit/GuiPreferences.py:134 msgid "Download and update cleaners from community (winapp2.ini)" msgstr "Transferir e atualizar as ferramentas da comunidade (winapp2.ini)" #. TRANSLATORS: This means to hide cleaners which would do #. nothing. For example, if Firefox were never used on #. this system, this option would hide Firefox to simplify #. the list of cleaners. #: ../bleachbit/GuiPreferences.py:148 msgid "Hide irrelevant cleaners" msgstr "Ocultar ferramentas irrelevantes" #. TRANSLATORS: Overwriting is the same as shredding. It is a way #. to prevent recovery of the data. You could also translate #. 'Shred files to prevent recovery.' #: ../bleachbit/GuiPreferences.py:156 msgid "Overwrite files to hide contents" msgstr "Sobrescrever ficheiros para ocultar o conteúdo" #: ../bleachbit/GuiPreferences.py:160 msgid "" "Overwriting is ineffective on some file systems and with certain BleachBit " "operations. Overwriting is significantly slower." msgstr "" "Esta opção não será eficaz em alguns sistemas de ficheiros e em certas " "operações. Esta operação é muito lenta." #: ../bleachbit/GuiPreferences.py:163 msgid "Start BleachBit with computer" msgstr "Iniciar o BleachBit ao iniciar o computador" #: ../bleachbit/GuiPreferences.py:169 msgid "Exit after cleaning" msgstr "Sair após a limpeza" #: ../bleachbit/GuiPreferences.py:175 msgid "Confirm before delete" msgstr "Confirmar antes de apagar" #: ../bleachbit/GuiPreferences.py:183 msgid "Use IEC sizes (1 KiB = 1024 bytes) instead of SI (1 kB = 1000 bytes)" msgstr "" "Utilizar tamanhos IEC (1 KiB = 1024 bytes) em vez de SI (1 kB = 1000 bytes)" #: ../bleachbit/GuiPreferences.py:194 ../bleachbit/GuiPreferences.py:323 #: ../bleachbit/GuiPreferences.py:364 ../bleachbit/GUI.py:592 msgid "Choose a folder" msgstr "Escolha uma pasta" #: ../bleachbit/GuiPreferences.py:218 msgid "" "Choose a writable folder for each drive for which to overwrite free space." msgstr "" "Escolha uma pasta para cada unidade em que pretende sobrescrever o espaço " "livre." #. TRANSLATORS: In the preferences dialog, this button adds a path to #. the list of paths #: ../bleachbit/GuiPreferences.py:240 msgctxt "button" msgid "Add" msgstr "Adicionar" #. TRANSLATORS: In the preferences dialog, this button removes a path #. from the list of paths #: ../bleachbit/GuiPreferences.py:244 ../bleachbit/GuiPreferences.py:455 msgctxt "button" msgid "Remove" msgstr "Remover" #: ../bleachbit/GuiPreferences.py:269 msgid "All languages will be deleted except those checked." msgstr "Apenas os idiomas assinalados serão mantidos" #: ../bleachbit/GuiPreferences.py:285 msgid "Preserve" msgstr "Manter" #: ../bleachbit/GuiPreferences.py:289 msgid "Code" msgstr "Código" #: ../bleachbit/GuiPreferences.py:293 ../bleachbit/GUI.py:135 msgid "Name" msgstr "Nome" #: ../bleachbit/GuiPreferences.py:310 ../bleachbit/GuiPreferences.py:351 msgid "Choose a file" msgstr "Escolha um ficheiro" #: ../bleachbit/GuiPreferences.py:317 ../bleachbit/GuiPreferences.py:358 #: ../bleachbit/GuiPreferences.py:402 msgid "File" msgstr "Ficheiro" #: ../bleachbit/GuiPreferences.py:331 ../bleachbit/GuiPreferences.py:372 #: ../bleachbit/GuiPreferences.py:404 msgid "Folder" msgstr "Pasta" #: ../bleachbit/GuiPreferences.py:414 msgid "Theses paths will not be deleted or modified." msgstr "Estes caminhos não serão apagados nem modificados." #: ../bleachbit/GuiPreferences.py:417 msgid "These locations can be selected for deletion." msgstr "Estas localizações podem ser selecionadas" #: ../bleachbit/GuiPreferences.py:425 msgid "Type" msgstr "Tipo" #. TRANSLATORS: In the tree view "Path" is used generically to refer to a #. file, a folder, or a pattern describing either #: ../bleachbit/GuiPreferences.py:431 msgid "Path" msgstr "Caminho" #: ../bleachbit/GuiPreferences.py:443 msgctxt "button" msgid "Add file" msgstr "Adicionar ficheiro" #: ../bleachbit/GuiPreferences.py:449 msgctxt "button" msgid "Add folder" msgstr "Adicionar pasta" #: ../bleachbit/RecognizeCleanerML.py:57 msgid "Security warning" msgstr "Aviso de segurança" #: ../bleachbit/RecognizeCleanerML.py:70 msgid "" "These cleaner definitions are new or have changed. Malicious definitions can " "damage your system. If you do not trust these changes, delete the files or " "quit." msgstr "" "Estas definições de limpeza são novas ou foram alteradas. As definições " "maliciosas podem danificar o seu sistema. Se não confiar nas alterações, " "elimine os ficheiros ou saia." #: ../bleachbit/RecognizeCleanerML.py:85 msgctxt "column_label" msgid "Delete" msgstr "Eliminar" #: ../bleachbit/RecognizeCleanerML.py:90 msgctxt "column_label" msgid "Filename" msgstr "Nome do ficheiro" #. TRANSLATORS: This indicates an error. The special keyword #. %(operation)s will be replaced by 'firefox' or 'opera' or #. some other cleaner ID. The special keyword %(msg)s will be #. replaced by a message such as 'Permission denied.' #: ../bleachbit/Worker.py:74 #, python-format msgid "Exception while running operation '%(operation)s': '%(msg)s'" msgstr "Erro ao executar a operação '%(operation)s': '%(msg)s'" #. TRANSLATORS: 'free' means 'unallocated' #: ../bleachbit/Worker.py:187 msgid "Please wait. Wiping free disk space." msgstr "Por favor aguarde pela limpeza do espaço livre." #. TRANSLATORS: %s is replaced with Firefox, System, etc. #: ../bleachbit/Worker.py:189 ../bleachbit/Worker.py:329 #, python-format msgid "Please wait. Cleaning %s." msgstr "Por favor aguarde. A limpar %s." #: ../bleachbit/Worker.py:204 msgid "Please wait. Wiping file system metadata." msgstr "Por favor aguarde. A limpar dados do sistema de ficheiros." #: ../bleachbit/Worker.py:207 msgid "Please wait. Cleaning up after wiping file system metadata." msgstr "" "Por favor aguarde. Estamos a efetuar algumas operações após a limpeza." #: ../bleachbit/Worker.py:210 #, python-format msgid "About %d minute remaining." msgid_plural "About %d minutes remaining." msgstr[0] "Falta cerca de %d minuto." msgstr[1] "Faltam cerca de %d minutos." #. TRANSLATORS: This refers to disk space that was #. really recovered (in other words, not a preview) #: ../bleachbit/Worker.py:268 #, python-format msgid "Disk space recovered: %s" msgstr "Espaço em disco recuperado: %s" #. TRANSLATORS: This refers to a preview (no real #. changes were made yet) #: ../bleachbit/Worker.py:272 #, python-format msgid "Disk space to be recovered: %s" msgstr "Espaço em disco a ser recuperado: %s" #. TRANSLATORS: This refers to the number of files really #. deleted (in other words, not a preview). #: ../bleachbit/Worker.py:277 #, python-format msgid "Files deleted: %d" msgstr "Ficheiros apagados: %d" #. TRANSLATORS: This refers to the number of files that #. would be deleted (in other words, simply a preview). #: ../bleachbit/Worker.py:281 #, python-format msgid "Files to be deleted: %d" msgstr "Ficheiros a serem apagados: %d" #: ../bleachbit/Worker.py:284 #, python-format msgid "Special operations: %d" msgstr "Operações especiais: %d" #: ../bleachbit/Worker.py:287 #, python-format msgid "Errors: %d" msgstr "Erros: %d" #. TRANSLATORS: The "deep scan" feature searches over broad #. areas of the file system such as the user's whole home directory #. or all the system executables. #: ../bleachbit/Worker.py:303 msgid "Please wait. Running deep scan." msgstr "Por favor aguarde pelo fim da análise completa" #. TRANSLATORS: %s is replaced with Firefox, System, etc. #: ../bleachbit/Worker.py:332 #, python-format msgid "Please wait. Previewing %s." msgstr "Por favor aguarde. A pré-visualizar %s." #: ../bleachbit/Update.py:77 msgid "New winapp2.ini was downloaded." msgstr "Transferida uma nova versão de winapp2.ini" #: ../bleachbit/Update.py:123 msgid "Update BleachBit" msgstr "Atualizar o BleachBit" #: ../bleachbit/Update.py:128 msgid "A new version is available." msgstr "Está disponível uma nova versão." #. TRANSLATORS: %s expands to version such as '0.8.4' or '0.8.5beta' or #. similar #: ../bleachbit/Update.py:137 #, python-format msgid "Update to version %s" msgstr "Atualizar para a versão %s" #: ../bleachbit/Update.py:163 #, python-format msgid "" "Error when opening a network connection to %s to check for updates. Please " "verify the network is working." msgstr "" "Erro ao abrir uma ligação de rede para %s para verificar a existência de " "atualizações. Verifique se a ligação de rede está a trabalhar." #: ../bleachbit/CLI.py:106 #, python-format msgid "not a valid cleaner: %s" msgstr "não é uma ferramenta válida: %s" #. TRANSLATORS: This is the command line usage. Don't translate #. %prog, but do translate usage, options, cleaner, and option. #. More information about the command line is here #. http://www.bleachbit.org/documentation/command-line #: ../bleachbit/CLI.py:133 msgid "usage: %prog [options] cleaner.option1 cleaner.option2" msgstr "utilização: %prog [opções] cleaner.option1 cleaner.option2" #: ../bleachbit/CLI.py:136 msgid "list cleaners" msgstr "listar ferramentas" #. TRANSLATORS: predefined cleaners are for applications, such as Firefox and Flash. #. This is different than cleaning an arbitrary file, such as a #. spreadsheet on the desktop. #: ../bleachbit/CLI.py:141 msgid "run cleaners to delete files and make other permanent changes" msgstr "" "executar ferramentas para apagar ficheiros ou efetuar alterações permanentes" #: ../bleachbit/CLI.py:144 msgid "shred specific files or folders" msgstr "destruir ficheiros ou pastas específicas" #: ../bleachbit/CLI.py:146 msgid "show system information" msgstr "mostrar informações do sistema" #: ../bleachbit/CLI.py:148 msgid "launch the graphical interface" msgstr "iniciar a interface gráfica" #: ../bleachbit/CLI.py:150 msgid "do not prompt for administrator privileges" msgstr "não pedir privilégios de administrador" #: ../bleachbit/CLI.py:155 msgid "preview files to be deleted and other changes" msgstr "pré-visualizar alterações e ficheiros a serem removidos" #: ../bleachbit/CLI.py:157 msgid "use options set in the graphical interface" msgstr "utilizar conjunto de opções na interface gráfica" #: ../bleachbit/CLI.py:160 msgid "update winapp2.ini, if a new version is available" msgstr "atualizar winapp2.ini, se existir uma versão mais recente" #: ../bleachbit/CLI.py:162 msgid "output version information and exit" msgstr "mostrar informações da versão e sair" #: ../bleachbit/CLI.py:164 msgid "overwrite files to hide contents" msgstr "sobrescrever ficheiros para ocultar o conteúdo" #. TRANSLATORS: this is the context menu #: ../bleachbit/Action.py:372 ../bleachbit/GUI.py:630 msgid "Clean" msgstr "Limpar" #: ../bleachbit/Action.py:392 #, python-format msgid "Run external command: %s" msgstr "Executar comando externo: %s" #: ../bleachbit/GUI.py:143 msgid "Active" msgstr "Ativo" #. TRANSLATORS: Size is the label for the column that shows how #. much space an option would clean or did clean #: ../bleachbit/GUI.py:155 msgid "Size" msgstr "Tamanho" #. TRANSLATORS: %(cleaner) may be Firefox, System, etc. #. %(option) may be cache, logs, cookies, etc. #. %(warning) may be 'This option is really slow' #: ../bleachbit/GUI.py:186 #, python-format msgid "" "Warning regarding %(cleaner)s - %(option)s:\n" "\n" "%(warning)s" msgstr "" "Aviso relacionado com %(cleaner)s - %(option)s:\n" "\n" "%(warning)s" #: ../bleachbit/GUI.py:372 msgid "You must select an operation" msgstr "Tem que selecionar uma operação" #: ../bleachbit/GUI.py:392 ../bleachbit/GUI.py:415 msgid "Done." msgstr "Concluído" #: ../bleachbit/GUI.py:428 msgid "Program to clean unnecessary files" msgstr "Programa para limpeza do sistema" #: ../bleachbit/GUI.py:434 msgid "" "GNU General Public License version 3 or later.\n" "See http://www.gnu.org/licenses/gpl-3.0.txt" msgstr "" "GNU General Public License, versão 3 ou posterior\n" "Consulte http://www.gnu.org/licenses/gpl-3.0.txt" #. TRANSLATORS: Maintain the names of translators here. #. Launchpad does this automatically for translations #. typed in Launchpad. This is a special string shown #. in the 'About' box. #: ../bleachbit/GUI.py:440 msgid "translator-credits" msgstr "" "Launchpad Contributions:\n" " Alexandre Fidalgo https://launchpad.net/~alexandremagnos15\n" " Almufadado https://launchpad.net/~almufadado\n" " Carlos Geadas https://launchpad.net/~carlosgeadas\n" " DarkVenger https://launchpad.net/~darkvenger\n" " Formatado https://launchpad.net/~form-atado\n" " Ivo Xavier https://launchpad.net/~ivoxavier\n" " Jon Amil https://launchpad.net/~amilgz\n" " Nuno Machado https://launchpad.net/~nunomsmachado\n" " Pedro Folha https://launchpad.net/~pedrovi\n" " Pedro Silva https://launchpad.net/~pedrof-silva\n" " Raphael de Paula Horta https://launchpad.net/~raphaelhorta\n" " Sérgio Marques https://launchpad.net/~sergio+marques\n" " asensio https://launchpad.net/~asensio\n" " nglnx https://launchpad.net/~nglnx" #: ../bleachbit/GUI.py:452 msgid "System information" msgstr "Informação do sistema" #: ../bleachbit/GUI.py:525 msgid "Choose files to shred" msgstr "Escolha ficheiros a destruir" #: ../bleachbit/GUI.py:528 msgid "Choose folder to shred" msgstr "Escolha a pasta a destruir" #. TRANSLATORS: this is the context menu #: ../bleachbit/GUI.py:625 msgid "Preview" msgstr "Pré-visualizar" #: ../bleachbit/GUI.py:694 msgid "_Shred Files" msgstr "De_struir ficheiros" #: ../bleachbit/GUI.py:696 msgid "Sh_red Folders" msgstr "Dest_ruir pastas" #: ../bleachbit/GUI.py:698 msgid "_Wipe Free Space" msgstr "_Limpar espaço livre" #: ../bleachbit/GUI.py:700 msgid "S_hred Settings and Quit" msgstr "D_estruir definições e sair" #: ../bleachbit/GUI.py:702 msgid "_Quit" msgstr "_Sair" #: ../bleachbit/GUI.py:704 msgid "_File" msgstr "_Ficheiro" #: ../bleachbit/GUI.py:707 msgid "_Edit" msgstr "_Editar" #: ../bleachbit/GUI.py:708 msgid "Help Contents" msgstr "Conteúdo da ajuda" #: ../bleachbit/GUI.py:711 msgid "_Release Notes" msgstr "Notas da ve_rsão" #: ../bleachbit/GUI.py:714 msgid "_System Information" msgstr "Informaçõe_s do sistema" #: ../bleachbit/GUI.py:717 msgid "_About" msgstr "_Acerca" #: ../bleachbit/GUI.py:718 msgid "_Help" msgstr "Aj_uda" #: ../bleachbit/GUI.py:743 msgctxt "button" msgid "Preview" msgstr "Pré-visualizar" #: ../bleachbit/GUI.py:748 msgid "Preview files in the selected operations (without deleting any files)" msgstr "Pré-visualizar ficheiros das operações selecionadas (sem remoção)" #: ../bleachbit/GUI.py:758 msgctxt "button" msgid "Clean" msgstr "Limpar" #: ../bleachbit/GUI.py:762 msgid "Clean files in the selected operations" msgstr "Limpar ficheiros das operações selecionadas" #: ../bleachbit/GUI.py:851 msgid "Error when checking for updates: " msgstr "Ocorreu um erro ao procurar atualizações: " #: ../bleachbit/GUI.py:891 msgid "" "Error loading the SQLite module: the antivirus software may be blocking it." msgstr "" "Ocorreu um erro ao carregar o módulo SQLite. O antivírus pode estar a " "bloquear o módulo." #: ../bleachbit/GUI.py:894 msgid "" "You are running BleachBit with administrative privileges for cleaning shared " "parts of the system, and references to the user profile folder will clean " "only the root account." msgstr "" "Está a executar o BleachBit com privilégios de administrador para limpar " "partes partilhadas do sistema e as referências ao perfil de utilizador " "apenas irão limpar a conta de root." bleachbit-2.0/po/pt_BR.po0000644000175000017500000014057113245436307013375 0ustar hlehle# Brazilian Portuguese translation for bleachbit # Copyright (c) 2009 Rosetta Contributors and Canonical Ltd 2009 # This file is distributed under the same license as the bleachbit package. # FIRST AUTHOR , 2009. # msgid "" msgstr "" "Project-Id-Version: bleachbit\n" "Report-Msgid-Bugs-To: FULL NAME \n" "POT-Creation-Date: 2017-02-11 11:12-0700\n" "PO-Revision-Date: 2017-11-13 14:30+0000\n" "Last-Translator: Gabriel D'Ambrosio \n" "Language-Team: Brazilian Portuguese \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n > 1;\n" "X-Launchpad-Export-Date: 2017-11-14 02:36+0000\n" "X-Generator: Launchpad (build 18505)\n" #: ../cleaners/mc.xml ../cleaners/tortoisesvn.xml ../cleaners/vim.xml #: ../cleaners/safari.xml ../cleaners/links2.xml ../cleaners/seamonkey.xml #: ../cleaners/realplayer.xml ../cleaners/windows_defender.xml #: ../cleaners/d4x.xml ../cleaners/sqlite3.xml #: ../cleaners/internet_explorer.xml ../cleaners/libreoffice.xml #: ../cleaners/easytag.xml ../cleaners/bash.xml ../cleaners/nautilus.xml #: ../cleaners/octave.xml ../cleaners/elinks.xml ../cleaners/chromium.xml #: ../cleaners/google_chrome.xml msgid "History" msgstr "Histórico" #: ../cleaners/mc.xml ../cleaners/tortoisesvn.xml ../cleaners/links2.xml #: ../cleaners/realplayer.xml ../cleaners/d4x.xml ../cleaners/libreoffice.xml #: ../cleaners/easytag.xml ../cleaners/nautilus.xml ../cleaners/gnome.xml #: ../bleachbit/Cleaner.py:349 ../bleachbit/Cleaner.py:423 #: ../bleachbit/Cleaner.py:432 msgid "Delete the usage history" msgstr "Apagar o histórico de utilização" #: ../cleaners/gpodder.xml ../cleaners/hippo_opensim_viewer.xml #: ../cleaners/thumbnails.xml ../cleaners/safari.xml ../cleaners/emesene.xml #: ../cleaners/liferea.xml ../cleaners/seamonkey.xml ../cleaners/vuze.xml #: ../cleaners/yahoo_messenger.xml ../cleaners/pidgin.xml #: ../cleaners/adobe_reader.xml ../cleaners/evolution.xml #: ../cleaners/tremulous.xml ../cleaners/libreoffice.xml ../cleaners/xine.xml #: ../cleaners/nexuiz.xml ../cleaners/exaile.xml ../cleaners/opera.xml #: ../cleaners/amsn.xml ../cleaners/gftp.xml ../cleaners/miro.xml #: ../cleaners/beagle.xml ../cleaners/kde.xml ../cleaners/epiphany.xml #: ../cleaners/flash.xml ../cleaners/secondlife_viewer.xml ../cleaners/java.xml #: ../cleaners/chromium.xml ../cleaners/audacious.xml ../cleaners/rhythmbox.xml #: ../cleaners/google_chrome.xml ../cleaners/thunderbird.xml #: ../bleachbit/Cleaner.py:192 ../bleachbit/Cleaner.py:370 #: ../bleachbit/Cleaner.py:455 msgid "Cache" msgstr "Cache" #: ../cleaners/gpodder.xml ../cleaners/yum.xml #: ../cleaners/hippo_opensim_viewer.xml ../cleaners/thumbnails.xml #: ../cleaners/windows_explorer.xml ../cleaners/liferea.xml #: ../cleaners/vuze.xml ../cleaners/yahoo_messenger.xml ../cleaners/pidgin.xml #: ../cleaners/adobe_reader.xml ../cleaners/evolution.xml #: ../cleaners/libreoffice.xml ../cleaners/apt.xml ../cleaners/xine.xml #: ../cleaners/nexuiz.xml ../cleaners/exaile.xml ../cleaners/amsn.xml #: ../cleaners/gftp.xml ../cleaners/miro.xml ../cleaners/beagle.xml #: ../cleaners/kde.xml ../cleaners/flash.xml ../cleaners/secondlife_viewer.xml #: ../cleaners/java.xml ../cleaners/audacious.xml ../cleaners/rhythmbox.xml #: ../bleachbit/Cleaner.py:370 ../bleachbit/Cleaner.py:455 #: ../bleachbit/Cleaner.py:489 ../bleachbit/Cleaner.py:491 msgid "Delete the cache" msgstr "Apagar o cache" #. TRANSLATORS: Vacuum is a verb. The term is jargon #. from the SQLite database. Microsoft Access uses #. the term 'Compact Database' (which you may translate #. instead). Another synonym is 'defragment.' #: ../cleaners/gpodder.xml ../cleaners/yum.xml ../cleaners/safari.xml #: ../cleaners/liferea.xml ../cleaners/chromium.xml #: ../cleaners/google_chrome.xml ../cleaners/thunderbird.xml #: ../bleachbit/Cleaner.py:214 ../bleachbit/Cleaner.py:360 #: ../bleachbit/Action.py:445 msgid "Vacuum" msgstr "Compactar Banco de dados" #: ../cleaners/gpodder.xml ../cleaners/yum.xml ../cleaners/safari.xml #: ../cleaners/liferea.xml ../cleaners/chromium.xml #: ../cleaners/google_chrome.xml ../cleaners/thunderbird.xml #: ../bleachbit/Cleaner.py:215 msgid "" "Clean database fragmentation to reduce space and improve speed without " "removing any data" msgstr "" "Limpa a fragmentação no banco de dados para reduzir o espaço e melhorar a " "velocidade sem remover quaisquer dados" #: ../cleaners/yum.xml ../cleaners/apt.xml msgid "Package manager" msgstr "Gerenciador de pacotes" #: ../cleaners/warzone2100.xml ../cleaners/hippo_opensim_viewer.xml #: ../cleaners/gl-117.xml ../cleaners/tremulous.xml ../cleaners/nexuiz.xml #: ../cleaners/secondlife_viewer.xml msgid "Game" msgstr "Jogo" #: ../cleaners/warzone2100.xml ../cleaners/hippo_opensim_viewer.xml #: ../cleaners/teamviewer.xml ../cleaners/realplayer.xml ../cleaners/vuze.xml #: ../cleaners/yahoo_messenger.xml ../cleaners/amule.xml #: ../cleaners/easytag.xml ../cleaners/exaile.xml ../cleaners/screenlets.xml #: ../cleaners/gftp.xml ../cleaners/miro.xml ../cleaners/audacious.xml #: ../bleachbit/Cleaner.py:486 msgid "Logs" msgstr "Registros" #: ../cleaners/warzone2100.xml ../cleaners/hippo_opensim_viewer.xml #: ../cleaners/teamviewer.xml ../cleaners/realplayer.xml ../cleaners/vuze.xml #: ../cleaners/yahoo_messenger.xml ../cleaners/amule.xml ../cleaners/exaile.xml #: ../cleaners/screenlets.xml ../cleaners/gftp.xml ../cleaners/miro.xml #: ../cleaners/audacious.xml ../bleachbit/Cleaner.py:486 msgid "Delete the logs" msgstr "Apagar os registros" #: ../cleaners/thumbnails.xml ../cleaners/windows_explorer.xml msgid "Thumbnails" msgstr "Miniaturas" #: ../cleaners/thumbnails.xml msgid "Icons for files on the system" msgstr "Ícones para arquivos no sistema" #: ../cleaners/vim.xml ../cleaners/gedit.xml msgid "Editor" msgstr "Editor" #: ../cleaners/vim.xml msgid "" "Delete ~/.viminfo which includes file history, command history, and buffers" msgstr "" "Apagar ~/.viminfo, apagará o histórico de arquivos, histórico de comandos, e " "arquivos alojados na memória" #: ../cleaners/filezilla.xml ../cleaners/transmission.xml ../cleaners/vuze.xml #: ../cleaners/amule.xml ../cleaners/gftp.xml msgid "File transfer client" msgstr "Cliente de transferência de arquivos" #: ../cleaners/filezilla.xml ../cleaners/paint.xml #: ../cleaners/windows_media_player.xml ../cleaners/windows_explorer.xml #: ../cleaners/teamviewer.xml ../cleaners/microsoft_office.xml #: ../cleaners/vlc.xml ../cleaners/adobe_reader.xml ../cleaners/winamp.xml #: ../cleaners/winzip.xml ../cleaners/winrar.xml ../cleaners/audacious.xml #: ../cleaners/wordpad.xml ../bleachbit/Cleaner.py:371 msgid "Most recently used" msgstr "Utilizado mais recentemente" #: ../cleaners/filezilla.xml ../cleaners/windows_explorer.xml #: ../cleaners/gwenview.xml ../cleaners/adobe_reader.xml ../cleaners/gedit.xml #: ../cleaners/kde.xml ../cleaners/audacious.xml ../bleachbit/Cleaner.py:372 #: ../bleachbit/Cleaner.py:469 msgid "Delete the list of recently used documents" msgstr "Excluir a lista de documentos usados recentemente" #: ../cleaners/skype.xml ../cleaners/emesene.xml #: ../cleaners/yahoo_messenger.xml ../cleaners/pidgin.xml ../cleaners/amsn.xml msgid "Chat client" msgstr "Cliente de Bate-papo" #: ../cleaners/skype.xml ../cleaners/hexchat.xml ../cleaners/emesene.xml #: ../cleaners/seamonkey.xml ../cleaners/yahoo_messenger.xml #: ../cleaners/pidgin.xml ../cleaners/amsn.xml msgid "Chat logs" msgstr "Registros de conversas" #: ../cleaners/skype.xml ../cleaners/hexchat.xml ../cleaners/emesene.xml #: ../cleaners/seamonkey.xml ../cleaners/yahoo_messenger.xml #: ../cleaners/pidgin.xml ../cleaners/amsn.xml msgid "Delete the chat logs" msgstr "Apagar os registros de conversas" #: ../cleaners/skype.xml msgid "Installers" msgstr "Instaladores" #: ../cleaners/skype.xml msgid "Delete cached patches and installers" msgstr "Apagar pacotes de atualizações e instaladores no cache" #: ../cleaners/hexchat.xml msgid "IRC client formerly known as XChat" msgstr "Cliente de IRC conhecido anteriormente como XChat" #: ../cleaners/safari.xml ../cleaners/links2.xml ../cleaners/seamonkey.xml #: ../cleaners/konqueror.xml ../cleaners/internet_explorer.xml #: ../cleaners/opera.xml ../cleaners/epiphany.xml ../cleaners/elinks.xml #: ../cleaners/chromium.xml ../cleaners/google_chrome.xml #: ../bleachbit/Cleaner.py:226 msgid "Web browser" msgstr "Navegador de rede" #: ../cleaners/safari.xml ../cleaners/seamonkey.xml ../cleaners/opera.xml #: ../cleaners/epiphany.xml ../cleaners/chromium.xml #: ../cleaners/google_chrome.xml ../cleaners/thunderbird.xml #: ../bleachbit/Cleaner.py:193 msgid "Delete the web cache, which reduces time to display revisited pages" msgstr "" "Apagar o cache do navegador. O cache reduz o tempo para exibir páginas " "revisitadas." #: ../cleaners/safari.xml ../cleaners/liferea.xml ../cleaners/seamonkey.xml #: ../cleaners/realplayer.xml ../cleaners/konqueror.xml #: ../cleaners/internet_explorer.xml ../cleaners/opera.xml #: ../cleaners/epiphany.xml ../cleaners/flash.xml ../cleaners/silverlight.xml #: ../cleaners/chromium.xml ../cleaners/google_chrome.xml #: ../cleaners/thunderbird.xml ../bleachbit/Cleaner.py:194 msgid "Cookies" msgstr "Cookies" #: ../cleaners/safari.xml ../cleaners/liferea.xml ../cleaners/seamonkey.xml #: ../cleaners/realplayer.xml ../cleaners/konqueror.xml #: ../cleaners/internet_explorer.xml ../cleaners/opera.xml #: ../cleaners/epiphany.xml ../cleaners/flash.xml ../cleaners/silverlight.xml #: ../cleaners/chromium.xml ../cleaners/google_chrome.xml #: ../cleaners/thunderbird.xml ../bleachbit/Cleaner.py:195 msgid "" "Delete cookies, which contain information such as web site preferences, " "authentication, and tracking identification" msgstr "" "Apagar cookies, que contenham informações tais como preferências de páginas " "de rede, autenticação e identificação de rastreamento" #: ../cleaners/safari.xml ../cleaners/konqueror.xml #: ../cleaners/internet_explorer.xml ../cleaners/opera.xml #: ../bleachbit/Cleaner.py:213 msgid "List of visited web pages" msgstr "Lista de páginas da web visitadas" #. Torrent software can block a list of IP addresses, such as those that may belong to malware or anti-piracy organizations #: ../cleaners/transmission.xml msgid "Blocklists" msgstr "Listas de bloqueios" #: ../cleaners/transmission.xml ../cleaners/windows_defender.xml #: ../cleaners/beagle.xml ../cleaners/thunderbird.xml ../cleaners/deepscan.xml #: ../bleachbit/Cleaner.py:197 msgid "Delete the files" msgstr "Apagar os arquivos" #: ../cleaners/transmission.xml msgid "Blocklists will need update to work." msgstr "Listas de bloqueios necessitarão ser atualizadas para funcionarem" #: ../cleaners/transmission.xml msgid "Torrents" msgstr "Torrents" #: ../cleaners/transmission.xml msgid "Delete the torrents (just the metadata but not the files described)" msgstr "Apagar os torrents (só os metadados, não os arquivos descritos)" #: ../cleaners/transmission.xml msgid "Statistics" msgstr "Estatísticas" #: ../cleaners/transmission.xml msgid "Delete the file" msgstr "Apagar o arquivo" #: ../cleaners/paint.xml ../cleaners/windows_media_player.xml #: ../cleaners/windows_explorer.xml ../cleaners/teamviewer.xml #: ../cleaners/microsoft_office.xml ../cleaners/vlc.xml ../cleaners/winamp.xml #: ../cleaners/winzip.xml ../cleaners/winrar.xml ../cleaners/wordpad.xml msgid "Delete the most recently used list" msgstr "Apagar a lista de utilizado mais recentemente" #: ../cleaners/emesene.xml msgid "Delete the avatars and emoticons cache" msgstr "Apagar os avatares e emoticons em cache" #: ../cleaners/windows_media_player.xml ../cleaners/realplayer.xml #: ../cleaners/vlc.xml ../cleaners/winamp.xml msgid "Media player" msgstr "Reprodutor de multimídia" #: ../cleaners/windows_explorer.xml ../cleaners/nautilus.xml msgid "File manager" msgstr "Gerenciador de arquivos" #: ../cleaners/windows_explorer.xml ../cleaners/gwenview.xml #: ../cleaners/gedit.xml ../cleaners/kde.xml ../bleachbit/Cleaner.py:468 #: ../bleachbit/Cleaner.py:663 msgid "Recent documents list" msgstr "Lista de documentos recentes" #: ../cleaners/windows_explorer.xml msgid "" "This option will reset pinned locations in Quick Access to their defaults." msgstr "" "Esta opção redefinirá os locais fixados no Acesso Rápido para seus padrões." #. In Windows 'Run' is the dialog in the Start menu #. In GNOME 'Run' is the dialog shown when typing ALT+F2' #: ../cleaners/windows_explorer.xml ../cleaners/gnome.xml msgid "Run" msgstr "Executar" #: ../cleaners/windows_explorer.xml ../cleaners/opera.xml ../cleaners/gnome.xml #: ../cleaners/google_toolbar.xml msgid "Search history" msgstr "Histórico de pesquisa" #: ../cleaners/windows_explorer.xml ../cleaners/opera.xml ../cleaners/gnome.xml #: ../cleaners/google_toolbar.xml msgid "Delete the search history" msgstr "Apagar o histórico de pesquisa" #: ../cleaners/windows_explorer.xml msgid "This will restart Windows Explorer." msgstr "Isso vai reiniciar o Windows Explorer." #: ../cleaners/gl-117.xml ../cleaners/microsoft_office.xml #: ../cleaners/beagle.xml ../cleaners/secondlife_viewer.xml ../cleaners/x11.xml msgid "Debug logs" msgstr "Registros de depuração" #: ../cleaners/gl-117.xml ../cleaners/microsoft_office.xml #: ../cleaners/easytag.xml ../cleaners/beagle.xml #: ../cleaners/secondlife_viewer.xml ../cleaners/x11.xml msgid "Delete the debug logs" msgstr "Apagar os registros de depuração" #: ../cleaners/google_earth.xml ../cleaners/winetricks.xml ../cleaners/vuze.xml #: ../cleaners/adobe_reader.xml ../cleaners/amule.xml ../cleaners/wine.xml #: ../cleaners/internet_explorer.xml ../cleaners/gimp.xml ../cleaners/kde.xml #: ../cleaners/deepscan.xml ../bleachbit/Cleaner.py:520 msgid "Temporary files" msgstr "Arquivos temporários" #: ../cleaners/google_earth.xml ../cleaners/winetricks.xml ../cleaners/vuze.xml #: ../cleaners/adobe_reader.xml ../cleaners/amule.xml ../cleaners/wine.xml #: ../cleaners/internet_explorer.xml ../cleaners/gimp.xml ../cleaners/kde.xml #: ../cleaners/deepscan.xml ../bleachbit/Cleaner.py:520 msgid "Delete the temporary files" msgstr "Apagar os arquivos temporários" #: ../cleaners/seamonkey.xml ../cleaners/opera.xml ../bleachbit/Cleaner.py:201 msgid "Download history" msgstr "Histórico de download" #: ../cleaners/seamonkey.xml ../cleaners/opera.xml ../bleachbit/Cleaner.py:201 msgid "List of files downloaded" msgstr "Lista de arquivos baixados" #: ../cleaners/seamonkey.xml msgid "Delete the list of visited web pages" msgstr "Excluir a lista de páginas da web visitadas" #: ../cleaners/vuze.xml ../cleaners/deepscan.xml ../bleachbit/Cleaner.py:190 msgid "Backup files" msgstr "Arquivos de cópia de segurança" #: ../cleaners/vuze.xml ../cleaners/deepscan.xml ../bleachbit/Cleaner.py:191 msgid "Delete the backup files" msgstr "Apagar os arquivos de cópia de segurança" #: ../cleaners/konqueror.xml ../cleaners/opera.xml ../cleaners/chromium.xml msgid "Current session" msgstr "Sessão atual" #: ../cleaners/konqueror.xml ../cleaners/opera.xml ../cleaners/chromium.xml msgid "Delete the current session" msgstr "Apagar a sessão atual" #: ../cleaners/konqueror.xml ../cleaners/opera.xml ../bleachbit/Cleaner.py:213 msgid "URL history" msgstr "Histórico de endereços de URL" #: ../cleaners/microsoft_office.xml ../cleaners/libreoffice.xml #: ../bleachbit/Cleaner.py:375 msgid "Office suite" msgstr "Pacote de escritório" #: ../cleaners/windows_defender.xml msgid "Anti-virus" msgstr "Antivírus" #: ../cleaners/journald.xml msgid "System journals" msgstr "Sistema de registros" #: ../cleaners/journald.xml msgid "Clean old system journals" msgstr "Limpar o Sistema de registros" #: ../cleaners/adobe_reader.xml msgid "Document viewer" msgstr "Visualizador de documentos" #: ../cleaners/evolution.xml ../cleaners/thunderbird.xml msgid "Email client" msgstr "Cliente de e-mail" #: ../cleaners/tremulous.xml msgid "Delete the list of game servers" msgstr "Apagar a lista de servidores de jogos" #: ../cleaners/sqlite3.xml ../cleaners/bash.xml ../cleaners/octave.xml msgid "Delete the command history" msgstr "Apagar o histórico de comandos" #: ../cleaners/wine.xml msgid "Compatibility layer for Windows software" msgstr "Camada de compatibilidade para programa Windows" #: ../cleaners/internet_explorer.xml ../cleaners/chromium.xml #: ../cleaners/google_chrome.xml ../bleachbit/Cleaner.py:202 msgid "Form history" msgstr "Histórico de formulários" #: ../cleaners/internet_explorer.xml ../bleachbit/Cleaner.py:203 msgid "A history of forms entered in web sites and in the Search bar" msgstr "" "Um histórico de formulários preenchidos em páginas de rede e na barra de " "pesquisa" #. This software edits metadata tags, such as title and artist, in audio files #: ../cleaners/easytag.xml msgid "Audio files tagger" msgstr "Metadados de arquivos de áudio" #: ../cleaners/apt.xml msgid "Delete obsolete files" msgstr "Apagar arquivos obsoletos" #: ../cleaners/apt.xml msgid "Package lists" msgstr "Listas de pacotes" #: ../cleaners/xine.xml ../cleaners/miro.xml ../cleaners/flash.xml msgid "Multimedia viewer" msgstr "Visualizador multimídia" #: ../cleaners/recoll.xml ../cleaners/beagle.xml msgid "Search tool" msgstr "Ferramenta de pesquisa" #: ../cleaners/recoll.xml ../cleaners/beagle.xml ../cleaners/thunderbird.xml msgid "Index" msgstr "Índice" #: ../cleaners/recoll.xml msgid "" "Delete the search index, a database of words and the files they contain" msgstr "" "Apagar o índice de pesquisa. O índice de pesquisa é um banco de dados de " "palavras e os arquivos que ele contêm" #: ../cleaners/gimp.xml msgid "Graphics editor" msgstr "Editor de gráficos" #: ../cleaners/exaile.xml msgid "Downloaded podcasts" msgstr "Podcasts baixados" #: ../cleaners/exaile.xml msgid "Delete downloaded podcasts" msgstr "Apagar podcasts baixados" #: ../cleaners/bash.xml msgid "Shell" msgstr "Terminal" #. TRANSLATORS: DOM = Document Object Model. #: ../cleaners/opera.xml ../cleaners/epiphany.xml ../cleaners/chromium.xml #: ../cleaners/google_chrome.xml ../bleachbit/Cleaner.py:199 msgid "DOM Storage" msgstr "Armazenamento DOM" #: ../cleaners/opera.xml ../cleaners/epiphany.xml ../cleaners/chromium.xml #: ../cleaners/google_chrome.xml ../bleachbit/Cleaner.py:199 msgid "Delete HTML5 cookies" msgstr "Apagar cookies HTML5" #: ../cleaners/opera.xml ../cleaners/epiphany.xml ../cleaners/chromium.xml #: ../cleaners/google_chrome.xml ../cleaners/thunderbird.xml #: ../bleachbit/Cleaner.py:208 msgid "Passwords" msgstr "Senhas" #: ../cleaners/opera.xml ../cleaners/epiphany.xml ../cleaners/chromium.xml #: ../cleaners/google_chrome.xml ../cleaners/thunderbird.xml #: ../bleachbit/Cleaner.py:209 msgid "" "A database of usernames and passwords as well as a list of sites that should " "not store passwords" msgstr "" "Um banco de dados de nomes de usuários e senhas, bem como uma lista de " "páginas que não armazenam senhas" #: ../cleaners/opera.xml ../cleaners/epiphany.xml ../cleaners/chromium.xml #: ../cleaners/google_chrome.xml ../cleaners/thunderbird.xml #: ../bleachbit/Cleaner.py:211 msgid "This option will delete your saved passwords." msgstr "Esta opção irá apagar suas senhas salvas." #: ../cleaners/nautilus.xml msgid "Custom folders will be reset." msgstr "Pastas personalizadas serão restauradas ao padrão." #: ../cleaners/gnome.xml ../cleaners/kde.xml msgid "Desktop environment" msgstr "Ambiente da Área de trabalho" #: ../cleaners/screenlets.xml msgid "Widgets for the desktop" msgstr "Widgets para a Área de trabalho" #: ../cleaners/epiphany.xml msgid "Places" msgstr "Locais" #: ../cleaners/epiphany.xml msgid "" "A database of URLs including bookmarks, favicons, and a history of visited " "web sites" msgstr "" "Um banco de dados de URLs incluindo favoritos, favicons e um histórico de " "páginas visitadas" #: ../cleaners/epiphany.xml msgid "This option deletes all bookmarks." msgstr "Esta opção apaga todos os favoritos." #: ../cleaners/winrar.xml msgid "File archiver" msgstr "Compactador de arquivos" #: ../cleaners/elinks.xml msgid "Delete the cookies, visited URLs, and search history" msgstr "Apagar os cookies, URLs visitados e histórico de pesquisa" #: ../cleaners/chromium.xml ../cleaners/google_chrome.xml msgid "A history of forms entered in web sites" msgstr "Um histórico de formulários preenchidos em sites da Web" #: ../cleaners/chromium.xml ../cleaners/google_chrome.xml msgid "" "Delete the history which includes visited sites, downloads, and thumbnails" msgstr "" "Apagar o histórico. O histórico inclui páginas visitadas, downloads e " "miniaturas" #: ../cleaners/chromium.xml ../cleaners/google_chrome.xml msgid "Search engines" msgstr "Mecanismos de pesquisa" #. 'Factory' means a search engine that is installed by default 'from the factory,' but this is different than a 'default search engine' https://lists.launchpad.net/launchpad-translators/msg00283.html #: ../cleaners/chromium.xml ../cleaners/google_chrome.xml msgid "" "Reset the search engine usage history and delete non-factory search engines, " "some of which are added automatically" msgstr "" "Restaura o histórico de uso do mecanismo de pesquisa, apagando mecanismos de " "buscas não padrões, alguns dos quais são adicionados automaticamente" #: ../cleaners/audacious.xml msgid "Audio player" msgstr "Leitor de áudio" #: ../cleaners/rhythmbox.xml msgid "Database" msgstr "Banco de dados" #: ../cleaners/rhythmbox.xml msgid "" "Delete the database, which contain information such as play count and last " "played" msgstr "" "Apagar o banco de dados, que contêm informações como pontuações em jogos e o " "jogo que foi jogado pela última vez" #: ../cleaners/google_chrome.xml msgid "Session" msgstr "Sessão" #: ../cleaners/google_chrome.xml msgid "Delete the current and last sessions" msgstr "Apagar a atual e últimas sessões" #: ../cleaners/x11.xml msgid "Windowing system" msgstr "Sistema de janelas" #: ../cleaners/wordpad.xml msgid "Word processor" msgstr "Processador de texto" #: ../cleaners/deepscan.xml msgid "Deep scan" msgstr "Análise profunda" #: ../cleaners/deepscan.xml msgid "Clean files widely scattered across the disk" msgstr "Limpa arquivos espalhados por todo o disco" #: ../cleaners/deepscan.xml msgid "Inspect the preview for any files you want to keep." msgstr "" "Inspeciona a pré-visualização para todos os arquivos que você deseja manter." #: ../cleaners/deepscan.xml msgid "This option is slow." msgstr "Esta opção é lenta." #: ../bleachbit.desktop msgid "Unnecessary file cleaner" msgstr "Limpar arquivos desnecessários" #: ../bleachbit.desktop msgid "Free space and maintain privacy" msgstr "Libera espaço e mantém sua privacidade" #: ../bleachbit/FileUtilities.py:668 msgid "" "There was at least one file on a file system that does not support advanced " "overwriting." msgstr "" "Havia pelo menos um arquivo no sistema de arquivos que era incompatível com " "sobrescrição avançada." #: ../bleachbit/Unix.py:574 #, python-format msgid "Executable not found: %s" msgstr "Executável %s não encontrado" #. TRANSLATORS: %s expands to a name such as 'Firefox' or 'System'. #: ../bleachbit/Unix.py:623 ../bleachbit/Worker.py:136 #, python-format msgid "" "%s cannot be cleaned because it is currently running. Close it, and try " "again." msgstr "" "% s não pode ser limpo porque ele está atualmente em execução. Feche-o e " "tente novamente." #: ../bleachbit/GuiBasic.py:112 msgid "Delete confirmation" msgstr "Confirmação de exclusão" #: ../bleachbit/GuiBasic.py:122 msgid "" "Are you sure you want to permanently delete files according to the selected " "operations? The actual files that will be deleted may have changed since " "you ran the preview." msgstr "" "Você tem certeza que deseja apagar permanentemente os arquivos de acordo com " "as operações selecionadas? Os arquivos reais que serão excluídos podem ter " "mudado desde que você executou a pré-visualização." #: ../bleachbit/GuiBasic.py:125 msgid "Are you sure you want to permanently delete these files?" msgstr "" "Você tem certeza que deseja apagar permanentemente este(s) arquivo(s)?" #: ../bleachbit/GuiBasic.py:162 #, python-format msgid "" "Because you are running as root, please manually open this link in a web " "browser:\n" "%s" msgstr "" "Pelo fato de você estar executando como root, por favor, abra manualmente " "este link em um navegador:\n" "%s" #. TRANSLATORS: %s expands to www.bleachbit.org or similar #: ../bleachbit/GuiBasic.py:174 #, python-format msgid "Open web browser to %s?" msgstr "Abrir o navegador para %s?" #. TRANSLATORS: This is the label in the log indicating was #. skipped because it matches the whitelist #: ../bleachbit/Command.py:47 msgid "Skip" msgstr "Pular" #. TRANSLATORS: This is the label in the log indicating will be #. deleted (for previews) or was actually deleted #: ../bleachbit/Command.py:77 msgid "Delete" msgstr "Apagar" #: ../bleachbit/Command.py:99 msgid "" "At least one file was locked by another process, so its contents could not " "be overwritten. It will be marked for deletion upon system reboot." msgstr "" "Pelo menos um arquivo foi bloqueado por outro processo, portanto, seu " "conteúdo não pôde ser substituído. Ele será marcado para exclusão após a " "reinicialização do sistema." #. TRANSLATORS: The file will be deleted when the #. system reboots #: ../bleachbit/Command.py:102 msgid "Mark for deletion" msgstr "Marcar para exclusão" #. TRANSLATORS: Parts of this file will be deleted #: ../bleachbit/Command.py:199 ../bleachbit/Command.py:233 #: ../bleachbit/Action.py:254 ../bleachbit/Action.py:267 #: ../bleachbit/Action.py:280 ../bleachbit/Action.py:293 #: ../bleachbit/Action.py:306 msgid "Clean file" msgstr "Limpar arquivo" #. TRANSLATORS: The file will be truncated to 0 bytes in length #: ../bleachbit/Command.py:275 msgid "Truncate" msgstr "Truncar" #: ../bleachbit/Command.py:317 msgid "Delete registry key" msgstr "Apagar chave de registro" #. TRANSLATORS: This is cleaner name for cleaners imported from winapp2.ini #: ../bleachbit/Winapp.py:44 msgid "Applications" msgstr "Aplicações" #. TRANSLATORS: This is cleaner name for cleaners imported #. from winapp2.ini #: ../bleachbit/Winapp.py:47 msgid "Internet" msgstr "Internet" #. TRANSLATORS: This is cleaner name for cleaners imported #. from winapp2.ini #: ../bleachbit/Winapp.py:50 msgid "Multimedia" msgstr "Multimídia" #. TRANSLATORS: This is cleaner name for cleaners imported #. from winapp2.ini #: ../bleachbit/Winapp.py:53 msgid "Utilities" msgstr "Utilitários" #: ../bleachbit/Winapp.py:64 msgid "Games" msgstr "Jogos" #: ../bleachbit/Winapp.py:162 msgid "Imported from winapp2.ini" msgstr "Importado de winapp2.ini" #: ../bleachbit/Cleaner.py:197 msgid "Crash reports" msgstr "Relatórios de falhas" #: ../bleachbit/Cleaner.py:204 msgid "Session restore" msgstr "Restauração de sessão" #: ../bleachbit/Cleaner.py:205 msgid "Loads the initial session after the browser closes or crashes" msgstr "Carrega a sessão inicial após o navegador fechar ou falhar" #: ../bleachbit/Cleaner.py:207 msgid "Site preferences" msgstr "Preferências de páginas" #: ../bleachbit/Cleaner.py:207 msgid "Settings for individual sites" msgstr "Configurações por sites individuais" #. TRANSLATORS: desktop entries are .desktop files in Linux that #. make up the application menu (the menu that shows BleachBit, #. Firefox, and others. The .desktop files also associate file #. types, so clicking on an .html file in Nautilus brings up #. Firefox. #. More information: #. http://standards.freedesktop.org/menu-spec/latest/index.html#introduction #: ../bleachbit/Cleaner.py:453 msgid "Broken desktop files" msgstr "Arquivos .desktop inválidos" #: ../bleachbit/Cleaner.py:454 msgid "Delete broken application menu entries and file associations" msgstr "" "Apagar entradas do menu de aplicação e associações de arquivos inválidos" #. TRANSLATORS: Localizations are files supporting specific #. languages, so applications appear in Spanish, etc. #: ../bleachbit/Cleaner.py:458 msgid "Localizations" msgstr "Idiomas" #: ../bleachbit/Cleaner.py:459 msgid "Delete files for unwanted languages" msgstr "Apagar arquivos para idiomas indesejados" #: ../bleachbit/Cleaner.py:461 msgid "Configure this option in the preferences." msgstr "Configure esta opção nas preferências" #: ../bleachbit/Cleaner.py:467 msgid "Rotated logs" msgstr "Rotação de logs" #: ../bleachbit/Cleaner.py:467 msgid "Delete old system logs" msgstr "Apagar registros de sistema antigos" #: ../bleachbit/Cleaner.py:470 msgid "Trash" msgstr "Lixeira" #: ../bleachbit/Cleaner.py:470 msgid "Empty the trash" msgstr "Esvaziar a lixeira" #: ../bleachbit/Cleaner.py:476 ../bleachbit/Cleaner.py:627 #: ../bleachbit/Worker.py:184 msgid "Memory" msgstr "Memória" #. TRANSLATORS: 'free' means 'unallocated' #: ../bleachbit/Cleaner.py:478 msgid "Wipe the swap and free memory" msgstr "Limpar o swap e liberar memória" #: ../bleachbit/Cleaner.py:480 msgid "This option is experimental and may cause system problems." msgstr "Esta opção é experimental e pode causar problemas no sistema." #: ../bleachbit/Cleaner.py:488 msgid "Memory dump" msgstr "Despejo de memória" #: ../bleachbit/Cleaner.py:488 msgid "Delete the file memory.dmp" msgstr "Apagar o arquivo memory.dmp" #. TRANSLATORS: Prefetch is Microsoft Windows jargon. #: ../bleachbit/Cleaner.py:491 msgid "Prefetch" msgstr "Pré busca" #: ../bleachbit/Cleaner.py:493 msgid "Recycle bin" msgstr "Lixeira" #: ../bleachbit/Cleaner.py:493 ../bleachbit/Cleaner.py:787 msgid "Empty the recycle bin" msgstr "Esvaziar a lixeira" #. TRANSLATORS: 'Update' is a noun, and 'Update uninstallers' is an option to delete #. the uninstallers for software updates. #: ../bleachbit/Cleaner.py:496 msgid "Update uninstallers" msgstr "Desinstaladores para atualizações" #: ../bleachbit/Cleaner.py:497 msgid "" "Delete uninstallers for Microsoft updates including hotfixes, service packs, " "and Internet Explorer updates" msgstr "" "Apagar desinstaladores das atualizações da Microsoft incluindo hotfixes, " "service packs e atualizações do Internet Explorer" #: ../bleachbit/Cleaner.py:504 ../bleachbit/Cleaner.py:727 msgid "Clipboard" msgstr "Área de transferência" #: ../bleachbit/Cleaner.py:505 msgid "" "The desktop environment's clipboard used for copy and paste operations" msgstr "" "Área de transferência do ambiente da Área de trabalho. A área de " "transferência é usada para operações de copiar e colar" #. TRANSLATORS: "Custom" is an option allowing the user to specify which #. files and folders will be erased. #: ../bleachbit/Cleaner.py:512 ../bleachbit/GuiPreferences.py:66 msgid "Custom" msgstr "Personalizar" #: ../bleachbit/Cleaner.py:513 msgid "Delete user-specified files and folders" msgstr "Apagar arquivos e pastas especificadas pelo o usuário" #. TRANSLATORS: 'free' means 'unallocated' #: ../bleachbit/Cleaner.py:515 msgid "Free disk space" msgstr "Espaço livre em disco" #. TRANSLATORS: 'free' means 'unallocated' #: ../bleachbit/Cleaner.py:517 msgid "Overwrite free disk space to hide deleted files" msgstr "Sobrescrever espaço livre em disco para ocultar arquivos apagados" #: ../bleachbit/Cleaner.py:518 msgid "This option is very slow." msgstr "Esta opção é muito lenta." #: ../bleachbit/Cleaner.py:522 msgid "The system in general" msgstr "O sistema em geral" #: ../bleachbit/Cleaner.py:524 ../bleachbit/Cleaner.py:857 msgid "System" msgstr "Sistema" #. TRANSLATORS: 'Free' means 'unallocated.' #. %s expands to a path such as C:\ or /tmp/ #: ../bleachbit/Cleaner.py:735 ../bleachbit/Cleaner.py:890 #, python-format msgid "Overwrite free disk space %s" msgstr "Sobrescrever o espaço livre no disco em %s" #: ../bleachbit/RecognizeCleanerML.py:59 msgid "Security warning" msgstr "Alerta de segurança" #: ../bleachbit/RecognizeCleanerML.py:72 msgid "" "These cleaner definitions are new or have changed. Malicious definitions can " "damage your system. If you do not trust these changes, delete the files or " "quit." msgstr "" "Essas definições de limpeza são novas ou foram alteradas. Definições " "maliciosas podem danificar seu sistema. Se você não confia nessas mudanças, " "remova os arquivos ou feche o programa." #: ../bleachbit/RecognizeCleanerML.py:88 msgctxt "column_label" msgid "Delete" msgstr "Apagar" #: ../bleachbit/RecognizeCleanerML.py:93 msgctxt "column_label" msgid "Filename" msgstr "Nome do arquivo" #. TRANSLATORS: This indicates an error. The special keyword #. %(operation)s will be replaced by 'firefox' or 'opera' or #. some other cleaner ID. The special keyword %(msg)s will be #. replaced by a message such as 'Permission denied.' #: ../bleachbit/Worker.py:74 #, python-format msgid "Exception while running operation '%(operation)s': '%(msg)s'" msgstr "Erro durante a execução da operação '%(operation)s': '%(msg)s'" #. TRANSLATORS: 'free' means 'unallocated' #: ../bleachbit/Worker.py:182 msgid "Please wait. Wiping free disk space." msgstr "Por favor, aguarde! Limpando o espaço livre em disco." #. TRANSLATORS: %s is replaced with Firefox, System, etc. #: ../bleachbit/Worker.py:184 ../bleachbit/Worker.py:332 #, python-format msgid "Please wait. Cleaning %s." msgstr "Por favor, aguarde! Limpando %s." #: ../bleachbit/Worker.py:199 msgid "Please wait. Wiping file system metadata." msgstr "Por favor, aguarde! Limpando os metadados do sistema de arquivos." #: ../bleachbit/Worker.py:202 msgid "Please wait. Cleaning up after wiping file system metadata." msgstr "" "Por favor, aguarde! Limpando após limpar os metadados do sistema de arquivos." #: ../bleachbit/Worker.py:205 #, python-format msgid "About %d minute remaining." msgid_plural "About %d minutes remaining." msgstr[0] "Em torno de %d minuto faltando." msgstr[1] "Em torno de %d minutos faltando." #. TRANSLATORS: This refers to disk space that was #. really recovered (in other words, not a preview) #: ../bleachbit/Worker.py:272 #, python-format msgid "Disk space recovered: %s" msgstr "Espaço em disco recuperado: %s" #. TRANSLATORS: This refers to a preview (no real #. changes were made yet) #: ../bleachbit/Worker.py:276 #, python-format msgid "Disk space to be recovered: %s" msgstr "Espaço em disco a ser recuperado: %s" #. TRANSLATORS: This refers to the number of files really #. deleted (in other words, not a preview). #: ../bleachbit/Worker.py:281 #, python-format msgid "Files deleted: %d" msgstr "Arquivos apagados: %d" #. TRANSLATORS: This refers to the number of files that #. would be deleted (in other words, simply a preview). #: ../bleachbit/Worker.py:285 #, python-format msgid "Files to be deleted: %d" msgstr "Arquivos a serem apagados: %d" #: ../bleachbit/Worker.py:288 #, python-format msgid "Special operations: %d" msgstr "Operações especiais: %d" #: ../bleachbit/Worker.py:291 #, python-format msgid "Errors: %d" msgstr "Erros: %d" #. TRANSLATORS: The "deep scan" feature searches over broad #. areas of the file system such as the user's whole home directory #. or all the system executables. #: ../bleachbit/Worker.py:306 msgid "Please wait. Running deep scan." msgstr "Por favor, aguarde! Executando a análise profunda." #. TRANSLATORS: %s is replaced with Firefox, System, etc. #: ../bleachbit/Worker.py:335 #, python-format msgid "Please wait. Previewing %s." msgstr "Por favor, aguarde! Visualizando %s." #: ../bleachbit/Update.py:80 msgid "New winapp2.ini was downloaded." msgstr "Novo winapp2.ini foi baixado." #: ../bleachbit/Update.py:125 msgid "Update BleachBit" msgstr "Atualizar BleachBit" #: ../bleachbit/Update.py:130 msgid "A new version is available." msgstr "Uma nova versão está disponível." #. TRANSLATORS: %s expands to version such as '0.8.4' or '0.8.5beta' or #. similar #: ../bleachbit/Update.py:139 #, python-format msgid "Update to version %s" msgstr "Atualizar para a versão %s" #: ../bleachbit/Update.py:164 #, python-format msgid "" "Error when opening a network connection to %s to check for updates. Please " "verify the network is working." msgstr "" "Erro ao abrir uma conexão de rede para %s verificar se há atualizações. Por " "favor, verifique se a rede está funcionando." #: ../bleachbit/CLI.py:106 #, python-format msgid "not a valid cleaner: %s" msgstr "%s não é válido para limpeza" #. TRANSLATORS: This is the command line usage. Don't translate #. %prog, but do translate usage, options, cleaner, and option. #. More information about the command line is here #. https://www.bleachbit.org/documentation/command-line #: ../bleachbit/CLI.py:133 msgid "usage: %prog [options] cleaner.option1 cleaner.option2" msgstr "uso: %prog [opções] limpador.opção1 limpador.opção2" #: ../bleachbit/CLI.py:136 msgid "list cleaners" msgstr "lista de limpadores" #. TRANSLATORS: predefined cleaners are for applications, such as Firefox and Flash. #. This is different than cleaning an arbitrary file, such as a #. spreadsheet on the desktop. #: ../bleachbit/CLI.py:141 msgid "run cleaners to delete files and make other permanent changes" msgstr "" "executa limpadores para apagar arquivos e fazer outras alterações permanentes" #: ../bleachbit/CLI.py:144 msgid "shred specific files or folders" msgstr "tritura arquivos e pastas específicos" #: ../bleachbit/CLI.py:146 msgid "show system information" msgstr "mostrar informações do sistema" #: ../bleachbit/CLI.py:148 msgid "launch the graphical interface" msgstr "iniciar a interface gráfica" #: ../bleachbit/CLI.py:152 msgid "do not prompt for administrator privileges" msgstr "não requisitar confirmação para privilégios administrativos" #: ../bleachbit/CLI.py:157 msgid "preview files to be deleted and other changes" msgstr "visualização de arquivos a serem excluídos e outras mudanças" #: ../bleachbit/CLI.py:161 msgid "use options set in the graphical interface" msgstr "usar opções definidas na interface gráfica" #: ../bleachbit/CLI.py:164 msgid "update winapp2.ini, if a new version is available" msgstr "atualizar winapp2.ini, se uma nova versão estiver disponível" #: ../bleachbit/CLI.py:166 msgid "output version information and exit" msgstr "exibir informações sobre a versão e sair" #: ../bleachbit/CLI.py:168 msgid "overwrite files to hide contents" msgstr "sobrescrever arquivos para ocultar seu conteúdo" #. TRANSLATORS: this is the context menu #: ../bleachbit/Action.py:382 ../bleachbit/GUI.py:632 msgid "Clean" msgstr "Limpar" #: ../bleachbit/Action.py:418 #, python-format msgid "Run external command: %s" msgstr "Executar comando externo: %s" #: ../bleachbit/GUI.py:135 ../bleachbit/GuiPreferences.py:296 msgid "Name" msgstr "Nome" #: ../bleachbit/GUI.py:143 msgid "Active" msgstr "Ativo" #. TRANSLATORS: Size is the label for the column that shows how #. much space an option would clean or did clean #: ../bleachbit/GUI.py:155 msgid "Size" msgstr "Tamanho" #. TRANSLATORS: %(cleaner) may be Firefox, System, etc. #. %(option) may be cache, logs, cookies, etc. #. %(warning) may be 'This option is really slow' #: ../bleachbit/GUI.py:186 #, python-format msgid "" "Warning regarding %(cleaner)s - %(option)s:\n" "\n" "%(warning)s" msgstr "" "Aviso sobre %(cleaner)s - %(option)s:\n" "\n" "%(warning)s" #: ../bleachbit/GUI.py:372 msgid "You must select an operation" msgstr "Você deve selecionar uma operação" #: ../bleachbit/GUI.py:391 ../bleachbit/GUI.py:413 msgid "Done." msgstr "Concluído." #: ../bleachbit/GUI.py:426 msgid "Program to clean unnecessary files" msgstr "Programar para limpar arquivos desnecessários" #: ../bleachbit/GUI.py:436 msgid "" "GNU General Public License version 3 or later.\n" "See http://www.gnu.org/licenses/gpl-3.0.txt" msgstr "" "Licença Pública Geral GNU versão 3 ou posterior.\n" "Ver em http://www.gnu.org/licenses/gpl-3.0.txt" #. TRANSLATORS: Maintain the names of translators here. #. Launchpad does this automatically for translations #. typed in Launchpad. This is a special string shown #. in the 'About' box. #: ../bleachbit/GUI.py:442 msgid "translator-credits" msgstr "" "Launchpad Contributions:\n" " Alex B. Oliveira https://launchpad.net/~gotrico\n" " Andrius Gabriel da Luz https://launchpad.net/~andriusgabriel\n" " André Gondim https://launchpad.net/~andregondim\n" " Celio Alves https://launchpad.net/~celio.alves\n" " Danilo Falcão https://launchpad.net/~fcon\n" " Eugênio F https://launchpad.net/~eugf\n" " Felipe Tanus https://launchpad.net/~fotanus\n" " Fábio Nogueira https://launchpad.net/~fnogueira\n" " Gabriel D'Ambrosio https://launchpad.net/~gabrieldz\n" " Lucas Reis https://launchpad.net/~ubuntu-luk\n" " Matheus Cavalcante https://launchpad.net/~suetamac\n" " Michele Medeiros https://launchpad.net/~medeiros-michele\n" " Neliton Pereira Jr. https://launchpad.net/~nelitonpjr\n" " Paulo Guzmán https://launchpad.net/~white-hat\n" " PresuntoRJ https://launchpad.net/~fabio-tleitao\n" " Rafael Neri https://launchpad.net/~rafepel\n" " Rodrigo Henrique https://launchpad.net/~gatofladigo1\n" " Sidney Ribeiro Júnior https://launchpad.net/~srjsoftware\n" " Stefan Yohansson da Silva Areeira Pinto https://launchpad.net/~stefan-" "yohansson\n" " Waldir Leoncio https://launchpad.net/~wleoncio\n" " Yann S. Melo https://launchpad.net/~bunger2\n" " andbelo https://launchpad.net/~andbelo" #: ../bleachbit/GUI.py:454 msgid "System information" msgstr "Informações do sistema" #: ../bleachbit/GUI.py:527 msgid "Choose files to shred" msgstr "Escolha os arquivos para triturar" #: ../bleachbit/GUI.py:530 msgid "Choose folder to shred" msgstr "Escolha a pasta para triturar" #: ../bleachbit/GUI.py:594 ../bleachbit/GuiPreferences.py:197 #: ../bleachbit/GuiPreferences.py:326 ../bleachbit/GuiPreferences.py:367 msgid "Choose a folder" msgstr "Escolha uma pasta" #. TRANSLATORS: this is the context menu #: ../bleachbit/GUI.py:627 msgid "Preview" msgstr "Visualização" #: ../bleachbit/GUI.py:734 msgid "_Shred Files" msgstr "_Triturar Arquivos" #: ../bleachbit/GUI.py:736 msgid "Sh_red Folders" msgstr "_Triturar Pastas" #: ../bleachbit/GUI.py:738 msgid "_Wipe Free Space" msgstr "_Limpar Espaço Livre" #: ../bleachbit/GUI.py:740 msgid "S_hred Settings and Quit" msgstr "Triturar Configurações e Sair" #: ../bleachbit/GUI.py:742 msgid "_Quit" msgstr "_Sair" #: ../bleachbit/GUI.py:744 msgid "_File" msgstr "_Arquivo" #: ../bleachbit/GUI.py:746 ../bleachbit/GuiPreferences.py:58 msgid "Preferences" msgstr "Preferências" #: ../bleachbit/GUI.py:747 msgid "_Edit" msgstr "_Editar" #: ../bleachbit/GUI.py:748 msgid "Help Contents" msgstr "Conteúdo da Ajuda" #: ../bleachbit/GUI.py:751 msgid "_Release Notes" msgstr "_Notas de Lançamento" #: ../bleachbit/GUI.py:754 msgid "_System Information" msgstr "_Informações do Sistema" #: ../bleachbit/GUI.py:757 msgid "_About" msgstr "_Sobre" #: ../bleachbit/GUI.py:758 msgid "_Help" msgstr "_Ajuda" #: ../bleachbit/GUI.py:783 msgctxt "button" msgid "Preview" msgstr "Visualizar" #: ../bleachbit/GUI.py:788 msgid "Preview files in the selected operations (without deleting any files)" msgstr "" "Visualiza arquivos nas operações selecionadas (sem apagar os arquivos)" #: ../bleachbit/GUI.py:798 msgctxt "button" msgid "Clean" msgstr "Limpar" #: ../bleachbit/GUI.py:802 msgid "Clean files in the selected operations" msgstr "Limpar arquivos nas operações selecionadas" #: ../bleachbit/GUI.py:893 msgid "Error when checking for updates: " msgstr "Erro durante a verificação de atualizações: " #: ../bleachbit/GUI.py:932 msgid "" "Error loading the SQLite module: the antivirus software may be blocking it." msgstr "" "Erro ao carregar o módulo do SQLite: o programa antivírus pode estar " "bloqueando." #: ../bleachbit/GUI.py:935 msgid "" "You are running BleachBit with administrative privileges for cleaning shared " "parts of the system, and references to the user profile folder will clean " "only the root account." msgstr "" "Você está executando o Bleachbit com privilégios administrativos para limpar " "partes do sistema. No que se refere a pasta de perfil do usuário irá limpar " "apenas a da conta root." #: ../bleachbit/GUI.py:940 msgid "" "Run BleachBit with administrator privileges to improve the accuracy of " "overwriting the contents of files." msgstr "" "Executar BleachBit com privilégios de administrador para melhorar a precisão " "de sobrescrever o conteúdo dos arquivos." #: ../bleachbit/GuiPreferences.py:64 msgid "General" msgstr "Geral" #: ../bleachbit/GuiPreferences.py:67 msgid "Drives" msgstr "Unidades" #: ../bleachbit/GuiPreferences.py:70 msgid "Languages" msgstr "Idiomas" #: ../bleachbit/GuiPreferences.py:72 msgid "Whitelist" msgstr "Lista branca" #: ../bleachbit/GuiPreferences.py:117 msgid "Check periodically for software updates via the Internet" msgstr "" "Verificar periodicamente por atualizações do BleachBit através da Internet" #: ../bleachbit/GuiPreferences.py:122 msgid "" "If an update is found, you will be given the option to view information " "about it. Then, you may manually download and install the update." msgstr "" "Se uma atualização for encontrada, você terá a opção de visualizar " "informações sobre ela. Em seguida, você pode baixar e instalar manualmente a " "atualização." #: ../bleachbit/GuiPreferences.py:128 msgid "Check for new beta releases" msgstr "Verificar se há novas versões beta" #: ../bleachbit/GuiPreferences.py:137 msgid "Download and update cleaners from community (winapp2.ini)" msgstr "Baixar e atualizar limpadores a partir da comunidade (winapp2.ini)" #. TRANSLATORS: This means to hide cleaners which would do #. nothing. For example, if Firefox were never used on #. this system, this option would hide Firefox to simplify #. the list of cleaners. #: ../bleachbit/GuiPreferences.py:151 msgid "Hide irrelevant cleaners" msgstr "Ocultar limpezas irrelevantes" #. TRANSLATORS: Overwriting is the same as shredding. It is a way #. to prevent recovery of the data. You could also translate #. 'Shred files to prevent recovery.' #: ../bleachbit/GuiPreferences.py:159 msgid "Overwrite contents of files to prevent recovery" msgstr "Sobrescrever o conteúdo dos arquivos para evitar a recuperação" #: ../bleachbit/GuiPreferences.py:163 msgid "" "Overwriting is ineffective on some file systems and with certain BleachBit " "operations. Overwriting is significantly slower." msgstr "" "A sobrescrição é ineficaz em alguns sistemas de arquivos e com determinadas " "operações do Bleachbit. A sobrescrição é significativamente lenta." #: ../bleachbit/GuiPreferences.py:166 msgid "Start BleachBit with computer" msgstr "Iniciar BleachBit com o computador" #: ../bleachbit/GuiPreferences.py:172 msgid "Exit after cleaning" msgstr "Fechar o BleachBit após a limpeza" #: ../bleachbit/GuiPreferences.py:178 msgid "Confirm before delete" msgstr "Confirmar antes de apagar" #: ../bleachbit/GuiPreferences.py:186 msgid "Use IEC sizes (1 KiB = 1024 bytes) instead of SI (1 kB = 1000 bytes)" msgstr "" "Usar tamanhos do IEC (1 KB = 1024 bytes) ao invés do SI (1 kB = 1000 bytes)" #: ../bleachbit/GuiPreferences.py:221 msgid "" "Choose a writable folder for each drive for which to overwrite free space." msgstr "" "Escolha uma pasta gravável em cada unidade para sobrescrever o espaço livre." #. TRANSLATORS: In the preferences dialog, this button adds a path to #. the list of paths #: ../bleachbit/GuiPreferences.py:243 msgctxt "button" msgid "Add" msgstr "Adicionar" #. TRANSLATORS: In the preferences dialog, this button removes a path #. from the list of paths #: ../bleachbit/GuiPreferences.py:247 ../bleachbit/GuiPreferences.py:458 msgctxt "button" msgid "Remove" msgstr "Remover" #: ../bleachbit/GuiPreferences.py:272 msgid "All languages will be deleted except those checked." msgstr "Todos os idiomas serão apagados exceto aqueles selecionados." #: ../bleachbit/GuiPreferences.py:288 msgid "Preserve" msgstr "Preservar" #: ../bleachbit/GuiPreferences.py:292 msgid "Code" msgstr "Código" #: ../bleachbit/GuiPreferences.py:313 ../bleachbit/GuiPreferences.py:354 msgid "Choose a file" msgstr "Escolha um arquivo" #: ../bleachbit/GuiPreferences.py:320 ../bleachbit/GuiPreferences.py:361 #: ../bleachbit/GuiPreferences.py:405 msgid "File" msgstr "Arquivo" #: ../bleachbit/GuiPreferences.py:334 ../bleachbit/GuiPreferences.py:375 #: ../bleachbit/GuiPreferences.py:407 msgid "Folder" msgstr "Pasta" #: ../bleachbit/GuiPreferences.py:417 msgid "Theses paths will not be deleted or modified." msgstr "Estes caminhos não serão apagados ou modificados." #: ../bleachbit/GuiPreferences.py:420 msgid "These locations can be selected for deletion." msgstr "Estes locais podem ser selecionados para exclusão." #: ../bleachbit/GuiPreferences.py:428 msgid "Type" msgstr "Digite" #. TRANSLATORS: In the tree view "Path" is used generically to refer to a #. file, a folder, or a pattern describing either #: ../bleachbit/GuiPreferences.py:434 msgid "Path" msgstr "Caminho" #: ../bleachbit/GuiPreferences.py:446 msgctxt "button" msgid "Add file" msgstr "Adicionar arquivo" #: ../bleachbit/GuiPreferences.py:452 msgctxt "button" msgid "Add folder" msgstr "Adicionar pasta" bleachbit-2.0/po/eo.po0000644000175000017500000011331313245436307012764 0ustar hlehle# Esperanto translation for bleachbit # Copyright (c) 2011 Rosetta Contributors and Canonical Ltd 2011 # This file is distributed under the same license as the bleachbit package. # FIRST AUTHOR , 2011. # msgid "" msgstr "" "Project-Id-Version: bleachbit\n" "Report-Msgid-Bugs-To: FULL NAME \n" "POT-Creation-Date: 2012-12-29 17:07-0700\n" "PO-Revision-Date: 2013-04-01 17:49+0000\n" "Last-Translator: Anthony \n" "Language-Team: Esperanto \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n != 1;\n" "X-Launchpad-Export-Date: 2013-04-09 14:56+0000\n" "X-Generator: Launchpad (build 16550)\n" #: ../cleaners/mc.xml ../cleaners/tortoisesvn.xml ../cleaners/vim.xml #: ../cleaners/safari.xml ../cleaners/links2.xml ../cleaners/seamonkey.xml #: ../cleaners/realplayer.xml ../cleaners/windows_defender.xml #: ../cleaners/d4x.xml ../cleaners/internet_explorer.xml #: ../cleaners/libreoffice.xml ../cleaners/bash.xml ../cleaners/nautilus.xml #: ../cleaners/elinks.xml ../cleaners/chromium.xml #: ../cleaners/google_chrome.xml msgid "History" msgstr "Historio" #: ../cleaners/mc.xml ../cleaners/tortoisesvn.xml ../cleaners/links2.xml #: ../cleaners/realplayer.xml ../cleaners/d4x.xml ../cleaners/libreoffice.xml #: ../cleaners/nautilus.xml ../cleaners/gnome.xml ../bleachbit/Cleaner.py:286 #: ../bleachbit/Cleaner.py:357 msgid "Delete the usage history" msgstr "Forigi la uzadkronologion" #: ../cleaners/gpodder.xml ../cleaners/hippo_opensim_viewer.xml #: ../cleaners/thumbnails.xml ../cleaners/safari.xml #: ../cleaners/transmission.xml ../cleaners/emesene.xml #: ../cleaners/liferea.xml ../cleaners/seamonkey.xml ../cleaners/vuze.xml #: ../cleaners/yahoo_messenger.xml ../cleaners/pidgin.xml #: ../cleaners/adobe_reader.xml ../cleaners/evolution.xml #: ../cleaners/tremulous.xml ../cleaners/libreoffice.xml ../cleaners/xine.xml #: ../cleaners/nexuiz.xml ../cleaners/exaile.xml ../cleaners/opera.xml #: ../cleaners/amsn.xml ../cleaners/gftp.xml ../cleaners/miro.xml #: ../cleaners/beagle.xml ../cleaners/kde.xml ../cleaners/epiphany.xml #: ../cleaners/flash.xml ../cleaners/secondlife_viewer.xml #: ../cleaners/java.xml ../cleaners/chromium.xml ../cleaners/audacious.xml #: ../cleaners/rhythmbox.xml ../cleaners/google_chrome.xml #: ../cleaners/thunderbird.xml ../bleachbit/Cleaner.py:186 #: ../bleachbit/Cleaner.py:306 ../bleachbit/Cleaner.py:377 msgid "Cache" msgstr "Kaŝmemoro" #: ../cleaners/gpodder.xml ../cleaners/yum.xml #: ../cleaners/hippo_opensim_viewer.xml ../cleaners/thumbnails.xml #: ../cleaners/transmission.xml ../cleaners/windows_explorer.xml #: ../cleaners/liferea.xml ../cleaners/vuze.xml #: ../cleaners/yahoo_messenger.xml ../cleaners/pidgin.xml #: ../cleaners/adobe_reader.xml ../cleaners/evolution.xml #: ../cleaners/libreoffice.xml ../cleaners/apt.xml ../cleaners/xine.xml #: ../cleaners/nexuiz.xml ../cleaners/exaile.xml ../cleaners/amsn.xml #: ../cleaners/gftp.xml ../cleaners/miro.xml ../cleaners/beagle.xml #: ../cleaners/kde.xml ../cleaners/flash.xml ../cleaners/secondlife_viewer.xml #: ../cleaners/java.xml ../cleaners/audacious.xml ../cleaners/rhythmbox.xml #: ../bleachbit/Cleaner.py:306 ../bleachbit/Cleaner.py:377 #: ../bleachbit/Cleaner.py:405 ../bleachbit/Cleaner.py:407 msgid "Delete the cache" msgstr "Forigi la kaŝmemoron" #. TRANSLATORS: Vacuum is a verb. The term is jargon #. from the SQLite database. Microsoft Access uses #. the term 'Compact Database' (which you may translate #. instead). Another synonym is 'defragment.' #: ../cleaners/gpodder.xml ../cleaners/yum.xml ../cleaners/safari.xml #: ../cleaners/liferea.xml ../cleaners/chromium.xml #: ../cleaners/google_chrome.xml ../cleaners/thunderbird.xml #: ../bleachbit/Action.py:334 ../bleachbit/Cleaner.py:197 #: ../bleachbit/Cleaner.py:296 msgid "Vacuum" msgstr "Kompaktigi datumbazon" #: ../cleaners/gpodder.xml ../cleaners/yum.xml ../cleaners/safari.xml #: ../cleaners/liferea.xml ../cleaners/chromium.xml #: ../cleaners/google_chrome.xml ../cleaners/thunderbird.xml #: ../bleachbit/Cleaner.py:197 msgid "" "Clean database fragmentation to reduce space and improve speed without " "removing any data" msgstr "" "Vakigi la fragmentiĝon de la datumbazo por malokupigi spacon kaj rapidigi " "sen forigo de datumoj" #: ../cleaners/hippo_opensim_viewer.xml ../cleaners/gl-117.xml #: ../cleaners/tremulous.xml ../cleaners/nexuiz.xml #: ../cleaners/secondlife_viewer.xml msgid "Game" msgstr "Ludo" #: ../cleaners/hippo_opensim_viewer.xml ../cleaners/teamviewer.xml #: ../cleaners/realplayer.xml ../cleaners/vuze.xml #: ../cleaners/yahoo_messenger.xml ../cleaners/amule.xml #: ../cleaners/easytag.xml ../cleaners/exaile.xml ../cleaners/screenlets.xml #: ../cleaners/gftp.xml ../cleaners/miro.xml ../cleaners/audacious.xml #: ../bleachbit/Cleaner.py:403 msgid "Logs" msgstr "Protokoloj" #: ../cleaners/hippo_opensim_viewer.xml ../cleaners/teamviewer.xml #: ../cleaners/realplayer.xml ../cleaners/vuze.xml #: ../cleaners/yahoo_messenger.xml ../cleaners/amule.xml #: ../cleaners/exaile.xml ../cleaners/screenlets.xml ../cleaners/gftp.xml #: ../cleaners/miro.xml ../cleaners/audacious.xml ../bleachbit/Cleaner.py:403 msgid "Delete the logs" msgstr "Forigi la protokolojn" #: ../cleaners/thumbnails.xml ../cleaners/windows_explorer.xml msgid "Thumbnails" msgstr "Miniaturoj" #: ../cleaners/vim.xml ../cleaners/gedit.xml msgid "Editor" msgstr "Redaktilo" #: ../cleaners/vim.xml msgid "" "Delete ~/.viminfo which includes file history, command history, and buffers" msgstr "" "Forigi~/.viminfo, kiu enhavas folikronologion, komandkronologion kaj bufrojn." #: ../cleaners/filezilla.xml ../cleaners/transmission.xml ../cleaners/vuze.xml #: ../cleaners/amule.xml ../cleaners/gftp.xml msgid "File transfer client" msgstr "Dosiertransiga kliento" #: ../cleaners/filezilla.xml ../cleaners/paint.xml #: ../cleaners/windows_media_player.xml ../cleaners/windows_explorer.xml #: ../cleaners/teamviewer.xml ../cleaners/microsoft_office.xml #: ../cleaners/vlc.xml ../cleaners/adobe_reader.xml ../cleaners/winamp.xml #: ../cleaners/winzip.xml ../cleaners/winrar.xml ../cleaners/audacious.xml #: ../cleaners/wordpad.xml ../bleachbit/Cleaner.py:307 msgid "Most recently used" msgstr "Plejfreŝe uzataj" #: ../cleaners/filezilla.xml ../cleaners/windows_explorer.xml #: ../cleaners/gwenview.xml ../cleaners/adobe_reader.xml ../cleaners/gedit.xml #: ../cleaners/kde.xml ../cleaners/audacious.xml ../bleachbit/Cleaner.py:307 #: ../bleachbit/Cleaner.py:387 msgid "Delete the list of recently used documents" msgstr "Forigi la liston de la plejfreŝe uzataj dosieroj" #: ../cleaners/skype.xml ../cleaners/xchat.xml ../cleaners/emesene.xml #: ../cleaners/seamonkey.xml ../cleaners/yahoo_messenger.xml #: ../cleaners/pidgin.xml ../cleaners/amsn.xml msgid "Chat logs" msgstr "Retbabilaj protokoloj" #: ../cleaners/skype.xml ../cleaners/xchat.xml ../cleaners/emesene.xml #: ../cleaners/seamonkey.xml ../cleaners/yahoo_messenger.xml #: ../cleaners/pidgin.xml ../cleaners/amsn.xml msgid "Delete the chat logs" msgstr "Forigi la retbabilajn protokolojn" #: ../cleaners/xchat.xml ../cleaners/emesene.xml #: ../cleaners/yahoo_messenger.xml ../cleaners/pidgin.xml ../cleaners/amsn.xml msgid "Chat client" msgstr "Retbabila kliento" #: ../cleaners/safari.xml ../cleaners/links2.xml ../cleaners/seamonkey.xml #: ../cleaners/konqueror.xml ../cleaners/internet_explorer.xml #: ../cleaners/opera.xml ../cleaners/epiphany.xml ../cleaners/elinks.xml #: ../cleaners/chromium.xml ../cleaners/google_chrome.xml #: ../bleachbit/Cleaner.py:209 msgid "Web browser" msgstr "Retumilo" #: ../cleaners/safari.xml ../cleaners/seamonkey.xml ../cleaners/opera.xml #: ../cleaners/epiphany.xml ../cleaners/chromium.xml #: ../cleaners/google_chrome.xml ../cleaners/thunderbird.xml #: ../bleachbit/Cleaner.py:186 msgid "Delete the web cache, which reduces time to display revisited pages" msgstr "" "Forviŝi la retan kaŝmemoron, kio malgrandigas la tempon montri revizititajn " "paĝojn" #: ../cleaners/safari.xml ../cleaners/liferea.xml ../cleaners/seamonkey.xml #: ../cleaners/realplayer.xml ../cleaners/konqueror.xml #: ../cleaners/internet_explorer.xml ../cleaners/opera.xml #: ../cleaners/epiphany.xml ../cleaners/flash.xml ../cleaners/silverlight.xml #: ../cleaners/chromium.xml ../cleaners/google_chrome.xml #: ../cleaners/thunderbird.xml ../bleachbit/Cleaner.py:187 msgid "Cookies" msgstr "Kuketoj" #: ../cleaners/safari.xml ../cleaners/liferea.xml ../cleaners/seamonkey.xml #: ../cleaners/realplayer.xml ../cleaners/konqueror.xml #: ../cleaners/internet_explorer.xml ../cleaners/opera.xml #: ../cleaners/epiphany.xml ../cleaners/flash.xml ../cleaners/silverlight.xml #: ../cleaners/chromium.xml ../cleaners/google_chrome.xml #: ../cleaners/thunderbird.xml ../bleachbit/Cleaner.py:187 msgid "" "Delete cookies, which contain information such as web site preferences, " "authentication, and tracking identification" msgstr "" "Forigi kuketojn, kiuj enhavas informojn pri retejajn preferojn, aŭtentigadon " "kaj trakindentigadon" #: ../cleaners/safari.xml ../cleaners/konqueror.xml #: ../cleaners/internet_explorer.xml ../cleaners/opera.xml #: ../bleachbit/Cleaner.py:196 msgid "List of visited web pages" msgstr "Listo de vizititaj retejoj" #: ../cleaners/paint.xml ../cleaners/windows_media_player.xml #: ../cleaners/windows_explorer.xml ../cleaners/teamviewer.xml #: ../cleaners/microsoft_office.xml ../cleaners/vlc.xml ../cleaners/winamp.xml #: ../cleaners/winzip.xml ../cleaners/winrar.xml ../cleaners/wordpad.xml msgid "Delete the most recently used list" msgstr "Forigi la liston de la plejfreŝe uzataj" #: ../cleaners/emesene.xml msgid "Delete the avatars and emoticons cache" msgstr "Forigi la kaŝmemoron de avataroj kaj miensimboloj" #: ../cleaners/windows_explorer.xml ../cleaners/gwenview.xml #: ../cleaners/gedit.xml ../cleaners/kde.xml ../bleachbit/Cleaner.py:387 msgid "Recent documents list" msgstr "Listo de freŝaj dokumentoj" #. In Windows 'Run' is the dialog in the Start menu #. In GNOME 'Run' is the dialog shown when typing ALT+F2' #: ../cleaners/windows_explorer.xml ../cleaners/gnome.xml msgid "Run" msgstr "Ruli" #: ../cleaners/windows_explorer.xml ../cleaners/opera.xml #: ../cleaners/gnome.xml ../cleaners/google_toolbar.xml msgid "Search history" msgstr "Serĉkronologio" #: ../cleaners/windows_explorer.xml ../cleaners/opera.xml #: ../cleaners/gnome.xml ../cleaners/google_toolbar.xml msgid "Delete the search history" msgstr "Forigi la serĉkronologion" #: ../cleaners/gl-117.xml ../cleaners/microsoft_office.xml #: ../cleaners/beagle.xml ../cleaners/secondlife_viewer.xml #: ../cleaners/x11.xml msgid "Debug logs" msgstr "Sencimigaj protokoloj" #: ../cleaners/gl-117.xml ../cleaners/microsoft_office.xml #: ../cleaners/easytag.xml ../cleaners/beagle.xml #: ../cleaners/secondlife_viewer.xml ../cleaners/x11.xml msgid "Delete the debug logs" msgstr "Forigi la sencimigajn protokolojn" #: ../cleaners/google_earth.xml ../cleaners/winetricks.xml #: ../cleaners/vuze.xml ../cleaners/adobe_reader.xml ../cleaners/amule.xml #: ../cleaners/wine.xml ../cleaners/internet_explorer.xml ../cleaners/gimp.xml #: ../cleaners/kde.xml ../cleaners/deepscan.xml ../bleachbit/Cleaner.py:430 msgid "Temporary files" msgstr "Provizoraj dosieroj" #: ../cleaners/google_earth.xml ../cleaners/winetricks.xml #: ../cleaners/vuze.xml ../cleaners/adobe_reader.xml ../cleaners/amule.xml #: ../cleaners/wine.xml ../cleaners/internet_explorer.xml ../cleaners/gimp.xml #: ../cleaners/kde.xml ../cleaners/deepscan.xml ../bleachbit/Cleaner.py:430 msgid "Delete the temporary files" msgstr "Forigi la provizorajn dosierojn" #: ../cleaners/seamonkey.xml ../cleaners/opera.xml ../bleachbit/Cleaner.py:191 msgid "Download history" msgstr "Elŝutkronologio" #: ../cleaners/seamonkey.xml ../cleaners/opera.xml ../bleachbit/Cleaner.py:191 msgid "List of files downloaded" msgstr "Listo de elŝutitaj dosieroj" #: ../cleaners/seamonkey.xml msgid "Delete the list of visited web pages" msgstr "Forigi la liston de vizitataj retpaĝoj" #: ../cleaners/vuze.xml ../cleaners/deepscan.xml msgid "Backup files" msgstr "Sekurkopii dosierojn" #: ../cleaners/vuze.xml ../cleaners/deepscan.xml msgid "Delete the backup files" msgstr "Forigi la restaŭrdosierojn" #: ../cleaners/konqueror.xml ../cleaners/opera.xml ../cleaners/chromium.xml msgid "Current session" msgstr "Aktuala seanco" #: ../cleaners/konqueror.xml ../cleaners/opera.xml ../cleaners/chromium.xml msgid "Delete the current session" msgstr "Forigi la aktualan seancon" #: ../cleaners/konqueror.xml ../cleaners/opera.xml ../bleachbit/Cleaner.py:196 msgid "URL history" msgstr "URL-kronologio" #: ../cleaners/microsoft_office.xml ../cleaners/libreoffice.xml #: ../bleachbit/Cleaner.py:317 msgid "Office suite" msgstr "Oficeja ensemblo" #: ../cleaners/windows_defender.xml ../cleaners/beagle.xml #: ../cleaners/thunderbird.xml ../cleaners/deepscan.xml #: ../bleachbit/Cleaner.py:188 msgid "Delete the files" msgstr "Forigi la dosierojn" #: ../cleaners/tremulous.xml msgid "Delete the list of game servers" msgstr "Forigi la liston de ludserviloj" #: ../cleaners/internet_explorer.xml ../cleaners/chromium.xml #: ../cleaners/google_chrome.xml ../bleachbit/Cleaner.py:192 msgid "Form history" msgstr "Formularkronologio" #: ../cleaners/internet_explorer.xml ../bleachbit/Cleaner.py:192 msgid "A history of forms entered in web sites and in the Search bar" msgstr "Kronologio de enigitaj formularoj en retejoj kaj en la serĉbreto" #: ../cleaners/apt.xml msgid "Delete obsolete files" msgstr "Forigi senvaloriĝintajn dosierojn" #: ../cleaners/xine.xml ../cleaners/miro.xml ../cleaners/flash.xml msgid "Multimedia viewer" msgstr "Plurmedia spektilo" #: ../cleaners/recoll.xml ../cleaners/beagle.xml msgid "Search tool" msgstr "Serĉilo" #: ../cleaners/recoll.xml ../cleaners/beagle.xml ../cleaners/thunderbird.xml msgid "Index" msgstr "Indekso" #: ../cleaners/recoll.xml msgid "" "Delete the search index, a database of words and the files they contain" msgstr "" "Forigi la serĉindekson, datumbazon de vortoj kaj la dosierojn, kiuj enhavas" #: ../cleaners/exaile.xml msgid "Downloaded podcasts" msgstr "Elŝutitaj podkastoj" #: ../cleaners/exaile.xml msgid "Delete downloaded podcasts" msgstr "Forigi elŝutitajn podkastojn" #: ../cleaners/bash.xml msgid "Delete the command history" msgstr "Forigi la komandkronologion" #. TRANSLATORS: DOM = Document Object Model. #: ../cleaners/opera.xml ../cleaners/chromium.xml #: ../cleaners/google_chrome.xml ../bleachbit/Cleaner.py:190 msgid "DOM Storage" msgstr "DOM-memoro" #: ../cleaners/opera.xml ../cleaners/chromium.xml #: ../cleaners/google_chrome.xml ../bleachbit/Cleaner.py:190 msgid "Delete HTML5 cookies" msgstr "Forigi HTML5-kuketojn" #: ../cleaners/nautilus.xml msgid "Custom folders will be reset." msgstr "Propraj dosierujoj rekomencigitos" #: ../cleaners/screenlets.xml msgid "Widgets for the desktop" msgstr "Fenestraĵoj por la labortablo" #: ../cleaners/epiphany.xml ../cleaners/chromium.xml #: ../cleaners/google_chrome.xml ../cleaners/thunderbird.xml #: ../bleachbit/Cleaner.py:195 msgid "Passwords" msgstr "Pasvortoj" #: ../cleaners/epiphany.xml ../cleaners/chromium.xml #: ../cleaners/google_chrome.xml ../cleaners/thunderbird.xml #: ../bleachbit/Cleaner.py:195 msgid "" "A database of usernames and passwords as well as a list of sites that should " "not store passwords" msgstr "" "Datumbazo de uzantnomoj kaj pasvortoj kaj eĉ listo de retejoj, kiuj ne " "konservus pasvortojn" #: ../cleaners/epiphany.xml msgid "Places" msgstr "Lokoj" #: ../cleaners/epiphany.xml msgid "" "A database of URLs including bookmarks, favicons, and a history of visited " "web sites" msgstr "" "Datumbazo de URL, inkluzivitaj paĝosignojn, preferatajn bildsimbolojn kaj " "kronologion de vizititaj retejoj" #: ../cleaners/epiphany.xml msgid "This option deletes all bookmarks." msgstr "Ĉi tiu opcio forigas ĉiujn paĝosignojn" #: ../cleaners/elinks.xml msgid "Delete the cookies, visited URLs, and search history" msgstr "Forigi la kuketojn, vizititajn URL kaj serĉkronologion" #: ../cleaners/chromium.xml ../cleaners/google_chrome.xml msgid "A history of forms entered in web sites" msgstr "Kronologio de enigitaj formoj en retejoj" #: ../cleaners/chromium.xml ../cleaners/google_chrome.xml msgid "" "Delete the history which includes visited sites, downloads, and thumbnails" msgstr "" "Forigi la kronologion, kiu enhavas vizititajn retejojn, elŝutaĵojn kaj " "miniaturojn" #: ../cleaners/chromium.xml ../cleaners/google_chrome.xml msgid "Search engines" msgstr "Serĉiloj" #. 'Factory' means a search engine that is installed by default 'from the factory,' but this is different than a 'default search engine' https://lists.launchpad.net/launchpad-translators/msg00283.html #: ../cleaners/chromium.xml ../cleaners/google_chrome.xml msgid "" "Reset the search engine usage history and delete non-factory search engines, " "some of which are added automatically" msgstr "" "Reŝargi la kronologion de uzado serĉiloj, kaj forviŝi neinstalitajn serĉilojn" #: ../cleaners/google_chrome.xml msgid "Session" msgstr "Seanco" #: ../cleaners/google_chrome.xml msgid "Delete the current and last sessions" msgstr "Forigi la aktualan kaj la lastajn seancojn" #: ../cleaners/deepscan.xml msgid "Deep scan" msgstr "Kompleta skanado" #: ../cleaners/deepscan.xml msgid "Inspect the preview for any files you want to keep." msgstr "Inspeki la antaŭrigardon por ĉiuj dosieroj, kiujn vi volas manteni." #: ../cleaners/deepscan.xml msgid "This option is slow." msgstr "Ĉi tiu opcio estas malrapida" #: ../bleachbit.desktop msgid "Unnecessary file cleaner" msgstr "Purigilo de nenecesaj dosieroj" #: ../bleachbit.desktop msgid "Free space and maintain privacy" msgstr "Liberigi lokon kaj prizorgi privatecon" #. TRANSLATORS: Parts of this file will be deleted #: ../bleachbit/Action.py:203 ../bleachbit/Action.py:216 #: ../bleachbit/Action.py:228 ../bleachbit/Action.py:241 #: ../bleachbit/Action.py:253 ../bleachbit/Command.py:183 #: ../bleachbit/Command.py:213 msgid "Clean file" msgstr "Purigi dosieron" #. TRANSLATORS: this is the context menu #: ../bleachbit/Action.py:307 ../bleachbit/GUI.py:585 msgid "Clean" msgstr "Purigi" #: ../bleachbit/Cleaner.py:188 msgid "Crash reports" msgstr "" #: ../bleachbit/Cleaner.py:193 msgid "Session restore" msgstr "Seanca restaŭro" #: ../bleachbit/Cleaner.py:193 msgid "Loads the initial session after the browser closes or crashes" msgstr "Ŝargas la komencan seancon post la retumilo fermas aŭ kolapsas" #: ../bleachbit/Cleaner.py:194 msgid "Site preferences" msgstr "Retejaj agordoj" #: ../bleachbit/Cleaner.py:194 msgid "Settings for individual sites" msgstr "Agordoj por individuaj retejoj" #. TRANSLATORS: desktop entries are .desktop files in Linux tha #. make up the application menu (the menu that shows BleachBit, #. Firefox, and others. The .desktop files also associate file #. types, so clicking on an .html file in Nautilus brings up #. Firefox. #. More information: http://standards.freedesktop.org/menu-spec/latest/index.html#introduction #: ../bleachbit/Cleaner.py:376 msgid "Broken desktop files" msgstr "Nefunkciantaj labortablodosieroj" #: ../bleachbit/Cleaner.py:376 msgid "Delete broken application menu entries and file associations" msgstr "Forigi nefunkciantajn aplikaĵmenuerojn kaj dosierkunigojn" #. TRANSLATORS: Localizations are files supporting specific #. languages, so applications appear in Spanish, etc. #: ../bleachbit/Cleaner.py:380 msgid "Localizations" msgstr "Asimiladoj" #: ../bleachbit/Cleaner.py:380 msgid "Delete files for unwanted languages" msgstr "Forigi dosierojn por nevolataj lingvoj" #: ../bleachbit/Cleaner.py:381 msgid "Configure this option in the preferences." msgstr "Agordi ĉi tiun opcion per la agordoj." #. TRANSLATORS: 'Rotated logs' refers to old system log files. #. Linux systems often have a scheduled job to rotate the logs #. which means compress all except the newest log and then delete #. the oldest log. You could translate this 'old logs.' #: ../bleachbit/Cleaner.py:386 msgid "Rotated logs" msgstr "Malnovaj protokoloj" #: ../bleachbit/Cleaner.py:386 msgid "Delete old system logs" msgstr "Forigi malnovajn sistemprotokolojn" #: ../bleachbit/Cleaner.py:388 msgid "Trash" msgstr "Rubujo" #: ../bleachbit/Cleaner.py:388 msgid "Empty the trash" msgstr "Malplenigi la rubujon" #: ../bleachbit/Cleaner.py:394 ../bleachbit/Cleaner.py:536 #: ../bleachbit/Worker.py:212 msgid "Memory" msgstr "Memoro" #. TRANSLATORS: 'free' means 'unallocated' #: ../bleachbit/Cleaner.py:396 msgid "Wipe the swap and free memory" msgstr "" #: ../bleachbit/Cleaner.py:397 msgid "This option is experimental and may cause system problems." msgstr "Ĉi tiu opcio estas eksperimenta kaj eblas kaŭzi sistemproblemojn" #: ../bleachbit/Cleaner.py:404 msgid "Memory dump" msgstr "" #: ../bleachbit/Cleaner.py:404 msgid "Delete the file memory.dmp" msgstr "Forigi la dosieron \"memory.dmp\"" #. TRANSLATORS: Prefetch is Microsoft Windows jargon. #: ../bleachbit/Cleaner.py:407 msgid "Prefetch" msgstr "" #: ../bleachbit/Cleaner.py:408 msgid "Recycle bin" msgstr "Rubujo" #: ../bleachbit/Cleaner.py:408 msgid "Empty the recycle bin" msgstr "Malplenigi la rubujon" #. TRANSLATORS: 'Update' is a noun, and 'Update uninstallers' is an option to delete #. the uninstallers for software updates. #: ../bleachbit/Cleaner.py:411 msgid "Update uninstallers" msgstr "" #: ../bleachbit/Cleaner.py:411 msgid "" "Delete uninstallers for Microsoft updates including hotfixes, service packs, " "and Internet Explorer updates" msgstr "" #: ../bleachbit/Cleaner.py:418 ../bleachbit/Cleaner.py:627 msgid "Clipboard" msgstr "" #: ../bleachbit/Cleaner.py:418 msgid "" "The desktop environment's clipboard used for copy and paste operations" msgstr "" #. TRANSLATORS: "Custom" is an option allowing the user to specify which files and folders will be erased. #: ../bleachbit/Cleaner.py:424 ../bleachbit/GuiPreferences.py:62 msgid "Custom" msgstr "" #: ../bleachbit/Cleaner.py:424 msgid "Delete user-specified files and folders" msgstr "" #. TRANSLATORS: 'free' means 'unallocated' #: ../bleachbit/Cleaner.py:426 msgid "Free disk space" msgstr "Neatribuita diskospaco" #. TRANSLATORS: 'free' means 'unallocated' #: ../bleachbit/Cleaner.py:428 msgid "Overwrite free disk space to hide deleted files" msgstr "" #: ../bleachbit/Cleaner.py:429 msgid "This option is very slow." msgstr "Ĉi tiu opcio estas tre malrapida" #: ../bleachbit/Cleaner.py:433 msgid "The system in general" msgstr "La sistemo ĝenerale" #: ../bleachbit/Cleaner.py:439 ../bleachbit/Cleaner.py:712 msgid "System" msgstr "Sistemo" #. TRANSLATORS: 'Free' means 'unallocated.' #. %s expands to a path such as C:\ or /tmp/ #: ../bleachbit/Cleaner.py:636 ../bleachbit/Cleaner.py:739 #, python-format msgid "Overwrite free disk space %s" msgstr "" #. TRANSLATORS: %s expands to a drive letter such as C:\ or D:\ #: ../bleachbit/Cleaner.py:664 #, python-format msgid "Recycle bin %s" msgstr "Rubujo %s" #: ../bleachbit/CLI.py:123 #, python-format msgid "not a valid cleaner: %s" msgstr "" #. TRANSLATORS: This is the command line usage. Don't translate #. %prog, but do translate usage, options, cleaner, and option. #. More information about the command line is here #. http://bleachbit.sourceforge.net/documentation/command-line #: ../bleachbit/CLI.py:150 msgid "usage: %prog [options] cleaner.option1 cleaner.option2" msgstr "" #: ../bleachbit/CLI.py:153 msgid "list cleaners" msgstr "" #: ../bleachbit/CLI.py:155 msgid "delete files and make other permanent changes" msgstr "Forigi dosierojn kaj fari aliajn permanentan ŝanĝojn" #. TRANSLATORS: this is a warning for using --delete which will go away one day #: ../bleachbit/CLI.py:158 msgid "depreciated alias for --clean" msgstr "" #: ../bleachbit/CLI.py:160 msgid "show system information" msgstr "" #: ../bleachbit/CLI.py:161 msgid "launch the graphical interface" msgstr "" #: ../bleachbit/CLI.py:163 msgid "do not prompt for administrator privileges" msgstr "" #: ../bleachbit/CLI.py:168 msgid "preview files to be deleted and other changes" msgstr "" #: ../bleachbit/CLI.py:170 msgid "use options set in the graphical interface" msgstr "" #: ../bleachbit/CLI.py:172 msgid "output version information and exit" msgstr "" #: ../bleachbit/CLI.py:174 msgid "overwrite files to hide contents" msgstr "" #. TRANSLATORS: This is the label in the log indicating was #. skipped because it matches the whitelist #: ../bleachbit/Command.py:46 msgid "Skip" msgstr "Preterpasi" #. TRANSLATORS: This is the label in the log indicating will be #. deleted (for previews) or was actually deleted #: ../bleachbit/Command.py:73 msgid "Delete" msgstr "Forigi" #. TRANSLATORS: The file will be deleted when the #. system reboots #: ../bleachbit/Command.py:93 msgid "Mark for deletion" msgstr "Marki kiel forigenda" #. TRANSLATORS: The file will be truncated to 0 bytes in length #: ../bleachbit/Command.py:250 msgid "Truncate" msgstr "Fortranĉi" #: ../bleachbit/Command.py:289 msgid "Delete registry key" msgstr "Forigi registrejan ŝlosilon" #: ../bleachbit/GuiBasic.py:113 msgid "Delete confirmation" msgstr "Forigi konfirmon" #: ../bleachbit/GuiBasic.py:121 msgid "" "Are you sure you want to permanently delete files according to the selected " "operations? The actual files that will be deleted may have changed since " "you ran the preview." msgstr "" "Ĉu vi certe volas daŭre forigi dosierojn laŭ la elektitaj agoj? Aktualaj " "dosieroj, kiuj estos forigataj, eble ŝanĝiĝis ekde la rulado de la antaŭvido." #: ../bleachbit/GuiBasic.py:123 msgid "Are you sure you want to permanently delete these files?" msgstr "Ĉu vi certe volas daŭre forigi ĉi tiujn dosierojn?" #: ../bleachbit/GuiBasic.py:159 #, python-format msgid "" "Because you are running as root, please manually open this link in a web " "browser:\n" "%s" msgstr "" "Ĉar vi rulas kiel ĉefuzanto, bonvolu mane malfermi la ligilon per retumilo:\n" " %s" #. TRANSLATORS: %s expands to bleachbit.sourceforge.net or similar #: ../bleachbit/GuiBasic.py:171 #, python-format msgid "Open web browser to %s?" msgstr "Ĉu malfermi retumilon ĉe %s?" #: ../bleachbit/GuiPreferences.py:55 ../bleachbit/GUI.py:637 msgid "Preferences" msgstr "Agordoj" #: ../bleachbit/GuiPreferences.py:61 msgid "General" msgstr "Ĝenerale" #: ../bleachbit/GuiPreferences.py:63 msgid "Drives" msgstr "Diskingoj" #: ../bleachbit/GuiPreferences.py:65 msgid "Languages" msgstr "Lingvoj" #: ../bleachbit/GuiPreferences.py:66 msgid "Whitelist" msgstr "Blanka listo" #: ../bleachbit/GuiPreferences.py:111 msgid "Check periodically for software updates via the Internet" msgstr "Kontroli ofte por programaraj ĝisdatiĝoj per interrero" #: ../bleachbit/GuiPreferences.py:114 msgid "" "If an update is found, you will be given the option to view information " "about it. Then, you may manually download and install the update." msgstr "" "Se ĝisdato estas trovita, vi povas vidi informon pri ĝi. Tiam, vi povas " "mane elŝuti kaj instali la ĝisdaton." #: ../bleachbit/GuiPreferences.py:120 msgid "Check for new beta releases" msgstr "" #: ../bleachbit/GuiPreferences.py:127 msgid "Download and update cleaners from community (winapp2.ini)" msgstr "" #. TRANSLATORS: This means to hide cleaners which would do #. nothing. For example, if Firefox were never used on #. this system, this option would hide Firefox to simplify #. the list of cleaners. #: ../bleachbit/GuiPreferences.py:139 msgid "Hide irrelevant cleaners" msgstr "" #. TRANSLATORS: Overwriting is the same as shredding. It is a way #. to prevent recovery of the data. You could also translate #. 'Shred files to prevent recovery.' #: ../bleachbit/GuiPreferences.py:147 msgid "Overwrite files to hide contents" msgstr "" #: ../bleachbit/GuiPreferences.py:150 msgid "" "Overwriting is ineffective on some file systems and with certain BleachBit " "operations. Overwriting is significantly slower." msgstr "" #: ../bleachbit/GuiPreferences.py:153 msgid "Start BleachBit with computer" msgstr "" #: ../bleachbit/GuiPreferences.py:164 ../bleachbit/GuiPreferences.py:295 #: ../bleachbit/GuiPreferences.py:341 ../bleachbit/GUI.py:545 msgid "Choose a folder" msgstr "Elektu dosierujon" #. TRANSLATORS: 'free' means 'unallocated' #: ../bleachbit/GuiPreferences.py:189 msgid "" "Choose a writable folder for each drive for which to overwrite free space." msgstr "" #. TRANSLATORS: In the preferences dialog, this button adds a path to the list of paths #: ../bleachbit/GuiPreferences.py:210 msgctxt "button" msgid "Add" msgstr "Aldoni" #. TRANSLATORS: In the preferences dialog, this button removes a path from the list of paths #: ../bleachbit/GuiPreferences.py:213 ../bleachbit/GuiPreferences.py:433 msgctxt "button" msgid "Remove" msgstr "Forigi" #: ../bleachbit/GuiPreferences.py:238 msgid "All languages will be deleted except those checked." msgstr "Ĉiuj lingvoj estas forigotaj krom tiuj markitaj." #: ../bleachbit/GuiPreferences.py:255 msgid "Preserve" msgstr "Konservi" #: ../bleachbit/GuiPreferences.py:259 msgid "Code" msgstr "Kodo" #: ../bleachbit/GuiPreferences.py:263 ../bleachbit/GUI.py:136 msgid "Name" msgstr "Nomo" #: ../bleachbit/GuiPreferences.py:281 ../bleachbit/GuiPreferences.py:327 msgid "Choose a file" msgstr "Elektu dosieron" #: ../bleachbit/GuiPreferences.py:288 ../bleachbit/GuiPreferences.py:334 #: ../bleachbit/GuiPreferences.py:381 msgid "File" msgstr "Dosiero" #: ../bleachbit/GuiPreferences.py:303 ../bleachbit/GuiPreferences.py:349 #: ../bleachbit/GuiPreferences.py:383 msgid "Folder" msgstr "Dosierujo" #. TRANSLATORS: "Paths" is used generically to refer to both files and folders #: ../bleachbit/GuiPreferences.py:391 msgid "Theses paths will not be deleted or modified." msgstr "" #: ../bleachbit/GuiPreferences.py:393 msgid "These locations can be selected for deletion." msgstr "" #: ../bleachbit/GuiPreferences.py:401 msgid "Type" msgstr "Tipo" #. TRANSLATORS: In the tree view "Path" is used generically to refer to a #. file, a folder, or a pattern describing either #: ../bleachbit/GuiPreferences.py:407 msgid "Path" msgstr "" #: ../bleachbit/GuiPreferences.py:419 msgctxt "button" msgid "Add file" msgstr "Aldonu dosieron" #: ../bleachbit/GuiPreferences.py:426 msgctxt "button" msgid "Add folder" msgstr "Aldoni dosierujon" #: ../bleachbit/GUI.py:144 msgid "Active" msgstr "Aktiva" #. TRANSLATORS: %(cleaner) may be Firefox, System, etc. #. %(option) may be cache, logs, cookies, etc. #. %(warning) may be 'This option is really slow' #: ../bleachbit/GUI.py:176 #, python-format msgid "" "Warning regarding %(cleaner)s - %(option)s:\n" "\n" "%(warning)s" msgstr "" #: ../bleachbit/GUI.py:346 msgid "You must select an operation" msgstr "Vi devas selekti operacion" #: ../bleachbit/GUI.py:369 ../bleachbit/GUI.py:384 msgid "Done." msgstr "Farite." #: ../bleachbit/GUI.py:398 msgid "Program to clean unnecessary files" msgstr "Programaro por forigi nenecesajn dosierojn" #: ../bleachbit/GUI.py:403 msgid "" "GNU General Public License version 3 or later.\n" "See http://www.gnu.org/licenses/gpl-3.0.txt" msgstr "" "Ĝenerala Publika Permesilo de GNU versio 3 o postaj.\n" "Rigardu http://www.gnu.org/licenses/gpl-3.0.txt" #. TRANSLATORS: Maintain the names of translators here. #. Launchpad does this automatically for translations #. typed in Launchpad. This is a special string shown #. in the 'About' box. #: ../bleachbit/GUI.py:409 msgid "translator-credits" msgstr "" "Launchpad Contributions:\n" " Anthony https://launchpad.net/~cguru\n" " Ivan Camilo Quintero Santacruz https://launchpad.net/~ivanca2291\n" " Michael Moroni https://launchpad.net/~airon90" #: ../bleachbit/GUI.py:422 msgid "System information" msgstr "Sistema informo" #: ../bleachbit/GUI.py:492 msgid "Choose files to shred" msgstr "" #: ../bleachbit/GUI.py:495 msgid "Choose folder to shred" msgstr "" #. TRANSLATORS: this is the context menu #: ../bleachbit/GUI.py:580 msgid "Preview" msgstr "Antaŭrigardo" #: ../bleachbit/GUI.py:631 msgid "_Shred Files" msgstr "" #: ../bleachbit/GUI.py:632 msgid "Sh_red Folders" msgstr "" #: ../bleachbit/GUI.py:633 msgid "_Wipe Free Space" msgstr "" #: ../bleachbit/GUI.py:634 msgid "S_hred Settings and Quit" msgstr "" #: ../bleachbit/GUI.py:635 msgid "_Quit" msgstr "" #: ../bleachbit/GUI.py:636 msgid "_File" msgstr "_Dosiero" #: ../bleachbit/GUI.py:638 msgid "_Edit" msgstr "_Redakti" #: ../bleachbit/GUI.py:639 msgid "Help Contents" msgstr "" #: ../bleachbit/GUI.py:641 msgid "_Release Notes" msgstr "" #: ../bleachbit/GUI.py:643 msgid "_System Information" msgstr "_Sistema informo" #: ../bleachbit/GUI.py:644 msgid "_About" msgstr "_Pri" #: ../bleachbit/GUI.py:645 msgid "_Help" msgstr "_Helpo" #. TRANSLATORS: This is the preview button on the main window. It previews changes. #: ../bleachbit/GUI.py:669 msgctxt "button" msgid "Preview" msgstr "Antaŭrigardo" #: ../bleachbit/GUI.py:672 msgid "Preview files in the selected operations (without deleting any files)" msgstr "" "Antaŭgardi dosierojn en la selektataj operacioj (Sen forigi ajnan dosieron)" #. TRANSLATORS: This is the clean button on the main window. #. It makes permanent changes: usually deleting files, sometimes altering them. #: ../bleachbit/GUI.py:680 msgctxt "button" msgid "Clean" msgstr "Purigi" #: ../bleachbit/GUI.py:683 msgid "Clean files in the selected operations" msgstr "" #: ../bleachbit/GUI.py:769 msgid "Error when checking for updates: " msgstr "" #: ../bleachbit/GUI.py:800 msgid "" "Error loading the SQLite module: the antivirus software may be blocking it." msgstr "" #: ../bleachbit/RecognizeCleanerML.py:62 msgid "Security warning" msgstr "Sekureca averto" #. TRANSLATORS: Cleaner definitions are XML data files that define #. which files will be cleaned. #: ../bleachbit/RecognizeCleanerML.py:74 msgid "" "These cleaner definitions are new or have changed. Malicious definitions can " "damage your system. If you do not trust these changes, delete the files or " "quit." msgstr "" #. TRANSLATORS: This is the column label (header) in the tree view for the security dialog #: ../bleachbit/RecognizeCleanerML.py:87 msgctxt "column_label" msgid "Delete" msgstr "Forigi" #. TRANSLATORS: This is the column label (header) in the tree view for the security dialog #: ../bleachbit/RecognizeCleanerML.py:90 msgctxt "column_label" msgid "Filename" msgstr "Dosiernomo" #: ../bleachbit/Unix.py:366 ../bleachbit/Unix.py:396 ../bleachbit/Unix.py:576 #, python-format msgid "Executable not found: %s" msgstr "Rulebla dosiero ne trovita: %s" #. TRANSLATORS: %s expands to a name such as 'Firefox' or 'System'. #: ../bleachbit/Unix.py:573 ../bleachbit/Worker.py:136 #, python-format msgid "" "%s cannot be cleaned because it is currently running. Close it, and try " "again." msgstr "" "%s ne povas esti purigita, ĉar ĝi estas aktuale rulanta. Fermu ĝin kaj provu " "denove." #: ../bleachbit/Update.py:73 msgid "New winapp2.ini was downloaded." msgstr "Nova winapp2.ini estis elŝutita" #: ../bleachbit/Update.py:111 msgid "Update BleachBit" msgstr "" #: ../bleachbit/Update.py:116 msgid "A new version is available." msgstr "Nova versio estas disponebla." #. TRANSLATORS: %s expands to version such as '0.8.4' or '0.8.5beta' or similar #: ../bleachbit/Update.py:124 #, python-format msgid "Update to version %s" msgstr "Ĝisdatigi al versio %s" #. TRANSLATORS: This is cleaner name for cleaners imported from winapp2.ini #: ../bleachbit/Winapp.py:48 msgid "Applications" msgstr "Aplikaĵoj" #. TRANSLATORS: This is cleaner name for cleaners imported from winapp2.ini #: ../bleachbit/Winapp.py:50 msgid "Internet" msgstr "Interreto" #. TRANSLATORS: This is cleaner name for cleaners imported from winapp2.ini #: ../bleachbit/Winapp.py:52 msgid "Multimedia" msgstr "Plurmedio" #. TRANSLATORS: This is cleaner name for cleaners imported from winapp2.ini #: ../bleachbit/Winapp.py:54 msgid "Utilities" msgstr "Utilaĵoj" #: ../bleachbit/Winapp.py:68 msgid "Games" msgstr "Ludoj" #: ../bleachbit/Winapp.py:99 msgid "Imported from winapp2.ini" msgstr "Enportita el winapp2.ini" #. TRANSLATORS: This indicates an error. The special keyword #. %(operation)s will be replaced by 'firefox' or 'opera' or #. some other cleaner ID. The special keyword %(msg)s will be #. replaced by a message such as 'Permission denied.' #: ../bleachbit/Worker.py:76 #, python-format msgid "Exception while running operation '%(operation)s': '%(msg)s'" msgstr "" #. TRANSLATORS: 'free' means 'unallocated' #: ../bleachbit/Worker.py:210 msgid "Please wait. Wiping free disk space." msgstr "" #. TRANSLATORS: %s is replaced with Firefox, System, etc. #: ../bleachbit/Worker.py:212 ../bleachbit/Worker.py:299 #, python-format msgid "Please wait. Cleaning %s." msgstr "" #: ../bleachbit/Worker.py:222 #, python-format msgid "About %d minute remaining." msgid_plural "About %d minutes remaining." msgstr[0] "" msgstr[1] "" #. TRANSLATORS: This refers to disk space that was #. really recovered (in other words, not a preview) #: ../bleachbit/Worker.py:237 #, python-format msgid "Disk space recovered: %s" msgstr "" #. TRANSLATORS: This refers to a preview (no real #. changes were made yet) #: ../bleachbit/Worker.py:241 #, python-format msgid "Disk space to be recovered: %s" msgstr "" #. TRANSLATORS: This refers to the number of files really #. deleted (in other words, not a preview). #: ../bleachbit/Worker.py:246 #, python-format msgid "Files deleted: %d" msgstr "Dosieroj forigitaj: %d" #. TRANSLATORS: This refers to the number of files that #. would be deleted (in other words, simply a preview). #: ../bleachbit/Worker.py:250 #, python-format msgid "Files to be deleted: %d" msgstr "Forigotaj dosieroj: %d" #: ../bleachbit/Worker.py:253 #, python-format msgid "Special operations: %d" msgstr "Specialaj operacioj: %d" #: ../bleachbit/Worker.py:256 #, python-format msgid "Errors: %d" msgstr "Eraroj: %d" #. TRANSLATORS: The "deep scan" feature searches over broad #. areas of the file system such as the user's whole home directory #. or all the system executables. #: ../bleachbit/Worker.py:272 msgid "Please wait. Running deep scan." msgstr "" #. TRANSLATORS: %s is replaced with Firefox, System, etc. #: ../bleachbit/Worker.py:302 #, python-format msgid "Please wait. Previewing %s." msgstr "" bleachbit-2.0/po/ro.po0000644000175000017500000013432513245436307013007 0ustar hlehle# Romanian translation for bleachbit # Copyright (c) 2009 Rosetta Contributors and Canonical Ltd 2009 # This file is distributed under the same license as the bleachbit package. # Lucian Adrian Grijincu , 2009. # msgid "" msgstr "" "Project-Id-Version: bleachbit\n" "Report-Msgid-Bugs-To: FULL NAME \n" "POT-Creation-Date: 2016-06-24 19:52-0600\n" "PO-Revision-Date: 2016-09-12 12:35+0000\n" "Last-Translator: Vlad Paul Paval \n" "Language-Team: Romanian \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=3; plural=(n == 1 ? 0: (((n % 100 > 19) || ((n % 100 " "== 0) && (n != 0))) ? 2: 1));\n" "X-Launchpad-Export-Date: 2016-09-12 17:44+0000\n" "X-Generator: Launchpad (build 18186)\n" #: ../bleachbit/GUI.py:694 msgid "_Shred Files" msgstr "Di_struge fișiere" #: ../cleaners/mc.xml ../cleaners/tortoisesvn.xml ../cleaners/vim.xml #: ../cleaners/safari.xml ../cleaners/links2.xml ../cleaners/seamonkey.xml #: ../cleaners/realplayer.xml ../cleaners/windows_defender.xml #: ../cleaners/d4x.xml ../cleaners/sqlite3.xml #: ../cleaners/internet_explorer.xml ../cleaners/libreoffice.xml #: ../cleaners/easytag.xml ../cleaners/bash.xml ../cleaners/nautilus.xml #: ../cleaners/octave.xml ../cleaners/elinks.xml ../cleaners/chromium.xml #: ../cleaners/google_chrome.xml msgid "History" msgstr "Istoric" #: ../cleaners/mc.xml ../cleaners/tortoisesvn.xml ../cleaners/links2.xml #: ../cleaners/realplayer.xml ../cleaners/d4x.xml ../cleaners/libreoffice.xml #: ../cleaners/easytag.xml ../cleaners/nautilus.xml ../cleaners/gnome.xml #: ../bleachbit/Cleaner.py:351 ../bleachbit/Cleaner.py:425 #: ../bleachbit/Cleaner.py:434 msgid "Delete the usage history" msgstr "Șterge istoricul utilizării" #: ../cleaners/gpodder.xml ../cleaners/hippo_opensim_viewer.xml #: ../cleaners/thumbnails.xml ../cleaners/safari.xml ../cleaners/emesene.xml #: ../cleaners/liferea.xml ../cleaners/seamonkey.xml ../cleaners/vuze.xml #: ../cleaners/yahoo_messenger.xml ../cleaners/pidgin.xml #: ../cleaners/adobe_reader.xml ../cleaners/evolution.xml #: ../cleaners/tremulous.xml ../cleaners/libreoffice.xml ../cleaners/xine.xml #: ../cleaners/nexuiz.xml ../cleaners/exaile.xml ../cleaners/opera.xml #: ../cleaners/amsn.xml ../cleaners/gftp.xml ../cleaners/miro.xml #: ../cleaners/beagle.xml ../cleaners/kde.xml ../cleaners/epiphany.xml #: ../cleaners/flash.xml ../cleaners/secondlife_viewer.xml ../cleaners/java.xml #: ../cleaners/chromium.xml ../cleaners/audacious.xml ../cleaners/rhythmbox.xml #: ../cleaners/google_chrome.xml ../cleaners/thunderbird.xml #: ../bleachbit/Cleaner.py:194 ../bleachbit/Cleaner.py:372 #: ../bleachbit/Cleaner.py:457 msgid "Cache" msgstr "Cache" #: ../cleaners/gpodder.xml ../cleaners/yum.xml #: ../cleaners/hippo_opensim_viewer.xml ../cleaners/thumbnails.xml #: ../cleaners/windows_explorer.xml ../cleaners/liferea.xml #: ../cleaners/vuze.xml ../cleaners/yahoo_messenger.xml ../cleaners/pidgin.xml #: ../cleaners/adobe_reader.xml ../cleaners/evolution.xml #: ../cleaners/libreoffice.xml ../cleaners/apt.xml ../cleaners/xine.xml #: ../cleaners/nexuiz.xml ../cleaners/exaile.xml ../cleaners/amsn.xml #: ../cleaners/gftp.xml ../cleaners/miro.xml ../cleaners/beagle.xml #: ../cleaners/kde.xml ../cleaners/flash.xml ../cleaners/secondlife_viewer.xml #: ../cleaners/java.xml ../cleaners/audacious.xml ../cleaners/rhythmbox.xml #: ../bleachbit/Cleaner.py:372 ../bleachbit/Cleaner.py:457 #: ../bleachbit/Cleaner.py:491 ../bleachbit/Cleaner.py:493 msgid "Delete the cache" msgstr "Șterge memoria cache" #. TRANSLATORS: Vacuum is a verb. The term is jargon #. from the SQLite database. Microsoft Access uses #. the term 'Compact Database' (which you may translate #. instead). Another synonym is 'defragment.' #: ../cleaners/gpodder.xml ../cleaners/yum.xml ../cleaners/safari.xml #: ../cleaners/liferea.xml ../cleaners/chromium.xml #: ../cleaners/google_chrome.xml ../cleaners/thunderbird.xml #: ../bleachbit/Cleaner.py:216 ../bleachbit/Cleaner.py:362 #: ../bleachbit/Action.py:419 msgid "Vacuum" msgstr "Defragmentează" #: ../cleaners/gpodder.xml ../cleaners/yum.xml ../cleaners/safari.xml #: ../cleaners/liferea.xml ../cleaners/chromium.xml #: ../cleaners/google_chrome.xml ../cleaners/thunderbird.xml #: ../bleachbit/Cleaner.py:217 msgid "" "Clean database fragmentation to reduce space and improve speed without " "removing any data" msgstr "" "Redu fragmentarea bazei de date pentru a micșora spațiul ocupat și a mări " "viteza, fără a șterge date" #: ../cleaners/yum.xml ../cleaners/apt.xml msgid "Package manager" msgstr "Administrator pachete" #: ../cleaners/warzone2100.xml ../cleaners/hippo_opensim_viewer.xml #: ../cleaners/gl-117.xml ../cleaners/tremulous.xml ../cleaners/nexuiz.xml #: ../cleaners/secondlife_viewer.xml msgid "Game" msgstr "Joc" #: ../cleaners/warzone2100.xml ../cleaners/hippo_opensim_viewer.xml #: ../cleaners/teamviewer.xml ../cleaners/realplayer.xml ../cleaners/vuze.xml #: ../cleaners/yahoo_messenger.xml ../cleaners/amule.xml #: ../cleaners/easytag.xml ../cleaners/exaile.xml ../cleaners/screenlets.xml #: ../cleaners/gftp.xml ../cleaners/miro.xml ../cleaners/audacious.xml #: ../bleachbit/Cleaner.py:488 msgid "Logs" msgstr "Jurnale" #: ../cleaners/warzone2100.xml ../cleaners/hippo_opensim_viewer.xml #: ../cleaners/teamviewer.xml ../cleaners/realplayer.xml ../cleaners/vuze.xml #: ../cleaners/yahoo_messenger.xml ../cleaners/amule.xml ../cleaners/exaile.xml #: ../cleaners/screenlets.xml ../cleaners/gftp.xml ../cleaners/miro.xml #: ../cleaners/audacious.xml ../bleachbit/Cleaner.py:488 msgid "Delete the logs" msgstr "Șterge jurnalele de înregistrări" #: ../cleaners/thumbnails.xml ../cleaners/windows_explorer.xml msgid "Thumbnails" msgstr "Miniaturi" #: ../cleaners/thumbnails.xml msgid "Icons for files on the system" msgstr "Pictograme pentru fișierele din sistem" #: ../cleaners/vim.xml ../cleaners/gedit.xml msgid "Editor" msgstr "Editor" #: ../cleaners/vim.xml msgid "" "Delete ~/.viminfo which includes file history, command history, and buffers" msgstr "" "Șterge ~/.viminfo care include istoria fișierelor, istoria comenzilor și a " "bufferelor" #: ../cleaners/filezilla.xml ../cleaners/transmission.xml ../cleaners/vuze.xml #: ../cleaners/amule.xml ../cleaners/gftp.xml msgid "File transfer client" msgstr "Client pentru transfer de fișiere" #: ../cleaners/filezilla.xml ../cleaners/paint.xml #: ../cleaners/windows_media_player.xml ../cleaners/windows_explorer.xml #: ../cleaners/teamviewer.xml ../cleaners/microsoft_office.xml #: ../cleaners/vlc.xml ../cleaners/adobe_reader.xml ../cleaners/winamp.xml #: ../cleaners/winzip.xml ../cleaners/winrar.xml ../cleaners/audacious.xml #: ../cleaners/wordpad.xml ../bleachbit/Cleaner.py:373 msgid "Most recently used" msgstr "Cele mai recente utilizări" #: ../cleaners/filezilla.xml ../cleaners/windows_explorer.xml #: ../cleaners/gwenview.xml ../cleaners/adobe_reader.xml ../cleaners/gedit.xml #: ../cleaners/kde.xml ../cleaners/audacious.xml ../bleachbit/Cleaner.py:374 #: ../bleachbit/Cleaner.py:471 msgid "Delete the list of recently used documents" msgstr "Șterge lista cu ultimele documente utilizate" #: ../cleaners/skype.xml ../cleaners/xchat.xml ../cleaners/emesene.xml #: ../cleaners/yahoo_messenger.xml ../cleaners/pidgin.xml ../cleaners/amsn.xml msgid "Chat client" msgstr "Client chat" #: ../cleaners/skype.xml ../cleaners/xchat.xml ../cleaners/emesene.xml #: ../cleaners/seamonkey.xml ../cleaners/yahoo_messenger.xml #: ../cleaners/pidgin.xml ../cleaners/amsn.xml msgid "Chat logs" msgstr "Jurnale de discuții" #: ../cleaners/skype.xml ../cleaners/xchat.xml ../cleaners/emesene.xml #: ../cleaners/seamonkey.xml ../cleaners/yahoo_messenger.xml #: ../cleaners/pidgin.xml ../cleaners/amsn.xml msgid "Delete the chat logs" msgstr "Șterge jurnalele discuțiilor" #: ../cleaners/skype.xml msgid "Installers" msgstr "Programe de instalare" #: ../cleaners/skype.xml msgid "Delete cached patches and installers" msgstr "Șterge patch-urile memorate în cache și programele de instalare" #: ../cleaners/safari.xml ../cleaners/links2.xml ../cleaners/seamonkey.xml #: ../cleaners/konqueror.xml ../cleaners/internet_explorer.xml #: ../cleaners/opera.xml ../cleaners/epiphany.xml ../cleaners/elinks.xml #: ../cleaners/chromium.xml ../cleaners/google_chrome.xml #: ../bleachbit/Cleaner.py:228 msgid "Web browser" msgstr "Navigator web" #: ../cleaners/safari.xml ../cleaners/seamonkey.xml ../cleaners/opera.xml #: ../cleaners/epiphany.xml ../cleaners/chromium.xml #: ../cleaners/google_chrome.xml ../cleaners/thunderbird.xml #: ../bleachbit/Cleaner.py:195 msgid "Delete the web cache, which reduces time to display revisited pages" msgstr "" "Șterge memoria cache - aceasta va reduce timpul în care sunt afișate " "paginile revizitate" #: ../cleaners/safari.xml ../cleaners/liferea.xml ../cleaners/seamonkey.xml #: ../cleaners/realplayer.xml ../cleaners/konqueror.xml #: ../cleaners/internet_explorer.xml ../cleaners/opera.xml #: ../cleaners/epiphany.xml ../cleaners/flash.xml ../cleaners/silverlight.xml #: ../cleaners/chromium.xml ../cleaners/google_chrome.xml #: ../cleaners/thunderbird.xml ../bleachbit/Cleaner.py:196 msgid "Cookies" msgstr "Cookie-uri" #: ../cleaners/safari.xml ../cleaners/liferea.xml ../cleaners/seamonkey.xml #: ../cleaners/realplayer.xml ../cleaners/konqueror.xml #: ../cleaners/internet_explorer.xml ../cleaners/opera.xml #: ../cleaners/epiphany.xml ../cleaners/flash.xml ../cleaners/silverlight.xml #: ../cleaners/chromium.xml ../cleaners/google_chrome.xml #: ../cleaners/thunderbird.xml ../bleachbit/Cleaner.py:197 msgid "" "Delete cookies, which contain information such as web site preferences, " "authentication, and tracking identification" msgstr "" "Șterge cookie-urile care conțin informații despre preferințele pentru site-" "uri web, autentificare sau urmărire" #: ../cleaners/safari.xml ../cleaners/konqueror.xml #: ../cleaners/internet_explorer.xml ../cleaners/opera.xml #: ../bleachbit/Cleaner.py:215 msgid "List of visited web pages" msgstr "Lista paginilor web vizitate" #. Torrent software can block a list of IP addresses, such as those that may belong to malware or anti-piracy organizations #: ../cleaners/transmission.xml msgid "Blocklists" msgstr "Liste blocare" #: ../cleaners/transmission.xml ../cleaners/windows_defender.xml #: ../cleaners/beagle.xml ../cleaners/thunderbird.xml ../cleaners/deepscan.xml #: ../bleachbit/Cleaner.py:199 msgid "Delete the files" msgstr "Șterge fișierele" #: ../cleaners/transmission.xml msgid "Blocklists will need update to work." msgstr "Listele pentru blocare vor fi actualizate pentru a funcționa" #: ../cleaners/transmission.xml msgid "Torrents" msgstr "Torente" #: ../cleaners/transmission.xml msgid "Delete the torrents (just the metadata but not the files described)" msgstr "Șterge torentele (doar metadatele, dar nu fișierele descrise)" #: ../cleaners/transmission.xml msgid "Statistics" msgstr "Statistici" #: ../cleaners/transmission.xml msgid "Delete the file" msgstr "Șterge fișierul" #: ../cleaners/paint.xml ../cleaners/windows_media_player.xml #: ../cleaners/windows_explorer.xml ../cleaners/teamviewer.xml #: ../cleaners/microsoft_office.xml ../cleaners/vlc.xml ../cleaners/winamp.xml #: ../cleaners/winzip.xml ../cleaners/winrar.xml ../cleaners/wordpad.xml msgid "Delete the most recently used list" msgstr "Șterge lista celor mai recente utilizări" #: ../cleaners/emesene.xml msgid "Delete the avatars and emoticons cache" msgstr "Șterge memoria cache pentru avataruri și emoticonuri" #: ../cleaners/windows_media_player.xml ../cleaners/realplayer.xml #: ../cleaners/vlc.xml ../cleaners/winamp.xml msgid "Media player" msgstr "Player media" #: ../cleaners/windows_explorer.xml ../cleaners/nautilus.xml msgid "File manager" msgstr "Administrator fișiere" #: ../cleaners/windows_explorer.xml ../cleaners/gwenview.xml #: ../cleaners/gedit.xml ../cleaners/kde.xml ../bleachbit/Cleaner.py:470 msgid "Recent documents list" msgstr "Lista documentelor recente" #. In Windows 'Run' is the dialog in the Start menu #. In GNOME 'Run' is the dialog shown when typing ALT+F2' #: ../cleaners/windows_explorer.xml ../cleaners/gnome.xml msgid "Run" msgstr "Rulează" #: ../cleaners/windows_explorer.xml ../cleaners/opera.xml ../cleaners/gnome.xml #: ../cleaners/google_toolbar.xml msgid "Search history" msgstr "Istoricul căutărilor" #: ../cleaners/windows_explorer.xml ../cleaners/opera.xml ../cleaners/gnome.xml #: ../cleaners/google_toolbar.xml msgid "Delete the search history" msgstr "Șterge istoricul căutărilor" #: ../cleaners/windows_explorer.xml msgid "This will restart Windows Explorer." msgstr "Se va reporni Windows Explorer" #: ../cleaners/gl-117.xml ../cleaners/microsoft_office.xml #: ../cleaners/beagle.xml ../cleaners/secondlife_viewer.xml ../cleaners/x11.xml msgid "Debug logs" msgstr "Jurnale de depanare" #: ../cleaners/gl-117.xml ../cleaners/microsoft_office.xml #: ../cleaners/easytag.xml ../cleaners/beagle.xml #: ../cleaners/secondlife_viewer.xml ../cleaners/x11.xml msgid "Delete the debug logs" msgstr "Șterge jurnalele de depanare" #: ../cleaners/google_earth.xml ../cleaners/winetricks.xml ../cleaners/vuze.xml #: ../cleaners/adobe_reader.xml ../cleaners/amule.xml ../cleaners/wine.xml #: ../cleaners/internet_explorer.xml ../cleaners/gimp.xml ../cleaners/kde.xml #: ../cleaners/deepscan.xml ../bleachbit/Cleaner.py:522 msgid "Temporary files" msgstr "Fișiere temporare" #: ../cleaners/google_earth.xml ../cleaners/winetricks.xml ../cleaners/vuze.xml #: ../cleaners/adobe_reader.xml ../cleaners/amule.xml ../cleaners/wine.xml #: ../cleaners/internet_explorer.xml ../cleaners/gimp.xml ../cleaners/kde.xml #: ../cleaners/deepscan.xml ../bleachbit/Cleaner.py:522 msgid "Delete the temporary files" msgstr "Șterge fișierele temporare" #: ../cleaners/seamonkey.xml ../cleaners/opera.xml ../bleachbit/Cleaner.py:203 msgid "Download history" msgstr "Istoric descărcări" #: ../cleaners/seamonkey.xml ../cleaners/opera.xml ../bleachbit/Cleaner.py:203 msgid "List of files downloaded" msgstr "Lista fișierelor descărcate" #: ../cleaners/seamonkey.xml msgid "Delete the list of visited web pages" msgstr "Șterge lista paginilor web vizitate" #: ../cleaners/vuze.xml ../cleaners/deepscan.xml ../bleachbit/Cleaner.py:192 msgid "Backup files" msgstr "Creează copii de siguranţă" #: ../cleaners/vuze.xml ../cleaners/deepscan.xml ../bleachbit/Cleaner.py:193 msgid "Delete the backup files" msgstr "Șterge copiile de siguranță" #: ../cleaners/konqueror.xml ../cleaners/opera.xml ../cleaners/chromium.xml msgid "Current session" msgstr "Sesiunea curentă" #: ../cleaners/konqueror.xml ../cleaners/opera.xml ../cleaners/chromium.xml msgid "Delete the current session" msgstr "Șterge sesiunea curentă" #: ../cleaners/konqueror.xml ../cleaners/opera.xml ../bleachbit/Cleaner.py:215 msgid "URL history" msgstr "Istoric URL-uri" #: ../cleaners/microsoft_office.xml ../cleaners/libreoffice.xml #: ../bleachbit/Cleaner.py:377 msgid "Office suite" msgstr "Suita office" #: ../cleaners/windows_defender.xml msgid "Anti-virus" msgstr "Antivirus" #: ../cleaners/adobe_reader.xml msgid "Document viewer" msgstr "Vizualizator documente" #: ../cleaners/evolution.xml ../cleaners/thunderbird.xml msgid "Email client" msgstr "Client de email" #: ../cleaners/tremulous.xml msgid "Delete the list of game servers" msgstr "Șterge lista de servere de jocuri" #: ../cleaners/sqlite3.xml ../cleaners/bash.xml ../cleaners/octave.xml msgid "Delete the command history" msgstr "Șterge istoricul comenzilor" #: ../cleaners/wine.xml msgid "Compatibility layer for Windows software" msgstr "Strat de compatibilitate pentru software Windows" #: ../cleaners/internet_explorer.xml ../cleaners/chromium.xml #: ../cleaners/google_chrome.xml ../bleachbit/Cleaner.py:204 msgid "Form history" msgstr "Istoricul formularelor completate" #: ../cleaners/internet_explorer.xml ../bleachbit/Cleaner.py:205 msgid "A history of forms entered in web sites and in the Search bar" msgstr "" "Un istoric al formularelor completate pe site-uri web sau în bara de căutare" #. This software edits metadata tags, such as title and artist, in audio files #: ../cleaners/easytag.xml msgid "Audio files tagger" msgstr "Program de etichetare a fișierelor audio" #: ../cleaners/apt.xml msgid "Delete obsolete files" msgstr "Șterge fișierele care nu mai sunt necesare" #: ../cleaners/apt.xml msgid "Package lists" msgstr "Liste de pachete" #: ../cleaners/xine.xml ../cleaners/miro.xml ../cleaners/flash.xml msgid "Multimedia viewer" msgstr "Vizualizator multimedia" #: ../cleaners/recoll.xml ../cleaners/beagle.xml msgid "Search tool" msgstr "Instrument de căutare" #: ../cleaners/recoll.xml ../cleaners/beagle.xml ../cleaners/thunderbird.xml msgid "Index" msgstr "Index" #: ../cleaners/recoll.xml msgid "" "Delete the search index, a database of words and the files they contain" msgstr "" "Șterge indexul de căutare - o bază de date a cuvintelor căutate și a " "fișierelor ce le conțin" #: ../cleaners/gimp.xml msgid "Graphics editor" msgstr "Editor grafic" #: ../cleaners/exaile.xml msgid "Downloaded podcasts" msgstr "Podcasturi descărcate" #: ../cleaners/exaile.xml msgid "Delete downloaded podcasts" msgstr "Șterge podcasturile descărcate" #: ../cleaners/bash.xml msgid "Shell" msgstr "Shell" #. TRANSLATORS: DOM = Document Object Model. #: ../cleaners/opera.xml ../cleaners/epiphany.xml ../cleaners/chromium.xml #: ../cleaners/google_chrome.xml ../bleachbit/Cleaner.py:201 msgid "DOM Storage" msgstr "Zona de stocare DOM" #: ../cleaners/opera.xml ../cleaners/epiphany.xml ../cleaners/chromium.xml #: ../cleaners/google_chrome.xml ../bleachbit/Cleaner.py:201 msgid "Delete HTML5 cookies" msgstr "Șterge cookie-urile HTML5" #: ../cleaners/opera.xml ../cleaners/epiphany.xml ../cleaners/chromium.xml #: ../cleaners/google_chrome.xml ../cleaners/thunderbird.xml #: ../bleachbit/Cleaner.py:210 msgid "Passwords" msgstr "Parole" #: ../cleaners/opera.xml ../cleaners/epiphany.xml ../cleaners/chromium.xml #: ../cleaners/google_chrome.xml ../cleaners/thunderbird.xml #: ../bleachbit/Cleaner.py:211 msgid "" "A database of usernames and passwords as well as a list of sites that should " "not store passwords" msgstr "" "O bază de date cu nume de utilizatori și parole, și o lista cu pagini web " "pentru care nu ar trebui stocate parole" #: ../cleaners/opera.xml ../cleaners/epiphany.xml ../cleaners/chromium.xml #: ../cleaners/google_chrome.xml ../cleaners/thunderbird.xml #: ../bleachbit/Cleaner.py:213 msgid "This option will delete your saved passwords." msgstr "Această opțiune va șterge parolele salvate." #: ../cleaners/nautilus.xml msgid "Custom folders will be reset." msgstr "Dosarele personalizate vor fi resetate." #: ../cleaners/gnome.xml ../cleaners/kde.xml msgid "Desktop environment" msgstr "Mediu de lucru" #: ../cleaners/screenlets.xml msgid "Widgets for the desktop" msgstr "Widgeturi pentru desktop" #: ../cleaners/epiphany.xml msgid "Places" msgstr "Locuri" #: ../cleaners/epiphany.xml msgid "" "A database of URLs including bookmarks, favicons, and a history of visited " "web sites" msgstr "" "O bază de date cu URL-uri ce pot include semne de carte, pictograme favorite " "și un istoric al site-urilor vizitate" #: ../cleaners/epiphany.xml msgid "This option deletes all bookmarks." msgstr "Această opțiune șterge toate semnele de carte." #: ../cleaners/winrar.xml msgid "File archiver" msgstr "Arhivator de fișiere" #: ../cleaners/elinks.xml msgid "Delete the cookies, visited URLs, and search history" msgstr "Șterge cookie-uri, URL-uri vizitate și istoricul de căutare" #: ../cleaners/chromium.xml ../cleaners/google_chrome.xml msgid "A history of forms entered in web sites" msgstr "Un istoric al formularelor web completate" #: ../cleaners/chromium.xml ../cleaners/google_chrome.xml msgid "" "Delete the history which includes visited sites, downloads, and thumbnails" msgstr "" "Șterge istoricul care conține site-urile web vizitate, fișierele descărcate " "și miniaturile" #: ../cleaners/chromium.xml ../cleaners/google_chrome.xml msgid "Search engines" msgstr "Motoare de căutare" #. 'Factory' means a search engine that is installed by default 'from the factory,' but this is different than a 'default search engine' https://lists.launchpad.net/launchpad-translators/msg00283.html #: ../cleaners/chromium.xml ../cleaners/google_chrome.xml msgid "" "Reset the search engine usage history and delete non-factory search engines, " "some of which are added automatically" msgstr "" "Resetează istoricul folosirii motorului de căutare și șterge motoarele de " "căutare instalate ulterior, dintre care unele sunt adăugate automat" #: ../cleaners/audacious.xml msgid "Audio player" msgstr "Player audio" #: ../cleaners/rhythmbox.xml msgid "Database" msgstr "Bază de date" #: ../cleaners/rhythmbox.xml msgid "" "Delete the database, which contain information such as play count and last " "played" msgstr "" "Șterge baza de date care conține informații ca numărul de jocuri și ultimul " "joc jucat" #: ../cleaners/google_chrome.xml msgid "Session" msgstr "Sesiune" #: ../cleaners/google_chrome.xml msgid "Delete the current and last sessions" msgstr "Șterge sesiunea curentă și cea precedentă" #: ../cleaners/x11.xml msgid "Windowing system" msgstr "Sistem de utilizare simultană a ferestrelor" #: ../cleaners/wordpad.xml msgid "Word processor" msgstr "Procesor text" #: ../cleaners/deepscan.xml msgid "Deep scan" msgstr "Scanare în adâncime" #: ../cleaners/deepscan.xml msgid "Clean files widely scattered across the disk" msgstr "Curăță fișierele împrăștiate peste tot pe disc" #: ../cleaners/deepscan.xml msgid "Inspect the preview for any files you want to keep." msgstr "" "Inspectați previzualizarea pentru fișierelr pe care doriți să le păstrați." #: ../cleaners/deepscan.xml msgid "This option is slow." msgstr "Această opțiune este lentă." #: ../bleachbit.desktop msgid "Unnecessary file cleaner" msgstr "Curățarea fișierelor inutile" #: ../bleachbit.desktop msgid "Free space and maintain privacy" msgstr "Spațiu liber și păstrarea intimității" #. TRANSLATORS: This is the label in the log indicating was #. skipped because it matches the whitelist #: ../bleachbit/Command.py:44 msgid "Skip" msgstr "Omite" #. TRANSLATORS: This is the label in the log indicating will be #. deleted (for previews) or was actually deleted #: ../bleachbit/Command.py:74 msgid "Delete" msgstr "Șterge" #. TRANSLATORS: The file will be deleted when the #. system reboots #: ../bleachbit/Command.py:95 msgid "Mark for deletion" msgstr "marchează pentru ștergere" #. TRANSLATORS: Parts of this file will be deleted #: ../bleachbit/Command.py:192 ../bleachbit/Command.py:226 #: ../bleachbit/Action.py:256 ../bleachbit/Action.py:269 #: ../bleachbit/Action.py:282 ../bleachbit/Action.py:295 #: ../bleachbit/Action.py:308 msgid "Clean file" msgstr "Curăță fișierul" #. TRANSLATORS: The file will be truncated to 0 bytes in length #: ../bleachbit/Command.py:268 msgid "Truncate" msgstr "Trunchiază" #: ../bleachbit/Command.py:311 msgid "Delete registry key" msgstr "Șterge cheile de regiștri" #: ../bleachbit/Unix.py:340 ../bleachbit/Unix.py:370 ../bleachbit/Unix.py:574 #, python-format msgid "Executable not found: %s" msgstr "Fișier executabil negăsit: %s" #. TRANSLATORS: %s expands to a name such as 'Firefox' or 'System'. #: ../bleachbit/Unix.py:571 ../bleachbit/Worker.py:141 #, python-format msgid "" "%s cannot be cleaned because it is currently running. Close it, and try " "again." msgstr "" "%s nu poate fi curățat pentru că se află în execuție. Închideți-l și apoi " "încercați din nou." #: ../bleachbit/GuiBasic.py:112 msgid "Delete confirmation" msgstr "Confirmare de ștergere" #: ../bleachbit/GuiBasic.py:122 msgid "" "Are you sure you want to permanently delete files according to the selected " "operations? The actual files that will be deleted may have changed since " "you ran the preview." msgstr "" "Sigur doriți să ștergeți definitiv fișierele conform operațiunilor " "selectate? Este posibil ca fișierele ce vor fi șterse să se fi schimbat de " "la ultima vizualizare." #: ../bleachbit/GuiBasic.py:125 msgid "Are you sure you want to permanently delete these files?" msgstr "Sigur doriți să ștergeți definitiv aceste fișiere?" #: ../bleachbit/GuiBasic.py:162 #, python-format msgid "" "Because you are running as root, please manually open this link in a web " "browser:\n" "%s" msgstr "" "Deoarece rulați ca root, deschideți manual această legătură într-un " "navigator web:\n" "%s" #. TRANSLATORS: %s expands to www.bleachbit.org or similar #: ../bleachbit/GuiBasic.py:174 #, python-format msgid "Open web browser to %s?" msgstr "Deschideți navigatorul web către %s?" #. TRANSLATORS: This is cleaner name for cleaners imported from winapp2.ini #: ../bleachbit/Winapp.py:44 msgid "Applications" msgstr "Aplicații" #. TRANSLATORS: This is cleaner name for cleaners imported #. from winapp2.ini #: ../bleachbit/Winapp.py:47 msgid "Internet" msgstr "Internet" #. TRANSLATORS: This is cleaner name for cleaners imported #. from winapp2.ini #: ../bleachbit/Winapp.py:50 msgid "Multimedia" msgstr "Multimedia" #. TRANSLATORS: This is cleaner name for cleaners imported #. from winapp2.ini #: ../bleachbit/Winapp.py:53 msgid "Utilities" msgstr "Utilitare" #: ../bleachbit/Winapp.py:64 msgid "Games" msgstr "Jocuri" #: ../bleachbit/Winapp.py:165 msgid "Imported from winapp2.ini" msgstr "Importat din winapp2.ini" #: ../bleachbit/Cleaner.py:199 msgid "Crash reports" msgstr "Rapoarte ale defectelor" #: ../bleachbit/Cleaner.py:206 msgid "Session restore" msgstr "Restaurare sesiune" #: ../bleachbit/Cleaner.py:207 msgid "Loads the initial session after the browser closes or crashes" msgstr "" "Încarcă sesiunea inițială după ce navigatorul web a fost închis sau și-a " "terminat prematur execuția" #: ../bleachbit/Cleaner.py:209 msgid "Site preferences" msgstr "Preferințe site-uri web" #: ../bleachbit/Cleaner.py:209 msgid "Settings for individual sites" msgstr "Configurații pentru site-uri individuale" #. TRANSLATORS: desktop entries are .desktop files in Linux that #. make up the application menu (the menu that shows BleachBit, #. Firefox, and others. The .desktop files also associate file #. types, so clicking on an .html file in Nautilus brings up #. Firefox. #. More information: #. http://standards.freedesktop.org/menu-spec/latest/index.html#introduction #: ../bleachbit/Cleaner.py:455 msgid "Broken desktop files" msgstr "Fișiere desktop nefuncționale" #: ../bleachbit/Cleaner.py:456 msgid "Delete broken application menu entries and file associations" msgstr "" "Șterge intrările din meniu și asocierile pentru aplicațiile nefuncționale" #. TRANSLATORS: Localizations are files supporting specific #. languages, so applications appear in Spanish, etc. #: ../bleachbit/Cleaner.py:460 msgid "Localizations" msgstr "Localizări" #: ../bleachbit/Cleaner.py:461 msgid "Delete files for unwanted languages" msgstr "Șterge fișierele pentru limbile nedorite" #: ../bleachbit/Cleaner.py:463 msgid "Configure this option in the preferences." msgstr "Configurați această opțiune în preferințe" #: ../bleachbit/Cleaner.py:469 msgid "Rotated logs" msgstr "Jurnale vechi" #: ../bleachbit/Cleaner.py:469 msgid "Delete old system logs" msgstr "Șterge fișierele jurnal învechite" #: ../bleachbit/Cleaner.py:472 msgid "Trash" msgstr "Coș de gunoi" #: ../bleachbit/Cleaner.py:472 msgid "Empty the trash" msgstr "Golește coșul de gunoi" #: ../bleachbit/Cleaner.py:478 ../bleachbit/Cleaner.py:629 #: ../bleachbit/Worker.py:189 msgid "Memory" msgstr "Memorie" #. TRANSLATORS: 'free' means 'unallocated' #: ../bleachbit/Cleaner.py:480 msgid "Wipe the swap and free memory" msgstr "Curăță memoria liberă și memoria swap" #: ../bleachbit/Cleaner.py:482 msgid "This option is experimental and may cause system problems." msgstr "" "Această opțiune este experimentală și poate cauza probleme sistemului." #: ../bleachbit/Cleaner.py:490 msgid "Memory dump" msgstr "Dump de memorie" #: ../bleachbit/Cleaner.py:490 msgid "Delete the file memory.dmp" msgstr "Șterge fișierul memory.dmp" #. TRANSLATORS: Prefetch is Microsoft Windows jargon. #: ../bleachbit/Cleaner.py:493 msgid "Prefetch" msgstr "Preîncarcă" #: ../bleachbit/Cleaner.py:495 msgid "Recycle bin" msgstr "Coș de gunoi" #: ../bleachbit/Cleaner.py:495 msgid "Empty the recycle bin" msgstr "Golește coșul de gunoi" #. TRANSLATORS: 'Update' is a noun, and 'Update uninstallers' is an option to delete #. the uninstallers for software updates. #: ../bleachbit/Cleaner.py:498 msgid "Update uninstallers" msgstr "Actualizează programele de dezinstalare" #: ../bleachbit/Cleaner.py:499 msgid "" "Delete uninstallers for Microsoft updates including hotfixes, service packs, " "and Internet Explorer updates" msgstr "" "Șterge programele de dezinstalare pentru actualizările Microsoft, inclusiv " "remedierile rapide, pachetele de servicii și actualizările Internet Explorer" #: ../bleachbit/Cleaner.py:506 ../bleachbit/Cleaner.py:722 msgid "Clipboard" msgstr "Clipboard" #: ../bleachbit/Cleaner.py:507 msgid "" "The desktop environment's clipboard used for copy and paste operations" msgstr "Clipboard folosit pentru operații de copiere și lipire" #. TRANSLATORS: "Custom" is an option allowing the user to specify which #. files and folders will be erased. #: ../bleachbit/Cleaner.py:514 ../bleachbit/GuiPreferences.py:63 msgid "Custom" msgstr "De șters" #: ../bleachbit/Cleaner.py:515 msgid "Delete user-specified files and folders" msgstr "Șterge fișierele și dosarele specificate de utilizator" #. TRANSLATORS: 'free' means 'unallocated' #: ../bleachbit/Cleaner.py:517 msgid "Free disk space" msgstr "Spațiu liber pe disc" #. TRANSLATORS: 'free' means 'unallocated' #: ../bleachbit/Cleaner.py:519 msgid "Overwrite free disk space to hide deleted files" msgstr "" "Suprascrie spațiul liber de pe disc pentru a ascunde fișierele șterse" #: ../bleachbit/Cleaner.py:520 msgid "This option is very slow." msgstr "Această opțiune este foarte înceată." #: ../bleachbit/Cleaner.py:524 msgid "The system in general" msgstr "Sistemul în general" #: ../bleachbit/Cleaner.py:526 ../bleachbit/Cleaner.py:846 msgid "System" msgstr "Sistem" #. TRANSLATORS: 'Free' means 'unallocated.' #. %s expands to a path such as C:\ or /tmp/ #: ../bleachbit/Cleaner.py:730 ../bleachbit/Cleaner.py:879 #, python-format msgid "Overwrite free disk space %s" msgstr "Suprascrie spațiul liber %s" #: ../bleachbit/GuiPreferences.py:55 ../bleachbit/GUI.py:706 msgid "Preferences" msgstr "Preferințe" #: ../bleachbit/GuiPreferences.py:61 msgid "General" msgstr "General" #: ../bleachbit/GuiPreferences.py:64 msgid "Drives" msgstr "Unități" #: ../bleachbit/GuiPreferences.py:67 msgid "Languages" msgstr "Limbi" #: ../bleachbit/GuiPreferences.py:69 msgid "Whitelist" msgstr "Listă excepții" #: ../bleachbit/GuiPreferences.py:114 msgid "Check periodically for software updates via the Internet" msgstr "Verifică periodic, via Internet, apariția unor noi versiuni" #: ../bleachbit/GuiPreferences.py:119 msgid "" "If an update is found, you will be given the option to view information " "about it. Then, you may manually download and install the update." msgstr "" "Dacă este găsită o versiune nouă, veți avea opțiunea să consultați " "informații despre aceasta. Apoi veți putea descărca și instala manual noua " "versiune." #: ../bleachbit/GuiPreferences.py:125 msgid "Check for new beta releases" msgstr "Verifică pentru noi versiuni beta" #: ../bleachbit/GuiPreferences.py:134 msgid "Download and update cleaners from community (winapp2.ini)" msgstr "" "Descarcă și actualizează programele de curățare de la comunitate " "(winapp2.ini)" #. TRANSLATORS: This means to hide cleaners which would do #. nothing. For example, if Firefox were never used on #. this system, this option would hide Firefox to simplify #. the list of cleaners. #: ../bleachbit/GuiPreferences.py:148 msgid "Hide irrelevant cleaners" msgstr "Ascunde programele de curățare irelevante" #. TRANSLATORS: Overwriting is the same as shredding. It is a way #. to prevent recovery of the data. You could also translate #. 'Shred files to prevent recovery.' #: ../bleachbit/GuiPreferences.py:156 msgid "Overwrite files to hide contents" msgstr "" "Suprascrie fișierele pentru a preveni recuperarea conținutului acestora" #: ../bleachbit/GuiPreferences.py:160 msgid "" "Overwriting is ineffective on some file systems and with certain BleachBit " "operations. Overwriting is significantly slower." msgstr "" "Suprascrierea este ineficientă pe anumite sisteme de fișiere impreună cu " "anumite operații BleachBit. Suprascrierea este mult mai inceată." #: ../bleachbit/GuiPreferences.py:163 msgid "Start BleachBit with computer" msgstr "Pornește BleachBit la pornirea calculatorului" #: ../bleachbit/GuiPreferences.py:169 msgid "Exit after cleaning" msgstr "Ieși după curățare" #: ../bleachbit/GuiPreferences.py:175 msgid "Confirm before delete" msgstr "Confirmă înainte de a șterge" #: ../bleachbit/GuiPreferences.py:183 msgid "Use IEC sizes (1 KiB = 1024 bytes) instead of SI (1 kB = 1000 bytes)" msgstr "" "Utilizează sistemul IEC (1KiB=1024 octeți) în loc de SI (1kB=1000 octeți)" #: ../bleachbit/GuiPreferences.py:194 ../bleachbit/GuiPreferences.py:323 #: ../bleachbit/GuiPreferences.py:364 ../bleachbit/GUI.py:592 msgid "Choose a folder" msgstr "Alegeți un dosar" #: ../bleachbit/GuiPreferences.py:218 msgid "" "Choose a writable folder for each drive for which to overwrite free space." msgstr "" "Alegeți un dosar în care să aveți drepturi de scriere în care să fie " "suprascris spațiul liber." #. TRANSLATORS: In the preferences dialog, this button adds a path to #. the list of paths #: ../bleachbit/GuiPreferences.py:240 msgctxt "button" msgid "Add" msgstr "Adaugă" #. TRANSLATORS: In the preferences dialog, this button removes a path #. from the list of paths #: ../bleachbit/GuiPreferences.py:244 ../bleachbit/GuiPreferences.py:455 msgctxt "button" msgid "Remove" msgstr "Elimină" #: ../bleachbit/GuiPreferences.py:269 msgid "All languages will be deleted except those checked." msgstr "Toate limbile vor fi șterse cu excepția celor selectate." #: ../bleachbit/GuiPreferences.py:285 msgid "Preserve" msgstr "Păstrează" #: ../bleachbit/GuiPreferences.py:289 msgid "Code" msgstr "Cod" #: ../bleachbit/GuiPreferences.py:293 ../bleachbit/GUI.py:135 msgid "Name" msgstr "Nume" #: ../bleachbit/GuiPreferences.py:310 ../bleachbit/GuiPreferences.py:351 msgid "Choose a file" msgstr "Alegeți un fișier" #: ../bleachbit/GuiPreferences.py:317 ../bleachbit/GuiPreferences.py:358 #: ../bleachbit/GuiPreferences.py:402 msgid "File" msgstr "Fișier" #: ../bleachbit/GuiPreferences.py:331 ../bleachbit/GuiPreferences.py:372 #: ../bleachbit/GuiPreferences.py:404 msgid "Folder" msgstr "Dosar" #: ../bleachbit/GuiPreferences.py:414 msgid "Theses paths will not be deleted or modified." msgstr "Aceste căi nu vor fi șterse sau modificate." #: ../bleachbit/GuiPreferences.py:417 msgid "These locations can be selected for deletion." msgstr "Aceste locații pot fi selectate pentru ștergere." #: ../bleachbit/GuiPreferences.py:425 msgid "Type" msgstr "Tip" #. TRANSLATORS: In the tree view "Path" is used generically to refer to a #. file, a folder, or a pattern describing either #: ../bleachbit/GuiPreferences.py:431 msgid "Path" msgstr "Cale" #: ../bleachbit/GuiPreferences.py:443 msgctxt "button" msgid "Add file" msgstr "Adaugă fișier" #: ../bleachbit/GuiPreferences.py:449 msgctxt "button" msgid "Add folder" msgstr "Adaugă dosar" #: ../bleachbit/RecognizeCleanerML.py:57 msgid "Security warning" msgstr "Avertisment de securitate" #: ../bleachbit/RecognizeCleanerML.py:70 msgid "" "These cleaner definitions are new or have changed. Malicious definitions can " "damage your system. If you do not trust these changes, delete the files or " "quit." msgstr "" "Aceste definiții de curățare sunt noi sau au fost schimbate. Definițiile " "malițioase pot avaria sistemul. Dacă nu aveți încredere în aceste " "modificări, ștergeți fișierele sau închideți programul." #: ../bleachbit/RecognizeCleanerML.py:85 msgctxt "column_label" msgid "Delete" msgstr "Șterge" #: ../bleachbit/RecognizeCleanerML.py:90 msgctxt "column_label" msgid "Filename" msgstr "Nume fișier" #. TRANSLATORS: This indicates an error. The special keyword #. %(operation)s will be replaced by 'firefox' or 'opera' or #. some other cleaner ID. The special keyword %(msg)s will be #. replaced by a message such as 'Permission denied.' #: ../bleachbit/Worker.py:74 #, python-format msgid "Exception while running operation '%(operation)s': '%(msg)s'" msgstr "A apărut o excepție în timp executam operația %(operation)s: %(msg)s" #. TRANSLATORS: 'free' means 'unallocated' #: ../bleachbit/Worker.py:187 msgid "Please wait. Wiping free disk space." msgstr "Așteptați. Se curăță spațiul liber de pe disc." #. TRANSLATORS: %s is replaced with Firefox, System, etc. #: ../bleachbit/Worker.py:189 ../bleachbit/Worker.py:329 #, python-format msgid "Please wait. Cleaning %s." msgstr "Așteptați. Se curăță %s." #: ../bleachbit/Worker.py:204 msgid "Please wait. Wiping file system metadata." msgstr "Așteptați. Se șterg metadatele sistemului de fișiere." #: ../bleachbit/Worker.py:207 msgid "Please wait. Cleaning up after wiping file system metadata." msgstr "" "Așteptați. Se curăță după ștergerea metadatelor sistemului de fișiere." #: ../bleachbit/Worker.py:210 #, python-format msgid "About %d minute remaining." msgid_plural "About %d minutes remaining." msgstr[0] "Mai durează aproximativ %d minut." msgstr[1] "Mai durează aproximativ %d minute." msgstr[2] "Mai durează aproximativ %d de minute." #. TRANSLATORS: This refers to disk space that was #. really recovered (in other words, not a preview) #: ../bleachbit/Worker.py:268 #, python-format msgid "Disk space recovered: %s" msgstr "Spațiu recuperat: %s" #. TRANSLATORS: This refers to a preview (no real #. changes were made yet) #: ../bleachbit/Worker.py:272 #, python-format msgid "Disk space to be recovered: %s" msgstr "Spațiul ce va fi recuperat: %s" #. TRANSLATORS: This refers to the number of files really #. deleted (in other words, not a preview). #: ../bleachbit/Worker.py:277 #, python-format msgid "Files deleted: %d" msgstr "Fișiere șterse: %d" #. TRANSLATORS: This refers to the number of files that #. would be deleted (in other words, simply a preview). #: ../bleachbit/Worker.py:281 #, python-format msgid "Files to be deleted: %d" msgstr "Fișiere ce vor fi șterse: %d" #: ../bleachbit/Worker.py:284 #, python-format msgid "Special operations: %d" msgstr "Operații speciale: %d" #: ../bleachbit/Worker.py:287 #, python-format msgid "Errors: %d" msgstr "Erori: %d" #. TRANSLATORS: The "deep scan" feature searches over broad #. areas of the file system such as the user's whole home directory #. or all the system executables. #: ../bleachbit/Worker.py:303 msgid "Please wait. Running deep scan." msgstr "Așteptați. Se efectuează o scanare în adâncime." #. TRANSLATORS: %s is replaced with Firefox, System, etc. #: ../bleachbit/Worker.py:332 #, python-format msgid "Please wait. Previewing %s." msgstr "Așteptați. Se previzualizează %s." #: ../bleachbit/Update.py:77 msgid "New winapp2.ini was downloaded." msgstr "Noul winapp2.ini a fost descărcat." #: ../bleachbit/Update.py:123 msgid "Update BleachBit" msgstr "Actualizează BleachBit" #: ../bleachbit/Update.py:128 msgid "A new version is available." msgstr "Este disponibilă o nouă versiune." #. TRANSLATORS: %s expands to version such as '0.8.4' or '0.8.5beta' or #. similar #: ../bleachbit/Update.py:137 #, python-format msgid "Update to version %s" msgstr "Actualizează la versiunea %s" #: ../bleachbit/Update.py:163 #, python-format msgid "" "Error when opening a network connection to %s to check for updates. Please " "verify the network is working." msgstr "" "Eroare de conectare la %s pentru a căuta actualizări noi. Verificați dacă " "sunteți conectat la internet." #: ../bleachbit/CLI.py:106 #, python-format msgid "not a valid cleaner: %s" msgstr "nu este un program de curățare valid: %s" #. TRANSLATORS: This is the command line usage. Don't translate #. %prog, but do translate usage, options, cleaner, and option. #. More information about the command line is here #. http://www.bleachbit.org/documentation/command-line #: ../bleachbit/CLI.py:133 msgid "usage: %prog [options] cleaner.option1 cleaner.option2" msgstr "utilizare: %prog [opțiuni] opțiune.curățător1 opțiune.curățător2" #: ../bleachbit/CLI.py:136 msgid "list cleaners" msgstr "listează programele de curățare" #. TRANSLATORS: predefined cleaners are for applications, such as Firefox and Flash. #. This is different than cleaning an arbitrary file, such as a #. spreadsheet on the desktop. #: ../bleachbit/CLI.py:141 msgid "run cleaners to delete files and make other permanent changes" msgstr "" "rulează programe de curățare pentru a șterge fișiere și a face alte " "schimbări permanente" #: ../bleachbit/CLI.py:144 msgid "shred specific files or folders" msgstr "distruge fișiere sau dosare specifice" #: ../bleachbit/CLI.py:146 msgid "show system information" msgstr "afișează informații despre sistem" #: ../bleachbit/CLI.py:148 msgid "launch the graphical interface" msgstr "lansează interfaţa grafică" #: ../bleachbit/CLI.py:150 msgid "do not prompt for administrator privileges" msgstr "nu cere privilegii de administrator" #: ../bleachbit/CLI.py:155 msgid "preview files to be deleted and other changes" msgstr "previzualizează fișierele de șters și alte modificări" #: ../bleachbit/CLI.py:157 msgid "use options set in the graphical interface" msgstr "folosește opţiunile stabilite în interfaţa grafică" #: ../bleachbit/CLI.py:160 msgid "update winapp2.ini, if a new version is available" msgstr "actualizează winapp2.ini, dacă este disponibilă o nouă versiune" #: ../bleachbit/CLI.py:162 msgid "output version information and exit" msgstr "afișează informații despre versiune și ieși" #: ../bleachbit/CLI.py:164 msgid "overwrite files to hide contents" msgstr "suprascrie fișierele pentru a le ascunde conținutul" #. TRANSLATORS: this is the context menu #: ../bleachbit/Action.py:372 ../bleachbit/GUI.py:630 msgid "Clean" msgstr "Curăță" #: ../bleachbit/Action.py:392 #, python-format msgid "Run external command: %s" msgstr "Execută comanda externă: %s" #: ../bleachbit/GUI.py:143 msgid "Active" msgstr "Activ" #. TRANSLATORS: Size is the label for the column that shows how #. much space an option would clean or did clean #: ../bleachbit/GUI.py:155 msgid "Size" msgstr "Spațiu eliberat" #. TRANSLATORS: %(cleaner) may be Firefox, System, etc. #. %(option) may be cache, logs, cookies, etc. #. %(warning) may be 'This option is really slow' #: ../bleachbit/GUI.py:186 #, python-format msgid "" "Warning regarding %(cleaner)s - %(option)s:\n" "\n" "%(warning)s" msgstr "" "Avertisment cu privire la %(cleaner)s - %(option)s:\n" "\n" "%(warning)s" #: ../bleachbit/GUI.py:372 msgid "You must select an operation" msgstr "Trebuie să alegeți o operație" #: ../bleachbit/GUI.py:392 ../bleachbit/GUI.py:415 msgid "Done." msgstr "Gata." #: ../bleachbit/GUI.py:428 msgid "Program to clean unnecessary files" msgstr "Program de curățare a fișierelor inutile" #: ../bleachbit/GUI.py:434 msgid "" "GNU General Public License version 3 or later.\n" "See http://www.gnu.org/licenses/gpl-3.0.txt" msgstr "" "Licența GNU General Public Licence versiunea 3 sau mai nouă\n" "Vezi http://www.gnu.org/licenses/gpl-3.0.txt" #. TRANSLATORS: Maintain the names of translators here. #. Launchpad does this automatically for translations #. typed in Launchpad. This is a special string shown #. in the 'About' box. #: ../bleachbit/GUI.py:440 msgid "translator-credits" msgstr "" "Launchpad Contributions:\n" " CD https://launchpad.net/~cstld\n" " Catalin Fluturel https://launchpad.net/~fkt\n" " Cristian Moldovan https://launchpad.net/~crismblog\n" " Lucian Adrian Grijincu https://launchpad.net/~lucian.grijincu\n" " Radu Rădeanu https://launchpad.net/~radu-radeanu\n" " Vlad Paul Paval https://launchpad.net/~wladypauly" #: ../bleachbit/GUI.py:452 msgid "System information" msgstr "Informații sistem" #: ../bleachbit/GUI.py:525 msgid "Choose files to shred" msgstr "Alegeți fișierele de distrus" #: ../bleachbit/GUI.py:528 msgid "Choose folder to shred" msgstr "Alegeți dosarul de distrus" #. TRANSLATORS: this is the context menu #: ../bleachbit/GUI.py:625 msgid "Preview" msgstr "Previzualizare" #: ../bleachbit/GUI.py:696 msgid "Sh_red Folders" msgstr "Dist_ruge dosare" #: ../bleachbit/GUI.py:698 msgid "_Wipe Free Space" msgstr "Curăță spațiul _liber" #: ../bleachbit/GUI.py:700 msgid "S_hred Settings and Quit" msgstr "Distru_ge configurările și ieși" #: ../bleachbit/GUI.py:702 msgid "_Quit" msgstr "_Ieșire" #: ../bleachbit/GUI.py:704 msgid "_File" msgstr "_Fișier" #: ../bleachbit/GUI.py:707 msgid "_Edit" msgstr "_Editare" #: ../bleachbit/GUI.py:708 msgid "Help Contents" msgstr "Ajutor" #: ../bleachbit/GUI.py:711 msgid "_Release Notes" msgstr "Note despre ve_rsiune" #: ../bleachbit/GUI.py:714 msgid "_System Information" msgstr "Informații _sistem" #: ../bleachbit/GUI.py:717 msgid "_About" msgstr "_Despre" #: ../bleachbit/GUI.py:718 msgid "_Help" msgstr "_Ajutor" #: ../bleachbit/GUI.py:743 msgctxt "button" msgid "Preview" msgstr "Previzualizare" #: ../bleachbit/GUI.py:748 msgid "Preview files in the selected operations (without deleting any files)" msgstr "" "Vizualizează fișierele pentru operațiile selectate (fără a șterge vreun " "fișier)" #: ../bleachbit/GUI.py:758 msgctxt "button" msgid "Clean" msgstr "Curăță" #: ../bleachbit/GUI.py:762 msgid "Clean files in the selected operations" msgstr "Curăță fişierele din operaţiunile selectate" #: ../bleachbit/GUI.py:851 msgid "Error when checking for updates: " msgstr "A apărut o eroare în timp ce se căutau versiuni noi: " #: ../bleachbit/GUI.py:891 msgid "" "Error loading the SQLite module: the antivirus software may be blocking it." msgstr "" "Eroare la încărcarea modulului SQLite: e posibil să fie blocat de un " "antivirus." #: ../bleachbit/GUI.py:894 msgid "" "You are running BleachBit with administrative privileges for cleaning shared " "parts of the system, and references to the user profile folder will clean " "only the root account." msgstr "" "Rulați BleachBit cu privilegii administrative pentru a șterge părți " "partajate ale sistemului, iar referințele la dosarul profilului de " "utilizator vor curăța doar contul root." bleachbit-2.0/po/en_AU.po0000644000175000017500000013257013245436307013356 0ustar hlehle# English (Australia) translation for bleachbit # Copyright (c) 2011 Rosetta Contributors and Canonical Ltd 2011 # This file is distributed under the same license as the bleachbit package. # FIRST AUTHOR , 2011. # msgid "" msgstr "" "Project-Id-Version: bleachbit\n" "Report-Msgid-Bugs-To: FULL NAME \n" "POT-Creation-Date: 2017-02-11 11:12-0700\n" "PO-Revision-Date: 2017-02-15 07:19+0000\n" "Last-Translator: Jared Norris \n" "Language-Team: English (Australia) \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n != 1;\n" "X-Launchpad-Export-Date: 2017-02-16 05:00+0000\n" "X-Generator: Launchpad (build 18326)\n" #: ../cleaners/mc.xml ../cleaners/tortoisesvn.xml ../cleaners/vim.xml #: ../cleaners/safari.xml ../cleaners/links2.xml ../cleaners/seamonkey.xml #: ../cleaners/realplayer.xml ../cleaners/windows_defender.xml #: ../cleaners/d4x.xml ../cleaners/sqlite3.xml #: ../cleaners/internet_explorer.xml ../cleaners/libreoffice.xml #: ../cleaners/easytag.xml ../cleaners/bash.xml ../cleaners/nautilus.xml #: ../cleaners/octave.xml ../cleaners/elinks.xml ../cleaners/chromium.xml #: ../cleaners/google_chrome.xml msgid "History" msgstr "History" #: ../cleaners/mc.xml ../cleaners/tortoisesvn.xml ../cleaners/links2.xml #: ../cleaners/realplayer.xml ../cleaners/d4x.xml ../cleaners/libreoffice.xml #: ../cleaners/easytag.xml ../cleaners/nautilus.xml ../cleaners/gnome.xml #: ../bleachbit/Cleaner.py:349 ../bleachbit/Cleaner.py:423 #: ../bleachbit/Cleaner.py:432 msgid "Delete the usage history" msgstr "Delete the usage history" #: ../cleaners/gpodder.xml ../cleaners/hippo_opensim_viewer.xml #: ../cleaners/thumbnails.xml ../cleaners/safari.xml ../cleaners/emesene.xml #: ../cleaners/liferea.xml ../cleaners/seamonkey.xml ../cleaners/vuze.xml #: ../cleaners/yahoo_messenger.xml ../cleaners/pidgin.xml #: ../cleaners/adobe_reader.xml ../cleaners/evolution.xml #: ../cleaners/tremulous.xml ../cleaners/libreoffice.xml ../cleaners/xine.xml #: ../cleaners/nexuiz.xml ../cleaners/exaile.xml ../cleaners/opera.xml #: ../cleaners/amsn.xml ../cleaners/gftp.xml ../cleaners/miro.xml #: ../cleaners/beagle.xml ../cleaners/kde.xml ../cleaners/epiphany.xml #: ../cleaners/flash.xml ../cleaners/secondlife_viewer.xml ../cleaners/java.xml #: ../cleaners/chromium.xml ../cleaners/audacious.xml ../cleaners/rhythmbox.xml #: ../cleaners/google_chrome.xml ../cleaners/thunderbird.xml #: ../bleachbit/Cleaner.py:192 ../bleachbit/Cleaner.py:370 #: ../bleachbit/Cleaner.py:455 msgid "Cache" msgstr "Cache" #: ../cleaners/gpodder.xml ../cleaners/yum.xml #: ../cleaners/hippo_opensim_viewer.xml ../cleaners/thumbnails.xml #: ../cleaners/windows_explorer.xml ../cleaners/liferea.xml #: ../cleaners/vuze.xml ../cleaners/yahoo_messenger.xml ../cleaners/pidgin.xml #: ../cleaners/adobe_reader.xml ../cleaners/evolution.xml #: ../cleaners/libreoffice.xml ../cleaners/apt.xml ../cleaners/xine.xml #: ../cleaners/nexuiz.xml ../cleaners/exaile.xml ../cleaners/amsn.xml #: ../cleaners/gftp.xml ../cleaners/miro.xml ../cleaners/beagle.xml #: ../cleaners/kde.xml ../cleaners/flash.xml ../cleaners/secondlife_viewer.xml #: ../cleaners/java.xml ../cleaners/audacious.xml ../cleaners/rhythmbox.xml #: ../bleachbit/Cleaner.py:370 ../bleachbit/Cleaner.py:455 #: ../bleachbit/Cleaner.py:489 ../bleachbit/Cleaner.py:491 msgid "Delete the cache" msgstr "Delete the cache" #. TRANSLATORS: Vacuum is a verb. The term is jargon #. from the SQLite database. Microsoft Access uses #. the term 'Compact Database' (which you may translate #. instead). Another synonym is 'defragment.' #: ../cleaners/gpodder.xml ../cleaners/yum.xml ../cleaners/safari.xml #: ../cleaners/liferea.xml ../cleaners/chromium.xml #: ../cleaners/google_chrome.xml ../cleaners/thunderbird.xml #: ../bleachbit/Cleaner.py:214 ../bleachbit/Cleaner.py:360 #: ../bleachbit/Action.py:445 msgid "Vacuum" msgstr "Vacuum" #: ../cleaners/gpodder.xml ../cleaners/yum.xml ../cleaners/safari.xml #: ../cleaners/liferea.xml ../cleaners/chromium.xml #: ../cleaners/google_chrome.xml ../cleaners/thunderbird.xml #: ../bleachbit/Cleaner.py:215 msgid "" "Clean database fragmentation to reduce space and improve speed without " "removing any data" msgstr "" "Clean database fragmentation to reduce space and improve speed without " "removing any data" #: ../cleaners/yum.xml ../cleaners/apt.xml msgid "Package manager" msgstr "Package manager" #: ../cleaners/warzone2100.xml ../cleaners/hippo_opensim_viewer.xml #: ../cleaners/gl-117.xml ../cleaners/tremulous.xml ../cleaners/nexuiz.xml #: ../cleaners/secondlife_viewer.xml msgid "Game" msgstr "Game" #: ../cleaners/warzone2100.xml ../cleaners/hippo_opensim_viewer.xml #: ../cleaners/teamviewer.xml ../cleaners/realplayer.xml ../cleaners/vuze.xml #: ../cleaners/yahoo_messenger.xml ../cleaners/amule.xml #: ../cleaners/easytag.xml ../cleaners/exaile.xml ../cleaners/screenlets.xml #: ../cleaners/gftp.xml ../cleaners/miro.xml ../cleaners/audacious.xml #: ../bleachbit/Cleaner.py:486 msgid "Logs" msgstr "Logs" #: ../cleaners/warzone2100.xml ../cleaners/hippo_opensim_viewer.xml #: ../cleaners/teamviewer.xml ../cleaners/realplayer.xml ../cleaners/vuze.xml #: ../cleaners/yahoo_messenger.xml ../cleaners/amule.xml ../cleaners/exaile.xml #: ../cleaners/screenlets.xml ../cleaners/gftp.xml ../cleaners/miro.xml #: ../cleaners/audacious.xml ../bleachbit/Cleaner.py:486 msgid "Delete the logs" msgstr "Delete the logs" #: ../cleaners/thumbnails.xml ../cleaners/windows_explorer.xml msgid "Thumbnails" msgstr "Thumbnails" #: ../cleaners/thumbnails.xml msgid "Icons for files on the system" msgstr "Icons for files on the system" #: ../cleaners/vim.xml ../cleaners/gedit.xml msgid "Editor" msgstr "Editor" #: ../cleaners/vim.xml msgid "" "Delete ~/.viminfo which includes file history, command history, and buffers" msgstr "" "Delete ~/.viminfo which includes file history, command history, and buffers" #: ../cleaners/filezilla.xml ../cleaners/transmission.xml ../cleaners/vuze.xml #: ../cleaners/amule.xml ../cleaners/gftp.xml msgid "File transfer client" msgstr "File transfer client" #: ../cleaners/filezilla.xml ../cleaners/paint.xml #: ../cleaners/windows_media_player.xml ../cleaners/windows_explorer.xml #: ../cleaners/teamviewer.xml ../cleaners/microsoft_office.xml #: ../cleaners/vlc.xml ../cleaners/adobe_reader.xml ../cleaners/winamp.xml #: ../cleaners/winzip.xml ../cleaners/winrar.xml ../cleaners/audacious.xml #: ../cleaners/wordpad.xml ../bleachbit/Cleaner.py:371 msgid "Most recently used" msgstr "Most recently used" #: ../cleaners/filezilla.xml ../cleaners/windows_explorer.xml #: ../cleaners/gwenview.xml ../cleaners/adobe_reader.xml ../cleaners/gedit.xml #: ../cleaners/kde.xml ../cleaners/audacious.xml ../bleachbit/Cleaner.py:372 #: ../bleachbit/Cleaner.py:469 msgid "Delete the list of recently used documents" msgstr "Delete the list of recently used documents" #: ../cleaners/skype.xml ../cleaners/emesene.xml #: ../cleaners/yahoo_messenger.xml ../cleaners/pidgin.xml ../cleaners/amsn.xml msgid "Chat client" msgstr "Chat client" #: ../cleaners/skype.xml ../cleaners/hexchat.xml ../cleaners/emesene.xml #: ../cleaners/seamonkey.xml ../cleaners/yahoo_messenger.xml #: ../cleaners/pidgin.xml ../cleaners/amsn.xml msgid "Chat logs" msgstr "Chat logs" #: ../cleaners/skype.xml ../cleaners/hexchat.xml ../cleaners/emesene.xml #: ../cleaners/seamonkey.xml ../cleaners/yahoo_messenger.xml #: ../cleaners/pidgin.xml ../cleaners/amsn.xml msgid "Delete the chat logs" msgstr "Delete the chat logs" #: ../cleaners/skype.xml msgid "Installers" msgstr "Installers" #: ../cleaners/skype.xml msgid "Delete cached patches and installers" msgstr "Delete cached patches and installers" #: ../cleaners/hexchat.xml msgid "IRC client formerly known as XChat" msgstr "IRC client formerly known as XChat" #: ../cleaners/safari.xml ../cleaners/links2.xml ../cleaners/seamonkey.xml #: ../cleaners/konqueror.xml ../cleaners/internet_explorer.xml #: ../cleaners/opera.xml ../cleaners/epiphany.xml ../cleaners/elinks.xml #: ../cleaners/chromium.xml ../cleaners/google_chrome.xml #: ../bleachbit/Cleaner.py:226 msgid "Web browser" msgstr "Web browser" #: ../cleaners/safari.xml ../cleaners/seamonkey.xml ../cleaners/opera.xml #: ../cleaners/epiphany.xml ../cleaners/chromium.xml #: ../cleaners/google_chrome.xml ../cleaners/thunderbird.xml #: ../bleachbit/Cleaner.py:193 msgid "Delete the web cache, which reduces time to display revisited pages" msgstr "Delete the web cache, which reduces time to display revisited pages" #: ../cleaners/safari.xml ../cleaners/liferea.xml ../cleaners/seamonkey.xml #: ../cleaners/realplayer.xml ../cleaners/konqueror.xml #: ../cleaners/internet_explorer.xml ../cleaners/opera.xml #: ../cleaners/epiphany.xml ../cleaners/flash.xml ../cleaners/silverlight.xml #: ../cleaners/chromium.xml ../cleaners/google_chrome.xml #: ../cleaners/thunderbird.xml ../bleachbit/Cleaner.py:194 msgid "Cookies" msgstr "Cookies" #: ../cleaners/safari.xml ../cleaners/liferea.xml ../cleaners/seamonkey.xml #: ../cleaners/realplayer.xml ../cleaners/konqueror.xml #: ../cleaners/internet_explorer.xml ../cleaners/opera.xml #: ../cleaners/epiphany.xml ../cleaners/flash.xml ../cleaners/silverlight.xml #: ../cleaners/chromium.xml ../cleaners/google_chrome.xml #: ../cleaners/thunderbird.xml ../bleachbit/Cleaner.py:195 msgid "" "Delete cookies, which contain information such as web site preferences, " "authentication, and tracking identification" msgstr "" "Delete cookies, which contain information such as web site preferences, " "authentication, and tracking identification" #: ../cleaners/safari.xml ../cleaners/konqueror.xml #: ../cleaners/internet_explorer.xml ../cleaners/opera.xml #: ../bleachbit/Cleaner.py:213 msgid "List of visited web pages" msgstr "List of visited web pages" #. Torrent software can block a list of IP addresses, such as those that may belong to malware or anti-piracy organizations #: ../cleaners/transmission.xml msgid "Blocklists" msgstr "Blocklists" #: ../cleaners/transmission.xml ../cleaners/windows_defender.xml #: ../cleaners/beagle.xml ../cleaners/thunderbird.xml ../cleaners/deepscan.xml #: ../bleachbit/Cleaner.py:197 msgid "Delete the files" msgstr "Delete the files" #: ../cleaners/transmission.xml msgid "Blocklists will need update to work." msgstr "Blocklists will need update to work." #: ../cleaners/transmission.xml msgid "Torrents" msgstr "Torrents" #: ../cleaners/transmission.xml msgid "Delete the torrents (just the metadata but not the files described)" msgstr "Delete the torrents (just the metadata but not the files described)" #: ../cleaners/transmission.xml msgid "Statistics" msgstr "Statistics" #: ../cleaners/transmission.xml msgid "Delete the file" msgstr "Delete the file" #: ../cleaners/paint.xml ../cleaners/windows_media_player.xml #: ../cleaners/windows_explorer.xml ../cleaners/teamviewer.xml #: ../cleaners/microsoft_office.xml ../cleaners/vlc.xml ../cleaners/winamp.xml #: ../cleaners/winzip.xml ../cleaners/winrar.xml ../cleaners/wordpad.xml msgid "Delete the most recently used list" msgstr "Delete the most recently used list" #: ../cleaners/emesene.xml msgid "Delete the avatars and emoticons cache" msgstr "Delete the avatars and emoticons cache" #: ../cleaners/windows_media_player.xml ../cleaners/realplayer.xml #: ../cleaners/vlc.xml ../cleaners/winamp.xml msgid "Media player" msgstr "Media player" #: ../cleaners/windows_explorer.xml ../cleaners/nautilus.xml msgid "File manager" msgstr "File manager" #: ../cleaners/windows_explorer.xml ../cleaners/gwenview.xml #: ../cleaners/gedit.xml ../cleaners/kde.xml ../bleachbit/Cleaner.py:468 #: ../bleachbit/Cleaner.py:663 msgid "Recent documents list" msgstr "Recent documents list" #: ../cleaners/windows_explorer.xml msgid "" "This option will reset pinned locations in Quick Access to their defaults." msgstr "" "This option will reset pinned locations in Quick Access to their defaults." #. In Windows 'Run' is the dialog in the Start menu #. In GNOME 'Run' is the dialog shown when typing ALT+F2' #: ../cleaners/windows_explorer.xml ../cleaners/gnome.xml msgid "Run" msgstr "Run" #: ../cleaners/windows_explorer.xml ../cleaners/opera.xml ../cleaners/gnome.xml #: ../cleaners/google_toolbar.xml msgid "Search history" msgstr "Search history" #: ../cleaners/windows_explorer.xml ../cleaners/opera.xml ../cleaners/gnome.xml #: ../cleaners/google_toolbar.xml msgid "Delete the search history" msgstr "Delete the search history" #: ../cleaners/windows_explorer.xml msgid "This will restart Windows Explorer." msgstr "This will restart Windows Explorer." #: ../cleaners/gl-117.xml ../cleaners/microsoft_office.xml #: ../cleaners/beagle.xml ../cleaners/secondlife_viewer.xml ../cleaners/x11.xml msgid "Debug logs" msgstr "Debug logs" #: ../cleaners/gl-117.xml ../cleaners/microsoft_office.xml #: ../cleaners/easytag.xml ../cleaners/beagle.xml #: ../cleaners/secondlife_viewer.xml ../cleaners/x11.xml msgid "Delete the debug logs" msgstr "Delete the debug logs" #: ../cleaners/google_earth.xml ../cleaners/winetricks.xml ../cleaners/vuze.xml #: ../cleaners/adobe_reader.xml ../cleaners/amule.xml ../cleaners/wine.xml #: ../cleaners/internet_explorer.xml ../cleaners/gimp.xml ../cleaners/kde.xml #: ../cleaners/deepscan.xml ../bleachbit/Cleaner.py:520 msgid "Temporary files" msgstr "Temporary files" #: ../cleaners/google_earth.xml ../cleaners/winetricks.xml ../cleaners/vuze.xml #: ../cleaners/adobe_reader.xml ../cleaners/amule.xml ../cleaners/wine.xml #: ../cleaners/internet_explorer.xml ../cleaners/gimp.xml ../cleaners/kde.xml #: ../cleaners/deepscan.xml ../bleachbit/Cleaner.py:520 msgid "Delete the temporary files" msgstr "Delete the temporary files" #: ../cleaners/seamonkey.xml ../cleaners/opera.xml ../bleachbit/Cleaner.py:201 msgid "Download history" msgstr "Download history" #: ../cleaners/seamonkey.xml ../cleaners/opera.xml ../bleachbit/Cleaner.py:201 msgid "List of files downloaded" msgstr "List of files downloaded" #: ../cleaners/seamonkey.xml msgid "Delete the list of visited web pages" msgstr "Delete the list of visited web pages" #: ../cleaners/vuze.xml ../cleaners/deepscan.xml ../bleachbit/Cleaner.py:190 msgid "Backup files" msgstr "Backup files" #: ../cleaners/vuze.xml ../cleaners/deepscan.xml ../bleachbit/Cleaner.py:191 msgid "Delete the backup files" msgstr "Delete the backup files" #: ../cleaners/konqueror.xml ../cleaners/opera.xml ../cleaners/chromium.xml msgid "Current session" msgstr "Current session" #: ../cleaners/konqueror.xml ../cleaners/opera.xml ../cleaners/chromium.xml msgid "Delete the current session" msgstr "Delete the current session" #: ../cleaners/konqueror.xml ../cleaners/opera.xml ../bleachbit/Cleaner.py:213 msgid "URL history" msgstr "URL history" #: ../cleaners/microsoft_office.xml ../cleaners/libreoffice.xml #: ../bleachbit/Cleaner.py:375 msgid "Office suite" msgstr "Office suite" #: ../cleaners/windows_defender.xml msgid "Anti-virus" msgstr "Anti-virus" #: ../cleaners/journald.xml msgid "System journals" msgstr "System journals" #: ../cleaners/journald.xml msgid "Clean old system journals" msgstr "Clean old system journals" #: ../cleaners/adobe_reader.xml msgid "Document viewer" msgstr "Document viewer" #: ../cleaners/evolution.xml ../cleaners/thunderbird.xml msgid "Email client" msgstr "Email client" #: ../cleaners/tremulous.xml msgid "Delete the list of game servers" msgstr "Delete the list of game servers" #: ../cleaners/sqlite3.xml ../cleaners/bash.xml ../cleaners/octave.xml msgid "Delete the command history" msgstr "Delete the command history" #: ../cleaners/wine.xml msgid "Compatibility layer for Windows software" msgstr "Compatibility layer for Windows software" #: ../cleaners/internet_explorer.xml ../cleaners/chromium.xml #: ../cleaners/google_chrome.xml ../bleachbit/Cleaner.py:202 msgid "Form history" msgstr "Form history" #: ../cleaners/internet_explorer.xml ../bleachbit/Cleaner.py:203 msgid "A history of forms entered in web sites and in the Search bar" msgstr "A history of forms entered in web sites and in the Search bar" #. This software edits metadata tags, such as title and artist, in audio files #: ../cleaners/easytag.xml msgid "Audio files tagger" msgstr "Audio files tagger" #: ../cleaners/apt.xml msgid "Delete obsolete files" msgstr "Delete obsolete files" #: ../cleaners/apt.xml msgid "Package lists" msgstr "Package lists" #: ../cleaners/xine.xml ../cleaners/miro.xml ../cleaners/flash.xml msgid "Multimedia viewer" msgstr "Multimedia viewer" #: ../cleaners/recoll.xml ../cleaners/beagle.xml msgid "Search tool" msgstr "Search tool" #: ../cleaners/recoll.xml ../cleaners/beagle.xml ../cleaners/thunderbird.xml msgid "Index" msgstr "Index" #: ../cleaners/recoll.xml msgid "" "Delete the search index, a database of words and the files they contain" msgstr "" "Delete the search index, a database of words and the files they contain" #: ../cleaners/gimp.xml msgid "Graphics editor" msgstr "Graphics editor" #: ../cleaners/exaile.xml msgid "Downloaded podcasts" msgstr "Downloaded podcasts" #: ../cleaners/exaile.xml msgid "Delete downloaded podcasts" msgstr "Delete downloaded podcasts" #: ../cleaners/bash.xml msgid "Shell" msgstr "Shell" #. TRANSLATORS: DOM = Document Object Model. #: ../cleaners/opera.xml ../cleaners/epiphany.xml ../cleaners/chromium.xml #: ../cleaners/google_chrome.xml ../bleachbit/Cleaner.py:199 msgid "DOM Storage" msgstr "DOM Storage" #: ../cleaners/opera.xml ../cleaners/epiphany.xml ../cleaners/chromium.xml #: ../cleaners/google_chrome.xml ../bleachbit/Cleaner.py:199 msgid "Delete HTML5 cookies" msgstr "Delete HTML5 cookies" #: ../cleaners/opera.xml ../cleaners/epiphany.xml ../cleaners/chromium.xml #: ../cleaners/google_chrome.xml ../cleaners/thunderbird.xml #: ../bleachbit/Cleaner.py:208 msgid "Passwords" msgstr "Passwords" #: ../cleaners/opera.xml ../cleaners/epiphany.xml ../cleaners/chromium.xml #: ../cleaners/google_chrome.xml ../cleaners/thunderbird.xml #: ../bleachbit/Cleaner.py:209 msgid "" "A database of usernames and passwords as well as a list of sites that should " "not store passwords" msgstr "" "A database of usernames and passwords as well as a list of sites that should " "not store passwords" #: ../cleaners/opera.xml ../cleaners/epiphany.xml ../cleaners/chromium.xml #: ../cleaners/google_chrome.xml ../cleaners/thunderbird.xml #: ../bleachbit/Cleaner.py:211 msgid "This option will delete your saved passwords." msgstr "This option will delete your saved passwords." #: ../cleaners/nautilus.xml msgid "Custom folders will be reset." msgstr "Custom folders will be reset." #: ../cleaners/gnome.xml ../cleaners/kde.xml msgid "Desktop environment" msgstr "Desktop environment" #: ../cleaners/screenlets.xml msgid "Widgets for the desktop" msgstr "Widgets for the desktop" #: ../cleaners/epiphany.xml msgid "Places" msgstr "Places" #: ../cleaners/epiphany.xml msgid "" "A database of URLs including bookmarks, favicons, and a history of visited " "web sites" msgstr "" "A database of URLs including bookmarks, favicons and a history of visited " "web sites" #: ../cleaners/epiphany.xml msgid "This option deletes all bookmarks." msgstr "This option deletes all bookmarks." #: ../cleaners/winrar.xml msgid "File archiver" msgstr "File archiver" #: ../cleaners/elinks.xml msgid "Delete the cookies, visited URLs, and search history" msgstr "Delete the cookies, visited URLs, and search history" #: ../cleaners/chromium.xml ../cleaners/google_chrome.xml msgid "A history of forms entered in web sites" msgstr "A history of forms entered in web sites" #: ../cleaners/chromium.xml ../cleaners/google_chrome.xml msgid "" "Delete the history which includes visited sites, downloads, and thumbnails" msgstr "" "Delete the history which includes visited sites, downloads and thumbnails" #: ../cleaners/chromium.xml ../cleaners/google_chrome.xml msgid "Search engines" msgstr "Search engines" #. 'Factory' means a search engine that is installed by default 'from the factory,' but this is different than a 'default search engine' https://lists.launchpad.net/launchpad-translators/msg00283.html #: ../cleaners/chromium.xml ../cleaners/google_chrome.xml msgid "" "Reset the search engine usage history and delete non-factory search engines, " "some of which are added automatically" msgstr "" "Reset the search engine usage history and delete non-factory search engines, " "some of which are added automatically" #: ../cleaners/audacious.xml msgid "Audio player" msgstr "Audio player" #: ../cleaners/rhythmbox.xml msgid "Database" msgstr "Database" #: ../cleaners/rhythmbox.xml msgid "" "Delete the database, which contain information such as play count and last " "played" msgstr "" "Delete the database, which contain information such as play count and last " "played" #: ../cleaners/google_chrome.xml msgid "Session" msgstr "Session" #: ../cleaners/google_chrome.xml msgid "Delete the current and last sessions" msgstr "Delete the current and last sessions" #: ../cleaners/x11.xml msgid "Windowing system" msgstr "Windowing system" #: ../cleaners/wordpad.xml msgid "Word processor" msgstr "Word processor" #: ../cleaners/deepscan.xml msgid "Deep scan" msgstr "Deep scan" #: ../cleaners/deepscan.xml msgid "Clean files widely scattered across the disk" msgstr "Clean files widely scattered across the disk" #: ../cleaners/deepscan.xml msgid "Inspect the preview for any files you want to keep." msgstr "Inspect the preview for any files you want to keep." #: ../cleaners/deepscan.xml msgid "This option is slow." msgstr "This option is slow." #: ../bleachbit.desktop msgid "Unnecessary file cleaner" msgstr "Unnecessary file cleaner" #: ../bleachbit.desktop msgid "Free space and maintain privacy" msgstr "Free space and maintain privacy" #: ../bleachbit/FileUtilities.py:668 msgid "" "There was at least one file on a file system that does not support advanced " "overwriting." msgstr "" "There was at least one file on a file system that does not support advanced " "overwriting." #: ../bleachbit/Unix.py:574 #, python-format msgid "Executable not found: %s" msgstr "Executable not found: %s" #. TRANSLATORS: %s expands to a name such as 'Firefox' or 'System'. #: ../bleachbit/Unix.py:623 ../bleachbit/Worker.py:136 #, python-format msgid "" "%s cannot be cleaned because it is currently running. Close it, and try " "again." msgstr "" "%s cannot be cleaned because it is currently running. Close it, and try " "again." #: ../bleachbit/GuiBasic.py:112 msgid "Delete confirmation" msgstr "Delete confirmation" #: ../bleachbit/GuiBasic.py:122 msgid "" "Are you sure you want to permanently delete files according to the selected " "operations? The actual files that will be deleted may have changed since " "you ran the preview." msgstr "" "Are you sure you want to permanently delete files according to the selected " "operations? The actual files that will be deleted may have changed since " "you ran the preview." #: ../bleachbit/GuiBasic.py:125 msgid "Are you sure you want to permanently delete these files?" msgstr "Are you sure you want to permanently delete these files?" #: ../bleachbit/GuiBasic.py:162 #, python-format msgid "" "Because you are running as root, please manually open this link in a web " "browser:\n" "%s" msgstr "" "Because you are running as root, please manually open this link in a web " "browser:\n" "%s" #. TRANSLATORS: %s expands to www.bleachbit.org or similar #: ../bleachbit/GuiBasic.py:174 #, python-format msgid "Open web browser to %s?" msgstr "Open web browser to %s?" #. TRANSLATORS: This is the label in the log indicating was #. skipped because it matches the whitelist #: ../bleachbit/Command.py:47 msgid "Skip" msgstr "Skip" #. TRANSLATORS: This is the label in the log indicating will be #. deleted (for previews) or was actually deleted #: ../bleachbit/Command.py:77 msgid "Delete" msgstr "Delete" #: ../bleachbit/Command.py:99 msgid "" "At least one file was locked by another process, so its contents could not " "be overwritten. It will be marked for deletion upon system reboot." msgstr "" "At least one file was locked by another process, so its contents could not " "be overwritten. It will be marked for deletion upon system reboot." #. TRANSLATORS: The file will be deleted when the #. system reboots #: ../bleachbit/Command.py:102 msgid "Mark for deletion" msgstr "Mark for deletion" #. TRANSLATORS: Parts of this file will be deleted #: ../bleachbit/Command.py:199 ../bleachbit/Command.py:233 #: ../bleachbit/Action.py:254 ../bleachbit/Action.py:267 #: ../bleachbit/Action.py:280 ../bleachbit/Action.py:293 #: ../bleachbit/Action.py:306 msgid "Clean file" msgstr "Clean file" #. TRANSLATORS: The file will be truncated to 0 bytes in length #: ../bleachbit/Command.py:275 msgid "Truncate" msgstr "Truncate" #: ../bleachbit/Command.py:317 msgid "Delete registry key" msgstr "Delete registry key" #. TRANSLATORS: This is cleaner name for cleaners imported from winapp2.ini #: ../bleachbit/Winapp.py:44 msgid "Applications" msgstr "Applications" #. TRANSLATORS: This is cleaner name for cleaners imported #. from winapp2.ini #: ../bleachbit/Winapp.py:47 msgid "Internet" msgstr "Internet" #. TRANSLATORS: This is cleaner name for cleaners imported #. from winapp2.ini #: ../bleachbit/Winapp.py:50 msgid "Multimedia" msgstr "Multimedia" #. TRANSLATORS: This is cleaner name for cleaners imported #. from winapp2.ini #: ../bleachbit/Winapp.py:53 msgid "Utilities" msgstr "Utilities" #: ../bleachbit/Winapp.py:64 msgid "Games" msgstr "Games" #: ../bleachbit/Winapp.py:162 msgid "Imported from winapp2.ini" msgstr "Imported from winapp2.ini" #: ../bleachbit/Cleaner.py:197 msgid "Crash reports" msgstr "Crash reports" #: ../bleachbit/Cleaner.py:204 msgid "Session restore" msgstr "Session restore" #: ../bleachbit/Cleaner.py:205 msgid "Loads the initial session after the browser closes or crashes" msgstr "Loads the initial session after the browser closes or crashes" #: ../bleachbit/Cleaner.py:207 msgid "Site preferences" msgstr "Site preferences" #: ../bleachbit/Cleaner.py:207 msgid "Settings for individual sites" msgstr "Settings for individual sites" #. TRANSLATORS: desktop entries are .desktop files in Linux that #. make up the application menu (the menu that shows BleachBit, #. Firefox, and others. The .desktop files also associate file #. types, so clicking on an .html file in Nautilus brings up #. Firefox. #. More information: #. http://standards.freedesktop.org/menu-spec/latest/index.html#introduction #: ../bleachbit/Cleaner.py:453 msgid "Broken desktop files" msgstr "Broken desktop files" #: ../bleachbit/Cleaner.py:454 msgid "Delete broken application menu entries and file associations" msgstr "Delete broken application menu entries and file associations" #. TRANSLATORS: Localizations are files supporting specific #. languages, so applications appear in Spanish, etc. #: ../bleachbit/Cleaner.py:458 msgid "Localizations" msgstr "Localisations" #: ../bleachbit/Cleaner.py:459 msgid "Delete files for unwanted languages" msgstr "Delete files for unwanted languages" #: ../bleachbit/Cleaner.py:461 msgid "Configure this option in the preferences." msgstr "Configure this option in the preferences." #: ../bleachbit/Cleaner.py:467 msgid "Rotated logs" msgstr "Rotated logs" #: ../bleachbit/Cleaner.py:467 msgid "Delete old system logs" msgstr "Delete old system logs" #: ../bleachbit/Cleaner.py:470 msgid "Trash" msgstr "Rubbish Bin" #: ../bleachbit/Cleaner.py:470 msgid "Empty the trash" msgstr "Empty the rubbish bin" #: ../bleachbit/Cleaner.py:476 ../bleachbit/Cleaner.py:627 #: ../bleachbit/Worker.py:184 msgid "Memory" msgstr "Memory" #. TRANSLATORS: 'free' means 'unallocated' #: ../bleachbit/Cleaner.py:478 msgid "Wipe the swap and free memory" msgstr "Wipe the swap and free memory" #: ../bleachbit/Cleaner.py:480 msgid "This option is experimental and may cause system problems." msgstr "This option is experimental and may cause system problems." #: ../bleachbit/Cleaner.py:488 msgid "Memory dump" msgstr "Memory dump" #: ../bleachbit/Cleaner.py:488 msgid "Delete the file memory.dmp" msgstr "Delete the file memory.dmp" #. TRANSLATORS: Prefetch is Microsoft Windows jargon. #: ../bleachbit/Cleaner.py:491 msgid "Prefetch" msgstr "Prefetch" #: ../bleachbit/Cleaner.py:493 msgid "Recycle bin" msgstr "Recycle bin" #: ../bleachbit/Cleaner.py:493 ../bleachbit/Cleaner.py:787 msgid "Empty the recycle bin" msgstr "Empty the recycle bin" #. TRANSLATORS: 'Update' is a noun, and 'Update uninstallers' is an option to delete #. the uninstallers for software updates. #: ../bleachbit/Cleaner.py:496 msgid "Update uninstallers" msgstr "Update uninstallers" #: ../bleachbit/Cleaner.py:497 msgid "" "Delete uninstallers for Microsoft updates including hotfixes, service packs, " "and Internet Explorer updates" msgstr "" "Delete uninstallers for Microsoft updates including hotfixes, service packs, " "and Internet Explorer updates" #: ../bleachbit/Cleaner.py:504 ../bleachbit/Cleaner.py:727 msgid "Clipboard" msgstr "Clipboard" #: ../bleachbit/Cleaner.py:505 msgid "" "The desktop environment's clipboard used for copy and paste operations" msgstr "" "The desktop environment's clipboard used for copy and paste operations" #. TRANSLATORS: "Custom" is an option allowing the user to specify which #. files and folders will be erased. #: ../bleachbit/Cleaner.py:512 ../bleachbit/GuiPreferences.py:66 msgid "Custom" msgstr "Custom" #: ../bleachbit/Cleaner.py:513 msgid "Delete user-specified files and folders" msgstr "Delete user-specified files and folders" #. TRANSLATORS: 'free' means 'unallocated' #: ../bleachbit/Cleaner.py:515 msgid "Free disk space" msgstr "Free disk space" #. TRANSLATORS: 'free' means 'unallocated' #: ../bleachbit/Cleaner.py:517 msgid "Overwrite free disk space to hide deleted files" msgstr "Overwrite free disk space to hide deleted files" #: ../bleachbit/Cleaner.py:518 msgid "This option is very slow." msgstr "This option is very slow." #: ../bleachbit/Cleaner.py:522 msgid "The system in general" msgstr "The system in general" #: ../bleachbit/Cleaner.py:524 ../bleachbit/Cleaner.py:857 msgid "System" msgstr "System" #. TRANSLATORS: 'Free' means 'unallocated.' #. %s expands to a path such as C:\ or /tmp/ #: ../bleachbit/Cleaner.py:735 ../bleachbit/Cleaner.py:890 #, python-format msgid "Overwrite free disk space %s" msgstr "Overwrite free disk space %s" #: ../bleachbit/RecognizeCleanerML.py:59 msgid "Security warning" msgstr "Security warning" #: ../bleachbit/RecognizeCleanerML.py:72 msgid "" "These cleaner definitions are new or have changed. Malicious definitions can " "damage your system. If you do not trust these changes, delete the files or " "quit." msgstr "" "These cleaner definitions are new or have changed. Malicious definitions can " "damage your system. If you do not trust these changes, delete the files or " "quit." #: ../bleachbit/RecognizeCleanerML.py:88 msgctxt "column_label" msgid "Delete" msgstr "Delete" #: ../bleachbit/RecognizeCleanerML.py:93 msgctxt "column_label" msgid "Filename" msgstr "Filename" #. TRANSLATORS: This indicates an error. The special keyword #. %(operation)s will be replaced by 'firefox' or 'opera' or #. some other cleaner ID. The special keyword %(msg)s will be #. replaced by a message such as 'Permission denied.' #: ../bleachbit/Worker.py:74 #, python-format msgid "Exception while running operation '%(operation)s': '%(msg)s'" msgstr "Exception while running operation '%(operation)s': '%(msg)s'" #. TRANSLATORS: 'free' means 'unallocated' #: ../bleachbit/Worker.py:182 msgid "Please wait. Wiping free disk space." msgstr "Please wait. Wiping free disk space." #. TRANSLATORS: %s is replaced with Firefox, System, etc. #: ../bleachbit/Worker.py:184 ../bleachbit/Worker.py:332 #, python-format msgid "Please wait. Cleaning %s." msgstr "Please wait. Cleaning %s." #: ../bleachbit/Worker.py:199 msgid "Please wait. Wiping file system metadata." msgstr "Please wait. Wiping file system metadata." #: ../bleachbit/Worker.py:202 msgid "Please wait. Cleaning up after wiping file system metadata." msgstr "Please wait. Cleaning up after wiping file system metadata." #: ../bleachbit/Worker.py:205 #, python-format msgid "About %d minute remaining." msgid_plural "About %d minutes remaining." msgstr[0] "About %d minute remaining." msgstr[1] "About %d minutes remaining." #. TRANSLATORS: This refers to disk space that was #. really recovered (in other words, not a preview) #: ../bleachbit/Worker.py:272 #, python-format msgid "Disk space recovered: %s" msgstr "Disk space recovered: %s" #. TRANSLATORS: This refers to a preview (no real #. changes were made yet) #: ../bleachbit/Worker.py:276 #, python-format msgid "Disk space to be recovered: %s" msgstr "Disk space to be recovered: %s" #. TRANSLATORS: This refers to the number of files really #. deleted (in other words, not a preview). #: ../bleachbit/Worker.py:281 #, python-format msgid "Files deleted: %d" msgstr "Files deleted: %d" #. TRANSLATORS: This refers to the number of files that #. would be deleted (in other words, simply a preview). #: ../bleachbit/Worker.py:285 #, python-format msgid "Files to be deleted: %d" msgstr "Files to be deleted: %d" #: ../bleachbit/Worker.py:288 #, python-format msgid "Special operations: %d" msgstr "Special operations: %d" #: ../bleachbit/Worker.py:291 #, python-format msgid "Errors: %d" msgstr "Errors: %d" #. TRANSLATORS: The "deep scan" feature searches over broad #. areas of the file system such as the user's whole home directory #. or all the system executables. #: ../bleachbit/Worker.py:306 msgid "Please wait. Running deep scan." msgstr "Please wait. Running deep scan." #. TRANSLATORS: %s is replaced with Firefox, System, etc. #: ../bleachbit/Worker.py:335 #, python-format msgid "Please wait. Previewing %s." msgstr "Please wait. Previewing %s." #: ../bleachbit/Update.py:80 msgid "New winapp2.ini was downloaded." msgstr "New winapp2.ini was downloaded." #: ../bleachbit/Update.py:125 msgid "Update BleachBit" msgstr "Update BleachBit" #: ../bleachbit/Update.py:130 msgid "A new version is available." msgstr "A new version is available." #. TRANSLATORS: %s expands to version such as '0.8.4' or '0.8.5beta' or #. similar #: ../bleachbit/Update.py:139 #, python-format msgid "Update to version %s" msgstr "Update to version %s" #: ../bleachbit/Update.py:164 #, python-format msgid "" "Error when opening a network connection to %s to check for updates. Please " "verify the network is working." msgstr "" "Error when opening a network connection to %s to check for updates. Please " "verify the network is working." #: ../bleachbit/CLI.py:106 #, python-format msgid "not a valid cleaner: %s" msgstr "not a valid cleaner: %s" #. TRANSLATORS: This is the command line usage. Don't translate #. %prog, but do translate usage, options, cleaner, and option. #. More information about the command line is here #. https://www.bleachbit.org/documentation/command-line #: ../bleachbit/CLI.py:133 msgid "usage: %prog [options] cleaner.option1 cleaner.option2" msgstr "usage: %prog [options] cleaner.option1 cleaner.option2" #: ../bleachbit/CLI.py:136 msgid "list cleaners" msgstr "list cleaners" #. TRANSLATORS: predefined cleaners are for applications, such as Firefox and Flash. #. This is different than cleaning an arbitrary file, such as a #. spreadsheet on the desktop. #: ../bleachbit/CLI.py:141 msgid "run cleaners to delete files and make other permanent changes" msgstr "run cleaners to delete files and make other permanent changes" #: ../bleachbit/CLI.py:144 msgid "shred specific files or folders" msgstr "shred specific files or folders" #: ../bleachbit/CLI.py:146 msgid "show system information" msgstr "show system information" #: ../bleachbit/CLI.py:148 msgid "launch the graphical interface" msgstr "launch the graphical interface" #: ../bleachbit/CLI.py:152 msgid "do not prompt for administrator privileges" msgstr "do not prompt for administrator privileges" #: ../bleachbit/CLI.py:157 msgid "preview files to be deleted and other changes" msgstr "preview files to be deleted and other changes" #: ../bleachbit/CLI.py:161 msgid "use options set in the graphical interface" msgstr "use options set in the graphical interface" #: ../bleachbit/CLI.py:164 msgid "update winapp2.ini, if a new version is available" msgstr "update winapp2.ini, if a new version is available" #: ../bleachbit/CLI.py:166 msgid "output version information and exit" msgstr "output version information and exit" #: ../bleachbit/CLI.py:168 msgid "overwrite files to hide contents" msgstr "overwrite files to hide contents" #. TRANSLATORS: this is the context menu #: ../bleachbit/Action.py:382 ../bleachbit/GUI.py:632 msgid "Clean" msgstr "Clean" #: ../bleachbit/Action.py:418 #, python-format msgid "Run external command: %s" msgstr "Run external command: %s" #: ../bleachbit/GUI.py:135 ../bleachbit/GuiPreferences.py:296 msgid "Name" msgstr "Name" #: ../bleachbit/GUI.py:143 msgid "Active" msgstr "Active" #. TRANSLATORS: Size is the label for the column that shows how #. much space an option would clean or did clean #: ../bleachbit/GUI.py:155 msgid "Size" msgstr "Size" #. TRANSLATORS: %(cleaner) may be Firefox, System, etc. #. %(option) may be cache, logs, cookies, etc. #. %(warning) may be 'This option is really slow' #: ../bleachbit/GUI.py:186 #, python-format msgid "" "Warning regarding %(cleaner)s - %(option)s:\n" "\n" "%(warning)s" msgstr "" "Warning regarding %(cleaner)s - %(option)s:\n" "\n" "%(warning)s" #: ../bleachbit/GUI.py:372 msgid "You must select an operation" msgstr "You must select an operation" #: ../bleachbit/GUI.py:391 ../bleachbit/GUI.py:413 msgid "Done." msgstr "Done." #: ../bleachbit/GUI.py:426 msgid "Program to clean unnecessary files" msgstr "Program to clean unnecessary files" #: ../bleachbit/GUI.py:436 msgid "" "GNU General Public License version 3 or later.\n" "See http://www.gnu.org/licenses/gpl-3.0.txt" msgstr "" "GNU General Public License version 3 or later.\n" "See http://www.gnu.org/licenses/gpl-3.0.txt" #. TRANSLATORS: Maintain the names of translators here. #. Launchpad does this automatically for translations #. typed in Launchpad. This is a special string shown #. in the 'About' box. #: ../bleachbit/GUI.py:442 msgid "translator-credits" msgstr "" "Launchpad Contributions:\n" " Alfredo Hernández https://launchpad.net/~aldomann\n" " Anthony Harrington 😁 https://launchpad.net/~untaintableangel\n" " Benjamin Donald-Wilson https://launchpad.net/~benny\n" " Jared Norris https://launchpad.net/~jarednorris\n" " Joel Pickett https://launchpad.net/~jpickett" #: ../bleachbit/GUI.py:454 msgid "System information" msgstr "System information" #: ../bleachbit/GUI.py:527 msgid "Choose files to shred" msgstr "Choose files to shred" #: ../bleachbit/GUI.py:530 msgid "Choose folder to shred" msgstr "Choose folder to shred" #: ../bleachbit/GUI.py:594 ../bleachbit/GuiPreferences.py:197 #: ../bleachbit/GuiPreferences.py:326 ../bleachbit/GuiPreferences.py:367 msgid "Choose a folder" msgstr "Choose a folder" #. TRANSLATORS: this is the context menu #: ../bleachbit/GUI.py:627 msgid "Preview" msgstr "Preview" #: ../bleachbit/GUI.py:734 msgid "_Shred Files" msgstr "_Shred Files" #: ../bleachbit/GUI.py:736 msgid "Sh_red Folders" msgstr "Sh_red Folders" #: ../bleachbit/GUI.py:738 msgid "_Wipe Free Space" msgstr "_Wipe Free Space" #: ../bleachbit/GUI.py:740 msgid "S_hred Settings and Quit" msgstr "S_hred Settings and Quit" #: ../bleachbit/GUI.py:742 msgid "_Quit" msgstr "_Quit" #: ../bleachbit/GUI.py:744 msgid "_File" msgstr "_File" #: ../bleachbit/GUI.py:746 ../bleachbit/GuiPreferences.py:58 msgid "Preferences" msgstr "Preferences" #: ../bleachbit/GUI.py:747 msgid "_Edit" msgstr "_Edit" #: ../bleachbit/GUI.py:748 msgid "Help Contents" msgstr "Help Contents" #: ../bleachbit/GUI.py:751 msgid "_Release Notes" msgstr "_Release Notes" #: ../bleachbit/GUI.py:754 msgid "_System Information" msgstr "_System Information" #: ../bleachbit/GUI.py:757 msgid "_About" msgstr "_About" #: ../bleachbit/GUI.py:758 msgid "_Help" msgstr "_Help" #: ../bleachbit/GUI.py:783 msgctxt "button" msgid "Preview" msgstr "Preview" #: ../bleachbit/GUI.py:788 msgid "Preview files in the selected operations (without deleting any files)" msgstr "" "Preview files in the selected operations (without deleting any files)" #: ../bleachbit/GUI.py:798 msgctxt "button" msgid "Clean" msgstr "Clean" #: ../bleachbit/GUI.py:802 msgid "Clean files in the selected operations" msgstr "Clean files in the selected operations" #: ../bleachbit/GUI.py:893 msgid "Error when checking for updates: " msgstr "Error when checking for updates: " #: ../bleachbit/GUI.py:932 msgid "" "Error loading the SQLite module: the antivirus software may be blocking it." msgstr "" "Error loading the SQLite module: the antivirus software may be blocking it." #: ../bleachbit/GUI.py:935 msgid "" "You are running BleachBit with administrative privileges for cleaning shared " "parts of the system, and references to the user profile folder will clean " "only the root account." msgstr "" "You are running BleachBit with administrative privileges for cleaning shared " "parts of the system, and references to the user profile folder will clean " "only the root account." #: ../bleachbit/GUI.py:940 msgid "" "Run BleachBit with administrator privileges to improve the accuracy of " "overwriting the contents of files." msgstr "" "Run BleachBit with administrator privileges to improve the accuracy of " "overwriting the contents of files." #: ../bleachbit/GuiPreferences.py:64 msgid "General" msgstr "General" #: ../bleachbit/GuiPreferences.py:67 msgid "Drives" msgstr "Drives" #: ../bleachbit/GuiPreferences.py:70 msgid "Languages" msgstr "Languages" #: ../bleachbit/GuiPreferences.py:72 msgid "Whitelist" msgstr "Whitelist" #: ../bleachbit/GuiPreferences.py:117 msgid "Check periodically for software updates via the Internet" msgstr "Check periodically for software updates via the Internet" #: ../bleachbit/GuiPreferences.py:122 msgid "" "If an update is found, you will be given the option to view information " "about it. Then, you may manually download and install the update." msgstr "" "If an update is found, you will be given the option to view information " "about it. Then, you may manually download and install the update." #: ../bleachbit/GuiPreferences.py:128 msgid "Check for new beta releases" msgstr "Check for new beta releases" #: ../bleachbit/GuiPreferences.py:137 msgid "Download and update cleaners from community (winapp2.ini)" msgstr "Download and update cleaners from community (winapp2.ini)" #. TRANSLATORS: This means to hide cleaners which would do #. nothing. For example, if Firefox were never used on #. this system, this option would hide Firefox to simplify #. the list of cleaners. #: ../bleachbit/GuiPreferences.py:151 msgid "Hide irrelevant cleaners" msgstr "Hide irrelevant cleaners" #. TRANSLATORS: Overwriting is the same as shredding. It is a way #. to prevent recovery of the data. You could also translate #. 'Shred files to prevent recovery.' #: ../bleachbit/GuiPreferences.py:159 msgid "Overwrite contents of files to prevent recovery" msgstr "Overwrite contents of files to prevent recovery" #: ../bleachbit/GuiPreferences.py:163 msgid "" "Overwriting is ineffective on some file systems and with certain BleachBit " "operations. Overwriting is significantly slower." msgstr "" "Overwriting is ineffective on some file systems and with certain BleachBit " "operations. Overwriting is significantly slower." #: ../bleachbit/GuiPreferences.py:166 msgid "Start BleachBit with computer" msgstr "Start BleachBit with computer" #: ../bleachbit/GuiPreferences.py:172 msgid "Exit after cleaning" msgstr "Exit after cleaning" #: ../bleachbit/GuiPreferences.py:178 msgid "Confirm before delete" msgstr "Confirm before delete" #: ../bleachbit/GuiPreferences.py:186 msgid "Use IEC sizes (1 KiB = 1024 bytes) instead of SI (1 kB = 1000 bytes)" msgstr "Use IEC sizes (1 KiB = 1024 bytes) instead of SI (1 kB = 1000 bytes)" #: ../bleachbit/GuiPreferences.py:221 msgid "" "Choose a writable folder for each drive for which to overwrite free space." msgstr "" "Choose a writable folder for each drive for which to overwrite free space." #. TRANSLATORS: In the preferences dialog, this button adds a path to #. the list of paths #: ../bleachbit/GuiPreferences.py:243 msgctxt "button" msgid "Add" msgstr "Add" #. TRANSLATORS: In the preferences dialog, this button removes a path #. from the list of paths #: ../bleachbit/GuiPreferences.py:247 ../bleachbit/GuiPreferences.py:458 msgctxt "button" msgid "Remove" msgstr "Remove" #: ../bleachbit/GuiPreferences.py:272 msgid "All languages will be deleted except those checked." msgstr "All languages will be deleted except those checked." #: ../bleachbit/GuiPreferences.py:288 msgid "Preserve" msgstr "Preserve" #: ../bleachbit/GuiPreferences.py:292 msgid "Code" msgstr "Code" #: ../bleachbit/GuiPreferences.py:313 ../bleachbit/GuiPreferences.py:354 msgid "Choose a file" msgstr "Choose a file" #: ../bleachbit/GuiPreferences.py:320 ../bleachbit/GuiPreferences.py:361 #: ../bleachbit/GuiPreferences.py:405 msgid "File" msgstr "File" #: ../bleachbit/GuiPreferences.py:334 ../bleachbit/GuiPreferences.py:375 #: ../bleachbit/GuiPreferences.py:407 msgid "Folder" msgstr "Folder" #: ../bleachbit/GuiPreferences.py:417 msgid "Theses paths will not be deleted or modified." msgstr "Theses paths will not be deleted or modified." #: ../bleachbit/GuiPreferences.py:420 msgid "These locations can be selected for deletion." msgstr "These locations can be selected for deletion." #: ../bleachbit/GuiPreferences.py:428 msgid "Type" msgstr "Type" #. TRANSLATORS: In the tree view "Path" is used generically to refer to a #. file, a folder, or a pattern describing either #: ../bleachbit/GuiPreferences.py:434 msgid "Path" msgstr "Path" #: ../bleachbit/GuiPreferences.py:446 msgctxt "button" msgid "Add file" msgstr "Add file" #: ../bleachbit/GuiPreferences.py:452 msgctxt "button" msgid "Add folder" msgstr "Add folder" bleachbit-2.0/po/ky.po0000644000175000017500000011340613245436307013007 0ustar hlehle# Kirghiz translation for bleachbit # Copyright (c) 2012 Rosetta Contributors and Canonical Ltd 2012 # This file is distributed under the same license as the bleachbit package. # FIRST AUTHOR , 2012. # msgid "" msgstr "" "Project-Id-Version: bleachbit\n" "Report-Msgid-Bugs-To: FULL NAME \n" "POT-Creation-Date: 2012-12-29 17:07-0700\n" "PO-Revision-Date: 2013-02-10 14:11+0000\n" "Last-Translator: Chynggyz Jumaliev \n" "Language-Team: Kirghiz \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=1; plural=0;\n" "X-Launchpad-Export-Date: 2013-02-22 04:04+0000\n" "X-Generator: Launchpad (build 16506)\n" #: ../cleaners/mc.xml ../cleaners/tortoisesvn.xml ../cleaners/vim.xml #: ../cleaners/safari.xml ../cleaners/links2.xml ../cleaners/seamonkey.xml #: ../cleaners/realplayer.xml ../cleaners/windows_defender.xml #: ../cleaners/d4x.xml ../cleaners/internet_explorer.xml #: ../cleaners/libreoffice.xml ../cleaners/bash.xml ../cleaners/nautilus.xml #: ../cleaners/elinks.xml ../cleaners/chromium.xml #: ../cleaners/google_chrome.xml msgid "History" msgstr "Тарых" #: ../cleaners/mc.xml ../cleaners/tortoisesvn.xml ../cleaners/links2.xml #: ../cleaners/realplayer.xml ../cleaners/d4x.xml ../cleaners/libreoffice.xml #: ../cleaners/nautilus.xml ../cleaners/gnome.xml ../bleachbit/Cleaner.py:286 #: ../bleachbit/Cleaner.py:357 msgid "Delete the usage history" msgstr "Колдонуу тарыхын өчүрүү" #: ../cleaners/gpodder.xml ../cleaners/hippo_opensim_viewer.xml #: ../cleaners/thumbnails.xml ../cleaners/safari.xml #: ../cleaners/transmission.xml ../cleaners/emesene.xml #: ../cleaners/liferea.xml ../cleaners/seamonkey.xml ../cleaners/vuze.xml #: ../cleaners/yahoo_messenger.xml ../cleaners/pidgin.xml #: ../cleaners/adobe_reader.xml ../cleaners/evolution.xml #: ../cleaners/tremulous.xml ../cleaners/libreoffice.xml ../cleaners/xine.xml #: ../cleaners/nexuiz.xml ../cleaners/exaile.xml ../cleaners/opera.xml #: ../cleaners/amsn.xml ../cleaners/gftp.xml ../cleaners/miro.xml #: ../cleaners/beagle.xml ../cleaners/kde.xml ../cleaners/epiphany.xml #: ../cleaners/flash.xml ../cleaners/secondlife_viewer.xml #: ../cleaners/java.xml ../cleaners/chromium.xml ../cleaners/audacious.xml #: ../cleaners/rhythmbox.xml ../cleaners/google_chrome.xml #: ../cleaners/thunderbird.xml ../bleachbit/Cleaner.py:186 #: ../bleachbit/Cleaner.py:306 ../bleachbit/Cleaner.py:377 msgid "Cache" msgstr "Кэш" #: ../cleaners/gpodder.xml ../cleaners/yum.xml #: ../cleaners/hippo_opensim_viewer.xml ../cleaners/thumbnails.xml #: ../cleaners/transmission.xml ../cleaners/windows_explorer.xml #: ../cleaners/liferea.xml ../cleaners/vuze.xml #: ../cleaners/yahoo_messenger.xml ../cleaners/pidgin.xml #: ../cleaners/adobe_reader.xml ../cleaners/evolution.xml #: ../cleaners/libreoffice.xml ../cleaners/apt.xml ../cleaners/xine.xml #: ../cleaners/nexuiz.xml ../cleaners/exaile.xml ../cleaners/amsn.xml #: ../cleaners/gftp.xml ../cleaners/miro.xml ../cleaners/beagle.xml #: ../cleaners/kde.xml ../cleaners/flash.xml ../cleaners/secondlife_viewer.xml #: ../cleaners/java.xml ../cleaners/audacious.xml ../cleaners/rhythmbox.xml #: ../bleachbit/Cleaner.py:306 ../bleachbit/Cleaner.py:377 #: ../bleachbit/Cleaner.py:405 ../bleachbit/Cleaner.py:407 msgid "Delete the cache" msgstr "Кэшти өчүрүү" #. TRANSLATORS: Vacuum is a verb. The term is jargon #. from the SQLite database. Microsoft Access uses #. the term 'Compact Database' (which you may translate #. instead). Another synonym is 'defragment.' #: ../cleaners/gpodder.xml ../cleaners/yum.xml ../cleaners/safari.xml #: ../cleaners/liferea.xml ../cleaners/chromium.xml #: ../cleaners/google_chrome.xml ../cleaners/thunderbird.xml #: ../bleachbit/Action.py:334 ../bleachbit/Cleaner.py:197 #: ../bleachbit/Cleaner.py:296 msgid "Vacuum" msgstr "Маалымат базасын кысуу" #: ../cleaners/gpodder.xml ../cleaners/yum.xml ../cleaners/safari.xml #: ../cleaners/liferea.xml ../cleaners/chromium.xml #: ../cleaners/google_chrome.xml ../cleaners/thunderbird.xml #: ../bleachbit/Cleaner.py:197 msgid "" "Clean database fragmentation to reduce space and improve speed without " "removing any data" msgstr "" "Маалымааты өчүрбөй, орунду бошотуп жана ылдамдыкты көбөйтүү үчүн маалымат " "базасын дефрагментациялоо" #: ../cleaners/hippo_opensim_viewer.xml ../cleaners/gl-117.xml #: ../cleaners/tremulous.xml ../cleaners/nexuiz.xml #: ../cleaners/secondlife_viewer.xml msgid "Game" msgstr "Оюн" #: ../cleaners/hippo_opensim_viewer.xml ../cleaners/teamviewer.xml #: ../cleaners/realplayer.xml ../cleaners/vuze.xml #: ../cleaners/yahoo_messenger.xml ../cleaners/amule.xml #: ../cleaners/easytag.xml ../cleaners/exaile.xml ../cleaners/screenlets.xml #: ../cleaners/gftp.xml ../cleaners/miro.xml ../cleaners/audacious.xml #: ../bleachbit/Cleaner.py:403 msgid "Logs" msgstr "Журналдар" #: ../cleaners/hippo_opensim_viewer.xml ../cleaners/teamviewer.xml #: ../cleaners/realplayer.xml ../cleaners/vuze.xml #: ../cleaners/yahoo_messenger.xml ../cleaners/amule.xml #: ../cleaners/exaile.xml ../cleaners/screenlets.xml ../cleaners/gftp.xml #: ../cleaners/miro.xml ../cleaners/audacious.xml ../bleachbit/Cleaner.py:403 msgid "Delete the logs" msgstr "Журналдарды өчүрүү" #: ../cleaners/thumbnails.xml ../cleaners/windows_explorer.xml msgid "Thumbnails" msgstr "Иконкалар" #: ../cleaners/vim.xml ../cleaners/gedit.xml msgid "Editor" msgstr "Редактор" #: ../cleaners/vim.xml msgid "" "Delete ~/.viminfo which includes file history, command history, and buffers" msgstr "" #: ../cleaners/filezilla.xml ../cleaners/transmission.xml ../cleaners/vuze.xml #: ../cleaners/amule.xml ../cleaners/gftp.xml msgid "File transfer client" msgstr "Файлдарды берүү клиенти" #: ../cleaners/filezilla.xml ../cleaners/paint.xml #: ../cleaners/windows_media_player.xml ../cleaners/windows_explorer.xml #: ../cleaners/teamviewer.xml ../cleaners/microsoft_office.xml #: ../cleaners/vlc.xml ../cleaners/adobe_reader.xml ../cleaners/winamp.xml #: ../cleaners/winzip.xml ../cleaners/winrar.xml ../cleaners/audacious.xml #: ../cleaners/wordpad.xml ../bleachbit/Cleaner.py:307 msgid "Most recently used" msgstr "Акыркы колдонулгандар" #: ../cleaners/filezilla.xml ../cleaners/windows_explorer.xml #: ../cleaners/gwenview.xml ../cleaners/adobe_reader.xml ../cleaners/gedit.xml #: ../cleaners/kde.xml ../cleaners/audacious.xml ../bleachbit/Cleaner.py:307 #: ../bleachbit/Cleaner.py:387 msgid "Delete the list of recently used documents" msgstr "Жакында колдонулган документтердин тизмесин өчүрүү" #: ../cleaners/skype.xml ../cleaners/xchat.xml ../cleaners/emesene.xml #: ../cleaners/seamonkey.xml ../cleaners/yahoo_messenger.xml #: ../cleaners/pidgin.xml ../cleaners/amsn.xml msgid "Chat logs" msgstr "Чат журналы" #: ../cleaners/skype.xml ../cleaners/xchat.xml ../cleaners/emesene.xml #: ../cleaners/seamonkey.xml ../cleaners/yahoo_messenger.xml #: ../cleaners/pidgin.xml ../cleaners/amsn.xml msgid "Delete the chat logs" msgstr "Чат журналын өчүрүү" #: ../cleaners/xchat.xml ../cleaners/emesene.xml #: ../cleaners/yahoo_messenger.xml ../cleaners/pidgin.xml ../cleaners/amsn.xml msgid "Chat client" msgstr "Чат клиенти" #: ../cleaners/safari.xml ../cleaners/links2.xml ../cleaners/seamonkey.xml #: ../cleaners/konqueror.xml ../cleaners/internet_explorer.xml #: ../cleaners/opera.xml ../cleaners/epiphany.xml ../cleaners/elinks.xml #: ../cleaners/chromium.xml ../cleaners/google_chrome.xml #: ../bleachbit/Cleaner.py:209 msgid "Web browser" msgstr "Веб-браузер" #: ../cleaners/safari.xml ../cleaners/seamonkey.xml ../cleaners/opera.xml #: ../cleaners/epiphany.xml ../cleaners/chromium.xml #: ../cleaners/google_chrome.xml ../cleaners/thunderbird.xml #: ../bleachbit/Cleaner.py:186 msgid "Delete the web cache, which reduces time to display revisited pages" msgstr "Барган барактардын көрсөтүү убагын азайткан вебдин кэшин өчүрүү" #: ../cleaners/safari.xml ../cleaners/liferea.xml ../cleaners/seamonkey.xml #: ../cleaners/realplayer.xml ../cleaners/konqueror.xml #: ../cleaners/internet_explorer.xml ../cleaners/opera.xml #: ../cleaners/epiphany.xml ../cleaners/flash.xml ../cleaners/silverlight.xml #: ../cleaners/chromium.xml ../cleaners/google_chrome.xml #: ../cleaners/thunderbird.xml ../bleachbit/Cleaner.py:187 msgid "Cookies" msgstr "Кукилер" #: ../cleaners/safari.xml ../cleaners/liferea.xml ../cleaners/seamonkey.xml #: ../cleaners/realplayer.xml ../cleaners/konqueror.xml #: ../cleaners/internet_explorer.xml ../cleaners/opera.xml #: ../cleaners/epiphany.xml ../cleaners/flash.xml ../cleaners/silverlight.xml #: ../cleaners/chromium.xml ../cleaners/google_chrome.xml #: ../cleaners/thunderbird.xml ../bleachbit/Cleaner.py:187 msgid "" "Delete cookies, which contain information such as web site preferences, " "authentication, and tracking identification" msgstr "" #: ../cleaners/safari.xml ../cleaners/konqueror.xml #: ../cleaners/internet_explorer.xml ../cleaners/opera.xml #: ../bleachbit/Cleaner.py:196 msgid "List of visited web pages" msgstr "Барган веб-барактардын тизмеси" #: ../cleaners/paint.xml ../cleaners/windows_media_player.xml #: ../cleaners/windows_explorer.xml ../cleaners/teamviewer.xml #: ../cleaners/microsoft_office.xml ../cleaners/vlc.xml ../cleaners/winamp.xml #: ../cleaners/winzip.xml ../cleaners/winrar.xml ../cleaners/wordpad.xml msgid "Delete the most recently used list" msgstr "Жакында колдонулгандардын тизмесин өчүрүү" #: ../cleaners/emesene.xml msgid "Delete the avatars and emoticons cache" msgstr "Аватарларды жана эмотикондордун кэшин өчүрүү" #: ../cleaners/windows_explorer.xml ../cleaners/gwenview.xml #: ../cleaners/gedit.xml ../cleaners/kde.xml ../bleachbit/Cleaner.py:387 msgid "Recent documents list" msgstr "Жакында колдонулган документтердин тизмеси" #. In Windows 'Run' is the dialog in the Start menu #. In GNOME 'Run' is the dialog shown when typing ALT+F2' #: ../cleaners/windows_explorer.xml ../cleaners/gnome.xml msgid "Run" msgstr "Аткаруу" #: ../cleaners/windows_explorer.xml ../cleaners/opera.xml #: ../cleaners/gnome.xml ../cleaners/google_toolbar.xml msgid "Search history" msgstr "Издөө тарыхы" #: ../cleaners/windows_explorer.xml ../cleaners/opera.xml #: ../cleaners/gnome.xml ../cleaners/google_toolbar.xml msgid "Delete the search history" msgstr "Издөө тарыхын өчүрүү" #: ../cleaners/gl-117.xml ../cleaners/microsoft_office.xml #: ../cleaners/beagle.xml ../cleaners/secondlife_viewer.xml #: ../cleaners/x11.xml msgid "Debug logs" msgstr "Оңдоо журналдары" #: ../cleaners/gl-117.xml ../cleaners/microsoft_office.xml #: ../cleaners/easytag.xml ../cleaners/beagle.xml #: ../cleaners/secondlife_viewer.xml ../cleaners/x11.xml msgid "Delete the debug logs" msgstr "Оңдоо журналдарын өчүрүү" #: ../cleaners/google_earth.xml ../cleaners/winetricks.xml #: ../cleaners/vuze.xml ../cleaners/adobe_reader.xml ../cleaners/amule.xml #: ../cleaners/wine.xml ../cleaners/internet_explorer.xml ../cleaners/gimp.xml #: ../cleaners/kde.xml ../cleaners/deepscan.xml ../bleachbit/Cleaner.py:430 msgid "Temporary files" msgstr "Убактылуу файлдар" #: ../cleaners/google_earth.xml ../cleaners/winetricks.xml #: ../cleaners/vuze.xml ../cleaners/adobe_reader.xml ../cleaners/amule.xml #: ../cleaners/wine.xml ../cleaners/internet_explorer.xml ../cleaners/gimp.xml #: ../cleaners/kde.xml ../cleaners/deepscan.xml ../bleachbit/Cleaner.py:430 msgid "Delete the temporary files" msgstr "Убактылуу файлдарды өчүрүү" #: ../cleaners/seamonkey.xml ../cleaners/opera.xml ../bleachbit/Cleaner.py:191 msgid "Download history" msgstr "Жүктөп алуу тарыхы" #: ../cleaners/seamonkey.xml ../cleaners/opera.xml ../bleachbit/Cleaner.py:191 msgid "List of files downloaded" msgstr "Жүктөп алынган файлдардын тизмеси" #: ../cleaners/seamonkey.xml msgid "Delete the list of visited web pages" msgstr "Барган веб-барактардын тизмесин өчүрүү" #: ../cleaners/vuze.xml ../cleaners/deepscan.xml msgid "Backup files" msgstr "Резервдик файлдар" #: ../cleaners/vuze.xml ../cleaners/deepscan.xml msgid "Delete the backup files" msgstr "Резервдик файлдарды өчүрүү" #: ../cleaners/konqueror.xml ../cleaners/opera.xml ../cleaners/chromium.xml msgid "Current session" msgstr "Кезектеги сеанс" #: ../cleaners/konqueror.xml ../cleaners/opera.xml ../cleaners/chromium.xml msgid "Delete the current session" msgstr "Кезектеги сеансты өчүрүү" #: ../cleaners/konqueror.xml ../cleaners/opera.xml ../bleachbit/Cleaner.py:196 msgid "URL history" msgstr "Шилтеме тарыхы" #: ../cleaners/microsoft_office.xml ../cleaners/libreoffice.xml #: ../bleachbit/Cleaner.py:317 msgid "Office suite" msgstr "Офистик пакет" #: ../cleaners/windows_defender.xml ../cleaners/beagle.xml #: ../cleaners/thunderbird.xml ../cleaners/deepscan.xml #: ../bleachbit/Cleaner.py:188 msgid "Delete the files" msgstr "Файлдарды өчүрүү" #: ../cleaners/tremulous.xml msgid "Delete the list of game servers" msgstr "Оюн серверлеринин тизмесин өчүрүү" #: ../cleaners/internet_explorer.xml ../cleaners/chromium.xml #: ../cleaners/google_chrome.xml ../bleachbit/Cleaner.py:192 msgid "Form history" msgstr "Тарыхтан" #: ../cleaners/internet_explorer.xml ../bleachbit/Cleaner.py:192 msgid "A history of forms entered in web sites and in the Search bar" msgstr "" #: ../cleaners/apt.xml msgid "Delete obsolete files" msgstr "Эскирген файлдарды өчүрүү" #: ../cleaners/xine.xml ../cleaners/miro.xml ../cleaners/flash.xml msgid "Multimedia viewer" msgstr "Мультимедиа ойноткучу" #: ../cleaners/recoll.xml ../cleaners/beagle.xml msgid "Search tool" msgstr "Издөө аспабы" #: ../cleaners/recoll.xml ../cleaners/beagle.xml ../cleaners/thunderbird.xml msgid "Index" msgstr "Индекс" #: ../cleaners/recoll.xml msgid "" "Delete the search index, a database of words and the files they contain" msgstr "" #: ../cleaners/exaile.xml msgid "Downloaded podcasts" msgstr "Жүктөп алынган подкасттар" #: ../cleaners/exaile.xml msgid "Delete downloaded podcasts" msgstr "Жүктөп алынган подкасттарды өчүрүү" #: ../cleaners/bash.xml msgid "Delete the command history" msgstr "Командалар тарыхын өчүрүү" #. TRANSLATORS: DOM = Document Object Model. #: ../cleaners/opera.xml ../cleaners/chromium.xml #: ../cleaners/google_chrome.xml ../bleachbit/Cleaner.py:190 msgid "DOM Storage" msgstr "DOM сактагычы" #: ../cleaners/opera.xml ../cleaners/chromium.xml #: ../cleaners/google_chrome.xml ../bleachbit/Cleaner.py:190 msgid "Delete HTML5 cookies" msgstr "HTML5 кукини өчүрүү" #: ../cleaners/nautilus.xml msgid "Custom folders will be reset." msgstr "Тандалган каталогдор түшүрүлөт." #: ../cleaners/screenlets.xml msgid "Widgets for the desktop" msgstr "Иш столу үчүн виджеттер" #: ../cleaners/epiphany.xml ../cleaners/chromium.xml #: ../cleaners/google_chrome.xml ../cleaners/thunderbird.xml #: ../bleachbit/Cleaner.py:195 msgid "Passwords" msgstr "Сырсөз" #: ../cleaners/epiphany.xml ../cleaners/chromium.xml #: ../cleaners/google_chrome.xml ../cleaners/thunderbird.xml #: ../bleachbit/Cleaner.py:195 msgid "" "A database of usernames and passwords as well as a list of sites that should " "not store passwords" msgstr "" #: ../cleaners/epiphany.xml msgid "Places" msgstr "Орундар" #: ../cleaners/epiphany.xml msgid "" "A database of URLs including bookmarks, favicons, and a history of visited " "web sites" msgstr "" #: ../cleaners/epiphany.xml msgid "This option deletes all bookmarks." msgstr "Бул опция бүт чөп каттарды өчүрөт." #: ../cleaners/elinks.xml msgid "Delete the cookies, visited URLs, and search history" msgstr "Кукини, барган шилтемелерди жана издөө тарыхын өчүрүү" #: ../cleaners/chromium.xml ../cleaners/google_chrome.xml msgid "A history of forms entered in web sites" msgstr "" #: ../cleaners/chromium.xml ../cleaners/google_chrome.xml msgid "" "Delete the history which includes visited sites, downloads, and thumbnails" msgstr "" #: ../cleaners/chromium.xml ../cleaners/google_chrome.xml msgid "Search engines" msgstr "Издөө системалары" #. 'Factory' means a search engine that is installed by default 'from the factory,' but this is different than a 'default search engine' https://lists.launchpad.net/launchpad-translators/msg00283.html #: ../cleaners/chromium.xml ../cleaners/google_chrome.xml msgid "" "Reset the search engine usage history and delete non-factory search engines, " "some of which are added automatically" msgstr "" #: ../cleaners/google_chrome.xml msgid "Session" msgstr "Сеанс" #: ../cleaners/google_chrome.xml msgid "Delete the current and last sessions" msgstr "Кезектеги жана акыркы сеансты өчүрүү" #: ../cleaners/deepscan.xml msgid "Deep scan" msgstr "Терең скандоо" #: ../cleaners/deepscan.xml msgid "Inspect the preview for any files you want to keep." msgstr "" #: ../cleaners/deepscan.xml msgid "This option is slow." msgstr "Бул опция жай болот." #: ../bleachbit.desktop msgid "Unnecessary file cleaner" msgstr "Керексиз файлдардын тазалагычы" #: ../bleachbit.desktop msgid "Free space and maintain privacy" msgstr "" #. TRANSLATORS: Parts of this file will be deleted #: ../bleachbit/Action.py:203 ../bleachbit/Action.py:216 #: ../bleachbit/Action.py:228 ../bleachbit/Action.py:241 #: ../bleachbit/Action.py:253 ../bleachbit/Command.py:183 #: ../bleachbit/Command.py:213 msgid "Clean file" msgstr "Файлды тазалоо" #. TRANSLATORS: this is the context menu #: ../bleachbit/Action.py:307 ../bleachbit/GUI.py:585 msgid "Clean" msgstr "Тазалоо" #: ../bleachbit/Cleaner.py:188 msgid "Crash reports" msgstr "Каталар жөнүндөгү маалымдоолор" #: ../bleachbit/Cleaner.py:193 msgid "Session restore" msgstr "Сеансты калыбына келтирүү" #: ../bleachbit/Cleaner.py:193 msgid "Loads the initial session after the browser closes or crashes" msgstr "" #: ../bleachbit/Cleaner.py:194 msgid "Site preferences" msgstr "" #: ../bleachbit/Cleaner.py:194 msgid "Settings for individual sites" msgstr "Айрым сайттар үчүн ырастоолор" #. TRANSLATORS: desktop entries are .desktop files in Linux tha #. make up the application menu (the menu that shows BleachBit, #. Firefox, and others. The .desktop files also associate file #. types, so clicking on an .html file in Nautilus brings up #. Firefox. #. More information: http://standards.freedesktop.org/menu-spec/latest/index.html#introduction #: ../bleachbit/Cleaner.py:376 msgid "Broken desktop files" msgstr "Иш столунун бузулган файлдары" #: ../bleachbit/Cleaner.py:376 msgid "Delete broken application menu entries and file associations" msgstr "" #. TRANSLATORS: Localizations are files supporting specific #. languages, so applications appear in Spanish, etc. #: ../bleachbit/Cleaner.py:380 msgid "Localizations" msgstr "Локализациялар" #: ../bleachbit/Cleaner.py:380 msgid "Delete files for unwanted languages" msgstr "Керексиз тилдер үчүн файлдарды өчүрүү" #: ../bleachbit/Cleaner.py:381 msgid "Configure this option in the preferences." msgstr "" #. TRANSLATORS: 'Rotated logs' refers to old system log files. #. Linux systems often have a scheduled job to rotate the logs #. which means compress all except the newest log and then delete #. the oldest log. You could translate this 'old logs.' #: ../bleachbit/Cleaner.py:386 msgid "Rotated logs" msgstr "Эски журналдар" #: ../bleachbit/Cleaner.py:386 msgid "Delete old system logs" msgstr "Эски системалык журналдарды өчүрүү" #: ../bleachbit/Cleaner.py:388 msgid "Trash" msgstr "Себет" #: ../bleachbit/Cleaner.py:388 msgid "Empty the trash" msgstr "Себетти тазалоо" #: ../bleachbit/Cleaner.py:394 ../bleachbit/Cleaner.py:536 #: ../bleachbit/Worker.py:212 msgid "Memory" msgstr "Эс" #. TRANSLATORS: 'free' means 'unallocated' #: ../bleachbit/Cleaner.py:396 msgid "Wipe the swap and free memory" msgstr "" #: ../bleachbit/Cleaner.py:397 msgid "This option is experimental and may cause system problems." msgstr "" #: ../bleachbit/Cleaner.py:404 msgid "Memory dump" msgstr "Эс дампы" #: ../bleachbit/Cleaner.py:404 msgid "Delete the file memory.dmp" msgstr "memory.dmp файлын өчүрүү" #. TRANSLATORS: Prefetch is Microsoft Windows jargon. #: ../bleachbit/Cleaner.py:407 msgid "Prefetch" msgstr "" #: ../bleachbit/Cleaner.py:408 msgid "Recycle bin" msgstr "Себет" #: ../bleachbit/Cleaner.py:408 msgid "Empty the recycle bin" msgstr "Себетти тазалоо" #. TRANSLATORS: 'Update' is a noun, and 'Update uninstallers' is an option to delete #. the uninstallers for software updates. #: ../bleachbit/Cleaner.py:411 msgid "Update uninstallers" msgstr "Жаңылоо өчүргүчтөрү" #: ../bleachbit/Cleaner.py:411 msgid "" "Delete uninstallers for Microsoft updates including hotfixes, service packs, " "and Internet Explorer updates" msgstr "" #: ../bleachbit/Cleaner.py:418 ../bleachbit/Cleaner.py:627 msgid "Clipboard" msgstr "Алмашуу буфери" #: ../bleachbit/Cleaner.py:418 msgid "" "The desktop environment's clipboard used for copy and paste operations" msgstr "" #. TRANSLATORS: "Custom" is an option allowing the user to specify which files and folders will be erased. #: ../bleachbit/Cleaner.py:424 ../bleachbit/GuiPreferences.py:62 msgid "Custom" msgstr "Тандооңуз боюнча" #: ../bleachbit/Cleaner.py:424 msgid "Delete user-specified files and folders" msgstr "" #. TRANSLATORS: 'free' means 'unallocated' #: ../bleachbit/Cleaner.py:426 msgid "Free disk space" msgstr "Бош диск мейкиндиги" #. TRANSLATORS: 'free' means 'unallocated' #: ../bleachbit/Cleaner.py:428 msgid "Overwrite free disk space to hide deleted files" msgstr "" #: ../bleachbit/Cleaner.py:429 msgid "This option is very slow." msgstr "Бул опция өтө жай болот." #: ../bleachbit/Cleaner.py:433 msgid "The system in general" msgstr "Система бүт бойдон" #: ../bleachbit/Cleaner.py:439 ../bleachbit/Cleaner.py:712 msgid "System" msgstr "Система" #. TRANSLATORS: 'Free' means 'unallocated.' #. %s expands to a path such as C:\ or /tmp/ #: ../bleachbit/Cleaner.py:636 ../bleachbit/Cleaner.py:739 #, python-format msgid "Overwrite free disk space %s" msgstr "" #. TRANSLATORS: %s expands to a drive letter such as C:\ or D:\ #: ../bleachbit/Cleaner.py:664 #, python-format msgid "Recycle bin %s" msgstr "%s үчүн себет" #: ../bleachbit/CLI.py:123 #, python-format msgid "not a valid cleaner: %s" msgstr "" #. TRANSLATORS: This is the command line usage. Don't translate #. %prog, but do translate usage, options, cleaner, and option. #. More information about the command line is here #. http://bleachbit.sourceforge.net/documentation/command-line #: ../bleachbit/CLI.py:150 msgid "usage: %prog [options] cleaner.option1 cleaner.option2" msgstr "" #: ../bleachbit/CLI.py:153 msgid "list cleaners" msgstr "" #: ../bleachbit/CLI.py:155 msgid "delete files and make other permanent changes" msgstr "" #. TRANSLATORS: this is a warning for using --delete which will go away one day #: ../bleachbit/CLI.py:158 msgid "depreciated alias for --clean" msgstr "" #: ../bleachbit/CLI.py:160 msgid "show system information" msgstr "система жөнүндө маалыматты көрсөтүү" #: ../bleachbit/CLI.py:161 msgid "launch the graphical interface" msgstr "" #: ../bleachbit/CLI.py:163 msgid "do not prompt for administrator privileges" msgstr "" #: ../bleachbit/CLI.py:168 msgid "preview files to be deleted and other changes" msgstr "" #: ../bleachbit/CLI.py:170 msgid "use options set in the graphical interface" msgstr "" #: ../bleachbit/CLI.py:172 msgid "output version information and exit" msgstr "" #: ../bleachbit/CLI.py:174 msgid "overwrite files to hide contents" msgstr "" #. TRANSLATORS: This is the label in the log indicating was #. skipped because it matches the whitelist #: ../bleachbit/Command.py:46 msgid "Skip" msgstr "Өткөрүү" #. TRANSLATORS: This is the label in the log indicating will be #. deleted (for previews) or was actually deleted #: ../bleachbit/Command.py:73 msgid "Delete" msgstr "Өчүрүү" #. TRANSLATORS: The file will be deleted when the #. system reboots #: ../bleachbit/Command.py:93 msgid "Mark for deletion" msgstr "Өчүрүүгө белгилөө" #. TRANSLATORS: The file will be truncated to 0 bytes in length #: ../bleachbit/Command.py:250 msgid "Truncate" msgstr "" #: ../bleachbit/Command.py:289 msgid "Delete registry key" msgstr "Реестр ачкычын өчүрүү" #: ../bleachbit/GuiBasic.py:113 msgid "Delete confirmation" msgstr "Өчүрүүнү аныктоо" #: ../bleachbit/GuiBasic.py:121 msgid "" "Are you sure you want to permanently delete files according to the selected " "operations? The actual files that will be deleted may have changed since " "you ran the preview." msgstr "" #: ../bleachbit/GuiBasic.py:123 msgid "Are you sure you want to permanently delete these files?" msgstr "" #: ../bleachbit/GuiBasic.py:159 #, python-format msgid "" "Because you are running as root, please manually open this link in a web " "browser:\n" "%s" msgstr "" #. TRANSLATORS: %s expands to bleachbit.sourceforge.net or similar #: ../bleachbit/GuiBasic.py:171 #, python-format msgid "Open web browser to %s?" msgstr "" #: ../bleachbit/GuiPreferences.py:55 ../bleachbit/GUI.py:637 msgid "Preferences" msgstr "Ырастоолор" #: ../bleachbit/GuiPreferences.py:61 msgid "General" msgstr "Негизгилер" #: ../bleachbit/GuiPreferences.py:63 msgid "Drives" msgstr "Дисктер" #: ../bleachbit/GuiPreferences.py:65 msgid "Languages" msgstr "Тилдер" #: ../bleachbit/GuiPreferences.py:66 msgid "Whitelist" msgstr "Ак тизме" #: ../bleachbit/GuiPreferences.py:111 msgid "Check periodically for software updates via the Internet" msgstr "" #: ../bleachbit/GuiPreferences.py:114 msgid "" "If an update is found, you will be given the option to view information " "about it. Then, you may manually download and install the update." msgstr "" #: ../bleachbit/GuiPreferences.py:120 msgid "Check for new beta releases" msgstr "" #: ../bleachbit/GuiPreferences.py:127 msgid "Download and update cleaners from community (winapp2.ini)" msgstr "" #. TRANSLATORS: This means to hide cleaners which would do #. nothing. For example, if Firefox were never used on #. this system, this option would hide Firefox to simplify #. the list of cleaners. #: ../bleachbit/GuiPreferences.py:139 msgid "Hide irrelevant cleaners" msgstr "" #. TRANSLATORS: Overwriting is the same as shredding. It is a way #. to prevent recovery of the data. You could also translate #. 'Shred files to prevent recovery.' #: ../bleachbit/GuiPreferences.py:147 msgid "Overwrite files to hide contents" msgstr "" #: ../bleachbit/GuiPreferences.py:150 msgid "" "Overwriting is ineffective on some file systems and with certain BleachBit " "operations. Overwriting is significantly slower." msgstr "" #: ../bleachbit/GuiPreferences.py:153 msgid "Start BleachBit with computer" msgstr "BleachBit'ти компьютер менен кошо жүргүзүү" #: ../bleachbit/GuiPreferences.py:164 ../bleachbit/GuiPreferences.py:295 #: ../bleachbit/GuiPreferences.py:341 ../bleachbit/GUI.py:545 msgid "Choose a folder" msgstr "Папканы тандоо" #. TRANSLATORS: 'free' means 'unallocated' #: ../bleachbit/GuiPreferences.py:189 msgid "" "Choose a writable folder for each drive for which to overwrite free space." msgstr "" #. TRANSLATORS: In the preferences dialog, this button adds a path to the list of paths #: ../bleachbit/GuiPreferences.py:210 msgctxt "button" msgid "Add" msgstr "Кошуу" #. TRANSLATORS: In the preferences dialog, this button removes a path from the list of paths #: ../bleachbit/GuiPreferences.py:213 ../bleachbit/GuiPreferences.py:433 msgctxt "button" msgid "Remove" msgstr "Өчүрүү" #: ../bleachbit/GuiPreferences.py:238 msgid "All languages will be deleted except those checked." msgstr "" #: ../bleachbit/GuiPreferences.py:255 msgid "Preserve" msgstr "Сактоо" #: ../bleachbit/GuiPreferences.py:259 msgid "Code" msgstr "Код" #: ../bleachbit/GuiPreferences.py:263 ../bleachbit/GUI.py:136 msgid "Name" msgstr "Ат" #: ../bleachbit/GuiPreferences.py:281 ../bleachbit/GuiPreferences.py:327 msgid "Choose a file" msgstr "Файлды тандаңыз" #: ../bleachbit/GuiPreferences.py:288 ../bleachbit/GuiPreferences.py:334 #: ../bleachbit/GuiPreferences.py:381 msgid "File" msgstr "Файл" #: ../bleachbit/GuiPreferences.py:303 ../bleachbit/GuiPreferences.py:349 #: ../bleachbit/GuiPreferences.py:383 msgid "Folder" msgstr "Каталог" #. TRANSLATORS: "Paths" is used generically to refer to both files and folders #: ../bleachbit/GuiPreferences.py:391 msgid "Theses paths will not be deleted or modified." msgstr "" #: ../bleachbit/GuiPreferences.py:393 msgid "These locations can be selected for deletion." msgstr "" #: ../bleachbit/GuiPreferences.py:401 msgid "Type" msgstr "Түр" #. TRANSLATORS: In the tree view "Path" is used generically to refer to a #. file, a folder, or a pattern describing either #: ../bleachbit/GuiPreferences.py:407 msgid "Path" msgstr "Жол" #: ../bleachbit/GuiPreferences.py:419 msgctxt "button" msgid "Add file" msgstr "Файлды кошуу" #: ../bleachbit/GuiPreferences.py:426 msgctxt "button" msgid "Add folder" msgstr "Каталогду кошуу" #: ../bleachbit/GUI.py:144 msgid "Active" msgstr "Активациялоо" #. TRANSLATORS: %(cleaner) may be Firefox, System, etc. #. %(option) may be cache, logs, cookies, etc. #. %(warning) may be 'This option is really slow' #: ../bleachbit/GUI.py:176 #, python-format msgid "" "Warning regarding %(cleaner)s - %(option)s:\n" "\n" "%(warning)s" msgstr "" #: ../bleachbit/GUI.py:346 msgid "You must select an operation" msgstr "" #: ../bleachbit/GUI.py:369 ../bleachbit/GUI.py:384 msgid "Done." msgstr "Аткарылды." #: ../bleachbit/GUI.py:398 msgid "Program to clean unnecessary files" msgstr "" #: ../bleachbit/GUI.py:403 msgid "" "GNU General Public License version 3 or later.\n" "See http://www.gnu.org/licenses/gpl-3.0.txt" msgstr "" #. TRANSLATORS: Maintain the names of translators here. #. Launchpad does this automatically for translations #. typed in Launchpad. This is a special string shown #. in the 'About' box. #: ../bleachbit/GUI.py:409 msgid "translator-credits" msgstr "" "Launchpad Contributions:\n" " Chynggyz Jumaliev https://launchpad.net/~blacktext" #: ../bleachbit/GUI.py:422 msgid "System information" msgstr "Система жөнүндө маалымат" #: ../bleachbit/GUI.py:492 msgid "Choose files to shred" msgstr "" #: ../bleachbit/GUI.py:495 msgid "Choose folder to shred" msgstr "" #. TRANSLATORS: this is the context menu #: ../bleachbit/GUI.py:580 msgid "Preview" msgstr "Алдын ала көрүү" #: ../bleachbit/GUI.py:631 msgid "_Shred Files" msgstr "" #: ../bleachbit/GUI.py:632 msgid "Sh_red Folders" msgstr "" #: ../bleachbit/GUI.py:633 msgid "_Wipe Free Space" msgstr "" #: ../bleachbit/GUI.py:634 msgid "S_hred Settings and Quit" msgstr "" #: ../bleachbit/GUI.py:635 msgid "_Quit" msgstr "_Чыгуу" #: ../bleachbit/GUI.py:636 msgid "_File" msgstr "_Файл" #: ../bleachbit/GUI.py:638 msgid "_Edit" msgstr "_Оңдоо" #: ../bleachbit/GUI.py:639 msgid "Help Contents" msgstr "Жардам мазмуну" #: ../bleachbit/GUI.py:641 msgid "_Release Notes" msgstr "_Чыгаруу эскертүүлөрү" #: ../bleachbit/GUI.py:643 msgid "_System Information" msgstr "_Система жөнүндө маалымат" #: ../bleachbit/GUI.py:644 msgid "_About" msgstr "Программа _жөнүндө" #: ../bleachbit/GUI.py:645 msgid "_Help" msgstr "_Жардам" #. TRANSLATORS: This is the preview button on the main window. It previews changes. #: ../bleachbit/GUI.py:669 msgctxt "button" msgid "Preview" msgstr "Алдын ала көрүү" #: ../bleachbit/GUI.py:672 msgid "Preview files in the selected operations (without deleting any files)" msgstr "" #. TRANSLATORS: This is the clean button on the main window. #. It makes permanent changes: usually deleting files, sometimes altering them. #: ../bleachbit/GUI.py:680 msgctxt "button" msgid "Clean" msgstr "Тазалоо" #: ../bleachbit/GUI.py:683 msgid "Clean files in the selected operations" msgstr "" #: ../bleachbit/GUI.py:769 msgid "Error when checking for updates: " msgstr "" #: ../bleachbit/GUI.py:800 msgid "" "Error loading the SQLite module: the antivirus software may be blocking it." msgstr "" #: ../bleachbit/RecognizeCleanerML.py:62 msgid "Security warning" msgstr "Коопсуздук эскертүүсү" #. TRANSLATORS: Cleaner definitions are XML data files that define #. which files will be cleaned. #: ../bleachbit/RecognizeCleanerML.py:74 msgid "" "These cleaner definitions are new or have changed. Malicious definitions can " "damage your system. If you do not trust these changes, delete the files or " "quit." msgstr "" #. TRANSLATORS: This is the column label (header) in the tree view for the security dialog #: ../bleachbit/RecognizeCleanerML.py:87 msgctxt "column_label" msgid "Delete" msgstr "Өчүрүү" #. TRANSLATORS: This is the column label (header) in the tree view for the security dialog #: ../bleachbit/RecognizeCleanerML.py:90 msgctxt "column_label" msgid "Filename" msgstr "Файл аты" #: ../bleachbit/Unix.py:366 ../bleachbit/Unix.py:396 ../bleachbit/Unix.py:576 #, python-format msgid "Executable not found: %s" msgstr "Аткарылуучу файл табылган жок: %s" #. TRANSLATORS: %s expands to a name such as 'Firefox' or 'System'. #: ../bleachbit/Unix.py:573 ../bleachbit/Worker.py:136 #, python-format msgid "" "%s cannot be cleaned because it is currently running. Close it, and try " "again." msgstr "" #: ../bleachbit/Update.py:73 msgid "New winapp2.ini was downloaded." msgstr "" #: ../bleachbit/Update.py:111 msgid "Update BleachBit" msgstr "" #: ../bleachbit/Update.py:116 msgid "A new version is available." msgstr "" #. TRANSLATORS: %s expands to version such as '0.8.4' or '0.8.5beta' or similar #: ../bleachbit/Update.py:124 #, python-format msgid "Update to version %s" msgstr "" #. TRANSLATORS: This is cleaner name for cleaners imported from winapp2.ini #: ../bleachbit/Winapp.py:48 msgid "Applications" msgstr "Тиркемелер" #. TRANSLATORS: This is cleaner name for cleaners imported from winapp2.ini #: ../bleachbit/Winapp.py:50 msgid "Internet" msgstr "Интернет" #. TRANSLATORS: This is cleaner name for cleaners imported from winapp2.ini #: ../bleachbit/Winapp.py:52 msgid "Multimedia" msgstr "Мультимедиа" #. TRANSLATORS: This is cleaner name for cleaners imported from winapp2.ini #: ../bleachbit/Winapp.py:54 msgid "Utilities" msgstr "Утилиталар" #: ../bleachbit/Winapp.py:68 msgid "Games" msgstr "" #: ../bleachbit/Winapp.py:99 msgid "Imported from winapp2.ini" msgstr "winapp2.ini'ден импорттоо" #. TRANSLATORS: This indicates an error. The special keyword #. %(operation)s will be replaced by 'firefox' or 'opera' or #. some other cleaner ID. The special keyword %(msg)s will be #. replaced by a message such as 'Permission denied.' #: ../bleachbit/Worker.py:76 #, python-format msgid "Exception while running operation '%(operation)s': '%(msg)s'" msgstr "" #. TRANSLATORS: 'free' means 'unallocated' #: ../bleachbit/Worker.py:210 msgid "Please wait. Wiping free disk space." msgstr "" #. TRANSLATORS: %s is replaced with Firefox, System, etc. #: ../bleachbit/Worker.py:212 ../bleachbit/Worker.py:299 #, python-format msgid "Please wait. Cleaning %s." msgstr "" #: ../bleachbit/Worker.py:222 #, python-format msgid "About %d minute remaining." msgid_plural "About %d minutes remaining." msgstr[0] "" msgstr[1] "" #. TRANSLATORS: This refers to disk space that was #. really recovered (in other words, not a preview) #: ../bleachbit/Worker.py:237 #, python-format msgid "Disk space recovered: %s" msgstr "" #. TRANSLATORS: This refers to a preview (no real #. changes were made yet) #: ../bleachbit/Worker.py:241 #, python-format msgid "Disk space to be recovered: %s" msgstr "" #. TRANSLATORS: This refers to the number of files really #. deleted (in other words, not a preview). #: ../bleachbit/Worker.py:246 #, python-format msgid "Files deleted: %d" msgstr "Файлдар өчүрүлдү: %d" #. TRANSLATORS: This refers to the number of files that #. would be deleted (in other words, simply a preview). #: ../bleachbit/Worker.py:250 #, python-format msgid "Files to be deleted: %d" msgstr "Өчүрүү үчүн файлдар: %d" #: ../bleachbit/Worker.py:253 #, python-format msgid "Special operations: %d" msgstr "Атайын операциялар: %d" #: ../bleachbit/Worker.py:256 #, python-format msgid "Errors: %d" msgstr "Каталар: %d" #. TRANSLATORS: The "deep scan" feature searches over broad #. areas of the file system such as the user's whole home directory #. or all the system executables. #: ../bleachbit/Worker.py:272 msgid "Please wait. Running deep scan." msgstr "" #. TRANSLATORS: %s is replaced with Firefox, System, etc. #: ../bleachbit/Worker.py:302 #, python-format msgid "Please wait. Previewing %s." msgstr "" bleachbit-2.0/po/id.po0000644000175000017500000013532013245436307012757 0ustar hlehle# Indonesian translation for bleachbit # Copyright (c) 2009 Rosetta Contributors and Canonical Ltd 2009 # This file is distributed under the same license as the bleachbit package. # FIRST AUTHOR , 2009. # Ferri Fakhruzi , 2015. msgid "" msgstr "" "Project-Id-Version: bleachbit\n" "Report-Msgid-Bugs-To: FULL NAME \n" "POT-Creation-Date: 2017-02-11 11:12-0700\n" "PO-Revision-Date: 2017-02-16 00:57+0000\n" "Last-Translator: Abdul Munif Hanafi \n" "Language-Team: ubuntu-indonesia.com\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=1; plural=0;\n" "X-Launchpad-Export-Date: 2017-02-16 05:01+0000\n" "X-Generator: Launchpad (build 18326)\n" "Language: id\n" #: ../cleaners/mc.xml ../cleaners/tortoisesvn.xml ../cleaners/vim.xml #: ../cleaners/safari.xml ../cleaners/links2.xml ../cleaners/seamonkey.xml #: ../cleaners/realplayer.xml ../cleaners/windows_defender.xml #: ../cleaners/d4x.xml ../cleaners/sqlite3.xml #: ../cleaners/internet_explorer.xml ../cleaners/libreoffice.xml #: ../cleaners/easytag.xml ../cleaners/bash.xml ../cleaners/nautilus.xml #: ../cleaners/octave.xml ../cleaners/elinks.xml ../cleaners/chromium.xml #: ../cleaners/google_chrome.xml msgid "History" msgstr "Riwayat" #: ../cleaners/mc.xml ../cleaners/tortoisesvn.xml ../cleaners/links2.xml #: ../cleaners/realplayer.xml ../cleaners/d4x.xml ../cleaners/libreoffice.xml #: ../cleaners/easytag.xml ../cleaners/nautilus.xml ../cleaners/gnome.xml #: ../bleachbit/Cleaner.py:349 ../bleachbit/Cleaner.py:423 #: ../bleachbit/Cleaner.py:432 msgid "Delete the usage history" msgstr "Hapus riwayat penggunaan" #: ../cleaners/gpodder.xml ../cleaners/hippo_opensim_viewer.xml #: ../cleaners/thumbnails.xml ../cleaners/safari.xml ../cleaners/emesene.xml #: ../cleaners/liferea.xml ../cleaners/seamonkey.xml ../cleaners/vuze.xml #: ../cleaners/yahoo_messenger.xml ../cleaners/pidgin.xml #: ../cleaners/adobe_reader.xml ../cleaners/evolution.xml #: ../cleaners/tremulous.xml ../cleaners/libreoffice.xml ../cleaners/xine.xml #: ../cleaners/nexuiz.xml ../cleaners/exaile.xml ../cleaners/opera.xml #: ../cleaners/amsn.xml ../cleaners/gftp.xml ../cleaners/miro.xml #: ../cleaners/beagle.xml ../cleaners/kde.xml ../cleaners/epiphany.xml #: ../cleaners/flash.xml ../cleaners/secondlife_viewer.xml ../cleaners/java.xml #: ../cleaners/chromium.xml ../cleaners/audacious.xml ../cleaners/rhythmbox.xml #: ../cleaners/google_chrome.xml ../cleaners/thunderbird.xml #: ../bleachbit/Cleaner.py:192 ../bleachbit/Cleaner.py:370 #: ../bleachbit/Cleaner.py:455 msgid "Cache" msgstr "Tembolok" #: ../cleaners/gpodder.xml ../cleaners/yum.xml #: ../cleaners/hippo_opensim_viewer.xml ../cleaners/thumbnails.xml #: ../cleaners/windows_explorer.xml ../cleaners/liferea.xml #: ../cleaners/vuze.xml ../cleaners/yahoo_messenger.xml ../cleaners/pidgin.xml #: ../cleaners/adobe_reader.xml ../cleaners/evolution.xml #: ../cleaners/libreoffice.xml ../cleaners/apt.xml ../cleaners/xine.xml #: ../cleaners/nexuiz.xml ../cleaners/exaile.xml ../cleaners/amsn.xml #: ../cleaners/gftp.xml ../cleaners/miro.xml ../cleaners/beagle.xml #: ../cleaners/kde.xml ../cleaners/flash.xml ../cleaners/secondlife_viewer.xml #: ../cleaners/java.xml ../cleaners/audacious.xml ../cleaners/rhythmbox.xml #: ../bleachbit/Cleaner.py:370 ../bleachbit/Cleaner.py:455 #: ../bleachbit/Cleaner.py:489 ../bleachbit/Cleaner.py:491 msgid "Delete the cache" msgstr "Bersihkan tembolok" #. TRANSLATORS: Vacuum is a verb. The term is jargon #. from the SQLite database. Microsoft Access uses #. the term 'Compact Database' (which you may translate #. instead). Another synonym is 'defragment.' #: ../cleaners/gpodder.xml ../cleaners/yum.xml ../cleaners/safari.xml #: ../cleaners/liferea.xml ../cleaners/chromium.xml #: ../cleaners/google_chrome.xml ../cleaners/thunderbird.xml #: ../bleachbit/Cleaner.py:214 ../bleachbit/Cleaner.py:360 #: ../bleachbit/Action.py:445 msgid "Vacuum" msgstr "Optimalkan" #: ../cleaners/gpodder.xml ../cleaners/yum.xml ../cleaners/safari.xml #: ../cleaners/liferea.xml ../cleaners/chromium.xml #: ../cleaners/google_chrome.xml ../cleaners/thunderbird.xml #: ../bleachbit/Cleaner.py:215 msgid "" "Clean database fragmentation to reduce space and improve speed without " "removing any data" msgstr "" "Bersihkan fragmentasi database untuk mengurangi ruang dan meningkatkan " "kecepatan tanpa menghapus data apapun" #: ../cleaners/yum.xml ../cleaners/apt.xml msgid "Package manager" msgstr "Manager Paket" #: ../cleaners/warzone2100.xml ../cleaners/hippo_opensim_viewer.xml #: ../cleaners/gl-117.xml ../cleaners/tremulous.xml ../cleaners/nexuiz.xml #: ../cleaners/secondlife_viewer.xml msgid "Game" msgstr "Permainan" #: ../cleaners/warzone2100.xml ../cleaners/hippo_opensim_viewer.xml #: ../cleaners/teamviewer.xml ../cleaners/realplayer.xml ../cleaners/vuze.xml #: ../cleaners/yahoo_messenger.xml ../cleaners/amule.xml #: ../cleaners/easytag.xml ../cleaners/exaile.xml ../cleaners/screenlets.xml #: ../cleaners/gftp.xml ../cleaners/miro.xml ../cleaners/audacious.xml #: ../bleachbit/Cleaner.py:486 msgid "Logs" msgstr "Log" #: ../cleaners/warzone2100.xml ../cleaners/hippo_opensim_viewer.xml #: ../cleaners/teamviewer.xml ../cleaners/realplayer.xml ../cleaners/vuze.xml #: ../cleaners/yahoo_messenger.xml ../cleaners/amule.xml ../cleaners/exaile.xml #: ../cleaners/screenlets.xml ../cleaners/gftp.xml ../cleaners/miro.xml #: ../cleaners/audacious.xml ../bleachbit/Cleaner.py:486 msgid "Delete the logs" msgstr "Hapus log" #: ../cleaners/thumbnails.xml ../cleaners/windows_explorer.xml msgid "Thumbnails" msgstr "Gambar mini" #: ../cleaners/thumbnails.xml msgid "Icons for files on the system" msgstr "Ikon untuk berkas di dalam sistem" #: ../cleaners/vim.xml ../cleaners/gedit.xml msgid "Editor" msgstr "Penyunting" #: ../cleaners/vim.xml msgid "" "Delete ~/.viminfo which includes file history, command history, and buffers" msgstr "" "Hapus berkas ~/.viminfo yang berisi riwayat berkas, riwayat perintah, dan " "penyangga" #: ../cleaners/filezilla.xml ../cleaners/transmission.xml ../cleaners/vuze.xml #: ../cleaners/amule.xml ../cleaners/gftp.xml msgid "File transfer client" msgstr "Klien transfer berkas" #: ../cleaners/filezilla.xml ../cleaners/paint.xml #: ../cleaners/windows_media_player.xml ../cleaners/windows_explorer.xml #: ../cleaners/teamviewer.xml ../cleaners/microsoft_office.xml #: ../cleaners/vlc.xml ../cleaners/adobe_reader.xml ../cleaners/winamp.xml #: ../cleaners/winzip.xml ../cleaners/winrar.xml ../cleaners/audacious.xml #: ../cleaners/wordpad.xml ../bleachbit/Cleaner.py:371 msgid "Most recently used" msgstr "Baru-baru ini digunakan" #: ../cleaners/filezilla.xml ../cleaners/windows_explorer.xml #: ../cleaners/gwenview.xml ../cleaners/adobe_reader.xml ../cleaners/gedit.xml #: ../cleaners/kde.xml ../cleaners/audacious.xml ../bleachbit/Cleaner.py:372 #: ../bleachbit/Cleaner.py:469 msgid "Delete the list of recently used documents" msgstr "Hapus daftar dokumen yang baru saja digunakan" #: ../cleaners/skype.xml ../cleaners/emesene.xml #: ../cleaners/yahoo_messenger.xml ../cleaners/pidgin.xml ../cleaners/amsn.xml msgid "Chat client" msgstr "Klien obrolan" #: ../cleaners/skype.xml ../cleaners/hexchat.xml ../cleaners/emesene.xml #: ../cleaners/seamonkey.xml ../cleaners/yahoo_messenger.xml #: ../cleaners/pidgin.xml ../cleaners/amsn.xml msgid "Chat logs" msgstr "Log obrolan" #: ../cleaners/skype.xml ../cleaners/hexchat.xml ../cleaners/emesene.xml #: ../cleaners/seamonkey.xml ../cleaners/yahoo_messenger.xml #: ../cleaners/pidgin.xml ../cleaners/amsn.xml msgid "Delete the chat logs" msgstr "Hapus log obrolan" #: ../cleaners/skype.xml msgid "Installers" msgstr "Penginstal" #: ../cleaners/skype.xml msgid "Delete cached patches and installers" msgstr "Hapus tembolok tambalan dan penginstal" #: ../cleaners/hexchat.xml msgid "IRC client formerly known as XChat" msgstr "Klien IRC yang tadinya dikenal sebagai XChat" #: ../cleaners/safari.xml ../cleaners/links2.xml ../cleaners/seamonkey.xml #: ../cleaners/konqueror.xml ../cleaners/internet_explorer.xml #: ../cleaners/opera.xml ../cleaners/epiphany.xml ../cleaners/elinks.xml #: ../cleaners/chromium.xml ../cleaners/google_chrome.xml #: ../bleachbit/Cleaner.py:226 msgid "Web browser" msgstr "Penelusur web" #: ../cleaners/safari.xml ../cleaners/seamonkey.xml ../cleaners/opera.xml #: ../cleaners/epiphany.xml ../cleaners/chromium.xml #: ../cleaners/google_chrome.xml ../cleaners/thunderbird.xml #: ../bleachbit/Cleaner.py:193 msgid "Delete the web cache, which reduces time to display revisited pages" msgstr "" "Hapus tembolok web, yang mana mengurangi waktu untuk menampilkan halaman " "yang dikunjungi ulang" #: ../cleaners/safari.xml ../cleaners/liferea.xml ../cleaners/seamonkey.xml #: ../cleaners/realplayer.xml ../cleaners/konqueror.xml #: ../cleaners/internet_explorer.xml ../cleaners/opera.xml #: ../cleaners/epiphany.xml ../cleaners/flash.xml ../cleaners/silverlight.xml #: ../cleaners/chromium.xml ../cleaners/google_chrome.xml #: ../cleaners/thunderbird.xml ../bleachbit/Cleaner.py:194 msgid "Cookies" msgstr "Cookies" #: ../cleaners/safari.xml ../cleaners/liferea.xml ../cleaners/seamonkey.xml #: ../cleaners/realplayer.xml ../cleaners/konqueror.xml #: ../cleaners/internet_explorer.xml ../cleaners/opera.xml #: ../cleaners/epiphany.xml ../cleaners/flash.xml ../cleaners/silverlight.xml #: ../cleaners/chromium.xml ../cleaners/google_chrome.xml #: ../cleaners/thunderbird.xml ../bleachbit/Cleaner.py:195 msgid "" "Delete cookies, which contain information such as web site preferences, " "authentication, and tracking identification" msgstr "" "Hapus cookies, yang berisi informasi seperti preferensi situs web, " "otentikasi, dan identifikasi pelacakan" #: ../cleaners/safari.xml ../cleaners/konqueror.xml #: ../cleaners/internet_explorer.xml ../cleaners/opera.xml #: ../bleachbit/Cleaner.py:213 msgid "List of visited web pages" msgstr "Daftar halaman web yang dikunjungi" #. Torrent software can block a list of IP addresses, such as those that may belong to malware or anti-piracy organizations #: ../cleaners/transmission.xml msgid "Blocklists" msgstr "Daftar blokir" #: ../cleaners/transmission.xml ../cleaners/windows_defender.xml #: ../cleaners/beagle.xml ../cleaners/thunderbird.xml ../cleaners/deepscan.xml #: ../bleachbit/Cleaner.py:197 msgid "Delete the files" msgstr "Hapus berkas" #: ../cleaners/transmission.xml msgid "Blocklists will need update to work." msgstr "Daftar blokir akan memerlukan pembaharuan agar bekerja." #: ../cleaners/transmission.xml msgid "Torrents" msgstr "Torrent" #: ../cleaners/transmission.xml msgid "Delete the torrents (just the metadata but not the files described)" msgstr "Hapus torrent (hanya metadata tapi bukan berkas yang diuraikan)" #: ../cleaners/transmission.xml msgid "Statistics" msgstr "Statistik" #: ../cleaners/transmission.xml msgid "Delete the file" msgstr "Hapus berkas" #: ../cleaners/paint.xml ../cleaners/windows_media_player.xml #: ../cleaners/windows_explorer.xml ../cleaners/teamviewer.xml #: ../cleaners/microsoft_office.xml ../cleaners/vlc.xml ../cleaners/winamp.xml #: ../cleaners/winzip.xml ../cleaners/winrar.xml ../cleaners/wordpad.xml msgid "Delete the most recently used list" msgstr "Hapus daftar yang paling terakhir digunakan" #: ../cleaners/emesene.xml msgid "Delete the avatars and emoticons cache" msgstr "Hapus tembolok avatar dan emotikon" #: ../cleaners/windows_media_player.xml ../cleaners/realplayer.xml #: ../cleaners/vlc.xml ../cleaners/winamp.xml msgid "Media player" msgstr "Pemutar media" #: ../cleaners/windows_explorer.xml ../cleaners/nautilus.xml msgid "File manager" msgstr "Manajer berkas" #: ../cleaners/windows_explorer.xml ../cleaners/gwenview.xml #: ../cleaners/gedit.xml ../cleaners/kde.xml ../bleachbit/Cleaner.py:468 #: ../bleachbit/Cleaner.py:663 msgid "Recent documents list" msgstr "Daftar dokumen terakhir" #: ../cleaners/windows_explorer.xml msgid "" "This option will reset pinned locations in Quick Access to their defaults." msgstr "" "Pilihan ini akan mereset lokasi tersemat pada Akses Cepat menjadi default." #. In Windows 'Run' is the dialog in the Start menu #. In GNOME 'Run' is the dialog shown when typing ALT+F2' #: ../cleaners/windows_explorer.xml ../cleaners/gnome.xml msgid "Run" msgstr "Jalankan" #: ../cleaners/windows_explorer.xml ../cleaners/opera.xml ../cleaners/gnome.xml #: ../cleaners/google_toolbar.xml msgid "Search history" msgstr "Riwayat pencarian" #: ../cleaners/windows_explorer.xml ../cleaners/opera.xml ../cleaners/gnome.xml #: ../cleaners/google_toolbar.xml msgid "Delete the search history" msgstr "Hapus riwayat pencarian" #: ../cleaners/windows_explorer.xml msgid "This will restart Windows Explorer." msgstr "Ini akan memulai ulang Windows Explorer." #: ../cleaners/gl-117.xml ../cleaners/microsoft_office.xml #: ../cleaners/beagle.xml ../cleaners/secondlife_viewer.xml ../cleaners/x11.xml msgid "Debug logs" msgstr "Catatan-catatan debug" #: ../cleaners/gl-117.xml ../cleaners/microsoft_office.xml #: ../cleaners/easytag.xml ../cleaners/beagle.xml #: ../cleaners/secondlife_viewer.xml ../cleaners/x11.xml msgid "Delete the debug logs" msgstr "Hapus catatan-catatan debug" #: ../cleaners/google_earth.xml ../cleaners/winetricks.xml ../cleaners/vuze.xml #: ../cleaners/adobe_reader.xml ../cleaners/amule.xml ../cleaners/wine.xml #: ../cleaners/internet_explorer.xml ../cleaners/gimp.xml ../cleaners/kde.xml #: ../cleaners/deepscan.xml ../bleachbit/Cleaner.py:520 msgid "Temporary files" msgstr "Berkas-berkas sementara" #: ../cleaners/google_earth.xml ../cleaners/winetricks.xml ../cleaners/vuze.xml #: ../cleaners/adobe_reader.xml ../cleaners/amule.xml ../cleaners/wine.xml #: ../cleaners/internet_explorer.xml ../cleaners/gimp.xml ../cleaners/kde.xml #: ../cleaners/deepscan.xml ../bleachbit/Cleaner.py:520 msgid "Delete the temporary files" msgstr "Hapus berkas-berkas sementara" #: ../cleaners/seamonkey.xml ../cleaners/opera.xml ../bleachbit/Cleaner.py:201 msgid "Download history" msgstr "Riwayat unduhan" #: ../cleaners/seamonkey.xml ../cleaners/opera.xml ../bleachbit/Cleaner.py:201 msgid "List of files downloaded" msgstr "Daftar file terunduh" #: ../cleaners/seamonkey.xml msgid "Delete the list of visited web pages" msgstr "Hapus daftar halaman web yang dikunjungi" #: ../cleaners/vuze.xml ../cleaners/deepscan.xml ../bleachbit/Cleaner.py:190 msgid "Backup files" msgstr "Cadangan berkas-berkas" #: ../cleaners/vuze.xml ../cleaners/deepscan.xml ../bleachbit/Cleaner.py:191 msgid "Delete the backup files" msgstr "Hapus cadangan berkas-berkas" #: ../cleaners/konqueror.xml ../cleaners/opera.xml ../cleaners/chromium.xml msgid "Current session" msgstr "Sesi saat ini" #: ../cleaners/konqueror.xml ../cleaners/opera.xml ../cleaners/chromium.xml msgid "Delete the current session" msgstr "Hapus sesi saat ini" #: ../cleaners/konqueror.xml ../cleaners/opera.xml ../bleachbit/Cleaner.py:213 msgid "URL history" msgstr "Riwayat URL" #: ../cleaners/microsoft_office.xml ../cleaners/libreoffice.xml #: ../bleachbit/Cleaner.py:375 msgid "Office suite" msgstr "Perangkat kantor" #: ../cleaners/windows_defender.xml msgid "Anti-virus" msgstr "Anti-virus" #: ../cleaners/journald.xml msgid "System journals" msgstr "Jurnal Sistem" #: ../cleaners/journald.xml msgid "Clean old system journals" msgstr "Hapus jurnal sistem lama" #: ../cleaners/adobe_reader.xml msgid "Document viewer" msgstr "Penampil dokumen" #: ../cleaners/evolution.xml ../cleaners/thunderbird.xml msgid "Email client" msgstr "Email klien" #: ../cleaners/tremulous.xml msgid "Delete the list of game servers" msgstr "Hapus daftar server-server permainan" #: ../cleaners/sqlite3.xml ../cleaners/bash.xml ../cleaners/octave.xml msgid "Delete the command history" msgstr "Hapus riwayat perintah" #: ../cleaners/wine.xml msgid "Compatibility layer for Windows software" msgstr "Lapisan kompatibilitas untuk perangkat lunak Windows" #: ../cleaners/internet_explorer.xml ../cleaners/chromium.xml #: ../cleaners/google_chrome.xml ../bleachbit/Cleaner.py:202 msgid "Form history" msgstr "Riwayat isian form" #: ../cleaners/internet_explorer.xml ../bleachbit/Cleaner.py:203 msgid "A history of forms entered in web sites and in the Search bar" msgstr "" "Cacatan dari formulir yang diisi di situs web dan pada bilah pencarian" #. This software edits metadata tags, such as title and artist, in audio files #: ../cleaners/easytag.xml msgid "Audio files tagger" msgstr "Pengetag berkas-berkas audio" #: ../cleaners/apt.xml msgid "Delete obsolete files" msgstr "Hapus berkas-berkas usang" #: ../cleaners/apt.xml msgid "Package lists" msgstr "Daftar paket" #: ../cleaners/xine.xml ../cleaners/miro.xml ../cleaners/flash.xml msgid "Multimedia viewer" msgstr "Penampil mutimedia" #: ../cleaners/recoll.xml ../cleaners/beagle.xml msgid "Search tool" msgstr "Alat pencarian" #: ../cleaners/recoll.xml ../cleaners/beagle.xml ../cleaners/thunderbird.xml msgid "Index" msgstr "Indeks" #: ../cleaners/recoll.xml msgid "" "Delete the search index, a database of words and the files they contain" msgstr "" "Hapus indeks pencarian, basis data kata dan berkas-berkas yang ada isinya" #: ../cleaners/gimp.xml msgid "Graphics editor" msgstr "Penyunting Grafis" #: ../cleaners/exaile.xml msgid "Downloaded podcasts" msgstr "Podcast yang terunduh" #: ../cleaners/exaile.xml msgid "Delete downloaded podcasts" msgstr "Hapus podcast yang terunduh" #: ../cleaners/bash.xml msgid "Shell" msgstr "Shell" #. TRANSLATORS: DOM = Document Object Model. #: ../cleaners/opera.xml ../cleaners/epiphany.xml ../cleaners/chromium.xml #: ../cleaners/google_chrome.xml ../bleachbit/Cleaner.py:199 msgid "DOM Storage" msgstr "Penyimpanan DOM" #: ../cleaners/opera.xml ../cleaners/epiphany.xml ../cleaners/chromium.xml #: ../cleaners/google_chrome.xml ../bleachbit/Cleaner.py:199 msgid "Delete HTML5 cookies" msgstr "Hapus cookie HTML5" #: ../cleaners/opera.xml ../cleaners/epiphany.xml ../cleaners/chromium.xml #: ../cleaners/google_chrome.xml ../cleaners/thunderbird.xml #: ../bleachbit/Cleaner.py:208 msgid "Passwords" msgstr "Kata Sandi" #: ../cleaners/opera.xml ../cleaners/epiphany.xml ../cleaners/chromium.xml #: ../cleaners/google_chrome.xml ../cleaners/thunderbird.xml #: ../bleachbit/Cleaner.py:209 msgid "" "A database of usernames and passwords as well as a list of sites that should " "not store passwords" msgstr "" "Basis data nama pengguna dan kata sandi serta daftar situs yang seharusnya " "tidak menyimpan sandi" #: ../cleaners/opera.xml ../cleaners/epiphany.xml ../cleaners/chromium.xml #: ../cleaners/google_chrome.xml ../cleaners/thunderbird.xml #: ../bleachbit/Cleaner.py:211 msgid "This option will delete your saved passwords." msgstr "Opsi ini akan menghapus sandi Anda yang tersimpan." #: ../cleaners/nautilus.xml msgid "Custom folders will be reset." msgstr "Folder yang telah dimodifikasi akan diatur ulang." #: ../cleaners/gnome.xml ../cleaners/kde.xml msgid "Desktop environment" msgstr "Lingkungan Desktop" #: ../cleaners/screenlets.xml msgid "Widgets for the desktop" msgstr "Widget untuk destop" #: ../cleaners/epiphany.xml msgid "Places" msgstr "Tempat-tempat" #: ../cleaners/epiphany.xml msgid "" "A database of URLs including bookmarks, favicons, and a history of visited " "web sites" msgstr "" "Basis data URLs termasuk bookmark, favicons, dan riwayat situs yang telah " "dikunjungi" #: ../cleaners/epiphany.xml msgid "This option deletes all bookmarks." msgstr "Opsi ini akan menghapus semua bookmark." #: ../cleaners/winrar.xml msgid "File archiver" msgstr "Pengarsip berkas" #: ../cleaners/elinks.xml msgid "Delete the cookies, visited URLs, and search history" msgstr "Hapus cookie, URL yang dikunjungi, dan riwayat pencarian" #: ../cleaners/chromium.xml ../cleaners/google_chrome.xml msgid "A history of forms entered in web sites" msgstr "Riwayat form yang diisi pada situs web" #: ../cleaners/chromium.xml ../cleaners/google_chrome.xml msgid "" "Delete the history which includes visited sites, downloads, and thumbnails" msgstr "" "Hapus catatan yang meliputi situs yang telah dikunjungi, diunduh, dan gambar " "mini" #: ../cleaners/chromium.xml ../cleaners/google_chrome.xml msgid "Search engines" msgstr "Mesin pencari" #. 'Factory' means a search engine that is installed by default 'from the factory,' but this is different than a 'default search engine' https://lists.launchpad.net/launchpad-translators/msg00283.html #: ../cleaners/chromium.xml ../cleaners/google_chrome.xml msgid "" "Reset the search engine usage history and delete non-factory search engines, " "some of which are added automatically" msgstr "" "Atur ulang riwayat penggunaan mesin pencari dan menghapus mesin pencari non-" "pabrik, beberapa yang di antaranya ditambahkan secara otomatis" #: ../cleaners/audacious.xml msgid "Audio player" msgstr "Pemutar audio" #: ../cleaners/rhythmbox.xml msgid "Database" msgstr "Database" #: ../cleaners/rhythmbox.xml msgid "" "Delete the database, which contain information such as play count and last " "played" msgstr "" "Hapus database, yang berisi informasi seperti jumlah dimainkan dan terakhir " "dimainkan" #: ../cleaners/google_chrome.xml msgid "Session" msgstr "Sesi" #: ../cleaners/google_chrome.xml msgid "Delete the current and last sessions" msgstr "Hapus sesi saat ini dan sesi terakhir" #: ../cleaners/x11.xml msgid "Windowing system" msgstr "Sistem jendela" #: ../cleaners/wordpad.xml msgid "Word processor" msgstr "Pengolah kata" #: ../cleaners/deepscan.xml msgid "Deep scan" msgstr "Pindai secara mendalam" #: ../cleaners/deepscan.xml msgid "Clean files widely scattered across the disk" msgstr "Hapus semua berkas yang tersebar ke seluruh disk" #: ../cleaners/deepscan.xml msgid "Inspect the preview for any files you want to keep." msgstr "Lihat pratampilan setiap berkas yang ingin anda simpan." #: ../cleaners/deepscan.xml msgid "This option is slow." msgstr "Pilihan ini lambat." #: ../bleachbit.desktop msgid "Unnecessary file cleaner" msgstr "Pembersih berkas yang tidak diperlukan" #: ../bleachbit.desktop msgid "Free space and maintain privacy" msgstr "Bersihkan ruang dan perbaiki privasi" #: ../bleachbit/FileUtilities.py:668 msgid "" "There was at least one file on a file system that does not support advanced " "overwriting." msgstr "" "Setidaknya satu berkas dalam sebuah sistem berkas yang tidak mendukung " "penimpaan tingkat lanjut." #: ../bleachbit/Unix.py:574 #, python-format msgid "Executable not found: %s" msgstr "Eksekusi tidak ditemukan: %s" #. TRANSLATORS: %s expands to a name such as 'Firefox' or 'System'. #: ../bleachbit/Unix.py:623 ../bleachbit/Worker.py:136 #, python-format msgid "" "%s cannot be cleaned because it is currently running. Close it, and try " "again." msgstr "" "%s tidak dapat dibersihkan, karena saat ini sedang berjalan. Tutup, dan " "coba lagi." #: ../bleachbit/GuiBasic.py:112 msgid "Delete confirmation" msgstr "Hapus konfirmasi" #: ../bleachbit/GuiBasic.py:122 msgid "" "Are you sure you want to permanently delete files according to the selected " "operations? The actual files that will be deleted may have changed since " "you ran the preview." msgstr "" "Apakah Anda yakin ingin menghapus berkas-berkas secara permanen sesuai " "dengan operasi yang dipilih? Berkas sesungguhnya yang akan dihapus mungkin " "telah berubah sejak Anda menjalankan pratinjau." #: ../bleachbit/GuiBasic.py:125 msgid "Are you sure you want to permanently delete these files?" msgstr "Apakah anda yakin akan menghapus secara permanen berkas-berkas ini?" #: ../bleachbit/GuiBasic.py:162 #, python-format msgid "" "Because you are running as root, please manually open this link in a web " "browser:\n" "%s" msgstr "" "Karena Anda sedang menjalankan sebagai root, mohon untuk membuka tautan ini " "secara manual pada penjelajah web:\n" "%s" #. TRANSLATORS: %s expands to www.bleachbit.org or similar #: ../bleachbit/GuiBasic.py:174 #, python-format msgid "Open web browser to %s?" msgstr "Buka penjelajah web ke %s?" #. TRANSLATORS: This is the label in the log indicating was #. skipped because it matches the whitelist #: ../bleachbit/Command.py:47 msgid "Skip" msgstr "Lewati" #. TRANSLATORS: This is the label in the log indicating will be #. deleted (for previews) or was actually deleted #: ../bleachbit/Command.py:77 msgid "Delete" msgstr "Hapus" #: ../bleachbit/Command.py:99 msgid "" "At least one file was locked by another process, so its contents could not " "be overwritten. It will be marked for deletion upon system reboot." msgstr "" "Setidaknya satu berkas terkunci oleh proses lain, jadi isinya tidak dapat " "ditimpa. Ia akan ditandai untuk dihapus saat sistem memulai ulang." #. TRANSLATORS: The file will be deleted when the #. system reboots #: ../bleachbit/Command.py:102 msgid "Mark for deletion" msgstr "Tandai untuk penghapusan" #. TRANSLATORS: Parts of this file will be deleted #: ../bleachbit/Command.py:199 ../bleachbit/Command.py:233 #: ../bleachbit/Action.py:254 ../bleachbit/Action.py:267 #: ../bleachbit/Action.py:280 ../bleachbit/Action.py:293 #: ../bleachbit/Action.py:306 msgid "Clean file" msgstr "Bersihkan berkas" #. TRANSLATORS: The file will be truncated to 0 bytes in length #: ../bleachbit/Command.py:275 msgid "Truncate" msgstr "Potong" #: ../bleachbit/Command.py:317 msgid "Delete registry key" msgstr "Hapus key registri" #. TRANSLATORS: This is cleaner name for cleaners imported from winapp2.ini #: ../bleachbit/Winapp.py:44 msgid "Applications" msgstr "Aplikasi" #. TRANSLATORS: This is cleaner name for cleaners imported #. from winapp2.ini #: ../bleachbit/Winapp.py:47 msgid "Internet" msgstr "Internet" #. TRANSLATORS: This is cleaner name for cleaners imported #. from winapp2.ini #: ../bleachbit/Winapp.py:50 msgid "Multimedia" msgstr "Multimedia" #. TRANSLATORS: This is cleaner name for cleaners imported #. from winapp2.ini #: ../bleachbit/Winapp.py:53 msgid "Utilities" msgstr "Peralatan" #: ../bleachbit/Winapp.py:64 msgid "Games" msgstr "Permainan" #: ../bleachbit/Winapp.py:162 msgid "Imported from winapp2.ini" msgstr "Diimpor dari winapp2.ini" #: ../bleachbit/Cleaner.py:197 msgid "Crash reports" msgstr "Laporan crash" #: ../bleachbit/Cleaner.py:204 msgid "Session restore" msgstr "Pengembalian sesi" #: ../bleachbit/Cleaner.py:205 msgid "Loads the initial session after the browser closes or crashes" msgstr "Muat sesi awal setelah peramban ditutup atau crash" #: ../bleachbit/Cleaner.py:207 msgid "Site preferences" msgstr "Preferensi situs" #: ../bleachbit/Cleaner.py:207 msgid "Settings for individual sites" msgstr "Pengaturan untuk masing-masing situs" #. TRANSLATORS: desktop entries are .desktop files in Linux that #. make up the application menu (the menu that shows BleachBit, #. Firefox, and others. The .desktop files also associate file #. types, so clicking on an .html file in Nautilus brings up #. Firefox. #. More information: #. http://standards.freedesktop.org/menu-spec/latest/index.html#introduction #: ../bleachbit/Cleaner.py:453 msgid "Broken desktop files" msgstr "Berkas desktop yang rusak" #: ../bleachbit/Cleaner.py:454 msgid "Delete broken application menu entries and file associations" msgstr "Hapus entri menu aplikasi yang rusak dan asosiasi berkas" #. TRANSLATORS: Localizations are files supporting specific #. languages, so applications appear in Spanish, etc. #: ../bleachbit/Cleaner.py:458 msgid "Localizations" msgstr "Lokalisasi bahasa" #: ../bleachbit/Cleaner.py:459 msgid "Delete files for unwanted languages" msgstr "Hapus berkas bahasa yang tidak diinginkan" #: ../bleachbit/Cleaner.py:461 msgid "Configure this option in the preferences." msgstr "Konfigurasikan opsi ini di preferensi." #: ../bleachbit/Cleaner.py:467 msgid "Rotated logs" msgstr "Catatan-catatan yang diputar" #: ../bleachbit/Cleaner.py:467 msgid "Delete old system logs" msgstr "Hapus catatan-catatan sistem yang lama" #: ../bleachbit/Cleaner.py:470 msgid "Trash" msgstr "Tempat sampah" #: ../bleachbit/Cleaner.py:470 msgid "Empty the trash" msgstr "Kosongkan tempat sampah" #: ../bleachbit/Cleaner.py:476 ../bleachbit/Cleaner.py:627 #: ../bleachbit/Worker.py:184 msgid "Memory" msgstr "Memori" #. TRANSLATORS: 'free' means 'unallocated' #: ../bleachbit/Cleaner.py:478 msgid "Wipe the swap and free memory" msgstr "Bersihkan memori swap dan kosongkan memori" #: ../bleachbit/Cleaner.py:480 msgid "This option is experimental and may cause system problems." msgstr "" "Opsi ini masih dalam tahap uji coba dan mungkin dapat menyebabkan sistem " "bermasalah." #: ../bleachbit/Cleaner.py:488 msgid "Memory dump" msgstr "Pengarsipan memori" #: ../bleachbit/Cleaner.py:488 msgid "Delete the file memory.dmp" msgstr "Hapus berkas memori.dmp" #. TRANSLATORS: Prefetch is Microsoft Windows jargon. #: ../bleachbit/Cleaner.py:491 msgid "Prefetch" msgstr "Prefetch" #: ../bleachbit/Cleaner.py:493 msgid "Recycle bin" msgstr "Tempat sampah" #: ../bleachbit/Cleaner.py:493 ../bleachbit/Cleaner.py:787 msgid "Empty the recycle bin" msgstr "Kosongkan tempat sampah" #. TRANSLATORS: 'Update' is a noun, and 'Update uninstallers' is an option to delete #. the uninstallers for software updates. #: ../bleachbit/Cleaner.py:496 msgid "Update uninstallers" msgstr "Perbaharui uninstaller" #: ../bleachbit/Cleaner.py:497 msgid "" "Delete uninstallers for Microsoft updates including hotfixes, service packs, " "and Internet Explorer updates" msgstr "" "Hapus uninstaller untuk perbaharuan Microsoft termasuk perbaikan, paket " "layanan, dan perbaharuan Internet Explorer" #: ../bleachbit/Cleaner.py:504 ../bleachbit/Cleaner.py:727 msgid "Clipboard" msgstr "Papan klip" #: ../bleachbit/Cleaner.py:505 msgid "" "The desktop environment's clipboard used for copy and paste operations" msgstr "" "Papan klip dari lingkungan desktop yang digunakan untuk operasi salin dan " "tempel" #. TRANSLATORS: "Custom" is an option allowing the user to specify which #. files and folders will be erased. #: ../bleachbit/Cleaner.py:512 ../bleachbit/GuiPreferences.py:66 msgid "Custom" msgstr "Sesuaikan" #: ../bleachbit/Cleaner.py:513 msgid "Delete user-specified files and folders" msgstr "Hapus berkas dan folder yang ditentukan pengguna" #. TRANSLATORS: 'free' means 'unallocated' #: ../bleachbit/Cleaner.py:515 msgid "Free disk space" msgstr "Ruang kosong pada disk" #. TRANSLATORS: 'free' means 'unallocated' #: ../bleachbit/Cleaner.py:517 msgid "Overwrite free disk space to hide deleted files" msgstr "" "Timpa ruang kosong pada disk untuk menyembunyikan berkas yang telah dihapus" #: ../bleachbit/Cleaner.py:518 msgid "This option is very slow." msgstr "Opsi ini sangat lambat." #: ../bleachbit/Cleaner.py:522 msgid "The system in general" msgstr "Sistem secara umum" #: ../bleachbit/Cleaner.py:524 ../bleachbit/Cleaner.py:857 msgid "System" msgstr "Sistem" #. TRANSLATORS: 'Free' means 'unallocated.' #. %s expands to a path such as C:\ or /tmp/ #: ../bleachbit/Cleaner.py:735 ../bleachbit/Cleaner.py:890 #, python-format msgid "Overwrite free disk space %s" msgstr "Timpa ruang kosong pada disk %s" #: ../bleachbit/RecognizeCleanerML.py:59 msgid "Security warning" msgstr "Peringatan keamanan" #: ../bleachbit/RecognizeCleanerML.py:72 msgid "" "These cleaner definitions are new or have changed. Malicious definitions can " "damage your system. If you do not trust these changes, delete the files or " "quit." msgstr "" "Definisi-definisi pembersih ini lebih baru atau telah diubah. Definisi yang " "membahayakan dapat merusak sistem anda. Jika anda tidak mempercayai " "perubahan-perubahan ini, hapus berkas-berkas atau keluar." #: ../bleachbit/RecognizeCleanerML.py:88 msgctxt "column_label" msgid "Delete" msgstr "Hapus" #: ../bleachbit/RecognizeCleanerML.py:93 msgctxt "column_label" msgid "Filename" msgstr "Nama berkas" #. TRANSLATORS: This indicates an error. The special keyword #. %(operation)s will be replaced by 'firefox' or 'opera' or #. some other cleaner ID. The special keyword %(msg)s will be #. replaced by a message such as 'Permission denied.' #: ../bleachbit/Worker.py:74 #, python-format msgid "Exception while running operation '%(operation)s': '%(msg)s'" msgstr "Pengecualian selagi menjalankan operasi '%(operation)s': '%(msg)s'" #. TRANSLATORS: 'free' means 'unallocated' #: ../bleachbit/Worker.py:182 msgid "Please wait. Wiping free disk space." msgstr "Silakan tunggu. Sedang menyapu ruang kosong pada disk." #. TRANSLATORS: %s is replaced with Firefox, System, etc. #: ../bleachbit/Worker.py:184 ../bleachbit/Worker.py:332 #, python-format msgid "Please wait. Cleaning %s." msgstr "Silakan tunggu. Sedang membersikan %s." #: ../bleachbit/Worker.py:199 msgid "Please wait. Wiping file system metadata." msgstr "Silakan tunggu. Sedang menyapu metadata sistem berkas." #: ../bleachbit/Worker.py:202 msgid "Please wait. Cleaning up after wiping file system metadata." msgstr "" "Silakan tunggu. Sedang membersihkan setelah menyapu metadata sistem berkas." #: ../bleachbit/Worker.py:205 #, python-format msgid "About %d minute remaining." msgid_plural "About %d minutes remaining." msgstr[0] "Sekitar %d menit tersisa." #. TRANSLATORS: This refers to disk space that was #. really recovered (in other words, not a preview) #: ../bleachbit/Worker.py:272 #, python-format msgid "Disk space recovered: %s" msgstr "Ruang disk yang sudah dipulihkan: %s" #. TRANSLATORS: This refers to a preview (no real #. changes were made yet) #: ../bleachbit/Worker.py:276 #, python-format msgid "Disk space to be recovered: %s" msgstr "Ruang disk yang akan dipulihkan: %s" #. TRANSLATORS: This refers to the number of files really #. deleted (in other words, not a preview). #: ../bleachbit/Worker.py:281 #, python-format msgid "Files deleted: %d" msgstr "Berkas-berkas sudah dihapus: %d" #. TRANSLATORS: This refers to the number of files that #. would be deleted (in other words, simply a preview). #: ../bleachbit/Worker.py:285 #, python-format msgid "Files to be deleted: %d" msgstr "Berkas-berkas yang akan dihapus: %d" #: ../bleachbit/Worker.py:288 #, python-format msgid "Special operations: %d" msgstr "Operasi khusus: %d" #: ../bleachbit/Worker.py:291 #, python-format msgid "Errors: %d" msgstr "Kesalahan: %d" #. TRANSLATORS: The "deep scan" feature searches over broad #. areas of the file system such as the user's whole home directory #. or all the system executables. #: ../bleachbit/Worker.py:306 msgid "Please wait. Running deep scan." msgstr "Silahkan tunggu. Sedang menjalankan pemindai secara mendalam." #. TRANSLATORS: %s is replaced with Firefox, System, etc. #: ../bleachbit/Worker.py:335 #, python-format msgid "Please wait. Previewing %s." msgstr "Silahkan tunggu. Sedang pratinjau %s." #: ../bleachbit/Update.py:80 msgid "New winapp2.ini was downloaded." msgstr "winapp2.ini yang baru sudah didownload." #: ../bleachbit/Update.py:125 msgid "Update BleachBit" msgstr "Perbaharui BleachBit" #: ../bleachbit/Update.py:130 msgid "A new version is available." msgstr "Sebuah versi terbaru telah tersedia." #. TRANSLATORS: %s expands to version such as '0.8.4' or '0.8.5beta' or #. similar #: ../bleachbit/Update.py:139 #, python-format msgid "Update to version %s" msgstr "Perbarui ke versi %s" #: ../bleachbit/Update.py:164 #, python-format msgid "" "Error when opening a network connection to %s to check for updates. Please " "verify the network is working." msgstr "" "Kesalahan saat membuka koneksi jaringan ke %s untuk memeriksa pembaruan. " "Verifikasikan bahwa jaringan sedang bekerja." #: ../bleachbit/CLI.py:106 #, python-format msgid "not a valid cleaner: %s" msgstr "pembersih yang tidak valid: %s" #. TRANSLATORS: This is the command line usage. Don't translate #. %prog, but do translate usage, options, cleaner, and option. #. More information about the command line is here #. https://www.bleachbit.org/documentation/command-line #: ../bleachbit/CLI.py:133 msgid "usage: %prog [options] cleaner.option1 cleaner.option2" msgstr "penggunaan: %prog [opsi] cleaner.pilihan1 cleaner.pilihan2" #: ../bleachbit/CLI.py:136 msgid "list cleaners" msgstr "Daftar pembersih" #. TRANSLATORS: predefined cleaners are for applications, such as Firefox and Flash. #. This is different than cleaning an arbitrary file, such as a #. spreadsheet on the desktop. #: ../bleachbit/CLI.py:141 msgid "run cleaners to delete files and make other permanent changes" msgstr "" "jalankan pembersih untuk menghapus berkas dan membuat perubahan permanen lain" #: ../bleachbit/CLI.py:144 msgid "shred specific files or folders" msgstr "iris berkas atau folder tertentu" #: ../bleachbit/CLI.py:146 msgid "show system information" msgstr "tampilkan informasi sistem" #: ../bleachbit/CLI.py:148 msgid "launch the graphical interface" msgstr "luncurkan antarmuka grafis" #: ../bleachbit/CLI.py:152 msgid "do not prompt for administrator privileges" msgstr "jangan meminta untuk hak administrator" #: ../bleachbit/CLI.py:157 msgid "preview files to be deleted and other changes" msgstr "pratinjau berkas-berkas yang akan dihapus dan perubahan lainnya" #: ../bleachbit/CLI.py:161 msgid "use options set in the graphical interface" msgstr "gunakan opsi yang diatur dalam antarmuka grafis" #: ../bleachbit/CLI.py:164 msgid "update winapp2.ini, if a new version is available" msgstr "perbaharui winapp2.ini, jika versi baru tersedia" #: ../bleachbit/CLI.py:166 msgid "output version information and exit" msgstr "keluarkan informasi versi dan keluar" #: ../bleachbit/CLI.py:168 msgid "overwrite files to hide contents" msgstr "Timpa berkas-berkas untuk sembunyikan konten" #. TRANSLATORS: this is the context menu #: ../bleachbit/Action.py:382 ../bleachbit/GUI.py:632 msgid "Clean" msgstr "Bersihkan" #: ../bleachbit/Action.py:418 #, python-format msgid "Run external command: %s" msgstr "Jalankan perintah eksternal: %s" #: ../bleachbit/GUI.py:135 ../bleachbit/GuiPreferences.py:296 msgid "Name" msgstr "Nama" #: ../bleachbit/GUI.py:143 msgid "Active" msgstr "Aktif" #. TRANSLATORS: Size is the label for the column that shows how #. much space an option would clean or did clean #: ../bleachbit/GUI.py:155 msgid "Size" msgstr "Ukuran" #. TRANSLATORS: %(cleaner) may be Firefox, System, etc. #. %(option) may be cache, logs, cookies, etc. #. %(warning) may be 'This option is really slow' #: ../bleachbit/GUI.py:186 #, python-format msgid "" "Warning regarding %(cleaner)s - %(option)s:\n" "\n" "%(warning)s" msgstr "" "Peringatan tentang %(cleaner)s - %(option)s:\n" "\n" "%(warning)s" #: ../bleachbit/GUI.py:372 msgid "You must select an operation" msgstr "Anda harus memilih operasi" #: ../bleachbit/GUI.py:391 ../bleachbit/GUI.py:413 msgid "Done." msgstr "Selesai." #: ../bleachbit/GUI.py:426 msgid "Program to clean unnecessary files" msgstr "Program untuk membersihkan berkas-berkas yang tidak diperlukan" #: ../bleachbit/GUI.py:436 msgid "" "GNU General Public License version 3 or later.\n" "See http://www.gnu.org/licenses/gpl-3.0.txt" msgstr "" "GNU General Public License versi 3 atau lebih.\n" "Lihat http://www.gnu.org/licenses/gpl-3.0.txt" #. TRANSLATORS: Maintain the names of translators here. #. Launchpad does this automatically for translations #. typed in Launchpad. This is a special string shown #. in the 'About' box. #: ../bleachbit/GUI.py:442 msgid "translator-credits" msgstr "" "Launchpad Contributions:\n" " Abdul Munif Hanafi https://launchpad.net/~nafica-coroz\n" " Andika Triwidada https://launchpad.net/~andika\n" " Ari Setyo Wibowo https://launchpad.net/~ari-el-uno\n" " Ferri Fakhruzi https://launchpad.net/~ferridom\n" " Ivan S. https://launchpad.net/~freeazy\n" " Muhammad Radifar https://launchpad.net/~m-radifar05\n" " Ramdhani Fathurrohman https://launchpad.net/~dhani-fathur\n" " Trisno Pamuji https://launchpad.net/~tri.snowman\n" " Waluyo Adi Siswanto https://launchpad.net/~was-wlk\n" " Wiliams Andrian https://launchpad.net/~saviour" #: ../bleachbit/GUI.py:454 msgid "System information" msgstr "Informasi sistem" #: ../bleachbit/GUI.py:527 msgid "Choose files to shred" msgstr "Pilih berkas-berkas yang akan di sobek" #: ../bleachbit/GUI.py:530 msgid "Choose folder to shred" msgstr "Pilih folder yang akan di sobek" #: ../bleachbit/GUI.py:594 ../bleachbit/GuiPreferences.py:197 #: ../bleachbit/GuiPreferences.py:326 ../bleachbit/GuiPreferences.py:367 msgid "Choose a folder" msgstr "Pilih folder" #. TRANSLATORS: this is the context menu #: ../bleachbit/GUI.py:627 msgid "Preview" msgstr "Pratinjau" #: ../bleachbit/GUI.py:734 msgid "_Shred Files" msgstr "_Sobek berkas-berkas" #: ../bleachbit/GUI.py:736 msgid "Sh_red Folders" msgstr "Folder Teriris" #: ../bleachbit/GUI.py:738 msgid "_Wipe Free Space" msgstr "_Bersihkan Ruang Kosong" #: ../bleachbit/GUI.py:740 msgid "S_hred Settings and Quit" msgstr "Pengaturan S_hred dan Keluar" #: ../bleachbit/GUI.py:742 msgid "_Quit" msgstr "_Keluar" #: ../bleachbit/GUI.py:744 msgid "_File" msgstr "_Berkas" #: ../bleachbit/GUI.py:746 ../bleachbit/GuiPreferences.py:58 msgid "Preferences" msgstr "Preferensi" #: ../bleachbit/GUI.py:747 msgid "_Edit" msgstr "_Ubah" #: ../bleachbit/GUI.py:748 msgid "Help Contents" msgstr "Konten Bantuan" #: ../bleachbit/GUI.py:751 msgid "_Release Notes" msgstr "_Catatan keluaran" #: ../bleachbit/GUI.py:754 msgid "_System Information" msgstr "_Informasi Sistem" #: ../bleachbit/GUI.py:757 msgid "_About" msgstr "_Tentang" #: ../bleachbit/GUI.py:758 msgid "_Help" msgstr "_Bantuan" #: ../bleachbit/GUI.py:783 msgctxt "button" msgid "Preview" msgstr "Pratinjau" #: ../bleachbit/GUI.py:788 msgid "Preview files in the selected operations (without deleting any files)" msgstr "" "Pratinjau berkas-berkas pada operasi yang dipilih (tanpa menghapus berkas-" "berkas apapun)" #: ../bleachbit/GUI.py:798 msgctxt "button" msgid "Clean" msgstr "Bersihkan" #: ../bleachbit/GUI.py:802 msgid "Clean files in the selected operations" msgstr "Bersihkan berkas dalam operasi yang dipilih" #: ../bleachbit/GUI.py:893 msgid "Error when checking for updates: " msgstr "Gagal ketika memeriksa pembaruan: " #: ../bleachbit/GUI.py:932 msgid "" "Error loading the SQLite module: the antivirus software may be blocking it." msgstr "" "Gagal memuat modul SQLite: perangkat lunak anti virus mungkin membloknya." #: ../bleachbit/GUI.py:935 msgid "" "You are running BleachBit with administrative privileges for cleaning shared " "parts of the system, and references to the user profile folder will clean " "only the root account." msgstr "" "Anda sedang menjalankan BleachBit dengan hak administratif untuk " "membersihkan bagian sistem yang dipakai bersama, dan acuan ke folder profil " "pengguna hanya akan membersihkan akun root." #: ../bleachbit/GUI.py:940 msgid "" "Run BleachBit with administrator privileges to improve the accuracy of " "overwriting the contents of files." msgstr "" "Jalankan BleachBit dengan hak administrator untuk memperbaiki akurasi dari " "penimpaan isi berkas." #: ../bleachbit/GuiPreferences.py:64 msgid "General" msgstr "Umum" #: ../bleachbit/GuiPreferences.py:67 msgid "Drives" msgstr "Drives" #: ../bleachbit/GuiPreferences.py:70 msgid "Languages" msgstr "Bahasa" #: ../bleachbit/GuiPreferences.py:72 msgid "Whitelist" msgstr "Daftar putih" #: ../bleachbit/GuiPreferences.py:117 msgid "Check periodically for software updates via the Internet" msgstr "Periksa secara berkala pembaruan perangkat lunak melalui Internet" #: ../bleachbit/GuiPreferences.py:122 msgid "" "If an update is found, you will be given the option to view information " "about it. Then, you may manually download and install the update." msgstr "" "Jika sebuah pembaruan ditemukan, Anda akan diberikan opsi untuk melihat " "informasi tentang hal ini. Kemudian, Anda boleh secara manual mengunduh dan " "memasang pembaruan." #: ../bleachbit/GuiPreferences.py:128 msgid "Check for new beta releases" msgstr "Periksa untuk rilis beta baru" #: ../bleachbit/GuiPreferences.py:137 msgid "Download and update cleaners from community (winapp2.ini)" msgstr "Unduh dan perbaharui pembersih dari komunitas (winapp2.ini)" #. TRANSLATORS: This means to hide cleaners which would do #. nothing. For example, if Firefox were never used on #. this system, this option would hide Firefox to simplify #. the list of cleaners. #: ../bleachbit/GuiPreferences.py:151 msgid "Hide irrelevant cleaners" msgstr "Sembunyikan pembersih yang tak relevan" #. TRANSLATORS: Overwriting is the same as shredding. It is a way #. to prevent recovery of the data. You could also translate #. 'Shred files to prevent recovery.' #: ../bleachbit/GuiPreferences.py:159 msgid "Overwrite contents of files to prevent recovery" msgstr "Timpa ini berkas untuk mencegah pemulihan" #: ../bleachbit/GuiPreferences.py:163 msgid "" "Overwriting is ineffective on some file systems and with certain BleachBit " "operations. Overwriting is significantly slower." msgstr "" "Menimpa itu tidak efektif pada beberapa sistem berkas dan dengan operasi " "BleachBit tertentu. Menimpa itu melambat secara signifikan." #: ../bleachbit/GuiPreferences.py:166 msgid "Start BleachBit with computer" msgstr "Mulai BleachBit dengan komputer" #: ../bleachbit/GuiPreferences.py:172 msgid "Exit after cleaning" msgstr "Keluar setelah pembersihan" #: ../bleachbit/GuiPreferences.py:178 msgid "Confirm before delete" msgstr "Konfirmasi sebelum menghapus" #: ../bleachbit/GuiPreferences.py:186 msgid "Use IEC sizes (1 KiB = 1024 bytes) instead of SI (1 kB = 1000 bytes)" msgstr "Gunakan ukuran IEC (1 KiB = 1024 bytes) bukan SI (1 kB = 1000 bytes)" #: ../bleachbit/GuiPreferences.py:221 msgid "" "Choose a writable folder for each drive for which to overwrite free space." msgstr "" "Pilih folder yang dapat ditulis untuk tiap drive yang akan ditimpa pada " "ruang kosong." #. TRANSLATORS: In the preferences dialog, this button adds a path to #. the list of paths #: ../bleachbit/GuiPreferences.py:243 msgctxt "button" msgid "Add" msgstr "Tambah" #. TRANSLATORS: In the preferences dialog, this button removes a path #. from the list of paths #: ../bleachbit/GuiPreferences.py:247 ../bleachbit/GuiPreferences.py:458 msgctxt "button" msgid "Remove" msgstr "Buang" #: ../bleachbit/GuiPreferences.py:272 msgid "All languages will be deleted except those checked." msgstr "Semua bahasa akan di hapus kecuali yang di centang." #: ../bleachbit/GuiPreferences.py:288 msgid "Preserve" msgstr "Dipelihara" #: ../bleachbit/GuiPreferences.py:292 msgid "Code" msgstr "Kode" #: ../bleachbit/GuiPreferences.py:313 ../bleachbit/GuiPreferences.py:354 msgid "Choose a file" msgstr "Pilih berkas" #: ../bleachbit/GuiPreferences.py:320 ../bleachbit/GuiPreferences.py:361 #: ../bleachbit/GuiPreferences.py:405 msgid "File" msgstr "Berkas" #: ../bleachbit/GuiPreferences.py:334 ../bleachbit/GuiPreferences.py:375 #: ../bleachbit/GuiPreferences.py:407 msgid "Folder" msgstr "Folder" #: ../bleachbit/GuiPreferences.py:417 msgid "Theses paths will not be deleted or modified." msgstr "Lokasi ini tidak akan dihapus atau dirubah." #: ../bleachbit/GuiPreferences.py:420 msgid "These locations can be selected for deletion." msgstr "Lokasi ini dapat dipilih untuk dihapus." #: ../bleachbit/GuiPreferences.py:428 msgid "Type" msgstr "Jenis" #. TRANSLATORS: In the tree view "Path" is used generically to refer to a #. file, a folder, or a pattern describing either #: ../bleachbit/GuiPreferences.py:434 msgid "Path" msgstr "Lokasi" #: ../bleachbit/GuiPreferences.py:446 msgctxt "button" msgid "Add file" msgstr "Tambah berkas" #: ../bleachbit/GuiPreferences.py:452 msgctxt "button" msgid "Add folder" msgstr "Tambah folder" bleachbit-2.0/po/es.po0000644000175000017500000014105213245436307012771 0ustar hlehle# Translation file for BleachBit # Copyright (C) 2009 Andrew Ziem # This file is distributed under the same license as the BleachBit package. # Andrew Ziem, 2009 # msgid "" msgstr "" "Project-Id-Version: bleachbit\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2017-02-11 11:12-0700\n" "PO-Revision-Date: 2017-12-12 11:50+0000\n" "Last-Translator: William Beltrán \n" "Language-Team: Spanish \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n != 1;\n" "X-Launchpad-Export-Date: 2017-12-13 04:48+0000\n" "X-Generator: Launchpad (build 18511)\n" #: ../cleaners/mc.xml ../cleaners/tortoisesvn.xml ../cleaners/vim.xml #: ../cleaners/safari.xml ../cleaners/links2.xml ../cleaners/seamonkey.xml #: ../cleaners/realplayer.xml ../cleaners/windows_defender.xml #: ../cleaners/d4x.xml ../cleaners/sqlite3.xml #: ../cleaners/internet_explorer.xml ../cleaners/libreoffice.xml #: ../cleaners/easytag.xml ../cleaners/bash.xml ../cleaners/nautilus.xml #: ../cleaners/octave.xml ../cleaners/elinks.xml ../cleaners/chromium.xml #: ../cleaners/google_chrome.xml msgid "History" msgstr "Historial" #: ../cleaners/mc.xml ../cleaners/tortoisesvn.xml ../cleaners/links2.xml #: ../cleaners/realplayer.xml ../cleaners/d4x.xml ../cleaners/libreoffice.xml #: ../cleaners/easytag.xml ../cleaners/nautilus.xml ../cleaners/gnome.xml #: ../bleachbit/Cleaner.py:349 ../bleachbit/Cleaner.py:423 #: ../bleachbit/Cleaner.py:432 msgid "Delete the usage history" msgstr "Eliminar el uso del historial" #: ../cleaners/gpodder.xml ../cleaners/hippo_opensim_viewer.xml #: ../cleaners/thumbnails.xml ../cleaners/safari.xml ../cleaners/emesene.xml #: ../cleaners/liferea.xml ../cleaners/seamonkey.xml ../cleaners/vuze.xml #: ../cleaners/yahoo_messenger.xml ../cleaners/pidgin.xml #: ../cleaners/adobe_reader.xml ../cleaners/evolution.xml #: ../cleaners/tremulous.xml ../cleaners/libreoffice.xml ../cleaners/xine.xml #: ../cleaners/nexuiz.xml ../cleaners/exaile.xml ../cleaners/opera.xml #: ../cleaners/amsn.xml ../cleaners/gftp.xml ../cleaners/miro.xml #: ../cleaners/beagle.xml ../cleaners/kde.xml ../cleaners/epiphany.xml #: ../cleaners/flash.xml ../cleaners/secondlife_viewer.xml ../cleaners/java.xml #: ../cleaners/chromium.xml ../cleaners/audacious.xml ../cleaners/rhythmbox.xml #: ../cleaners/google_chrome.xml ../cleaners/thunderbird.xml #: ../bleachbit/Cleaner.py:192 ../bleachbit/Cleaner.py:370 #: ../bleachbit/Cleaner.py:455 msgid "Cache" msgstr "Caché" #: ../cleaners/gpodder.xml ../cleaners/yum.xml #: ../cleaners/hippo_opensim_viewer.xml ../cleaners/thumbnails.xml #: ../cleaners/windows_explorer.xml ../cleaners/liferea.xml #: ../cleaners/vuze.xml ../cleaners/yahoo_messenger.xml ../cleaners/pidgin.xml #: ../cleaners/adobe_reader.xml ../cleaners/evolution.xml #: ../cleaners/libreoffice.xml ../cleaners/apt.xml ../cleaners/xine.xml #: ../cleaners/nexuiz.xml ../cleaners/exaile.xml ../cleaners/amsn.xml #: ../cleaners/gftp.xml ../cleaners/miro.xml ../cleaners/beagle.xml #: ../cleaners/kde.xml ../cleaners/flash.xml ../cleaners/secondlife_viewer.xml #: ../cleaners/java.xml ../cleaners/audacious.xml ../cleaners/rhythmbox.xml #: ../bleachbit/Cleaner.py:370 ../bleachbit/Cleaner.py:455 #: ../bleachbit/Cleaner.py:489 ../bleachbit/Cleaner.py:491 msgid "Delete the cache" msgstr "Eliminar caché" #. TRANSLATORS: Vacuum is a verb. The term is jargon #. from the SQLite database. Microsoft Access uses #. the term 'Compact Database' (which you may translate #. instead). Another synonym is 'defragment.' #: ../cleaners/gpodder.xml ../cleaners/yum.xml ../cleaners/safari.xml #: ../cleaners/liferea.xml ../cleaners/chromium.xml #: ../cleaners/google_chrome.xml ../cleaners/thunderbird.xml #: ../bleachbit/Cleaner.py:214 ../bleachbit/Cleaner.py:360 #: ../bleachbit/Action.py:445 msgid "Vacuum" msgstr "Compactar" #: ../cleaners/gpodder.xml ../cleaners/yum.xml ../cleaners/safari.xml #: ../cleaners/liferea.xml ../cleaners/chromium.xml #: ../cleaners/google_chrome.xml ../cleaners/thunderbird.xml #: ../bleachbit/Cleaner.py:215 msgid "" "Clean database fragmentation to reduce space and improve speed without " "removing any data" msgstr "" "Limpiar la fragmentación de la base de datos para reducir el espacio y " "mejorar la velocidad sin eliminar ningún dato" #: ../cleaners/yum.xml ../cleaners/apt.xml msgid "Package manager" msgstr "Gestor de paquetes" #: ../cleaners/warzone2100.xml ../cleaners/hippo_opensim_viewer.xml #: ../cleaners/gl-117.xml ../cleaners/tremulous.xml ../cleaners/nexuiz.xml #: ../cleaners/secondlife_viewer.xml msgid "Game" msgstr "Juego" #: ../cleaners/warzone2100.xml ../cleaners/hippo_opensim_viewer.xml #: ../cleaners/teamviewer.xml ../cleaners/realplayer.xml ../cleaners/vuze.xml #: ../cleaners/yahoo_messenger.xml ../cleaners/amule.xml #: ../cleaners/easytag.xml ../cleaners/exaile.xml ../cleaners/screenlets.xml #: ../cleaners/gftp.xml ../cleaners/miro.xml ../cleaners/audacious.xml #: ../bleachbit/Cleaner.py:486 msgid "Logs" msgstr "Registros" #: ../cleaners/warzone2100.xml ../cleaners/hippo_opensim_viewer.xml #: ../cleaners/teamviewer.xml ../cleaners/realplayer.xml ../cleaners/vuze.xml #: ../cleaners/yahoo_messenger.xml ../cleaners/amule.xml ../cleaners/exaile.xml #: ../cleaners/screenlets.xml ../cleaners/gftp.xml ../cleaners/miro.xml #: ../cleaners/audacious.xml ../bleachbit/Cleaner.py:486 msgid "Delete the logs" msgstr "Eliminar los registros" #: ../cleaners/thumbnails.xml ../cleaners/windows_explorer.xml msgid "Thumbnails" msgstr "Miniaturas" #: ../cleaners/thumbnails.xml msgid "Icons for files on the system" msgstr "Iconos de archivos del sistema" #: ../cleaners/vim.xml ../cleaners/gedit.xml msgid "Editor" msgstr "Editor" #: ../cleaners/vim.xml msgid "" "Delete ~/.viminfo which includes file history, command history, and buffers" msgstr "" "Eliminar ~/.viminfo que incluye el historial de archivos, el historial de " "órdenes y la memoria intermedia" #: ../cleaners/filezilla.xml ../cleaners/transmission.xml ../cleaners/vuze.xml #: ../cleaners/amule.xml ../cleaners/gftp.xml msgid "File transfer client" msgstr "Cliente de transferencia de archivos" #: ../cleaners/filezilla.xml ../cleaners/paint.xml #: ../cleaners/windows_media_player.xml ../cleaners/windows_explorer.xml #: ../cleaners/teamviewer.xml ../cleaners/microsoft_office.xml #: ../cleaners/vlc.xml ../cleaners/adobe_reader.xml ../cleaners/winamp.xml #: ../cleaners/winzip.xml ../cleaners/winrar.xml ../cleaners/audacious.xml #: ../cleaners/wordpad.xml ../bleachbit/Cleaner.py:371 msgid "Most recently used" msgstr "Elementos utilizados recientemente" #: ../cleaners/filezilla.xml ../cleaners/windows_explorer.xml #: ../cleaners/gwenview.xml ../cleaners/adobe_reader.xml ../cleaners/gedit.xml #: ../cleaners/kde.xml ../cleaners/audacious.xml ../bleachbit/Cleaner.py:372 #: ../bleachbit/Cleaner.py:469 msgid "Delete the list of recently used documents" msgstr "Eliminar la lista de elementos utilizados recientemente" #: ../cleaners/skype.xml ../cleaners/emesene.xml #: ../cleaners/yahoo_messenger.xml ../cleaners/pidgin.xml ../cleaners/amsn.xml msgid "Chat client" msgstr "Cliente de charla" #: ../cleaners/skype.xml ../cleaners/hexchat.xml ../cleaners/emesene.xml #: ../cleaners/seamonkey.xml ../cleaners/yahoo_messenger.xml #: ../cleaners/pidgin.xml ../cleaners/amsn.xml msgid "Chat logs" msgstr "Registros de charlas" #: ../cleaners/skype.xml ../cleaners/hexchat.xml ../cleaners/emesene.xml #: ../cleaners/seamonkey.xml ../cleaners/yahoo_messenger.xml #: ../cleaners/pidgin.xml ../cleaners/amsn.xml msgid "Delete the chat logs" msgstr "Eliminar los registros de charlas" #: ../cleaners/skype.xml msgid "Installers" msgstr "Instaladores" #: ../cleaners/skype.xml msgid "Delete cached patches and installers" msgstr "Eliminar parches e instaladores almacenados en caché" #: ../cleaners/hexchat.xml msgid "IRC client formerly known as XChat" msgstr "Cliente de IRC conocido anteriormente como XChat" #: ../cleaners/safari.xml ../cleaners/links2.xml ../cleaners/seamonkey.xml #: ../cleaners/konqueror.xml ../cleaners/internet_explorer.xml #: ../cleaners/opera.xml ../cleaners/epiphany.xml ../cleaners/elinks.xml #: ../cleaners/chromium.xml ../cleaners/google_chrome.xml #: ../bleachbit/Cleaner.py:226 msgid "Web browser" msgstr "Navegador web" #: ../cleaners/safari.xml ../cleaners/seamonkey.xml ../cleaners/opera.xml #: ../cleaners/epiphany.xml ../cleaners/chromium.xml #: ../cleaners/google_chrome.xml ../cleaners/thunderbird.xml #: ../bleachbit/Cleaner.py:193 msgid "Delete the web cache, which reduces time to display revisited pages" msgstr "" "Eliminar caché web, la cual reduce el tiempo para cargar páginas ya visitadas" #: ../cleaners/safari.xml ../cleaners/liferea.xml ../cleaners/seamonkey.xml #: ../cleaners/realplayer.xml ../cleaners/konqueror.xml #: ../cleaners/internet_explorer.xml ../cleaners/opera.xml #: ../cleaners/epiphany.xml ../cleaners/flash.xml ../cleaners/silverlight.xml #: ../cleaners/chromium.xml ../cleaners/google_chrome.xml #: ../cleaners/thunderbird.xml ../bleachbit/Cleaner.py:194 msgid "Cookies" msgstr "Cookies" #: ../cleaners/safari.xml ../cleaners/liferea.xml ../cleaners/seamonkey.xml #: ../cleaners/realplayer.xml ../cleaners/konqueror.xml #: ../cleaners/internet_explorer.xml ../cleaners/opera.xml #: ../cleaners/epiphany.xml ../cleaners/flash.xml ../cleaners/silverlight.xml #: ../cleaners/chromium.xml ../cleaners/google_chrome.xml #: ../cleaners/thunderbird.xml ../bleachbit/Cleaner.py:195 msgid "" "Delete cookies, which contain information such as web site preferences, " "authentication, and tracking identification" msgstr "" "Eliminar las cookies, que contienen la información como preferencias de " "sitios web, autenticación, e identificación de rastreo" #: ../cleaners/safari.xml ../cleaners/konqueror.xml #: ../cleaners/internet_explorer.xml ../cleaners/opera.xml #: ../bleachbit/Cleaner.py:213 msgid "List of visited web pages" msgstr "Lista de páginas visitadas" #. Torrent software can block a list of IP addresses, such as those that may belong to malware or anti-piracy organizations #: ../cleaners/transmission.xml msgid "Blocklists" msgstr "Listas de el bloqueo" #: ../cleaners/transmission.xml ../cleaners/windows_defender.xml #: ../cleaners/beagle.xml ../cleaners/thunderbird.xml ../cleaners/deepscan.xml #: ../bleachbit/Cleaner.py:197 msgid "Delete the files" msgstr "Eliminar los archivos" #: ../cleaners/transmission.xml msgid "Blocklists will need update to work." msgstr "Las listas de bloqueo necesitarán actualizarse para funcionar." #: ../cleaners/transmission.xml msgid "Torrents" msgstr "Torrents" #: ../cleaners/transmission.xml msgid "Delete the torrents (just the metadata but not the files described)" msgstr "" "Eliminar los torrents (únicamente los metadatos, no los archivos descritos " "en ellos)" #: ../cleaners/transmission.xml msgid "Statistics" msgstr "Estadísticas" #: ../cleaners/transmission.xml msgid "Delete the file" msgstr "Eliminar el archivo" #: ../cleaners/paint.xml ../cleaners/windows_media_player.xml #: ../cleaners/windows_explorer.xml ../cleaners/teamviewer.xml #: ../cleaners/microsoft_office.xml ../cleaners/vlc.xml ../cleaners/winamp.xml #: ../cleaners/winzip.xml ../cleaners/winrar.xml ../cleaners/wordpad.xml msgid "Delete the most recently used list" msgstr "Eliminar lista de elementos recientes" #: ../cleaners/emesene.xml msgid "Delete the avatars and emoticons cache" msgstr "Eliminar avatares y emoticonos en caché" #: ../cleaners/windows_media_player.xml ../cleaners/realplayer.xml #: ../cleaners/vlc.xml ../cleaners/winamp.xml msgid "Media player" msgstr "Reproductor multimedia" #: ../cleaners/windows_explorer.xml ../cleaners/nautilus.xml msgid "File manager" msgstr "Gestor de archivos" #: ../cleaners/windows_explorer.xml ../cleaners/gwenview.xml #: ../cleaners/gedit.xml ../cleaners/kde.xml ../bleachbit/Cleaner.py:468 #: ../bleachbit/Cleaner.py:663 msgid "Recent documents list" msgstr "Lista de documentos recientes" #: ../cleaners/windows_explorer.xml msgid "" "This option will reset pinned locations in Quick Access to their defaults." msgstr "" "Esta opción restablecerá las ubicaciones ancladas en Acceso rápido a sus " "valores predeterminados." #. In Windows 'Run' is the dialog in the Start menu #. In GNOME 'Run' is the dialog shown when typing ALT+F2' #: ../cleaners/windows_explorer.xml ../cleaners/gnome.xml msgid "Run" msgstr "Ejecutar" #: ../cleaners/windows_explorer.xml ../cleaners/opera.xml ../cleaners/gnome.xml #: ../cleaners/google_toolbar.xml msgid "Search history" msgstr "Historial de búsqueda" #: ../cleaners/windows_explorer.xml ../cleaners/opera.xml ../cleaners/gnome.xml #: ../cleaners/google_toolbar.xml msgid "Delete the search history" msgstr "Eliminar los historiales de búsquedas" #: ../cleaners/windows_explorer.xml msgid "This will restart Windows Explorer." msgstr "Esto reiniciará el Explorador de Windows." #: ../cleaners/gl-117.xml ../cleaners/microsoft_office.xml #: ../cleaners/beagle.xml ../cleaners/secondlife_viewer.xml ../cleaners/x11.xml msgid "Debug logs" msgstr "Registros de depuración" #: ../cleaners/gl-117.xml ../cleaners/microsoft_office.xml #: ../cleaners/easytag.xml ../cleaners/beagle.xml #: ../cleaners/secondlife_viewer.xml ../cleaners/x11.xml msgid "Delete the debug logs" msgstr "Eliminar los registros de depuración" #: ../cleaners/google_earth.xml ../cleaners/winetricks.xml ../cleaners/vuze.xml #: ../cleaners/adobe_reader.xml ../cleaners/amule.xml ../cleaners/wine.xml #: ../cleaners/internet_explorer.xml ../cleaners/gimp.xml ../cleaners/kde.xml #: ../cleaners/deepscan.xml ../bleachbit/Cleaner.py:520 msgid "Temporary files" msgstr "Archivos temporales" #: ../cleaners/google_earth.xml ../cleaners/winetricks.xml ../cleaners/vuze.xml #: ../cleaners/adobe_reader.xml ../cleaners/amule.xml ../cleaners/wine.xml #: ../cleaners/internet_explorer.xml ../cleaners/gimp.xml ../cleaners/kde.xml #: ../cleaners/deepscan.xml ../bleachbit/Cleaner.py:520 msgid "Delete the temporary files" msgstr "Eliminar los archivos temporales" #: ../cleaners/seamonkey.xml ../cleaners/opera.xml ../bleachbit/Cleaner.py:201 msgid "Download history" msgstr "Historial de descargas" #: ../cleaners/seamonkey.xml ../cleaners/opera.xml ../bleachbit/Cleaner.py:201 msgid "List of files downloaded" msgstr "Lista de archivos descargados" #: ../cleaners/seamonkey.xml msgid "Delete the list of visited web pages" msgstr "Eliminar la lista de páginas web visitadas" #: ../cleaners/vuze.xml ../cleaners/deepscan.xml ../bleachbit/Cleaner.py:190 msgid "Backup files" msgstr "Respaldar los archivos" #: ../cleaners/vuze.xml ../cleaners/deepscan.xml ../bleachbit/Cleaner.py:191 msgid "Delete the backup files" msgstr "Eliminar los archivos de respaldo" #: ../cleaners/konqueror.xml ../cleaners/opera.xml ../cleaners/chromium.xml msgid "Current session" msgstr "Sesión actual" #: ../cleaners/konqueror.xml ../cleaners/opera.xml ../cleaners/chromium.xml msgid "Delete the current session" msgstr "Eliminar la sesión actual" #: ../cleaners/konqueror.xml ../cleaners/opera.xml ../bleachbit/Cleaner.py:213 msgid "URL history" msgstr "Historial de URL" #: ../cleaners/microsoft_office.xml ../cleaners/libreoffice.xml #: ../bleachbit/Cleaner.py:375 msgid "Office suite" msgstr "Paquete de oficina" #: ../cleaners/windows_defender.xml msgid "Anti-virus" msgstr "Anti-virus" #: ../cleaners/journald.xml msgid "System journals" msgstr "Registros de diarios" #: ../cleaners/journald.xml msgid "Clean old system journals" msgstr "Limpiar los registros a diarios los archivos antiguos" #: ../cleaners/adobe_reader.xml msgid "Document viewer" msgstr "Visor de documento" #: ../cleaners/evolution.xml ../cleaners/thunderbird.xml msgid "Email client" msgstr "Cliente de correo" #: ../cleaners/tremulous.xml msgid "Delete the list of game servers" msgstr "Eliminar la lista de los servidores del juegos" #: ../cleaners/sqlite3.xml ../cleaners/bash.xml ../cleaners/octave.xml msgid "Delete the command history" msgstr "Eliminar el historial de comandos" #: ../cleaners/wine.xml msgid "Compatibility layer for Windows software" msgstr "capacidad de compartir software de Windows" #: ../cleaners/internet_explorer.xml ../cleaners/chromium.xml #: ../cleaners/google_chrome.xml ../bleachbit/Cleaner.py:202 msgid "Form history" msgstr "Historial de formularios" #: ../cleaners/internet_explorer.xml ../bleachbit/Cleaner.py:203 msgid "A history of forms entered in web sites and in the Search bar" msgstr "" "Un historial de formularios introducidos en sitios web y en la barra de " "búsqueda" #. This software edits metadata tags, such as title and artist, in audio files #: ../cleaners/easytag.xml msgid "Audio files tagger" msgstr "Etiquetar los archivos de audio" #: ../cleaners/apt.xml msgid "Delete obsolete files" msgstr "Eliminar los archivos obsoletos" #: ../cleaners/apt.xml msgid "Package lists" msgstr "Listado los paquetes" #: ../cleaners/xine.xml ../cleaners/miro.xml ../cleaners/flash.xml msgid "Multimedia viewer" msgstr "Abrir el multimedia" #: ../cleaners/recoll.xml ../cleaners/beagle.xml msgid "Search tool" msgstr "Herramienta de búsqueda" #: ../cleaners/recoll.xml ../cleaners/beagle.xml ../cleaners/thunderbird.xml msgid "Index" msgstr "Inicio" #: ../cleaners/recoll.xml msgid "" "Delete the search index, a database of words and the files they contain" msgstr "" "Eliminar el archivo de las búsqueda de, las palabras de la base de datos y " "los archivos que las contienen." #: ../cleaners/gimp.xml msgid "Graphics editor" msgstr "Editor de gráfico" #: ../cleaners/exaile.xml msgid "Downloaded podcasts" msgstr "Descargargador de Podcasts" #: ../cleaners/exaile.xml msgid "Delete downloaded podcasts" msgstr "Eliminar los podcasts descargados" #: ../cleaners/bash.xml msgid "Shell" msgstr "Intérprete de órdenes" #. TRANSLATORS: DOM = Document Object Model. #: ../cleaners/opera.xml ../cleaners/epiphany.xml ../cleaners/chromium.xml #: ../cleaners/google_chrome.xml ../bleachbit/Cleaner.py:199 msgid "DOM Storage" msgstr "Almacenamiento de DOM" #: ../cleaners/opera.xml ../cleaners/epiphany.xml ../cleaners/chromium.xml #: ../cleaners/google_chrome.xml ../bleachbit/Cleaner.py:199 msgid "Delete HTML5 cookies" msgstr "Eliminar «cookies» de HTML5" #: ../cleaners/opera.xml ../cleaners/epiphany.xml ../cleaners/chromium.xml #: ../cleaners/google_chrome.xml ../cleaners/thunderbird.xml #: ../bleachbit/Cleaner.py:208 msgid "Passwords" msgstr "Contraseñas" #: ../cleaners/opera.xml ../cleaners/epiphany.xml ../cleaners/chromium.xml #: ../cleaners/google_chrome.xml ../cleaners/thunderbird.xml #: ../bleachbit/Cleaner.py:209 msgid "" "A database of usernames and passwords as well as a list of sites that should " "not store passwords" msgstr "" "Base de datos de nombres de usuarios y contraseñas, así como también una " "lista de sitios que no guardan contraseñas" #: ../cleaners/opera.xml ../cleaners/epiphany.xml ../cleaners/chromium.xml #: ../cleaners/google_chrome.xml ../cleaners/thunderbird.xml #: ../bleachbit/Cleaner.py:211 msgid "This option will delete your saved passwords." msgstr "Esta opción eliminará sus contraseñas guardadas." #: ../cleaners/nautilus.xml msgid "Custom folders will be reset." msgstr "Se restablecerán las carpetas personalizadas." #: ../cleaners/gnome.xml ../cleaners/kde.xml msgid "Desktop environment" msgstr "Entorno de escritorio" #: ../cleaners/screenlets.xml msgid "Widgets for the desktop" msgstr "Accesorios para el escritorio" #: ../cleaners/epiphany.xml msgid "Places" msgstr "Sitios" #: ../cleaners/epiphany.xml msgid "" "A database of URLs including bookmarks, favicons, and a history of visited " "web sites" msgstr "" "Una base de datos de URL que incluye marcadores, iconos y el historial de " "sitios visitados" #: ../cleaners/epiphany.xml msgid "This option deletes all bookmarks." msgstr "Esta opción elimina todos los marcadores." #: ../cleaners/winrar.xml msgid "File archiver" msgstr "Archivador" #: ../cleaners/elinks.xml msgid "Delete the cookies, visited URLs, and search history" msgstr "Eliminar las cookies, los URL visitados y el historial de búsquedas" #: ../cleaners/chromium.xml ../cleaners/google_chrome.xml msgid "A history of forms entered in web sites" msgstr "Un historial de formularios introducidos en sitios web" #: ../cleaners/chromium.xml ../cleaners/google_chrome.xml msgid "" "Delete the history which includes visited sites, downloads, and thumbnails" msgstr "" "Eliminar el historial que incluye los sitios visitados, descargas y " "miniaturas" #: ../cleaners/chromium.xml ../cleaners/google_chrome.xml msgid "Search engines" msgstr "Motores de búsqueda" #. 'Factory' means a search engine that is installed by default 'from the factory,' but this is different than a 'default search engine' https://lists.launchpad.net/launchpad-translators/msg00283.html #: ../cleaners/chromium.xml ../cleaners/google_chrome.xml msgid "" "Reset the search engine usage history and delete non-factory search engines, " "some of which are added automatically" msgstr "" "Restablece el historial de motor de búsqueda y elimina motores de búsqueda " "no predeterminados, algunos de ellos añadidos automáticamente" #: ../cleaners/audacious.xml msgid "Audio player" msgstr "Reproductor de audio" #: ../cleaners/rhythmbox.xml msgid "Database" msgstr "Base de datos" #: ../cleaners/rhythmbox.xml msgid "" "Delete the database, which contain information such as play count and last " "played" msgstr "" "Elimina la base de datos, que contiene información como la cantidad de " "reproducciones y los últimos archivos reproducidos" #: ../cleaners/google_chrome.xml msgid "Session" msgstr "Sesión" #: ../cleaners/google_chrome.xml msgid "Delete the current and last sessions" msgstr "Eliminar las últimas sesiones y la actual" #: ../cleaners/x11.xml msgid "Windowing system" msgstr "Sistema de ventanas" #: ../cleaners/wordpad.xml msgid "Word processor" msgstr "Procesador de textos" #: ../cleaners/deepscan.xml msgid "Deep scan" msgstr "Escáner profundo" #: ../cleaners/deepscan.xml msgid "Clean files widely scattered across the disk" msgstr "Limpia ficheros dispersos por el disco" #: ../cleaners/deepscan.xml msgid "Inspect the preview for any files you want to keep." msgstr "" "Inspeccione la previsualización de cualquier archivo que quiera mantener." #: ../cleaners/deepscan.xml msgid "This option is slow." msgstr "Esta opción es lenta." #: ../bleachbit.desktop msgid "Unnecessary file cleaner" msgstr "Limpiador de archivos innecesarios" #: ../bleachbit.desktop msgid "Free space and maintain privacy" msgstr "Libere espacio y mantenga su privacidad" #: ../bleachbit/FileUtilities.py:668 msgid "" "There was at least one file on a file system that does not support advanced " "overwriting." msgstr "" "Hubo al menos un fichero en un sistema de fichero que no es compatible para " "sobrescrituras avanzadas." #: ../bleachbit/Unix.py:574 #, python-format msgid "Executable not found: %s" msgstr "Ejecutable no encontrado: %s" #. TRANSLATORS: %s expands to a name such as 'Firefox' or 'System'. #: ../bleachbit/Unix.py:623 ../bleachbit/Worker.py:136 #, python-format msgid "" "%s cannot be cleaned because it is currently running. Close it, and try " "again." msgstr "" "%s no puede limpiarse porque está ejecutándose actualmente. Ciérrelo e " "inténtelo de nuevo." #: ../bleachbit/GuiBasic.py:112 msgid "Delete confirmation" msgstr "Confirmación para eliminar" #: ../bleachbit/GuiBasic.py:122 msgid "" "Are you sure you want to permanently delete files according to the selected " "operations? The actual files that will be deleted may have changed since " "you ran the preview." msgstr "" "¿Quiere eliminar permanentemente los archivos de acuerdo a las operaciones " "seleccionadas? Los archivos actuales que se eliminarán podrían haber " "cambiado desde que se ejecutó la previsualización." #: ../bleachbit/GuiBasic.py:125 msgid "Are you sure you want to permanently delete these files?" msgstr "¿Quiere eliminar permanentemente estos archivos?" #: ../bleachbit/GuiBasic.py:162 #, python-format msgid "" "Because you are running as root, please manually open this link in a web " "browser:\n" "%s" msgstr "" "Porque lo está ejecutando como administrador, abra manualmente este enlace " "en un navegador web:\n" "%s" #. TRANSLATORS: %s expands to www.bleachbit.org or similar #: ../bleachbit/GuiBasic.py:174 #, python-format msgid "Open web browser to %s?" msgstr "¿Quiere abrir %s en el navegador web?" #. TRANSLATORS: This is the label in the log indicating was #. skipped because it matches the whitelist #: ../bleachbit/Command.py:47 msgid "Skip" msgstr "Omitir" #. TRANSLATORS: This is the label in the log indicating will be #. deleted (for previews) or was actually deleted #: ../bleachbit/Command.py:77 msgid "Delete" msgstr "Eliminar" #: ../bleachbit/Command.py:99 msgid "" "At least one file was locked by another process, so its contents could not " "be overwritten. It will be marked for deletion upon system reboot." msgstr "" "Al menos un archivo estaba bloqueado por otro proceso, por lo que su " "contenido no podría sobrescribirse. Será marcado para eliminar en el " "reinicio del sistema." #. TRANSLATORS: The file will be deleted when the #. system reboots #: ../bleachbit/Command.py:102 msgid "Mark for deletion" msgstr "Marcar para su eliminación" #. TRANSLATORS: Parts of this file will be deleted #: ../bleachbit/Command.py:199 ../bleachbit/Command.py:233 #: ../bleachbit/Action.py:254 ../bleachbit/Action.py:267 #: ../bleachbit/Action.py:280 ../bleachbit/Action.py:293 #: ../bleachbit/Action.py:306 msgid "Clean file" msgstr "Limpiar archivo" #. TRANSLATORS: The file will be truncated to 0 bytes in length #: ../bleachbit/Command.py:275 msgid "Truncate" msgstr "Truncar" #: ../bleachbit/Command.py:317 msgid "Delete registry key" msgstr "Eliminar clave del registro" #. TRANSLATORS: This is cleaner name for cleaners imported from winapp2.ini #: ../bleachbit/Winapp.py:44 msgid "Applications" msgstr "Aplicaciones" #. TRANSLATORS: This is cleaner name for cleaners imported #. from winapp2.ini #: ../bleachbit/Winapp.py:47 msgid "Internet" msgstr "Internet" #. TRANSLATORS: This is cleaner name for cleaners imported #. from winapp2.ini #: ../bleachbit/Winapp.py:50 msgid "Multimedia" msgstr "Multimedia" #. TRANSLATORS: This is cleaner name for cleaners imported #. from winapp2.ini #: ../bleachbit/Winapp.py:53 msgid "Utilities" msgstr "Utilidades" #: ../bleachbit/Winapp.py:64 msgid "Games" msgstr "Juegos" #: ../bleachbit/Winapp.py:162 msgid "Imported from winapp2.ini" msgstr "Importado de winapp2.ini" #: ../bleachbit/Cleaner.py:197 msgid "Crash reports" msgstr "Informes de cierres inesperados" #: ../bleachbit/Cleaner.py:204 msgid "Session restore" msgstr "Restaurar la sesión" #: ../bleachbit/Cleaner.py:205 msgid "Loads the initial session after the browser closes or crashes" msgstr "" "Carga la última sesión después de que el navegador se cierre o termine " "inesperadamente" #: ../bleachbit/Cleaner.py:207 msgid "Site preferences" msgstr "Preferencias del sitio" #: ../bleachbit/Cleaner.py:207 msgid "Settings for individual sites" msgstr "Opciones para sitios individuales" #. TRANSLATORS: desktop entries are .desktop files in Linux that #. make up the application menu (the menu that shows BleachBit, #. Firefox, and others. The .desktop files also associate file #. types, so clicking on an .html file in Nautilus brings up #. Firefox. #. More information: #. http://standards.freedesktop.org/menu-spec/latest/index.html#introduction #: ../bleachbit/Cleaner.py:453 msgid "Broken desktop files" msgstr "Archivos .desktop dañados" #: ../bleachbit/Cleaner.py:454 msgid "Delete broken application menu entries and file associations" msgstr "Eliminar entradas de aplicaciones y asociaciones de archivos dañadas" #. TRANSLATORS: Localizations are files supporting specific #. languages, so applications appear in Spanish, etc. #: ../bleachbit/Cleaner.py:458 msgid "Localizations" msgstr "Traducciones" #: ../bleachbit/Cleaner.py:459 msgid "Delete files for unwanted languages" msgstr "Eliminar los archivos de idiomas no deseados" #: ../bleachbit/Cleaner.py:461 msgid "Configure this option in the preferences." msgstr "Configure esta opción en las preferencias." #: ../bleachbit/Cleaner.py:467 msgid "Rotated logs" msgstr "Registros archivados" #: ../bleachbit/Cleaner.py:467 msgid "Delete old system logs" msgstr "Eliminar los registros antiguos del sistema" #: ../bleachbit/Cleaner.py:470 msgid "Trash" msgstr "Papelera" #: ../bleachbit/Cleaner.py:470 msgid "Empty the trash" msgstr "Vaciar la papelera" #: ../bleachbit/Cleaner.py:476 ../bleachbit/Cleaner.py:627 #: ../bleachbit/Worker.py:184 msgid "Memory" msgstr "Memoria" #. TRANSLATORS: 'free' means 'unallocated' #: ../bleachbit/Cleaner.py:478 msgid "Wipe the swap and free memory" msgstr "Limpiar la memoria libre y de intercambio" #: ../bleachbit/Cleaner.py:480 msgid "This option is experimental and may cause system problems." msgstr "Esta opción es experimental y puede causar problemas en el sistema." #: ../bleachbit/Cleaner.py:488 msgid "Memory dump" msgstr "Volcado de memoria" #: ../bleachbit/Cleaner.py:488 msgid "Delete the file memory.dmp" msgstr "Eliminar el archivo memory.dmp" #. TRANSLATORS: Prefetch is Microsoft Windows jargon. #: ../bleachbit/Cleaner.py:491 msgid "Prefetch" msgstr "Prefetch" #: ../bleachbit/Cleaner.py:493 msgid "Recycle bin" msgstr "Papelera de reciclaje" #: ../bleachbit/Cleaner.py:493 ../bleachbit/Cleaner.py:787 msgid "Empty the recycle bin" msgstr "Vaciar la papelera de reciclaje" #. TRANSLATORS: 'Update' is a noun, and 'Update uninstallers' is an option to delete #. the uninstallers for software updates. #: ../bleachbit/Cleaner.py:496 msgid "Update uninstallers" msgstr "Desinstaladores de actualizaciones" #: ../bleachbit/Cleaner.py:497 msgid "" "Delete uninstallers for Microsoft updates including hotfixes, service packs, " "and Internet Explorer updates" msgstr "" "Eliminar desinstaladores de las actualizaciones de Microsoft, incluidos las " "correcciones, los paquetes de servicio y las actualizaciones de Internet " "Explorer" #: ../bleachbit/Cleaner.py:504 ../bleachbit/Cleaner.py:727 msgid "Clipboard" msgstr "Portapapeles" #: ../bleachbit/Cleaner.py:505 msgid "" "The desktop environment's clipboard used for copy and paste operations" msgstr "" "El portapapeles del escritorio se usa para las operaciones de copiar y pegar" #. TRANSLATORS: "Custom" is an option allowing the user to specify which #. files and folders will be erased. #: ../bleachbit/Cleaner.py:512 ../bleachbit/GuiPreferences.py:66 msgid "Custom" msgstr "Personalizar" #: ../bleachbit/Cleaner.py:513 msgid "Delete user-specified files and folders" msgstr "Eliminar archivos y carpetas especificados por el usuario" #. TRANSLATORS: 'free' means 'unallocated' #: ../bleachbit/Cleaner.py:515 msgid "Free disk space" msgstr "Liberar espacio en disco" #. TRANSLATORS: 'free' means 'unallocated' #: ../bleachbit/Cleaner.py:517 msgid "Overwrite free disk space to hide deleted files" msgstr "Sobrescribir espacio libre en disco para ocultar archivos borrados" #: ../bleachbit/Cleaner.py:518 msgid "This option is very slow." msgstr "Esta opción es muy lenta." #: ../bleachbit/Cleaner.py:522 msgid "The system in general" msgstr "El sistema en general" #: ../bleachbit/Cleaner.py:524 ../bleachbit/Cleaner.py:857 msgid "System" msgstr "Sistema" #. TRANSLATORS: 'Free' means 'unallocated.' #. %s expands to a path such as C:\ or /tmp/ #: ../bleachbit/Cleaner.py:735 ../bleachbit/Cleaner.py:890 #, python-format msgid "Overwrite free disk space %s" msgstr "Sobrescribir espacio libre en disco %s" #: ../bleachbit/RecognizeCleanerML.py:59 msgid "Security warning" msgstr "Aviso de seguridad" #: ../bleachbit/RecognizeCleanerML.py:72 msgid "" "These cleaner definitions are new or have changed. Malicious definitions can " "damage your system. If you do not trust these changes, delete the files or " "quit." msgstr "" "Estas definiciones son nuevas o han cambiado. Las definiciones maliciosas " "pueden dañar su sistema. Si no confía en estos cambios, elimine los archivos " "o salga." #: ../bleachbit/RecognizeCleanerML.py:88 msgctxt "column_label" msgid "Delete" msgstr "Eliminar" #: ../bleachbit/RecognizeCleanerML.py:93 msgctxt "column_label" msgid "Filename" msgstr "Nombre de archivo" #. TRANSLATORS: This indicates an error. The special keyword #. %(operation)s will be replaced by 'firefox' or 'opera' or #. some other cleaner ID. The special keyword %(msg)s will be #. replaced by a message such as 'Permission denied.' #: ../bleachbit/Worker.py:74 #, python-format msgid "Exception while running operation '%(operation)s': '%(msg)s'" msgstr "Excepción al ejecutar la operación «%(operation)s»: «%(msg)s»" #. TRANSLATORS: 'free' means 'unallocated' #: ../bleachbit/Worker.py:182 msgid "Please wait. Wiping free disk space." msgstr "Espere. Limpiando el espacio libre." #. TRANSLATORS: %s is replaced with Firefox, System, etc. #: ../bleachbit/Worker.py:184 ../bleachbit/Worker.py:332 #, python-format msgid "Please wait. Cleaning %s." msgstr "Espere. Limpiando: %s." #: ../bleachbit/Worker.py:199 msgid "Please wait. Wiping file system metadata." msgstr "Espere. Eliminando los metadatos del sistema de archivos." #: ../bleachbit/Worker.py:202 msgid "Please wait. Cleaning up after wiping file system metadata." msgstr "" "Espere. Realizando limpieza tras borrar metadatos del sistema de archivos." #: ../bleachbit/Worker.py:205 #, python-format msgid "About %d minute remaining." msgid_plural "About %d minutes remaining." msgstr[0] "Queda cerca de %d minuto." msgstr[1] "Quedan cerca de %d minutos." #. TRANSLATORS: This refers to disk space that was #. really recovered (in other words, not a preview) #: ../bleachbit/Worker.py:272 #, python-format msgid "Disk space recovered: %s" msgstr "Espacio del disco recuperado: %s" #. TRANSLATORS: This refers to a preview (no real #. changes were made yet) #: ../bleachbit/Worker.py:276 #, python-format msgid "Disk space to be recovered: %s" msgstr "Espacio que recuperar del disco: %s" #. TRANSLATORS: This refers to the number of files really #. deleted (in other words, not a preview). #: ../bleachbit/Worker.py:281 #, python-format msgid "Files deleted: %d" msgstr "Archivos eliminados: %d" #. TRANSLATORS: This refers to the number of files that #. would be deleted (in other words, simply a preview). #: ../bleachbit/Worker.py:285 #, python-format msgid "Files to be deleted: %d" msgstr "Archivos que eliminar: %d" #: ../bleachbit/Worker.py:288 #, python-format msgid "Special operations: %d" msgstr "Operaciones especiales: %d" #: ../bleachbit/Worker.py:291 #, python-format msgid "Errors: %d" msgstr "Errores: %d" #. TRANSLATORS: The "deep scan" feature searches over broad #. areas of the file system such as the user's whole home directory #. or all the system executables. #: ../bleachbit/Worker.py:306 msgid "Please wait. Running deep scan." msgstr "Espere. Ejecutando escáner profundo." #. TRANSLATORS: %s is replaced with Firefox, System, etc. #: ../bleachbit/Worker.py:335 #, python-format msgid "Please wait. Previewing %s." msgstr "Espere. Previsualizando %s." #: ../bleachbit/Update.py:80 msgid "New winapp2.ini was downloaded." msgstr "Se descargó un nuevo winapp2.ini." #: ../bleachbit/Update.py:125 msgid "Update BleachBit" msgstr "Actualizar BleachBit" #: ../bleachbit/Update.py:130 msgid "A new version is available." msgstr "Hay una nueva versión disponible." #. TRANSLATORS: %s expands to version such as '0.8.4' or '0.8.5beta' or #. similar #: ../bleachbit/Update.py:139 #, python-format msgid "Update to version %s" msgstr "Actualizar a la versión %s" #: ../bleachbit/Update.py:164 #, python-format msgid "" "Error when opening a network connection to %s to check for updates. Please " "verify the network is working." msgstr "" "Hubo un error al abrir una conexión de red a %s para buscar actualizaciones. " "Compruebe que la red funciona." #: ../bleachbit/CLI.py:106 #, python-format msgid "not a valid cleaner: %s" msgstr "limpiador no válido: %s" #. TRANSLATORS: This is the command line usage. Don't translate #. %prog, but do translate usage, options, cleaner, and option. #. More information about the command line is here #. https://www.bleachbit.org/documentation/command-line #: ../bleachbit/CLI.py:133 msgid "usage: %prog [options] cleaner.option1 cleaner.option2" msgstr "uso: %prog [opciones] limpiador.opción1 limpiador.opción2" #: ../bleachbit/CLI.py:136 msgid "list cleaners" msgstr "enumerar limpiadores" #. TRANSLATORS: predefined cleaners are for applications, such as Firefox and Flash. #. This is different than cleaning an arbitrary file, such as a #. spreadsheet on the desktop. #: ../bleachbit/CLI.py:141 msgid "run cleaners to delete files and make other permanent changes" msgstr "" "ejecutar limpiadores para eliminar archivos y realizar otros cambios " "permanentes" #: ../bleachbit/CLI.py:144 msgid "shred specific files or folders" msgstr "triturar archivos o carpetas específicos" #: ../bleachbit/CLI.py:146 msgid "show system information" msgstr "mostrar información del sistema" #: ../bleachbit/CLI.py:148 msgid "launch the graphical interface" msgstr "abrir la interfaz gráfica" #: ../bleachbit/CLI.py:152 msgid "do not prompt for administrator privileges" msgstr "no pedir privilegios de administrador" #: ../bleachbit/CLI.py:157 msgid "preview files to be deleted and other changes" msgstr "previsualizar archivos a eliminar y otros cambios" #: ../bleachbit/CLI.py:161 msgid "use options set in the graphical interface" msgstr "usar las opciones establecidas en la interfaz gráfica" #: ../bleachbit/CLI.py:164 msgid "update winapp2.ini, if a new version is available" msgstr "actualizar winapp2.ini si una nueva versión está disponible" #: ../bleachbit/CLI.py:166 msgid "output version information and exit" msgstr "mostrar información de la versión y salir" #: ../bleachbit/CLI.py:168 msgid "overwrite files to hide contents" msgstr "sobrescribir archivos para ocultar su contenido" #. TRANSLATORS: this is the context menu #: ../bleachbit/Action.py:382 ../bleachbit/GUI.py:632 msgid "Clean" msgstr "Limpiar" #: ../bleachbit/Action.py:418 #, python-format msgid "Run external command: %s" msgstr "Ejecutar orden externa: %s" #: ../bleachbit/GUI.py:135 ../bleachbit/GuiPreferences.py:296 msgid "Name" msgstr "Nombre" #: ../bleachbit/GUI.py:143 msgid "Active" msgstr "Activar" #. TRANSLATORS: Size is the label for the column that shows how #. much space an option would clean or did clean #: ../bleachbit/GUI.py:155 msgid "Size" msgstr "Tamaño" #. TRANSLATORS: %(cleaner) may be Firefox, System, etc. #. %(option) may be cache, logs, cookies, etc. #. %(warning) may be 'This option is really slow' #: ../bleachbit/GUI.py:186 #, python-format msgid "" "Warning regarding %(cleaner)s - %(option)s:\n" "\n" "%(warning)s" msgstr "" "Advertencia con respecto al %(option)s de %(cleaner)s:\n" "\n" "%(warning)s" #: ../bleachbit/GUI.py:372 msgid "You must select an operation" msgstr "Debe seleccionar una operación" #: ../bleachbit/GUI.py:391 ../bleachbit/GUI.py:413 msgid "Done." msgstr "Terminado." #: ../bleachbit/GUI.py:426 msgid "Program to clean unnecessary files" msgstr "Programa para limpiar archivos innecesarios" #: ../bleachbit/GUI.py:436 msgid "" "GNU General Public License version 3 or later.\n" "See http://www.gnu.org/licenses/gpl-3.0.txt" msgstr "" "Licencia Pública General de GNU versión 3 o posterior.\n" "Ver http://www.gnu.org/licenses/gpl-3.0.txt" #. TRANSLATORS: Maintain the names of translators here. #. Launchpad does this automatically for translations #. typed in Launchpad. This is a special string shown #. in the 'About' box. #: ../bleachbit/GUI.py:442 msgid "translator-credits" msgstr "" "Andrew Ziem, JuanCarlosPaco\n" "\n" "Launchpad Contributions:\n" " Aaron Farias https://launchpad.net/~timido\n" " Adolfo Jayme https://launchpad.net/~fitojb\n" " Adrián García https://launchpad.net/~adryitan-deactivatedaccount\n" " Alejandro Del Rincón https://launchpad.net/~alexsp92\n" " Alfredo Hernández https://launchpad.net/~aldomann\n" " Andres Bracho https://launchpad.net/~andres-bracho\n" " Andres Rodriguez https://launchpad.net/~andreserl\n" " Andrew Ziem https://launchpad.net/~ahziem1\n" " Ariel Cabral https://launchpad.net/~acabral1961\n" " Carlos Joel Delgado Pizarro https://launchpad.net/~carlosj2585\n" " Daniel Gonzalez https://launchpad.net/~daniel-pit\n" " David Abián https://launchpad.net/~abian\n" " David Marquez-Gamez https://launchpad.net/~damarquezg\n" " Fco. Javier Serrador https://launchpad.net/~serrador-tecknolabs\n" " Felipe Hommen https://launchpad.net/~felihommen\n" " Gonzalo Testa https://launchpad.net/~gonzalogtesta\n" " José Lou Chang https://launchpad.net/~obake\n" " Lucas Farias https://launchpad.net/~lukaz-f\n" " Marco Antonio https://launchpad.net/~markitosco\n" " Monkey https://launchpad.net/~monkey-libre\n" " Nicolás Pierini https://launchpad.net/~nekun-deactivatedaccount\n" " Pablo Ponce https://launchpad.net/~pabloponce\n" " Paco Molinero https://launchpad.net/~franciscomol\n" " VPablo https://launchpad.net/~villumar\n" " William Beltrán https://launchpad.net/~eduardo-957\n" " elega https://launchpad.net/~elega\n" " juancarlospaco https://launchpad.net/~juancarlospaco\n" " lordcaos777 https://launchpad.net/~djsm777" #: ../bleachbit/GUI.py:454 msgid "System information" msgstr "Información del sistema" #: ../bleachbit/GUI.py:527 msgid "Choose files to shred" msgstr "Seleccione los archivos para triturar" #: ../bleachbit/GUI.py:530 msgid "Choose folder to shred" msgstr "Seleccione la carpeta para triturar" #: ../bleachbit/GUI.py:594 ../bleachbit/GuiPreferences.py:197 #: ../bleachbit/GuiPreferences.py:326 ../bleachbit/GuiPreferences.py:367 msgid "Choose a folder" msgstr "Seleccione una carpeta" #. TRANSLATORS: this is the context menu #: ../bleachbit/GUI.py:627 msgid "Preview" msgstr "Previsualizar" #: ../bleachbit/GUI.py:734 msgid "_Shred Files" msgstr "_Triturar archivos" #: ../bleachbit/GUI.py:736 msgid "Sh_red Folders" msgstr "T_riturar carpetas" #: ../bleachbit/GUI.py:738 msgid "_Wipe Free Space" msgstr "_Limpiar espacio libre" #: ../bleachbit/GUI.py:740 msgid "S_hred Settings and Quit" msgstr "Tr_iturar configuración y salir" #: ../bleachbit/GUI.py:742 msgid "_Quit" msgstr "_Salir" #: ../bleachbit/GUI.py:744 msgid "_File" msgstr "_Archivo" #: ../bleachbit/GUI.py:746 ../bleachbit/GuiPreferences.py:58 msgid "Preferences" msgstr "Preferencias" #: ../bleachbit/GUI.py:747 msgid "_Edit" msgstr "_Editar" #: ../bleachbit/GUI.py:748 msgid "Help Contents" msgstr "Contenido de la ayuda" #: ../bleachbit/GUI.py:751 msgid "_Release Notes" msgstr "_Notas de la versión" #: ../bleachbit/GUI.py:754 msgid "_System Information" msgstr "Información del _sistema" #: ../bleachbit/GUI.py:757 msgid "_About" msgstr "_Acerca de" #: ../bleachbit/GUI.py:758 msgid "_Help" msgstr "Ay_uda" #: ../bleachbit/GUI.py:783 msgctxt "button" msgid "Preview" msgstr "Previsualizar" #: ../bleachbit/GUI.py:788 msgid "Preview files in the selected operations (without deleting any files)" msgstr "" "Previsualizar los archivos en las operaciones seleccionadas (sin eliminar " "ningún archivo)" #: ../bleachbit/GUI.py:798 msgctxt "button" msgid "Clean" msgstr "Limpiar" #: ../bleachbit/GUI.py:802 msgid "Clean files in the selected operations" msgstr "Limpiar archivos en las operaciones seleccionadas" #: ../bleachbit/GUI.py:893 msgid "Error when checking for updates: " msgstr "Error al buscar actualizaciones: " #: ../bleachbit/GUI.py:932 msgid "" "Error loading the SQLite module: the antivirus software may be blocking it." msgstr "" "Error al cargar el módulo SQLite. El software antivirus puede estar " "bloqueándolo." #: ../bleachbit/GUI.py:935 msgid "" "You are running BleachBit with administrative privileges for cleaning shared " "parts of the system, and references to the user profile folder will clean " "only the root account." msgstr "" "BleachBit se está ejecutando con privilegios de administrador para limpiar " "las partes compartidas del sistema, y cualquier referencia a la carpeta del " "usuario afectará solo a la cuenta root." #: ../bleachbit/GUI.py:940 msgid "" "Run BleachBit with administrator privileges to improve the accuracy of " "overwriting the contents of files." msgstr "" "Ejecutar BleachBit con privilegios de administrador para mejorar la " "precisión de sobrescritura el contenido de archivos." #: ../bleachbit/GuiPreferences.py:64 msgid "General" msgstr "General" #: ../bleachbit/GuiPreferences.py:67 msgid "Drives" msgstr "Unidades" #: ../bleachbit/GuiPreferences.py:70 msgid "Languages" msgstr "Idiomas" #: ../bleachbit/GuiPreferences.py:72 msgid "Whitelist" msgstr "Lista blanca" #: ../bleachbit/GuiPreferences.py:117 msgid "Check periodically for software updates via the Internet" msgstr "Buscar periódicamente actualizaciones por Internet" #: ../bleachbit/GuiPreferences.py:122 msgid "" "If an update is found, you will be given the option to view information " "about it. Then, you may manually download and install the update." msgstr "" "Si se encuentra una actualización, se dará la opción de ver infomación " "acerca de ella. Entonces podrá descargarla manualmente e instalarla" #: ../bleachbit/GuiPreferences.py:128 msgid "Check for new beta releases" msgstr "Comprobar nuevas versiones beta" #: ../bleachbit/GuiPreferences.py:137 msgid "Download and update cleaners from community (winapp2.ini)" msgstr "Descargar y actualizar limpiadores de la comunidad (winapp2.ini)" #. TRANSLATORS: This means to hide cleaners which would do #. nothing. For example, if Firefox were never used on #. this system, this option would hide Firefox to simplify #. the list of cleaners. #: ../bleachbit/GuiPreferences.py:151 msgid "Hide irrelevant cleaners" msgstr "Ocultar limpiadores irrelevantes" #. TRANSLATORS: Overwriting is the same as shredding. It is a way #. to prevent recovery of the data. You could also translate #. 'Shred files to prevent recovery.' #: ../bleachbit/GuiPreferences.py:159 msgid "Overwrite contents of files to prevent recovery" msgstr "Sobrescribir contenido de archivos para evitar su recuperación" #: ../bleachbit/GuiPreferences.py:163 msgid "" "Overwriting is ineffective on some file systems and with certain BleachBit " "operations. Overwriting is significantly slower." msgstr "" "La sobrescritura es ineficaz en algunos sistemas de archivos y con ciertas " "operaciones de BleachBit. La sobrescritura es considerablemente más lenta." #: ../bleachbit/GuiPreferences.py:166 msgid "Start BleachBit with computer" msgstr "Iniciar BleachBit con el sistema" #: ../bleachbit/GuiPreferences.py:172 msgid "Exit after cleaning" msgstr "Salir tras la limpieza" #: ../bleachbit/GuiPreferences.py:178 msgid "Confirm before delete" msgstr "Confirmar antes de eliminar" #: ../bleachbit/GuiPreferences.py:186 msgid "Use IEC sizes (1 KiB = 1024 bytes) instead of SI (1 kB = 1000 bytes)" msgstr "" "Utilizar medidas del IEC (1 KiB = 1024 bytes) en vez de las del SI (1 kB = " "1000 bytes)" #: ../bleachbit/GuiPreferences.py:221 msgid "" "Choose a writable folder for each drive for which to overwrite free space." msgstr "" "Elija una carpeta modificable para cada unidad para la cual sobreeescribir " "el espacio libre." #. TRANSLATORS: In the preferences dialog, this button adds a path to #. the list of paths #: ../bleachbit/GuiPreferences.py:243 msgctxt "button" msgid "Add" msgstr "Añadir" #. TRANSLATORS: In the preferences dialog, this button removes a path #. from the list of paths #: ../bleachbit/GuiPreferences.py:247 ../bleachbit/GuiPreferences.py:458 msgctxt "button" msgid "Remove" msgstr "Quitar" #: ../bleachbit/GuiPreferences.py:272 msgid "All languages will be deleted except those checked." msgstr "Todos los idiomas se eliminarán, excepto los que estén marcados." #: ../bleachbit/GuiPreferences.py:288 msgid "Preserve" msgstr "Conservar" #: ../bleachbit/GuiPreferences.py:292 msgid "Code" msgstr "Código" #: ../bleachbit/GuiPreferences.py:313 ../bleachbit/GuiPreferences.py:354 msgid "Choose a file" msgstr "Elija un archivo" #: ../bleachbit/GuiPreferences.py:320 ../bleachbit/GuiPreferences.py:361 #: ../bleachbit/GuiPreferences.py:405 msgid "File" msgstr "Archivo" #: ../bleachbit/GuiPreferences.py:334 ../bleachbit/GuiPreferences.py:375 #: ../bleachbit/GuiPreferences.py:407 msgid "Folder" msgstr "Carpeta" #: ../bleachbit/GuiPreferences.py:417 msgid "Theses paths will not be deleted or modified." msgstr "Estas rutas no se eliminarán ni modificarán." #: ../bleachbit/GuiPreferences.py:420 msgid "These locations can be selected for deletion." msgstr "Pueden seleccionarse estas ubicaciones para su eliminación." #: ../bleachbit/GuiPreferences.py:428 msgid "Type" msgstr "Tipo" #. TRANSLATORS: In the tree view "Path" is used generically to refer to a #. file, a folder, or a pattern describing either #: ../bleachbit/GuiPreferences.py:434 msgid "Path" msgstr "Ruta" #: ../bleachbit/GuiPreferences.py:446 msgctxt "button" msgid "Add file" msgstr "Añadir archivo" #: ../bleachbit/GuiPreferences.py:452 msgctxt "button" msgid "Add folder" msgstr "Añadir carpeta" bleachbit-2.0/po/nl.po0000644000175000017500000013654413245436307013005 0ustar hlehle# Dutch translation for bleachbit # Copyright (c) 2009 Rosetta Contributors and Canonical Ltd 2009 # This file is distributed under the same license as the bleachbit package. # FIRST AUTHOR , 2009. # msgid "" msgstr "" "Project-Id-Version: bleachbit\n" "Report-Msgid-Bugs-To: FULL NAME \n" "POT-Creation-Date: 2017-02-11 11:12-0700\n" "PO-Revision-Date: 2017-11-08 15:42+0000\n" "Last-Translator: Heimen Stoffels \n" "Language-Team: Dutch \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n != 1;\n" "X-Launchpad-Export-Date: 2017-11-08 18:40+0000\n" "X-Generator: Launchpad (build 18498)\n" #: ../cleaners/mc.xml ../cleaners/tortoisesvn.xml ../cleaners/vim.xml #: ../cleaners/safari.xml ../cleaners/links2.xml ../cleaners/seamonkey.xml #: ../cleaners/realplayer.xml ../cleaners/windows_defender.xml #: ../cleaners/d4x.xml ../cleaners/sqlite3.xml #: ../cleaners/internet_explorer.xml ../cleaners/libreoffice.xml #: ../cleaners/easytag.xml ../cleaners/bash.xml ../cleaners/nautilus.xml #: ../cleaners/octave.xml ../cleaners/elinks.xml ../cleaners/chromium.xml #: ../cleaners/google_chrome.xml msgid "History" msgstr "Geschiedenis" #: ../cleaners/mc.xml ../cleaners/tortoisesvn.xml ../cleaners/links2.xml #: ../cleaners/realplayer.xml ../cleaners/d4x.xml ../cleaners/libreoffice.xml #: ../cleaners/easytag.xml ../cleaners/nautilus.xml ../cleaners/gnome.xml #: ../bleachbit/Cleaner.py:349 ../bleachbit/Cleaner.py:423 #: ../bleachbit/Cleaner.py:432 msgid "Delete the usage history" msgstr "Verwijder de gebruikersgeschiedenis" #: ../cleaners/gpodder.xml ../cleaners/hippo_opensim_viewer.xml #: ../cleaners/thumbnails.xml ../cleaners/safari.xml ../cleaners/emesene.xml #: ../cleaners/liferea.xml ../cleaners/seamonkey.xml ../cleaners/vuze.xml #: ../cleaners/yahoo_messenger.xml ../cleaners/pidgin.xml #: ../cleaners/adobe_reader.xml ../cleaners/evolution.xml #: ../cleaners/tremulous.xml ../cleaners/libreoffice.xml ../cleaners/xine.xml #: ../cleaners/nexuiz.xml ../cleaners/exaile.xml ../cleaners/opera.xml #: ../cleaners/amsn.xml ../cleaners/gftp.xml ../cleaners/miro.xml #: ../cleaners/beagle.xml ../cleaners/kde.xml ../cleaners/epiphany.xml #: ../cleaners/flash.xml ../cleaners/secondlife_viewer.xml ../cleaners/java.xml #: ../cleaners/chromium.xml ../cleaners/audacious.xml ../cleaners/rhythmbox.xml #: ../cleaners/google_chrome.xml ../cleaners/thunderbird.xml #: ../bleachbit/Cleaner.py:192 ../bleachbit/Cleaner.py:370 #: ../bleachbit/Cleaner.py:455 msgid "Cache" msgstr "Buffergeheugen" #: ../cleaners/gpodder.xml ../cleaners/yum.xml #: ../cleaners/hippo_opensim_viewer.xml ../cleaners/thumbnails.xml #: ../cleaners/windows_explorer.xml ../cleaners/liferea.xml #: ../cleaners/vuze.xml ../cleaners/yahoo_messenger.xml ../cleaners/pidgin.xml #: ../cleaners/adobe_reader.xml ../cleaners/evolution.xml #: ../cleaners/libreoffice.xml ../cleaners/apt.xml ../cleaners/xine.xml #: ../cleaners/nexuiz.xml ../cleaners/exaile.xml ../cleaners/amsn.xml #: ../cleaners/gftp.xml ../cleaners/miro.xml ../cleaners/beagle.xml #: ../cleaners/kde.xml ../cleaners/flash.xml ../cleaners/secondlife_viewer.xml #: ../cleaners/java.xml ../cleaners/audacious.xml ../cleaners/rhythmbox.xml #: ../bleachbit/Cleaner.py:370 ../bleachbit/Cleaner.py:455 #: ../bleachbit/Cleaner.py:489 ../bleachbit/Cleaner.py:491 msgid "Delete the cache" msgstr "Leeg het buffergeheugen" #. TRANSLATORS: Vacuum is a verb. The term is jargon #. from the SQLite database. Microsoft Access uses #. the term 'Compact Database' (which you may translate #. instead). Another synonym is 'defragment.' #: ../cleaners/gpodder.xml ../cleaners/yum.xml ../cleaners/safari.xml #: ../cleaners/liferea.xml ../cleaners/chromium.xml #: ../cleaners/google_chrome.xml ../cleaners/thunderbird.xml #: ../bleachbit/Cleaner.py:214 ../bleachbit/Cleaner.py:360 #: ../bleachbit/Action.py:445 msgid "Vacuum" msgstr "Optimaliseren" #: ../cleaners/gpodder.xml ../cleaners/yum.xml ../cleaners/safari.xml #: ../cleaners/liferea.xml ../cleaners/chromium.xml #: ../cleaners/google_chrome.xml ../cleaners/thunderbird.xml #: ../bleachbit/Cleaner.py:215 msgid "" "Clean database fragmentation to reduce space and improve speed without " "removing any data" msgstr "" "Defragmenteert de database om ruimte te besparen en de snelheid te verhogen, " "zonder data te verwijderen" #: ../cleaners/yum.xml ../cleaners/apt.xml msgid "Package manager" msgstr "Pakketbeheer" #: ../cleaners/warzone2100.xml ../cleaners/hippo_opensim_viewer.xml #: ../cleaners/gl-117.xml ../cleaners/tremulous.xml ../cleaners/nexuiz.xml #: ../cleaners/secondlife_viewer.xml msgid "Game" msgstr "Spel" #: ../cleaners/warzone2100.xml ../cleaners/hippo_opensim_viewer.xml #: ../cleaners/teamviewer.xml ../cleaners/realplayer.xml ../cleaners/vuze.xml #: ../cleaners/yahoo_messenger.xml ../cleaners/amule.xml #: ../cleaners/easytag.xml ../cleaners/exaile.xml ../cleaners/screenlets.xml #: ../cleaners/gftp.xml ../cleaners/miro.xml ../cleaners/audacious.xml #: ../bleachbit/Cleaner.py:486 msgid "Logs" msgstr "Logbestanden" #: ../cleaners/warzone2100.xml ../cleaners/hippo_opensim_viewer.xml #: ../cleaners/teamviewer.xml ../cleaners/realplayer.xml ../cleaners/vuze.xml #: ../cleaners/yahoo_messenger.xml ../cleaners/amule.xml ../cleaners/exaile.xml #: ../cleaners/screenlets.xml ../cleaners/gftp.xml ../cleaners/miro.xml #: ../cleaners/audacious.xml ../bleachbit/Cleaner.py:486 msgid "Delete the logs" msgstr "Verwijder de logbestanden" #: ../cleaners/thumbnails.xml ../cleaners/windows_explorer.xml msgid "Thumbnails" msgstr "Miniatuurafbeeldingen" #: ../cleaners/thumbnails.xml msgid "Icons for files on the system" msgstr "Pictogrammen voor bestanden in het systeem" #: ../cleaners/vim.xml ../cleaners/gedit.xml msgid "Editor" msgstr "Editor" #: ../cleaners/vim.xml msgid "" "Delete ~/.viminfo which includes file history, command history, and buffers" msgstr "" "Verwijder ~/.viminfo waaronder de bestandsgeschiedenis, opdrachtgeschiedenis " "en buffers" #: ../cleaners/filezilla.xml ../cleaners/transmission.xml ../cleaners/vuze.xml #: ../cleaners/amule.xml ../cleaners/gftp.xml msgid "File transfer client" msgstr "Bestandsoverdrachtprogramma" #: ../cleaners/filezilla.xml ../cleaners/paint.xml #: ../cleaners/windows_media_player.xml ../cleaners/windows_explorer.xml #: ../cleaners/teamviewer.xml ../cleaners/microsoft_office.xml #: ../cleaners/vlc.xml ../cleaners/adobe_reader.xml ../cleaners/winamp.xml #: ../cleaners/winzip.xml ../cleaners/winrar.xml ../cleaners/audacious.xml #: ../cleaners/wordpad.xml ../bleachbit/Cleaner.py:371 msgid "Most recently used" msgstr "Meest recent gebruikt" #: ../cleaners/filezilla.xml ../cleaners/windows_explorer.xml #: ../cleaners/gwenview.xml ../cleaners/adobe_reader.xml ../cleaners/gedit.xml #: ../cleaners/kde.xml ../cleaners/audacious.xml ../bleachbit/Cleaner.py:372 #: ../bleachbit/Cleaner.py:469 msgid "Delete the list of recently used documents" msgstr "Verwijder de lijst met recent gebruikte documenten" #: ../cleaners/skype.xml ../cleaners/emesene.xml #: ../cleaners/yahoo_messenger.xml ../cleaners/pidgin.xml ../cleaners/amsn.xml msgid "Chat client" msgstr "Chatprogramma" #: ../cleaners/skype.xml ../cleaners/hexchat.xml ../cleaners/emesene.xml #: ../cleaners/seamonkey.xml ../cleaners/yahoo_messenger.xml #: ../cleaners/pidgin.xml ../cleaners/amsn.xml msgid "Chat logs" msgstr "Chatlogbestanden" #: ../cleaners/skype.xml ../cleaners/hexchat.xml ../cleaners/emesene.xml #: ../cleaners/seamonkey.xml ../cleaners/yahoo_messenger.xml #: ../cleaners/pidgin.xml ../cleaners/amsn.xml msgid "Delete the chat logs" msgstr "Verwijder de chatlogbestanden" #: ../cleaners/skype.xml msgid "Installers" msgstr "Installatietoepassingen" #: ../cleaners/skype.xml msgid "Delete cached patches and installers" msgstr "Gebufferde reparatie- en installatietoepassingen verwijderen" #: ../cleaners/hexchat.xml msgid "IRC client formerly known as XChat" msgstr "IRC client voorheen bekend als XChat" #: ../cleaners/safari.xml ../cleaners/links2.xml ../cleaners/seamonkey.xml #: ../cleaners/konqueror.xml ../cleaners/internet_explorer.xml #: ../cleaners/opera.xml ../cleaners/epiphany.xml ../cleaners/elinks.xml #: ../cleaners/chromium.xml ../cleaners/google_chrome.xml #: ../bleachbit/Cleaner.py:226 msgid "Web browser" msgstr "Webbrowser" #: ../cleaners/safari.xml ../cleaners/seamonkey.xml ../cleaners/opera.xml #: ../cleaners/epiphany.xml ../cleaners/chromium.xml #: ../cleaners/google_chrome.xml ../cleaners/thunderbird.xml #: ../bleachbit/Cleaner.py:193 msgid "Delete the web cache, which reduces time to display revisited pages" msgstr "" "Leeg het buffergeheugen, dat de laadtijd verkort wanneer u websites opnieuw " "bezoekt" #: ../cleaners/safari.xml ../cleaners/liferea.xml ../cleaners/seamonkey.xml #: ../cleaners/realplayer.xml ../cleaners/konqueror.xml #: ../cleaners/internet_explorer.xml ../cleaners/opera.xml #: ../cleaners/epiphany.xml ../cleaners/flash.xml ../cleaners/silverlight.xml #: ../cleaners/chromium.xml ../cleaners/google_chrome.xml #: ../cleaners/thunderbird.xml ../bleachbit/Cleaner.py:194 msgid "Cookies" msgstr "Cookies" #: ../cleaners/safari.xml ../cleaners/liferea.xml ../cleaners/seamonkey.xml #: ../cleaners/realplayer.xml ../cleaners/konqueror.xml #: ../cleaners/internet_explorer.xml ../cleaners/opera.xml #: ../cleaners/epiphany.xml ../cleaners/flash.xml ../cleaners/silverlight.xml #: ../cleaners/chromium.xml ../cleaners/google_chrome.xml #: ../cleaners/thunderbird.xml ../bleachbit/Cleaner.py:195 msgid "" "Delete cookies, which contain information such as web site preferences, " "authentication, and tracking identification" msgstr "" "Verwijder cookies, die informatie bevatten zoals websitevoorkeuren, " "authenticatie en tracking-identificatie" #: ../cleaners/safari.xml ../cleaners/konqueror.xml #: ../cleaners/internet_explorer.xml ../cleaners/opera.xml #: ../bleachbit/Cleaner.py:213 msgid "List of visited web pages" msgstr "Lijst met bezochte websites" #. Torrent software can block a list of IP addresses, such as those that may belong to malware or anti-piracy organizations #: ../cleaners/transmission.xml msgid "Blocklists" msgstr "Blokkadelijsten" #: ../cleaners/transmission.xml ../cleaners/windows_defender.xml #: ../cleaners/beagle.xml ../cleaners/thunderbird.xml ../cleaners/deepscan.xml #: ../bleachbit/Cleaner.py:197 msgid "Delete the files" msgstr "Verwijder de bestanden" #: ../cleaners/transmission.xml msgid "Blocklists will need update to work." msgstr "Blokkadelijsten moeten bijgewerkt worden om te kunnen functioneren." #: ../cleaners/transmission.xml msgid "Torrents" msgstr "Torrents" #: ../cleaners/transmission.xml msgid "Delete the torrents (just the metadata but not the files described)" msgstr "" "Torrents verwijderen (alleen de meta-informatie niet de omschreven bestanden)" #: ../cleaners/transmission.xml msgid "Statistics" msgstr "Statistieken" #: ../cleaners/transmission.xml msgid "Delete the file" msgstr "Verwijder het bestand" #: ../cleaners/paint.xml ../cleaners/windows_media_player.xml #: ../cleaners/windows_explorer.xml ../cleaners/teamviewer.xml #: ../cleaners/microsoft_office.xml ../cleaners/vlc.xml ../cleaners/winamp.xml #: ../cleaners/winzip.xml ../cleaners/winrar.xml ../cleaners/wordpad.xml msgid "Delete the most recently used list" msgstr "Verwijdert de lijst met recente documenten" #: ../cleaners/emesene.xml msgid "Delete the avatars and emoticons cache" msgstr "Leeg het buffergeheugen van de schermafbeeldingen en emoticons" #: ../cleaners/windows_media_player.xml ../cleaners/realplayer.xml #: ../cleaners/vlc.xml ../cleaners/winamp.xml msgid "Media player" msgstr "Mediaspeler" #: ../cleaners/windows_explorer.xml ../cleaners/nautilus.xml msgid "File manager" msgstr "Bestandsbeheer" #: ../cleaners/windows_explorer.xml ../cleaners/gwenview.xml #: ../cleaners/gedit.xml ../cleaners/kde.xml ../bleachbit/Cleaner.py:468 #: ../bleachbit/Cleaner.py:663 msgid "Recent documents list" msgstr "Recente documentenlijst" #: ../cleaners/windows_explorer.xml msgid "" "This option will reset pinned locations in Quick Access to their defaults." msgstr "" "Met deze optie worden de vastgezette locaties in Quick Access op hun " "standaardwaarden teruggezet." #. In Windows 'Run' is the dialog in the Start menu #. In GNOME 'Run' is the dialog shown when typing ALT+F2' #: ../cleaners/windows_explorer.xml ../cleaners/gnome.xml msgid "Run" msgstr "Toepassing uitvoeren" #: ../cleaners/windows_explorer.xml ../cleaners/opera.xml ../cleaners/gnome.xml #: ../cleaners/google_toolbar.xml msgid "Search history" msgstr "Zoekgeschiedenis" #: ../cleaners/windows_explorer.xml ../cleaners/opera.xml ../cleaners/gnome.xml #: ../cleaners/google_toolbar.xml msgid "Delete the search history" msgstr "Verwijder de zoekgeschiedenis" #: ../cleaners/windows_explorer.xml msgid "This will restart Windows Explorer." msgstr "Hierdoor zal Windows Explorer herstart worden." #: ../cleaners/gl-117.xml ../cleaners/microsoft_office.xml #: ../cleaners/beagle.xml ../cleaners/secondlife_viewer.xml ../cleaners/x11.xml msgid "Debug logs" msgstr "Foutmeldingslogbestanden" #: ../cleaners/gl-117.xml ../cleaners/microsoft_office.xml #: ../cleaners/easytag.xml ../cleaners/beagle.xml #: ../cleaners/secondlife_viewer.xml ../cleaners/x11.xml msgid "Delete the debug logs" msgstr "Verwijder de foutmeldingslogbestanden" #: ../cleaners/google_earth.xml ../cleaners/winetricks.xml ../cleaners/vuze.xml #: ../cleaners/adobe_reader.xml ../cleaners/amule.xml ../cleaners/wine.xml #: ../cleaners/internet_explorer.xml ../cleaners/gimp.xml ../cleaners/kde.xml #: ../cleaners/deepscan.xml ../bleachbit/Cleaner.py:520 msgid "Temporary files" msgstr "Tijdelijke bestanden" #: ../cleaners/google_earth.xml ../cleaners/winetricks.xml ../cleaners/vuze.xml #: ../cleaners/adobe_reader.xml ../cleaners/amule.xml ../cleaners/wine.xml #: ../cleaners/internet_explorer.xml ../cleaners/gimp.xml ../cleaners/kde.xml #: ../cleaners/deepscan.xml ../bleachbit/Cleaner.py:520 msgid "Delete the temporary files" msgstr "Verwijder de tijdelijke bestanden" #: ../cleaners/seamonkey.xml ../cleaners/opera.xml ../bleachbit/Cleaner.py:201 msgid "Download history" msgstr "Downloadgeschiedenis" #: ../cleaners/seamonkey.xml ../cleaners/opera.xml ../bleachbit/Cleaner.py:201 msgid "List of files downloaded" msgstr "Lijst met gedownloade bestanden" #: ../cleaners/seamonkey.xml msgid "Delete the list of visited web pages" msgstr "Verwijder de lijst met bezochte websites" #: ../cleaners/vuze.xml ../cleaners/deepscan.xml ../bleachbit/Cleaner.py:190 msgid "Backup files" msgstr "Back-upbestanden" #: ../cleaners/vuze.xml ../cleaners/deepscan.xml ../bleachbit/Cleaner.py:191 msgid "Delete the backup files" msgstr "Verwijder de back-upbestanden" #: ../cleaners/konqueror.xml ../cleaners/opera.xml ../cleaners/chromium.xml msgid "Current session" msgstr "Huidige sessie" #: ../cleaners/konqueror.xml ../cleaners/opera.xml ../cleaners/chromium.xml msgid "Delete the current session" msgstr "Verwijder de huidige sessie" #: ../cleaners/konqueror.xml ../cleaners/opera.xml ../bleachbit/Cleaner.py:213 msgid "URL history" msgstr "URL-geschiedenis" #: ../cleaners/microsoft_office.xml ../cleaners/libreoffice.xml #: ../bleachbit/Cleaner.py:375 msgid "Office suite" msgstr "Kantoorpakket" #: ../cleaners/windows_defender.xml msgid "Anti-virus" msgstr "Antivirus" #: ../cleaners/journald.xml msgid "System journals" msgstr "Systeem journaals" #: ../cleaners/journald.xml msgid "Clean old system journals" msgstr "Oude systeem journaals schoonmaken" #: ../cleaners/adobe_reader.xml msgid "Document viewer" msgstr "Documentviewer" #: ../cleaners/evolution.xml ../cleaners/thunderbird.xml msgid "Email client" msgstr "E-mailtoepassing" #: ../cleaners/tremulous.xml msgid "Delete the list of game servers" msgstr "Verwijder de lijst met gameservers" #: ../cleaners/sqlite3.xml ../cleaners/bash.xml ../cleaners/octave.xml msgid "Delete the command history" msgstr "Verwijder de opdrachtgeschiedenis" #: ../cleaners/wine.xml msgid "Compatibility layer for Windows software" msgstr "Compatibiliteitslaag voor Windowssoftware" #: ../cleaners/internet_explorer.xml ../cleaners/chromium.xml #: ../cleaners/google_chrome.xml ../bleachbit/Cleaner.py:202 msgid "Form history" msgstr "Formuliergeschiedenis" #: ../cleaners/internet_explorer.xml ../bleachbit/Cleaner.py:203 msgid "A history of forms entered in web sites and in the Search bar" msgstr "" "Verwijder de formuliergeschiedenis ingevoerd in websites en in de zoekbalk" #. This software edits metadata tags, such as title and artist, in audio files #: ../cleaners/easytag.xml msgid "Audio files tagger" msgstr "Audiobestandenlabelaar" #: ../cleaners/apt.xml msgid "Delete obsolete files" msgstr "Verwijder verouderde bestanden" #: ../cleaners/apt.xml msgid "Package lists" msgstr "Pakketlijsten" #: ../cleaners/xine.xml ../cleaners/miro.xml ../cleaners/flash.xml msgid "Multimedia viewer" msgstr "Multimediaviewer" #: ../cleaners/recoll.xml ../cleaners/beagle.xml msgid "Search tool" msgstr "Zoekprogramma" #: ../cleaners/recoll.xml ../cleaners/beagle.xml ../cleaners/thunderbird.xml msgid "Index" msgstr "Index" #: ../cleaners/recoll.xml msgid "" "Delete the search index, a database of words and the files they contain" msgstr "Verwijdert de zoekindex, een database met woorden en bestanden" #: ../cleaners/gimp.xml msgid "Graphics editor" msgstr "Grafisch programma" #: ../cleaners/exaile.xml msgid "Downloaded podcasts" msgstr "Gedownloade podcasts" #: ../cleaners/exaile.xml msgid "Delete downloaded podcasts" msgstr "Verwijder gedownloade podcasts" #: ../cleaners/bash.xml msgid "Shell" msgstr "Opdrachtregeltoepassing" #. TRANSLATORS: DOM = Document Object Model. #: ../cleaners/opera.xml ../cleaners/epiphany.xml ../cleaners/chromium.xml #: ../cleaners/google_chrome.xml ../bleachbit/Cleaner.py:199 msgid "DOM Storage" msgstr "DOM-opslag" #: ../cleaners/opera.xml ../cleaners/epiphany.xml ../cleaners/chromium.xml #: ../cleaners/google_chrome.xml ../bleachbit/Cleaner.py:199 msgid "Delete HTML5 cookies" msgstr "Verwijder HTML5-cookies" #: ../cleaners/opera.xml ../cleaners/epiphany.xml ../cleaners/chromium.xml #: ../cleaners/google_chrome.xml ../cleaners/thunderbird.xml #: ../bleachbit/Cleaner.py:208 msgid "Passwords" msgstr "Wachtwoorden" #: ../cleaners/opera.xml ../cleaners/epiphany.xml ../cleaners/chromium.xml #: ../cleaners/google_chrome.xml ../cleaners/thunderbird.xml #: ../bleachbit/Cleaner.py:209 msgid "" "A database of usernames and passwords as well as a list of sites that should " "not store passwords" msgstr "" "Een database met gebruikersnamen en wachtwoorden en een lijst met websites " "die geen wachtwoorden op mogen slaan" #: ../cleaners/opera.xml ../cleaners/epiphany.xml ../cleaners/chromium.xml #: ../cleaners/google_chrome.xml ../cleaners/thunderbird.xml #: ../bleachbit/Cleaner.py:211 msgid "This option will delete your saved passwords." msgstr "Deze optie zal uw opgeslagen wachtwoorden verwijderen." #: ../cleaners/nautilus.xml msgid "Custom folders will be reset." msgstr "Speciale mappen worden hersteld." #: ../cleaners/gnome.xml ../cleaners/kde.xml msgid "Desktop environment" msgstr "Werkomgeving" #: ../cleaners/screenlets.xml msgid "Widgets for the desktop" msgstr "Widgets voor het bureaublad" #: ../cleaners/epiphany.xml msgid "Places" msgstr "Locaties" #: ../cleaners/epiphany.xml msgid "" "A database of URLs including bookmarks, favicons, and a history of visited " "web sites" msgstr "" "Een database met URL´s waaronder bladwijzers, iconen en geschiedenis van de " "bezochte websites" #: ../cleaners/epiphany.xml msgid "This option deletes all bookmarks." msgstr "Deze optie verwijdert alle bladwijzers." #: ../cleaners/winrar.xml msgid "File archiver" msgstr "In-/uitpakprogramma" #: ../cleaners/elinks.xml msgid "Delete the cookies, visited URLs, and search history" msgstr "Verwijder de cookies, bezochte URL´s en de zoekgeschiedenis" #: ../cleaners/chromium.xml ../cleaners/google_chrome.xml msgid "A history of forms entered in web sites" msgstr "Verwijder de formuliergeschiedenis ingevoerd in websites" #: ../cleaners/chromium.xml ../cleaners/google_chrome.xml msgid "" "Delete the history which includes visited sites, downloads, and thumbnails" msgstr "" "Verwijder de geschiedenis met bezochte websites, downloads en " "miniatuurafbeeldingen" #: ../cleaners/chromium.xml ../cleaners/google_chrome.xml msgid "Search engines" msgstr "Zoekmachines" #. 'Factory' means a search engine that is installed by default 'from the factory,' but this is different than a 'default search engine' https://lists.launchpad.net/launchpad-translators/msg00283.html #: ../cleaners/chromium.xml ../cleaners/google_chrome.xml msgid "" "Reset the search engine usage history and delete non-factory search engines, " "some of which are added automatically" msgstr "" "Verwijder de zoekgeschiedenis en de zoekmachines die niet standaard " "geïnstalleerd zijn, sommige ervan zijn automatisch toegevoegd" #: ../cleaners/audacious.xml msgid "Audio player" msgstr "Audiospeler" #: ../cleaners/rhythmbox.xml msgid "Database" msgstr "Database" #: ../cleaners/rhythmbox.xml msgid "" "Delete the database, which contain information such as play count and last " "played" msgstr "" "Verwijder de database, die informatie bevat over hoe vaak een nummer " "beluisterd werd en welk nummer het laatst beluisterd werd" #: ../cleaners/google_chrome.xml msgid "Session" msgstr "Sessie" #: ../cleaners/google_chrome.xml msgid "Delete the current and last sessions" msgstr "Verwijder de huidige en vorige sessies" #: ../cleaners/x11.xml msgid "Windowing system" msgstr "Venstersysteem" #: ../cleaners/wordpad.xml msgid "Word processor" msgstr "Tekstverwerker" #: ../cleaners/deepscan.xml msgid "Deep scan" msgstr "Diepe scan" #: ../cleaners/deepscan.xml msgid "Clean files widely scattered across the disk" msgstr "Bestanden opschonen die wijdverspreid zijn op de schijf" #: ../cleaners/deepscan.xml msgid "Inspect the preview for any files you want to keep." msgstr "Controleer op bestanden die u wilt behouden." #: ../cleaners/deepscan.xml msgid "This option is slow." msgstr "Deze optie is langzaam." #: ../bleachbit.desktop msgid "Unnecessary file cleaner" msgstr "Verwijder overbodige bestanden" #: ../bleachbit.desktop msgid "Free space and maintain privacy" msgstr "Maak ruimte vrij en behoud privacy" #: ../bleachbit/FileUtilities.py:668 msgid "" "There was at least one file on a file system that does not support advanced " "overwriting." msgstr "" "Er was minstens één bestand op een bestandssysteem dat geavanceerd " "overschrijven niet ondersteunt." #: ../bleachbit/Unix.py:574 #, python-format msgid "Executable not found: %s" msgstr "Uitvoerbaar bestand niet gevonden: %s" #. TRANSLATORS: %s expands to a name such as 'Firefox' or 'System'. #: ../bleachbit/Unix.py:623 ../bleachbit/Worker.py:136 #, python-format msgid "" "%s cannot be cleaned because it is currently running. Close it, and try " "again." msgstr "" "%s kan niet opgeschoond worden omdat het nog in gebruik is. Sluit het af en " "probeer het opnieuw." #: ../bleachbit/GuiBasic.py:112 msgid "Delete confirmation" msgstr "Verwijderen bevestigen" #: ../bleachbit/GuiBasic.py:122 msgid "" "Are you sure you want to permanently delete files according to the selected " "operations? The actual files that will be deleted may have changed since " "you ran the preview." msgstr "" "Weet u zeker dat u de bestanden aan de hand van de gekozen opties permanent " "wilt verwijderen? De bestanden die verwijderd zullen worden kunnen gewijzigd " "zijn sinds u ze voor het laatst heeft bekeken." #: ../bleachbit/GuiBasic.py:125 msgid "Are you sure you want to permanently delete these files?" msgstr "Weet u zeker dat u deze bestanden permanent wilt verwijderen?" #: ../bleachbit/GuiBasic.py:162 #, python-format msgid "" "Because you are running as root, please manually open this link in a web " "browser:\n" "%s" msgstr "" "Omdat u als root aangemeld bent, dient u deze link handmatig te openen in " "een webbrowser:\n" "%s" #. TRANSLATORS: %s expands to www.bleachbit.org or similar #: ../bleachbit/GuiBasic.py:174 #, python-format msgid "Open web browser to %s?" msgstr "Webbrowser openen met %s?" #. TRANSLATORS: This is the label in the log indicating was #. skipped because it matches the whitelist #: ../bleachbit/Command.py:47 msgid "Skip" msgstr "Overslaan" #. TRANSLATORS: This is the label in the log indicating will be #. deleted (for previews) or was actually deleted #: ../bleachbit/Command.py:77 msgid "Delete" msgstr "Verwijderen" #: ../bleachbit/Command.py:99 msgid "" "At least one file was locked by another process, so its contents could not " "be overwritten. It will be marked for deletion upon system reboot." msgstr "" "Ten minste één bestand is vergrendeld door een ander proces, dus de inhoud " "kon niet worden overschreven. Het zal worden gemarkeerd voor verwijdering na " "het herstarten van het systeem." #. TRANSLATORS: The file will be deleted when the #. system reboots #: ../bleachbit/Command.py:102 msgid "Mark for deletion" msgstr "Markeren voor verwijdering" #. TRANSLATORS: Parts of this file will be deleted #: ../bleachbit/Command.py:199 ../bleachbit/Command.py:233 #: ../bleachbit/Action.py:254 ../bleachbit/Action.py:267 #: ../bleachbit/Action.py:280 ../bleachbit/Action.py:293 #: ../bleachbit/Action.py:306 msgid "Clean file" msgstr "Opschonen bestand" #. TRANSLATORS: The file will be truncated to 0 bytes in length #: ../bleachbit/Command.py:275 msgid "Truncate" msgstr "Inkorten" #: ../bleachbit/Command.py:317 msgid "Delete registry key" msgstr "Registersleutel verwijderen" #. TRANSLATORS: This is cleaner name for cleaners imported from winapp2.ini #: ../bleachbit/Winapp.py:44 msgid "Applications" msgstr "Programma's" #. TRANSLATORS: This is cleaner name for cleaners imported #. from winapp2.ini #: ../bleachbit/Winapp.py:47 msgid "Internet" msgstr "Internet" #. TRANSLATORS: This is cleaner name for cleaners imported #. from winapp2.ini #: ../bleachbit/Winapp.py:50 msgid "Multimedia" msgstr "Multimedia" #. TRANSLATORS: This is cleaner name for cleaners imported #. from winapp2.ini #: ../bleachbit/Winapp.py:53 msgid "Utilities" msgstr "Hulpmiddelen" #: ../bleachbit/Winapp.py:64 msgid "Games" msgstr "Spellen" #: ../bleachbit/Winapp.py:162 msgid "Imported from winapp2.ini" msgstr "Geïmporteerd van winapp2.ini" #: ../bleachbit/Cleaner.py:197 msgid "Crash reports" msgstr "Crash-rapporten" #: ../bleachbit/Cleaner.py:204 msgid "Session restore" msgstr "Sessie herstellen" #: ../bleachbit/Cleaner.py:205 msgid "Loads the initial session after the browser closes or crashes" msgstr "Laadt de laatste sessie nadat de browser is afgesloten of gecrasht" #: ../bleachbit/Cleaner.py:207 msgid "Site preferences" msgstr "Sitevoorkeuren" #: ../bleachbit/Cleaner.py:207 msgid "Settings for individual sites" msgstr "Instellingen voor individuele sites" #. TRANSLATORS: desktop entries are .desktop files in Linux that #. make up the application menu (the menu that shows BleachBit, #. Firefox, and others. The .desktop files also associate file #. types, so clicking on an .html file in Nautilus brings up #. Firefox. #. More information: #. http://standards.freedesktop.org/menu-spec/latest/index.html#introduction #: ../bleachbit/Cleaner.py:453 msgid "Broken desktop files" msgstr "Gebroken menu- en bestandsverwijzingen" #: ../bleachbit/Cleaner.py:454 msgid "Delete broken application menu entries and file associations" msgstr "Verwijder gebroken programma-menu-items en bestandsverwijzingen" #. TRANSLATORS: Localizations are files supporting specific #. languages, so applications appear in Spanish, etc. #: ../bleachbit/Cleaner.py:458 msgid "Localizations" msgstr "Taalbestanden" #: ../bleachbit/Cleaner.py:459 msgid "Delete files for unwanted languages" msgstr "Verwijder bestanden van niet gewenste talen" #: ../bleachbit/Cleaner.py:461 msgid "Configure this option in the preferences." msgstr "Deze optie instellen in de voorkeuren." #: ../bleachbit/Cleaner.py:467 msgid "Rotated logs" msgstr "Geroteerde logbestanden" #: ../bleachbit/Cleaner.py:467 msgid "Delete old system logs" msgstr "Verwijder de oude systeemlogbestanden" #: ../bleachbit/Cleaner.py:470 msgid "Trash" msgstr "Prullenbak" #: ../bleachbit/Cleaner.py:470 msgid "Empty the trash" msgstr "Prullenbak legen" #: ../bleachbit/Cleaner.py:476 ../bleachbit/Cleaner.py:627 #: ../bleachbit/Worker.py:184 msgid "Memory" msgstr "Geheugen" #. TRANSLATORS: 'free' means 'unallocated' #: ../bleachbit/Cleaner.py:478 msgid "Wipe the swap and free memory" msgstr "Wis de swap en het vrije RAM-geheugen" #: ../bleachbit/Cleaner.py:480 msgid "This option is experimental and may cause system problems." msgstr "Deze optie is experimenteel en kan systeemproblemen veroorzaken." #: ../bleachbit/Cleaner.py:488 msgid "Memory dump" msgstr "Geheugendump" #: ../bleachbit/Cleaner.py:488 msgid "Delete the file memory.dmp" msgstr "Verwijder het bestand memory.dmp" #. TRANSLATORS: Prefetch is Microsoft Windows jargon. #: ../bleachbit/Cleaner.py:491 msgid "Prefetch" msgstr "Ophalen" #: ../bleachbit/Cleaner.py:493 msgid "Recycle bin" msgstr "Prullenbak" #: ../bleachbit/Cleaner.py:493 ../bleachbit/Cleaner.py:787 msgid "Empty the recycle bin" msgstr "Leegt de prullenbak" #. TRANSLATORS: 'Update' is a noun, and 'Update uninstallers' is an option to delete #. the uninstallers for software updates. #: ../bleachbit/Cleaner.py:496 msgid "Update uninstallers" msgstr "Software-updateverwijderaars bijwerken" #: ../bleachbit/Cleaner.py:497 msgid "" "Delete uninstallers for Microsoft updates including hotfixes, service packs, " "and Internet Explorer updates" msgstr "" "Software-updateverwijderaars verwijderen voor Microsoft-updates, inclusief " "hotfixes, service packs en Internet Explorer-updates" #: ../bleachbit/Cleaner.py:504 ../bleachbit/Cleaner.py:727 msgid "Clipboard" msgstr "Klembord" #: ../bleachbit/Cleaner.py:505 msgid "" "The desktop environment's clipboard used for copy and paste operations" msgstr "" "Het klembord van de werkomgeving dat wordt gebruikt voor kopiëren en plakken" #. TRANSLATORS: "Custom" is an option allowing the user to specify which #. files and folders will be erased. #: ../bleachbit/Cleaner.py:512 ../bleachbit/GuiPreferences.py:66 msgid "Custom" msgstr "Aangepast" #: ../bleachbit/Cleaner.py:513 msgid "Delete user-specified files and folders" msgstr "Door gebruiker aangegeven bestanden en mappen verwijderen" #. TRANSLATORS: 'free' means 'unallocated' #: ../bleachbit/Cleaner.py:515 msgid "Free disk space" msgstr "Vrije schijfruimte" #. TRANSLATORS: 'free' means 'unallocated' #: ../bleachbit/Cleaner.py:517 msgid "Overwrite free disk space to hide deleted files" msgstr "" "Overschrijft de vrije schijfruimte om verwijderde bestanden te verbergen" #: ../bleachbit/Cleaner.py:518 msgid "This option is very slow." msgstr "Deze optie is erg langzaam." #: ../bleachbit/Cleaner.py:522 msgid "The system in general" msgstr "Het systeem in het algemeen" #: ../bleachbit/Cleaner.py:524 ../bleachbit/Cleaner.py:857 msgid "System" msgstr "Systeem" #. TRANSLATORS: 'Free' means 'unallocated.' #. %s expands to a path such as C:\ or /tmp/ #: ../bleachbit/Cleaner.py:735 ../bleachbit/Cleaner.py:890 #, python-format msgid "Overwrite free disk space %s" msgstr "Overschrijf de vrije schijfruimte op %s" #: ../bleachbit/RecognizeCleanerML.py:59 msgid "Security warning" msgstr "Beveiligingswaarschuwing" #: ../bleachbit/RecognizeCleanerML.py:72 msgid "" "These cleaner definitions are new or have changed. Malicious definitions can " "damage your system. If you do not trust these changes, delete the files or " "quit." msgstr "" "Deze opschoon-definities zijn nieuw of gewijzigd. Kwaadaardige definities " "kunnen uw systeem beschadigen. Als u deze wijzigingen niet vertrouwt moet u " "deze bestanden verwijderen of afsluiten." #: ../bleachbit/RecognizeCleanerML.py:88 msgctxt "column_label" msgid "Delete" msgstr "Verwijderen" #: ../bleachbit/RecognizeCleanerML.py:93 msgctxt "column_label" msgid "Filename" msgstr "Bestandsnaam" #. TRANSLATORS: This indicates an error. The special keyword #. %(operation)s will be replaced by 'firefox' or 'opera' or #. some other cleaner ID. The special keyword %(msg)s will be #. replaced by a message such as 'Permission denied.' #: ../bleachbit/Worker.py:74 #, python-format msgid "Exception while running operation '%(operation)s': '%(msg)s'" msgstr "Fout bij het uitvoeren van optie ‘%(operation)s’: ‘%(msg)s’" #. TRANSLATORS: 'free' means 'unallocated' #: ../bleachbit/Worker.py:182 msgid "Please wait. Wiping free disk space." msgstr "Een moment geduld, bezig met wissen van vrije schijfruimte." #. TRANSLATORS: %s is replaced with Firefox, System, etc. #: ../bleachbit/Worker.py:184 ../bleachbit/Worker.py:332 #, python-format msgid "Please wait. Cleaning %s." msgstr "Een moment geduld. %s wordt opgeschoond." #: ../bleachbit/Worker.py:199 msgid "Please wait. Wiping file system metadata." msgstr "" "Een moment geduld, bezig met wissen van de bestandssysteemmeta-informatie." #: ../bleachbit/Worker.py:202 msgid "Please wait. Cleaning up after wiping file system metadata." msgstr "" "Een moment geduld, bezig met opschonen na het wissen van de " "bestandssysteemmeta-informatie." #: ../bleachbit/Worker.py:205 #, python-format msgid "About %d minute remaining." msgid_plural "About %d minutes remaining." msgstr[0] "Ongeveer %d minuut resterend." msgstr[1] "Ongeveer %d minuten resterend." #. TRANSLATORS: This refers to disk space that was #. really recovered (in other words, not a preview) #: ../bleachbit/Worker.py:272 #, python-format msgid "Disk space recovered: %s" msgstr "Vrijgekomen schijfruimte: %s" #. TRANSLATORS: This refers to a preview (no real #. changes were made yet) #: ../bleachbit/Worker.py:276 #, python-format msgid "Disk space to be recovered: %s" msgstr "Grootte vrijkomende schijfruimte: %s" #. TRANSLATORS: This refers to the number of files really #. deleted (in other words, not a preview). #: ../bleachbit/Worker.py:281 #, python-format msgid "Files deleted: %d" msgstr "Verwijderde bestanden: %d" #. TRANSLATORS: This refers to the number of files that #. would be deleted (in other words, simply a preview). #: ../bleachbit/Worker.py:285 #, python-format msgid "Files to be deleted: %d" msgstr "Te verwijderen bestanden: %d" #: ../bleachbit/Worker.py:288 #, python-format msgid "Special operations: %d" msgstr "Speciale opties: %d" #: ../bleachbit/Worker.py:291 #, python-format msgid "Errors: %d" msgstr "Fouten: %d" #. TRANSLATORS: The "deep scan" feature searches over broad #. areas of the file system such as the user's whole home directory #. or all the system executables. #: ../bleachbit/Worker.py:306 msgid "Please wait. Running deep scan." msgstr "Een moment geduld, bezig met een diepe scan." #. TRANSLATORS: %s is replaced with Firefox, System, etc. #: ../bleachbit/Worker.py:335 #, python-format msgid "Please wait. Previewing %s." msgstr "Een moment geduld. %s wordt bekeken." #: ../bleachbit/Update.py:80 msgid "New winapp2.ini was downloaded." msgstr "Nieuwe winapp2.ini werd gedownload." #: ../bleachbit/Update.py:125 msgid "Update BleachBit" msgstr "BleachBit-update" #: ../bleachbit/Update.py:130 msgid "A new version is available." msgstr "Er is een nieuwe versie beschikbaar." #. TRANSLATORS: %s expands to version such as '0.8.4' or '0.8.5beta' or #. similar #: ../bleachbit/Update.py:139 #, python-format msgid "Update to version %s" msgstr "Bijwerken naar versie %s" #: ../bleachbit/Update.py:164 #, python-format msgid "" "Error when opening a network connection to %s to check for updates. Please " "verify the network is working." msgstr "" "Fout bij het maken van een netwerkverbinding met %s om te zoeken naar " "updates. Controleer a.u.b. of het netwerk goed werkt." #: ../bleachbit/CLI.py:106 #, python-format msgid "not a valid cleaner: %s" msgstr "geen geldige opschoner: %s" #. TRANSLATORS: This is the command line usage. Don't translate #. %prog, but do translate usage, options, cleaner, and option. #. More information about the command line is here #. https://www.bleachbit.org/documentation/command-line #: ../bleachbit/CLI.py:133 msgid "usage: %prog [options] cleaner.option1 cleaner.option2" msgstr "Gebruik: %prog [opties] cleaner.optie1 cleaner.optie2" #: ../bleachbit/CLI.py:136 msgid "list cleaners" msgstr "opschoners tonen" #. TRANSLATORS: predefined cleaners are for applications, such as Firefox and Flash. #. This is different than cleaning an arbitrary file, such as a #. spreadsheet on the desktop. #: ../bleachbit/CLI.py:141 msgid "run cleaners to delete files and make other permanent changes" msgstr "" "start de opschoners om bestanden te verwijderen en om andere permanente " "wijzigingen te maken" #: ../bleachbit/CLI.py:144 msgid "shred specific files or folders" msgstr "aangegeven bestanden of mappen shredden" #: ../bleachbit/CLI.py:146 msgid "show system information" msgstr "systeeminformatie tonen" #: ../bleachbit/CLI.py:148 msgid "launch the graphical interface" msgstr "De grafische interface starten" #: ../bleachbit/CLI.py:152 msgid "do not prompt for administrator privileges" msgstr "vraag niet om het beheerderswachtwoord" #: ../bleachbit/CLI.py:157 msgid "preview files to be deleted and other changes" msgstr "bekijk de wijzigingen en bestanden die verwijdert zullen worden" #: ../bleachbit/CLI.py:161 msgid "use options set in the graphical interface" msgstr "Gebruik opties ingesteld in de grafische interface" #: ../bleachbit/CLI.py:164 msgid "update winapp2.ini, if a new version is available" msgstr "winapp2.ini bijwerken, wanneer er een nieuwe versie beschikbaar is" #: ../bleachbit/CLI.py:166 msgid "output version information and exit" msgstr "versie-informatie tonen en afsluiten" #: ../bleachbit/CLI.py:168 msgid "overwrite files to hide contents" msgstr "overschrijf bestanden om de inhoud te verbergen" #. TRANSLATORS: this is the context menu #: ../bleachbit/Action.py:382 ../bleachbit/GUI.py:632 msgid "Clean" msgstr "Opschonen" #: ../bleachbit/Action.py:418 #, python-format msgid "Run external command: %s" msgstr "Voer de volgende externe opdracht uit: %s" #: ../bleachbit/GUI.py:135 ../bleachbit/GuiPreferences.py:296 msgid "Name" msgstr "Naam" #: ../bleachbit/GUI.py:143 msgid "Active" msgstr "Actief" #. TRANSLATORS: Size is the label for the column that shows how #. much space an option would clean or did clean #: ../bleachbit/GUI.py:155 msgid "Size" msgstr "Grootte" #. TRANSLATORS: %(cleaner) may be Firefox, System, etc. #. %(option) may be cache, logs, cookies, etc. #. %(warning) may be 'This option is really slow' #: ../bleachbit/GUI.py:186 #, python-format msgid "" "Warning regarding %(cleaner)s - %(option)s:\n" "\n" "%(warning)s" msgstr "" "Waarschuwing voor %(cleaner)s - %(option)s:\n" "\n" "%(warning)s" #: ../bleachbit/GUI.py:372 msgid "You must select an operation" msgstr "U moet een optie selecteren" #: ../bleachbit/GUI.py:391 ../bleachbit/GUI.py:413 msgid "Done." msgstr "Gereed." #: ../bleachbit/GUI.py:426 msgid "Program to clean unnecessary files" msgstr "Programma om overbodige bestanden te verwijderen" #: ../bleachbit/GUI.py:436 msgid "" "GNU General Public License version 3 or later.\n" "See http://www.gnu.org/licenses/gpl-3.0.txt" msgstr "" "GNU Algemene Publieke Licentie versie 3 of later.\n" "Zie http://www.gnu.org/licenses/gpl-3.0.txt" #. TRANSLATORS: Maintain the names of translators here. #. Launchpad does this automatically for translations #. typed in Launchpad. This is a special string shown #. in the 'About' box. #: ../bleachbit/GUI.py:442 msgid "translator-credits" msgstr "" "Launchpad Contributions:\n" " Dooitze de Jong https://launchpad.net/~dooitze\n" " Fly-Man- https://launchpad.net/~flyman\n" " Glennz nl https://launchpad.net/~glenn-de-groot\n" " Heimen Stoffels https://launchpad.net/~vistaus\n" " Peter Schelleman https://launchpad.net/~peterschelleman\n" " Rachid https://launchpad.net/~rachidbm\n" " Redmar https://launchpad.net/~redmar\n" " UndiFineD https://launchpad.net/~k.dejong\n" " jvrimshot https://launchpad.net/~jvrimshot\n" " poepoog https://launchpad.net/~dukerat\n" " rob https://launchpad.net/~rvdb" #: ../bleachbit/GUI.py:454 msgid "System information" msgstr "Systeeminformatie" #: ../bleachbit/GUI.py:527 msgid "Choose files to shred" msgstr "Selecteer bestanden om te shredden" #: ../bleachbit/GUI.py:530 msgid "Choose folder to shred" msgstr "Selecteer map om te vernietigen" #: ../bleachbit/GUI.py:594 ../bleachbit/GuiPreferences.py:197 #: ../bleachbit/GuiPreferences.py:326 ../bleachbit/GuiPreferences.py:367 msgid "Choose a folder" msgstr "Selecteer een map" #. TRANSLATORS: this is the context menu #: ../bleachbit/GUI.py:627 msgid "Preview" msgstr "Bekijken" #: ../bleachbit/GUI.py:734 msgid "_Shred Files" msgstr "Bestanden _vernietigen" #: ../bleachbit/GUI.py:736 msgid "Sh_red Folders" msgstr "Mappen sh_redden" #: ../bleachbit/GUI.py:738 msgid "_Wipe Free Space" msgstr "Vrije ruimte _wissen" #: ../bleachbit/GUI.py:740 msgid "S_hred Settings and Quit" msgstr "Instellingen vernietigen en afsluiten" #: ../bleachbit/GUI.py:742 msgid "_Quit" msgstr "_Afsluiten" #: ../bleachbit/GUI.py:744 msgid "_File" msgstr "_Bestand" #: ../bleachbit/GUI.py:746 ../bleachbit/GuiPreferences.py:58 msgid "Preferences" msgstr "Voorkeuren" #: ../bleachbit/GUI.py:747 msgid "_Edit" msgstr "B_ewerken" #: ../bleachbit/GUI.py:748 msgid "Help Contents" msgstr "Hulpinhoud" #: ../bleachbit/GUI.py:751 msgid "_Release Notes" msgstr "_Uitgavenotities" #: ../bleachbit/GUI.py:754 msgid "_System Information" msgstr "_Systeeminformatie" #: ../bleachbit/GUI.py:757 msgid "_About" msgstr "I_nfo" #: ../bleachbit/GUI.py:758 msgid "_Help" msgstr "_Hulp" #: ../bleachbit/GUI.py:783 msgctxt "button" msgid "Preview" msgstr "Voorbeeld" #: ../bleachbit/GUI.py:788 msgid "Preview files in the selected operations (without deleting any files)" msgstr "" "Bekijk bestanden van de geselecteerde opties (zonder de bestanden te " "verwijderen)" #: ../bleachbit/GUI.py:798 msgctxt "button" msgid "Clean" msgstr "Opschonen" #: ../bleachbit/GUI.py:802 msgid "Clean files in the selected operations" msgstr "Verwijder bestanden van de geselecteerde opties" #: ../bleachbit/GUI.py:893 msgid "Error when checking for updates: " msgstr "Fout bij het zoeken naar updates: " #: ../bleachbit/GUI.py:932 msgid "" "Error loading the SQLite module: the antivirus software may be blocking it." msgstr "" "Fout bij het laden van de SQLite-module: mogelijk wordt deze geblokkeerd " "door de antivirussoftware." #: ../bleachbit/GUI.py:935 msgid "" "You are running BleachBit with administrative privileges for cleaning shared " "parts of the system, and references to the user profile folder will clean " "only the root account." msgstr "" "U gebruikt BleachBit met een beheerderswachtwoord voor het opschonen van " "gedeelde gedeeltes van het systeem, en referenties voor de " "gebruikersprofielmap die alleen het rootaccount opschonen." #: ../bleachbit/GUI.py:940 msgid "" "Run BleachBit with administrator privileges to improve the accuracy of " "overwriting the contents of files." msgstr "" "Voer BleachBit uit met beheerdersrechten om de nauwkeurigheid van het " "overschrijven van de inhoud van bestanden te verbeteren." #: ../bleachbit/GuiPreferences.py:64 msgid "General" msgstr "Algemeen" #: ../bleachbit/GuiPreferences.py:67 msgid "Drives" msgstr "Schijven" #: ../bleachbit/GuiPreferences.py:70 msgid "Languages" msgstr "Talen" #: ../bleachbit/GuiPreferences.py:72 msgid "Whitelist" msgstr "Witte lijst" #: ../bleachbit/GuiPreferences.py:117 msgid "Check periodically for software updates via the Internet" msgstr "Periodiek zoeken naar een software-update op het internet" #: ../bleachbit/GuiPreferences.py:122 msgid "" "If an update is found, you will be given the option to view information " "about it. Then, you may manually download and install the update." msgstr "" "Als een nieuwe versie gevonden wordt, krijgt u de mogelijkheid hier " "informatie over te bekijken. Daarna kunt u de nieuwe versie handmatig " "downloaden en installeren." #: ../bleachbit/GuiPreferences.py:128 msgid "Check for new beta releases" msgstr "Controleer op nieuwe testversies" #: ../bleachbit/GuiPreferences.py:137 msgid "Download and update cleaners from community (winapp2.ini)" msgstr "Opschoners downloaden en bijwerken vanaf gemeenschap (winapp2.ini)" #. TRANSLATORS: This means to hide cleaners which would do #. nothing. For example, if Firefox were never used on #. this system, this option would hide Firefox to simplify #. the list of cleaners. #: ../bleachbit/GuiPreferences.py:151 msgid "Hide irrelevant cleaners" msgstr "Niet relevante opschoners verbergen" #. TRANSLATORS: Overwriting is the same as shredding. It is a way #. to prevent recovery of the data. You could also translate #. 'Shred files to prevent recovery.' #: ../bleachbit/GuiPreferences.py:159 msgid "Overwrite contents of files to prevent recovery" msgstr "Overschrijf de inhoud van bestanden om hersel te verkomen" #: ../bleachbit/GuiPreferences.py:163 msgid "" "Overwriting is ineffective on some file systems and with certain BleachBit " "operations. Overwriting is significantly slower." msgstr "" "Overschrijven is niet effectief op sommige bestandssystemen en voor bepaalde " "Bleachbit-opties. Overschrijven is aanmerkelijk langzamer." #: ../bleachbit/GuiPreferences.py:166 msgid "Start BleachBit with computer" msgstr "BleachBit starten bij het opstarten van de computer" #: ../bleachbit/GuiPreferences.py:172 msgid "Exit after cleaning" msgstr "Afsluiten na opschonen" #: ../bleachbit/GuiPreferences.py:178 msgid "Confirm before delete" msgstr "Verwijderen bevestigen" #: ../bleachbit/GuiPreferences.py:186 msgid "Use IEC sizes (1 KiB = 1024 bytes) instead of SI (1 kB = 1000 bytes)" msgstr "" "IEC-groottes (1 KiB = 1024 bytes) gebruiken in plaats van SI (1 kB = 1000 " "bytes)" #: ../bleachbit/GuiPreferences.py:221 msgid "" "Choose a writable folder for each drive for which to overwrite free space." msgstr "" "Selecteer een schrijfbare map voor elke schijf om de vrije schijfruimte te " "overschrijven." #. TRANSLATORS: In the preferences dialog, this button adds a path to #. the list of paths #: ../bleachbit/GuiPreferences.py:243 msgctxt "button" msgid "Add" msgstr "Toevoegen" #. TRANSLATORS: In the preferences dialog, this button removes a path #. from the list of paths #: ../bleachbit/GuiPreferences.py:247 ../bleachbit/GuiPreferences.py:458 msgctxt "button" msgid "Remove" msgstr "Verwijderen" #: ../bleachbit/GuiPreferences.py:272 msgid "All languages will be deleted except those checked." msgstr "Alle talen zullen verwijderd worden, behalve de aangevinkte talen." #: ../bleachbit/GuiPreferences.py:288 msgid "Preserve" msgstr "Behouden" #: ../bleachbit/GuiPreferences.py:292 msgid "Code" msgstr "Code" #: ../bleachbit/GuiPreferences.py:313 ../bleachbit/GuiPreferences.py:354 msgid "Choose a file" msgstr "Selecteer een bestand" #: ../bleachbit/GuiPreferences.py:320 ../bleachbit/GuiPreferences.py:361 #: ../bleachbit/GuiPreferences.py:405 msgid "File" msgstr "Bestand" #: ../bleachbit/GuiPreferences.py:334 ../bleachbit/GuiPreferences.py:375 #: ../bleachbit/GuiPreferences.py:407 msgid "Folder" msgstr "Map" #: ../bleachbit/GuiPreferences.py:417 msgid "Theses paths will not be deleted or modified." msgstr "Deze locaties zullen niet verwijderd of aangepast worden." #: ../bleachbit/GuiPreferences.py:420 msgid "These locations can be selected for deletion." msgstr "Deze locaties kunnen geselecteerd worden voor verwijdering." #: ../bleachbit/GuiPreferences.py:428 msgid "Type" msgstr "Type" #. TRANSLATORS: In the tree view "Path" is used generically to refer to a #. file, a folder, or a pattern describing either #: ../bleachbit/GuiPreferences.py:434 msgid "Path" msgstr "Locatie" #: ../bleachbit/GuiPreferences.py:446 msgctxt "button" msgid "Add file" msgstr "Bestand toevoegen" #: ../bleachbit/GuiPreferences.py:452 msgctxt "button" msgid "Add folder" msgstr "Map toevoegen" bleachbit-2.0/po/he.po0000644000175000017500000014254213245436307012763 0ustar hlehle# Hebrew translation for bleachbit # Copyright (c) 2009 Rosetta Contributors and Canonical Ltd 2009 # This file is distributed under the same license as the bleachbit package. # FIRST AUTHOR , 2009. # msgid "" msgstr "" "Project-Id-Version: bleachbit\n" "Report-Msgid-Bugs-To: FULL NAME \n" "POT-Creation-Date: 2017-02-11 11:12-0700\n" "PO-Revision-Date: 2017-02-15 09:15+0000\n" "Last-Translator: Yaron \n" "Language-Team: Hebrew \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n != 1;\n" "X-Launchpad-Export-Date: 2017-02-16 05:01+0000\n" "X-Generator: Launchpad (build 18326)\n" #: ../cleaners/mc.xml ../cleaners/tortoisesvn.xml ../cleaners/vim.xml #: ../cleaners/safari.xml ../cleaners/links2.xml ../cleaners/seamonkey.xml #: ../cleaners/realplayer.xml ../cleaners/windows_defender.xml #: ../cleaners/d4x.xml ../cleaners/sqlite3.xml #: ../cleaners/internet_explorer.xml ../cleaners/libreoffice.xml #: ../cleaners/easytag.xml ../cleaners/bash.xml ../cleaners/nautilus.xml #: ../cleaners/octave.xml ../cleaners/elinks.xml ../cleaners/chromium.xml #: ../cleaners/google_chrome.xml msgid "History" msgstr "היסטוריה" #: ../cleaners/mc.xml ../cleaners/tortoisesvn.xml ../cleaners/links2.xml #: ../cleaners/realplayer.xml ../cleaners/d4x.xml ../cleaners/libreoffice.xml #: ../cleaners/easytag.xml ../cleaners/nautilus.xml ../cleaners/gnome.xml #: ../bleachbit/Cleaner.py:349 ../bleachbit/Cleaner.py:423 #: ../bleachbit/Cleaner.py:432 msgid "Delete the usage history" msgstr "מחיקת היסטוריית השימוש" #: ../cleaners/gpodder.xml ../cleaners/hippo_opensim_viewer.xml #: ../cleaners/thumbnails.xml ../cleaners/safari.xml ../cleaners/emesene.xml #: ../cleaners/liferea.xml ../cleaners/seamonkey.xml ../cleaners/vuze.xml #: ../cleaners/yahoo_messenger.xml ../cleaners/pidgin.xml #: ../cleaners/adobe_reader.xml ../cleaners/evolution.xml #: ../cleaners/tremulous.xml ../cleaners/libreoffice.xml ../cleaners/xine.xml #: ../cleaners/nexuiz.xml ../cleaners/exaile.xml ../cleaners/opera.xml #: ../cleaners/amsn.xml ../cleaners/gftp.xml ../cleaners/miro.xml #: ../cleaners/beagle.xml ../cleaners/kde.xml ../cleaners/epiphany.xml #: ../cleaners/flash.xml ../cleaners/secondlife_viewer.xml ../cleaners/java.xml #: ../cleaners/chromium.xml ../cleaners/audacious.xml ../cleaners/rhythmbox.xml #: ../cleaners/google_chrome.xml ../cleaners/thunderbird.xml #: ../bleachbit/Cleaner.py:192 ../bleachbit/Cleaner.py:370 #: ../bleachbit/Cleaner.py:455 msgid "Cache" msgstr "מטמון" #: ../cleaners/gpodder.xml ../cleaners/yum.xml #: ../cleaners/hippo_opensim_viewer.xml ../cleaners/thumbnails.xml #: ../cleaners/windows_explorer.xml ../cleaners/liferea.xml #: ../cleaners/vuze.xml ../cleaners/yahoo_messenger.xml ../cleaners/pidgin.xml #: ../cleaners/adobe_reader.xml ../cleaners/evolution.xml #: ../cleaners/libreoffice.xml ../cleaners/apt.xml ../cleaners/xine.xml #: ../cleaners/nexuiz.xml ../cleaners/exaile.xml ../cleaners/amsn.xml #: ../cleaners/gftp.xml ../cleaners/miro.xml ../cleaners/beagle.xml #: ../cleaners/kde.xml ../cleaners/flash.xml ../cleaners/secondlife_viewer.xml #: ../cleaners/java.xml ../cleaners/audacious.xml ../cleaners/rhythmbox.xml #: ../bleachbit/Cleaner.py:370 ../bleachbit/Cleaner.py:455 #: ../bleachbit/Cleaner.py:489 ../bleachbit/Cleaner.py:491 msgid "Delete the cache" msgstr "מחיקת המטמון" #. TRANSLATORS: Vacuum is a verb. The term is jargon #. from the SQLite database. Microsoft Access uses #. the term 'Compact Database' (which you may translate #. instead). Another synonym is 'defragment.' #: ../cleaners/gpodder.xml ../cleaners/yum.xml ../cleaners/safari.xml #: ../cleaners/liferea.xml ../cleaners/chromium.xml #: ../cleaners/google_chrome.xml ../cleaners/thunderbird.xml #: ../bleachbit/Cleaner.py:214 ../bleachbit/Cleaner.py:360 #: ../bleachbit/Action.py:445 msgid "Vacuum" msgstr "ואקום" #: ../cleaners/gpodder.xml ../cleaners/yum.xml ../cleaners/safari.xml #: ../cleaners/liferea.xml ../cleaners/chromium.xml #: ../cleaners/google_chrome.xml ../cleaners/thunderbird.xml #: ../bleachbit/Cleaner.py:215 msgid "" "Clean database fragmentation to reduce space and improve speed without " "removing any data" msgstr "" "ניקוי פיצול מסד הנתונים כדי להפחית בנפחו ולשפר את מהירותו מבלי להסיר כל מידע" #: ../cleaners/yum.xml ../cleaners/apt.xml msgid "Package manager" msgstr "מנהל חבילות" #: ../cleaners/warzone2100.xml ../cleaners/hippo_opensim_viewer.xml #: ../cleaners/gl-117.xml ../cleaners/tremulous.xml ../cleaners/nexuiz.xml #: ../cleaners/secondlife_viewer.xml msgid "Game" msgstr "משחק" #: ../cleaners/warzone2100.xml ../cleaners/hippo_opensim_viewer.xml #: ../cleaners/teamviewer.xml ../cleaners/realplayer.xml ../cleaners/vuze.xml #: ../cleaners/yahoo_messenger.xml ../cleaners/amule.xml #: ../cleaners/easytag.xml ../cleaners/exaile.xml ../cleaners/screenlets.xml #: ../cleaners/gftp.xml ../cleaners/miro.xml ../cleaners/audacious.xml #: ../bleachbit/Cleaner.py:486 msgid "Logs" msgstr "יומנים" #: ../cleaners/warzone2100.xml ../cleaners/hippo_opensim_viewer.xml #: ../cleaners/teamviewer.xml ../cleaners/realplayer.xml ../cleaners/vuze.xml #: ../cleaners/yahoo_messenger.xml ../cleaners/amule.xml ../cleaners/exaile.xml #: ../cleaners/screenlets.xml ../cleaners/gftp.xml ../cleaners/miro.xml #: ../cleaners/audacious.xml ../bleachbit/Cleaner.py:486 msgid "Delete the logs" msgstr "מחיקת היומנים" #: ../cleaners/thumbnails.xml ../cleaners/windows_explorer.xml msgid "Thumbnails" msgstr "תמונות ממוזערות" #: ../cleaners/thumbnails.xml msgid "Icons for files on the system" msgstr "סמלים לקבצים במערכת" #: ../cleaners/vim.xml ../cleaners/gedit.xml msgid "Editor" msgstr "עורך" #: ../cleaners/vim.xml msgid "" "Delete ~/.viminfo which includes file history, command history, and buffers" msgstr "מחיקת ~/.viminfo המכיל היסטוריית קבצים, היסטוריית פקודות וחוצצים" #: ../cleaners/filezilla.xml ../cleaners/transmission.xml ../cleaners/vuze.xml #: ../cleaners/amule.xml ../cleaners/gftp.xml msgid "File transfer client" msgstr "לקוח העברת קבצים" #: ../cleaners/filezilla.xml ../cleaners/paint.xml #: ../cleaners/windows_media_player.xml ../cleaners/windows_explorer.xml #: ../cleaners/teamviewer.xml ../cleaners/microsoft_office.xml #: ../cleaners/vlc.xml ../cleaners/adobe_reader.xml ../cleaners/winamp.xml #: ../cleaners/winzip.xml ../cleaners/winrar.xml ../cleaners/audacious.xml #: ../cleaners/wordpad.xml ../bleachbit/Cleaner.py:371 msgid "Most recently used" msgstr "בשימוש לאחרונה" #: ../cleaners/filezilla.xml ../cleaners/windows_explorer.xml #: ../cleaners/gwenview.xml ../cleaners/adobe_reader.xml ../cleaners/gedit.xml #: ../cleaners/kde.xml ../cleaners/audacious.xml ../bleachbit/Cleaner.py:372 #: ../bleachbit/Cleaner.py:469 msgid "Delete the list of recently used documents" msgstr "מחיקת רשימת המסמכים האחרונים" #: ../cleaners/skype.xml ../cleaners/emesene.xml #: ../cleaners/yahoo_messenger.xml ../cleaners/pidgin.xml ../cleaners/amsn.xml msgid "Chat client" msgstr "לקוח צ'אט" #: ../cleaners/skype.xml ../cleaners/hexchat.xml ../cleaners/emesene.xml #: ../cleaners/seamonkey.xml ../cleaners/yahoo_messenger.xml #: ../cleaners/pidgin.xml ../cleaners/amsn.xml msgid "Chat logs" msgstr "יומני צ'אט" #: ../cleaners/skype.xml ../cleaners/hexchat.xml ../cleaners/emesene.xml #: ../cleaners/seamonkey.xml ../cleaners/yahoo_messenger.xml #: ../cleaners/pidgin.xml ../cleaners/amsn.xml msgid "Delete the chat logs" msgstr "מחיקת יומני השיחה" #: ../cleaners/skype.xml msgid "Installers" msgstr "תכניות התקנה" #: ../cleaners/skype.xml msgid "Delete cached patches and installers" msgstr "מחיקת טלאים והתקנות שנשמרו" #: ../cleaners/hexchat.xml msgid "IRC client formerly known as XChat" msgstr "לקוח IRC, לשעבר XChat" #: ../cleaners/safari.xml ../cleaners/links2.xml ../cleaners/seamonkey.xml #: ../cleaners/konqueror.xml ../cleaners/internet_explorer.xml #: ../cleaners/opera.xml ../cleaners/epiphany.xml ../cleaners/elinks.xml #: ../cleaners/chromium.xml ../cleaners/google_chrome.xml #: ../bleachbit/Cleaner.py:226 msgid "Web browser" msgstr "דפדפן אינטרנט" #: ../cleaners/safari.xml ../cleaners/seamonkey.xml ../cleaners/opera.xml #: ../cleaners/epiphany.xml ../cleaners/chromium.xml #: ../cleaners/google_chrome.xml ../cleaners/thunderbird.xml #: ../bleachbit/Cleaner.py:193 msgid "Delete the web cache, which reduces time to display revisited pages" msgstr "מחיקת מטמון הרשת, המפחית את הזמן שנדרש עד להצגת דפים בביקור החוזר" #: ../cleaners/safari.xml ../cleaners/liferea.xml ../cleaners/seamonkey.xml #: ../cleaners/realplayer.xml ../cleaners/konqueror.xml #: ../cleaners/internet_explorer.xml ../cleaners/opera.xml #: ../cleaners/epiphany.xml ../cleaners/flash.xml ../cleaners/silverlight.xml #: ../cleaners/chromium.xml ../cleaners/google_chrome.xml #: ../cleaners/thunderbird.xml ../bleachbit/Cleaner.py:194 msgid "Cookies" msgstr "עוגיות" #: ../cleaners/safari.xml ../cleaners/liferea.xml ../cleaners/seamonkey.xml #: ../cleaners/realplayer.xml ../cleaners/konqueror.xml #: ../cleaners/internet_explorer.xml ../cleaners/opera.xml #: ../cleaners/epiphany.xml ../cleaners/flash.xml ../cleaners/silverlight.xml #: ../cleaners/chromium.xml ../cleaners/google_chrome.xml #: ../cleaners/thunderbird.xml ../bleachbit/Cleaner.py:195 msgid "" "Delete cookies, which contain information such as web site preferences, " "authentication, and tracking identification" msgstr "" "מחיקת עוגיות, המכילות מידע כגון העדפות, אימות ונתוני מעקב לאתרי אינטרנט." #: ../cleaners/safari.xml ../cleaners/konqueror.xml #: ../cleaners/internet_explorer.xml ../cleaners/opera.xml #: ../bleachbit/Cleaner.py:213 msgid "List of visited web pages" msgstr "רשימת האתרים בהם ביקרתם" #. Torrent software can block a list of IP addresses, such as those that may belong to malware or anti-piracy organizations #: ../cleaners/transmission.xml msgid "Blocklists" msgstr "רשימות חסימה" #: ../cleaners/transmission.xml ../cleaners/windows_defender.xml #: ../cleaners/beagle.xml ../cleaners/thunderbird.xml ../cleaners/deepscan.xml #: ../bleachbit/Cleaner.py:197 msgid "Delete the files" msgstr "מחיקת הקבצים" #: ../cleaners/transmission.xml msgid "Blocklists will need update to work." msgstr "יש לעדכן את רשימות החסימה כדי שתפעלנה." #: ../cleaners/transmission.xml msgid "Torrents" msgstr "טורנטים" #: ../cleaners/transmission.xml msgid "Delete the torrents (just the metadata but not the files described)" msgstr "מחיקת הטורנטים (רק את המידע על הקבצים אבל לא את הקבצים עצמם)" #: ../cleaners/transmission.xml msgid "Statistics" msgstr "סטטיסטיקה" #: ../cleaners/transmission.xml msgid "Delete the file" msgstr "למחוק את הקובץ" #: ../cleaners/paint.xml ../cleaners/windows_media_player.xml #: ../cleaners/windows_explorer.xml ../cleaners/teamviewer.xml #: ../cleaners/microsoft_office.xml ../cleaners/vlc.xml ../cleaners/winamp.xml #: ../cleaners/winzip.xml ../cleaners/winrar.xml ../cleaners/wordpad.xml msgid "Delete the most recently used list" msgstr "מחיקת רשימת הפריטים בהם נעשה שימוש לאחרונה" #: ../cleaners/emesene.xml msgid "Delete the avatars and emoticons cache" msgstr "מחיקת מטמון תמונות המשתמשים והרגשונים" #: ../cleaners/windows_media_player.xml ../cleaners/realplayer.xml #: ../cleaners/vlc.xml ../cleaners/winamp.xml msgid "Media player" msgstr "נגן מדיה" #: ../cleaners/windows_explorer.xml ../cleaners/nautilus.xml msgid "File manager" msgstr "מנהל הקבצים" #: ../cleaners/windows_explorer.xml ../cleaners/gwenview.xml #: ../cleaners/gedit.xml ../cleaners/kde.xml ../bleachbit/Cleaner.py:468 #: ../bleachbit/Cleaner.py:663 msgid "Recent documents list" msgstr "רשימת המסמכים האחרונים" #: ../cleaners/windows_explorer.xml msgid "" "This option will reset pinned locations in Quick Access to their defaults." msgstr "אפשרות זו תאפס את המיקומים הנעוצים בגישה המהירה לבררות המחדל." #. In Windows 'Run' is the dialog in the Start menu #. In GNOME 'Run' is the dialog shown when typing ALT+F2' #: ../cleaners/windows_explorer.xml ../cleaners/gnome.xml msgid "Run" msgstr "הפעלה" #: ../cleaners/windows_explorer.xml ../cleaners/opera.xml ../cleaners/gnome.xml #: ../cleaners/google_toolbar.xml msgid "Search history" msgstr "הסטורית חיפוש" #: ../cleaners/windows_explorer.xml ../cleaners/opera.xml ../cleaners/gnome.xml #: ../cleaners/google_toolbar.xml msgid "Delete the search history" msgstr "מחיקת היסטוריית החיפוש" #: ../cleaners/windows_explorer.xml msgid "This will restart Windows Explorer." msgstr "פעולה זו תפעיל מחדש את סייר הקבצים של Windows." #: ../cleaners/gl-117.xml ../cleaners/microsoft_office.xml #: ../cleaners/beagle.xml ../cleaners/secondlife_viewer.xml ../cleaners/x11.xml msgid "Debug logs" msgstr "יומני שגיאות" #: ../cleaners/gl-117.xml ../cleaners/microsoft_office.xml #: ../cleaners/easytag.xml ../cleaners/beagle.xml #: ../cleaners/secondlife_viewer.xml ../cleaners/x11.xml msgid "Delete the debug logs" msgstr "מחיקת יומני השגיאות" #: ../cleaners/google_earth.xml ../cleaners/winetricks.xml ../cleaners/vuze.xml #: ../cleaners/adobe_reader.xml ../cleaners/amule.xml ../cleaners/wine.xml #: ../cleaners/internet_explorer.xml ../cleaners/gimp.xml ../cleaners/kde.xml #: ../cleaners/deepscan.xml ../bleachbit/Cleaner.py:520 msgid "Temporary files" msgstr "קבצים זמניים" #: ../cleaners/google_earth.xml ../cleaners/winetricks.xml ../cleaners/vuze.xml #: ../cleaners/adobe_reader.xml ../cleaners/amule.xml ../cleaners/wine.xml #: ../cleaners/internet_explorer.xml ../cleaners/gimp.xml ../cleaners/kde.xml #: ../cleaners/deepscan.xml ../bleachbit/Cleaner.py:520 msgid "Delete the temporary files" msgstr "מחיקת הקבצים הזמניים" #: ../cleaners/seamonkey.xml ../cleaners/opera.xml ../bleachbit/Cleaner.py:201 msgid "Download history" msgstr "היסטוריית ההורדות" #: ../cleaners/seamonkey.xml ../cleaners/opera.xml ../bleachbit/Cleaner.py:201 msgid "List of files downloaded" msgstr "רשימת הקבצים שהורדו" #: ../cleaners/seamonkey.xml msgid "Delete the list of visited web pages" msgstr "מחיקת רשימת האתרים בהם ביקרת" #: ../cleaners/vuze.xml ../cleaners/deepscan.xml ../bleachbit/Cleaner.py:190 msgid "Backup files" msgstr "גיבוי קבצים" #: ../cleaners/vuze.xml ../cleaners/deepscan.xml ../bleachbit/Cleaner.py:191 msgid "Delete the backup files" msgstr "מחיקת קבצי הגיבוי" #: ../cleaners/konqueror.xml ../cleaners/opera.xml ../cleaners/chromium.xml msgid "Current session" msgstr "ההפעלה הנוכחית" #: ../cleaners/konqueror.xml ../cleaners/opera.xml ../cleaners/chromium.xml msgid "Delete the current session" msgstr "מחיקת ההפעלה הנוכחית" #: ../cleaners/konqueror.xml ../cleaners/opera.xml ../bleachbit/Cleaner.py:213 msgid "URL history" msgstr "היסטוריית כתובות" #: ../cleaners/microsoft_office.xml ../cleaners/libreoffice.xml #: ../bleachbit/Cleaner.py:375 msgid "Office suite" msgstr "חבילת תוכנות משרדיות" #: ../cleaners/windows_defender.xml msgid "Anti-virus" msgstr "אנטיוירוס" #: ../cleaners/journald.xml msgid "System journals" msgstr "יומני המערכת" #: ../cleaners/journald.xml msgid "Clean old system journals" msgstr "פינוי יומני מערכת ישנים" #: ../cleaners/adobe_reader.xml msgid "Document viewer" msgstr "מציג מסמכים" #: ../cleaners/evolution.xml ../cleaners/thunderbird.xml msgid "Email client" msgstr "לקוח דוא״ל" #: ../cleaners/tremulous.xml msgid "Delete the list of game servers" msgstr "מחיקת רשימת שרתי המשחק" #: ../cleaners/sqlite3.xml ../cleaners/bash.xml ../cleaners/octave.xml msgid "Delete the command history" msgstr "מחיקת היסטוריית הפקודות" #: ../cleaners/wine.xml msgid "Compatibility layer for Windows software" msgstr "שכבת התאמה לתכניות Windows" #: ../cleaners/internet_explorer.xml ../cleaners/chromium.xml #: ../cleaners/google_chrome.xml ../bleachbit/Cleaner.py:202 msgid "Form history" msgstr "היסטוריית הטפסים" #: ../cleaners/internet_explorer.xml ../bleachbit/Cleaner.py:203 msgid "A history of forms entered in web sites and in the Search bar" msgstr "היסטוריה של טפסים שהוזנו באתרי אינטרנט ובסרגל החיפוש" #. This software edits metadata tags, such as title and artist, in audio files #: ../cleaners/easytag.xml msgid "Audio files tagger" msgstr "מתייג קובצי שמע" #: ../cleaners/apt.xml msgid "Delete obsolete files" msgstr "מחיקת קבצים מיושנים" #: ../cleaners/apt.xml msgid "Package lists" msgstr "רשימות חבילות" #: ../cleaners/xine.xml ../cleaners/miro.xml ../cleaners/flash.xml msgid "Multimedia viewer" msgstr "מציג המולטימדיה" #: ../cleaners/recoll.xml ../cleaners/beagle.xml msgid "Search tool" msgstr "כלי חיפוש" #: ../cleaners/recoll.xml ../cleaners/beagle.xml ../cleaners/thunderbird.xml msgid "Index" msgstr "אינדקס" #: ../cleaners/recoll.xml msgid "" "Delete the search index, a database of words and the files they contain" msgstr "מחיקת אינדקס החיפוש, מסד נתונים של מילים והקבצים שהם מכילים" #: ../cleaners/gimp.xml msgid "Graphics editor" msgstr "עורך גרפי" #: ../cleaners/exaile.xml msgid "Downloaded podcasts" msgstr "פודקאסטים שהורדו" #: ../cleaners/exaile.xml msgid "Delete downloaded podcasts" msgstr "מחיקת פודקאסטים שהורדו" #: ../cleaners/bash.xml msgid "Shell" msgstr "מעטפת" #. TRANSLATORS: DOM = Document Object Model. #: ../cleaners/opera.xml ../cleaners/epiphany.xml ../cleaners/chromium.xml #: ../cleaners/google_chrome.xml ../bleachbit/Cleaner.py:199 msgid "DOM Storage" msgstr "אחסון DOM" #: ../cleaners/opera.xml ../cleaners/epiphany.xml ../cleaners/chromium.xml #: ../cleaners/google_chrome.xml ../bleachbit/Cleaner.py:199 msgid "Delete HTML5 cookies" msgstr "מחיקת עוגיות HTML5" #: ../cleaners/opera.xml ../cleaners/epiphany.xml ../cleaners/chromium.xml #: ../cleaners/google_chrome.xml ../cleaners/thunderbird.xml #: ../bleachbit/Cleaner.py:208 msgid "Passwords" msgstr "סיסמאות" #: ../cleaners/opera.xml ../cleaners/epiphany.xml ../cleaners/chromium.xml #: ../cleaners/google_chrome.xml ../cleaners/thunderbird.xml #: ../bleachbit/Cleaner.py:209 msgid "" "A database of usernames and passwords as well as a list of sites that should " "not store passwords" msgstr "" "מסד נתונים של שמות המשתמשים והסיסמאות כמו גם רשימת האתרים שלא אמורים לאחסן " "סיסמאות" #: ../cleaners/opera.xml ../cleaners/epiphany.xml ../cleaners/chromium.xml #: ../cleaners/google_chrome.xml ../cleaners/thunderbird.xml #: ../bleachbit/Cleaner.py:211 msgid "This option will delete your saved passwords." msgstr "אפשרות זו תמחק את הססמאות השמורות שלך." #: ../cleaners/nautilus.xml msgid "Custom folders will be reset." msgstr "תיקיות בהתאמה אישית יאופסו." #: ../cleaners/gnome.xml ../cleaners/kde.xml msgid "Desktop environment" msgstr "סביבת שולחן עבודה" #: ../cleaners/screenlets.xml msgid "Widgets for the desktop" msgstr "וידג'טים לשולחן העבודה" #: ../cleaners/epiphany.xml msgid "Places" msgstr "מקומות" #: ../cleaners/epiphany.xml msgid "" "A database of URLs including bookmarks, favicons, and a history of visited " "web sites" msgstr "" "מסד נתונים של כתובות המכיל, סימניות, סמלוני מועדפים, והיסטוריית האתרים בהם " "ביקרתם" #: ../cleaners/epiphany.xml msgid "This option deletes all bookmarks." msgstr "אפשרות זו מנקה את כל הסימניות." #: ../cleaners/winrar.xml msgid "File archiver" msgstr "אחסון קבצים" #: ../cleaners/elinks.xml msgid "Delete the cookies, visited URLs, and search history" msgstr "מחיקת העוגיות, הכתובות בהן ביקרת, והיסטוריית החיפוש" #: ../cleaners/chromium.xml ../cleaners/google_chrome.xml msgid "A history of forms entered in web sites" msgstr "היסטוריה של טפסים שהוזנו באתרי אינטרנט" #: ../cleaners/chromium.xml ../cleaners/google_chrome.xml msgid "" "Delete the history which includes visited sites, downloads, and thumbnails" msgstr "מחיקת ההיסטוריה הכוללת את האתרים בהם ביקרת, הורדות ותמונות ממוזערות." #: ../cleaners/chromium.xml ../cleaners/google_chrome.xml msgid "Search engines" msgstr "מנועי חיפוש" #. 'Factory' means a search engine that is installed by default 'from the factory,' but this is different than a 'default search engine' https://lists.launchpad.net/launchpad-translators/msg00283.html #: ../cleaners/chromium.xml ../cleaners/google_chrome.xml msgid "" "Reset the search engine usage history and delete non-factory search engines, " "some of which are added automatically" msgstr "" "איפוס היסטוריית השימוש במנוע החיפוש ומחיקת מנועי החיפוש שנוספו לאחר התקנת " "התכנה, שחלקם נוספו אוטומטית" #: ../cleaners/audacious.xml msgid "Audio player" msgstr "נגן שמע" #: ../cleaners/rhythmbox.xml msgid "Database" msgstr "מסד נתונים" #: ../cleaners/rhythmbox.xml msgid "" "Delete the database, which contain information such as play count and last " "played" msgstr "" "מחיקת מסד הנתונים שמכיל מידע כגון מספר הנגינות והפעמים האחרונות בהן התנגן " "פריט מסוים" #: ../cleaners/google_chrome.xml msgid "Session" msgstr "הפעלה" #: ../cleaners/google_chrome.xml msgid "Delete the current and last sessions" msgstr "מחיקת ההפעלה הנוכחית והקודמת" #: ../cleaners/x11.xml msgid "Windowing system" msgstr "מערכת חלונאית" #: ../cleaners/wordpad.xml msgid "Word processor" msgstr "מעבד תמלילים" #: ../cleaners/deepscan.xml msgid "Deep scan" msgstr "סריקה מקיפה" #: ../cleaners/deepscan.xml msgid "Clean files widely scattered across the disk" msgstr "מחיקת קבצים מפוזרים בכונן" #: ../cleaners/deepscan.xml msgid "Inspect the preview for any files you want to keep." msgstr "בדוק את התצוגה המקדימה עבור קבצים שברצונך לשמור." #: ../cleaners/deepscan.xml msgid "This option is slow." msgstr "אפשרות זו איטית." #: ../bleachbit.desktop msgid "Unnecessary file cleaner" msgstr "מנקה הקבצים הבלתי נחוצים" #: ../bleachbit.desktop msgid "Free space and maintain privacy" msgstr "פינוי מקום ושמירה על הפרטיות" #: ../bleachbit/FileUtilities.py:668 msgid "" "There was at least one file on a file system that does not support advanced " "overwriting." msgstr "היה לפחות קובץ אחד במערכת שלא תומך בשכתוב מתקדם." #: ../bleachbit/Unix.py:574 #, python-format msgid "Executable not found: %s" msgstr "קובץ ההפעלה לא נמצא: %s" #. TRANSLATORS: %s expands to a name such as 'Firefox' or 'System'. #: ../bleachbit/Unix.py:623 ../bleachbit/Worker.py:136 #, python-format msgid "" "%s cannot be cleaned because it is currently running. Close it, and try " "again." msgstr "" "לא ניתן לנקות את %s כיוון שהתוכנית עדיין פועלת. יש לסגור אותה ולנסות בשנית." #: ../bleachbit/GuiBasic.py:112 msgid "Delete confirmation" msgstr "אימות המחיקה" #: ../bleachbit/GuiBasic.py:122 msgid "" "Are you sure you want to permanently delete files according to the selected " "operations? The actual files that will be deleted may have changed since " "you ran the preview." msgstr "" "האם למחוק לצמיתות את הקבצים בהתאם לפעולות הנבחרות? הקבצים שימחקו בפועל " "עלולים להיות שונים מכפי שהוצג בתצוגה המקדימה." #: ../bleachbit/GuiBasic.py:125 msgid "Are you sure you want to permanently delete these files?" msgstr "האם למחוק קבצים אלו?" #: ../bleachbit/GuiBasic.py:162 #, python-format msgid "" "Because you are running as root, please manually open this link in a web " "browser:\n" "%s" msgstr "" "כיוון שאינך משתמש בחשבון העל, עליך לפתוח קישור זה באופן ידני בדפדפן שלך:\n" "%s" #. TRANSLATORS: %s expands to www.bleachbit.org or similar #: ../bleachbit/GuiBasic.py:174 #, python-format msgid "Open web browser to %s?" msgstr "האם לפתוח את דפדפן האינטרנט בכתובת %s?" #. TRANSLATORS: This is the label in the log indicating was #. skipped because it matches the whitelist #: ../bleachbit/Command.py:47 msgid "Skip" msgstr "דילוג" #. TRANSLATORS: This is the label in the log indicating will be #. deleted (for previews) or was actually deleted #: ../bleachbit/Command.py:77 msgid "Delete" msgstr "מחיקה" #: ../bleachbit/Command.py:99 msgid "" "At least one file was locked by another process, so its contents could not " "be overwritten. It will be marked for deletion upon system reboot." msgstr "" "לפחות קובץ אחד ננעל ע״י תהליך אחר, כך שלא ניתן לשכתב את תוכנו. הקובץ יסומן " "למחיקה עם הפעלת המערכת מחדש." #. TRANSLATORS: The file will be deleted when the #. system reboots #: ../bleachbit/Command.py:102 msgid "Mark for deletion" msgstr "סימון למחיקה" #. TRANSLATORS: Parts of this file will be deleted #: ../bleachbit/Command.py:199 ../bleachbit/Command.py:233 #: ../bleachbit/Action.py:254 ../bleachbit/Action.py:267 #: ../bleachbit/Action.py:280 ../bleachbit/Action.py:293 #: ../bleachbit/Action.py:306 msgid "Clean file" msgstr "ניקוי הקובץ" #. TRANSLATORS: The file will be truncated to 0 bytes in length #: ../bleachbit/Command.py:275 msgid "Truncate" msgstr "קיצוץ" #: ../bleachbit/Command.py:317 msgid "Delete registry key" msgstr "מחיקת רשומת המערכת" #. TRANSLATORS: This is cleaner name for cleaners imported from winapp2.ini #: ../bleachbit/Winapp.py:44 msgid "Applications" msgstr "יישומים" #. TRANSLATORS: This is cleaner name for cleaners imported #. from winapp2.ini #: ../bleachbit/Winapp.py:47 msgid "Internet" msgstr "אינטרנט" #. TRANSLATORS: This is cleaner name for cleaners imported #. from winapp2.ini #: ../bleachbit/Winapp.py:50 msgid "Multimedia" msgstr "מולטימדיה" #. TRANSLATORS: This is cleaner name for cleaners imported #. from winapp2.ini #: ../bleachbit/Winapp.py:53 msgid "Utilities" msgstr "כלי שירות" #: ../bleachbit/Winapp.py:64 msgid "Games" msgstr "משחקים" #: ../bleachbit/Winapp.py:162 msgid "Imported from winapp2.ini" msgstr "יובא מהקובץ winapp2.ini" #: ../bleachbit/Cleaner.py:197 msgid "Crash reports" msgstr "דיווחי קריסות" #: ../bleachbit/Cleaner.py:204 msgid "Session restore" msgstr "שיחזור הפעלה" #: ../bleachbit/Cleaner.py:205 msgid "Loads the initial session after the browser closes or crashes" msgstr "טעינת ההפעלה הראשונית לאחר סגירת או קריסת הדפדפן" #: ../bleachbit/Cleaner.py:207 msgid "Site preferences" msgstr "העדפות לאתר" #: ../bleachbit/Cleaner.py:207 msgid "Settings for individual sites" msgstr "הגדרות לאתרים בנפרד" #. TRANSLATORS: desktop entries are .desktop files in Linux that #. make up the application menu (the menu that shows BleachBit, #. Firefox, and others. The .desktop files also associate file #. types, so clicking on an .html file in Nautilus brings up #. Firefox. #. More information: #. http://standards.freedesktop.org/menu-spec/latest/index.html#introduction #: ../bleachbit/Cleaner.py:453 msgid "Broken desktop files" msgstr "קובצי שולחן עבודה פגומים" #: ../bleachbit/Cleaner.py:454 msgid "Delete broken application menu entries and file associations" msgstr "מחיקת שיוכי קבצים ופריטים פגומים בתפריט יישומים" #. TRANSLATORS: Localizations are files supporting specific #. languages, so applications appear in Spanish, etc. #: ../bleachbit/Cleaner.py:458 msgid "Localizations" msgstr "תרגומים" #: ../bleachbit/Cleaner.py:459 msgid "Delete files for unwanted languages" msgstr "מחיקת קבצים של שפות בלתי רצויות" #: ../bleachbit/Cleaner.py:461 msgid "Configure this option in the preferences." msgstr "הגדרת אפשרות זו בהעדפות." #: ../bleachbit/Cleaner.py:467 msgid "Rotated logs" msgstr "יומנים בהטייה" #: ../bleachbit/Cleaner.py:467 msgid "Delete old system logs" msgstr "מחיקת יומני מערכת ישנים" #: ../bleachbit/Cleaner.py:470 msgid "Trash" msgstr "אשפה" #: ../bleachbit/Cleaner.py:470 msgid "Empty the trash" msgstr "פינוי האשפה" #: ../bleachbit/Cleaner.py:476 ../bleachbit/Cleaner.py:627 #: ../bleachbit/Worker.py:184 msgid "Memory" msgstr "זכרון" #. TRANSLATORS: 'free' means 'unallocated' #: ../bleachbit/Cleaner.py:478 msgid "Wipe the swap and free memory" msgstr "מחיקת קובץ ההחלפה ופינוי הזכרון" #: ../bleachbit/Cleaner.py:480 msgid "This option is experimental and may cause system problems." msgstr "אפשרות זו הינה נסיונית ועלולה לגרום לבעיות במערכת." #: ../bleachbit/Cleaner.py:488 msgid "Memory dump" msgstr "איסוף הזיכרון" #: ../bleachbit/Cleaner.py:488 msgid "Delete the file memory.dmp" msgstr "מחיקת הקובץ memory.dmp" #. TRANSLATORS: Prefetch is Microsoft Windows jargon. #: ../bleachbit/Cleaner.py:491 msgid "Prefetch" msgstr "Prefetch" #: ../bleachbit/Cleaner.py:493 msgid "Recycle bin" msgstr "סל המיחזור" #: ../bleachbit/Cleaner.py:493 ../bleachbit/Cleaner.py:787 msgid "Empty the recycle bin" msgstr "פינוי סל המיחזור" #. TRANSLATORS: 'Update' is a noun, and 'Update uninstallers' is an option to delete #. the uninstallers for software updates. #: ../bleachbit/Cleaner.py:496 msgid "Update uninstallers" msgstr "עדכון תכניות ההסרה" #: ../bleachbit/Cleaner.py:497 msgid "" "Delete uninstallers for Microsoft updates including hotfixes, service packs, " "and Internet Explorer updates" msgstr "" "מחיקת תכניות ההסרה עבור עדכוני Microsoft לרבות עדכונים חמים, חבילות שירות " "ועדכונים ל־Internet Explorer" #: ../bleachbit/Cleaner.py:504 ../bleachbit/Cleaner.py:727 msgid "Clipboard" msgstr "לוח הגזירים" #: ../bleachbit/Cleaner.py:505 msgid "" "The desktop environment's clipboard used for copy and paste operations" msgstr "לוח הגזירים של סביבת שולחן העבודה המשמש לפעולות העתקה והדבקה" #. TRANSLATORS: "Custom" is an option allowing the user to specify which #. files and folders will be erased. #: ../bleachbit/Cleaner.py:512 ../bleachbit/GuiPreferences.py:66 msgid "Custom" msgstr "התאמה אישית" #: ../bleachbit/Cleaner.py:513 msgid "Delete user-specified files and folders" msgstr "מחיקת קבצים ותיקיות שהוגדרו על ידי המשתמש" #. TRANSLATORS: 'free' means 'unallocated' #: ../bleachbit/Cleaner.py:515 msgid "Free disk space" msgstr "שטח פנוי בכונן" #. TRANSLATORS: 'free' means 'unallocated' #: ../bleachbit/Cleaner.py:517 msgid "Overwrite free disk space to hide deleted files" msgstr "שכתוב השטח הפנוי בכונן להסתרת קבצים שנמחקו" #: ../bleachbit/Cleaner.py:518 msgid "This option is very slow." msgstr "אפשרות זו היא אטית ביותר." #: ../bleachbit/Cleaner.py:522 msgid "The system in general" msgstr "המערכת באופן כללי" #: ../bleachbit/Cleaner.py:524 ../bleachbit/Cleaner.py:857 msgid "System" msgstr "מערכת" #. TRANSLATORS: 'Free' means 'unallocated.' #. %s expands to a path such as C:\ or /tmp/ #: ../bleachbit/Cleaner.py:735 ../bleachbit/Cleaner.py:890 #, python-format msgid "Overwrite free disk space %s" msgstr "שכתוב השטח הפנוי במיקום %s" #: ../bleachbit/RecognizeCleanerML.py:59 msgid "Security warning" msgstr "אזהרת אבטחה" #: ../bleachbit/RecognizeCleanerML.py:72 msgid "" "These cleaner definitions are new or have changed. Malicious definitions can " "damage your system. If you do not trust these changes, delete the files or " "quit." msgstr "" "קובצי הגדרות הניקוי חדשים או שלא עברו שינוי. קובצי הגדרות זדוניים עלולים " "להזיק למערכת שלך. אם שינויים אלה אינם מהימנים בעיניך, יש למחוק את הקבצים או " "לצאת." #: ../bleachbit/RecognizeCleanerML.py:88 msgctxt "column_label" msgid "Delete" msgstr "מחיקה" #: ../bleachbit/RecognizeCleanerML.py:93 msgctxt "column_label" msgid "Filename" msgstr "שם הקובץ" #. TRANSLATORS: This indicates an error. The special keyword #. %(operation)s will be replaced by 'firefox' or 'opera' or #. some other cleaner ID. The special keyword %(msg)s will be #. replaced by a message such as 'Permission denied.' #: ../bleachbit/Worker.py:74 #, python-format msgid "Exception while running operation '%(operation)s': '%(msg)s'" msgstr "ארעה חריגה בעת הרצת התהליך '%(operation)s': '%(msg)s'" #. TRANSLATORS: 'free' means 'unallocated' #: ../bleachbit/Worker.py:182 msgid "Please wait. Wiping free disk space." msgstr "נא להמתין. השטח הפנוי מתנקה." #. TRANSLATORS: %s is replaced with Firefox, System, etc. #: ../bleachbit/Worker.py:184 ../bleachbit/Worker.py:332 #, python-format msgid "Please wait. Cleaning %s." msgstr "נא להמתין. %s בתהליכי פינוי." #: ../bleachbit/Worker.py:199 msgid "Please wait. Wiping file system metadata." msgstr "נא להמתין. נתוני העל של מערכת הקבצים נמחקים." #: ../bleachbit/Worker.py:202 msgid "Please wait. Cleaning up after wiping file system metadata." msgstr "נא להמתין. מתבצע ניקוי שלאחר מחיקת נתוני העל של מערכת הקבצים." #: ../bleachbit/Worker.py:205 #, python-format msgid "About %d minute remaining." msgid_plural "About %d minutes remaining." msgstr[0] "בערך דקה אחת נותרה." msgstr[1] "בערך %d דקות נותרו." #. TRANSLATORS: This refers to disk space that was #. really recovered (in other words, not a preview) #: ../bleachbit/Worker.py:272 #, python-format msgid "Disk space recovered: %s" msgstr "שטח שהתפנה מהכונן: %s" #. TRANSLATORS: This refers to a preview (no real #. changes were made yet) #: ../bleachbit/Worker.py:276 #, python-format msgid "Disk space to be recovered: %s" msgstr "שטח שיתפנה בכונן: %s" #. TRANSLATORS: This refers to the number of files really #. deleted (in other words, not a preview). #: ../bleachbit/Worker.py:281 #, python-format msgid "Files deleted: %d" msgstr "קבצים שנמחקו: %d" #. TRANSLATORS: This refers to the number of files that #. would be deleted (in other words, simply a preview). #: ../bleachbit/Worker.py:285 #, python-format msgid "Files to be deleted: %d" msgstr "קבצים למחיקה: %d" #: ../bleachbit/Worker.py:288 #, python-format msgid "Special operations: %d" msgstr "פעולות מיוחדות: %d" #: ../bleachbit/Worker.py:291 #, python-format msgid "Errors: %d" msgstr "שגיאות: %d" #. TRANSLATORS: The "deep scan" feature searches over broad #. areas of the file system such as the user's whole home directory #. or all the system executables. #: ../bleachbit/Worker.py:306 msgid "Please wait. Running deep scan." msgstr "נא להמתין. הסריקה המקיפה מופעלת." #. TRANSLATORS: %s is replaced with Firefox, System, etc. #: ../bleachbit/Worker.py:335 #, python-format msgid "Please wait. Previewing %s." msgstr "נא להמתין. מתבצעת הצגת %s." #: ../bleachbit/Update.py:80 msgid "New winapp2.ini was downloaded." msgstr "קובץ winapp2.ini חדש התקבל" #: ../bleachbit/Update.py:125 msgid "Update BleachBit" msgstr "עדכון BleachBit" #: ../bleachbit/Update.py:130 msgid "A new version is available." msgstr "ישנה גרסה חדשה זמינה." #. TRANSLATORS: %s expands to version such as '0.8.4' or '0.8.5beta' or #. similar #: ../bleachbit/Update.py:139 #, python-format msgid "Update to version %s" msgstr "עדכון לגרסה %s" #: ../bleachbit/Update.py:164 #, python-format msgid "" "Error when opening a network connection to %s to check for updates. Please " "verify the network is working." msgstr "" "שגיאה בעת פתיחת חיבור הרשת אל %s לבדיקת עדכונים. נא לוודא שהרשת עובדת." #: ../bleachbit/CLI.py:106 #, python-format msgid "not a valid cleaner: %s" msgstr "not a valid cleaner: %s" #. TRANSLATORS: This is the command line usage. Don't translate #. %prog, but do translate usage, options, cleaner, and option. #. More information about the command line is here #. https://www.bleachbit.org/documentation/command-line #: ../bleachbit/CLI.py:133 msgid "usage: %prog [options] cleaner.option1 cleaner.option2" msgstr "usage: %prog [options] cleaner.option1 cleaner.option2" #: ../bleachbit/CLI.py:136 msgid "list cleaners" msgstr "list cleaners" #. TRANSLATORS: predefined cleaners are for applications, such as Firefox and Flash. #. This is different than cleaning an arbitrary file, such as a #. spreadsheet on the desktop. #: ../bleachbit/CLI.py:141 msgid "run cleaners to delete files and make other permanent changes" msgstr "הרצת מנגנוני ניקוי למחיקת קבצים ולביצוע שינויים קבועים נוספים" #: ../bleachbit/CLI.py:144 msgid "shred specific files or folders" msgstr "גריסת קבצים ותיקיות מסוימים" #: ../bleachbit/CLI.py:146 msgid "show system information" msgstr "הצגת נתוני המערכת" #: ../bleachbit/CLI.py:148 msgid "launch the graphical interface" msgstr "launch the graphical interface" #: ../bleachbit/CLI.py:152 msgid "do not prompt for administrator privileges" msgstr "do not prompt for administrator privileges" #: ../bleachbit/CLI.py:157 msgid "preview files to be deleted and other changes" msgstr "preview files to be deleted and other changes" #: ../bleachbit/CLI.py:161 msgid "use options set in the graphical interface" msgstr "use options set in the graphical interface" #: ../bleachbit/CLI.py:164 msgid "update winapp2.ini, if a new version is available" msgstr "עדכון winapp2.ini, אם גרסה חדשה זמינה" #: ../bleachbit/CLI.py:166 msgid "output version information and exit" msgstr "output version information and exit" #: ../bleachbit/CLI.py:168 msgid "overwrite files to hide contents" msgstr "שכתוב על הקבצים להסתרת התוכן" #. TRANSLATORS: this is the context menu #: ../bleachbit/Action.py:382 ../bleachbit/GUI.py:632 msgid "Clean" msgstr "ניקוי" #: ../bleachbit/Action.py:418 #, python-format msgid "Run external command: %s" msgstr "הפעלת פקודה חיצונית: %s" #: ../bleachbit/GUI.py:135 ../bleachbit/GuiPreferences.py:296 msgid "Name" msgstr "שם" #: ../bleachbit/GUI.py:143 msgid "Active" msgstr "פעיל" #. TRANSLATORS: Size is the label for the column that shows how #. much space an option would clean or did clean #: ../bleachbit/GUI.py:155 msgid "Size" msgstr "גודל" #. TRANSLATORS: %(cleaner) may be Firefox, System, etc. #. %(option) may be cache, logs, cookies, etc. #. %(warning) may be 'This option is really slow' #: ../bleachbit/GUI.py:186 #, python-format msgid "" "Warning regarding %(cleaner)s - %(option)s:\n" "\n" "%(warning)s" msgstr "" "אזהרה בנוגע ל־%(cleaner)s‏ - %(option)s:\n" "\n" "%(warning)s" #: ../bleachbit/GUI.py:372 msgid "You must select an operation" msgstr "יש לבחור בפעולה" #: ../bleachbit/GUI.py:391 ../bleachbit/GUI.py:413 msgid "Done." msgstr "בוצע." #: ../bleachbit/GUI.py:426 msgid "Program to clean unnecessary files" msgstr "תוכנית לניקוי הקבצים הבלתי נחוצים" #: ../bleachbit/GUI.py:436 msgid "" "GNU General Public License version 3 or later.\n" "See http://www.gnu.org/licenses/gpl-3.0.txt" msgstr "" "הרשיון הציבורי הכללי של GNU גרסה 3 ומעלה.\n" "ניתן לעיין בכתובת http://www.gnu.org/licenses/gpl-3.0.txt\n" "או בעברית http://www.law.co.il/media/computer-law/gpl-hebrew.html" #. TRANSLATORS: Maintain the names of translators here. #. Launchpad does this automatically for translations #. typed in Launchpad. This is a special string shown #. in the 'About' box. #: ../bleachbit/GUI.py:442 msgid "translator-credits" msgstr "" "Launchpad Contributions:\n" " Ddorda https://launchpad.net/~ddorda\n" " Yaron https://launchpad.net/~sh-yaron" #: ../bleachbit/GUI.py:454 msgid "System information" msgstr "נתוני המערכת" #: ../bleachbit/GUI.py:527 msgid "Choose files to shred" msgstr "בחרו קבצים להשמדה" #: ../bleachbit/GUI.py:530 msgid "Choose folder to shred" msgstr "בחירת תיקייה להשמדה" #: ../bleachbit/GUI.py:594 ../bleachbit/GuiPreferences.py:197 #: ../bleachbit/GuiPreferences.py:326 ../bleachbit/GuiPreferences.py:367 msgid "Choose a folder" msgstr "בחירת תיקייה" #. TRANSLATORS: this is the context menu #: ../bleachbit/GUI.py:627 msgid "Preview" msgstr "תצוגה מקדימה" #: ../bleachbit/GUI.py:734 msgid "_Shred Files" msgstr "ה_שמדת קבצים" #: ../bleachbit/GUI.py:736 msgid "Sh_red Folders" msgstr "ה_שמדת תיקיות" #: ../bleachbit/GUI.py:738 msgid "_Wipe Free Space" msgstr "_ניקוי השטח הפנוי" #: ../bleachbit/GUI.py:740 msgid "S_hred Settings and Quit" msgstr "_חיסול ההגדרות ויציאה" #: ../bleachbit/GUI.py:742 msgid "_Quit" msgstr "י_ציאה" #: ../bleachbit/GUI.py:744 msgid "_File" msgstr "_קובץ" #: ../bleachbit/GUI.py:746 ../bleachbit/GuiPreferences.py:58 msgid "Preferences" msgstr "העדפות" #: ../bleachbit/GUI.py:747 msgid "_Edit" msgstr "ע_ריכה" #: ../bleachbit/GUI.py:748 msgid "Help Contents" msgstr "תכני העזרה" #: ../bleachbit/GUI.py:751 msgid "_Release Notes" msgstr "הערות ה_פצה" #: ../bleachbit/GUI.py:754 msgid "_System Information" msgstr "_נתוני המערכת" #: ../bleachbit/GUI.py:757 msgid "_About" msgstr "על _אודות" #: ../bleachbit/GUI.py:758 msgid "_Help" msgstr "ע_זרה" #: ../bleachbit/GUI.py:783 msgctxt "button" msgid "Preview" msgstr "תצוגה מקדימה" #: ../bleachbit/GUI.py:788 msgid "Preview files in the selected operations (without deleting any files)" msgstr "תצוגה מקדימה של קבצים בפעולות הנבחרות (ללא מחיקת קבצים כלשהם)" #: ../bleachbit/GUI.py:798 msgctxt "button" msgid "Clean" msgstr "ניקוי" #: ../bleachbit/GUI.py:802 msgid "Clean files in the selected operations" msgstr "ניקוי קבצים בפעולות הנבחרות" #: ../bleachbit/GUI.py:893 msgid "Error when checking for updates: " msgstr "שגיאה בעת בדיקה אחר עדכונים: " #: ../bleachbit/GUI.py:932 msgid "" "Error loading the SQLite module: the antivirus software may be blocking it." msgstr "שגיאה בטעינת מודול ה־SQLite: יתכן שתכנת האנטיווירוס חוסמת אותו." #: ../bleachbit/GUI.py:935 msgid "" "You are running BleachBit with administrative privileges for cleaning shared " "parts of the system, and references to the user profile folder will clean " "only the root account." msgstr "" "התכנית BleachBit מופעלת עם הרשאות ניהוליות לטובת ניקוי של חלקים שיתופיים של " "המערכת ולכן הפניות לפרופיל המשתמש יובילו לניקוי קבצים בתיקיית משתמש העל בלבד." #: ../bleachbit/GUI.py:940 msgid "" "Run BleachBit with administrator privileges to improve the accuracy of " "overwriting the contents of files." msgstr "" "יש להריץ את BleachBit עם הרשאות ניהול כדי לשפר את דיוק שכתוב תוכן הקבצים." #: ../bleachbit/GuiPreferences.py:64 msgid "General" msgstr "כללי" #: ../bleachbit/GuiPreferences.py:67 msgid "Drives" msgstr "כוננים" #: ../bleachbit/GuiPreferences.py:70 msgid "Languages" msgstr "שפות" #: ../bleachbit/GuiPreferences.py:72 msgid "Whitelist" msgstr "רשימת היתר" #: ../bleachbit/GuiPreferences.py:117 msgid "Check periodically for software updates via the Internet" msgstr "בדיקה תקופתית אחר עדכוני תוכנה דרך האינטרנט" #: ../bleachbit/GuiPreferences.py:122 msgid "" "If an update is found, you will be given the option to view information " "about it. Then, you may manually download and install the update." msgstr "" "אם נמצא עדכון, תנתן האפשרות לצפות במידע אודותיו. ואז, באופן ידני ניתן יהיה " "להוריד את העדכון ולהתקין אותו." #: ../bleachbit/GuiPreferences.py:128 msgid "Check for new beta releases" msgstr "בדיקה לזמינות של הפצות בטא חדשות" #: ../bleachbit/GuiPreferences.py:137 msgid "Download and update cleaners from community (winapp2.ini)" msgstr "הורדה ועדכון של כלי ניקוי מהקהילה (winapp2.ini)" #. TRANSLATORS: This means to hide cleaners which would do #. nothing. For example, if Firefox were never used on #. this system, this option would hide Firefox to simplify #. the list of cleaners. #: ../bleachbit/GuiPreferences.py:151 msgid "Hide irrelevant cleaners" msgstr "הסתרת מנקים בלתי רלוונטיים" #. TRANSLATORS: Overwriting is the same as shredding. It is a way #. to prevent recovery of the data. You could also translate #. 'Shred files to prevent recovery.' #: ../bleachbit/GuiPreferences.py:159 msgid "Overwrite contents of files to prevent recovery" msgstr "שכתוב תכנים של קבצים כדי למנוע שחזור" #: ../bleachbit/GuiPreferences.py:163 msgid "" "Overwriting is ineffective on some file systems and with certain BleachBit " "operations. Overwriting is significantly slower." msgstr "" "שכתוב אינו יעיל בכמה ממערכות הקבצים ועם פעולות מסויימות של BleachBit. שכתוב " "איטי יותר בצורה משמעותית." #: ../bleachbit/GuiPreferences.py:166 msgid "Start BleachBit with computer" msgstr "הפעלת BleachBit עם עליית המחשב" #: ../bleachbit/GuiPreferences.py:172 msgid "Exit after cleaning" msgstr "יציאה לאחר הניקיון" #: ../bleachbit/GuiPreferences.py:178 msgid "Confirm before delete" msgstr "אישור בטרם מחיקה" #: ../bleachbit/GuiPreferences.py:186 msgid "Use IEC sizes (1 KiB = 1024 bytes) instead of SI (1 kB = 1000 bytes)" msgstr "" "שימוש בגדלים בהגדרת הנציבות הבינלאומית לאלקטרוטכניקה (‎1 KiB‏ = 1024 בתים) " "במקום התקן הבינלאומי (‎1 kB ‏= 1000 בתים)" #: ../bleachbit/GuiPreferences.py:221 msgid "" "Choose a writable folder for each drive for which to overwrite free space." msgstr "בחירת תיקייה הניתנת לכתיבה בכל כונן שבה ישוכתב המקום הפנוי." #. TRANSLATORS: In the preferences dialog, this button adds a path to #. the list of paths #: ../bleachbit/GuiPreferences.py:243 msgctxt "button" msgid "Add" msgstr "הוספה" #. TRANSLATORS: In the preferences dialog, this button removes a path #. from the list of paths #: ../bleachbit/GuiPreferences.py:247 ../bleachbit/GuiPreferences.py:458 msgctxt "button" msgid "Remove" msgstr "הסרה" #: ../bleachbit/GuiPreferences.py:272 msgid "All languages will be deleted except those checked." msgstr "כל השפות ימחקו מלבד אלו המסומנות." #: ../bleachbit/GuiPreferences.py:288 msgid "Preserve" msgstr "שימור" #: ../bleachbit/GuiPreferences.py:292 msgid "Code" msgstr "קוד" #: ../bleachbit/GuiPreferences.py:313 ../bleachbit/GuiPreferences.py:354 msgid "Choose a file" msgstr "בחירת קובץ" #: ../bleachbit/GuiPreferences.py:320 ../bleachbit/GuiPreferences.py:361 #: ../bleachbit/GuiPreferences.py:405 msgid "File" msgstr "קובץ" #: ../bleachbit/GuiPreferences.py:334 ../bleachbit/GuiPreferences.py:375 #: ../bleachbit/GuiPreferences.py:407 msgid "Folder" msgstr "תיקייה" #: ../bleachbit/GuiPreferences.py:417 msgid "Theses paths will not be deleted or modified." msgstr "נתיבים אלו לא ימחקו או ישתנו." #: ../bleachbit/GuiPreferences.py:420 msgid "These locations can be selected for deletion." msgstr "ניתן לבחור מיקומים אלה לצורך מחיקה." #: ../bleachbit/GuiPreferences.py:428 msgid "Type" msgstr "סוג" #. TRANSLATORS: In the tree view "Path" is used generically to refer to a #. file, a folder, or a pattern describing either #: ../bleachbit/GuiPreferences.py:434 msgid "Path" msgstr "נתיב" #: ../bleachbit/GuiPreferences.py:446 msgctxt "button" msgid "Add file" msgstr "הוספת קובץ" #: ../bleachbit/GuiPreferences.py:452 msgctxt "button" msgid "Add folder" msgstr "הוספת תיקייה" bleachbit-2.0/po/de.po0000644000175000017500000014113013245436307012747 0ustar hlehle# German translation for bleachbit # Copyright (c) 2009 Rosetta Contributors and Canonical Ltd 2009 # This file is distributed under the same license as the bleachbit package. # FIRST AUTHOR , 2009. # msgid "" msgstr "" "Project-Id-Version: bleachbit\n" "Report-Msgid-Bugs-To: FULL NAME \n" "POT-Creation-Date: 2017-02-11 11:12-0700\n" "PO-Revision-Date: 2017-10-06 12:57+0000\n" "Last-Translator: Tobias Bannert \n" "Language-Team: German \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n != 1;\n" "X-Launchpad-Export-Date: 2017-10-06 18:36+0000\n" "X-Generator: Launchpad (build 18474)\n" #: ../cleaners/mc.xml ../cleaners/tortoisesvn.xml ../cleaners/vim.xml #: ../cleaners/safari.xml ../cleaners/links2.xml ../cleaners/seamonkey.xml #: ../cleaners/realplayer.xml ../cleaners/windows_defender.xml #: ../cleaners/d4x.xml ../cleaners/sqlite3.xml #: ../cleaners/internet_explorer.xml ../cleaners/libreoffice.xml #: ../cleaners/easytag.xml ../cleaners/bash.xml ../cleaners/nautilus.xml #: ../cleaners/octave.xml ../cleaners/elinks.xml ../cleaners/chromium.xml #: ../cleaners/google_chrome.xml msgid "History" msgstr "Verlauf" #: ../cleaners/mc.xml ../cleaners/tortoisesvn.xml ../cleaners/links2.xml #: ../cleaners/realplayer.xml ../cleaners/d4x.xml ../cleaners/libreoffice.xml #: ../cleaners/easytag.xml ../cleaners/nautilus.xml ../cleaners/gnome.xml #: ../bleachbit/Cleaner.py:349 ../bleachbit/Cleaner.py:423 #: ../bleachbit/Cleaner.py:432 msgid "Delete the usage history" msgstr "Den Verwendungsverlauf löschen" #: ../cleaners/gpodder.xml ../cleaners/hippo_opensim_viewer.xml #: ../cleaners/thumbnails.xml ../cleaners/safari.xml ../cleaners/emesene.xml #: ../cleaners/liferea.xml ../cleaners/seamonkey.xml ../cleaners/vuze.xml #: ../cleaners/yahoo_messenger.xml ../cleaners/pidgin.xml #: ../cleaners/adobe_reader.xml ../cleaners/evolution.xml #: ../cleaners/tremulous.xml ../cleaners/libreoffice.xml ../cleaners/xine.xml #: ../cleaners/nexuiz.xml ../cleaners/exaile.xml ../cleaners/opera.xml #: ../cleaners/amsn.xml ../cleaners/gftp.xml ../cleaners/miro.xml #: ../cleaners/beagle.xml ../cleaners/kde.xml ../cleaners/epiphany.xml #: ../cleaners/flash.xml ../cleaners/secondlife_viewer.xml ../cleaners/java.xml #: ../cleaners/chromium.xml ../cleaners/audacious.xml ../cleaners/rhythmbox.xml #: ../cleaners/google_chrome.xml ../cleaners/thunderbird.xml #: ../bleachbit/Cleaner.py:192 ../bleachbit/Cleaner.py:370 #: ../bleachbit/Cleaner.py:455 msgid "Cache" msgstr "Zwischenspeicher" #: ../cleaners/gpodder.xml ../cleaners/yum.xml #: ../cleaners/hippo_opensim_viewer.xml ../cleaners/thumbnails.xml #: ../cleaners/windows_explorer.xml ../cleaners/liferea.xml #: ../cleaners/vuze.xml ../cleaners/yahoo_messenger.xml ../cleaners/pidgin.xml #: ../cleaners/adobe_reader.xml ../cleaners/evolution.xml #: ../cleaners/libreoffice.xml ../cleaners/apt.xml ../cleaners/xine.xml #: ../cleaners/nexuiz.xml ../cleaners/exaile.xml ../cleaners/amsn.xml #: ../cleaners/gftp.xml ../cleaners/miro.xml ../cleaners/beagle.xml #: ../cleaners/kde.xml ../cleaners/flash.xml ../cleaners/secondlife_viewer.xml #: ../cleaners/java.xml ../cleaners/audacious.xml ../cleaners/rhythmbox.xml #: ../bleachbit/Cleaner.py:370 ../bleachbit/Cleaner.py:455 #: ../bleachbit/Cleaner.py:489 ../bleachbit/Cleaner.py:491 msgid "Delete the cache" msgstr "Den Zwischenspeicher löschen" #. TRANSLATORS: Vacuum is a verb. The term is jargon #. from the SQLite database. Microsoft Access uses #. the term 'Compact Database' (which you may translate #. instead). Another synonym is 'defragment.' #: ../cleaners/gpodder.xml ../cleaners/yum.xml ../cleaners/safari.xml #: ../cleaners/liferea.xml ../cleaners/chromium.xml #: ../cleaners/google_chrome.xml ../cleaners/thunderbird.xml #: ../bleachbit/Cleaner.py:214 ../bleachbit/Cleaner.py:360 #: ../bleachbit/Action.py:445 msgid "Vacuum" msgstr "Datenbank komprimieren" #: ../cleaners/gpodder.xml ../cleaners/yum.xml ../cleaners/safari.xml #: ../cleaners/liferea.xml ../cleaners/chromium.xml #: ../cleaners/google_chrome.xml ../cleaners/thunderbird.xml #: ../bleachbit/Cleaner.py:215 msgid "" "Clean database fragmentation to reduce space and improve speed without " "removing any data" msgstr "" "Datenbankfragmentierung wird reduziert, um – ohne Daten zu entfernen – " "Speicherplatz zu sparen und die Geschwindigkeit zu erhöhen" #: ../cleaners/yum.xml ../cleaners/apt.xml msgid "Package manager" msgstr "Paketverwaltung" #: ../cleaners/warzone2100.xml ../cleaners/hippo_opensim_viewer.xml #: ../cleaners/gl-117.xml ../cleaners/tremulous.xml ../cleaners/nexuiz.xml #: ../cleaners/secondlife_viewer.xml msgid "Game" msgstr "Spiel" #: ../cleaners/warzone2100.xml ../cleaners/hippo_opensim_viewer.xml #: ../cleaners/teamviewer.xml ../cleaners/realplayer.xml ../cleaners/vuze.xml #: ../cleaners/yahoo_messenger.xml ../cleaners/amule.xml #: ../cleaners/easytag.xml ../cleaners/exaile.xml ../cleaners/screenlets.xml #: ../cleaners/gftp.xml ../cleaners/miro.xml ../cleaners/audacious.xml #: ../bleachbit/Cleaner.py:486 msgid "Logs" msgstr "Protokolle" #: ../cleaners/warzone2100.xml ../cleaners/hippo_opensim_viewer.xml #: ../cleaners/teamviewer.xml ../cleaners/realplayer.xml ../cleaners/vuze.xml #: ../cleaners/yahoo_messenger.xml ../cleaners/amule.xml ../cleaners/exaile.xml #: ../cleaners/screenlets.xml ../cleaners/gftp.xml ../cleaners/miro.xml #: ../cleaners/audacious.xml ../bleachbit/Cleaner.py:486 msgid "Delete the logs" msgstr "Die Protokolle löschen" #: ../cleaners/thumbnails.xml ../cleaners/windows_explorer.xml msgid "Thumbnails" msgstr "Vorschaubilder" #: ../cleaners/thumbnails.xml msgid "Icons for files on the system" msgstr "Symbole für die Dateien auf dem System" #: ../cleaners/vim.xml ../cleaners/gedit.xml msgid "Editor" msgstr "Textbearbeitung" #: ../cleaners/vim.xml msgid "" "Delete ~/.viminfo which includes file history, command history, and buffers" msgstr "" "Die Datei »~/.viminfo« löschen, welche den Datei- und Befehlsverlauf und den " "Zwischenspeicher beinhaltet" #: ../cleaners/filezilla.xml ../cleaners/transmission.xml ../cleaners/vuze.xml #: ../cleaners/amule.xml ../cleaners/gftp.xml msgid "File transfer client" msgstr "Dateiübertragungsprogramm" #: ../cleaners/filezilla.xml ../cleaners/paint.xml #: ../cleaners/windows_media_player.xml ../cleaners/windows_explorer.xml #: ../cleaners/teamviewer.xml ../cleaners/microsoft_office.xml #: ../cleaners/vlc.xml ../cleaners/adobe_reader.xml ../cleaners/winamp.xml #: ../cleaners/winzip.xml ../cleaners/winrar.xml ../cleaners/audacious.xml #: ../cleaners/wordpad.xml ../bleachbit/Cleaner.py:371 msgid "Most recently used" msgstr "Zuletzt verwendet" #: ../cleaners/filezilla.xml ../cleaners/windows_explorer.xml #: ../cleaners/gwenview.xml ../cleaners/adobe_reader.xml ../cleaners/gedit.xml #: ../cleaners/kde.xml ../cleaners/audacious.xml ../bleachbit/Cleaner.py:372 #: ../bleachbit/Cleaner.py:469 msgid "Delete the list of recently used documents" msgstr "Die Liste der zuletzt benutzten Dokumente löschen" #: ../cleaners/skype.xml ../cleaners/emesene.xml #: ../cleaners/yahoo_messenger.xml ../cleaners/pidgin.xml ../cleaners/amsn.xml msgid "Chat client" msgstr "Chat-Programm" #: ../cleaners/skype.xml ../cleaners/hexchat.xml ../cleaners/emesene.xml #: ../cleaners/seamonkey.xml ../cleaners/yahoo_messenger.xml #: ../cleaners/pidgin.xml ../cleaners/amsn.xml msgid "Chat logs" msgstr "Chat-Protokolle" #: ../cleaners/skype.xml ../cleaners/hexchat.xml ../cleaners/emesene.xml #: ../cleaners/seamonkey.xml ../cleaners/yahoo_messenger.xml #: ../cleaners/pidgin.xml ../cleaners/amsn.xml msgid "Delete the chat logs" msgstr "Die Chat-Protokolle löschen" #: ../cleaners/skype.xml msgid "Installers" msgstr "Installationsprogramme" #: ../cleaners/skype.xml msgid "Delete cached patches and installers" msgstr "" "Zwischengespeicherte Programmkorrekturen und Installationsprogramme löschen" #: ../cleaners/hexchat.xml msgid "IRC client formerly known as XChat" msgstr "IRC-Programm – vorher als XChat bekannt" #: ../cleaners/safari.xml ../cleaners/links2.xml ../cleaners/seamonkey.xml #: ../cleaners/konqueror.xml ../cleaners/internet_explorer.xml #: ../cleaners/opera.xml ../cleaners/epiphany.xml ../cleaners/elinks.xml #: ../cleaners/chromium.xml ../cleaners/google_chrome.xml #: ../bleachbit/Cleaner.py:226 msgid "Web browser" msgstr "Internet-Browser" #: ../cleaners/safari.xml ../cleaners/seamonkey.xml ../cleaners/opera.xml #: ../cleaners/epiphany.xml ../cleaners/chromium.xml #: ../cleaners/google_chrome.xml ../cleaners/thunderbird.xml #: ../bleachbit/Cleaner.py:193 msgid "Delete the web cache, which reduces time to display revisited pages" msgstr "" "Den Zwischenspeicher des Internet-Browsers löschen, welcher die Anzeigezeit " "bereits besuchter Seiten reduziert" #: ../cleaners/safari.xml ../cleaners/liferea.xml ../cleaners/seamonkey.xml #: ../cleaners/realplayer.xml ../cleaners/konqueror.xml #: ../cleaners/internet_explorer.xml ../cleaners/opera.xml #: ../cleaners/epiphany.xml ../cleaners/flash.xml ../cleaners/silverlight.xml #: ../cleaners/chromium.xml ../cleaners/google_chrome.xml #: ../cleaners/thunderbird.xml ../bleachbit/Cleaner.py:194 msgid "Cookies" msgstr "Profildateien (Cookies)" #: ../cleaners/safari.xml ../cleaners/liferea.xml ../cleaners/seamonkey.xml #: ../cleaners/realplayer.xml ../cleaners/konqueror.xml #: ../cleaners/internet_explorer.xml ../cleaners/opera.xml #: ../cleaners/epiphany.xml ../cleaners/flash.xml ../cleaners/silverlight.xml #: ../cleaners/chromium.xml ../cleaners/google_chrome.xml #: ../cleaners/thunderbird.xml ../bleachbit/Cleaner.py:195 msgid "" "Delete cookies, which contain information such as web site preferences, " "authentication, and tracking identification" msgstr "" "Die Profildateien (Cookies) löschen, welche Informationen wie " "Internetseiteneinstellungen, Legitimierungen und Rückverfolgungsdaten " "enthalten" #: ../cleaners/safari.xml ../cleaners/konqueror.xml #: ../cleaners/internet_explorer.xml ../cleaners/opera.xml #: ../bleachbit/Cleaner.py:213 msgid "List of visited web pages" msgstr "Liste besuchter Internetseiten" #. Torrent software can block a list of IP addresses, such as those that may belong to malware or anti-piracy organizations #: ../cleaners/transmission.xml msgid "Blocklists" msgstr "Sperrlisten" #: ../cleaners/transmission.xml ../cleaners/windows_defender.xml #: ../cleaners/beagle.xml ../cleaners/thunderbird.xml ../cleaners/deepscan.xml #: ../bleachbit/Cleaner.py:197 msgid "Delete the files" msgstr "Die Dateien löschen" #: ../cleaners/transmission.xml msgid "Blocklists will need update to work." msgstr "" "Um die Funktionsfähigkeit sicherzustellen, müssen Sperrlisten aktualisiert " "werden." #: ../cleaners/transmission.xml msgid "Torrents" msgstr "Torrents" #: ../cleaners/transmission.xml msgid "Delete the torrents (just the metadata but not the files described)" msgstr "" "Die Torrent-Dateien löschen (nur die Metadaten, aber nicht die beschriebenen " "Dateien)" #: ../cleaners/transmission.xml msgid "Statistics" msgstr "Statistik" #: ../cleaners/transmission.xml msgid "Delete the file" msgstr "Die Datei löschen" #: ../cleaners/paint.xml ../cleaners/windows_media_player.xml #: ../cleaners/windows_explorer.xml ../cleaners/teamviewer.xml #: ../cleaners/microsoft_office.xml ../cleaners/vlc.xml ../cleaners/winamp.xml #: ../cleaners/winzip.xml ../cleaners/winrar.xml ../cleaners/wordpad.xml msgid "Delete the most recently used list" msgstr "Die zuletzt benutzen Listen löschen" #: ../cleaners/emesene.xml msgid "Delete the avatars and emoticons cache" msgstr "Den Avatar- und Smilypuffer löschen" #: ../cleaners/windows_media_player.xml ../cleaners/realplayer.xml #: ../cleaners/vlc.xml ../cleaners/winamp.xml msgid "Media player" msgstr "Medienspieler" #: ../cleaners/windows_explorer.xml ../cleaners/nautilus.xml msgid "File manager" msgstr "Dateiverwaltung" #: ../cleaners/windows_explorer.xml ../cleaners/gwenview.xml #: ../cleaners/gedit.xml ../cleaners/kde.xml ../bleachbit/Cleaner.py:468 #: ../bleachbit/Cleaner.py:663 msgid "Recent documents list" msgstr "Liste der zuletzt verwendeten Dokumente" #: ../cleaners/windows_explorer.xml msgid "" "This option will reset pinned locations in Quick Access to their defaults." msgstr "" "Diese Option setzt festgelegte Positionen im Schnellzugriff auf ihre " "Vorgabewerte zurück." #. In Windows 'Run' is the dialog in the Start menu #. In GNOME 'Run' is the dialog shown when typing ALT+F2' #: ../cleaners/windows_explorer.xml ../cleaners/gnome.xml msgid "Run" msgstr "Ausführen" #: ../cleaners/windows_explorer.xml ../cleaners/opera.xml ../cleaners/gnome.xml #: ../cleaners/google_toolbar.xml msgid "Search history" msgstr "Suchverlauf" #: ../cleaners/windows_explorer.xml ../cleaners/opera.xml ../cleaners/gnome.xml #: ../cleaners/google_toolbar.xml msgid "Delete the search history" msgstr "Den Suchverlauf löschen" #: ../cleaners/windows_explorer.xml msgid "This will restart Windows Explorer." msgstr "Das wird den Windows-Explorer neu starten." #: ../cleaners/gl-117.xml ../cleaners/microsoft_office.xml #: ../cleaners/beagle.xml ../cleaners/secondlife_viewer.xml ../cleaners/x11.xml msgid "Debug logs" msgstr "Fehlersuchprotokolle" #: ../cleaners/gl-117.xml ../cleaners/microsoft_office.xml #: ../cleaners/easytag.xml ../cleaners/beagle.xml #: ../cleaners/secondlife_viewer.xml ../cleaners/x11.xml msgid "Delete the debug logs" msgstr "Die Fehlersuchprotokolle löschen" #: ../cleaners/google_earth.xml ../cleaners/winetricks.xml ../cleaners/vuze.xml #: ../cleaners/adobe_reader.xml ../cleaners/amule.xml ../cleaners/wine.xml #: ../cleaners/internet_explorer.xml ../cleaners/gimp.xml ../cleaners/kde.xml #: ../cleaners/deepscan.xml ../bleachbit/Cleaner.py:520 msgid "Temporary files" msgstr "Temporäre Dateien" #: ../cleaners/google_earth.xml ../cleaners/winetricks.xml ../cleaners/vuze.xml #: ../cleaners/adobe_reader.xml ../cleaners/amule.xml ../cleaners/wine.xml #: ../cleaners/internet_explorer.xml ../cleaners/gimp.xml ../cleaners/kde.xml #: ../cleaners/deepscan.xml ../bleachbit/Cleaner.py:520 msgid "Delete the temporary files" msgstr "Die temporären Dateien löschen" #: ../cleaners/seamonkey.xml ../cleaners/opera.xml ../bleachbit/Cleaner.py:201 msgid "Download history" msgstr "Übertragungsverlauf" #: ../cleaners/seamonkey.xml ../cleaners/opera.xml ../bleachbit/Cleaner.py:201 msgid "List of files downloaded" msgstr "Liste der heruntergeladenen Dateien" #: ../cleaners/seamonkey.xml msgid "Delete the list of visited web pages" msgstr "Die Liste mit den besuchten Internetseiten löschen" #: ../cleaners/vuze.xml ../cleaners/deepscan.xml ../bleachbit/Cleaner.py:190 msgid "Backup files" msgstr "Sicherungsdateien" #: ../cleaners/vuze.xml ../cleaners/deepscan.xml ../bleachbit/Cleaner.py:191 msgid "Delete the backup files" msgstr "Die Sicherungsdateien löschen" #: ../cleaners/konqueror.xml ../cleaners/opera.xml ../cleaners/chromium.xml msgid "Current session" msgstr "Aktuelle Sitzung" #: ../cleaners/konqueror.xml ../cleaners/opera.xml ../cleaners/chromium.xml msgid "Delete the current session" msgstr "Die aktuelle Sitzung löschen" #: ../cleaners/konqueror.xml ../cleaners/opera.xml ../bleachbit/Cleaner.py:213 msgid "URL history" msgstr "Adressverlauf" #: ../cleaners/microsoft_office.xml ../cleaners/libreoffice.xml #: ../bleachbit/Cleaner.py:375 msgid "Office suite" msgstr "Büropaket" #: ../cleaners/windows_defender.xml msgid "Anti-virus" msgstr "Antivirus" #: ../cleaners/journald.xml msgid "System journals" msgstr "Systemprotokolle" #: ../cleaners/journald.xml msgid "Clean old system journals" msgstr "Alte Systemprotokolle reinigen" #: ../cleaners/adobe_reader.xml msgid "Document viewer" msgstr "Dokumentbetrachter" #: ../cleaners/evolution.xml ../cleaners/thunderbird.xml msgid "Email client" msgstr "E-Mail-Programm" #: ../cleaners/tremulous.xml msgid "Delete the list of game servers" msgstr "Die Liste der Spiele-Server löschen" #: ../cleaners/sqlite3.xml ../cleaners/bash.xml ../cleaners/octave.xml msgid "Delete the command history" msgstr "Den Befehlsverlauf löschen" #: ../cleaners/wine.xml msgid "Compatibility layer for Windows software" msgstr "Kompatibilitätsschicht für Windows-Programme" #: ../cleaners/internet_explorer.xml ../cleaners/chromium.xml #: ../cleaners/google_chrome.xml ../bleachbit/Cleaner.py:202 msgid "Form history" msgstr "Formularverlauf" #: ../cleaners/internet_explorer.xml ../bleachbit/Cleaner.py:203 msgid "A history of forms entered in web sites and in the Search bar" msgstr "" "Der Verlauf von Formulareingaben die in Internetseiten und in die Suchleiste " "eingegeben wurden" #. This software edits metadata tags, such as title and artist, in audio files #: ../cleaners/easytag.xml msgid "Audio files tagger" msgstr "Tondateienverschlagwortung" #: ../cleaners/apt.xml msgid "Delete obsolete files" msgstr "Veraltete Dateien löschen" #: ../cleaners/apt.xml msgid "Package lists" msgstr "Paketlisten" #: ../cleaners/xine.xml ../cleaners/miro.xml ../cleaners/flash.xml msgid "Multimedia viewer" msgstr "Medienbetrachter" #: ../cleaners/recoll.xml ../cleaners/beagle.xml msgid "Search tool" msgstr "Suchwerkzeug" #: ../cleaners/recoll.xml ../cleaners/beagle.xml ../cleaners/thunderbird.xml msgid "Index" msgstr "Index" #: ../cleaners/recoll.xml msgid "" "Delete the search index, a database of words and the files they contain" msgstr "" "Den Suchindex löschen, eine Wörterdatenbank und die Dateien, die sie " "enthalten" #: ../cleaners/gimp.xml msgid "Graphics editor" msgstr "Bildbearbeitung" #: ../cleaners/exaile.xml msgid "Downloaded podcasts" msgstr "Heruntergeladene Podcasts" #: ../cleaners/exaile.xml msgid "Delete downloaded podcasts" msgstr "Heruntergeladene Podcasts löschen" #: ../cleaners/bash.xml msgid "Shell" msgstr "Shell" #. TRANSLATORS: DOM = Document Object Model. #: ../cleaners/opera.xml ../cleaners/epiphany.xml ../cleaners/chromium.xml #: ../cleaners/google_chrome.xml ../bleachbit/Cleaner.py:199 msgid "DOM Storage" msgstr "DOM-Speicher" #: ../cleaners/opera.xml ../cleaners/epiphany.xml ../cleaners/chromium.xml #: ../cleaners/google_chrome.xml ../bleachbit/Cleaner.py:199 msgid "Delete HTML5 cookies" msgstr "HTML5-Profildateien löschen" #: ../cleaners/opera.xml ../cleaners/epiphany.xml ../cleaners/chromium.xml #: ../cleaners/google_chrome.xml ../cleaners/thunderbird.xml #: ../bleachbit/Cleaner.py:208 msgid "Passwords" msgstr "Passwörter" #: ../cleaners/opera.xml ../cleaners/epiphany.xml ../cleaners/chromium.xml #: ../cleaners/google_chrome.xml ../cleaners/thunderbird.xml #: ../bleachbit/Cleaner.py:209 msgid "" "A database of usernames and passwords as well as a list of sites that should " "not store passwords" msgstr "" "Eine Datenbank sowohl von Benutzernamen und Passwörtern als auch von Seiten, " "welche keine Passwörter speichern sollen" #: ../cleaners/opera.xml ../cleaners/epiphany.xml ../cleaners/chromium.xml #: ../cleaners/google_chrome.xml ../cleaners/thunderbird.xml #: ../bleachbit/Cleaner.py:211 msgid "This option will delete your saved passwords." msgstr "Diese Option wird Ihre gespeicherten Passwörter löschen." #: ../cleaners/nautilus.xml msgid "Custom folders will be reset." msgstr "Benutzerdefinierte Ordner werden zurückgesetzt." #: ../cleaners/gnome.xml ../cleaners/kde.xml msgid "Desktop environment" msgstr "Arbeitsumgebung" #: ../cleaners/screenlets.xml msgid "Widgets for the desktop" msgstr "Widgets für den Schreibtisch" #: ../cleaners/epiphany.xml msgid "Places" msgstr "Orte" #: ../cleaners/epiphany.xml msgid "" "A database of URLs including bookmarks, favicons, and a history of visited " "web sites" msgstr "" "Eine Datenbank von Adressen, inklusive Lesezeichen, Favicons und ein Verlauf " "der besuchten Seiten" #: ../cleaners/epiphany.xml msgid "This option deletes all bookmarks." msgstr "Diese Option löscht alle Lesezeichen." #: ../cleaners/winrar.xml msgid "File archiver" msgstr "Archivverwaltung" #: ../cleaners/elinks.xml msgid "Delete the cookies, visited URLs, and search history" msgstr "" "Die Profildateien (Cookies) löschen, besuchte Adressen und den Suchverlauf" #: ../cleaners/chromium.xml ../cleaners/google_chrome.xml msgid "A history of forms entered in web sites" msgstr "" "Der Verlauf von Formulareingaben die in Internetseiten eingegeben wurden" #: ../cleaners/chromium.xml ../cleaners/google_chrome.xml msgid "" "Delete the history which includes visited sites, downloads, and thumbnails" msgstr "" "Den Verlauf löschen, was besuchte Seiten, Übertragungen und Vorschaubilder " "beinhaltet" #: ../cleaners/chromium.xml ../cleaners/google_chrome.xml msgid "Search engines" msgstr "Suchmaschinen" #. 'Factory' means a search engine that is installed by default 'from the factory,' but this is different than a 'default search engine' https://lists.launchpad.net/launchpad-translators/msg00283.html #: ../cleaners/chromium.xml ../cleaners/google_chrome.xml msgid "" "Reset the search engine usage history and delete non-factory search engines, " "some of which are added automatically" msgstr "" "Den Suchmaschinenverlauf zurücksetzen und nicht vorinstallierte " "Suchmaschinen löschen, welche automatisch hinzugefügt wurden" #: ../cleaners/audacious.xml msgid "Audio player" msgstr "Musikwiedergabe" #: ../cleaners/rhythmbox.xml msgid "Database" msgstr "Datenbank" #: ../cleaners/rhythmbox.xml msgid "" "Delete the database, which contain information such as play count and last " "played" msgstr "" "Die Datenbank löschen – diese enthält Informationen, wie Abspielliste und " "zuletzt wiedergegeben." #: ../cleaners/google_chrome.xml msgid "Session" msgstr "Sitzung" #: ../cleaners/google_chrome.xml msgid "Delete the current and last sessions" msgstr "Die aktuelle und die letzten Sitzungen löschen" #: ../cleaners/x11.xml msgid "Windowing system" msgstr "Fenstertechniksystem" #: ../cleaners/wordpad.xml msgid "Word processor" msgstr "Textverarbeitung" #: ../cleaners/deepscan.xml msgid "Deep scan" msgstr "Tiefenscan" #: ../cleaners/deepscan.xml msgid "Clean files widely scattered across the disk" msgstr "Weit über der Platte verstreute Dateien reinigen" #: ../cleaners/deepscan.xml msgid "Inspect the preview for any files you want to keep." msgstr "" "Überprüfen Sie in der Vorschau, ob Sie Dateien finden, die Sie behalten " "möchten." #: ../cleaners/deepscan.xml msgid "This option is slow." msgstr "Diese Option verlangsamt den Vorgang." #: ../bleachbit.desktop msgid "Unnecessary file cleaner" msgstr "Reiniger für unnötige Dateien" #: ../bleachbit.desktop msgid "Free space and maintain privacy" msgstr "Speicherplatz freigeben und die Privatsphäre schützen" #: ../bleachbit/FileUtilities.py:668 msgid "" "There was at least one file on a file system that does not support advanced " "overwriting." msgstr "" "Es gab mindestens eine Datei auf dem Dateisystem, welche das erweitert " "Überschreiben nicht unterstützt." #: ../bleachbit/Unix.py:574 #, python-format msgid "Executable not found: %s" msgstr "Ausführbare Datei nicht gefunden: %s" #. TRANSLATORS: %s expands to a name such as 'Firefox' or 'System'. #: ../bleachbit/Unix.py:623 ../bleachbit/Worker.py:136 #, python-format msgid "" "%s cannot be cleaned because it is currently running. Close it, and try " "again." msgstr "" "%s konnte nicht gereinigt werden, da es noch aktiv ist. Bitte das Programm " "beenden und den Vorgang wiederholen." #: ../bleachbit/GuiBasic.py:112 msgid "Delete confirmation" msgstr "Löschbestätigung" #: ../bleachbit/GuiBasic.py:122 msgid "" "Are you sure you want to permanently delete files according to the selected " "operations? The actual files that will be deleted may have changed since " "you ran the preview." msgstr "" "Sind Sie sicher, dass Sie alle ausgewählten Dateien für immer löschen " "wollen? Die aktuellen Dateien, die gelöscht werden, können sich geändert " "haben, wenn Sie vorher eine Vorschau erstellt haben." #: ../bleachbit/GuiBasic.py:125 msgid "Are you sure you want to permanently delete these files?" msgstr "Sind Sie sicher, dass Sie diese Dateien für immer löschen wollen?" #: ../bleachbit/GuiBasic.py:162 #, python-format msgid "" "Because you are running as root, please manually open this link in a web " "browser:\n" "%s" msgstr "" "Sie sind als Systemverwalter angemeldet, bitte den folgenden Verweis manuell " "in einem Internet-Browser öffnen:\n" "%s" #. TRANSLATORS: %s expands to www.bleachbit.org or similar #: ../bleachbit/GuiBasic.py:174 #, python-format msgid "Open web browser to %s?" msgstr "%s im Internet-Browser öffnen" #. TRANSLATORS: This is the label in the log indicating was #. skipped because it matches the whitelist #: ../bleachbit/Command.py:47 msgid "Skip" msgstr "Übersprungen" #. TRANSLATORS: This is the label in the log indicating will be #. deleted (for previews) or was actually deleted #: ../bleachbit/Command.py:77 msgid "Delete" msgstr "Löschen" #: ../bleachbit/Command.py:99 msgid "" "At least one file was locked by another process, so its contents could not " "be overwritten. It will be marked for deletion upon system reboot." msgstr "" "Mindestens eine Datei würde durch einen anderen Prozess gesperrt, deshalb " "könnte dieser Inhalt nicht überschreiben werden. Diese Dateien wurden " "vorgemerkt, um sie bei einem Systemneustart zu löschen." #. TRANSLATORS: The file will be deleted when the #. system reboots #: ../bleachbit/Command.py:102 msgid "Mark for deletion" msgstr "Zum Löschen auswählen" #. TRANSLATORS: Parts of this file will be deleted #: ../bleachbit/Command.py:199 ../bleachbit/Command.py:233 #: ../bleachbit/Action.py:254 ../bleachbit/Action.py:267 #: ../bleachbit/Action.py:280 ../bleachbit/Action.py:293 #: ../bleachbit/Action.py:306 msgid "Clean file" msgstr "Datei bereinigen" #. TRANSLATORS: The file will be truncated to 0 bytes in length #: ../bleachbit/Command.py:275 msgid "Truncate" msgstr "Verkleinern" #: ../bleachbit/Command.py:317 msgid "Delete registry key" msgstr "Registrierungsschlüssel löschen" #. TRANSLATORS: This is cleaner name for cleaners imported from winapp2.ini #: ../bleachbit/Winapp.py:44 msgid "Applications" msgstr "Anwendungen" #. TRANSLATORS: This is cleaner name for cleaners imported #. from winapp2.ini #: ../bleachbit/Winapp.py:47 msgid "Internet" msgstr "Internet" #. TRANSLATORS: This is cleaner name for cleaners imported #. from winapp2.ini #: ../bleachbit/Winapp.py:50 msgid "Multimedia" msgstr "Multimedia" #. TRANSLATORS: This is cleaner name for cleaners imported #. from winapp2.ini #: ../bleachbit/Winapp.py:53 msgid "Utilities" msgstr "Dienstprogramme und Werkzeuge" #: ../bleachbit/Winapp.py:64 msgid "Games" msgstr "Spiele" #: ../bleachbit/Winapp.py:162 msgid "Imported from winapp2.ini" msgstr "Importiert von winapp2.ini" #: ../bleachbit/Cleaner.py:197 msgid "Crash reports" msgstr "Absturzberichte" #: ../bleachbit/Cleaner.py:204 msgid "Session restore" msgstr "Sitzung wiederherstellen" #: ../bleachbit/Cleaner.py:205 msgid "Loads the initial session after the browser closes or crashes" msgstr "" "Lädt die initiale Sitzung nachdem der Browser beendet wurde oder abgestürzt " "ist" #: ../bleachbit/Cleaner.py:207 msgid "Site preferences" msgstr "Seiteneinstellungen" #: ../bleachbit/Cleaner.py:207 msgid "Settings for individual sites" msgstr "Einstellungen für individuelle Seiten" #. TRANSLATORS: desktop entries are .desktop files in Linux that #. make up the application menu (the menu that shows BleachBit, #. Firefox, and others. The .desktop files also associate file #. types, so clicking on an .html file in Nautilus brings up #. Firefox. #. More information: #. http://standards.freedesktop.org/menu-spec/latest/index.html#introduction #: ../bleachbit/Cleaner.py:453 msgid "Broken desktop files" msgstr "Beschädigte Schreibtischdateien" #: ../bleachbit/Cleaner.py:454 msgid "Delete broken application menu entries and file associations" msgstr "Löscht beschädigte Programmeinträge und Dateiendungen" #. TRANSLATORS: Localizations are files supporting specific #. languages, so applications appear in Spanish, etc. #: ../bleachbit/Cleaner.py:458 msgid "Localizations" msgstr "Lokalisierungen" #: ../bleachbit/Cleaner.py:459 msgid "Delete files for unwanted languages" msgstr "Löscht die Dateien von den unerwünschten Sprachen" #: ../bleachbit/Cleaner.py:461 msgid "Configure this option in the preferences." msgstr "Diese Option kann in den Einstellungen bearbeitet werden." #: ../bleachbit/Cleaner.py:467 msgid "Rotated logs" msgstr "Rotierende Protokolle" #: ../bleachbit/Cleaner.py:467 msgid "Delete old system logs" msgstr "Alte Systemprotokolle löschen" #: ../bleachbit/Cleaner.py:470 msgid "Trash" msgstr "Papierkorb" #: ../bleachbit/Cleaner.py:470 msgid "Empty the trash" msgstr "Den Papierkorb leeren" #: ../bleachbit/Cleaner.py:476 ../bleachbit/Cleaner.py:627 #: ../bleachbit/Worker.py:184 msgid "Memory" msgstr "Arbeitsspeicher" #. TRANSLATORS: 'free' means 'unallocated' #: ../bleachbit/Cleaner.py:478 msgid "Wipe the swap and free memory" msgstr "Den Swap und freien Arbeitsspeicher säubern" #: ../bleachbit/Cleaner.py:480 msgid "This option is experimental and may cause system problems." msgstr "Diese Option ist experimentell und könnte Systemfehler verursachen." #: ../bleachbit/Cleaner.py:488 msgid "Memory dump" msgstr "Speicherabbild" #: ../bleachbit/Cleaner.py:488 msgid "Delete the file memory.dmp" msgstr "Datei memory.dmp löschen" #. TRANSLATORS: Prefetch is Microsoft Windows jargon. #: ../bleachbit/Cleaner.py:491 msgid "Prefetch" msgstr "Vorabruf" #: ../bleachbit/Cleaner.py:493 msgid "Recycle bin" msgstr "Papierkorb" #: ../bleachbit/Cleaner.py:493 ../bleachbit/Cleaner.py:787 msgid "Empty the recycle bin" msgstr "Den Papierkorb leeren" #. TRANSLATORS: 'Update' is a noun, and 'Update uninstallers' is an option to delete #. the uninstallers for software updates. #: ../bleachbit/Cleaner.py:496 msgid "Update uninstallers" msgstr "Uninstaller updaten" #: ../bleachbit/Cleaner.py:497 msgid "" "Delete uninstallers for Microsoft updates including hotfixes, service packs, " "and Internet Explorer updates" msgstr "" "Deinstallationsprogramme für Microsoft-Aktualisierungen (inklusive " "Hotfixes), Service Packs (Wartungspakete) und Internet-Explorer-" "Aktualisierungen löschen" #: ../bleachbit/Cleaner.py:504 ../bleachbit/Cleaner.py:727 msgid "Clipboard" msgstr "Zwischenablage" #: ../bleachbit/Cleaner.py:505 msgid "" "The desktop environment's clipboard used for copy and paste operations" msgstr "" "Die Zwischenablage der Arbeitsumgebung, welche zum Kopieren und Einfügen " "benutzt wird" #. TRANSLATORS: "Custom" is an option allowing the user to specify which #. files and folders will be erased. #: ../bleachbit/Cleaner.py:512 ../bleachbit/GuiPreferences.py:66 msgid "Custom" msgstr "Benutzerdefiniert" #: ../bleachbit/Cleaner.py:513 msgid "Delete user-specified files and folders" msgstr "Benutzerdeinierte Dateien und Ordner löschen" #. TRANSLATORS: 'free' means 'unallocated' #: ../bleachbit/Cleaner.py:515 msgid "Free disk space" msgstr "Freier Speicherplatz" #. TRANSLATORS: 'free' means 'unallocated' #: ../bleachbit/Cleaner.py:517 msgid "Overwrite free disk space to hide deleted files" msgstr "" "Überschreibt den freien Speicherplatz, um gelöschte Daten zu verstecken" #: ../bleachbit/Cleaner.py:518 msgid "This option is very slow." msgstr "Diese Option verlangsamt den Vorgang." #: ../bleachbit/Cleaner.py:522 msgid "The system in general" msgstr "Das System im Allgemeinen" #: ../bleachbit/Cleaner.py:524 ../bleachbit/Cleaner.py:857 msgid "System" msgstr "System" #. TRANSLATORS: 'Free' means 'unallocated.' #. %s expands to a path such as C:\ or /tmp/ #: ../bleachbit/Cleaner.py:735 ../bleachbit/Cleaner.py:890 #, python-format msgid "Overwrite free disk space %s" msgstr "Freien Speicherplatz von %s überschreiben" #: ../bleachbit/RecognizeCleanerML.py:59 msgid "Security warning" msgstr "Sicherheitswarnung" #: ../bleachbit/RecognizeCleanerML.py:72 msgid "" "These cleaner definitions are new or have changed. Malicious definitions can " "damage your system. If you do not trust these changes, delete the files or " "quit." msgstr "" "Diese Reinigungsdefinitionen sind neu oder wurden verändert. Schädliche " "Definitionen könnten Ihr System beschädigen. Wenn Sie den Änderungen nicht " "trauen, löschen Sie diese Dateien oder beenden Sie das Programm." #: ../bleachbit/RecognizeCleanerML.py:88 msgctxt "column_label" msgid "Delete" msgstr "Löschen" #: ../bleachbit/RecognizeCleanerML.py:93 msgctxt "column_label" msgid "Filename" msgstr "Dateiname" #. TRANSLATORS: This indicates an error. The special keyword #. %(operation)s will be replaced by 'firefox' or 'opera' or #. some other cleaner ID. The special keyword %(msg)s will be #. replaced by a message such as 'Permission denied.' #: ../bleachbit/Worker.py:74 #, python-format msgid "Exception while running operation '%(operation)s': '%(msg)s'" msgstr "" "Ausnahmeerscheinung während der laufenden Prozedur von »%(operation)s« " "entdeckt: »%(msg)s«" #. TRANSLATORS: 'free' means 'unallocated' #: ../bleachbit/Worker.py:182 msgid "Please wait. Wiping free disk space." msgstr "Bitte warten. Freier Speicherplatz wird gereinigt." #. TRANSLATORS: %s is replaced with Firefox, System, etc. #: ../bleachbit/Worker.py:184 ../bleachbit/Worker.py:332 #, python-format msgid "Please wait. Cleaning %s." msgstr "Bitte warten. %s wird gereinigt." #: ../bleachbit/Worker.py:199 msgid "Please wait. Wiping file system metadata." msgstr "Bitte warten, Dateisystemmetadaten werden entfernt." #: ../bleachbit/Worker.py:202 msgid "Please wait. Cleaning up after wiping file system metadata." msgstr "" "Bitte warten. Es wird gereinigt, nachdem die Dateisystemmetadaten entfernt " "wurden." #: ../bleachbit/Worker.py:205 #, python-format msgid "About %d minute remaining." msgid_plural "About %d minutes remaining." msgstr[0] "Noch %d Minute verbleibend." msgstr[1] "Noch %d Minuten verbleibend." #. TRANSLATORS: This refers to disk space that was #. really recovered (in other words, not a preview) #: ../bleachbit/Worker.py:272 #, python-format msgid "Disk space recovered: %s" msgstr "Gewonnener Speicherplatz: %s" #. TRANSLATORS: This refers to a preview (no real #. changes were made yet) #: ../bleachbit/Worker.py:276 #, python-format msgid "Disk space to be recovered: %s" msgstr "Gewonnener Speicherplatz: %s" #. TRANSLATORS: This refers to the number of files really #. deleted (in other words, not a preview). #: ../bleachbit/Worker.py:281 #, python-format msgid "Files deleted: %d" msgstr "Gelöschte Dateien: %d" #. TRANSLATORS: This refers to the number of files that #. would be deleted (in other words, simply a preview). #: ../bleachbit/Worker.py:285 #, python-format msgid "Files to be deleted: %d" msgstr "Löschbare Dateien: %d" #: ../bleachbit/Worker.py:288 #, python-format msgid "Special operations: %d" msgstr "Spezialvorgänge: %d" #: ../bleachbit/Worker.py:291 #, python-format msgid "Errors: %d" msgstr "Fehler: %d" #. TRANSLATORS: The "deep scan" feature searches over broad #. areas of the file system such as the user's whole home directory #. or all the system executables. #: ../bleachbit/Worker.py:306 msgid "Please wait. Running deep scan." msgstr "Bitte warten. Tiefenscan wird durchgeführt." #. TRANSLATORS: %s is replaced with Firefox, System, etc. #: ../bleachbit/Worker.py:335 #, python-format msgid "Please wait. Previewing %s." msgstr "Bitte warten. %s wird analysiert." #: ../bleachbit/Update.py:80 msgid "New winapp2.ini was downloaded." msgstr "Die neue Version der Datei winapp2.ini wurde heruntergeladen." #: ../bleachbit/Update.py:125 msgid "Update BleachBit" msgstr "BleachBit aktualisieren" #: ../bleachbit/Update.py:130 msgid "A new version is available." msgstr "Eine neue Version ist verfügbar." #. TRANSLATORS: %s expands to version such as '0.8.4' or '0.8.5beta' or #. similar #: ../bleachbit/Update.py:139 #, python-format msgid "Update to version %s" msgstr "Auf Version %s aktualisieren" #: ../bleachbit/Update.py:164 #, python-format msgid "" "Error when opening a network connection to %s to check for updates. Please " "verify the network is working." msgstr "" "Fehler beim Öffnen einer Netzwerkverbindung zu %s, um nach Aktualisierungen " "zu suchen. Bitte überprüfen Sie, ob eine Netzwerkverbindung verfügbar ist." #: ../bleachbit/CLI.py:106 #, python-format msgid "not a valid cleaner: %s" msgstr "Ungültiger Reiniger: %s" #. TRANSLATORS: This is the command line usage. Don't translate #. %prog, but do translate usage, options, cleaner, and option. #. More information about the command line is here #. https://www.bleachbit.org/documentation/command-line #: ../bleachbit/CLI.py:133 msgid "usage: %prog [options] cleaner.option1 cleaner.option2" msgstr "%prog [Optionen] Reiniger.Option1 Reiniger.Option2" #: ../bleachbit/CLI.py:136 msgid "list cleaners" msgstr "Listet alle Reiniger auf" #. TRANSLATORS: predefined cleaners are for applications, such as Firefox and Flash. #. This is different than cleaning an arbitrary file, such as a #. spreadsheet on the desktop. #: ../bleachbit/CLI.py:141 msgid "run cleaners to delete files and make other permanent changes" msgstr "" "Reiniger ausführen, um Dateien zu löschen und andere dauerhafte Änderungen " "durchzuführen" #: ../bleachbit/CLI.py:144 msgid "shred specific files or folders" msgstr "Bestimmte Dateien oder Ordner schreddern" #: ../bleachbit/CLI.py:146 msgid "show system information" msgstr "Systeminformationen anzeigen" #: ../bleachbit/CLI.py:148 msgid "launch the graphical interface" msgstr "Grafische Oberfläche starten" #: ../bleachbit/CLI.py:152 msgid "do not prompt for administrator privileges" msgstr "Nicht nach Systemverwaltungsrechten fragen" #: ../bleachbit/CLI.py:157 msgid "preview files to be deleted and other changes" msgstr "Vorschau der löschbaren Dateien und anderen Änderungen" #: ../bleachbit/CLI.py:161 msgid "use options set in the graphical interface" msgstr "" "Einstellungen verwenden, die über die grafische Oberfläche festgelegt wurden" #: ../bleachbit/CLI.py:164 msgid "update winapp2.ini, if a new version is available" msgstr "winapp2.ini aktualisieren, wenn eine neue Version verfügbar ist" #: ../bleachbit/CLI.py:166 msgid "output version information and exit" msgstr "Versionsinformationen anzeigen und beenden" #: ../bleachbit/CLI.py:168 msgid "overwrite files to hide contents" msgstr "Überschreibt Dateien, um deren Inhalt zu verstecken" #. TRANSLATORS: this is the context menu #: ../bleachbit/Action.py:382 ../bleachbit/GUI.py:632 msgid "Clean" msgstr "Bereinigen" #: ../bleachbit/Action.py:418 #, python-format msgid "Run external command: %s" msgstr "Externen Befehl ausführen: %s" #: ../bleachbit/GUI.py:135 ../bleachbit/GuiPreferences.py:296 msgid "Name" msgstr "Name" #: ../bleachbit/GUI.py:143 msgid "Active" msgstr "Aktiv" #. TRANSLATORS: Size is the label for the column that shows how #. much space an option would clean or did clean #: ../bleachbit/GUI.py:155 msgid "Size" msgstr "Größe" #. TRANSLATORS: %(cleaner) may be Firefox, System, etc. #. %(option) may be cache, logs, cookies, etc. #. %(warning) may be 'This option is really slow' #: ../bleachbit/GUI.py:186 #, python-format msgid "" "Warning regarding %(cleaner)s - %(option)s:\n" "\n" "%(warning)s" msgstr "" "Bitte beachten: %(cleaner)s - %(option)s\n" "\n" "%(warning)s" #: ../bleachbit/GUI.py:372 msgid "You must select an operation" msgstr "Sie müssen einen Vorgang auswählen" #: ../bleachbit/GUI.py:391 ../bleachbit/GUI.py:413 msgid "Done." msgstr "Fertig." #: ../bleachbit/GUI.py:426 msgid "Program to clean unnecessary files" msgstr "Programm zum bereinigen nicht benötigter Dateien" #: ../bleachbit/GUI.py:436 msgid "" "GNU General Public License version 3 or later.\n" "See http://www.gnu.org/licenses/gpl-3.0.txt" msgstr "" "GNU General Public License version 3 or später.\n" "Siehe http://www.gnu.org/licenses/gpl-3.0.txt" #. TRANSLATORS: Maintain the names of translators here. #. Launchpad does this automatically for translations #. typed in Launchpad. This is a special string shown #. in the 'About' box. #: ../bleachbit/GUI.py:442 msgid "translator-credits" msgstr "" "Launchpad Contributions:\n" " Aljosha Papsch https://launchpad.net/~joschi-papsch-deactivatedaccount\n" " Andrew Ziem https://launchpad.net/~ahziem1\n" " DNS https://launchpad.net/~dns\n" " Daniel Winzen https://launchpad.net/~q-d\n" " Georg Engelmann https://launchpad.net/~georg-engelmann\n" " Gerjet Kleine-Weischede https://launchpad.net/~gerjet-deactivatedaccount-" "deactivatedaccount\n" " Heinrich Ulbricht https://launchpad.net/~heinrich-ulbricht\n" " Jakob Kramer https://launchpad.net/~jakobk\n" " Jens Maucher https://launchpad.net/~jensmaucher\n" " Mario Blättermann https://launchpad.net/~mario.blaettermann\n" " Phillip Sz https://launchpad.net/~phillip-sz\n" " Samuel Mehrbrodt https://launchpad.net/~sam92\n" " SpaceCafe https://launchpad.net/~spacecafe\n" " Stefan https://launchpad.net/~drezil\n" " Tee Zocker https://launchpad.net/~teezocker\n" " Tobias Bannert https://launchpad.net/~toba\n" " Torsten Franz https://launchpad.net/~torsten.franz\n" " Ubert Shok https://launchpad.net/~ushok\n" " cmdrhenner https://launchpad.net/~cmdrhenner\n" " jus https://launchpad.net/~jus\n" " pitfd https://launchpad.net/~pitfd" #: ../bleachbit/GUI.py:454 msgid "System information" msgstr "Systeminformationen" #: ../bleachbit/GUI.py:527 msgid "Choose files to shred" msgstr "Dateien zum Schreddern auswählen" #: ../bleachbit/GUI.py:530 msgid "Choose folder to shred" msgstr "Ordner zum Schreddern auswählen" #: ../bleachbit/GUI.py:594 ../bleachbit/GuiPreferences.py:197 #: ../bleachbit/GuiPreferences.py:326 ../bleachbit/GuiPreferences.py:367 msgid "Choose a folder" msgstr "Ordner auswählen" #. TRANSLATORS: this is the context menu #: ../bleachbit/GUI.py:627 msgid "Preview" msgstr "Vorschau" #: ../bleachbit/GUI.py:734 msgid "_Shred Files" msgstr "_Datei schreddern" #: ../bleachbit/GUI.py:736 msgid "Sh_red Folders" msgstr "_Ordner schreddern" #: ../bleachbit/GUI.py:738 msgid "_Wipe Free Space" msgstr "_Freien Speicherplatz säubern" #: ../bleachbit/GUI.py:740 msgid "S_hred Settings and Quit" msgstr "_Einstellungen schreddern und beenden" #: ../bleachbit/GUI.py:742 msgid "_Quit" msgstr "_Beenden" #: ../bleachbit/GUI.py:744 msgid "_File" msgstr "_Datei" #: ../bleachbit/GUI.py:746 ../bleachbit/GuiPreferences.py:58 msgid "Preferences" msgstr "Einstellungen" #: ../bleachbit/GUI.py:747 msgid "_Edit" msgstr "_Bearbeiten" #: ../bleachbit/GUI.py:748 msgid "Help Contents" msgstr "Hilfeinhalt" #: ../bleachbit/GUI.py:751 msgid "_Release Notes" msgstr "_Versionshinweise" #: ../bleachbit/GUI.py:754 msgid "_System Information" msgstr "_Systeminformationen" #: ../bleachbit/GUI.py:757 msgid "_About" msgstr "_Über" #: ../bleachbit/GUI.py:758 msgid "_Help" msgstr "_Hilfe" #: ../bleachbit/GUI.py:783 msgctxt "button" msgid "Preview" msgstr "Vorschau" #: ../bleachbit/GUI.py:788 msgid "Preview files in the selected operations (without deleting any files)" msgstr "" "Vorschau der Dateien in den ausgewählten Vorgängen (ohne irgendwelche " "Dateien zu löschen)" #: ../bleachbit/GUI.py:798 msgctxt "button" msgid "Clean" msgstr "Bereinigen" #: ../bleachbit/GUI.py:802 msgid "Clean files in the selected operations" msgstr "Dateien in den ausgewählten Bereichen bereinigen" #: ../bleachbit/GUI.py:893 msgid "Error when checking for updates: " msgstr "Fehler bei der Suche nach Aktualisierungen: " #: ../bleachbit/GUI.py:932 msgid "" "Error loading the SQLite module: the antivirus software may be blocking it." msgstr "" "Ein Fehler ist beim Laden des SQLite-Moduls aufgetreten: Das Antivirus-" "Programm könnte dieses sperren." #: ../bleachbit/GUI.py:935 msgid "" "You are running BleachBit with administrative privileges for cleaning shared " "parts of the system, and references to the user profile folder will clean " "only the root account." msgstr "" "Sie führen BleachBit mit Systemverwaltungsrechten aus, um gemeinsam benutzte " "Teile des Systems reinigen, Verweise zum Benutzerprofilordner werden nur das " "root-Kontos bereinigen." #: ../bleachbit/GUI.py:940 msgid "" "Run BleachBit with administrator privileges to improve the accuracy of " "overwriting the contents of files." msgstr "" "BleachBit mit Systemverwaltungsrechten starten, um die Genauigkeit der zu " "überschriebenen Dateien zu erhöhen." #: ../bleachbit/GuiPreferences.py:64 msgid "General" msgstr "Allgemein" #: ../bleachbit/GuiPreferences.py:67 msgid "Drives" msgstr "Laufwerke" #: ../bleachbit/GuiPreferences.py:70 msgid "Languages" msgstr "Sprachauswahl" #: ../bleachbit/GuiPreferences.py:72 msgid "Whitelist" msgstr "Ausnahmen" #: ../bleachbit/GuiPreferences.py:117 msgid "Check periodically for software updates via the Internet" msgstr "Regelmäßig nach Programmaktualisierungen im Internet suchen" #: ../bleachbit/GuiPreferences.py:122 msgid "" "If an update is found, you will be given the option to view information " "about it. Then, you may manually download and install the update." msgstr "" "Wenn eine Aktualisierung gefunden wurde, können Sie Informationen dazu " "einsehen und es anschließend manuell herunterladen und installieren." #: ../bleachbit/GuiPreferences.py:128 msgid "Check for new beta releases" msgstr "Auf neue Betaversionen prüfen" #: ../bleachbit/GuiPreferences.py:137 msgid "Download and update cleaners from community (winapp2.ini)" msgstr "" "Reinigungseinstellungen der Gemeinschaft herunterladen und aktualisieren " "(winapp2.ini)" #. TRANSLATORS: This means to hide cleaners which would do #. nothing. For example, if Firefox were never used on #. this system, this option would hide Firefox to simplify #. the list of cleaners. #: ../bleachbit/GuiPreferences.py:151 msgid "Hide irrelevant cleaners" msgstr "Nicht relevante Reiniger ausblenden" #. TRANSLATORS: Overwriting is the same as shredding. It is a way #. to prevent recovery of the data. You could also translate #. 'Shred files to prevent recovery.' #: ../bleachbit/GuiPreferences.py:159 msgid "Overwrite contents of files to prevent recovery" msgstr "" "Inhalte von Dateien überschreiben, um das Wiederherstellen zu verhindern" #: ../bleachbit/GuiPreferences.py:163 msgid "" "Overwriting is ineffective on some file systems and with certain BleachBit " "operations. Overwriting is significantly slower." msgstr "" "Überschreiben ist auf einigen Dateisystemen und bei einigen BleachBit-" "Vorgängen ineffektiv. Das Überschreiben ist wesentlich langsamer." #: ../bleachbit/GuiPreferences.py:166 msgid "Start BleachBit with computer" msgstr "BleachBit mit dem Rechner starten" #: ../bleachbit/GuiPreferences.py:172 msgid "Exit after cleaning" msgstr "Nach dem Reinigen das Programm beenden" #: ../bleachbit/GuiPreferences.py:178 msgid "Confirm before delete" msgstr "Bestätigung vor dem Löschen abwarten" #: ../bleachbit/GuiPreferences.py:186 msgid "Use IEC sizes (1 KiB = 1024 bytes) instead of SI (1 kB = 1000 bytes)" msgstr "" "IEC-Größen (1 KiB = 1024 Bytes) anstelle von SI-Größen (1 kB = 1000 Bytes) " "verwenden" #: ../bleachbit/GuiPreferences.py:221 msgid "" "Choose a writable folder for each drive for which to overwrite free space." msgstr "" "Bitte einen beschreibbaren Ordner auf jedem Laufwerk auswählen, bei welchem " "Sie den freien Speicher überschreiben möchten." #. TRANSLATORS: In the preferences dialog, this button adds a path to #. the list of paths #: ../bleachbit/GuiPreferences.py:243 msgctxt "button" msgid "Add" msgstr "Hinzufügen" #. TRANSLATORS: In the preferences dialog, this button removes a path #. from the list of paths #: ../bleachbit/GuiPreferences.py:247 ../bleachbit/GuiPreferences.py:458 msgctxt "button" msgid "Remove" msgstr "Entfernen" #: ../bleachbit/GuiPreferences.py:272 msgid "All languages will be deleted except those checked." msgstr "Alle Sprachen, außer den angewählten, werden gelöscht." #: ../bleachbit/GuiPreferences.py:288 msgid "Preserve" msgstr "Erhalten" #: ../bleachbit/GuiPreferences.py:292 msgid "Code" msgstr "Code" #: ../bleachbit/GuiPreferences.py:313 ../bleachbit/GuiPreferences.py:354 msgid "Choose a file" msgstr "Datei auswählen" #: ../bleachbit/GuiPreferences.py:320 ../bleachbit/GuiPreferences.py:361 #: ../bleachbit/GuiPreferences.py:405 msgid "File" msgstr "Datei" #: ../bleachbit/GuiPreferences.py:334 ../bleachbit/GuiPreferences.py:375 #: ../bleachbit/GuiPreferences.py:407 msgid "Folder" msgstr "Ordner" #: ../bleachbit/GuiPreferences.py:417 msgid "Theses paths will not be deleted or modified." msgstr "Diese Orte werden weder gelöscht noch verändert." #: ../bleachbit/GuiPreferences.py:420 msgid "These locations can be selected for deletion." msgstr "Diese Orte können zum Löschen ausgewählt werden." #: ../bleachbit/GuiPreferences.py:428 msgid "Type" msgstr "Typ" #. TRANSLATORS: In the tree view "Path" is used generically to refer to a #. file, a folder, or a pattern describing either #: ../bleachbit/GuiPreferences.py:434 msgid "Path" msgstr "Ort" #: ../bleachbit/GuiPreferences.py:446 msgctxt "button" msgid "Add file" msgstr "Datei hinzufügen" #: ../bleachbit/GuiPreferences.py:452 msgctxt "button" msgid "Add folder" msgstr "Ordner hinzufügen" bleachbit-2.0/po/se.po0000644000175000017500000010152613245436307012773 0ustar hlehle# Northern Sami translation for bleachbit # Copyright (c) 2012 Rosetta Contributors and Canonical Ltd 2012 # This file is distributed under the same license as the bleachbit package. # FIRST AUTHOR , 2012. # msgid "" msgstr "" "Project-Id-Version: bleachbit\n" "Report-Msgid-Bugs-To: FULL NAME \n" "POT-Creation-Date: 2011-08-17 20:52-0600\n" "PO-Revision-Date: 2012-10-19 01:00+0000\n" "Last-Translator: Christopher Forster \n" "Language-Team: Northern Sami \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n != 1;\n" "X-Launchpad-Export-Date: 2012-11-15 19:52+0000\n" "X-Generator: Launchpad (build 16272)\n" #: ../cleaners/tremulous.xml ../cleaners/gl-117.xml ../cleaners/nexuiz.xml #: ../cleaners/hippo_opensim_viewer.xml ../cleaners/secondlife_viewer.xml msgid "Game" msgstr "Speallu" #: ../cleaners/tremulous.xml ../cleaners/chromium.xml ../cleaners/miro.xml #: ../cleaners/audacious.xml ../cleaners/xine.xml ../cleaners/kde.xml #: ../cleaners/pidgin.xml ../cleaners/seamonkey.xml ../cleaners/liferea.xml #: ../cleaners/beagle.xml ../cleaners/opera.xml ../cleaners/rhythmbox.xml #: ../cleaners/epiphany.xml ../cleaners/transmission.xml #: ../cleaners/nexuiz.xml ../cleaners/hippo_opensim_viewer.xml #: ../cleaners/vuze.xml ../cleaners/evolution.xml ../cleaners/exaile.xml #: ../cleaners/google_chrome.xml ../cleaners/emesene.xml ../cleaners/amsn.xml #: ../cleaners/yahoo_messenger.xml ../cleaners/thumbnails.xml #: ../cleaners/safari.xml ../cleaners/java.xml ../cleaners/flash.xml #: ../cleaners/thunderbird.xml ../cleaners/adobe_reader.xml #: ../cleaners/gftp.xml ../cleaners/gpodder.xml #: ../cleaners/secondlife_viewer.xml ../bleachbit/Cleaner.py:186 #: ../bleachbit/Cleaner.py:296 ../bleachbit/Cleaner.py:363 msgid "Cache" msgstr "Gaskarájus" #: ../cleaners/tremulous.xml msgid "Delete the list of game servers" msgstr "" #: ../cleaners/yum.xml ../cleaners/miro.xml ../cleaners/audacious.xml #: ../cleaners/xine.xml ../cleaners/kde.xml ../cleaners/pidgin.xml #: ../cleaners/liferea.xml ../cleaners/beagle.xml ../cleaners/rhythmbox.xml #: ../cleaners/transmission.xml ../cleaners/nexuiz.xml ../cleaners/apt.xml #: ../cleaners/hippo_opensim_viewer.xml ../cleaners/vuze.xml #: ../cleaners/evolution.xml ../cleaners/exaile.xml ../cleaners/amsn.xml #: ../cleaners/yahoo_messenger.xml ../cleaners/thumbnails.xml #: ../cleaners/java.xml ../cleaners/windows_explorer.xml ../cleaners/flash.xml #: ../cleaners/adobe_reader.xml ../cleaners/gftp.xml ../cleaners/gpodder.xml #: ../cleaners/secondlife_viewer.xml ../bleachbit/Cleaner.py:296 #: ../bleachbit/Cleaner.py:363 ../bleachbit/Cleaner.py:383 #: ../bleachbit/Cleaner.py:385 msgid "Delete the cache" msgstr "" #. TRANSLATORS: Vacuum is a verb. The term is jargon #. from the SQLite database. Microsoft Access uses #. the term 'Compact Database' (which you may translate #. instead). Another synonym is 'defragment.' #: ../cleaners/yum.xml ../cleaners/chromium.xml ../cleaners/liferea.xml #: ../cleaners/google_chrome.xml ../cleaners/safari.xml #: ../cleaners/thunderbird.xml ../cleaners/gpodder.xml #: ../bleachbit/Cleaner.py:196 ../bleachbit/Cleaner.py:286 #: ../bleachbit/Action.py:323 msgid "Vacuum" msgstr "" #: ../cleaners/yum.xml ../cleaners/chromium.xml ../cleaners/liferea.xml #: ../cleaners/google_chrome.xml ../cleaners/safari.xml #: ../cleaners/thunderbird.xml ../cleaners/gpodder.xml #: ../bleachbit/Cleaner.py:196 msgid "" "Clean database fragmentation to reduce space and improve speed without " "removing any data" msgstr "" #: ../cleaners/chromium.xml ../cleaners/internet_explorer.xml #: ../cleaners/seamonkey.xml ../cleaners/opera.xml ../cleaners/epiphany.xml #: ../cleaners/google_chrome.xml ../cleaners/safari.xml ../cleaners/links2.xml #: ../cleaners/elinks.xml ../cleaners/konqueror.xml #: ../bleachbit/Cleaner.py:209 msgid "Web browser" msgstr "Fierpmádatlogan" #: ../cleaners/chromium.xml ../cleaners/seamonkey.xml ../cleaners/opera.xml #: ../cleaners/epiphany.xml ../cleaners/google_chrome.xml #: ../cleaners/safari.xml ../cleaners/thunderbird.xml #: ../bleachbit/Cleaner.py:186 msgid "Delete the web cache, which reduces time to display revisited pages" msgstr "" #: ../cleaners/chromium.xml ../cleaners/internet_explorer.xml #: ../cleaners/seamonkey.xml ../cleaners/liferea.xml ../cleaners/opera.xml #: ../cleaners/epiphany.xml ../cleaners/google_chrome.xml #: ../cleaners/safari.xml ../cleaners/flash.xml ../cleaners/thunderbird.xml #: ../cleaners/konqueror.xml ../cleaners/realplayer.xml #: ../cleaners/silverlight.xml ../bleachbit/Cleaner.py:187 msgid "Cookies" msgstr "Diehtočoahkku" #: ../cleaners/chromium.xml ../cleaners/internet_explorer.xml #: ../cleaners/seamonkey.xml ../cleaners/liferea.xml ../cleaners/opera.xml #: ../cleaners/epiphany.xml ../cleaners/google_chrome.xml #: ../cleaners/safari.xml ../cleaners/flash.xml ../cleaners/thunderbird.xml #: ../cleaners/konqueror.xml ../cleaners/realplayer.xml #: ../cleaners/silverlight.xml ../bleachbit/Cleaner.py:187 msgid "" "Delete cookies, which contain information such as web site preferences, " "authentication, and tracking identification" msgstr "" #. TRANSLATORS: DOM = Document Object Model. #: ../cleaners/chromium.xml ../cleaners/opera.xml #: ../cleaners/google_chrome.xml ../bleachbit/Cleaner.py:189 msgid "DOM Storage" msgstr "" #: ../cleaners/chromium.xml ../cleaners/opera.xml #: ../cleaners/google_chrome.xml ../bleachbit/Cleaner.py:189 msgid "Delete HTML5 cookies" msgstr "" #: ../cleaners/chromium.xml ../cleaners/internet_explorer.xml #: ../cleaners/google_chrome.xml ../bleachbit/Cleaner.py:191 msgid "Form history" msgstr "" #: ../cleaners/chromium.xml ../cleaners/google_chrome.xml msgid "A history of forms entered in web sites" msgstr "" #: ../cleaners/chromium.xml ../cleaners/d4x.xml ../cleaners/vim.xml #: ../cleaners/internet_explorer.xml ../cleaners/mc.xml #: ../cleaners/seamonkey.xml ../cleaners/windows_defender.xml #: ../cleaners/google_chrome.xml ../cleaners/nautilus.xml #: ../cleaners/safari.xml ../cleaners/bash.xml ../cleaners/links2.xml #: ../cleaners/elinks.xml ../cleaners/tortoisesvn.xml #: ../cleaners/realplayer.xml msgid "History" msgstr "Historihkka" #: ../cleaners/chromium.xml ../cleaners/google_chrome.xml msgid "" "Delete the history which includes visited sites, downloads, and thumbnails" msgstr "" #: ../cleaners/chromium.xml ../cleaners/google_chrome.xml msgid "Search engines" msgstr "" #. 'Factory' means a search engine that is installed by default 'from the factory,' but this is different than a 'default search engine' https://lists.launchpad.net/launchpad-translators/msg00283.html #: ../cleaners/chromium.xml ../cleaners/google_chrome.xml msgid "" "Reset the search engine usage history and delete non-factory search engines, " "some of which are added automatically" msgstr "" #: ../cleaners/chromium.xml ../cleaners/opera.xml ../cleaners/konqueror.xml msgid "Current session" msgstr "" #: ../cleaners/chromium.xml ../cleaners/opera.xml ../cleaners/konqueror.xml msgid "Delete the current session" msgstr "" #: ../cleaners/d4x.xml ../cleaners/mc.xml ../cleaners/nautilus.xml #: ../cleaners/gnome.xml ../cleaners/links2.xml ../cleaners/tortoisesvn.xml #: ../cleaners/realplayer.xml ../bleachbit/Cleaner.py:276 #: ../bleachbit/Cleaner.py:347 msgid "Delete the usage history" msgstr "" #: ../cleaners/vim.xml ../cleaners/gedit.xml msgid "Editor" msgstr "Čállinprográmma" #: ../cleaners/vim.xml msgid "" "Delete ~/.viminfo which includes file history, command history, and buffers" msgstr "" #: ../cleaners/miro.xml ../cleaners/xine.xml ../cleaners/flash.xml msgid "Multimedia viewer" msgstr "" #: ../cleaners/miro.xml ../cleaners/audacious.xml ../cleaners/screenlets.xml #: ../cleaners/hippo_opensim_viewer.xml ../cleaners/vuze.xml #: ../cleaners/exaile.xml ../cleaners/easytag.xml #: ../cleaners/yahoo_messenger.xml ../cleaners/teamviewer.xml #: ../cleaners/gftp.xml ../cleaners/amule.xml ../cleaners/realplayer.xml #: ../bleachbit/Cleaner.py:381 msgid "Logs" msgstr "" #: ../cleaners/miro.xml ../cleaners/audacious.xml ../cleaners/screenlets.xml #: ../cleaners/hippo_opensim_viewer.xml ../cleaners/vuze.xml #: ../cleaners/exaile.xml ../cleaners/yahoo_messenger.xml #: ../cleaners/teamviewer.xml ../cleaners/gftp.xml ../cleaners/amule.xml #: ../cleaners/realplayer.xml ../bleachbit/Cleaner.py:381 msgid "Delete the logs" msgstr "" #: ../cleaners/gl-117.xml ../cleaners/beagle.xml ../cleaners/x11.xml #: ../cleaners/microsoft_office.xml ../cleaners/secondlife_viewer.xml msgid "Debug logs" msgstr "" #: ../cleaners/gl-117.xml ../cleaners/beagle.xml ../cleaners/x11.xml #: ../cleaners/microsoft_office.xml ../cleaners/easytag.xml #: ../cleaners/secondlife_viewer.xml msgid "Delete the debug logs" msgstr "" #: ../cleaners/internet_explorer.xml ../bleachbit/Cleaner.py:191 msgid "A history of forms entered in web sites and in the Search bar" msgstr "" #: ../cleaners/internet_explorer.xml ../cleaners/opera.xml #: ../cleaners/safari.xml ../cleaners/konqueror.xml #: ../bleachbit/Cleaner.py:195 msgid "List of visited web pages" msgstr "" #: ../cleaners/internet_explorer.xml ../cleaners/kde.xml ../cleaners/vuze.xml #: ../cleaners/deepscan.xml ../cleaners/gimp.xml ../cleaners/google_earth.xml #: ../cleaners/adobe_reader.xml ../cleaners/amule.xml #: ../cleaners/winetricks.xml ../cleaners/wine.xml ../bleachbit/Cleaner.py:397 msgid "Temporary files" msgstr "" #: ../cleaners/internet_explorer.xml ../cleaners/kde.xml ../cleaners/vuze.xml #: ../cleaners/deepscan.xml ../cleaners/gimp.xml ../cleaners/google_earth.xml #: ../cleaners/adobe_reader.xml ../cleaners/amule.xml #: ../cleaners/winetricks.xml ../cleaners/wine.xml ../bleachbit/Cleaner.py:397 msgid "Delete the temporary files" msgstr "" #: ../cleaners/audacious.xml ../cleaners/filezilla.xml ../cleaners/winrar.xml #: ../cleaners/wordpad.xml ../cleaners/winamp.xml #: ../cleaners/windows_media_player.xml ../cleaners/microsoft_office.xml #: ../cleaners/winzip.xml ../cleaners/vlc.xml ../cleaners/windows_explorer.xml #: ../cleaners/teamviewer.xml ../cleaners/adobe_reader.xml #: ../cleaners/paint.xml ../bleachbit/Cleaner.py:297 msgid "Most recently used" msgstr "" #: ../cleaners/audacious.xml ../cleaners/kde.xml ../cleaners/filezilla.xml #: ../cleaners/gwenview.xml ../cleaners/gedit.xml #: ../cleaners/windows_explorer.xml ../cleaners/adobe_reader.xml #: ../bleachbit/Cleaner.py:297 ../bleachbit/Cleaner.py:373 msgid "Delete the list of recently used documents" msgstr "" #: ../cleaners/kde.xml ../cleaners/gwenview.xml ../cleaners/gedit.xml #: ../cleaners/windows_explorer.xml ../bleachbit/Cleaner.py:373 msgid "Recent documents list" msgstr "" #: ../cleaners/pidgin.xml ../cleaners/xchat.xml ../cleaners/emesene.xml #: ../cleaners/amsn.xml ../cleaners/yahoo_messenger.xml msgid "Chat client" msgstr "" #: ../cleaners/pidgin.xml ../cleaners/seamonkey.xml ../cleaners/xchat.xml #: ../cleaners/emesene.xml ../cleaners/amsn.xml #: ../cleaners/yahoo_messenger.xml ../cleaners/skype.xml msgid "Chat logs" msgstr "" #: ../cleaners/pidgin.xml ../cleaners/seamonkey.xml ../cleaners/xchat.xml #: ../cleaners/emesene.xml ../cleaners/amsn.xml #: ../cleaners/yahoo_messenger.xml ../cleaners/skype.xml msgid "Delete the chat logs" msgstr "" #: ../cleaners/seamonkey.xml ../cleaners/opera.xml ../bleachbit/Cleaner.py:190 msgid "Download history" msgstr "" #: ../cleaners/seamonkey.xml ../cleaners/opera.xml ../bleachbit/Cleaner.py:190 msgid "List of files downloaded" msgstr "" #: ../cleaners/seamonkey.xml msgid "Delete the list of visited web pages" msgstr "" #: ../cleaners/screenlets.xml msgid "Widgets for the desktop" msgstr "" #: ../cleaners/beagle.xml ../cleaners/recoll.xml msgid "Search tool" msgstr "" #: ../cleaners/beagle.xml msgid "Search indexes" msgstr "" #: ../cleaners/beagle.xml msgid "Delete the search indexes" msgstr "" #: ../cleaners/filezilla.xml ../cleaners/transmission.xml ../cleaners/vuze.xml #: ../cleaners/gftp.xml ../cleaners/amule.xml msgid "File transfer client" msgstr "" #: ../cleaners/windows_defender.xml ../cleaners/deepscan.xml msgid "Delete the files" msgstr "" #: ../cleaners/opera.xml ../cleaners/google_toolbar.xml ../cleaners/gnome.xml #: ../cleaners/windows_explorer.xml msgid "Search history" msgstr "" #: ../cleaners/opera.xml ../cleaners/google_toolbar.xml ../cleaners/gnome.xml #: ../cleaners/windows_explorer.xml msgid "Delete the search history" msgstr "" #: ../cleaners/opera.xml ../cleaners/konqueror.xml ../bleachbit/Cleaner.py:195 msgid "URL history" msgstr "" #: ../cleaners/winrar.xml ../cleaners/wordpad.xml ../cleaners/winamp.xml #: ../cleaners/windows_media_player.xml ../cleaners/microsoft_office.xml #: ../cleaners/winzip.xml ../cleaners/vlc.xml ../cleaners/windows_explorer.xml #: ../cleaners/teamviewer.xml ../cleaners/paint.xml msgid "Delete the most recently used list" msgstr "" #: ../cleaners/epiphany.xml ../cleaners/thunderbird.xml #: ../bleachbit/Cleaner.py:194 msgid "Passwords" msgstr "Beassansátnit" #: ../cleaners/epiphany.xml ../cleaners/thunderbird.xml #: ../bleachbit/Cleaner.py:194 msgid "" "A database of usernames and passwords as well as a list of sites that should " "not store passwords" msgstr "" #: ../cleaners/epiphany.xml msgid "Places" msgstr "Báikepanela" #: ../cleaners/epiphany.xml msgid "" "A database of URLs including bookmarks, favicons, and a history of visited " "web sites" msgstr "" #: ../cleaners/epiphany.xml msgid "This option deletes all bookmarks." msgstr "" #: ../cleaners/microsoft_office.xml ../bleachbit/Cleaner.py:307 msgid "Office suite" msgstr "" #: ../cleaners/apt.xml msgid "Delete obsolete files" msgstr "" #: ../cleaners/vuze.xml ../cleaners/deepscan.xml msgid "Backup files" msgstr "" #: ../cleaners/vuze.xml ../cleaners/deepscan.xml msgid "Delete the backup files" msgstr "" #: ../cleaners/exaile.xml msgid "Downloaded podcasts" msgstr "" #: ../cleaners/exaile.xml msgid "Delete downloaded podcasts" msgstr "" #: ../cleaners/google_chrome.xml msgid "Session" msgstr "Bargovuorru" #: ../cleaners/google_chrome.xml msgid "Delete the current and last sessions" msgstr "" #: ../cleaners/emesene.xml msgid "Delete the avatars and emoticons cache" msgstr "" #: ../cleaners/deepscan.xml msgid "Deep scan" msgstr "" #: ../cleaners/deepscan.xml msgid "Inspect the preview for any files you want to keep." msgstr "" #: ../cleaners/deepscan.xml msgid "This option is slow." msgstr "" #: ../cleaners/nautilus.xml msgid "Custom folders will be reset." msgstr "" #: ../cleaners/thumbnails.xml ../cleaners/windows_explorer.xml msgid "Thumbnails" msgstr "Unnagovat" #: ../cleaners/bash.xml msgid "Delete the command history" msgstr "" #. In GNOME 'Run' is the dialog shown when typing ALT+F2' #. In Windows 'Run' is the dialog in the Start menu #: ../cleaners/gnome.xml ../cleaners/windows_explorer.xml msgid "Run" msgstr "Vuoje" #: ../cleaners/elinks.xml msgid "Delete the cookies, visited URLs, and search history" msgstr "" #: ../cleaners/recoll.xml msgid "Index" msgstr "" #: ../cleaners/recoll.xml msgid "" "Delete the search index, a database of words and the files they contain" msgstr "" #: ../bleachbit.desktop msgid "Unnecessary file cleaner" msgstr "" #: ../bleachbit.desktop msgid "Free space and maintain privacy" msgstr "" #. TRANSLATORS: This is the label in the log indicating was #. skipped because it matches the whitelist #: ../bleachbit/Command.py:46 msgid "Skip" msgstr "Njuikes meattá" #. TRANSLATORS: This is the label in the log indicating will be #. deleted (for previews) or was actually deleted #: ../bleachbit/Command.py:73 msgid "Delete" msgstr "Sihko" #. TRANSLATORS: The file will be deleted when the #. system reboots #: ../bleachbit/Command.py:93 msgid "Mark for deletion" msgstr "" #. TRANSLATORS: Parts of this file will be deleted #: ../bleachbit/Command.py:182 ../bleachbit/Command.py:212 #: ../bleachbit/Action.py:203 ../bleachbit/Action.py:216 #: ../bleachbit/Action.py:228 ../bleachbit/Action.py:241 #: ../bleachbit/Action.py:253 msgid "Clean file" msgstr "" #. TRANSLATORS: The file will be truncated to 0 bytes in length #: ../bleachbit/Command.py:249 msgid "Truncate" msgstr "" #: ../bleachbit/Command.py:288 msgid "Delete registry key" msgstr "" #: ../bleachbit/Unix.py:365 ../bleachbit/Unix.py:395 ../bleachbit/Unix.py:575 #, python-format msgid "Executable not found: %s" msgstr "" #. TRANSLATORS: %s expands to a name such as 'Firefox' or 'System'. #: ../bleachbit/Unix.py:572 ../bleachbit/Worker.py:135 #, python-format msgid "" "%s cannot be cleaned because it is currently running. Close it, and try " "again." msgstr "" #. TRANSLATORS: This is cleaner name for cleaners imported from winapp2.ini #: ../bleachbit/Winapp.py:45 msgid "Applications" msgstr "Prográmmat" #. TRANSLATORS: This is cleaner name for cleaners imported from winapp2.ini #: ../bleachbit/Winapp.py:47 ../bleachbit/Winapp.py:54 #: ../bleachbit/Winapp.py:55 ../bleachbit/Winapp.py:56 msgid "Internet" msgstr "Interneahtta" #. TRANSLATORS: This is cleaner name for cleaners imported from winapp2.ini #: ../bleachbit/Winapp.py:49 msgid "Multimedia" msgstr "Multimedia" #. TRANSLATORS: This is cleaner name for cleaners imported from winapp2.ini #: ../bleachbit/Winapp.py:51 msgid "Utilities" msgstr "Reaiddut" #. TRANSLATORS: This is cleaner name for cleaners imported from winapp2.ini. #: ../bleachbit/Winapp.py:53 msgid "Microsoft Windows" msgstr "Microsoft Windows" #: ../bleachbit/Winapp.py:87 msgid "Imported from winapp2.ini" msgstr "" #: ../bleachbit/Cleaner.py:192 msgid "Session restore" msgstr "" #: ../bleachbit/Cleaner.py:192 msgid "Loads the initial session after the browser closes or crashes" msgstr "" #: ../bleachbit/Cleaner.py:193 msgid "Site preferences" msgstr "" #: ../bleachbit/Cleaner.py:193 msgid "Settings for individual sites" msgstr "" #. TRANSLATORS: desktop entries are .desktop files in Linux tha #. make up the application menu (the menu that shows BleachBit, #. Firefox, and others. The .desktop files also associate file #. types, so clicking on an .html file in Nautilus brings up #. Firefox. #. More information: http://standards.freedesktop.org/menu-spec/latest/index.html#introduction #: ../bleachbit/Cleaner.py:362 msgid "Broken desktop files" msgstr "" #: ../bleachbit/Cleaner.py:362 msgid "Delete broken application menu entries and file associations" msgstr "" #. TRANSLATORS: Localizations are files supporting specific #. languages, so applications appear in Spanish, etc. #: ../bleachbit/Cleaner.py:366 msgid "Localizations" msgstr "" #: ../bleachbit/Cleaner.py:366 msgid "Delete files for unwanted languages" msgstr "" #: ../bleachbit/Cleaner.py:367 msgid "Configure this option in the preferences." msgstr "" #. TRANSLATORS: 'Rotated logs' refers to old system log files. #. Linux systems often have a scheduled job to rotate the logs #. which means compress all except the newest log and then delete #. the oldest log. You could translate this 'old logs.' #: ../bleachbit/Cleaner.py:372 msgid "Rotated logs" msgstr "" #: ../bleachbit/Cleaner.py:372 msgid "Delete old system logs" msgstr "" #: ../bleachbit/Cleaner.py:374 msgid "Trash" msgstr "Ruskalihtti" #: ../bleachbit/Cleaner.py:374 msgid "Empty the trash" msgstr "" #: ../bleachbit/Cleaner.py:376 ../bleachbit/Cleaner.py:482 #: ../bleachbit/Worker.py:211 msgid "Memory" msgstr "Muitu" #. TRANSLATORS: 'free' means 'unallocated' #: ../bleachbit/Cleaner.py:378 msgid "Wipe the swap and free memory" msgstr "" #: ../bleachbit/Cleaner.py:379 msgid "This option is experimental and may cause system problems." msgstr "" #: ../bleachbit/Cleaner.py:382 msgid "Memory dump" msgstr "" #: ../bleachbit/Cleaner.py:382 msgid "Delete the file memory.dmp" msgstr "" #. TRANSLATORS: Prefetch is Microsoft Windows jargon. #: ../bleachbit/Cleaner.py:385 msgid "Prefetch" msgstr "" #: ../bleachbit/Cleaner.py:386 msgid "Recycle bin" msgstr "Ruskalihti" #: ../bleachbit/Cleaner.py:386 msgid "Empty the recycle bin" msgstr "Gurre ruskalihti" #. TRANSLATORS: 'Update' is a noun, and 'Update uninstallers' is an option to delete #. the uninstallers for software updates. #: ../bleachbit/Cleaner.py:389 msgid "Update uninstallers" msgstr "" #: ../bleachbit/Cleaner.py:389 msgid "" "Delete uninstallers for Microsoft updates including hotfixes, service packs, " "and Internet Explorer updates" msgstr "" #: ../bleachbit/Cleaner.py:391 ../bleachbit/Cleaner.py:564 msgid "Clipboard" msgstr "Čuohpusgirji" #: ../bleachbit/Cleaner.py:391 msgid "" "The desktop environment's clipboard used for copy and paste operations" msgstr "" #. TRANSLATORS: 'free' means 'unallocated' #: ../bleachbit/Cleaner.py:393 msgid "Free disk space" msgstr "" #. TRANSLATORS: 'free' means 'unallocated' #: ../bleachbit/Cleaner.py:395 msgid "Overwrite free disk space to hide deleted files" msgstr "" #: ../bleachbit/Cleaner.py:396 msgid "This option is very slow." msgstr "" #: ../bleachbit/Cleaner.py:400 msgid "The system in general" msgstr "" #: ../bleachbit/Cleaner.py:406 ../bleachbit/Cleaner.py:659 msgid "System" msgstr "Vuogádat" #. TRANSLATORS: 'Free' means 'unallocated.' #. %s expands to a path such as C:\ or /tmp/ #: ../bleachbit/Cleaner.py:590 ../bleachbit/Cleaner.py:686 #, python-format msgid "Overwrite free disk space %s" msgstr "" #. TRANSLATORS: %s expands to a drive letter such as C:\ or D:\ #: ../bleachbit/Cleaner.py:618 #, python-format msgid "Recycle bin %s" msgstr "" #: ../bleachbit/GuiPreferences.py:52 ../bleachbit/GUI.py:637 msgid "Preferences" msgstr "Oidimat" #: ../bleachbit/GuiPreferences.py:58 msgid "General" msgstr "&Oppalaš" #: ../bleachbit/GuiPreferences.py:59 msgid "Drives" msgstr "" #: ../bleachbit/GuiPreferences.py:61 msgid "Languages" msgstr "Gielat" #: ../bleachbit/GuiPreferences.py:62 msgid "Whitelist" msgstr "" #: ../bleachbit/GuiPreferences.py:107 msgid "Check periodically for software updates via the Internet" msgstr "" #: ../bleachbit/GuiPreferences.py:110 msgid "" "If an update is found, you will be given the option to view information " "about it. Then, you may manually download and install the update." msgstr "" #: ../bleachbit/GuiPreferences.py:116 msgid "Check for new beta releases" msgstr "" #: ../bleachbit/GuiPreferences.py:123 msgid "Download and update cleaners from community (winapp2.ini)" msgstr "" #. TRANSLATORS: This means to hide cleaners which would do #. nothing. For example, if Firefox were never used on #. this system, this option would hide Firefox to simplify #. the list of cleaners. #: ../bleachbit/GuiPreferences.py:135 msgid "Hide irrelevant cleaners" msgstr "" #. TRANSLATORS: Overwriting is the same as shredding. It is a way #. to prevent recovery of the data. You could also translate #. 'Shred files to prevent recovery.' #: ../bleachbit/GuiPreferences.py:143 msgid "Overwrite files to hide contents" msgstr "" #: ../bleachbit/GuiPreferences.py:146 msgid "" "Overwriting is ineffective on some file systems and with certain BleachBit " "operations. Overwriting is significantly slower." msgstr "" #: ../bleachbit/GuiPreferences.py:149 msgid "Start BleachBit with computer" msgstr "" #: ../bleachbit/GuiPreferences.py:160 ../bleachbit/GuiPreferences.py:291 #: ../bleachbit/GUI.py:545 msgid "Choose a folder" msgstr "" #. TRANSLATORS: 'free' means 'unallocated' #: ../bleachbit/GuiPreferences.py:185 msgid "" "Choose a writable folder for each drive for which to overwrite free space." msgstr "" #. TRANSLATORS: In the preferences dialog, this button adds a path to the list of paths #: ../bleachbit/GuiPreferences.py:206 msgctxt "button" msgid "Add" msgstr "Lasit" #. TRANSLATORS: In the preferences dialog, this button removes a path from the list of paths #: ../bleachbit/GuiPreferences.py:209 ../bleachbit/GuiPreferences.py:369 msgctxt "button" msgid "Remove" msgstr "Váldde eret" #: ../bleachbit/GuiPreferences.py:234 msgid "All languages will be deleted except those checked." msgstr "" #: ../bleachbit/GuiPreferences.py:251 msgid "Preserve" msgstr "" #: ../bleachbit/GuiPreferences.py:255 msgid "Code" msgstr "" #: ../bleachbit/GuiPreferences.py:259 ../bleachbit/GUI.py:136 msgid "Name" msgstr "Namma" #: ../bleachbit/GuiPreferences.py:277 msgid "Choose a file" msgstr "" #: ../bleachbit/GuiPreferences.py:284 ../bleachbit/GuiPreferences.py:328 msgid "File" msgstr "Fiila" #: ../bleachbit/GuiPreferences.py:299 ../bleachbit/GuiPreferences.py:330 msgid "Folder" msgstr "Máhppa" #. TRANSLATORS: "Paths" is used generically to refer to both files and folders #: ../bleachbit/GuiPreferences.py:337 msgid "Theses paths will not be deleted or modified." msgstr "" #: ../bleachbit/GuiPreferences.py:345 msgid "Type" msgstr "Šládja" #. TRANSLATORS: In the tree view "Path" is used generically to refer to a #. file, a folder, or a pattern describing either #: ../bleachbit/GuiPreferences.py:351 msgid "Path" msgstr "Bálggis" #: ../bleachbit/GuiPreferences.py:363 msgctxt "button" msgid "Add file" msgstr "Lasit fiilla" #: ../bleachbit/GuiPreferences.py:366 msgctxt "button" msgid "Add folder" msgstr "" #: ../bleachbit/RecognizeCleanerML.py:63 msgid "Security warning" msgstr "" #. TRANSLATORS: Cleaner definitions are XML data files that define #. which files will be cleaned. #: ../bleachbit/RecognizeCleanerML.py:75 msgid "" "These cleaner definitions are new or have changed. Malicious definitions can " "damage your system. If you do not trust these changes, delete the files or " "quit." msgstr "" #. TRANSLATORS: This is the column label (header) in the tree view for the security dialog #: ../bleachbit/RecognizeCleanerML.py:88 msgctxt "column_label" msgid "Delete" msgstr "Sihko" #. TRANSLATORS: This is the column label (header) in the tree view for the security dialog #: ../bleachbit/RecognizeCleanerML.py:91 msgctxt "column_label" msgid "Filename" msgstr "Fiilanamma" #. TRANSLATORS: This indicates an error. The special keyword #. %(operation)s will be replaced by 'firefox' or 'opera' or #. some other cleaner ID. The special keyword %(msg)s will be #. replaced by a message such as 'Permission denied.' #: ../bleachbit/Worker.py:76 #, python-format msgid "Exception while running operation '%(operation)s': '%(msg)s'" msgstr "" #. TRANSLATORS: 'free' means 'unallocated' #: ../bleachbit/Worker.py:209 msgid "Please wait. Wiping free disk space." msgstr "" #. TRANSLATORS: %s is replaced with Firefox, System, etc. #: ../bleachbit/Worker.py:211 ../bleachbit/Worker.py:298 #, python-format msgid "Please wait. Cleaning %s." msgstr "" #: ../bleachbit/Worker.py:221 #, python-format msgid "About %d minute remaining." msgid_plural "About %d minutes remaining." msgstr[0] "" msgstr[1] "" #. TRANSLATORS: This refers to disk space that was #. really recovered (in other words, not a preview) #: ../bleachbit/Worker.py:236 #, python-format msgid "Disk space recovered: %s" msgstr "" #. TRANSLATORS: This refers to a preview (no real #. changes were made yet) #: ../bleachbit/Worker.py:240 #, python-format msgid "Disk space to be recovered: %s" msgstr "" #. TRANSLATORS: This refers to the number of files really #. deleted (in other words, not a preview). #: ../bleachbit/Worker.py:245 #, python-format msgid "Files deleted: %d" msgstr "" #. TRANSLATORS: This refers to the number of files that #. would be deleted (in other words, simply a preview). #: ../bleachbit/Worker.py:249 #, python-format msgid "Files to be deleted: %d" msgstr "" #: ../bleachbit/Worker.py:252 #, python-format msgid "Special operations: %d" msgstr "" #: ../bleachbit/Worker.py:255 #, python-format msgid "Errors: %d" msgstr "" #. TRANSLATORS: The "deep scan" feature searches over broad #. areas of the file system such as the user's whole home directory #. or all the system executables. #: ../bleachbit/Worker.py:271 msgid "Please wait. Running deep scan." msgstr "" #. TRANSLATORS: %s is replaced with Firefox, System, etc. #: ../bleachbit/Worker.py:301 #, python-format msgid "Please wait. Previewing %s." msgstr "" #: ../bleachbit/Update.py:75 msgid "New winapp2.ini was downloaded." msgstr "" #: ../bleachbit/Update.py:111 msgid "Update BleachBit" msgstr "" #: ../bleachbit/Update.py:116 msgid "A new version is available." msgstr "" #. TRANSLATORS: %s expands to version such as '0.8.4' or '0.8.5beta' or similar #: ../bleachbit/Update.py:124 #, python-format msgid "Update to version %s" msgstr "" #: ../bleachbit/CLI.py:123 #, python-format msgid "not a valid cleaner: %s" msgstr "" #. TRANSLATORS: This is the command line usage. Don't translate #. %prog, but do translate usage, options, cleaner, and option. #. More information about the command line is here #. http://bleachbit.sourceforge.net/documentation/command-line #: ../bleachbit/CLI.py:150 msgid "usage: %prog [options] cleaner.option1 cleaner.option2" msgstr "" #: ../bleachbit/CLI.py:153 msgid "list cleaners" msgstr "" #: ../bleachbit/CLI.py:155 msgid "delete files and make other permanent changes" msgstr "" #. TRANSLATORS: this is a warning for using --delete which will go away one day #: ../bleachbit/CLI.py:158 msgid "depreciated alias for --clean" msgstr "" #: ../bleachbit/CLI.py:160 msgid "show system information" msgstr "" #: ../bleachbit/CLI.py:161 msgid "launch the graphical interface" msgstr "" #: ../bleachbit/CLI.py:163 msgid "do not prompt for administrator privileges" msgstr "" #: ../bleachbit/CLI.py:168 msgid "preview files to be deleted and other changes" msgstr "" #: ../bleachbit/CLI.py:170 msgid "use options set in the graphical interface" msgstr "" #: ../bleachbit/CLI.py:172 msgid "output version information and exit" msgstr "" #: ../bleachbit/CLI.py:174 msgid "overwrite files to hide contents" msgstr "" #: ../bleachbit/GuiBasic.py:113 msgid "Delete confirmation" msgstr "" #: ../bleachbit/GuiBasic.py:121 msgid "" "Are you sure you want to permanently delete files according to the selected " "operations? The actual files that will be deleted may have changed since " "you ran the preview." msgstr "" #: ../bleachbit/GuiBasic.py:123 msgid "Are you sure you want to permanently delete these files?" msgstr "" #: ../bleachbit/GuiBasic.py:159 #, python-format msgid "" "Because you are running as root, please manually open this link in a web " "browser:\n" "%s" msgstr "" #. TRANSLATORS: %s expands to bleachbit.sourceforge.net or similar #: ../bleachbit/GuiBasic.py:171 #, python-format msgid "Open web browser to %s?" msgstr "" #: ../bleachbit/GUI.py:144 msgid "Active" msgstr "Aktiiva" #. TRANSLATORS: %(cleaner) may be Firefox, System, etc. #. %(option) may be cache, logs, cookies, etc. #. %(warning) may be 'This option is really slow' #: ../bleachbit/GUI.py:176 #, python-format msgid "" "Warning regarding %(cleaner)s - %(option)s:\n" "\n" "%(warning)s" msgstr "" #: ../bleachbit/GUI.py:346 msgid "You must select an operation" msgstr "" #: ../bleachbit/GUI.py:369 ../bleachbit/GUI.py:384 msgid "Done." msgstr "Geargan." #: ../bleachbit/GUI.py:398 msgid "Program to clean unnecessary files" msgstr "" #: ../bleachbit/GUI.py:403 msgid "" "GNU General Public License version 3 or later.\n" "See http://www.gnu.org/licenses/gpl-3.0.txt" msgstr "" #. TRANSLATORS: Maintain the names of translators here. #. Launchpad does this automatically for translations #. typed in Launchpad. This is a special string shown #. in the 'About' box. #: ../bleachbit/GUI.py:409 msgid "translator-credits" msgstr "" "Launchpad Contributions:\n" " Christopher Forster https://launchpad.net/~christopherforster" #: ../bleachbit/GUI.py:422 msgid "System information" msgstr "" #: ../bleachbit/GUI.py:492 msgid "Choose files to shred" msgstr "" #: ../bleachbit/GUI.py:495 msgid "Choose folder to shred" msgstr "" #. TRANSLATORS: this is the context menu #: ../bleachbit/GUI.py:580 msgid "Preview" msgstr "Ovdačájeheapmi" #. TRANSLATORS: this is the context menu #: ../bleachbit/GUI.py:585 msgid "Clean" msgstr "Buhttis" #: ../bleachbit/GUI.py:631 msgid "_Shred Files" msgstr "" #: ../bleachbit/GUI.py:632 msgid "Sh_red Folders" msgstr "" #: ../bleachbit/GUI.py:633 msgid "_Wipe Free Space" msgstr "" #: ../bleachbit/GUI.py:634 msgid "S_hred Settings and Quit" msgstr "" #: ../bleachbit/GUI.py:635 msgid "_Quit" msgstr "_Heaittit" #: ../bleachbit/GUI.py:636 msgid "_File" msgstr "_Fiila" #: ../bleachbit/GUI.py:638 msgid "_Edit" msgstr "_Doaimmat" #: ../bleachbit/GUI.py:639 msgid "Help Contents" msgstr "" #: ../bleachbit/GUI.py:641 msgid "_Release Notes" msgstr "" #: ../bleachbit/GUI.py:643 msgid "_System Information" msgstr "" #: ../bleachbit/GUI.py:644 msgid "_About" msgstr "_Dieđut" #: ../bleachbit/GUI.py:645 msgid "_Help" msgstr "_Veahkki" #. TRANSLATORS: This is the preview button on the main window. It previews changes. #: ../bleachbit/GUI.py:669 msgctxt "button" msgid "Preview" msgstr "Ovdačájeheapmi" #: ../bleachbit/GUI.py:672 msgid "Preview files in the selected operations (without deleting any files)" msgstr "" #. TRANSLATORS: This is the clean button on the main window. #. It makes permanent changes: usually deleting files, sometimes altering them. #: ../bleachbit/GUI.py:680 msgctxt "button" msgid "Clean" msgstr "Buhttis" #: ../bleachbit/GUI.py:683 msgid "Clean files in the selected operations" msgstr "" #: ../bleachbit/GUI.py:769 msgid "Error when checking for updates: " msgstr "" #: ../bleachbit/GUI.py:800 msgid "" "Error loading the SQLite module: the antivirus software may be blocking it." msgstr "" bleachbit-2.0/po/uz.po0000644000175000017500000013106513245436307013023 0ustar hlehle# Uzbek translation for bleachbit # Copyright (c) 2011 Rosetta Contributors and Canonical Ltd 2011 # This file is distributed under the same license as the bleachbit package. # FIRST AUTHOR , 2011. # msgid "" msgstr "" "Project-Id-Version: bleachbit\n" "Report-Msgid-Bugs-To: FULL NAME \n" "POT-Creation-Date: 2015-11-27 12:03-0700\n" "PO-Revision-Date: 2015-11-28 19:21+0000\n" "Last-Translator: Akmal Xushvaqov \n" "Language-Team: Uzbek \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=1; plural=0;\n" "X-Launchpad-Export-Date: 2015-11-29 21:20+0000\n" "X-Generator: Launchpad (build 17850)\n" "Language: uz\n" #: ../cleaners/mc.xml ../cleaners/tortoisesvn.xml ../cleaners/vim.xml #: ../cleaners/safari.xml ../cleaners/links2.xml ../cleaners/seamonkey.xml #: ../cleaners/realplayer.xml ../cleaners/windows_defender.xml #: ../cleaners/d4x.xml ../cleaners/sqlite3.xml #: ../cleaners/internet_explorer.xml ../cleaners/libreoffice.xml #: ../cleaners/easytag.xml ../cleaners/bash.xml ../cleaners/nautilus.xml #: ../cleaners/octave.xml ../cleaners/elinks.xml ../cleaners/chromium.xml #: ../cleaners/google_chrome.xml msgid "History" msgstr "Tarix" #: ../cleaners/mc.xml ../cleaners/tortoisesvn.xml ../cleaners/links2.xml #: ../cleaners/realplayer.xml ../cleaners/d4x.xml ../cleaners/libreoffice.xml #: ../cleaners/easytag.xml ../cleaners/nautilus.xml ../cleaners/gnome.xml #: ../bleachbit/Cleaner.py:350 ../bleachbit/Cleaner.py:424 #: ../bleachbit/Cleaner.py:433 msgid "Delete the usage history" msgstr "Foydalanish tarixini o‘chirish" #: ../cleaners/gpodder.xml ../cleaners/hippo_opensim_viewer.xml #: ../cleaners/thumbnails.xml ../cleaners/safari.xml ../cleaners/emesene.xml #: ../cleaners/liferea.xml ../cleaners/seamonkey.xml ../cleaners/vuze.xml #: ../cleaners/yahoo_messenger.xml ../cleaners/pidgin.xml #: ../cleaners/adobe_reader.xml ../cleaners/evolution.xml #: ../cleaners/tremulous.xml ../cleaners/libreoffice.xml ../cleaners/xine.xml #: ../cleaners/nexuiz.xml ../cleaners/exaile.xml ../cleaners/opera.xml #: ../cleaners/amsn.xml ../cleaners/gftp.xml ../cleaners/miro.xml #: ../cleaners/beagle.xml ../cleaners/kde.xml ../cleaners/epiphany.xml #: ../cleaners/flash.xml ../cleaners/secondlife_viewer.xml #: ../cleaners/java.xml ../cleaners/chromium.xml ../cleaners/audacious.xml #: ../cleaners/rhythmbox.xml ../cleaners/google_chrome.xml #: ../cleaners/thunderbird.xml ../bleachbit/Cleaner.py:193 #: ../bleachbit/Cleaner.py:371 ../bleachbit/Cleaner.py:456 msgid "Cache" msgstr "Kesh" #: ../cleaners/gpodder.xml ../cleaners/yum.xml #: ../cleaners/hippo_opensim_viewer.xml ../cleaners/thumbnails.xml #: ../cleaners/windows_explorer.xml ../cleaners/liferea.xml #: ../cleaners/vuze.xml ../cleaners/yahoo_messenger.xml ../cleaners/pidgin.xml #: ../cleaners/adobe_reader.xml ../cleaners/evolution.xml #: ../cleaners/libreoffice.xml ../cleaners/apt.xml ../cleaners/xine.xml #: ../cleaners/nexuiz.xml ../cleaners/exaile.xml ../cleaners/amsn.xml #: ../cleaners/gftp.xml ../cleaners/miro.xml ../cleaners/beagle.xml #: ../cleaners/kde.xml ../cleaners/flash.xml ../cleaners/secondlife_viewer.xml #: ../cleaners/java.xml ../cleaners/audacious.xml ../cleaners/rhythmbox.xml #: ../bleachbit/Cleaner.py:371 ../bleachbit/Cleaner.py:456 #: ../bleachbit/Cleaner.py:490 ../bleachbit/Cleaner.py:492 msgid "Delete the cache" msgstr "Keshni o‘chirish" #. TRANSLATORS: Vacuum is a verb. The term is jargon #. from the SQLite database. Microsoft Access uses #. the term 'Compact Database' (which you may translate #. instead). Another synonym is 'defragment.' #: ../cleaners/gpodder.xml ../cleaners/yum.xml ../cleaners/safari.xml #: ../cleaners/liferea.xml ../cleaners/chromium.xml #: ../cleaners/google_chrome.xml ../cleaners/thunderbird.xml #: ../bleachbit/Action.py:365 ../bleachbit/Cleaner.py:215 #: ../bleachbit/Cleaner.py:361 msgid "Vacuum" msgstr "Vakuum" #: ../cleaners/gpodder.xml ../cleaners/yum.xml ../cleaners/safari.xml #: ../cleaners/liferea.xml ../cleaners/chromium.xml #: ../cleaners/google_chrome.xml ../cleaners/thunderbird.xml #: ../bleachbit/Cleaner.py:216 msgid "" "Clean database fragmentation to reduce space and improve speed without " "removing any data" msgstr "" "Bo‘sh joyni tozalash va ma’lumotlarni o‘chirmasdan tezlikni oshirish uchun " "ma’lumotlar bazasini fragmentlashni tozalash" #: ../cleaners/yum.xml ../cleaners/apt.xml msgid "Package manager" msgstr "Paket menejeri" #: ../cleaners/warzone2100.xml ../cleaners/hippo_opensim_viewer.xml #: ../cleaners/gl-117.xml ../cleaners/tremulous.xml ../cleaners/nexuiz.xml #: ../cleaners/secondlife_viewer.xml msgid "Game" msgstr "O‘yin" #: ../cleaners/warzone2100.xml ../cleaners/hippo_opensim_viewer.xml #: ../cleaners/teamviewer.xml ../cleaners/realplayer.xml ../cleaners/vuze.xml #: ../cleaners/yahoo_messenger.xml ../cleaners/amule.xml #: ../cleaners/easytag.xml ../cleaners/exaile.xml ../cleaners/screenlets.xml #: ../cleaners/gftp.xml ../cleaners/miro.xml ../cleaners/audacious.xml #: ../bleachbit/Cleaner.py:487 msgid "Logs" msgstr "Jurnallar" #: ../cleaners/warzone2100.xml ../cleaners/hippo_opensim_viewer.xml #: ../cleaners/teamviewer.xml ../cleaners/realplayer.xml ../cleaners/vuze.xml #: ../cleaners/yahoo_messenger.xml ../cleaners/amule.xml #: ../cleaners/exaile.xml ../cleaners/screenlets.xml ../cleaners/gftp.xml #: ../cleaners/miro.xml ../cleaners/audacious.xml ../bleachbit/Cleaner.py:487 msgid "Delete the logs" msgstr "Jurnallarni o‘chirish" #: ../cleaners/thumbnails.xml ../cleaners/windows_explorer.xml msgid "Thumbnails" msgstr "Nishonchalar" #: ../cleaners/thumbnails.xml msgid "Icons for files on the system" msgstr "Tizimdagi fayllar uchun nishonchalar" #: ../cleaners/vim.xml ../cleaners/gedit.xml msgid "Editor" msgstr "Muharrir" #: ../cleaners/vim.xml msgid "" "Delete ~/.viminfo which includes file history, command history, and buffers" msgstr "" "Tarix, buyruqlar tarixiva xotira omborini o‘zida jamlagan ~/.viminfo'ni " "o‘chirish" #: ../cleaners/filezilla.xml ../cleaners/transmission.xml ../cleaners/vuze.xml #: ../cleaners/amule.xml ../cleaners/gftp.xml msgid "File transfer client" msgstr "Fayl ko‘chirish mijozi" #: ../cleaners/filezilla.xml ../cleaners/paint.xml #: ../cleaners/windows_media_player.xml ../cleaners/windows_explorer.xml #: ../cleaners/teamviewer.xml ../cleaners/microsoft_office.xml #: ../cleaners/vlc.xml ../cleaners/adobe_reader.xml ../cleaners/winamp.xml #: ../cleaners/winzip.xml ../cleaners/winrar.xml ../cleaners/audacious.xml #: ../cleaners/wordpad.xml ../bleachbit/Cleaner.py:372 msgid "Most recently used" msgstr "So‘nggi ko‘p foydalanilgan" #: ../cleaners/filezilla.xml ../cleaners/windows_explorer.xml #: ../cleaners/gwenview.xml ../cleaners/adobe_reader.xml ../cleaners/gedit.xml #: ../cleaners/kde.xml ../cleaners/audacious.xml ../bleachbit/Cleaner.py:373 #: ../bleachbit/Cleaner.py:470 msgid "Delete the list of recently used documents" msgstr "Yaqinda foydalanilgan hujjatlar ro‘yxatini o‘chirish" #: ../cleaners/skype.xml ../cleaners/xchat.xml ../cleaners/emesene.xml #: ../cleaners/yahoo_messenger.xml ../cleaners/pidgin.xml ../cleaners/amsn.xml msgid "Chat client" msgstr "Suhbat mijozlari" #: ../cleaners/skype.xml ../cleaners/xchat.xml ../cleaners/emesene.xml #: ../cleaners/seamonkey.xml ../cleaners/yahoo_messenger.xml #: ../cleaners/pidgin.xml ../cleaners/amsn.xml msgid "Chat logs" msgstr "Suhbat jurnallari" #: ../cleaners/skype.xml ../cleaners/xchat.xml ../cleaners/emesene.xml #: ../cleaners/seamonkey.xml ../cleaners/yahoo_messenger.xml #: ../cleaners/pidgin.xml ../cleaners/amsn.xml msgid "Delete the chat logs" msgstr "Suhbat jurnallarini o‘chirish" #: ../cleaners/skype.xml msgid "Installers" msgstr "O‘rnatkichlar" #: ../cleaners/skype.xml msgid "Delete cached patches and installers" msgstr "Keshlangan to‘g‘rilanishlar va o‘rnatkichlarni o‘chirish" #: ../cleaners/safari.xml ../cleaners/links2.xml ../cleaners/seamonkey.xml #: ../cleaners/konqueror.xml ../cleaners/internet_explorer.xml #: ../cleaners/opera.xml ../cleaners/epiphany.xml ../cleaners/elinks.xml #: ../cleaners/chromium.xml ../cleaners/google_chrome.xml #: ../bleachbit/Cleaner.py:227 msgid "Web browser" msgstr "Veb brauzer" #: ../cleaners/safari.xml ../cleaners/seamonkey.xml ../cleaners/opera.xml #: ../cleaners/epiphany.xml ../cleaners/chromium.xml #: ../cleaners/google_chrome.xml ../cleaners/thunderbird.xml #: ../bleachbit/Cleaner.py:194 msgid "Delete the web cache, which reduces time to display revisited pages" msgstr "" "Qayta tashrif buyurilgan saytlarga kirishni tezlshtiradigan veb keshni " "o‘chirish" #: ../cleaners/safari.xml ../cleaners/liferea.xml ../cleaners/seamonkey.xml #: ../cleaners/realplayer.xml ../cleaners/konqueror.xml #: ../cleaners/internet_explorer.xml ../cleaners/opera.xml #: ../cleaners/epiphany.xml ../cleaners/flash.xml ../cleaners/silverlight.xml #: ../cleaners/chromium.xml ../cleaners/google_chrome.xml #: ../cleaners/thunderbird.xml ../bleachbit/Cleaner.py:195 msgid "Cookies" msgstr "Kukilar" #: ../cleaners/safari.xml ../cleaners/liferea.xml ../cleaners/seamonkey.xml #: ../cleaners/realplayer.xml ../cleaners/konqueror.xml #: ../cleaners/internet_explorer.xml ../cleaners/opera.xml #: ../cleaners/epiphany.xml ../cleaners/flash.xml ../cleaners/silverlight.xml #: ../cleaners/chromium.xml ../cleaners/google_chrome.xml #: ../cleaners/thunderbird.xml ../bleachbit/Cleaner.py:196 msgid "" "Delete cookies, which contain information such as web site preferences, " "authentication, and tracking identification" msgstr "" "Vebsayt parametrlari, tasdiqdan o‘tkazish va shaxsiyatni aniqlashtirish kabi " "ma’lumotlarni o‘zida jamlagan kukilarni o‘chirish" #: ../cleaners/safari.xml ../cleaners/konqueror.xml #: ../cleaners/internet_explorer.xml ../cleaners/opera.xml #: ../bleachbit/Cleaner.py:214 msgid "List of visited web pages" msgstr "Tashrif buyurilgan vebsahifalar ro‘yxati" #. Torrent software can block a list of IP addresses, such as those that may belong to malware or anti-piracy organizations #: ../cleaners/transmission.xml msgid "Blocklists" msgstr "Bloklash ro‘yxatlari" #: ../cleaners/transmission.xml ../cleaners/windows_defender.xml #: ../cleaners/beagle.xml ../cleaners/thunderbird.xml ../cleaners/deepscan.xml #: ../bleachbit/Cleaner.py:198 msgid "Delete the files" msgstr "Fayllarni o‘chirish" #: ../cleaners/transmission.xml msgid "Blocklists will need update to work." msgstr "Bloklash ro‘yxatlarini ishlash uchun yangilash kerak." #: ../cleaners/transmission.xml msgid "Torrents" msgstr "Torrentlar" #: ../cleaners/transmission.xml msgid "Delete the torrents (just the metadata but not the files described)" msgstr "" "Torrentlarni o‘chirish (faqat meta ma’lumotlar, ammo ta’rifi keltirilgan " "fayllarni emas)" #: ../cleaners/paint.xml ../cleaners/windows_media_player.xml #: ../cleaners/windows_explorer.xml ../cleaners/teamviewer.xml #: ../cleaners/microsoft_office.xml ../cleaners/vlc.xml ../cleaners/winamp.xml #: ../cleaners/winzip.xml ../cleaners/winrar.xml ../cleaners/wordpad.xml msgid "Delete the most recently used list" msgstr "Eng so‘nggi foydalanilganlar ro‘yxatini o‘chirish" #: ../cleaners/emesene.xml msgid "Delete the avatars and emoticons cache" msgstr "Avatar va hissiyotni ifodalovchi rasmchalar keshini o‘chirish" #: ../cleaners/windows_media_player.xml ../cleaners/realplayer.xml #: ../cleaners/vlc.xml ../cleaners/winamp.xml msgid "Media player" msgstr "Musiqa pleyeri" #: ../cleaners/windows_explorer.xml ../cleaners/nautilus.xml msgid "File manager" msgstr "Fayl menejeri" #: ../cleaners/windows_explorer.xml ../cleaners/gwenview.xml #: ../cleaners/gedit.xml ../cleaners/kde.xml ../bleachbit/Cleaner.py:469 msgid "Recent documents list" msgstr "So‘nggi foydalanilgan hujatlar ro‘yxati" #. In Windows 'Run' is the dialog in the Start menu #. In GNOME 'Run' is the dialog shown when typing ALT+F2' #: ../cleaners/windows_explorer.xml ../cleaners/gnome.xml msgid "Run" msgstr "Bajarish" #: ../cleaners/windows_explorer.xml ../cleaners/opera.xml #: ../cleaners/gnome.xml ../cleaners/google_toolbar.xml msgid "Search history" msgstr "Qidiruv tarixi" #: ../cleaners/windows_explorer.xml ../cleaners/opera.xml #: ../cleaners/gnome.xml ../cleaners/google_toolbar.xml msgid "Delete the search history" msgstr "Qidiruv tarixini o‘chirish" #: ../cleaners/gl-117.xml ../cleaners/microsoft_office.xml #: ../cleaners/beagle.xml ../cleaners/secondlife_viewer.xml #: ../cleaners/x11.xml msgid "Debug logs" msgstr "Tuzatish jurnallari" #: ../cleaners/gl-117.xml ../cleaners/microsoft_office.xml #: ../cleaners/easytag.xml ../cleaners/beagle.xml #: ../cleaners/secondlife_viewer.xml ../cleaners/x11.xml msgid "Delete the debug logs" msgstr "Tuzatish jurnallarini o‘chirish" #: ../cleaners/google_earth.xml ../cleaners/winetricks.xml #: ../cleaners/vuze.xml ../cleaners/adobe_reader.xml ../cleaners/amule.xml #: ../cleaners/wine.xml ../cleaners/internet_explorer.xml ../cleaners/gimp.xml #: ../cleaners/kde.xml ../cleaners/deepscan.xml ../bleachbit/Cleaner.py:521 msgid "Temporary files" msgstr "Vaqtinchalik fayllar" #: ../cleaners/google_earth.xml ../cleaners/winetricks.xml #: ../cleaners/vuze.xml ../cleaners/adobe_reader.xml ../cleaners/amule.xml #: ../cleaners/wine.xml ../cleaners/internet_explorer.xml ../cleaners/gimp.xml #: ../cleaners/kde.xml ../cleaners/deepscan.xml ../bleachbit/Cleaner.py:521 msgid "Delete the temporary files" msgstr "Vaqtinchalik fayllarni o‘chirish" #: ../cleaners/seamonkey.xml ../cleaners/opera.xml ../bleachbit/Cleaner.py:202 msgid "Download history" msgstr "Yuklab olish tarixi" #: ../cleaners/seamonkey.xml ../cleaners/opera.xml ../bleachbit/Cleaner.py:202 msgid "List of files downloaded" msgstr "Yuklab olingan fayllar ro‘yxati" #: ../cleaners/seamonkey.xml msgid "Delete the list of visited web pages" msgstr "Tashrif buyurilgan vebsahifalar ro‘yxatini o‘chirish" #: ../cleaners/vuze.xml ../cleaners/deepscan.xml ../bleachbit/Cleaner.py:191 msgid "Backup files" msgstr "Zahiralangan fayllar" #: ../cleaners/vuze.xml ../cleaners/deepscan.xml ../bleachbit/Cleaner.py:192 msgid "Delete the backup files" msgstr "Zahira fayllarini o‘chirish" #: ../cleaners/konqueror.xml ../cleaners/opera.xml ../cleaners/chromium.xml msgid "Current session" msgstr "Joriy seans" #: ../cleaners/konqueror.xml ../cleaners/opera.xml ../cleaners/chromium.xml msgid "Delete the current session" msgstr "Joriy seansni o‘chirish" #: ../cleaners/konqueror.xml ../cleaners/opera.xml ../bleachbit/Cleaner.py:214 msgid "URL history" msgstr "URL tarixi" #: ../cleaners/microsoft_office.xml ../cleaners/libreoffice.xml #: ../bleachbit/Cleaner.py:376 msgid "Office suite" msgstr "Ofis to‘plami" #: ../cleaners/windows_defender.xml msgid "Anti-virus" msgstr "Antivirus" #: ../cleaners/adobe_reader.xml msgid "Document viewer" msgstr "Hujjat ko‘rsatkich" #: ../cleaners/evolution.xml ../cleaners/thunderbird.xml msgid "Email client" msgstr "E-pochta mijozi" #: ../cleaners/tremulous.xml msgid "Delete the list of game servers" msgstr "O‘yin serverlari ro‘yxatini o‘chirish" #: ../cleaners/sqlite3.xml ../cleaners/bash.xml ../cleaners/octave.xml msgid "Delete the command history" msgstr "Buyruq tarixini o‘chirish" #: ../cleaners/wine.xml msgid "Compatibility layer for Windows software" msgstr "Windows dasturiy ta’minoti uchun mos qatlam" #: ../cleaners/internet_explorer.xml ../cleaners/chromium.xml #: ../cleaners/google_chrome.xml ../bleachbit/Cleaner.py:203 msgid "Form history" msgstr "Shakl tarixi" #: ../cleaners/internet_explorer.xml ../bleachbit/Cleaner.py:204 msgid "A history of forms entered in web sites and in the Search bar" msgstr "Vebsahifalar va qidiruv paneliga kiritilgan shaklar tarixi" #. This software edits metadata tags, such as title and artist, in audio files #: ../cleaners/easytag.xml msgid "Audio files tagger" msgstr "Audio fayllarni belgilagich" #: ../cleaners/apt.xml msgid "Delete obsolete files" msgstr "Mutlaq fayllarni o‘chirish" #: ../cleaners/apt.xml msgid "Package lists" msgstr "Paket ro‘yxati" #: ../cleaners/xine.xml ../cleaners/miro.xml ../cleaners/flash.xml msgid "Multimedia viewer" msgstr "Multimediya ko‘ruvchi" #: ../cleaners/recoll.xml ../cleaners/beagle.xml msgid "Search tool" msgstr "Qidiruv asbobi" #: ../cleaners/recoll.xml ../cleaners/beagle.xml ../cleaners/thunderbird.xml msgid "Index" msgstr "Indeks" #: ../cleaners/recoll.xml msgid "" "Delete the search index, a database of words and the files they contain" msgstr "Indeks, so‘zlar va ulardagi fayllar ma’lumot bazasini o‘chirish" #: ../cleaners/gimp.xml msgid "Graphics editor" msgstr "Grafika muharriri" #: ../cleaners/exaile.xml msgid "Downloaded podcasts" msgstr "Yuklab olingan podkastlar" #: ../cleaners/exaile.xml msgid "Delete downloaded podcasts" msgstr "Yuklab olingan podkastlarni o‘chirish" #: ../cleaners/bash.xml msgid "Shell" msgstr "Terminal" #. TRANSLATORS: DOM = Document Object Model. #: ../cleaners/opera.xml ../cleaners/chromium.xml #: ../cleaners/google_chrome.xml ../bleachbit/Cleaner.py:200 msgid "DOM Storage" msgstr "DOM xotirasi" #: ../cleaners/opera.xml ../cleaners/chromium.xml #: ../cleaners/google_chrome.xml ../bleachbit/Cleaner.py:200 msgid "Delete HTML5 cookies" msgstr "HTML5 kukilarini o‘chirish" #: ../cleaners/opera.xml ../cleaners/epiphany.xml ../cleaners/chromium.xml #: ../cleaners/google_chrome.xml ../cleaners/thunderbird.xml #: ../bleachbit/Cleaner.py:209 msgid "Passwords" msgstr "Parollar" #: ../cleaners/opera.xml ../cleaners/epiphany.xml ../cleaners/chromium.xml #: ../cleaners/google_chrome.xml ../cleaners/thunderbird.xml #: ../bleachbit/Cleaner.py:210 msgid "" "A database of usernames and passwords as well as a list of sites that should " "not store passwords" msgstr "" "Parollar joylashmasligi kerak bo‘lgan saytlar ro‘yxati, foydalanuvchilar va " "parollar ma’lumot bazasi" #: ../cleaners/opera.xml ../cleaners/epiphany.xml ../cleaners/chromium.xml #: ../cleaners/google_chrome.xml ../cleaners/thunderbird.xml #: ../bleachbit/Cleaner.py:212 msgid "This option will delete your saved passwords." msgstr "Ushbu tanlov saqlangan parollaringizni o‘chiradi." #: ../cleaners/nautilus.xml msgid "Custom folders will be reset." msgstr "Boshqa jildlar tiklanadi." #: ../cleaners/gnome.xml ../cleaners/kde.xml msgid "Desktop environment" msgstr "Ish stoli muhiti" #: ../cleaners/screenlets.xml msgid "Widgets for the desktop" msgstr "Ish stoli uchun vidjetlar" #: ../cleaners/epiphany.xml msgid "Places" msgstr "Joylar" #: ../cleaners/epiphany.xml msgid "" "A database of URLs including bookmarks, favicons, and a history of visited " "web sites" msgstr "" "Xatcho‘plar, nishonchalar va tashrif buyurilgan vebsahifalar tarixini o‘zida " "jamlagan URL’lar ma’lumot bazasi" #: ../cleaners/epiphany.xml msgid "This option deletes all bookmarks." msgstr "Ushbu tanlov barcha xatcho‘plarni o‘chiradi." #: ../cleaners/winrar.xml msgid "File archiver" msgstr "Fayl arxivlagich" #: ../cleaners/elinks.xml msgid "Delete the cookies, visited URLs, and search history" msgstr "Kukilar, ochilgan URL’lar va qidiruv tarixini tozalash" #: ../cleaners/chromium.xml ../cleaners/google_chrome.xml msgid "A history of forms entered in web sites" msgstr "Vebsahifalarga kiritilgan shakllar tarixi" #: ../cleaners/chromium.xml ../cleaners/google_chrome.xml msgid "" "Delete the history which includes visited sites, downloads, and thumbnails" msgstr "" "Ochilgan saytlar, yuklab olishlar va nishonchalarni o‘zida jamlagan tarixni " "o‘chirish" #: ../cleaners/chromium.xml ../cleaners/google_chrome.xml msgid "Search engines" msgstr "Qidiruv tizimlari" #. 'Factory' means a search engine that is installed by default 'from the factory,' but this is different than a 'default search engine' https://lists.launchpad.net/launchpad-translators/msg00283.html #: ../cleaners/chromium.xml ../cleaners/google_chrome.xml msgid "" "Reset the search engine usage history and delete non-factory search engines, " "some of which are added automatically" msgstr "" "Qidiruv tizimida foydalanilgan tarixni tiklash va ba’zi avtomatik qo‘shilgan " "qidiruv tizimlarini o‘chirish" #: ../cleaners/audacious.xml msgid "Audio player" msgstr "Audio pleyer" #: ../cleaners/google_chrome.xml msgid "Session" msgstr "Seans" #: ../cleaners/google_chrome.xml msgid "Delete the current and last sessions" msgstr "Joriy va oldingi seanslarni o‘chirish" #: ../cleaners/x11.xml msgid "Windowing system" msgstr "" #: ../cleaners/wordpad.xml msgid "Word processor" msgstr "" #: ../cleaners/deepscan.xml msgid "Deep scan" msgstr "Chuqur tekshirish" #: ../cleaners/deepscan.xml msgid "Clean files widely scattered across the disk" msgstr "" #: ../cleaners/deepscan.xml msgid "Inspect the preview for any files you want to keep." msgstr "" "Saqlanishini xohlagan har qanday fayllaringizni oldindan ko‘rishni " "tekshiring." #: ../cleaners/deepscan.xml msgid "This option is slow." msgstr "Ushbu tanlov sekin." #: ../bleachbit.desktop msgid "Unnecessary file cleaner" msgstr "Keraksiz fayl tozalagich" #: ../bleachbit.desktop msgid "Free space and maintain privacy" msgstr "Bo‘sh joy va asosiy maxfiylik" #: ../bleachbit/GuiBasic.py:112 msgid "Delete confirmation" msgstr "Tasdiqni o‘chirish" #: ../bleachbit/GuiBasic.py:122 msgid "" "Are you sure you want to permanently delete files according to the selected " "operations? The actual files that will be deleted may have changed since " "you ran the preview." msgstr "" "Tanlangan jarayonlarga muvofiq holda fayllarni butunlay o‘chirishga " "rozimisiz? O‘chiriladigan amaldagi fayllar oldindan ko‘rishni ishga " "tushirganingizdan so‘ng o‘zgarishi mumkin." #: ../bleachbit/GuiBasic.py:125 msgid "Are you sure you want to permanently delete these files?" msgstr "Ushbu fayllarni butunlay o‘chirilishiga rozimisiz?" #: ../bleachbit/GuiBasic.py:162 #, python-format msgid "" "Because you are running as root, please manually open this link in a web " "browser:\n" "%s" msgstr "" "Chunki siz \"root\" kabi ishga tushiryapsiz, ushbu linkni veb brauzerda " "oching:\n" "%s" #. TRANSLATORS: %s expands to bleachbit.sourceforge.net or similar #: ../bleachbit/GuiBasic.py:174 #, python-format msgid "Open web browser to %s?" msgstr "Beb brauzer %s’ga ochilsinmi?" #. TRANSLATORS: This is the label in the log indicating was #. skipped because it matches the whitelist #: ../bleachbit/Command.py:44 msgid "Skip" msgstr "Tashlab o‘tish" #. TRANSLATORS: This is the label in the log indicating will be #. deleted (for previews) or was actually deleted #: ../bleachbit/Command.py:70 msgid "Delete" msgstr "O‘chirish" #. TRANSLATORS: The file will be deleted when the #. system reboots #: ../bleachbit/Command.py:91 msgid "Mark for deletion" msgstr "O‘chirish uchun belgilash" #. TRANSLATORS: Parts of this file will be deleted #: ../bleachbit/Command.py:181 ../bleachbit/Command.py:211 #: ../bleachbit/Action.py:222 ../bleachbit/Action.py:235 #: ../bleachbit/Action.py:248 ../bleachbit/Action.py:261 #: ../bleachbit/Action.py:274 msgid "Clean file" msgstr "Faylni tozalash" #. TRANSLATORS: The file will be truncated to 0 bytes in length #: ../bleachbit/Command.py:247 msgid "Truncate" msgstr "Qisqartirish" #: ../bleachbit/Command.py:286 msgid "Delete registry key" msgstr "Regestr kalitini o‘chirish" #: ../bleachbit/Unix.py:348 ../bleachbit/Unix.py:378 ../bleachbit/Unix.py:568 #, python-format msgid "Executable not found: %s" msgstr "Bajariladigan topilmadi: %s" #. TRANSLATORS: %s expands to a name such as 'Firefox' or 'System'. #: ../bleachbit/Unix.py:565 ../bleachbit/Worker.py:135 #, python-format msgid "" "%s cannot be cleaned because it is currently running. Close it, and try " "again." msgstr "" "T%s’ni tozalab bo‘lmaydi, chunki u hozir ishlamoqda. Uni yoping va qaytadan " "urinib ko‘ring." #: ../bleachbit/RecognizeCleanerML.py:57 msgid "Security warning" msgstr "Xavfsizlik ogohlantirilishi" #: ../bleachbit/RecognizeCleanerML.py:70 msgid "" "These cleaner definitions are new or have changed. Malicious definitions can " "damage your system. If you do not trust these changes, delete the files or " "quit." msgstr "" "Ushbu tozalagich aniqlanishlari yangi yoki o‘zgartirilgan. Zararli " "aniqlanishlar tizimingizni buzishi mumkin. Agar ushbu o‘zgartirishlarga " "ishonmasangiz, fayllarni o‘chiring yoki chiqing." #: ../bleachbit/RecognizeCleanerML.py:85 msgctxt "column_label" msgid "Delete" msgstr "O‘chirish" #: ../bleachbit/RecognizeCleanerML.py:90 msgctxt "column_label" msgid "Filename" msgstr "Fayl nomi" #: ../bleachbit/GUI.py:131 ../bleachbit/GuiPreferences.py:287 msgid "Name" msgstr "Nomi" #: ../bleachbit/GUI.py:139 msgid "Active" msgstr "Faol" #. TRANSLATORS: Size is the label for the column that shows how #. much space an option would clean or did clean #: ../bleachbit/GUI.py:152 msgid "Size" msgstr "" #. TRANSLATORS: %(cleaner) may be Firefox, System, etc. #. %(option) may be cache, logs, cookies, etc. #. %(warning) may be 'This option is really slow' #: ../bleachbit/GUI.py:183 #, python-format msgid "" "Warning regarding %(cleaner)s - %(option)s:\n" "\n" "%(warning)s" msgstr "" "%(cleaner)s - %(option)s haqida ogohlantirish:\n" "\n" "%(warning)s" #: ../bleachbit/GUI.py:369 msgid "You must select an operation" msgstr "Siz amalga oshirish kerak bo‘lgan jarayonni tanlashingiz kerak." #: ../bleachbit/GUI.py:389 ../bleachbit/GUI.py:412 msgid "Done." msgstr "Tayyor." #: ../bleachbit/GUI.py:425 msgid "Program to clean unnecessary files" msgstr "Keraksiz fayllarni o‘chirish uchun dastur" #: ../bleachbit/GUI.py:431 msgid "" "GNU General Public License version 3 or later.\n" "See http://www.gnu.org/licenses/gpl-3.0.txt" msgstr "" "GNU Umumiy Ochiq Litsenziyasining 3-versiyasi yoki undan keyingisi.\n" "Ko‘ring: http://www.gnu.org/licenses/gpl-3.0.txt" #. TRANSLATORS: Maintain the names of translators here. #. Launchpad does this automatically for translations #. typed in Launchpad. This is a special string shown #. in the 'About' box. #: ../bleachbit/GUI.py:437 msgid "translator-credits" msgstr "" "Launchpad Contributions:\n" " Akmal Xushvaqov https://launchpad.net/~uzadmin" #: ../bleachbit/GUI.py:449 msgid "System information" msgstr "Tizim ma’lumoti" #: ../bleachbit/GUI.py:522 msgid "Choose files to shred" msgstr "Parchalash uchun fayllarni tanlash" #: ../bleachbit/GUI.py:525 msgid "Choose folder to shred" msgstr "Parchalash uchun jildni tanlash" #: ../bleachbit/GUI.py:589 ../bleachbit/GuiPreferences.py:188 #: ../bleachbit/GuiPreferences.py:317 ../bleachbit/GuiPreferences.py:358 msgid "Choose a folder" msgstr "Jildni tanlash" #. TRANSLATORS: this is the context menu #: ../bleachbit/GUI.py:622 msgid "Preview" msgstr "Oldindan ko‘rish" #. TRANSLATORS: this is the context menu #: ../bleachbit/GUI.py:627 ../bleachbit/Action.py:338 msgid "Clean" msgstr "Tozalash" #: ../bleachbit/GUI.py:691 msgid "_Shred Files" msgstr "_Parchalangan fayllar" #: ../bleachbit/GUI.py:693 msgid "Sh_red Folders" msgstr "Pa_rchalangan fayllar" #: ../bleachbit/GUI.py:695 msgid "_Wipe Free Space" msgstr "_Bo‘sh joyni tozlash" #: ../bleachbit/GUI.py:697 msgid "S_hred Settings and Quit" msgstr "Parc_halash sozlamalari va chiqish" #: ../bleachbit/GUI.py:699 msgid "_Quit" msgstr "_Chiqish" #: ../bleachbit/GUI.py:701 msgid "_File" msgstr "_Fayl" #: ../bleachbit/GUI.py:703 ../bleachbit/GuiPreferences.py:55 msgid "Preferences" msgstr "Parametrlar" #: ../bleachbit/GUI.py:704 msgid "_Edit" msgstr "_Tahrirlash" #: ../bleachbit/GUI.py:705 msgid "Help Contents" msgstr "Yordam mundarijasi" #: ../bleachbit/GUI.py:708 msgid "_Release Notes" msgstr "_Relez qaydlari" #: ../bleachbit/GUI.py:711 msgid "_System Information" msgstr "_Tizim ma’lumoti" #: ../bleachbit/GUI.py:714 msgid "_About" msgstr "_Haqida" #: ../bleachbit/GUI.py:715 msgid "_Help" msgstr "_Yordam" #: ../bleachbit/GUI.py:740 msgctxt "button" msgid "Preview" msgstr "Oldindan ko‘rish" #: ../bleachbit/GUI.py:745 msgid "Preview files in the selected operations (without deleting any files)" msgstr "" "Tanlangan jarayonlarda fayllarni oldindan ko‘rish (birota ham faylni " "o‘chirmasdan)" #: ../bleachbit/GUI.py:755 msgctxt "button" msgid "Clean" msgstr "Tozalash" #: ../bleachbit/GUI.py:759 msgid "Clean files in the selected operations" msgstr "Tanlangan jarayonlardagi fayllarni tozalash" #: ../bleachbit/GUI.py:848 msgid "Error when checking for updates: " msgstr "Yangilanishlar uchun tekshirishda xatolik: " #: ../bleachbit/GUI.py:888 msgid "" "Error loading the SQLite module: the antivirus software may be blocking it." msgstr "" "SQLite modulini yuklashda xatolik yuz berdi: antivirus dasturi bunga yo‘l " "qo‘ymayotgan bo‘lishi mumkin." #: ../bleachbit/GUI.py:891 msgid "" "You are running BleachBit with administrative privileges for cleaning shared " "parts of the system, and references to the user profile folder will clean " "only the root account." msgstr "" "Siz BleachBit dasturini administrator imtiyozlari bilan tizimning " "bo‘lishilgan qismlarini tozalash uchun ishga tushirgansiz. Foydalanuvchi " "profili jildigan bog‘lanishlar faqatgina \"root\" hisobi bilan o‘chiriladi." #: ../bleachbit/CLI.py:106 #, python-format msgid "not a valid cleaner: %s" msgstr "to‘g‘ri tozalagich emas: %s" #. TRANSLATORS: This is the command line usage. Don't translate #. %prog, but do translate usage, options, cleaner, and option. #. More information about the command line is here #. http://bleachbit.sourceforge.net/documentation/command-line #: ../bleachbit/CLI.py:133 msgid "usage: %prog [options] cleaner.option1 cleaner.option2" msgstr "foydalanilgan: %prog [options] cleaner.option1 cleaner.option2" #: ../bleachbit/CLI.py:136 msgid "list cleaners" msgstr "tozalagichlar ro‘yxati" #. TRANSLATORS: predefined cleaners are for applications, such as Firefox and Flash. #. This is different than cleaning an arbitrary file, such as a #. spreadsheet on the desktop. #: ../bleachbit/CLI.py:141 msgid "run cleaners to delete files and make other permanent changes" msgstr "" "faylllarni o‘chirish va boshqa butunlay o‘zgartirishlarni qilish uchun " "tozalagichlarni ishga tushiring" #: ../bleachbit/CLI.py:144 msgid "shred specific files or folders" msgstr "maxsus fayllar yoki jildlarni parchalash" #: ../bleachbit/CLI.py:146 msgid "show system information" msgstr "tizim ma’lumotini ko‘rsatish" #: ../bleachbit/CLI.py:148 msgid "launch the graphical interface" msgstr "grafik interfeysni ishga tushirish" #: ../bleachbit/CLI.py:150 msgid "do not prompt for administrator privileges" msgstr "administrator imtiyozlari uchun urinmang" #: ../bleachbit/CLI.py:155 msgid "preview files to be deleted and other changes" msgstr "o‘chiriladigan va boshqa o‘zgartiriladigan fayllarni oldidan ko‘rish" #: ../bleachbit/CLI.py:157 msgid "use options set in the graphical interface" msgstr "grafik interfeysda tanlovlarni o‘rnatish uchun foydalaning" #: ../bleachbit/CLI.py:160 msgid "update winapp2.ini, if a new version is available" msgstr "agar yangi versiyasi mavjud bo‘lsa, winapp2.ini’ni yangilang" #: ../bleachbit/CLI.py:162 msgid "output version information and exit" msgstr "chiqish versiyasi ma’lumoti va chiqish" #: ../bleachbit/CLI.py:164 msgid "overwrite files to hide contents" msgstr "tarkibni yashirish uchun fayllarni qayta yozish" #: ../bleachbit/Update.py:77 msgid "New winapp2.ini was downloaded." msgstr "Yangi winapp2.ini yuklab olindi." #: ../bleachbit/Update.py:123 msgid "Update BleachBit" msgstr "BleachBit’ni yangilash" #: ../bleachbit/Update.py:128 msgid "A new version is available." msgstr "Yangi versiyasi mavjud." #. TRANSLATORS: %s expands to version such as '0.8.4' or '0.8.5beta' or #. similar #: ../bleachbit/Update.py:137 #, python-format msgid "Update to version %s" msgstr "%s versiyasiga yangilash" #: ../bleachbit/Update.py:163 #, python-format msgid "" "Error when opening a network connection to %s to check for updates. Please " "verify the network is working." msgstr "" #. TRANSLATORS: This indicates an error. The special keyword #. %(operation)s will be replaced by 'firefox' or 'opera' or #. some other cleaner ID. The special keyword %(msg)s will be #. replaced by a message such as 'Permission denied.' #: ../bleachbit/Worker.py:73 #, python-format msgid "Exception while running operation '%(operation)s': '%(msg)s'" msgstr "'%(operation)s' jarayonni bajarishda istisno: '%(msg)s'" #. TRANSLATORS: 'free' means 'unallocated' #: ../bleachbit/Worker.py:181 msgid "Please wait. Wiping free disk space." msgstr "Kutib turing. Bo‘sh joy tozalanmoqda." #. TRANSLATORS: %s is replaced with Firefox, System, etc. #: ../bleachbit/Worker.py:183 ../bleachbit/Worker.py:323 #, python-format msgid "Please wait. Cleaning %s." msgstr "Kutib turing. %s tozalanmoqda." #: ../bleachbit/Worker.py:183 ../bleachbit/Cleaner.py:477 #: ../bleachbit/Cleaner.py:628 msgid "Memory" msgstr "Xotira" #: ../bleachbit/Worker.py:198 msgid "Please wait. Wiping file system metadata." msgstr "Kutib turing. Fayl tizimi meta ma’lumotlari o‘chirilmoqda." #: ../bleachbit/Worker.py:201 msgid "Please wait. Cleaning up after wiping file system metadata." msgstr "" "Kutib turing. Fayl tizimi meta ma’lumotlari o‘chirilgandan so‘ng " "tozalanmoqda." #: ../bleachbit/Worker.py:204 #, python-format msgid "About %d minute remaining." msgid_plural "About %d minutes remaining." msgstr[0] "Chamasi %d daqiqa qolmoqda" #. TRANSLATORS: This refers to disk space that was #. really recovered (in other words, not a preview) #: ../bleachbit/Worker.py:262 #, python-format msgid "Disk space recovered: %s" msgstr "Diskdagi tiklangan bo‘sh joy: %s" #. TRANSLATORS: This refers to a preview (no real #. changes were made yet) #: ../bleachbit/Worker.py:266 #, python-format msgid "Disk space to be recovered: %s" msgstr "Diskdagi tiklanadigan bo‘sh joy: %s" #. TRANSLATORS: This refers to the number of files really #. deleted (in other words, not a preview). #: ../bleachbit/Worker.py:271 #, python-format msgid "Files deleted: %d" msgstr "O‘chirilgan fayllar: %d" #. TRANSLATORS: This refers to the number of files that #. would be deleted (in other words, simply a preview). #: ../bleachbit/Worker.py:275 #, python-format msgid "Files to be deleted: %d" msgstr "O‘chiriladigan fayllar: %d" #: ../bleachbit/Worker.py:278 #, python-format msgid "Special operations: %d" msgstr "Maxsus jarayonlar: %d" #: ../bleachbit/Worker.py:281 #, python-format msgid "Errors: %d" msgstr "Xatolar: %d" #. TRANSLATORS: The "deep scan" feature searches over broad #. areas of the file system such as the user's whole home directory #. or all the system executables. #: ../bleachbit/Worker.py:296 msgid "Please wait. Running deep scan." msgstr "Kutib turing. Chuqur tekshirish amalga oshirilmoqda." #. TRANSLATORS: %s is replaced with Firefox, System, etc. #: ../bleachbit/Worker.py:326 #, python-format msgid "Please wait. Previewing %s." msgstr "Kutib turing. %s ko‘rib chiqilmoqda." #. TRANSLATORS: This is cleaner name for cleaners imported from winapp2.ini #: ../bleachbit/Winapp.py:43 msgid "Applications" msgstr "Ilova dasturlar" #. TRANSLATORS: This is cleaner name for cleaners imported #. from winapp2.ini #: ../bleachbit/Winapp.py:46 msgid "Internet" msgstr "Internet" #. TRANSLATORS: This is cleaner name for cleaners imported #. from winapp2.ini #: ../bleachbit/Winapp.py:49 msgid "Multimedia" msgstr "Multimedia" #. TRANSLATORS: This is cleaner name for cleaners imported #. from winapp2.ini #: ../bleachbit/Winapp.py:52 msgid "Utilities" msgstr "Vositalar" #: ../bleachbit/Winapp.py:63 msgid "Games" msgstr "O‘yinlar" #: ../bleachbit/Winapp.py:153 msgid "Imported from winapp2.ini" msgstr "winapp2.ini’dan import qilindi" #: ../bleachbit/Cleaner.py:198 msgid "Crash reports" msgstr "Nosozlik hisobotlari" #: ../bleachbit/Cleaner.py:205 msgid "Session restore" msgstr "Tiklash seansi" #: ../bleachbit/Cleaner.py:206 msgid "Loads the initial session after the browser closes or crashes" msgstr "" "Brauzer yopilgandan yoki nosozlik ro‘y bergandan so‘ng boshlang‘ich seansni " "yuklaydi" #: ../bleachbit/Cleaner.py:208 msgid "Site preferences" msgstr "Sayt parametrlari" #: ../bleachbit/Cleaner.py:208 msgid "Settings for individual sites" msgstr "Alohida saytlar uchun sozlamalar" #. TRANSLATORS: desktop entries are .desktop files in Linux tha #. make up the application menu (the menu that shows BleachBit, #. Firefox, and others. The .desktop files also associate file #. types, so clicking on an .html file in Nautilus brings up #. Firefox. #. More information: #. http://standards.freedesktop.org/menu-spec/latest/index.html#introduction #: ../bleachbit/Cleaner.py:454 msgid "Broken desktop files" msgstr "Buzilgan ish stoli fayllari" #: ../bleachbit/Cleaner.py:455 msgid "Delete broken application menu entries and file associations" msgstr "" "Buzilgan ilova dasturlardagi ochilgan menyular va fayllar birlashmasini " "o‘chirish" #. TRANSLATORS: Localizations are files supporting specific #. languages, so applications appear in Spanish, etc. #: ../bleachbit/Cleaner.py:459 msgid "Localizations" msgstr "Mahalliylashtirishlar" #: ../bleachbit/Cleaner.py:460 msgid "Delete files for unwanted languages" msgstr "Foydalanilmaydigan tillar uchun fayllarni o‘chirish" #: ../bleachbit/Cleaner.py:462 msgid "Configure this option in the preferences." msgstr "Ushbu tanlovni parametrlardan moslang." #: ../bleachbit/Cleaner.py:468 msgid "Rotated logs" msgstr "Burilgan jurnallar" #: ../bleachbit/Cleaner.py:468 msgid "Delete old system logs" msgstr "Eski tizim jurnallarini o‘chirish" #: ../bleachbit/Cleaner.py:471 msgid "Trash" msgstr "Chiqindi" #: ../bleachbit/Cleaner.py:471 msgid "Empty the trash" msgstr "Chiqindilarni tozlash" #. TRANSLATORS: 'free' means 'unallocated' #: ../bleachbit/Cleaner.py:479 msgid "Wipe the swap and free memory" msgstr "Svep va bo‘sh joyni tozalash" #: ../bleachbit/Cleaner.py:481 msgid "This option is experimental and may cause system problems." msgstr "" "Ushbu tanlov hali sinovda, shuning uchun u muammolarga sabab bo‘lishi mumkin." #: ../bleachbit/Cleaner.py:489 msgid "Memory dump" msgstr "Xotira yetishmovchiligi" #: ../bleachbit/Cleaner.py:489 msgid "Delete the file memory.dmp" msgstr "Fayl memory.dmp’ini o‘chirish" #. TRANSLATORS: Prefetch is Microsoft Windows jargon. #: ../bleachbit/Cleaner.py:492 msgid "Prefetch" msgstr "Oldindan tanlash" #: ../bleachbit/Cleaner.py:494 msgid "Recycle bin" msgstr "Chiqindilar qutisi" #: ../bleachbit/Cleaner.py:494 msgid "Empty the recycle bin" msgstr "Chiqindilar qutisini tozalash" #. TRANSLATORS: 'Update' is a noun, and 'Update uninstallers' is an option to delete #. the uninstallers for software updates. #: ../bleachbit/Cleaner.py:497 msgid "Update uninstallers" msgstr "Dasturlarni o‘chirgichlarni yangilash" #: ../bleachbit/Cleaner.py:498 msgid "" "Delete uninstallers for Microsoft updates including hotfixes, service packs, " "and Internet Explorer updates" msgstr "" "So‘nggi tuzatishlar, xizmat paketlari va Internet Explorer yangilanishlarini " "o‘z ichiga olgan Microsoft yangilanishlari uchun dastur o‘chirgichlarini " "o‘chirish" #: ../bleachbit/Cleaner.py:505 ../bleachbit/Cleaner.py:721 msgid "Clipboard" msgstr "Xotira buferi" #: ../bleachbit/Cleaner.py:506 msgid "" "The desktop environment's clipboard used for copy and paste operations" msgstr "" "Ish stoli muhitidagi xotira buferidan jarayonlardan nusxa olish va qo‘yish " "uchun foydalaniladi" #. TRANSLATORS: "Custom" is an option allowing the user to specify which #. files and folders will be erased. #: ../bleachbit/Cleaner.py:513 ../bleachbit/GuiPreferences.py:63 msgid "Custom" msgstr "Boshqa" #: ../bleachbit/Cleaner.py:514 msgid "Delete user-specified files and folders" msgstr "Foydalanuvchi ko‘rsatgan fayllar va jildlarni o‘chirish" #. TRANSLATORS: 'free' means 'unallocated' #: ../bleachbit/Cleaner.py:516 msgid "Free disk space" msgstr "Bo‘sh joy" #. TRANSLATORS: 'free' means 'unallocated' #: ../bleachbit/Cleaner.py:518 msgid "Overwrite free disk space to hide deleted files" msgstr "O‘chirilgan fayllarni yashirish uchun bo‘sh joyga qayta yozish" #: ../bleachbit/Cleaner.py:519 msgid "This option is very slow." msgstr "Ushbu tanlov juda sekin." #: ../bleachbit/Cleaner.py:523 msgid "The system in general" msgstr "Umumiy tizim" #: ../bleachbit/Cleaner.py:525 ../bleachbit/Cleaner.py:840 msgid "System" msgstr "Tizim" #. TRANSLATORS: 'Free' means 'unallocated.' #. %s expands to a path such as C:\ or /tmp/ #: ../bleachbit/Cleaner.py:729 ../bleachbit/Cleaner.py:873 #, python-format msgid "Overwrite free disk space %s" msgstr "%s bo‘sh joyga qayta yozish" #: ../bleachbit/GuiPreferences.py:61 msgid "General" msgstr "Umumiy" #: ../bleachbit/GuiPreferences.py:64 msgid "Drives" msgstr "Disklar" #: ../bleachbit/GuiPreferences.py:67 msgid "Languages" msgstr "Tillar" #: ../bleachbit/GuiPreferences.py:69 msgid "Whitelist" msgstr "Ishonchli ro‘yxat" #: ../bleachbit/GuiPreferences.py:114 msgid "Check periodically for software updates via the Internet" msgstr "Dastur yangilanishlarini internet orqali muntazam tekshirib turish" #: ../bleachbit/GuiPreferences.py:119 msgid "" "If an update is found, you will be given the option to view information " "about it. Then, you may manually download and install the update." msgstr "" "Agar yangilanish topilsa, sizga ushbu tanlovni ko‘rish haqida ma’lumot " "beriladi. So‘ngra, yangilanishni o‘zingiz yuklab olishingiz va " "o‘rnatishingiz mumkin." #: ../bleachbit/GuiPreferences.py:125 msgid "Check for new beta releases" msgstr "Yangi beta relizlar uchun tekshirish" #: ../bleachbit/GuiPreferences.py:134 msgid "Download and update cleaners from community (winapp2.ini)" msgstr "" "Hamjamiyat (winapp2.ini)dan tozalagichlarni yuklab olish va yangilash" #. TRANSLATORS: This means to hide cleaners which would do #. nothing. For example, if Firefox were never used on #. this system, this option would hide Firefox to simplify #. the list of cleaners. #: ../bleachbit/GuiPreferences.py:148 msgid "Hide irrelevant cleaners" msgstr "Keraksiz tozalagichlarni yashirish" #. TRANSLATORS: Overwriting is the same as shredding. It is a way #. to prevent recovery of the data. You could also translate #. 'Shred files to prevent recovery.' #: ../bleachbit/GuiPreferences.py:156 msgid "Overwrite files to hide contents" msgstr "Tarkibni yashirish uchun fayllarni qayta yozish" #: ../bleachbit/GuiPreferences.py:160 msgid "" "Overwriting is ineffective on some file systems and with certain BleachBit " "operations. Overwriting is significantly slower." msgstr "" "Qayta yozish ba’zi fayl tizimlari va BleachBit jarayonlari bilan foyda " "bermaydi. Qayta yozish sezilarli darajada sekin." #: ../bleachbit/GuiPreferences.py:163 msgid "Start BleachBit with computer" msgstr "BleachBit’ni kompyuter bilan boshlash" #: ../bleachbit/GuiPreferences.py:169 msgid "Exit after cleaning" msgstr "Tozalashdan keyin chiqish" #: ../bleachbit/GuiPreferences.py:175 msgid "Confirm before delete" msgstr "O‘chirishdan oldin tasdiqlash" #: ../bleachbit/GuiPreferences.py:212 msgid "" "Choose a writable folder for each drive for which to overwrite free space." msgstr "" "Bo‘sh joyni almashtirish uchun har bir disk uchun yozsa bo‘ladigan jildni " "tanlang." #. TRANSLATORS: In the preferences dialog, this button adds a path to #. the list of paths #: ../bleachbit/GuiPreferences.py:234 msgctxt "button" msgid "Add" msgstr "Qo‘shish" #. TRANSLATORS: In the preferences dialog, this button removes a path #. from the list of paths #: ../bleachbit/GuiPreferences.py:238 ../bleachbit/GuiPreferences.py:449 msgctxt "button" msgid "Remove" msgstr "Olib tashlash" #: ../bleachbit/GuiPreferences.py:263 msgid "All languages will be deleted except those checked." msgstr "Ushbu tekshirilganlardan boshqa barcha tillar o‘chiriladi." #: ../bleachbit/GuiPreferences.py:279 msgid "Preserve" msgstr "Saqlash" #: ../bleachbit/GuiPreferences.py:283 msgid "Code" msgstr "Kod" #: ../bleachbit/GuiPreferences.py:304 ../bleachbit/GuiPreferences.py:345 msgid "Choose a file" msgstr "Faylni tanlash" #: ../bleachbit/GuiPreferences.py:311 ../bleachbit/GuiPreferences.py:352 #: ../bleachbit/GuiPreferences.py:396 msgid "File" msgstr "Fayl" #: ../bleachbit/GuiPreferences.py:325 ../bleachbit/GuiPreferences.py:366 #: ../bleachbit/GuiPreferences.py:398 msgid "Folder" msgstr "Jild" #: ../bleachbit/GuiPreferences.py:408 msgid "Theses paths will not be deleted or modified." msgstr "Ushbu yo‘llarni o‘chirib yoki o‘zgartirib bo‘lmaydi." #: ../bleachbit/GuiPreferences.py:411 msgid "These locations can be selected for deletion." msgstr "Ushbu manzillarni o‘chirish uchun tanlash mumkin." #: ../bleachbit/GuiPreferences.py:419 msgid "Type" msgstr "Turi" #. TRANSLATORS: In the tree view "Path" is used generically to refer to a #. file, a folder, or a pattern describing either #: ../bleachbit/GuiPreferences.py:425 msgid "Path" msgstr "Yo‘l" #: ../bleachbit/GuiPreferences.py:437 msgctxt "button" msgid "Add file" msgstr "Fayl qo‘shish" #: ../bleachbit/GuiPreferences.py:443 msgctxt "button" msgid "Add folder" msgstr "Jild qo‘shish" bleachbit-2.0/po/et.po0000644000175000017500000012374213245436307013000 0ustar hlehle# Estonian translation for bleachbit # Copyright (c) 2011 Rosetta Contributors and Canonical Ltd 2011 # This file is distributed under the same license as the bleachbit package. # FIRST AUTHOR , 2011. # msgid "" msgstr "" "Project-Id-Version: bleachbit\n" "Report-Msgid-Bugs-To: FULL NAME \n" "POT-Creation-Date: 2015-03-15 15:49-0600\n" "PO-Revision-Date: 2015-07-05 17:45+0000\n" "Last-Translator: Jalakas \n" "Language-Team: Estonian \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n != 1;\n" "X-Launchpad-Export-Date: 2015-07-06 20:52+0000\n" "X-Generator: Launchpad (build 17597)\n" #: ../cleaners/mc.xml ../cleaners/tortoisesvn.xml ../cleaners/vim.xml #: ../cleaners/safari.xml ../cleaners/links2.xml ../cleaners/seamonkey.xml #: ../cleaners/realplayer.xml ../cleaners/windows_defender.xml #: ../cleaners/d4x.xml ../cleaners/sqlite3.xml #: ../cleaners/internet_explorer.xml ../cleaners/libreoffice.xml #: ../cleaners/easytag.xml ../cleaners/bash.xml ../cleaners/nautilus.xml #: ../cleaners/octave.xml ../cleaners/elinks.xml ../cleaners/chromium.xml #: ../cleaners/google_chrome.xml msgid "History" msgstr "Ajalugu" #: ../cleaners/mc.xml ../cleaners/tortoisesvn.xml ../cleaners/links2.xml #: ../cleaners/realplayer.xml ../cleaners/d4x.xml ../cleaners/libreoffice.xml #: ../cleaners/easytag.xml ../cleaners/nautilus.xml ../cleaners/gnome.xml #: ../bleachbit/Cleaner.py:348 ../bleachbit/Cleaner.py:422 #: ../bleachbit/Cleaner.py:431 msgid "Delete the usage history" msgstr "Kustuta kasutatavuse ajalugu" #: ../cleaners/gpodder.xml ../cleaners/hippo_opensim_viewer.xml #: ../cleaners/thumbnails.xml ../cleaners/safari.xml ../cleaners/emesene.xml #: ../cleaners/liferea.xml ../cleaners/seamonkey.xml ../cleaners/vuze.xml #: ../cleaners/yahoo_messenger.xml ../cleaners/pidgin.xml #: ../cleaners/adobe_reader.xml ../cleaners/evolution.xml #: ../cleaners/tremulous.xml ../cleaners/libreoffice.xml ../cleaners/xine.xml #: ../cleaners/nexuiz.xml ../cleaners/exaile.xml ../cleaners/opera.xml #: ../cleaners/amsn.xml ../cleaners/gftp.xml ../cleaners/miro.xml #: ../cleaners/beagle.xml ../cleaners/kde.xml ../cleaners/epiphany.xml #: ../cleaners/flash.xml ../cleaners/secondlife_viewer.xml #: ../cleaners/java.xml ../cleaners/chromium.xml ../cleaners/audacious.xml #: ../cleaners/rhythmbox.xml ../cleaners/google_chrome.xml #: ../cleaners/thunderbird.xml ../bleachbit/Cleaner.py:191 #: ../bleachbit/Cleaner.py:369 ../bleachbit/Cleaner.py:454 msgid "Cache" msgstr "Puhver" #: ../cleaners/gpodder.xml ../cleaners/yum.xml #: ../cleaners/hippo_opensim_viewer.xml ../cleaners/thumbnails.xml #: ../cleaners/windows_explorer.xml ../cleaners/liferea.xml #: ../cleaners/vuze.xml ../cleaners/yahoo_messenger.xml ../cleaners/pidgin.xml #: ../cleaners/adobe_reader.xml ../cleaners/evolution.xml #: ../cleaners/libreoffice.xml ../cleaners/apt.xml ../cleaners/xine.xml #: ../cleaners/nexuiz.xml ../cleaners/exaile.xml ../cleaners/amsn.xml #: ../cleaners/gftp.xml ../cleaners/miro.xml ../cleaners/beagle.xml #: ../cleaners/kde.xml ../cleaners/flash.xml ../cleaners/secondlife_viewer.xml #: ../cleaners/java.xml ../cleaners/audacious.xml ../cleaners/rhythmbox.xml #: ../bleachbit/Cleaner.py:369 ../bleachbit/Cleaner.py:454 #: ../bleachbit/Cleaner.py:488 ../bleachbit/Cleaner.py:490 msgid "Delete the cache" msgstr "Kustuta vahemälu" #. TRANSLATORS: Vacuum is a verb. The term is jargon #. from the SQLite database. Microsoft Access uses #. the term 'Compact Database' (which you may translate #. instead). Another synonym is 'defragment.' #: ../cleaners/gpodder.xml ../cleaners/yum.xml ../cleaners/safari.xml #: ../cleaners/liferea.xml ../cleaners/chromium.xml #: ../cleaners/google_chrome.xml ../cleaners/thunderbird.xml #: ../bleachbit/Action.py:335 ../bleachbit/Cleaner.py:211 #: ../bleachbit/Cleaner.py:359 msgid "Vacuum" msgstr "Tihenda andmebaas" #: ../cleaners/gpodder.xml ../cleaners/yum.xml ../cleaners/safari.xml #: ../cleaners/liferea.xml ../cleaners/chromium.xml #: ../cleaners/google_chrome.xml ../cleaners/thunderbird.xml #: ../bleachbit/Cleaner.py:212 msgid "" "Clean database fragmentation to reduce space and improve speed without " "removing any data" msgstr "" "Eemalda andmebaasi killustatus, et suurendada kõvaketta suurust ja " "kiirendada kiirust ilma andmete eemaldamist" #: ../cleaners/yum.xml ../cleaners/apt.xml msgid "Package manager" msgstr "" #: ../cleaners/warzone2100.xml ../cleaners/hippo_opensim_viewer.xml #: ../cleaners/gl-117.xml ../cleaners/tremulous.xml ../cleaners/nexuiz.xml #: ../cleaners/secondlife_viewer.xml msgid "Game" msgstr "Mängud" #: ../cleaners/warzone2100.xml ../cleaners/hippo_opensim_viewer.xml #: ../cleaners/teamviewer.xml ../cleaners/realplayer.xml ../cleaners/vuze.xml #: ../cleaners/yahoo_messenger.xml ../cleaners/amule.xml #: ../cleaners/easytag.xml ../cleaners/exaile.xml ../cleaners/screenlets.xml #: ../cleaners/gftp.xml ../cleaners/miro.xml ../cleaners/audacious.xml #: ../bleachbit/Cleaner.py:485 msgid "Logs" msgstr "Logid" #: ../cleaners/warzone2100.xml ../cleaners/hippo_opensim_viewer.xml #: ../cleaners/teamviewer.xml ../cleaners/realplayer.xml ../cleaners/vuze.xml #: ../cleaners/yahoo_messenger.xml ../cleaners/amule.xml #: ../cleaners/exaile.xml ../cleaners/screenlets.xml ../cleaners/gftp.xml #: ../cleaners/miro.xml ../cleaners/audacious.xml ../bleachbit/Cleaner.py:485 msgid "Delete the logs" msgstr "Kustuta logid" #: ../cleaners/thumbnails.xml ../cleaners/windows_explorer.xml msgid "Thumbnails" msgstr "Pisipildid" #: ../cleaners/thumbnails.xml msgid "Icons for files on the system" msgstr "" #: ../cleaners/vim.xml ../cleaners/gedit.xml msgid "Editor" msgstr "Redaktor" #: ../cleaners/vim.xml msgid "" "Delete ~/.viminfo which includes file history, command history, and buffers" msgstr "" "Kustuta ~/.viminfo, mis sisaldab faili ajalugu, käskude ajalugu ja puhvreid." #: ../cleaners/filezilla.xml ../cleaners/transmission.xml ../cleaners/vuze.xml #: ../cleaners/amule.xml ../cleaners/gftp.xml msgid "File transfer client" msgstr "Failivahetusklient" #: ../cleaners/filezilla.xml ../cleaners/paint.xml #: ../cleaners/windows_media_player.xml ../cleaners/windows_explorer.xml #: ../cleaners/teamviewer.xml ../cleaners/microsoft_office.xml #: ../cleaners/vlc.xml ../cleaners/adobe_reader.xml ../cleaners/winamp.xml #: ../cleaners/winzip.xml ../cleaners/winrar.xml ../cleaners/audacious.xml #: ../cleaners/wordpad.xml ../bleachbit/Cleaner.py:370 msgid "Most recently used" msgstr "Hiljuti kasutatud" #: ../cleaners/filezilla.xml ../cleaners/windows_explorer.xml #: ../cleaners/gwenview.xml ../cleaners/adobe_reader.xml ../cleaners/gedit.xml #: ../cleaners/kde.xml ../cleaners/audacious.xml ../bleachbit/Cleaner.py:371 #: ../bleachbit/Cleaner.py:468 msgid "Delete the list of recently used documents" msgstr "Kustuta hiljuti kasutatud dokumentide nimekiri" #: ../cleaners/skype.xml ../cleaners/xchat.xml ../cleaners/emesene.xml #: ../cleaners/seamonkey.xml ../cleaners/yahoo_messenger.xml #: ../cleaners/pidgin.xml ../cleaners/amsn.xml msgid "Chat logs" msgstr "Suhtluslogid" #: ../cleaners/skype.xml ../cleaners/xchat.xml ../cleaners/emesene.xml #: ../cleaners/seamonkey.xml ../cleaners/yahoo_messenger.xml #: ../cleaners/pidgin.xml ../cleaners/amsn.xml msgid "Delete the chat logs" msgstr "Kustuta suhtlemise logid" #: ../cleaners/skype.xml msgid "Installers" msgstr "" #: ../cleaners/skype.xml msgid "Delete cached patches and installers" msgstr "" #: ../cleaners/xchat.xml ../cleaners/emesene.xml #: ../cleaners/yahoo_messenger.xml ../cleaners/pidgin.xml ../cleaners/amsn.xml msgid "Chat client" msgstr "Suhtlusprogrammid" #: ../cleaners/safari.xml ../cleaners/links2.xml ../cleaners/seamonkey.xml #: ../cleaners/konqueror.xml ../cleaners/internet_explorer.xml #: ../cleaners/opera.xml ../cleaners/epiphany.xml ../cleaners/elinks.xml #: ../cleaners/chromium.xml ../cleaners/google_chrome.xml #: ../bleachbit/Cleaner.py:224 msgid "Web browser" msgstr "Veebisirvija" #: ../cleaners/safari.xml ../cleaners/seamonkey.xml ../cleaners/opera.xml #: ../cleaners/epiphany.xml ../cleaners/chromium.xml #: ../cleaners/google_chrome.xml ../cleaners/thunderbird.xml #: ../bleachbit/Cleaner.py:192 msgid "Delete the web cache, which reduces time to display revisited pages" msgstr "" "Kustuta brauseri vahemälu, mis kiirendab taaskülastavate lehekülgede " "laadimist" #: ../cleaners/safari.xml ../cleaners/liferea.xml ../cleaners/seamonkey.xml #: ../cleaners/realplayer.xml ../cleaners/konqueror.xml #: ../cleaners/internet_explorer.xml ../cleaners/opera.xml #: ../cleaners/epiphany.xml ../cleaners/flash.xml ../cleaners/silverlight.xml #: ../cleaners/chromium.xml ../cleaners/google_chrome.xml #: ../cleaners/thunderbird.xml ../bleachbit/Cleaner.py:193 msgid "Cookies" msgstr "Küpsised" #: ../cleaners/safari.xml ../cleaners/liferea.xml ../cleaners/seamonkey.xml #: ../cleaners/realplayer.xml ../cleaners/konqueror.xml #: ../cleaners/internet_explorer.xml ../cleaners/opera.xml #: ../cleaners/epiphany.xml ../cleaners/flash.xml ../cleaners/silverlight.xml #: ../cleaners/chromium.xml ../cleaners/google_chrome.xml #: ../cleaners/thunderbird.xml ../bleachbit/Cleaner.py:194 msgid "" "Delete cookies, which contain information such as web site preferences, " "authentication, and tracking identification" msgstr "" "Kustuta küpsised, mis sisaldavad informatsiooni nagu veebisaitide " "atribuudid, autentimised ja jälgimistunnustused" #: ../cleaners/safari.xml ../cleaners/konqueror.xml #: ../cleaners/internet_explorer.xml ../cleaners/opera.xml #: ../bleachbit/Cleaner.py:210 msgid "List of visited web pages" msgstr "Külastatud veebisaitide list" #. Torrent software can block a list of IP addresses, such as those that may belong to malware or anti-piracy organizations #: ../cleaners/transmission.xml msgid "Blocklists" msgstr "" #: ../cleaners/transmission.xml ../cleaners/windows_defender.xml #: ../cleaners/beagle.xml ../cleaners/thunderbird.xml ../cleaners/deepscan.xml #: ../bleachbit/Cleaner.py:196 msgid "Delete the files" msgstr "Kustuta failid" #: ../cleaners/transmission.xml msgid "Blocklists will need update to work." msgstr "" #: ../cleaners/transmission.xml msgid "Torrents" msgstr "Torrentid" #: ../cleaners/transmission.xml msgid "Delete the torrents (just the metadata but not the files described)" msgstr "" #: ../cleaners/paint.xml ../cleaners/windows_media_player.xml #: ../cleaners/windows_explorer.xml ../cleaners/teamviewer.xml #: ../cleaners/microsoft_office.xml ../cleaners/vlc.xml ../cleaners/winamp.xml #: ../cleaners/winzip.xml ../cleaners/winrar.xml ../cleaners/wordpad.xml msgid "Delete the most recently used list" msgstr "Kustuta hiljuti kasutatud failide nimekiri" #: ../cleaners/emesene.xml msgid "Delete the avatars and emoticons cache" msgstr "Kustuta avataride ja emotikonide vahemälu" #: ../cleaners/windows_media_player.xml ../cleaners/realplayer.xml #: ../cleaners/vlc.xml ../cleaners/winamp.xml msgid "Media player" msgstr "Meediaesitaja" #: ../cleaners/windows_explorer.xml ../cleaners/nautilus.xml msgid "File manager" msgstr "Faili haldur" #: ../cleaners/windows_explorer.xml ../cleaners/gwenview.xml #: ../cleaners/gedit.xml ../cleaners/kde.xml ../bleachbit/Cleaner.py:467 msgid "Recent documents list" msgstr "Hiljutiste dokumentide nimekiri" #. In Windows 'Run' is the dialog in the Start menu #. In GNOME 'Run' is the dialog shown when typing ALT+F2' #: ../cleaners/windows_explorer.xml ../cleaners/gnome.xml msgid "Run" msgstr "Käivita" #: ../cleaners/windows_explorer.xml ../cleaners/opera.xml #: ../cleaners/gnome.xml ../cleaners/google_toolbar.xml msgid "Search history" msgstr "Otsingu ajalugu" #: ../cleaners/windows_explorer.xml ../cleaners/opera.xml #: ../cleaners/gnome.xml ../cleaners/google_toolbar.xml msgid "Delete the search history" msgstr "Kustuta otsingu ajalugu" #: ../cleaners/gl-117.xml ../cleaners/microsoft_office.xml #: ../cleaners/beagle.xml ../cleaners/secondlife_viewer.xml #: ../cleaners/x11.xml msgid "Debug logs" msgstr "Veasilumise logid" #: ../cleaners/gl-117.xml ../cleaners/microsoft_office.xml #: ../cleaners/easytag.xml ../cleaners/beagle.xml #: ../cleaners/secondlife_viewer.xml ../cleaners/x11.xml msgid "Delete the debug logs" msgstr "Kustuta veasilumise logid" #: ../cleaners/google_earth.xml ../cleaners/winetricks.xml #: ../cleaners/vuze.xml ../cleaners/adobe_reader.xml ../cleaners/amule.xml #: ../cleaners/wine.xml ../cleaners/internet_explorer.xml ../cleaners/gimp.xml #: ../cleaners/kde.xml ../cleaners/deepscan.xml ../bleachbit/Cleaner.py:519 msgid "Temporary files" msgstr "Ajutised failid" #: ../cleaners/google_earth.xml ../cleaners/winetricks.xml #: ../cleaners/vuze.xml ../cleaners/adobe_reader.xml ../cleaners/amule.xml #: ../cleaners/wine.xml ../cleaners/internet_explorer.xml ../cleaners/gimp.xml #: ../cleaners/kde.xml ../cleaners/deepscan.xml ../bleachbit/Cleaner.py:519 msgid "Delete the temporary files" msgstr "Kustuta ajutised failid" #: ../cleaners/seamonkey.xml ../cleaners/opera.xml ../bleachbit/Cleaner.py:200 msgid "Download history" msgstr "Allalaadimise ajalugu" #: ../cleaners/seamonkey.xml ../cleaners/opera.xml ../bleachbit/Cleaner.py:200 msgid "List of files downloaded" msgstr "Allalaetud failide nimekiri" #: ../cleaners/seamonkey.xml msgid "Delete the list of visited web pages" msgstr "Kustuta külastatud veebilehekülgede nimekiri" #: ../cleaners/vuze.xml ../cleaners/deepscan.xml ../bleachbit/Cleaner.py:189 msgid "Backup files" msgstr "Varundusfailid" #: ../cleaners/vuze.xml ../cleaners/deepscan.xml ../bleachbit/Cleaner.py:190 msgid "Delete the backup files" msgstr "Kustuta varundusfailid" #: ../cleaners/konqueror.xml ../cleaners/opera.xml ../cleaners/chromium.xml msgid "Current session" msgstr "Praegune sessioon" #: ../cleaners/konqueror.xml ../cleaners/opera.xml ../cleaners/chromium.xml msgid "Delete the current session" msgstr "Kustuta praegune sessioon" #: ../cleaners/konqueror.xml ../cleaners/opera.xml ../bleachbit/Cleaner.py:210 msgid "URL history" msgstr "URL´i ajalugu" #: ../cleaners/microsoft_office.xml ../cleaners/libreoffice.xml #: ../bleachbit/Cleaner.py:383 msgid "Office suite" msgstr "Kontoritöö komplekt" #: ../cleaners/adobe_reader.xml msgid "Document viewer" msgstr "" #: ../cleaners/evolution.xml ../cleaners/thunderbird.xml msgid "Email client" msgstr "" #: ../cleaners/tremulous.xml msgid "Delete the list of game servers" msgstr "Kustuta mängu serverite list" #: ../cleaners/sqlite3.xml ../cleaners/bash.xml ../cleaners/octave.xml msgid "Delete the command history" msgstr "Kustuta käskude ajalugu" #: ../cleaners/wine.xml msgid "Compatibility layer for Windows software" msgstr "" #: ../cleaners/internet_explorer.xml ../cleaners/chromium.xml #: ../cleaners/google_chrome.xml ../bleachbit/Cleaner.py:201 msgid "Form history" msgstr "Tekstiväljade ajalugu" #: ../cleaners/internet_explorer.xml ../bleachbit/Cleaner.py:202 msgid "A history of forms entered in web sites and in the Search bar" msgstr "Tekstiribadesse ja otsinguribasse sisestatud teksti ajalugu" #. This software edits metadata tags, such as title and artist, in audio files #: ../cleaners/easytag.xml msgid "Audio files tagger" msgstr "" #: ../cleaners/apt.xml msgid "Delete obsolete files" msgstr "Kustuta aegunud faile" #: ../cleaners/apt.xml msgid "Package lists" msgstr "Paketinimekirjad" #: ../cleaners/xine.xml ../cleaners/miro.xml ../cleaners/flash.xml msgid "Multimedia viewer" msgstr "Multimeedia mängija" #: ../cleaners/recoll.xml ../cleaners/beagle.xml msgid "Search tool" msgstr "Otsingutööriist" #: ../cleaners/recoll.xml ../cleaners/beagle.xml ../cleaners/thunderbird.xml msgid "Index" msgstr "Indekseeri" #: ../cleaners/recoll.xml msgid "" "Delete the search index, a database of words and the files they contain" msgstr "" "Kustuta otsingu indeks - andmebaas failidest ja nendes sisalduvatest sõnadest" #: ../cleaners/exaile.xml msgid "Downloaded podcasts" msgstr "Allalaetud podcastid" #: ../cleaners/exaile.xml msgid "Delete downloaded podcasts" msgstr "Kustuta allalaetud podcastid" #: ../cleaners/bash.xml msgid "Shell" msgstr "" #. TRANSLATORS: DOM = Document Object Model. #: ../cleaners/opera.xml ../cleaners/chromium.xml #: ../cleaners/google_chrome.xml ../bleachbit/Cleaner.py:198 msgid "DOM Storage" msgstr "DOM Hoidla" #: ../cleaners/opera.xml ../cleaners/chromium.xml #: ../cleaners/google_chrome.xml ../bleachbit/Cleaner.py:198 msgid "Delete HTML5 cookies" msgstr "Kustuta HTML5 küpsised" #: ../cleaners/opera.xml ../cleaners/epiphany.xml ../cleaners/chromium.xml #: ../cleaners/google_chrome.xml ../cleaners/thunderbird.xml #: ../bleachbit/Cleaner.py:207 msgid "Passwords" msgstr "Paroolid" #: ../cleaners/opera.xml ../cleaners/epiphany.xml ../cleaners/chromium.xml #: ../cleaners/google_chrome.xml ../cleaners/thunderbird.xml #: ../bleachbit/Cleaner.py:208 msgid "" "A database of usernames and passwords as well as a list of sites that should " "not store passwords" msgstr "" "Andmebaas kasutajanimede ja paroolidega, samuti lehtede loetelu, mis ei " "tohiks salvestada paroole" #: ../cleaners/opera.xml ../cleaners/epiphany.xml ../cleaners/chromium.xml #: ../cleaners/google_chrome.xml ../cleaners/thunderbird.xml msgid "This option will delete your saved passwords." msgstr "" #: ../cleaners/nautilus.xml msgid "Custom folders will be reset." msgstr "Kohandatud kaustade asukohad taastatakse." #: ../cleaners/screenlets.xml msgid "Widgets for the desktop" msgstr "Töölaua vidinad" #: ../cleaners/kde.xml msgid "This option may be incompatible with kdesudo" msgstr "" #: ../cleaners/epiphany.xml msgid "Places" msgstr "Asukohad" #: ../cleaners/epiphany.xml msgid "" "A database of URLs including bookmarks, favicons, and a history of visited " "web sites" msgstr "" "URL´ide andmebaas, mis sisaldab järjehoidjaid, lemmikikoone ja külastatud " "veebisaitide ajalugu" #: ../cleaners/epiphany.xml msgid "This option deletes all bookmarks." msgstr "See valik kustutab kõik järjehoidjad." #: ../cleaners/elinks.xml msgid "Delete the cookies, visited URLs, and search history" msgstr "Kustuta küpsised, külastatud URLid ja otsingu ajalugu" #: ../cleaners/chromium.xml ../cleaners/google_chrome.xml msgid "A history of forms entered in web sites" msgstr "Tekstiribadesse sisestatud teksti ajalugu" #: ../cleaners/chromium.xml ../cleaners/google_chrome.xml msgid "" "Delete the history which includes visited sites, downloads, and thumbnails" msgstr "" "Kustuta ajalugu, mis sisaldab külastatud saite, allalaadimisi ja pisipilte" #: ../cleaners/chromium.xml ../cleaners/google_chrome.xml msgid "Search engines" msgstr "Otsingumootorid" #. 'Factory' means a search engine that is installed by default 'from the factory,' but this is different than a 'default search engine' https://lists.launchpad.net/launchpad-translators/msg00283.html #: ../cleaners/chromium.xml ../cleaners/google_chrome.xml msgid "" "Reset the search engine usage history and delete non-factory search engines, " "some of which are added automatically" msgstr "" "Puhasta otsingumootori kasutamise ajalugu ja kustuta otsingumootorid, " "millest mõned on lisatud automaatselt pärast brauseri paigaldust." #: ../cleaners/audacious.xml msgid "Audio player" msgstr "" #: ../cleaners/google_chrome.xml msgid "Session" msgstr "Seanss" #: ../cleaners/google_chrome.xml msgid "Delete the current and last sessions" msgstr "Kustuta praegune ja eelmine seanss" #: ../cleaners/x11.xml msgid "Windowing system" msgstr "" #: ../cleaners/wordpad.xml msgid "Word processor" msgstr "" #: ../cleaners/deepscan.xml msgid "Deep scan" msgstr "Täielik skänneering" #: ../cleaners/deepscan.xml msgid "Inspect the preview for any files you want to keep." msgstr "Vaata eelvaadet leidmaks faile, mida soovid säilitada." #: ../cleaners/deepscan.xml msgid "This option is slow." msgstr "See valik on aeglane." #: ../bleachbit.desktop msgid "Unnecessary file cleaner" msgstr "Mittevajalike failide puhastaja" #: ../bleachbit.desktop msgid "Free space and maintain privacy" msgstr "Vabasta ruumi ja säilita privaatsus" #. TRANSLATORS: Parts of this file will be deleted #: ../bleachbit/Action.py:192 ../bleachbit/Action.py:205 #: ../bleachbit/Action.py:218 ../bleachbit/Action.py:231 #: ../bleachbit/Action.py:244 ../bleachbit/Command.py:181 #: ../bleachbit/Command.py:211 msgid "Clean file" msgstr "Puhasta fail" #. TRANSLATORS: this is the context menu #: ../bleachbit/Action.py:308 ../bleachbit/GUI.py:578 msgid "Clean" msgstr "Puhasta" #: ../bleachbit/Cleaner.py:196 msgid "Crash reports" msgstr "Veaaruanded" #: ../bleachbit/Cleaner.py:203 msgid "Session restore" msgstr "Seansi taastamine" #: ../bleachbit/Cleaner.py:204 msgid "Loads the initial session after the browser closes or crashes" msgstr "Laeb esialgse seisundi pärast brauseri sulgumist või kokku jooksmist" #: ../bleachbit/Cleaner.py:206 msgid "Site preferences" msgstr "Saidi eelistused" #: ../bleachbit/Cleaner.py:206 msgid "Settings for individual sites" msgstr "Seaded igale veebilehele eraldi" #. TRANSLATORS: desktop entries are .desktop files in Linux tha #. make up the application menu (the menu that shows BleachBit, #. Firefox, and others. The .desktop files also associate file #. types, so clicking on an .html file in Nautilus brings up #. Firefox. #. More information: #. http://standards.freedesktop.org/menu-spec/latest/index.html#introduction #: ../bleachbit/Cleaner.py:452 msgid "Broken desktop files" msgstr "Katkised töölauafailid" #: ../bleachbit/Cleaner.py:453 msgid "Delete broken application menu entries and file associations" msgstr "Kustuta rakenduste katkised menüükirjed ja failiseosed" #. TRANSLATORS: Localizations are files supporting specific #. languages, so applications appear in Spanish, etc. #: ../bleachbit/Cleaner.py:457 msgid "Localizations" msgstr "Keeletoetus" #: ../bleachbit/Cleaner.py:458 msgid "Delete files for unwanted languages" msgstr "Kustuta ebavajalikud keelefailid" #: ../bleachbit/Cleaner.py:460 msgid "Configure this option in the preferences." msgstr "Seadista seda valikut eelistustes." #: ../bleachbit/Cleaner.py:466 msgid "Rotated logs" msgstr "Vananenud logid" #: ../bleachbit/Cleaner.py:466 msgid "Delete old system logs" msgstr "Kustuta vanad süsteemilogid" #: ../bleachbit/Cleaner.py:469 msgid "Trash" msgstr "Prügikast" #: ../bleachbit/Cleaner.py:469 msgid "Empty the trash" msgstr "Tühjenda prügikast" #: ../bleachbit/Cleaner.py:475 ../bleachbit/Cleaner.py:629 #: ../bleachbit/Worker.py:169 msgid "Memory" msgstr "Mälu" #. TRANSLATORS: 'free' means 'unallocated' #: ../bleachbit/Cleaner.py:477 msgid "Wipe the swap and free memory" msgstr "Puhasta saalealalt ja kasutamata mälust" #: ../bleachbit/Cleaner.py:479 msgid "This option is experimental and may cause system problems." msgstr "See valik on katsetamisel ja võib põhjustada süsteemis probleeme." #: ../bleachbit/Cleaner.py:487 msgid "Memory dump" msgstr "Mälutõmmis" #: ../bleachbit/Cleaner.py:487 msgid "Delete the file memory.dmp" msgstr "Kustuta memory.dmp fail" #. TRANSLATORS: Prefetch is Microsoft Windows jargon. #: ../bleachbit/Cleaner.py:490 msgid "Prefetch" msgstr "Eelhange" #: ../bleachbit/Cleaner.py:492 msgid "Recycle bin" msgstr "Prügikast" #: ../bleachbit/Cleaner.py:492 msgid "Empty the recycle bin" msgstr "Tühjenda prügikast" #. TRANSLATORS: 'Update' is a noun, and 'Update uninstallers' is an option to delete #. the uninstallers for software updates. #: ../bleachbit/Cleaner.py:495 msgid "Update uninstallers" msgstr "Uuenda eemaldusprogrammid" #: ../bleachbit/Cleaner.py:496 msgid "" "Delete uninstallers for Microsoft updates including hotfixes, service packs, " "and Internet Explorer updates" msgstr "" "Kustuta Microsofti uuenduste eemaldajad, sealhulgas käigultparanduste, " "hoolduspakettide ja Internet Exploreri uuenduste eemaldajad" #: ../bleachbit/Cleaner.py:503 ../bleachbit/Cleaner.py:718 msgid "Clipboard" msgstr "Lõikelaud" #: ../bleachbit/Cleaner.py:504 msgid "" "The desktop environment's clipboard used for copy and paste operations" msgstr "" "Lõikepuhvrit kasutatakse töölauakeskkondade kopeerimise ja kleepimise " "toimingutel" #. TRANSLATORS: "Custom" is an option allowing the user to specify which #. files and folders will be erased. #: ../bleachbit/Cleaner.py:511 ../bleachbit/GuiPreferences.py:63 msgid "Custom" msgstr "Kohandatud" #: ../bleachbit/Cleaner.py:512 msgid "Delete user-specified files and folders" msgstr "Kustuta kasutaja määratud failid ja kaustad" #. TRANSLATORS: 'free' means 'unallocated' #: ../bleachbit/Cleaner.py:514 msgid "Free disk space" msgstr "Jaotamata kettaruumi suurus" #. TRANSLATORS: 'free' means 'unallocated' #: ../bleachbit/Cleaner.py:516 msgid "Overwrite free disk space to hide deleted files" msgstr "Kirjuta üle vaba kettaruum, et peita kustutatud failid" #: ../bleachbit/Cleaner.py:517 msgid "This option is very slow." msgstr "See valik on väga aeglane." #: ../bleachbit/Cleaner.py:522 msgid "The system in general" msgstr "Süsteem üldiselt" #: ../bleachbit/Cleaner.py:528 ../bleachbit/Cleaner.py:824 msgid "System" msgstr "Süsteem" #. TRANSLATORS: 'Free' means 'unallocated.' #. %s expands to a path such as C:\ or /tmp/ #: ../bleachbit/Cleaner.py:726 ../bleachbit/Cleaner.py:855 #, python-format msgid "Overwrite free disk space %s" msgstr "Kirjuta üle vaba kettaruum %s" #. TRANSLATORS: %s expands to a drive letter such as C:\ or D:\ #: ../bleachbit/Cleaner.py:753 #, python-format msgid "Recycle bin %s" msgstr "Prügikast kettal %s" #: ../bleachbit/CLI.py:107 #, python-format msgid "not a valid cleaner: %s" msgstr "pole ehtne puhastaja: %s" #. TRANSLATORS: This is the command line usage. Don't translate #. %prog, but do translate usage, options, cleaner, and option. #. More information about the command line is here #. http://bleachbit.sourceforge.net/documentation/command-line #: ../bleachbit/CLI.py:134 msgid "usage: %prog [options] cleaner.option1 cleaner.option2" msgstr "kasutus: %prog [valikud] puhastaja.valik1 puhastaja.valik2" #: ../bleachbit/CLI.py:137 msgid "list cleaners" msgstr "puhastajate nimekiri" #. TRANSLATORS: predefined cleaners are for applications, such as Firefox and Flash. #. This is different than cleaning an arbitrary file, such as a #. spreadsheet on the desktop. #: ../bleachbit/CLI.py:142 msgid "run cleaners to delete files and make other permanent changes" msgstr "" #: ../bleachbit/CLI.py:144 msgid "shred specific files or folders" msgstr "" #: ../bleachbit/CLI.py:146 msgid "show system information" msgstr "näita süsteemi infot" #: ../bleachbit/CLI.py:148 msgid "launch the graphical interface" msgstr "Käivita graafiline liides" #: ../bleachbit/CLI.py:150 msgid "do not prompt for administrator privileges" msgstr "ei küsi administraatoriõigusi" #: ../bleachbit/CLI.py:155 msgid "preview files to be deleted and other changes" msgstr "kustutavate failide ja teiste püsivate muutuste eelvaade" #: ../bleachbit/CLI.py:157 msgid "use options set in the graphical interface" msgstr "kasutatakse kasutajaliideses sätestatud seadeid" #: ../bleachbit/CLI.py:160 msgid "update winapp2.ini, if a new version is available" msgstr "" #: ../bleachbit/CLI.py:162 msgid "output version information and exit" msgstr "väljastab versiooniteabe ja väljub" #: ../bleachbit/CLI.py:164 msgid "overwrite files to hide contents" msgstr "failide ülekirjutamine sisu peitmiseks" #. TRANSLATORS: This is the label in the log indicating was #. skipped because it matches the whitelist #: ../bleachbit/Command.py:44 msgid "Skip" msgstr "Eiratud" #. TRANSLATORS: This is the label in the log indicating will be #. deleted (for previews) or was actually deleted #: ../bleachbit/Command.py:70 msgid "Delete" msgstr "Kustutatakse" #. TRANSLATORS: The file will be deleted when the #. system reboots #: ../bleachbit/Command.py:91 msgid "Mark for deletion" msgstr "Märgi kustutamiseks" #. TRANSLATORS: The file will be truncated to 0 bytes in length #: ../bleachbit/Command.py:247 msgid "Truncate" msgstr "Kärbi" #: ../bleachbit/Command.py:286 msgid "Delete registry key" msgstr "Kustuta registrivõti" #: ../bleachbit/GuiBasic.py:112 msgid "Delete confirmation" msgstr "Kustutamise kinnitus" #: ../bleachbit/GuiBasic.py:122 msgid "" "Are you sure you want to permanently delete files according to the selected " "operations? The actual files that will be deleted may have changed since " "you ran the preview." msgstr "" "Oled sa kindel, et soovid jäädavalt kustutada valitud operatsioonide " "mõjutatavad failid? Tegelikud kustutavad failid võivad olla muutunud alates " "eelvaatest." #: ../bleachbit/GuiBasic.py:125 msgid "Are you sure you want to permanently delete these files?" msgstr "Oled sa kindel, et soovid need failid püsivalt kustutada?" #: ../bleachbit/GuiBasic.py:162 #, python-format msgid "" "Because you are running as root, please manually open this link in a web " "browser:\n" "%s" msgstr "" "Kuna sa töötad administraatorina, palun ava see link veebibrauseris:\n" "%s" #. TRANSLATORS: %s expands to bleachbit.sourceforge.net or similar #: ../bleachbit/GuiBasic.py:174 #, python-format msgid "Open web browser to %s?" msgstr "Kas avada veebibrauseris: %s?" #: ../bleachbit/GuiPreferences.py:55 ../bleachbit/GUI.py:633 msgid "Preferences" msgstr "Eelistused" #: ../bleachbit/GuiPreferences.py:61 msgid "General" msgstr "Üldine" #: ../bleachbit/GuiPreferences.py:64 msgid "Drives" msgstr "Kettad" #: ../bleachbit/GuiPreferences.py:67 msgid "Languages" msgstr "Keeled" #: ../bleachbit/GuiPreferences.py:69 msgid "Whitelist" msgstr "Lubatud nimekiri" #: ../bleachbit/GuiPreferences.py:114 msgid "Check periodically for software updates via the Internet" msgstr "Kontrolli internetist perioodiliselt tarkvara uuendusi" #: ../bleachbit/GuiPreferences.py:119 msgid "" "If an update is found, you will be given the option to view information " "about it. Then, you may manually download and install the update." msgstr "" "Kui uuendus on leitud, kuvatakse valik näitamaks infot selle kohta. Siis " "võite uuenduse alla laadida ja paigaldada uuenduse." #: ../bleachbit/GuiPreferences.py:125 msgid "Check for new beta releases" msgstr "Kontrolli uusi beta väljalaskeid" #: ../bleachbit/GuiPreferences.py:134 msgid "Download and update cleaners from community (winapp2.ini)" msgstr "" "Lae alla ja uuenda kogukonna poolt pakutavaid puhastajaid (winapp2.ini)" #. TRANSLATORS: This means to hide cleaners which would do #. nothing. For example, if Firefox were never used on #. this system, this option would hide Firefox to simplify #. the list of cleaners. #: ../bleachbit/GuiPreferences.py:148 msgid "Hide irrelevant cleaners" msgstr "" #. TRANSLATORS: Overwriting is the same as shredding. It is a way #. to prevent recovery of the data. You could also translate #. 'Shred files to prevent recovery.' #: ../bleachbit/GuiPreferences.py:156 msgid "Overwrite files to hide contents" msgstr "Kirjuta üle faile, et peita sisu" #: ../bleachbit/GuiPreferences.py:160 msgid "" "Overwriting is ineffective on some file systems and with certain BleachBit " "operations. Overwriting is significantly slower." msgstr "" "Ülekirjutamine on mõne failisüsteemiga ning teatavate BleachBiti " "toimingutega ebaefektiivne. Ülekirjutamine on tunduvalt aeglasem." #: ../bleachbit/GuiPreferences.py:163 msgid "Start BleachBit with computer" msgstr "Käivita BleachBit arvuti käivitusel" #: ../bleachbit/GuiPreferences.py:169 msgid "Exit after cleaning" msgstr "" #: ../bleachbit/GuiPreferences.py:175 msgid "Confirm before delete" msgstr "" #: ../bleachbit/GuiPreferences.py:188 ../bleachbit/GuiPreferences.py:319 #: ../bleachbit/GuiPreferences.py:360 ../bleachbit/GUI.py:540 msgid "Choose a folder" msgstr "Kataloogi valimine" #: ../bleachbit/GuiPreferences.py:212 msgid "" "Choose a writable folder for each drive for which to overwrite free space." msgstr "" "Vali kirjutatav kaust iga ketta jaoks, millel sa tahad vaba ruumi ümber " "kirjutada." #. TRANSLATORS: In the preferences dialog, this button adds a path to #. the list of paths #: ../bleachbit/GuiPreferences.py:234 msgctxt "button" msgid "Add" msgstr "Lisa" #. TRANSLATORS: In the preferences dialog, this button removes a path #. from the list of paths #: ../bleachbit/GuiPreferences.py:238 ../bleachbit/GuiPreferences.py:451 msgctxt "button" msgid "Remove" msgstr "Eemalda" #: ../bleachbit/GuiPreferences.py:263 msgid "All languages will be deleted except those checked." msgstr "Kõik keeled kustutatakse väljaarvatud need, mis on märgitud." #: ../bleachbit/GuiPreferences.py:281 msgid "Preserve" msgstr "Hoia" #: ../bleachbit/GuiPreferences.py:285 msgid "Code" msgstr "Kood" #: ../bleachbit/GuiPreferences.py:289 ../bleachbit/GUI.py:130 msgid "Name" msgstr "Nimi" #: ../bleachbit/GuiPreferences.py:306 ../bleachbit/GuiPreferences.py:347 msgid "Choose a file" msgstr "Vali fail" #: ../bleachbit/GuiPreferences.py:313 ../bleachbit/GuiPreferences.py:354 #: ../bleachbit/GuiPreferences.py:398 msgid "File" msgstr "Fail" #: ../bleachbit/GuiPreferences.py:327 ../bleachbit/GuiPreferences.py:368 #: ../bleachbit/GuiPreferences.py:400 msgid "Folder" msgstr "Kaust" #: ../bleachbit/GuiPreferences.py:410 msgid "Theses paths will not be deleted or modified." msgstr "Neid asukohti ei kustutata ega muudeta." #: ../bleachbit/GuiPreferences.py:413 msgid "These locations can be selected for deletion." msgstr "Neid kohti saab valida kustutamiseks." #: ../bleachbit/GuiPreferences.py:421 msgid "Type" msgstr "Tüüp" #. TRANSLATORS: In the tree view "Path" is used generically to refer to a #. file, a folder, or a pattern describing either #: ../bleachbit/GuiPreferences.py:427 msgid "Path" msgstr "Asukoht" #: ../bleachbit/GuiPreferences.py:439 msgctxt "button" msgid "Add file" msgstr "Lisa fail" #: ../bleachbit/GuiPreferences.py:445 msgctxt "button" msgid "Add folder" msgstr "Lisa kaust" #: ../bleachbit/GUI.py:138 msgid "Active" msgstr "Aktiivne" #. TRANSLATORS: %(cleaner) may be Firefox, System, etc. #. %(option) may be cache, logs, cookies, etc. #. %(warning) may be 'This option is really slow' #: ../bleachbit/GUI.py:169 #, python-format msgid "" "Warning regarding %(cleaner)s - %(option)s:\n" "\n" "%(warning)s" msgstr "" "Hoiatus %(cleaner)s - %(option)s:\n" "\n" "%(warning)s" #: ../bleachbit/GUI.py:336 msgid "You must select an operation" msgstr "Peate valima tegevuse" #: ../bleachbit/GUI.py:357 ../bleachbit/GUI.py:379 msgid "Done." msgstr "Valmis." #: ../bleachbit/GUI.py:392 msgid "Program to clean unnecessary files" msgstr "Programm mittevajalike failide puhastamiseks" #: ../bleachbit/GUI.py:398 msgid "" "GNU General Public License version 3 or later.\n" "See http://www.gnu.org/licenses/gpl-3.0.txt" msgstr "" "GNU General Public License versioon 3 või uuem.\n" "Vt http://www.gnu.org/licenses/gpl-3.0.txt" #. TRANSLATORS: Maintain the names of translators here. #. Launchpad does this automatically for translations #. typed in Launchpad. This is a special string shown #. in the 'About' box. #: ../bleachbit/GUI.py:404 msgid "translator-credits" msgstr "" "Launchpad Contributions:\n" " Jalakas https://launchpad.net/~jalakas\n" " bushido https://launchpad.net/~olav-magi\n" " olavi tohver https://launchpad.net/~olts16" #: ../bleachbit/GUI.py:416 msgid "System information" msgstr "Süsteemiinfo" #: ../bleachbit/GUI.py:489 msgid "Choose files to shred" msgstr "Vali failid hävitamiseks" #: ../bleachbit/GUI.py:492 msgid "Choose folder to shred" msgstr "Vali kaust hävitamiseks" #. TRANSLATORS: this is the context menu #: ../bleachbit/GUI.py:573 msgid "Preview" msgstr "Eelvaade" #: ../bleachbit/GUI.py:621 msgid "_Shred Files" msgstr "Hävita _fail" #: ../bleachbit/GUI.py:623 msgid "Sh_red Folders" msgstr "Hävita _kaust" #: ../bleachbit/GUI.py:625 msgid "_Wipe Free Space" msgstr "Puhasta vaba kettaruum" #: ../bleachbit/GUI.py:627 msgid "S_hred Settings and Quit" msgstr "Hävita _seaded ja välju" #: ../bleachbit/GUI.py:629 msgid "_Quit" msgstr "_Välju" #: ../bleachbit/GUI.py:631 msgid "_File" msgstr "_Fail" #: ../bleachbit/GUI.py:634 msgid "_Edit" msgstr "_Muuda" #: ../bleachbit/GUI.py:635 msgid "Help Contents" msgstr "Abiteabe sisukord" #: ../bleachbit/GUI.py:638 msgid "_Release Notes" msgstr "_Väljalaske märkused" #: ../bleachbit/GUI.py:641 msgid "_System Information" msgstr "_Süsteemi info" #: ../bleachbit/GUI.py:644 msgid "_About" msgstr "_Programmist lähemalt" #: ../bleachbit/GUI.py:645 msgid "_Help" msgstr "_Abi" #: ../bleachbit/GUI.py:670 msgctxt "button" msgid "Preview" msgstr "Eelvaade" #: ../bleachbit/GUI.py:675 msgid "Preview files in the selected operations (without deleting any files)" msgstr "" "Valitud toimingutest mõjutatud failide eelvaade (ilma ühtegi faili " "kustutamata)" #: ../bleachbit/GUI.py:685 msgctxt "button" msgid "Clean" msgstr "Puhasta" #: ../bleachbit/GUI.py:689 msgid "Clean files in the selected operations" msgstr "Valitud toimingutega kustutatakse määratud failid" #: ../bleachbit/GUI.py:779 msgid "Error when checking for updates: " msgstr "Viga uuenduste kontrollimisel: " #: ../bleachbit/GUI.py:809 msgid "" "Error loading the SQLite module: the antivirus software may be blocking it." msgstr "" "Viga SQLite mooduli laadimisel: seda võib blokeerida viirusetõrjetarkvara." #: ../bleachbit/GUI.py:812 msgid "" "You are running BleachBit with administrative privileges for cleaning shared " "parts of the system, and references to the user profile folder will clean " "only the root account." msgstr "" #: ../bleachbit/RecognizeCleanerML.py:57 msgid "Security warning" msgstr "Turvahoiatus" #: ../bleachbit/RecognizeCleanerML.py:70 msgid "" "These cleaner definitions are new or have changed. Malicious definitions can " "damage your system. If you do not trust these changes, delete the files or " "quit." msgstr "" "Need puhastaja määratlused on uued või on muutunud. Pahatahtlikud " "määratlused võivad kahjustada teie süsteemi. Kui te neid muudatusi ei " "usalda, kustutage need failid või väljuge." #: ../bleachbit/RecognizeCleanerML.py:85 msgctxt "column_label" msgid "Delete" msgstr "Kustuta" #: ../bleachbit/RecognizeCleanerML.py:90 msgctxt "column_label" msgid "Filename" msgstr "Failinimi" #: ../bleachbit/Unix.py:383 ../bleachbit/Unix.py:413 ../bleachbit/Unix.py:603 #, python-format msgid "Executable not found: %s" msgstr "Käivitatavat ei leitud: %s" #. TRANSLATORS: %s expands to a name such as 'Firefox' or 'System'. #: ../bleachbit/Unix.py:600 ../bleachbit/Worker.py:128 #, python-format msgid "" "%s cannot be cleaned because it is currently running. Close it, and try " "again." msgstr "" "Rakendust %s ei saa hetkel puhastada, sest see töötab hetkel. Sulge see ja " "proovi uuesti." #: ../bleachbit/Update.py:76 msgid "New winapp2.ini was downloaded." msgstr "Uus winapp2.ini on allalaetud." #: ../bleachbit/Update.py:121 msgid "Update BleachBit" msgstr "Uuenda BleachBit" #: ../bleachbit/Update.py:126 msgid "A new version is available." msgstr "Uus versioon on saadaval." #. TRANSLATORS: %s expands to version such as '0.8.4' or '0.8.5beta' or #. similar #: ../bleachbit/Update.py:135 #, python-format msgid "Update to version %s" msgstr "Uuenda versioonile %s" #. TRANSLATORS: This is cleaner name for cleaners imported from winapp2.ini #: ../bleachbit/Winapp.py:44 msgid "Applications" msgstr "Rakendused" #. TRANSLATORS: This is cleaner name for cleaners imported #. from winapp2.ini #: ../bleachbit/Winapp.py:47 msgid "Internet" msgstr "Internet" #. TRANSLATORS: This is cleaner name for cleaners imported #. from winapp2.ini #: ../bleachbit/Winapp.py:50 msgid "Multimedia" msgstr "Multimeedia" #. TRANSLATORS: This is cleaner name for cleaners imported #. from winapp2.ini #: ../bleachbit/Winapp.py:53 msgid "Utilities" msgstr "Tarvikud" #: ../bleachbit/Winapp.py:68 msgid "Games" msgstr "Mängud" #: ../bleachbit/Winapp.py:155 msgid "Imported from winapp2.ini" msgstr "Imporditud winapp2.ini-st" #. TRANSLATORS: This indicates an error. The special keyword #. %(operation)s will be replaced by 'firefox' or 'opera' or #. some other cleaner ID. The special keyword %(msg)s will be #. replaced by a message such as 'Permission denied.' #: ../bleachbit/Worker.py:71 #, python-format msgid "Exception while running operation '%(operation)s': '%(msg)s'" msgstr "Probleem rakenduse '%(operation)s' töötamise ajal : '%(msg)s'" #. TRANSLATORS: 'free' means 'unallocated' #: ../bleachbit/Worker.py:167 msgid "Please wait. Wiping free disk space." msgstr "Palun oota. Puhastatakse vaba kettaruumi." #. TRANSLATORS: %s is replaced with Firefox, System, etc. #: ../bleachbit/Worker.py:169 ../bleachbit/Worker.py:308 #, python-format msgid "Please wait. Cleaning %s." msgstr "Palun oota. Toimub rakenduse %s puhastamine." #: ../bleachbit/Worker.py:184 msgid "Please wait. Wiping file system metadata." msgstr "" #: ../bleachbit/Worker.py:187 msgid "Please wait. Cleaning up after wiping file system metadata." msgstr "" #: ../bleachbit/Worker.py:190 #, python-format msgid "About %d minute remaining." msgid_plural "About %d minutes remaining." msgstr[0] "Umbes %d minut jäänud." msgstr[1] "Umbes %d minutit jäänud" #. TRANSLATORS: This refers to disk space that was #. really recovered (in other words, not a preview) #: ../bleachbit/Worker.py:247 #, python-format msgid "Disk space recovered: %s" msgstr "Kettaruumi taastamise suurus: %s" #. TRANSLATORS: This refers to a preview (no real #. changes were made yet) #: ../bleachbit/Worker.py:251 #, python-format msgid "Disk space to be recovered: %s" msgstr "Kettaruum, mida taastatakse: %s" #. TRANSLATORS: This refers to the number of files really #. deleted (in other words, not a preview). #: ../bleachbit/Worker.py:256 #, python-format msgid "Files deleted: %d" msgstr "Faile kustutati: %d" #. TRANSLATORS: This refers to the number of files that #. would be deleted (in other words, simply a preview). #: ../bleachbit/Worker.py:260 #, python-format msgid "Files to be deleted: %d" msgstr "Kustutatavad failid: %d" #: ../bleachbit/Worker.py:263 #, python-format msgid "Special operations: %d" msgstr "Eritoiminguid: %d" #: ../bleachbit/Worker.py:266 #, python-format msgid "Errors: %d" msgstr "Vead: %d" #. TRANSLATORS: The "deep scan" feature searches over broad #. areas of the file system such as the user's whole home directory #. or all the system executables. #: ../bleachbit/Worker.py:281 msgid "Please wait. Running deep scan." msgstr "Palun oota. Teostatakse põhjalikku otsingut." #. TRANSLATORS: %s is replaced with Firefox, System, etc. #: ../bleachbit/Worker.py:311 #, python-format msgid "Please wait. Previewing %s." msgstr "Palun oota. Kuvan %s -i eelvaadet." bleachbit-2.0/po/lv.po0000644000175000017500000010264713245436307013012 0ustar hlehle# Latvian translation for bleachbit # Copyright (c) 2014 Rosetta Contributors and Canonical Ltd 2014 # This file is distributed under the same license as the bleachbit package. # FIRST AUTHOR , 2014. # msgid "" msgstr "" "Project-Id-Version: bleachbit\n" "Report-Msgid-Bugs-To: FULL NAME \n" "POT-Creation-Date: 2014-08-20 21:15-0600\n" "PO-Revision-Date: 2014-08-21 10:41+0000\n" "Last-Translator: Jānis-Marks Gailis \n" "Language-Team: Latvian \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=3; plural=n%10==1 && n%100!=11 ? 0 : n != 0 ? 1 : 2;\n" "X-Launchpad-Export-Date: 2014-08-23 04:48+0000\n" "X-Generator: Launchpad (build 17163)\n" #: ../cleaners/mc.xml ../cleaners/tortoisesvn.xml ../cleaners/vim.xml #: ../cleaners/safari.xml ../cleaners/links2.xml ../cleaners/seamonkey.xml #: ../cleaners/realplayer.xml ../cleaners/windows_defender.xml #: ../cleaners/d4x.xml ../cleaners/sqlite3.xml #: ../cleaners/internet_explorer.xml ../cleaners/libreoffice.xml #: ../cleaners/easytag.xml ../cleaners/bash.xml ../cleaners/nautilus.xml #: ../cleaners/octave.xml ../cleaners/elinks.xml ../cleaners/chromium.xml #: ../cleaners/google_chrome.xml msgid "History" msgstr "Vēsture" #: ../cleaners/mc.xml ../cleaners/tortoisesvn.xml ../cleaners/links2.xml #: ../cleaners/realplayer.xml ../cleaners/d4x.xml ../cleaners/libreoffice.xml #: ../cleaners/easytag.xml ../cleaners/nautilus.xml ../cleaners/gnome.xml #: ../bleachbit/Cleaner.py:329 ../bleachbit/Cleaner.py:403 #: ../bleachbit/Cleaner.py:412 msgid "Delete the usage history" msgstr "Dzēst lietošanas vēsturi" #: ../cleaners/gpodder.xml ../cleaners/hippo_opensim_viewer.xml #: ../cleaners/thumbnails.xml ../cleaners/safari.xml #: ../cleaners/transmission.xml ../cleaners/emesene.xml #: ../cleaners/liferea.xml ../cleaners/seamonkey.xml ../cleaners/vuze.xml #: ../cleaners/yahoo_messenger.xml ../cleaners/pidgin.xml #: ../cleaners/adobe_reader.xml ../cleaners/evolution.xml #: ../cleaners/tremulous.xml ../cleaners/libreoffice.xml ../cleaners/xine.xml #: ../cleaners/nexuiz.xml ../cleaners/exaile.xml ../cleaners/opera.xml #: ../cleaners/amsn.xml ../cleaners/gftp.xml ../cleaners/miro.xml #: ../cleaners/beagle.xml ../cleaners/kde.xml ../cleaners/epiphany.xml #: ../cleaners/flash.xml ../cleaners/secondlife_viewer.xml #: ../cleaners/java.xml ../cleaners/chromium.xml ../cleaners/audacious.xml #: ../cleaners/rhythmbox.xml ../cleaners/google_chrome.xml #: ../cleaners/thunderbird.xml ../bleachbit/Cleaner.py:187 #: ../bleachbit/Cleaner.py:350 ../bleachbit/Cleaner.py:435 msgid "Cache" msgstr "Kešatmiņa" #: ../cleaners/gpodder.xml ../cleaners/yum.xml #: ../cleaners/hippo_opensim_viewer.xml ../cleaners/thumbnails.xml #: ../cleaners/transmission.xml ../cleaners/windows_explorer.xml #: ../cleaners/liferea.xml ../cleaners/vuze.xml #: ../cleaners/yahoo_messenger.xml ../cleaners/pidgin.xml #: ../cleaners/adobe_reader.xml ../cleaners/evolution.xml #: ../cleaners/libreoffice.xml ../cleaners/apt.xml ../cleaners/xine.xml #: ../cleaners/nexuiz.xml ../cleaners/exaile.xml ../cleaners/amsn.xml #: ../cleaners/gftp.xml ../cleaners/miro.xml ../cleaners/beagle.xml #: ../cleaners/kde.xml ../cleaners/flash.xml ../cleaners/secondlife_viewer.xml #: ../cleaners/java.xml ../cleaners/audacious.xml ../cleaners/rhythmbox.xml #: ../bleachbit/Cleaner.py:350 ../bleachbit/Cleaner.py:435 #: ../bleachbit/Cleaner.py:469 ../bleachbit/Cleaner.py:471 msgid "Delete the cache" msgstr "Dzēst kešatmiņu" #. TRANSLATORS: Vacuum is a verb. The term is jargon #. from the SQLite database. Microsoft Access uses #. the term 'Compact Database' (which you may translate #. instead). Another synonym is 'defragment.' #: ../cleaners/gpodder.xml ../cleaners/yum.xml ../cleaners/safari.xml #: ../cleaners/liferea.xml ../cleaners/chromium.xml #: ../cleaners/google_chrome.xml ../cleaners/thunderbird.xml #: ../bleachbit/Action.py:335 ../bleachbit/Cleaner.py:207 #: ../bleachbit/Cleaner.py:340 msgid "Vacuum" msgstr "" #: ../cleaners/gpodder.xml ../cleaners/yum.xml ../cleaners/safari.xml #: ../cleaners/liferea.xml ../cleaners/chromium.xml #: ../cleaners/google_chrome.xml ../cleaners/thunderbird.xml #: ../bleachbit/Cleaner.py:208 msgid "" "Clean database fragmentation to reduce space and improve speed without " "removing any data" msgstr "" #: ../cleaners/warzone2100.xml ../cleaners/hippo_opensim_viewer.xml #: ../cleaners/teamviewer.xml ../cleaners/realplayer.xml ../cleaners/vuze.xml #: ../cleaners/yahoo_messenger.xml ../cleaners/amule.xml #: ../cleaners/easytag.xml ../cleaners/exaile.xml ../cleaners/screenlets.xml #: ../cleaners/gftp.xml ../cleaners/miro.xml ../cleaners/audacious.xml #: ../bleachbit/Cleaner.py:466 msgid "Logs" msgstr "Žurnāls" #: ../cleaners/warzone2100.xml ../cleaners/hippo_opensim_viewer.xml #: ../cleaners/teamviewer.xml ../cleaners/realplayer.xml ../cleaners/vuze.xml #: ../cleaners/yahoo_messenger.xml ../cleaners/amule.xml #: ../cleaners/exaile.xml ../cleaners/screenlets.xml ../cleaners/gftp.xml #: ../cleaners/miro.xml ../cleaners/audacious.xml ../bleachbit/Cleaner.py:466 msgid "Delete the logs" msgstr "Dzēst žurnālus" #: ../cleaners/hippo_opensim_viewer.xml ../cleaners/gl-117.xml #: ../cleaners/tremulous.xml ../cleaners/nexuiz.xml #: ../cleaners/secondlife_viewer.xml msgid "Game" msgstr "Spēle" #: ../cleaners/thumbnails.xml ../cleaners/windows_explorer.xml msgid "Thumbnails" msgstr "Sīktēli" #: ../cleaners/vim.xml ../cleaners/gedit.xml msgid "Editor" msgstr "Redaktors" #: ../cleaners/vim.xml msgid "" "Delete ~/.viminfo which includes file history, command history, and buffers" msgstr "" #: ../cleaners/filezilla.xml ../cleaners/transmission.xml ../cleaners/vuze.xml #: ../cleaners/amule.xml ../cleaners/gftp.xml msgid "File transfer client" msgstr "" #: ../cleaners/filezilla.xml ../cleaners/paint.xml #: ../cleaners/windows_media_player.xml ../cleaners/windows_explorer.xml #: ../cleaners/teamviewer.xml ../cleaners/microsoft_office.xml #: ../cleaners/vlc.xml ../cleaners/adobe_reader.xml ../cleaners/winamp.xml #: ../cleaners/winzip.xml ../cleaners/winrar.xml ../cleaners/audacious.xml #: ../cleaners/wordpad.xml ../bleachbit/Cleaner.py:351 msgid "Most recently used" msgstr "Visbiežāk izmantots" #: ../cleaners/filezilla.xml ../cleaners/windows_explorer.xml #: ../cleaners/gwenview.xml ../cleaners/adobe_reader.xml ../cleaners/gedit.xml #: ../cleaners/kde.xml ../cleaners/audacious.xml ../bleachbit/Cleaner.py:352 #: ../bleachbit/Cleaner.py:449 msgid "Delete the list of recently used documents" msgstr "" #: ../cleaners/skype.xml ../cleaners/xchat.xml ../cleaners/emesene.xml #: ../cleaners/seamonkey.xml ../cleaners/yahoo_messenger.xml #: ../cleaners/pidgin.xml ../cleaners/amsn.xml msgid "Chat logs" msgstr "" #: ../cleaners/skype.xml ../cleaners/xchat.xml ../cleaners/emesene.xml #: ../cleaners/seamonkey.xml ../cleaners/yahoo_messenger.xml #: ../cleaners/pidgin.xml ../cleaners/amsn.xml msgid "Delete the chat logs" msgstr "" #: ../cleaners/xchat.xml ../cleaners/emesene.xml #: ../cleaners/yahoo_messenger.xml ../cleaners/pidgin.xml ../cleaners/amsn.xml msgid "Chat client" msgstr "" #: ../cleaners/safari.xml ../cleaners/links2.xml ../cleaners/seamonkey.xml #: ../cleaners/konqueror.xml ../cleaners/internet_explorer.xml #: ../cleaners/opera.xml ../cleaners/epiphany.xml ../cleaners/elinks.xml #: ../cleaners/chromium.xml ../cleaners/google_chrome.xml #: ../bleachbit/Cleaner.py:220 msgid "Web browser" msgstr "Tīmekļa pārlūks" #: ../cleaners/safari.xml ../cleaners/seamonkey.xml ../cleaners/opera.xml #: ../cleaners/epiphany.xml ../cleaners/chromium.xml #: ../cleaners/google_chrome.xml ../cleaners/thunderbird.xml #: ../bleachbit/Cleaner.py:188 msgid "Delete the web cache, which reduces time to display revisited pages" msgstr "" #: ../cleaners/safari.xml ../cleaners/liferea.xml ../cleaners/seamonkey.xml #: ../cleaners/realplayer.xml ../cleaners/konqueror.xml #: ../cleaners/internet_explorer.xml ../cleaners/opera.xml #: ../cleaners/epiphany.xml ../cleaners/flash.xml ../cleaners/silverlight.xml #: ../cleaners/chromium.xml ../cleaners/google_chrome.xml #: ../cleaners/thunderbird.xml ../bleachbit/Cleaner.py:189 msgid "Cookies" msgstr "Sīkdatnes" #: ../cleaners/safari.xml ../cleaners/liferea.xml ../cleaners/seamonkey.xml #: ../cleaners/realplayer.xml ../cleaners/konqueror.xml #: ../cleaners/internet_explorer.xml ../cleaners/opera.xml #: ../cleaners/epiphany.xml ../cleaners/flash.xml ../cleaners/silverlight.xml #: ../cleaners/chromium.xml ../cleaners/google_chrome.xml #: ../cleaners/thunderbird.xml ../bleachbit/Cleaner.py:190 msgid "" "Delete cookies, which contain information such as web site preferences, " "authentication, and tracking identification" msgstr "" #: ../cleaners/safari.xml ../cleaners/konqueror.xml #: ../cleaners/internet_explorer.xml ../cleaners/opera.xml #: ../bleachbit/Cleaner.py:206 msgid "List of visited web pages" msgstr "Apmeklēto mājaslapu saraksts" #: ../cleaners/paint.xml ../cleaners/windows_media_player.xml #: ../cleaners/windows_explorer.xml ../cleaners/teamviewer.xml #: ../cleaners/microsoft_office.xml ../cleaners/vlc.xml ../cleaners/winamp.xml #: ../cleaners/winzip.xml ../cleaners/winrar.xml ../cleaners/wordpad.xml msgid "Delete the most recently used list" msgstr "" #: ../cleaners/emesene.xml msgid "Delete the avatars and emoticons cache" msgstr "" #: ../cleaners/windows_explorer.xml ../cleaners/gwenview.xml #: ../cleaners/gedit.xml ../cleaners/kde.xml ../bleachbit/Cleaner.py:448 msgid "Recent documents list" msgstr "" #. In Windows 'Run' is the dialog in the Start menu #. In GNOME 'Run' is the dialog shown when typing ALT+F2' #: ../cleaners/windows_explorer.xml ../cleaners/gnome.xml msgid "Run" msgstr "Palaist" #: ../cleaners/windows_explorer.xml ../cleaners/opera.xml #: ../cleaners/gnome.xml ../cleaners/google_toolbar.xml msgid "Search history" msgstr "Meklēšanas vēsture" #: ../cleaners/windows_explorer.xml ../cleaners/opera.xml #: ../cleaners/gnome.xml ../cleaners/google_toolbar.xml msgid "Delete the search history" msgstr "" #: ../cleaners/gl-117.xml ../cleaners/microsoft_office.xml #: ../cleaners/beagle.xml ../cleaners/secondlife_viewer.xml #: ../cleaners/x11.xml msgid "Debug logs" msgstr "" #: ../cleaners/gl-117.xml ../cleaners/microsoft_office.xml #: ../cleaners/easytag.xml ../cleaners/beagle.xml #: ../cleaners/secondlife_viewer.xml ../cleaners/x11.xml msgid "Delete the debug logs" msgstr "" #: ../cleaners/google_earth.xml ../cleaners/winetricks.xml #: ../cleaners/vuze.xml ../cleaners/adobe_reader.xml ../cleaners/amule.xml #: ../cleaners/wine.xml ../cleaners/internet_explorer.xml ../cleaners/gimp.xml #: ../cleaners/kde.xml ../cleaners/deepscan.xml ../bleachbit/Cleaner.py:500 msgid "Temporary files" msgstr "Pagaidu datnes" #: ../cleaners/google_earth.xml ../cleaners/winetricks.xml #: ../cleaners/vuze.xml ../cleaners/adobe_reader.xml ../cleaners/amule.xml #: ../cleaners/wine.xml ../cleaners/internet_explorer.xml ../cleaners/gimp.xml #: ../cleaners/kde.xml ../cleaners/deepscan.xml ../bleachbit/Cleaner.py:500 msgid "Delete the temporary files" msgstr "Dzēst pagaidu datnes" #: ../cleaners/seamonkey.xml ../cleaners/opera.xml ../bleachbit/Cleaner.py:196 msgid "Download history" msgstr "Lejupielādēt vēsturi" #: ../cleaners/seamonkey.xml ../cleaners/opera.xml ../bleachbit/Cleaner.py:196 msgid "List of files downloaded" msgstr "" #: ../cleaners/seamonkey.xml msgid "Delete the list of visited web pages" msgstr "" #: ../cleaners/vuze.xml ../cleaners/deepscan.xml msgid "Backup files" msgstr "Dublēt datnes" #: ../cleaners/vuze.xml ../cleaners/deepscan.xml msgid "Delete the backup files" msgstr "Dzēst dublējuma datnes" #: ../cleaners/konqueror.xml ../cleaners/opera.xml ../cleaners/chromium.xml msgid "Current session" msgstr "" #: ../cleaners/konqueror.xml ../cleaners/opera.xml ../cleaners/chromium.xml msgid "Delete the current session" msgstr "" #: ../cleaners/konqueror.xml ../cleaners/opera.xml ../bleachbit/Cleaner.py:206 msgid "URL history" msgstr "URL vēsture" #: ../cleaners/microsoft_office.xml ../cleaners/libreoffice.xml #: ../bleachbit/Cleaner.py:364 msgid "Office suite" msgstr "" #: ../cleaners/windows_defender.xml ../cleaners/beagle.xml #: ../cleaners/thunderbird.xml ../cleaners/deepscan.xml #: ../bleachbit/Cleaner.py:192 msgid "Delete the files" msgstr "Dzēst datnes" #: ../cleaners/tremulous.xml msgid "Delete the list of game servers" msgstr "" #: ../cleaners/sqlite3.xml ../cleaners/bash.xml ../cleaners/octave.xml msgid "Delete the command history" msgstr "" #: ../cleaners/internet_explorer.xml ../cleaners/chromium.xml #: ../cleaners/google_chrome.xml ../bleachbit/Cleaner.py:197 msgid "Form history" msgstr "" #: ../cleaners/internet_explorer.xml ../bleachbit/Cleaner.py:198 msgid "A history of forms entered in web sites and in the Search bar" msgstr "" #: ../cleaners/easytag.xml msgid "Audio files tagger" msgstr "" #: ../cleaners/apt.xml msgid "Delete obsolete files" msgstr "" #: ../cleaners/apt.xml msgid "Package lists" msgstr "" #: ../cleaners/xine.xml ../cleaners/miro.xml ../cleaners/flash.xml msgid "Multimedia viewer" msgstr "" #: ../cleaners/recoll.xml ../cleaners/beagle.xml msgid "Search tool" msgstr "Meklēšanas rīks" #: ../cleaners/recoll.xml ../cleaners/beagle.xml ../cleaners/thunderbird.xml msgid "Index" msgstr "Satura rādītājs" #: ../cleaners/recoll.xml msgid "" "Delete the search index, a database of words and the files they contain" msgstr "" #: ../cleaners/exaile.xml msgid "Downloaded podcasts" msgstr "" #: ../cleaners/exaile.xml msgid "Delete downloaded podcasts" msgstr "" #. TRANSLATORS: DOM = Document Object Model. #: ../cleaners/opera.xml ../cleaners/chromium.xml #: ../cleaners/google_chrome.xml ../bleachbit/Cleaner.py:194 msgid "DOM Storage" msgstr "" #: ../cleaners/opera.xml ../cleaners/chromium.xml #: ../cleaners/google_chrome.xml ../bleachbit/Cleaner.py:194 msgid "Delete HTML5 cookies" msgstr "Dzēst HTML5 sīkdatnes" #: ../cleaners/nautilus.xml msgid "Custom folders will be reset." msgstr "" #: ../cleaners/screenlets.xml msgid "Widgets for the desktop" msgstr "" #: ../cleaners/epiphany.xml ../cleaners/chromium.xml #: ../cleaners/google_chrome.xml ../cleaners/thunderbird.xml #: ../bleachbit/Cleaner.py:203 msgid "Passwords" msgstr "Paroles" #: ../cleaners/epiphany.xml ../cleaners/chromium.xml #: ../cleaners/google_chrome.xml ../cleaners/thunderbird.xml #: ../bleachbit/Cleaner.py:204 msgid "" "A database of usernames and passwords as well as a list of sites that should " "not store passwords" msgstr "" #: ../cleaners/epiphany.xml ../cleaners/chromium.xml #: ../cleaners/google_chrome.xml ../cleaners/thunderbird.xml msgid "This option will delete your saved passwords." msgstr "" #: ../cleaners/epiphany.xml msgid "Places" msgstr "Vietas" #: ../cleaners/epiphany.xml msgid "" "A database of URLs including bookmarks, favicons, and a history of visited " "web sites" msgstr "" #: ../cleaners/epiphany.xml msgid "This option deletes all bookmarks." msgstr "" #: ../cleaners/elinks.xml msgid "Delete the cookies, visited URLs, and search history" msgstr "" #: ../cleaners/chromium.xml ../cleaners/google_chrome.xml msgid "A history of forms entered in web sites" msgstr "" #: ../cleaners/chromium.xml ../cleaners/google_chrome.xml msgid "" "Delete the history which includes visited sites, downloads, and thumbnails" msgstr "" #: ../cleaners/chromium.xml ../cleaners/google_chrome.xml msgid "Search engines" msgstr "Meklēšanas dziņi" #. 'Factory' means a search engine that is installed by default 'from the factory,' but this is different than a 'default search engine' https://lists.launchpad.net/launchpad-translators/msg00283.html #: ../cleaners/chromium.xml ../cleaners/google_chrome.xml msgid "" "Reset the search engine usage history and delete non-factory search engines, " "some of which are added automatically" msgstr "" #: ../cleaners/google_chrome.xml msgid "Session" msgstr "Sesija" #: ../cleaners/google_chrome.xml msgid "Delete the current and last sessions" msgstr "" #: ../cleaners/deepscan.xml msgid "Deep scan" msgstr "" #: ../cleaners/deepscan.xml msgid "Inspect the preview for any files you want to keep." msgstr "" #: ../cleaners/deepscan.xml msgid "This option is slow." msgstr "Šī opcija ir lēna" #: ../bleachbit.desktop msgid "Unnecessary file cleaner" msgstr "" #: ../bleachbit.desktop msgid "Free space and maintain privacy" msgstr "" #. TRANSLATORS: Parts of this file will be deleted #: ../bleachbit/Action.py:192 ../bleachbit/Action.py:205 #: ../bleachbit/Action.py:218 ../bleachbit/Action.py:231 #: ../bleachbit/Action.py:244 ../bleachbit/Command.py:181 #: ../bleachbit/Command.py:211 msgid "Clean file" msgstr "" #. TRANSLATORS: this is the context menu #: ../bleachbit/Action.py:308 ../bleachbit/GUI.py:566 msgid "Clean" msgstr "Tīrīt" #: ../bleachbit/Cleaner.py:192 msgid "Crash reports" msgstr "" #: ../bleachbit/Cleaner.py:199 msgid "Session restore" msgstr "" #: ../bleachbit/Cleaner.py:200 msgid "Loads the initial session after the browser closes or crashes" msgstr "" #: ../bleachbit/Cleaner.py:202 msgid "Site preferences" msgstr "" #: ../bleachbit/Cleaner.py:202 msgid "Settings for individual sites" msgstr "" #. TRANSLATORS: desktop entries are .desktop files in Linux tha #. make up the application menu (the menu that shows BleachBit, #. Firefox, and others. The .desktop files also associate file #. types, so clicking on an .html file in Nautilus brings up #. Firefox. #. More information: #. http://standards.freedesktop.org/menu-spec/latest/index.html#introduction #: ../bleachbit/Cleaner.py:433 msgid "Broken desktop files" msgstr "" #: ../bleachbit/Cleaner.py:434 msgid "Delete broken application menu entries and file associations" msgstr "" #. TRANSLATORS: Localizations are files supporting specific #. languages, so applications appear in Spanish, etc. #: ../bleachbit/Cleaner.py:438 msgid "Localizations" msgstr "Lokalizācijas" #: ../bleachbit/Cleaner.py:439 msgid "Delete files for unwanted languages" msgstr "" #: ../bleachbit/Cleaner.py:441 msgid "Configure this option in the preferences." msgstr "" #: ../bleachbit/Cleaner.py:447 msgid "Rotated logs" msgstr "" #: ../bleachbit/Cleaner.py:447 msgid "Delete old system logs" msgstr "" #: ../bleachbit/Cleaner.py:450 msgid "Trash" msgstr "" #: ../bleachbit/Cleaner.py:450 msgid "Empty the trash" msgstr "" #: ../bleachbit/Cleaner.py:456 ../bleachbit/Cleaner.py:608 #: ../bleachbit/Worker.py:169 msgid "Memory" msgstr "" #. TRANSLATORS: 'free' means 'unallocated' #: ../bleachbit/Cleaner.py:458 msgid "Wipe the swap and free memory" msgstr "" #: ../bleachbit/Cleaner.py:460 msgid "This option is experimental and may cause system problems." msgstr "" #: ../bleachbit/Cleaner.py:468 msgid "Memory dump" msgstr "" #: ../bleachbit/Cleaner.py:468 msgid "Delete the file memory.dmp" msgstr "" #. TRANSLATORS: Prefetch is Microsoft Windows jargon. #: ../bleachbit/Cleaner.py:471 msgid "Prefetch" msgstr "" #: ../bleachbit/Cleaner.py:473 msgid "Recycle bin" msgstr "" #: ../bleachbit/Cleaner.py:473 msgid "Empty the recycle bin" msgstr "" #. TRANSLATORS: 'Update' is a noun, and 'Update uninstallers' is an option to delete #. the uninstallers for software updates. #: ../bleachbit/Cleaner.py:476 msgid "Update uninstallers" msgstr "" #: ../bleachbit/Cleaner.py:477 msgid "" "Delete uninstallers for Microsoft updates including hotfixes, service packs, " "and Internet Explorer updates" msgstr "" #: ../bleachbit/Cleaner.py:484 ../bleachbit/Cleaner.py:697 msgid "Clipboard" msgstr "" #: ../bleachbit/Cleaner.py:485 msgid "" "The desktop environment's clipboard used for copy and paste operations" msgstr "" #. TRANSLATORS: "Custom" is an option allowing the user to specify which #. files and folders will be erased. #: ../bleachbit/Cleaner.py:492 ../bleachbit/GuiPreferences.py:61 msgid "Custom" msgstr "" #: ../bleachbit/Cleaner.py:493 msgid "Delete user-specified files and folders" msgstr "" #. TRANSLATORS: 'free' means 'unallocated' #: ../bleachbit/Cleaner.py:495 msgid "Free disk space" msgstr "" #. TRANSLATORS: 'free' means 'unallocated' #: ../bleachbit/Cleaner.py:497 msgid "Overwrite free disk space to hide deleted files" msgstr "" #: ../bleachbit/Cleaner.py:498 msgid "This option is very slow." msgstr "" #: ../bleachbit/Cleaner.py:503 msgid "The system in general" msgstr "" #: ../bleachbit/Cleaner.py:509 ../bleachbit/Cleaner.py:800 msgid "System" msgstr "" #. TRANSLATORS: 'Free' means 'unallocated.' #. %s expands to a path such as C:\ or /tmp/ #: ../bleachbit/Cleaner.py:705 ../bleachbit/Cleaner.py:831 #, python-format msgid "Overwrite free disk space %s" msgstr "" #. TRANSLATORS: %s expands to a drive letter such as C:\ or D:\ #: ../bleachbit/Cleaner.py:732 #, python-format msgid "Recycle bin %s" msgstr "" #: ../bleachbit/CLI.py:107 #, python-format msgid "not a valid cleaner: %s" msgstr "" #. TRANSLATORS: This is the command line usage. Don't translate #. %prog, but do translate usage, options, cleaner, and option. #. More information about the command line is here #. http://bleachbit.sourceforge.net/documentation/command-line #: ../bleachbit/CLI.py:134 msgid "usage: %prog [options] cleaner.option1 cleaner.option2" msgstr "" #: ../bleachbit/CLI.py:137 msgid "list cleaners" msgstr "" #. TRANSLATORS: predefined cleaners are for applications, such as Firefox and Flash. #. This is different than cleaning an arbitrary file, such as a #. spreadsheet on the desktop. #: ../bleachbit/CLI.py:142 msgid "run cleaners to delete files and make other permanent changes" msgstr "" #: ../bleachbit/CLI.py:144 msgid "shred specific files or folders" msgstr "" #: ../bleachbit/CLI.py:146 msgid "show system information" msgstr "" #: ../bleachbit/CLI.py:148 msgid "launch the graphical interface" msgstr "" #: ../bleachbit/CLI.py:150 msgid "do not prompt for administrator privileges" msgstr "" #: ../bleachbit/CLI.py:155 msgid "preview files to be deleted and other changes" msgstr "" #: ../bleachbit/CLI.py:157 msgid "use options set in the graphical interface" msgstr "" #: ../bleachbit/CLI.py:160 msgid "update winapp2.ini, if a new version is available" msgstr "" #: ../bleachbit/CLI.py:162 msgid "output version information and exit" msgstr "" #: ../bleachbit/CLI.py:164 msgid "overwrite files to hide contents" msgstr "" #. TRANSLATORS: This is the label in the log indicating was #. skipped because it matches the whitelist #: ../bleachbit/Command.py:44 msgid "Skip" msgstr "" #. TRANSLATORS: This is the label in the log indicating will be #. deleted (for previews) or was actually deleted #: ../bleachbit/Command.py:70 msgid "Delete" msgstr "" #. TRANSLATORS: The file will be deleted when the #. system reboots #: ../bleachbit/Command.py:91 msgid "Mark for deletion" msgstr "" #. TRANSLATORS: The file will be truncated to 0 bytes in length #: ../bleachbit/Command.py:247 msgid "Truncate" msgstr "" #: ../bleachbit/Command.py:286 msgid "Delete registry key" msgstr "" #: ../bleachbit/GuiBasic.py:112 msgid "Delete confirmation" msgstr "" #: ../bleachbit/GuiBasic.py:122 msgid "" "Are you sure you want to permanently delete files according to the selected " "operations? The actual files that will be deleted may have changed since " "you ran the preview." msgstr "" #: ../bleachbit/GuiBasic.py:125 msgid "Are you sure you want to permanently delete these files?" msgstr "" #: ../bleachbit/GuiBasic.py:162 #, python-format msgid "" "Because you are running as root, please manually open this link in a web " "browser:\n" "%s" msgstr "" #. TRANSLATORS: %s expands to bleachbit.sourceforge.net or similar #: ../bleachbit/GuiBasic.py:174 #, python-format msgid "Open web browser to %s?" msgstr "" #: ../bleachbit/GuiPreferences.py:53 ../bleachbit/GUI.py:621 msgid "Preferences" msgstr "" #: ../bleachbit/GuiPreferences.py:59 msgid "General" msgstr "" #: ../bleachbit/GuiPreferences.py:62 msgid "Drives" msgstr "" #: ../bleachbit/GuiPreferences.py:65 msgid "Languages" msgstr "" #: ../bleachbit/GuiPreferences.py:67 msgid "Whitelist" msgstr "" #: ../bleachbit/GuiPreferences.py:110 msgid "Check periodically for software updates via the Internet" msgstr "" #: ../bleachbit/GuiPreferences.py:115 msgid "" "If an update is found, you will be given the option to view information " "about it. Then, you may manually download and install the update." msgstr "" #: ../bleachbit/GuiPreferences.py:121 msgid "Check for new beta releases" msgstr "" #: ../bleachbit/GuiPreferences.py:130 msgid "Download and update cleaners from community (winapp2.ini)" msgstr "" #. TRANSLATORS: Overwriting is the same as shredding. It is a way #. to prevent recovery of the data. You could also translate #. 'Shred files to prevent recovery.' #: ../bleachbit/GuiPreferences.py:143 msgid "Overwrite files to hide contents" msgstr "" #: ../bleachbit/GuiPreferences.py:147 msgid "" "Overwriting is ineffective on some file systems and with certain BleachBit " "operations. Overwriting is significantly slower." msgstr "" #: ../bleachbit/GuiPreferences.py:150 msgid "Start BleachBit with computer" msgstr "" #: ../bleachbit/GuiPreferences.py:161 ../bleachbit/GuiPreferences.py:292 #: ../bleachbit/GuiPreferences.py:333 ../bleachbit/GUI.py:528 msgid "Choose a folder" msgstr "" #: ../bleachbit/GuiPreferences.py:185 msgid "" "Choose a writable folder for each drive for which to overwrite free space." msgstr "" #. TRANSLATORS: In the preferences dialog, this button adds a path to #. the list of paths #: ../bleachbit/GuiPreferences.py:207 msgctxt "button" msgid "Add" msgstr "" #. TRANSLATORS: In the preferences dialog, this button removes a path #. from the list of paths #: ../bleachbit/GuiPreferences.py:211 ../bleachbit/GuiPreferences.py:424 msgctxt "button" msgid "Remove" msgstr "" #: ../bleachbit/GuiPreferences.py:236 msgid "All languages will be deleted except those checked." msgstr "" #: ../bleachbit/GuiPreferences.py:254 msgid "Preserve" msgstr "" #: ../bleachbit/GuiPreferences.py:258 msgid "Code" msgstr "" #: ../bleachbit/GuiPreferences.py:262 ../bleachbit/GUI.py:130 msgid "Name" msgstr "" #: ../bleachbit/GuiPreferences.py:279 ../bleachbit/GuiPreferences.py:320 msgid "Choose a file" msgstr "" #: ../bleachbit/GuiPreferences.py:286 ../bleachbit/GuiPreferences.py:327 #: ../bleachbit/GuiPreferences.py:371 msgid "File" msgstr "" #: ../bleachbit/GuiPreferences.py:300 ../bleachbit/GuiPreferences.py:341 #: ../bleachbit/GuiPreferences.py:373 msgid "Folder" msgstr "" #: ../bleachbit/GuiPreferences.py:383 msgid "Theses paths will not be deleted or modified." msgstr "" #: ../bleachbit/GuiPreferences.py:386 msgid "These locations can be selected for deletion." msgstr "" #: ../bleachbit/GuiPreferences.py:394 msgid "Type" msgstr "" #. TRANSLATORS: In the tree view "Path" is used generically to refer to a #. file, a folder, or a pattern describing either #: ../bleachbit/GuiPreferences.py:400 msgid "Path" msgstr "" #: ../bleachbit/GuiPreferences.py:412 msgctxt "button" msgid "Add file" msgstr "" #: ../bleachbit/GuiPreferences.py:418 msgctxt "button" msgid "Add folder" msgstr "" #: ../bleachbit/GUI.py:138 msgid "Active" msgstr "" #. TRANSLATORS: %(cleaner) may be Firefox, System, etc. #. %(option) may be cache, logs, cookies, etc. #. %(warning) may be 'This option is really slow' #: ../bleachbit/GUI.py:169 #, python-format msgid "" "Warning regarding %(cleaner)s - %(option)s:\n" "\n" "%(warning)s" msgstr "" #: ../bleachbit/GUI.py:331 msgid "You must select an operation" msgstr "" #: ../bleachbit/GUI.py:352 ../bleachbit/GUI.py:367 msgid "Done." msgstr "" #: ../bleachbit/GUI.py:380 msgid "Program to clean unnecessary files" msgstr "" #: ../bleachbit/GUI.py:386 msgid "" "GNU General Public License version 3 or later.\n" "See http://www.gnu.org/licenses/gpl-3.0.txt" msgstr "" #. TRANSLATORS: Maintain the names of translators here. #. Launchpad does this automatically for translations #. typed in Launchpad. This is a special string shown #. in the 'About' box. #: ../bleachbit/GUI.py:392 msgid "translator-credits" msgstr "" "Launchpad Contributions:\n" " Jānis-Marks Gailis https://launchpad.net/~jeanmarc-gailis" #: ../bleachbit/GUI.py:404 msgid "System information" msgstr "" #: ../bleachbit/GUI.py:477 msgid "Choose files to shred" msgstr "" #: ../bleachbit/GUI.py:480 msgid "Choose folder to shred" msgstr "" #. TRANSLATORS: this is the context menu #: ../bleachbit/GUI.py:561 msgid "Preview" msgstr "" #: ../bleachbit/GUI.py:609 msgid "_Shred Files" msgstr "" #: ../bleachbit/GUI.py:611 msgid "Sh_red Folders" msgstr "" #: ../bleachbit/GUI.py:613 msgid "_Wipe Free Space" msgstr "" #: ../bleachbit/GUI.py:615 msgid "S_hred Settings and Quit" msgstr "" #: ../bleachbit/GUI.py:617 msgid "_Quit" msgstr "" #: ../bleachbit/GUI.py:619 msgid "_File" msgstr "" #: ../bleachbit/GUI.py:622 msgid "_Edit" msgstr "" #: ../bleachbit/GUI.py:623 msgid "Help Contents" msgstr "" #: ../bleachbit/GUI.py:626 msgid "_Release Notes" msgstr "" #: ../bleachbit/GUI.py:629 msgid "_System Information" msgstr "" #: ../bleachbit/GUI.py:632 msgid "_About" msgstr "" #: ../bleachbit/GUI.py:633 msgid "_Help" msgstr "" #: ../bleachbit/GUI.py:658 msgctxt "button" msgid "Preview" msgstr "" #: ../bleachbit/GUI.py:663 msgid "Preview files in the selected operations (without deleting any files)" msgstr "" #: ../bleachbit/GUI.py:673 msgctxt "button" msgid "Clean" msgstr "" #: ../bleachbit/GUI.py:677 msgid "Clean files in the selected operations" msgstr "" #: ../bleachbit/GUI.py:766 msgid "Error when checking for updates: " msgstr "" #: ../bleachbit/GUI.py:796 msgid "" "Error loading the SQLite module: the antivirus software may be blocking it." msgstr "" #: ../bleachbit/RecognizeCleanerML.py:57 msgid "Security warning" msgstr "" #: ../bleachbit/RecognizeCleanerML.py:70 msgid "" "These cleaner definitions are new or have changed. Malicious definitions can " "damage your system. If you do not trust these changes, delete the files or " "quit." msgstr "" #: ../bleachbit/RecognizeCleanerML.py:85 msgctxt "column_label" msgid "Delete" msgstr "" #: ../bleachbit/RecognizeCleanerML.py:90 msgctxt "column_label" msgid "Filename" msgstr "" #: ../bleachbit/Unix.py:382 ../bleachbit/Unix.py:412 ../bleachbit/Unix.py:595 #, python-format msgid "Executable not found: %s" msgstr "" #. TRANSLATORS: %s expands to a name such as 'Firefox' or 'System'. #: ../bleachbit/Unix.py:592 ../bleachbit/Worker.py:128 #, python-format msgid "" "%s cannot be cleaned because it is currently running. Close it, and try " "again." msgstr "" #: ../bleachbit/Update.py:72 msgid "New winapp2.ini was downloaded." msgstr "" #: ../bleachbit/Update.py:111 msgid "Update BleachBit" msgstr "" #: ../bleachbit/Update.py:116 msgid "A new version is available." msgstr "" #. TRANSLATORS: %s expands to version such as '0.8.4' or '0.8.5beta' or #. similar #: ../bleachbit/Update.py:125 #, python-format msgid "Update to version %s" msgstr "" #. TRANSLATORS: This is cleaner name for cleaners imported from winapp2.ini #: ../bleachbit/Winapp.py:44 msgid "Applications" msgstr "" #. TRANSLATORS: This is cleaner name for cleaners imported #. from winapp2.ini #: ../bleachbit/Winapp.py:47 msgid "Internet" msgstr "" #. TRANSLATORS: This is cleaner name for cleaners imported #. from winapp2.ini #: ../bleachbit/Winapp.py:50 msgid "Multimedia" msgstr "" #. TRANSLATORS: This is cleaner name for cleaners imported #. from winapp2.ini #: ../bleachbit/Winapp.py:53 msgid "Utilities" msgstr "" #: ../bleachbit/Winapp.py:68 msgid "Games" msgstr "" #: ../bleachbit/Winapp.py:155 msgid "Imported from winapp2.ini" msgstr "" #. TRANSLATORS: This indicates an error. The special keyword #. %(operation)s will be replaced by 'firefox' or 'opera' or #. some other cleaner ID. The special keyword %(msg)s will be #. replaced by a message such as 'Permission denied.' #: ../bleachbit/Worker.py:71 #, python-format msgid "Exception while running operation '%(operation)s': '%(msg)s'" msgstr "" #. TRANSLATORS: 'free' means 'unallocated' #: ../bleachbit/Worker.py:167 msgid "Please wait. Wiping free disk space." msgstr "" #. TRANSLATORS: %s is replaced with Firefox, System, etc. #: ../bleachbit/Worker.py:169 ../bleachbit/Worker.py:308 #, python-format msgid "Please wait. Cleaning %s." msgstr "" #: ../bleachbit/Worker.py:184 msgid "Please wait. Wiping file system metadata." msgstr "" #: ../bleachbit/Worker.py:187 msgid "Please wait. Cleaning up after wiping file system metadata." msgstr "" #: ../bleachbit/Worker.py:190 #, python-format msgid "About %d minute remaining." msgid_plural "About %d minutes remaining." msgstr[0] "" msgstr[1] "" #. TRANSLATORS: This refers to disk space that was #. really recovered (in other words, not a preview) #: ../bleachbit/Worker.py:247 #, python-format msgid "Disk space recovered: %s" msgstr "" #. TRANSLATORS: This refers to a preview (no real #. changes were made yet) #: ../bleachbit/Worker.py:251 #, python-format msgid "Disk space to be recovered: %s" msgstr "" #. TRANSLATORS: This refers to the number of files really #. deleted (in other words, not a preview). #: ../bleachbit/Worker.py:256 #, python-format msgid "Files deleted: %d" msgstr "" #. TRANSLATORS: This refers to the number of files that #. would be deleted (in other words, simply a preview). #: ../bleachbit/Worker.py:260 #, python-format msgid "Files to be deleted: %d" msgstr "" #: ../bleachbit/Worker.py:263 #, python-format msgid "Special operations: %d" msgstr "" #: ../bleachbit/Worker.py:266 #, python-format msgid "Errors: %d" msgstr "" #. TRANSLATORS: The "deep scan" feature searches over broad #. areas of the file system such as the user's whole home directory #. or all the system executables. #: ../bleachbit/Worker.py:281 msgid "Please wait. Running deep scan." msgstr "" #. TRANSLATORS: %s is replaced with Firefox, System, etc. #: ../bleachbit/Worker.py:311 #, python-format msgid "Please wait. Previewing %s." msgstr "" bleachbit-2.0/po/pl.po0000644000175000017500000013655213245436307013006 0ustar hlehle# BleachBit Polish transation. # Copyright (C) 2009 Andrew Ziem # This file is distributed under the same license as the BleachBit package. # Dariusz Jakoniuk . # s120801-translate , 2013. msgid "" msgstr "" "Project-Id-Version: \n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2017-02-11 11:12-0700\n" "PO-Revision-Date: 2017-09-09 14:15+0000\n" "Last-Translator: Kuba Niewiarowski \n" "Language-Team: s120801-translate\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=utf-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=3; plural=n==1 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 " "|| n%100>=20) ? 1 : 2;\n" "X-Launchpad-Export-Date: 2017-09-09 20:16+0000\n" "X-Generator: Launchpad (build 18449)\n" "X-Poedit-Country: POLAND\n" "Language: pl\n" "X-Poedit-Language: Polish\n" "X-Poedit-SourceCharset: utf-8\n" #: ../cleaners/mc.xml ../cleaners/tortoisesvn.xml ../cleaners/vim.xml #: ../cleaners/safari.xml ../cleaners/links2.xml ../cleaners/seamonkey.xml #: ../cleaners/realplayer.xml ../cleaners/windows_defender.xml #: ../cleaners/d4x.xml ../cleaners/sqlite3.xml #: ../cleaners/internet_explorer.xml ../cleaners/libreoffice.xml #: ../cleaners/easytag.xml ../cleaners/bash.xml ../cleaners/nautilus.xml #: ../cleaners/octave.xml ../cleaners/elinks.xml ../cleaners/chromium.xml #: ../cleaners/google_chrome.xml msgid "History" msgstr "Historia" #: ../cleaners/mc.xml ../cleaners/tortoisesvn.xml ../cleaners/links2.xml #: ../cleaners/realplayer.xml ../cleaners/d4x.xml ../cleaners/libreoffice.xml #: ../cleaners/easytag.xml ../cleaners/nautilus.xml ../cleaners/gnome.xml #: ../bleachbit/Cleaner.py:349 ../bleachbit/Cleaner.py:423 #: ../bleachbit/Cleaner.py:432 msgid "Delete the usage history" msgstr "Usuń historię użycia" #: ../cleaners/gpodder.xml ../cleaners/hippo_opensim_viewer.xml #: ../cleaners/thumbnails.xml ../cleaners/safari.xml ../cleaners/emesene.xml #: ../cleaners/liferea.xml ../cleaners/seamonkey.xml ../cleaners/vuze.xml #: ../cleaners/yahoo_messenger.xml ../cleaners/pidgin.xml #: ../cleaners/adobe_reader.xml ../cleaners/evolution.xml #: ../cleaners/tremulous.xml ../cleaners/libreoffice.xml ../cleaners/xine.xml #: ../cleaners/nexuiz.xml ../cleaners/exaile.xml ../cleaners/opera.xml #: ../cleaners/amsn.xml ../cleaners/gftp.xml ../cleaners/miro.xml #: ../cleaners/beagle.xml ../cleaners/kde.xml ../cleaners/epiphany.xml #: ../cleaners/flash.xml ../cleaners/secondlife_viewer.xml ../cleaners/java.xml #: ../cleaners/chromium.xml ../cleaners/audacious.xml ../cleaners/rhythmbox.xml #: ../cleaners/google_chrome.xml ../cleaners/thunderbird.xml #: ../bleachbit/Cleaner.py:192 ../bleachbit/Cleaner.py:370 #: ../bleachbit/Cleaner.py:455 msgid "Cache" msgstr "Pamięć podręczna" #: ../cleaners/gpodder.xml ../cleaners/yum.xml #: ../cleaners/hippo_opensim_viewer.xml ../cleaners/thumbnails.xml #: ../cleaners/windows_explorer.xml ../cleaners/liferea.xml #: ../cleaners/vuze.xml ../cleaners/yahoo_messenger.xml ../cleaners/pidgin.xml #: ../cleaners/adobe_reader.xml ../cleaners/evolution.xml #: ../cleaners/libreoffice.xml ../cleaners/apt.xml ../cleaners/xine.xml #: ../cleaners/nexuiz.xml ../cleaners/exaile.xml ../cleaners/amsn.xml #: ../cleaners/gftp.xml ../cleaners/miro.xml ../cleaners/beagle.xml #: ../cleaners/kde.xml ../cleaners/flash.xml ../cleaners/secondlife_viewer.xml #: ../cleaners/java.xml ../cleaners/audacious.xml ../cleaners/rhythmbox.xml #: ../bleachbit/Cleaner.py:370 ../bleachbit/Cleaner.py:455 #: ../bleachbit/Cleaner.py:489 ../bleachbit/Cleaner.py:491 msgid "Delete the cache" msgstr "Usuń pamięć podręczną" #. TRANSLATORS: Vacuum is a verb. The term is jargon #. from the SQLite database. Microsoft Access uses #. the term 'Compact Database' (which you may translate #. instead). Another synonym is 'defragment.' #: ../cleaners/gpodder.xml ../cleaners/yum.xml ../cleaners/safari.xml #: ../cleaners/liferea.xml ../cleaners/chromium.xml #: ../cleaners/google_chrome.xml ../cleaners/thunderbird.xml #: ../bleachbit/Cleaner.py:214 ../bleachbit/Cleaner.py:360 #: ../bleachbit/Action.py:445 msgid "Vacuum" msgstr "Defragmentacja bazy danych" #: ../cleaners/gpodder.xml ../cleaners/yum.xml ../cleaners/safari.xml #: ../cleaners/liferea.xml ../cleaners/chromium.xml #: ../cleaners/google_chrome.xml ../cleaners/thunderbird.xml #: ../bleachbit/Cleaner.py:215 msgid "" "Clean database fragmentation to reduce space and improve speed without " "removing any data" msgstr "" "Uporządkuj bazę danych redukując zajmowane przez nią miejsce oraz " "przyspieszając dostęp do niej bez usuwania żadnych danych" #: ../cleaners/yum.xml ../cleaners/apt.xml msgid "Package manager" msgstr "Menedżer pakietów" #: ../cleaners/warzone2100.xml ../cleaners/hippo_opensim_viewer.xml #: ../cleaners/gl-117.xml ../cleaners/tremulous.xml ../cleaners/nexuiz.xml #: ../cleaners/secondlife_viewer.xml msgid "Game" msgstr "Gra" #: ../cleaners/warzone2100.xml ../cleaners/hippo_opensim_viewer.xml #: ../cleaners/teamviewer.xml ../cleaners/realplayer.xml ../cleaners/vuze.xml #: ../cleaners/yahoo_messenger.xml ../cleaners/amule.xml #: ../cleaners/easytag.xml ../cleaners/exaile.xml ../cleaners/screenlets.xml #: ../cleaners/gftp.xml ../cleaners/miro.xml ../cleaners/audacious.xml #: ../bleachbit/Cleaner.py:486 msgid "Logs" msgstr "Logi" #: ../cleaners/warzone2100.xml ../cleaners/hippo_opensim_viewer.xml #: ../cleaners/teamviewer.xml ../cleaners/realplayer.xml ../cleaners/vuze.xml #: ../cleaners/yahoo_messenger.xml ../cleaners/amule.xml ../cleaners/exaile.xml #: ../cleaners/screenlets.xml ../cleaners/gftp.xml ../cleaners/miro.xml #: ../cleaners/audacious.xml ../bleachbit/Cleaner.py:486 msgid "Delete the logs" msgstr "Usuń pliki logów" #: ../cleaners/thumbnails.xml ../cleaners/windows_explorer.xml msgid "Thumbnails" msgstr "Miniatury" #: ../cleaners/thumbnails.xml msgid "Icons for files on the system" msgstr "Ikony plików w systemie" #: ../cleaners/vim.xml ../cleaners/gedit.xml msgid "Editor" msgstr "Edytor" #: ../cleaners/vim.xml msgid "" "Delete ~/.viminfo which includes file history, command history, and buffers" msgstr "" "Usuń plik ~/.viminfo zawierający historię otwartych plików, poleceń oraz " "buforowane dane" #: ../cleaners/filezilla.xml ../cleaners/transmission.xml ../cleaners/vuze.xml #: ../cleaners/amule.xml ../cleaners/gftp.xml msgid "File transfer client" msgstr "Klient transferu plików" #: ../cleaners/filezilla.xml ../cleaners/paint.xml #: ../cleaners/windows_media_player.xml ../cleaners/windows_explorer.xml #: ../cleaners/teamviewer.xml ../cleaners/microsoft_office.xml #: ../cleaners/vlc.xml ../cleaners/adobe_reader.xml ../cleaners/winamp.xml #: ../cleaners/winzip.xml ../cleaners/winrar.xml ../cleaners/audacious.xml #: ../cleaners/wordpad.xml ../bleachbit/Cleaner.py:371 msgid "Most recently used" msgstr "Ostatnio używane" #: ../cleaners/filezilla.xml ../cleaners/windows_explorer.xml #: ../cleaners/gwenview.xml ../cleaners/adobe_reader.xml ../cleaners/gedit.xml #: ../cleaners/kde.xml ../cleaners/audacious.xml ../bleachbit/Cleaner.py:372 #: ../bleachbit/Cleaner.py:469 msgid "Delete the list of recently used documents" msgstr "Usuń listę ostatnio używanych dokumentów" #: ../cleaners/skype.xml ../cleaners/emesene.xml #: ../cleaners/yahoo_messenger.xml ../cleaners/pidgin.xml ../cleaners/amsn.xml msgid "Chat client" msgstr "Komunikator internetowy" #: ../cleaners/skype.xml ../cleaners/hexchat.xml ../cleaners/emesene.xml #: ../cleaners/seamonkey.xml ../cleaners/yahoo_messenger.xml #: ../cleaners/pidgin.xml ../cleaners/amsn.xml msgid "Chat logs" msgstr "Dzienniki rozmów" #: ../cleaners/skype.xml ../cleaners/hexchat.xml ../cleaners/emesene.xml #: ../cleaners/seamonkey.xml ../cleaners/yahoo_messenger.xml #: ../cleaners/pidgin.xml ../cleaners/amsn.xml msgid "Delete the chat logs" msgstr "Usuń dzienniki rozmów" #: ../cleaners/skype.xml msgid "Installers" msgstr "Instalatory" #: ../cleaners/skype.xml msgid "Delete cached patches and installers" msgstr "Usuń łatki i instalatory z pamięci podręcznej" #: ../cleaners/hexchat.xml msgid "IRC client formerly known as XChat" msgstr "Klient IRC dawniej znany pod nazwą XChat" #: ../cleaners/safari.xml ../cleaners/links2.xml ../cleaners/seamonkey.xml #: ../cleaners/konqueror.xml ../cleaners/internet_explorer.xml #: ../cleaners/opera.xml ../cleaners/epiphany.xml ../cleaners/elinks.xml #: ../cleaners/chromium.xml ../cleaners/google_chrome.xml #: ../bleachbit/Cleaner.py:226 msgid "Web browser" msgstr "Przeglądarka internetowa" #: ../cleaners/safari.xml ../cleaners/seamonkey.xml ../cleaners/opera.xml #: ../cleaners/epiphany.xml ../cleaners/chromium.xml #: ../cleaners/google_chrome.xml ../cleaners/thunderbird.xml #: ../bleachbit/Cleaner.py:193 msgid "Delete the web cache, which reduces time to display revisited pages" msgstr "" "Usuń pamięć podręczną przeglądarki przyspieszającą ponowne odwiedziny na " "stronach" #: ../cleaners/safari.xml ../cleaners/liferea.xml ../cleaners/seamonkey.xml #: ../cleaners/realplayer.xml ../cleaners/konqueror.xml #: ../cleaners/internet_explorer.xml ../cleaners/opera.xml #: ../cleaners/epiphany.xml ../cleaners/flash.xml ../cleaners/silverlight.xml #: ../cleaners/chromium.xml ../cleaners/google_chrome.xml #: ../cleaners/thunderbird.xml ../bleachbit/Cleaner.py:194 msgid "Cookies" msgstr "Pliki cookie" #: ../cleaners/safari.xml ../cleaners/liferea.xml ../cleaners/seamonkey.xml #: ../cleaners/realplayer.xml ../cleaners/konqueror.xml #: ../cleaners/internet_explorer.xml ../cleaners/opera.xml #: ../cleaners/epiphany.xml ../cleaners/flash.xml ../cleaners/silverlight.xml #: ../cleaners/chromium.xml ../cleaners/google_chrome.xml #: ../cleaners/thunderbird.xml ../bleachbit/Cleaner.py:195 msgid "" "Delete cookies, which contain information such as web site preferences, " "authentication, and tracking identification" msgstr "" "Usuń ciasteczka zawierające między innymi informacje o ustawieniach stron " "internetowych, aktywnych logowaniach czy używane do śledzenia aktywności" #: ../cleaners/safari.xml ../cleaners/konqueror.xml #: ../cleaners/internet_explorer.xml ../cleaners/opera.xml #: ../bleachbit/Cleaner.py:213 msgid "List of visited web pages" msgstr "Lista odwiedzonych stron internetowych" #. Torrent software can block a list of IP addresses, such as those that may belong to malware or anti-piracy organizations #: ../cleaners/transmission.xml msgid "Blocklists" msgstr "Listy blokowanych" #: ../cleaners/transmission.xml ../cleaners/windows_defender.xml #: ../cleaners/beagle.xml ../cleaners/thunderbird.xml ../cleaners/deepscan.xml #: ../bleachbit/Cleaner.py:197 msgid "Delete the files" msgstr "Usuń pliki" #: ../cleaners/transmission.xml msgid "Blocklists will need update to work." msgstr "Czarne listy muszą zostać zaktualizowane aby zacząć działać" #: ../cleaners/transmission.xml msgid "Torrents" msgstr "Torrenty" #: ../cleaners/transmission.xml msgid "Delete the torrents (just the metadata but not the files described)" msgstr "Usuń torrenty (same metadane, bez przesyłanych plików)" #: ../cleaners/transmission.xml msgid "Statistics" msgstr "Statystyki" #: ../cleaners/transmission.xml msgid "Delete the file" msgstr "Usuń plik" #: ../cleaners/paint.xml ../cleaners/windows_media_player.xml #: ../cleaners/windows_explorer.xml ../cleaners/teamviewer.xml #: ../cleaners/microsoft_office.xml ../cleaners/vlc.xml ../cleaners/winamp.xml #: ../cleaners/winzip.xml ../cleaners/winrar.xml ../cleaners/wordpad.xml msgid "Delete the most recently used list" msgstr "Usuń listę najczęściej używanych" #: ../cleaners/emesene.xml msgid "Delete the avatars and emoticons cache" msgstr "Usuń pamięć podręczną awatarów i emotikon" #: ../cleaners/windows_media_player.xml ../cleaners/realplayer.xml #: ../cleaners/vlc.xml ../cleaners/winamp.xml msgid "Media player" msgstr "Odtwarzacz mediów" #: ../cleaners/windows_explorer.xml ../cleaners/nautilus.xml msgid "File manager" msgstr "Menedżer plików" #: ../cleaners/windows_explorer.xml ../cleaners/gwenview.xml #: ../cleaners/gedit.xml ../cleaners/kde.xml ../bleachbit/Cleaner.py:468 #: ../bleachbit/Cleaner.py:663 msgid "Recent documents list" msgstr "Lista ostatnich dokumentów" #: ../cleaners/windows_explorer.xml msgid "" "This option will reset pinned locations in Quick Access to their defaults." msgstr "" "Spowoduje to wyzerowanie lokalizacji przypiętych na liście szybkiego dostępu." #. In Windows 'Run' is the dialog in the Start menu #. In GNOME 'Run' is the dialog shown when typing ALT+F2' #: ../cleaners/windows_explorer.xml ../cleaners/gnome.xml msgid "Run" msgstr "Uruchom" #: ../cleaners/windows_explorer.xml ../cleaners/opera.xml ../cleaners/gnome.xml #: ../cleaners/google_toolbar.xml msgid "Search history" msgstr "Historia wyszukiwania" #: ../cleaners/windows_explorer.xml ../cleaners/opera.xml ../cleaners/gnome.xml #: ../cleaners/google_toolbar.xml msgid "Delete the search history" msgstr "Usuń historię wyszukiwania" #: ../cleaners/windows_explorer.xml msgid "This will restart Windows Explorer." msgstr "Spowoduje to ponowne uruchomienie Eksploratora Windows." #: ../cleaners/gl-117.xml ../cleaners/microsoft_office.xml #: ../cleaners/beagle.xml ../cleaners/secondlife_viewer.xml ../cleaners/x11.xml msgid "Debug logs" msgstr "Dzienniki debugowania" #: ../cleaners/gl-117.xml ../cleaners/microsoft_office.xml #: ../cleaners/easytag.xml ../cleaners/beagle.xml #: ../cleaners/secondlife_viewer.xml ../cleaners/x11.xml msgid "Delete the debug logs" msgstr "Usuń dzienniki debugowania" #: ../cleaners/google_earth.xml ../cleaners/winetricks.xml ../cleaners/vuze.xml #: ../cleaners/adobe_reader.xml ../cleaners/amule.xml ../cleaners/wine.xml #: ../cleaners/internet_explorer.xml ../cleaners/gimp.xml ../cleaners/kde.xml #: ../cleaners/deepscan.xml ../bleachbit/Cleaner.py:520 msgid "Temporary files" msgstr "Pliki tymczasowe" #: ../cleaners/google_earth.xml ../cleaners/winetricks.xml ../cleaners/vuze.xml #: ../cleaners/adobe_reader.xml ../cleaners/amule.xml ../cleaners/wine.xml #: ../cleaners/internet_explorer.xml ../cleaners/gimp.xml ../cleaners/kde.xml #: ../cleaners/deepscan.xml ../bleachbit/Cleaner.py:520 msgid "Delete the temporary files" msgstr "Usuń pliki tymczasowe" #: ../cleaners/seamonkey.xml ../cleaners/opera.xml ../bleachbit/Cleaner.py:201 msgid "Download history" msgstr "Historia pobierania" #: ../cleaners/seamonkey.xml ../cleaners/opera.xml ../bleachbit/Cleaner.py:201 msgid "List of files downloaded" msgstr "Lista pobranych plików" #: ../cleaners/seamonkey.xml msgid "Delete the list of visited web pages" msgstr "Usuń listę odwiedzonych stron" #: ../cleaners/vuze.xml ../cleaners/deepscan.xml ../bleachbit/Cleaner.py:190 msgid "Backup files" msgstr "Kopie zapasowe" #: ../cleaners/vuze.xml ../cleaners/deepscan.xml ../bleachbit/Cleaner.py:191 msgid "Delete the backup files" msgstr "Usuń pliki kopii zapasowej" #: ../cleaners/konqueror.xml ../cleaners/opera.xml ../cleaners/chromium.xml msgid "Current session" msgstr "Bieżąca sesja" #: ../cleaners/konqueror.xml ../cleaners/opera.xml ../cleaners/chromium.xml msgid "Delete the current session" msgstr "Usuń bieżącą sesję" #: ../cleaners/konqueror.xml ../cleaners/opera.xml ../bleachbit/Cleaner.py:213 msgid "URL history" msgstr "Historia adresów URL" #: ../cleaners/microsoft_office.xml ../cleaners/libreoffice.xml #: ../bleachbit/Cleaner.py:375 msgid "Office suite" msgstr "Pakiet biurowy" #: ../cleaners/windows_defender.xml msgid "Anti-virus" msgstr "Program antywirusowy" #: ../cleaners/journald.xml msgid "System journals" msgstr "Dzienniki systemowe" #: ../cleaners/journald.xml msgid "Clean old system journals" msgstr "Wyczyść stare dzienniki systemowe" #: ../cleaners/adobe_reader.xml msgid "Document viewer" msgstr "Przeglądarka dokumentów" #: ../cleaners/evolution.xml ../cleaners/thunderbird.xml msgid "Email client" msgstr "Klient email" #: ../cleaners/tremulous.xml msgid "Delete the list of game servers" msgstr "Usuń listę serwerów gier" #: ../cleaners/sqlite3.xml ../cleaners/bash.xml ../cleaners/octave.xml msgid "Delete the command history" msgstr "Usuń historię poleceń" #: ../cleaners/wine.xml msgid "Compatibility layer for Windows software" msgstr "Powłoka kompatybilności dla oprogramowania Windows" #: ../cleaners/internet_explorer.xml ../cleaners/chromium.xml #: ../cleaners/google_chrome.xml ../bleachbit/Cleaner.py:202 msgid "Form history" msgstr "Historia formularzy" #: ../cleaners/internet_explorer.xml ../bleachbit/Cleaner.py:203 msgid "A history of forms entered in web sites and in the Search bar" msgstr "Historia wypełnionych formularzy na stronach oraz wyszukiwań" #. This software edits metadata tags, such as title and artist, in audio files #: ../cleaners/easytag.xml msgid "Audio files tagger" msgstr "Narzędzie do uzupełniania metadanych muzyki" #: ../cleaners/apt.xml msgid "Delete obsolete files" msgstr "Usuń przestarzałe pliki" #: ../cleaners/apt.xml msgid "Package lists" msgstr "Listy pakietów" #: ../cleaners/xine.xml ../cleaners/miro.xml ../cleaners/flash.xml msgid "Multimedia viewer" msgstr "Przeglądarka multimediów" #: ../cleaners/recoll.xml ../cleaners/beagle.xml msgid "Search tool" msgstr "Narzędzie wyszukiwania" #: ../cleaners/recoll.xml ../cleaners/beagle.xml ../cleaners/thunderbird.xml msgid "Index" msgstr "Indeks" #: ../cleaners/recoll.xml msgid "" "Delete the search index, a database of words and the files they contain" msgstr "" "Usuń indeks wyszukiwania, bazę słów kluczowych i zawierających je plików" #: ../cleaners/gimp.xml msgid "Graphics editor" msgstr "Edytor grafiki" #: ../cleaners/exaile.xml msgid "Downloaded podcasts" msgstr "Pobrane podkasty" #: ../cleaners/exaile.xml msgid "Delete downloaded podcasts" msgstr "Usuń pobrane podkasty" #: ../cleaners/bash.xml msgid "Shell" msgstr "Powłoka" #. TRANSLATORS: DOM = Document Object Model. #: ../cleaners/opera.xml ../cleaners/epiphany.xml ../cleaners/chromium.xml #: ../cleaners/google_chrome.xml ../bleachbit/Cleaner.py:199 msgid "DOM Storage" msgstr "Magazyn DOM" #: ../cleaners/opera.xml ../cleaners/epiphany.xml ../cleaners/chromium.xml #: ../cleaners/google_chrome.xml ../bleachbit/Cleaner.py:199 msgid "Delete HTML5 cookies" msgstr "Usuń ciasteczka HTML5" #: ../cleaners/opera.xml ../cleaners/epiphany.xml ../cleaners/chromium.xml #: ../cleaners/google_chrome.xml ../cleaners/thunderbird.xml #: ../bleachbit/Cleaner.py:208 msgid "Passwords" msgstr "Hasła" #: ../cleaners/opera.xml ../cleaners/epiphany.xml ../cleaners/chromium.xml #: ../cleaners/google_chrome.xml ../cleaners/thunderbird.xml #: ../bleachbit/Cleaner.py:209 msgid "" "A database of usernames and passwords as well as a list of sites that should " "not store passwords" msgstr "" "Baza danych zawierająca listę loginów i haseł oraz listę stron na których te " "nie mają być zapisywane" #: ../cleaners/opera.xml ../cleaners/epiphany.xml ../cleaners/chromium.xml #: ../cleaners/google_chrome.xml ../cleaners/thunderbird.xml #: ../bleachbit/Cleaner.py:211 msgid "This option will delete your saved passwords." msgstr "Spowoduje to usunięcie zapisanych haseł." #: ../cleaners/nautilus.xml msgid "Custom folders will be reset." msgstr "Wybrane katalogi zostaną zresetowane." #: ../cleaners/gnome.xml ../cleaners/kde.xml msgid "Desktop environment" msgstr "Środowisko graficzne" #: ../cleaners/screenlets.xml msgid "Widgets for the desktop" msgstr "Widżety pulpitu" #: ../cleaners/epiphany.xml msgid "Places" msgstr "Miejsca" #: ../cleaners/epiphany.xml msgid "" "A database of URLs including bookmarks, favicons, and a history of visited " "web sites" msgstr "" "Baza adresów URL zawierająca zakładki, favikony i historię przeglądania" #: ../cleaners/epiphany.xml msgid "This option deletes all bookmarks." msgstr "Usunięcie wszystkich zakładek" #: ../cleaners/winrar.xml msgid "File archiver" msgstr "Archiwizator plików" #: ../cleaners/elinks.xml msgid "Delete the cookies, visited URLs, and search history" msgstr "Usuwa ciasteczka, historię przeglądania i wyszukiwania" #: ../cleaners/chromium.xml ../cleaners/google_chrome.xml msgid "A history of forms entered in web sites" msgstr "Historia formularzy uzupełnionych na stronach internetowych" #: ../cleaners/chromium.xml ../cleaners/google_chrome.xml msgid "" "Delete the history which includes visited sites, downloads, and thumbnails" msgstr "Czyści historię przeglądania, pobierania i miniatury" #: ../cleaners/chromium.xml ../cleaners/google_chrome.xml msgid "Search engines" msgstr "Wyszukiwarki" #. 'Factory' means a search engine that is installed by default 'from the factory,' but this is different than a 'default search engine' https://lists.launchpad.net/launchpad-translators/msg00283.html #: ../cleaners/chromium.xml ../cleaners/google_chrome.xml msgid "" "Reset the search engine usage history and delete non-factory search engines, " "some of which are added automatically" msgstr "" "Resetuje historię wykorzystania wyszukiwarek i usuwa dodatkowe wyszukiwarki, " "w tym te dodane automatycznie" #: ../cleaners/audacious.xml msgid "Audio player" msgstr "Odtwarzacz muzyki" #: ../cleaners/rhythmbox.xml msgid "Database" msgstr "Baza danych" #: ../cleaners/rhythmbox.xml msgid "" "Delete the database, which contain information such as play count and last " "played" msgstr "" "Usuwa bazę danych zawierającą informacje takie jak licznik odtworzeń oraz " "ostatnio odtwarzane" #: ../cleaners/google_chrome.xml msgid "Session" msgstr "Sesja" #: ../cleaners/google_chrome.xml msgid "Delete the current and last sessions" msgstr "Usuwa bieżącą i poprzednie sesje" #: ../cleaners/x11.xml msgid "Windowing system" msgstr "Kompozytor okien" #: ../cleaners/wordpad.xml msgid "Word processor" msgstr "Edytor tekstu" #: ../cleaners/deepscan.xml msgid "Deep scan" msgstr "Głębokie skanowanie" #: ../cleaners/deepscan.xml msgid "Clean files widely scattered across the disk" msgstr "Czyści pliki porozrzucane na całym dysku" #: ../cleaners/deepscan.xml msgid "Inspect the preview for any files you want to keep." msgstr "" "Podejrzyj listę plików pod kątem tych, które mógłbyś chcieć zatrzymać." #: ../cleaners/deepscan.xml msgid "This option is slow." msgstr "Ta opcja jest czasochłonna." #: ../bleachbit.desktop msgid "Unnecessary file cleaner" msgstr "Program czyszczący niepotrzebne pliki" #: ../bleachbit.desktop msgid "Free space and maintain privacy" msgstr "Zwolnij miejsce na dysku i zachowaj prywatność" #: ../bleachbit/FileUtilities.py:668 msgid "" "There was at least one file on a file system that does not support advanced " "overwriting." msgstr "" "Przynajmniej jeden plik znajdujący się w systemie plików nie obsługuje " "zaawansowanego nadpisywania zawartości." #: ../bleachbit/Unix.py:574 #, python-format msgid "Executable not found: %s" msgstr "Nie znaleziono pliku wykonywalnego: %s" #. TRANSLATORS: %s expands to a name such as 'Firefox' or 'System'. #: ../bleachbit/Unix.py:623 ../bleachbit/Worker.py:136 #, python-format msgid "" "%s cannot be cleaned because it is currently running. Close it, and try " "again." msgstr "" "%s nie może być oczyszczony, ponieważ jest właśnie używany. Zamknij i " "spróbuj ponownie." #: ../bleachbit/GuiBasic.py:112 msgid "Delete confirmation" msgstr "Potwierdzenie usunięcia" #: ../bleachbit/GuiBasic.py:122 msgid "" "Are you sure you want to permanently delete files according to the selected " "operations? The actual files that will be deleted may have changed since " "you ran the preview." msgstr "" "Czy jesteś pewny, że chcesz trwale usunąć pliki zgodnie z zaznaczonymi " "opcjami? Lista plików do usunięcia wygenerowana wcześniej w podglądzie może " "być nieaktualna." #: ../bleachbit/GuiBasic.py:125 msgid "Are you sure you want to permanently delete these files?" msgstr "Czy jesteś pewny, że chcesz trwale usunąć te pliki?" #: ../bleachbit/GuiBasic.py:162 #, python-format msgid "" "Because you are running as root, please manually open this link in a web " "browser:\n" "%s" msgstr "" "Ponieważ pracujesz jako administrator, otwórz ręcznie w przeglądarce " "poniższy adres:\n" "%s" #. TRANSLATORS: %s expands to www.bleachbit.org or similar #: ../bleachbit/GuiBasic.py:174 #, python-format msgid "Open web browser to %s?" msgstr "Otworzyć adres %s w przeglądarce?" #. TRANSLATORS: This is the label in the log indicating was #. skipped because it matches the whitelist #: ../bleachbit/Command.py:47 msgid "Skip" msgstr "Pominięto" #. TRANSLATORS: This is the label in the log indicating will be #. deleted (for previews) or was actually deleted #: ../bleachbit/Command.py:77 msgid "Delete" msgstr "Usunięto" #: ../bleachbit/Command.py:99 msgid "" "At least one file was locked by another process, so its contents could not " "be overwritten. It will be marked for deletion upon system reboot." msgstr "" "Przynajmniej jeden plik był w użyciu przez inny proces, co uniemożliwiło " "nadpisanie jego zawartości. Został on oznaczony do usunięcia przy restarcie " "systemu." #. TRANSLATORS: The file will be deleted when the #. system reboots #: ../bleachbit/Command.py:102 msgid "Mark for deletion" msgstr "Oznaczenie do usunięcia" #. TRANSLATORS: Parts of this file will be deleted #: ../bleachbit/Command.py:199 ../bleachbit/Command.py:233 #: ../bleachbit/Action.py:254 ../bleachbit/Action.py:267 #: ../bleachbit/Action.py:280 ../bleachbit/Action.py:293 #: ../bleachbit/Action.py:306 msgid "Clean file" msgstr "Czyszczenie pliku" #. TRANSLATORS: The file will be truncated to 0 bytes in length #: ../bleachbit/Command.py:275 msgid "Truncate" msgstr "Pozbycie się zawartości" #: ../bleachbit/Command.py:317 msgid "Delete registry key" msgstr "Usuń klucz rejestru" #. TRANSLATORS: This is cleaner name for cleaners imported from winapp2.ini #: ../bleachbit/Winapp.py:44 msgid "Applications" msgstr "Aplikacje" #. TRANSLATORS: This is cleaner name for cleaners imported #. from winapp2.ini #: ../bleachbit/Winapp.py:47 msgid "Internet" msgstr "Internet" #. TRANSLATORS: This is cleaner name for cleaners imported #. from winapp2.ini #: ../bleachbit/Winapp.py:50 msgid "Multimedia" msgstr "Multimedia" #. TRANSLATORS: This is cleaner name for cleaners imported #. from winapp2.ini #: ../bleachbit/Winapp.py:53 msgid "Utilities" msgstr "Programy użytkowe" #: ../bleachbit/Winapp.py:64 msgid "Games" msgstr "Gry" #: ../bleachbit/Winapp.py:162 msgid "Imported from winapp2.ini" msgstr "Zaimportowano z pliku winapp2.ini" #: ../bleachbit/Cleaner.py:197 msgid "Crash reports" msgstr "Raporty o awariach" #: ../bleachbit/Cleaner.py:204 msgid "Session restore" msgstr "Przywracanie sesji" #: ../bleachbit/Cleaner.py:205 msgid "Loads the initial session after the browser closes or crashes" msgstr "" "Wczytuje początkową sesję po tym, jak przeglądarka została nieoczekiwanie " "zamknięta lub wystąpił jej błąd" #: ../bleachbit/Cleaner.py:207 msgid "Site preferences" msgstr "Preferencje stron" #: ../bleachbit/Cleaner.py:207 msgid "Settings for individual sites" msgstr "Ustawienia dla pojedynczych stron" #. TRANSLATORS: desktop entries are .desktop files in Linux that #. make up the application menu (the menu that shows BleachBit, #. Firefox, and others. The .desktop files also associate file #. types, so clicking on an .html file in Nautilus brings up #. Firefox. #. More information: #. http://standards.freedesktop.org/menu-spec/latest/index.html#introduction #: ../bleachbit/Cleaner.py:453 msgid "Broken desktop files" msgstr "Wadliwe pliki .desktop" #: ../bleachbit/Cleaner.py:454 msgid "Delete broken application menu entries and file associations" msgstr "Usuwa błędne wpisy listy aplikacji i skojarzenia plików" #. TRANSLATORS: Localizations are files supporting specific #. languages, so applications appear in Spanish, etc. #: ../bleachbit/Cleaner.py:458 msgid "Localizations" msgstr "Tłumaczenia" #: ../bleachbit/Cleaner.py:459 msgid "Delete files for unwanted languages" msgstr "Usuń pliki dla niechcianych języków" #: ../bleachbit/Cleaner.py:461 msgid "Configure this option in the preferences." msgstr "Skonfiguruj tę opcję w preferencjach." #: ../bleachbit/Cleaner.py:467 msgid "Rotated logs" msgstr "Zrotowane dzienniki" #: ../bleachbit/Cleaner.py:467 msgid "Delete old system logs" msgstr "Usuń stare logi systemowe" #: ../bleachbit/Cleaner.py:470 msgid "Trash" msgstr "Kosz" #: ../bleachbit/Cleaner.py:470 msgid "Empty the trash" msgstr "Opróżnia kosz" #: ../bleachbit/Cleaner.py:476 ../bleachbit/Cleaner.py:627 #: ../bleachbit/Worker.py:184 msgid "Memory" msgstr "Pamięć" #. TRANSLATORS: 'free' means 'unallocated' #: ../bleachbit/Cleaner.py:478 msgid "Wipe the swap and free memory" msgstr "Wymazuje przestrzeń wymiany i uwalnia pamięć" #: ../bleachbit/Cleaner.py:480 msgid "This option is experimental and may cause system problems." msgstr "Jest to opcja eksperymentalna i może powodować problemy z systemem." #: ../bleachbit/Cleaner.py:488 msgid "Memory dump" msgstr "Zrzut pamięci" #: ../bleachbit/Cleaner.py:488 msgid "Delete the file memory.dmp" msgstr "Usuń plik memory.dmp" #. TRANSLATORS: Prefetch is Microsoft Windows jargon. #: ../bleachbit/Cleaner.py:491 msgid "Prefetch" msgstr "Wykonuj wcześniej" #: ../bleachbit/Cleaner.py:493 msgid "Recycle bin" msgstr "Kosz" #: ../bleachbit/Cleaner.py:493 ../bleachbit/Cleaner.py:787 msgid "Empty the recycle bin" msgstr "Opróżnij kosz" #. TRANSLATORS: 'Update' is a noun, and 'Update uninstallers' is an option to delete #. the uninstallers for software updates. #: ../bleachbit/Cleaner.py:496 msgid "Update uninstallers" msgstr "Aktualizacja programów odinstalowujących" #: ../bleachbit/Cleaner.py:497 msgid "" "Delete uninstallers for Microsoft updates including hotfixes, service packs, " "and Internet Explorer updates" msgstr "" "Usunięcie programów deinstalatorów aktualizacji Microsoftu, takich jak " "poprawki błędów, service packi i aktualizacje Internet Explorera" #: ../bleachbit/Cleaner.py:504 ../bleachbit/Cleaner.py:727 msgid "Clipboard" msgstr "Schowek" #: ../bleachbit/Cleaner.py:505 msgid "" "The desktop environment's clipboard used for copy and paste operations" msgstr "Schowek środowiska pulpitu używany dla operacji kopiuj i wklej" #. TRANSLATORS: "Custom" is an option allowing the user to specify which #. files and folders will be erased. #: ../bleachbit/Cleaner.py:512 ../bleachbit/GuiPreferences.py:66 msgid "Custom" msgstr "Niestandardowe" #: ../bleachbit/Cleaner.py:513 msgid "Delete user-specified files and folders" msgstr "Usuwa wskazane przez użytkownika pliki i katalogi" #. TRANSLATORS: 'free' means 'unallocated' #: ../bleachbit/Cleaner.py:515 msgid "Free disk space" msgstr "Wolna przestrzeń dyskowa" #. TRANSLATORS: 'free' means 'unallocated' #: ../bleachbit/Cleaner.py:517 msgid "Overwrite free disk space to hide deleted files" msgstr "Nadpisuje wolną przestrzeń dysku celem zamazania usuniętych plików" #: ../bleachbit/Cleaner.py:518 msgid "This option is very slow." msgstr "Ta operacja jest bardzo czasochłonna." #: ../bleachbit/Cleaner.py:522 msgid "The system in general" msgstr "Ogólne aspekty systemu" #: ../bleachbit/Cleaner.py:524 ../bleachbit/Cleaner.py:857 msgid "System" msgstr "System" #. TRANSLATORS: 'Free' means 'unallocated.' #. %s expands to a path such as C:\ or /tmp/ #: ../bleachbit/Cleaner.py:735 ../bleachbit/Cleaner.py:890 #, python-format msgid "Overwrite free disk space %s" msgstr "Nadpisanie wolnej przestrzeni dysku %s" #: ../bleachbit/RecognizeCleanerML.py:59 msgid "Security warning" msgstr "Ostrzeżenie bezpieczeństwa" #: ../bleachbit/RecognizeCleanerML.py:72 msgid "" "These cleaner definitions are new or have changed. Malicious definitions can " "damage your system. If you do not trust these changes, delete the files or " "quit." msgstr "" "Te instrukcje oczyszczania są nowe albo uległy zmianie. Złośliwe instrukcje " "mogą doprowadzić do uszkodzenia systemu. Jeżeli nie ufasz tym zmianom, usuń " "te pliki albo wyjdź." #: ../bleachbit/RecognizeCleanerML.py:88 msgctxt "column_label" msgid "Delete" msgstr "Usuń" #: ../bleachbit/RecognizeCleanerML.py:93 msgctxt "column_label" msgid "Filename" msgstr "Nazwa pliku" #. TRANSLATORS: This indicates an error. The special keyword #. %(operation)s will be replaced by 'firefox' or 'opera' or #. some other cleaner ID. The special keyword %(msg)s will be #. replaced by a message such as 'Permission denied.' #: ../bleachbit/Worker.py:74 #, python-format msgid "Exception while running operation '%(operation)s': '%(msg)s'" msgstr "Wyjątek podczas wykonywania '%(operation)s': '%(msg)s'" #. TRANSLATORS: 'free' means 'unallocated' #: ../bleachbit/Worker.py:182 msgid "Please wait. Wiping free disk space." msgstr "Proszę czekać. Zamazywanie wolnej przestrzeni dyskowej." #. TRANSLATORS: %s is replaced with Firefox, System, etc. #: ../bleachbit/Worker.py:184 ../bleachbit/Worker.py:332 #, python-format msgid "Please wait. Cleaning %s." msgstr "Proszę czekać. Sprzątanie %s." #: ../bleachbit/Worker.py:199 msgid "Please wait. Wiping file system metadata." msgstr "Proszę czekać. Wymazywanie metadanych systemu plików." #: ../bleachbit/Worker.py:202 msgid "Please wait. Cleaning up after wiping file system metadata." msgstr "Proszę czekać. Czyszczenie po wymazaniu metadanych systemu plików." #: ../bleachbit/Worker.py:205 #, python-format msgid "About %d minute remaining." msgid_plural "About %d minutes remaining." msgstr[0] "Pozostała %d minuta." msgstr[1] "Pozostało około %d minut." msgstr[2] "Pozostało około %d minut." #. TRANSLATORS: This refers to disk space that was #. really recovered (in other words, not a preview) #: ../bleachbit/Worker.py:272 #, python-format msgid "Disk space recovered: %s" msgstr "Odzyskana przestrzeń dysku: %s" #. TRANSLATORS: This refers to a preview (no real #. changes were made yet) #: ../bleachbit/Worker.py:276 #, python-format msgid "Disk space to be recovered: %s" msgstr "Przestrzeń dysku do odzyskania: %s" #. TRANSLATORS: This refers to the number of files really #. deleted (in other words, not a preview). #: ../bleachbit/Worker.py:281 #, python-format msgid "Files deleted: %d" msgstr "Usuniętych plików: %d" #. TRANSLATORS: This refers to the number of files that #. would be deleted (in other words, simply a preview). #: ../bleachbit/Worker.py:285 #, python-format msgid "Files to be deleted: %d" msgstr "Plików do usunięcia: %d" #: ../bleachbit/Worker.py:288 #, python-format msgid "Special operations: %d" msgstr "Operacje specjalne: %d" #: ../bleachbit/Worker.py:291 #, python-format msgid "Errors: %d" msgstr "Błędy: %d" #. TRANSLATORS: The "deep scan" feature searches over broad #. areas of the file system such as the user's whole home directory #. or all the system executables. #: ../bleachbit/Worker.py:306 msgid "Please wait. Running deep scan." msgstr "Proszę czekać. Trwa głębokie skanowanie." #. TRANSLATORS: %s is replaced with Firefox, System, etc. #: ../bleachbit/Worker.py:335 #, python-format msgid "Please wait. Previewing %s." msgstr "Proszę czekać. Podglądanie %s." #: ../bleachbit/Update.py:80 msgid "New winapp2.ini was downloaded." msgstr "Została pobrana nowa wersja pliku winapp2.ini" #: ../bleachbit/Update.py:125 msgid "Update BleachBit" msgstr "Aktualizacja BleachBit" #: ../bleachbit/Update.py:130 msgid "A new version is available." msgstr "Nowa wersja jest dostępna." #. TRANSLATORS: %s expands to version such as '0.8.4' or '0.8.5beta' or #. similar #: ../bleachbit/Update.py:139 #, python-format msgid "Update to version %s" msgstr "Zaktualizuj do wersji %s" #: ../bleachbit/Update.py:164 #, python-format msgid "" "Error when opening a network connection to %s to check for updates. Please " "verify the network is working." msgstr "" "Wystąpił błąd podczas łączenia z %s sprawdzając aktualizacje. Upewnij się, " "czy masz połączenie z Internetem." #: ../bleachbit/CLI.py:106 #, python-format msgid "not a valid cleaner: %s" msgstr "instrukcje sprzątania nie są poprawne: %s" #. TRANSLATORS: This is the command line usage. Don't translate #. %prog, but do translate usage, options, cleaner, and option. #. More information about the command line is here #. https://www.bleachbit.org/documentation/command-line #: ../bleachbit/CLI.py:133 msgid "usage: %prog [options] cleaner.option1 cleaner.option2" msgstr "użycie: %prog [opcje] sprzątacz.opcja1 sprzątacz.opcja2" #: ../bleachbit/CLI.py:136 msgid "list cleaners" msgstr "lista instrukcji sprzątania" #. TRANSLATORS: predefined cleaners are for applications, such as Firefox and Flash. #. This is different than cleaning an arbitrary file, such as a #. spreadsheet on the desktop. #: ../bleachbit/CLI.py:141 msgid "run cleaners to delete files and make other permanent changes" msgstr "" "uruchom sprzątanie według instrukcji, na stałe usuwając pliki z dysku" #: ../bleachbit/CLI.py:144 msgid "shred specific files or folders" msgstr "wyczyść zawartość plików i katalogów" #: ../bleachbit/CLI.py:146 msgid "show system information" msgstr "pokaż informacje o systemie" #: ../bleachbit/CLI.py:148 msgid "launch the graphical interface" msgstr "uruchom interfejs graficzny" #: ../bleachbit/CLI.py:152 msgid "do not prompt for administrator privileges" msgstr "nie pytaj o uprawnienia administratora" #: ../bleachbit/CLI.py:157 msgid "preview files to be deleted and other changes" msgstr "podgląd plików do usunięcia i innych zmian" #: ../bleachbit/CLI.py:161 msgid "use options set in the graphical interface" msgstr "użyj opcji ustawionych w interfejsie graficznym" #: ../bleachbit/CLI.py:164 msgid "update winapp2.ini, if a new version is available" msgstr "aktualizuj winapp2.ini, jeśli dostępna jest nowa wersja" #: ../bleachbit/CLI.py:166 msgid "output version information and exit" msgstr "wyświetla informacje o wersji i kończy działanie" #: ../bleachbit/CLI.py:168 msgid "overwrite files to hide contents" msgstr "nadpisuje pliki, aby ukryć ich poprzednią zawartość" #. TRANSLATORS: this is the context menu #: ../bleachbit/Action.py:382 ../bleachbit/GUI.py:632 msgid "Clean" msgstr "Wyczyść" #: ../bleachbit/Action.py:418 #, python-format msgid "Run external command: %s" msgstr "Uruchom komendę zewnętrzną: %s" #: ../bleachbit/GUI.py:135 ../bleachbit/GuiPreferences.py:296 msgid "Name" msgstr "Nazwa" #: ../bleachbit/GUI.py:143 msgid "Active" msgstr "Aktywny" #. TRANSLATORS: Size is the label for the column that shows how #. much space an option would clean or did clean #: ../bleachbit/GUI.py:155 msgid "Size" msgstr "Rozmiar" #. TRANSLATORS: %(cleaner) may be Firefox, System, etc. #. %(option) may be cache, logs, cookies, etc. #. %(warning) may be 'This option is really slow' #: ../bleachbit/GUI.py:186 #, python-format msgid "" "Warning regarding %(cleaner)s - %(option)s:\n" "\n" "%(warning)s" msgstr "" "Ostrzeżenie dotyczące operacji na %(option)s w %(cleaner)s:\n" "\n" "%(warning)s" #: ../bleachbit/GUI.py:372 msgid "You must select an operation" msgstr "Musisz wybrać operację" #: ../bleachbit/GUI.py:391 ../bleachbit/GUI.py:413 msgid "Done." msgstr "Zakończono." #: ../bleachbit/GUI.py:426 msgid "Program to clean unnecessary files" msgstr "Program do czyszczenia niepotrzebnych plików" #: ../bleachbit/GUI.py:436 msgid "" "GNU General Public License version 3 or later.\n" "See http://www.gnu.org/licenses/gpl-3.0.txt" msgstr "" "GNU General Public License wersja 3 lub nowsza.\n" "See http://www.gnu.org/licenses/gpl-3.0.txt" #. TRANSLATORS: Maintain the names of translators here. #. Launchpad does this automatically for translations #. typed in Launchpad. This is a special string shown #. in the 'About' box. #: ../bleachbit/GUI.py:442 msgid "translator-credits" msgstr "" "O tłumaczach:\n" "\n" "Launchpad Contributions:\n" " Dariusz Jakoniuk https://launchpad.net/~darcio53\n" " Jarosław Ogrodnik https://launchpad.net/~goz\n" " Kuba Niewiarowski https://launchpad.net/~marsjaninzmarsa\n" " Mateusz Kacprzak https://launchpad.net/~mateunho\n" " Paweł Szerszon https://launchpad.net/~s120801-launchpad\n" " Piotr Strębski https://launchpad.net/~strebski\n" " Stanisław Gackowski https://launchpad.net/~soeb\n" " Szymon Nieznański https://launchpad.net/~isamu715\n" " pp/bs https://launchpad.net/~pawprok\n" " Łukasz Wiśniewski https://launchpad.net/~fr-luksus" #: ../bleachbit/GUI.py:454 msgid "System information" msgstr "O systemie" #: ../bleachbit/GUI.py:527 msgid "Choose files to shred" msgstr "Wybierz pliki do wyczyszczenia zawartości" #: ../bleachbit/GUI.py:530 msgid "Choose folder to shred" msgstr "Wybierz folder do wyczyszczenia zawartości" #: ../bleachbit/GUI.py:594 ../bleachbit/GuiPreferences.py:197 #: ../bleachbit/GuiPreferences.py:326 ../bleachbit/GuiPreferences.py:367 msgid "Choose a folder" msgstr "Wybierz folder" #. TRANSLATORS: this is the context menu #: ../bleachbit/GUI.py:627 msgid "Preview" msgstr "Podgląd" #: ../bleachbit/GUI.py:734 msgid "_Shred Files" msgstr "Wyczyść zawartość _plików" #: ../bleachbit/GUI.py:736 msgid "Sh_red Folders" msgstr "Wyczyść zawartość _folderów" #: ../bleachbit/GUI.py:738 msgid "_Wipe Free Space" msgstr "_Nadpisz pustą przestrzeń" #: ../bleachbit/GUI.py:740 msgid "S_hred Settings and Quit" msgstr "Wymaż us_tawienia i wyjdź" #: ../bleachbit/GUI.py:742 msgid "_Quit" msgstr "_Wyjście" #: ../bleachbit/GUI.py:744 msgid "_File" msgstr "Pli_k" #: ../bleachbit/GUI.py:746 ../bleachbit/GuiPreferences.py:58 msgid "Preferences" msgstr "Preferencje" #: ../bleachbit/GUI.py:747 msgid "_Edit" msgstr "_Edycja" #: ../bleachbit/GUI.py:748 msgid "Help Contents" msgstr "Spis treści pomocy" #: ../bleachbit/GUI.py:751 msgid "_Release Notes" msgstr "Informacje _o wydaniu" #: ../bleachbit/GUI.py:754 msgid "_System Information" msgstr "Informacje o _systemie" #: ../bleachbit/GUI.py:757 msgid "_About" msgstr "O progr_amie" #: ../bleachbit/GUI.py:758 msgid "_Help" msgstr "Pomo_c" #: ../bleachbit/GUI.py:783 msgctxt "button" msgid "Preview" msgstr "Podgląd" #: ../bleachbit/GUI.py:788 msgid "Preview files in the selected operations (without deleting any files)" msgstr "Podejrzyj efekty działania wybranych opcji (bez usuwania niczego)" #: ../bleachbit/GUI.py:798 msgctxt "button" msgid "Clean" msgstr "Wyczyść" #: ../bleachbit/GUI.py:802 msgid "Clean files in the selected operations" msgstr "Usuwa pliki przy obecnych opcjach" #: ../bleachbit/GUI.py:893 msgid "Error when checking for updates: " msgstr "Błąd podczas sprawdzania aktualizacji " #: ../bleachbit/GUI.py:932 msgid "" "Error loading the SQLite module: the antivirus software may be blocking it." msgstr "" "Błąd ładowania modułu SQLite: oprogramowanie antywirusowe może go blokować." #: ../bleachbit/GUI.py:935 msgid "" "You are running BleachBit with administrative privileges for cleaning shared " "parts of the system, and references to the user profile folder will clean " "only the root account." msgstr "" "Uruchomiłeś BleachBit z przywilejami administratora, w związku z czym " "czyszczone będą wspólne elementy systemu oraz katalog domowy użytkownika " "root." #: ../bleachbit/GUI.py:940 msgid "" "Run BleachBit with administrator privileges to improve the accuracy of " "overwriting the contents of files." msgstr "" "Uruchom BleachBit z uprawnieniami administratora, aby poprawić dokładność " "nadpisywania zawartości plików." #: ../bleachbit/GuiPreferences.py:64 msgid "General" msgstr "Ogólne" #: ../bleachbit/GuiPreferences.py:67 msgid "Drives" msgstr "Napędy" #: ../bleachbit/GuiPreferences.py:70 msgid "Languages" msgstr "Języki" #: ../bleachbit/GuiPreferences.py:72 msgid "Whitelist" msgstr "Biała lista" #: ../bleachbit/GuiPreferences.py:117 msgid "Check periodically for software updates via the Internet" msgstr "Sprawdzaj okresowo dostępność aktualizacji w Internecie" #: ../bleachbit/GuiPreferences.py:122 msgid "" "If an update is found, you will be given the option to view information " "about it. Then, you may manually download and install the update." msgstr "" "Jeśli aktualizacja zostanie znaleziona, zostaniesz o niej poinformowany i " "będziesz mógł ręcznie pobrać ją i zainstalować." #: ../bleachbit/GuiPreferences.py:128 msgid "Check for new beta releases" msgstr "Sprawdź nowe wydania beta" #: ../bleachbit/GuiPreferences.py:137 msgid "Download and update cleaners from community (winapp2.ini)" msgstr "" "Pobierz i zaktualizuj instrukcje czyszczenia przygotowane przez społeczność " "(winapp2.ini)" #. TRANSLATORS: This means to hide cleaners which would do #. nothing. For example, if Firefox were never used on #. this system, this option would hide Firefox to simplify #. the list of cleaners. #: ../bleachbit/GuiPreferences.py:151 msgid "Hide irrelevant cleaners" msgstr "Ukryj niepasujące instrukcje sprzątania" #. TRANSLATORS: Overwriting is the same as shredding. It is a way #. to prevent recovery of the data. You could also translate #. 'Shred files to prevent recovery.' #: ../bleachbit/GuiPreferences.py:159 msgid "Overwrite contents of files to prevent recovery" msgstr "Nadpisz zawartość plików, aby uniemożliwić ich późniejsze odzyskanie" #: ../bleachbit/GuiPreferences.py:163 msgid "" "Overwriting is ineffective on some file systems and with certain BleachBit " "operations. Overwriting is significantly slower." msgstr "" "Nadpisywanie jest nieefektywne z niektórymi rodzajami systemów plików i z " "częścią opcji BleachBit. Nadpisywanie znacznie wydłuża czas operacji." #: ../bleachbit/GuiPreferences.py:166 msgid "Start BleachBit with computer" msgstr "Uruchamiaj BleachBit przy starcie systemu" #: ../bleachbit/GuiPreferences.py:172 msgid "Exit after cleaning" msgstr "Wyjdź po czyszczeniu" #: ../bleachbit/GuiPreferences.py:178 msgid "Confirm before delete" msgstr "Potwierdź przed usunięciem" #: ../bleachbit/GuiPreferences.py:186 msgid "Use IEC sizes (1 KiB = 1024 bytes) instead of SI (1 kB = 1000 bytes)" msgstr "" "Używaj normy wielkości IEC (1 KiB = 1024 bajty) zamiast SI (1 kB = 1000 " "bajtów)" #: ../bleachbit/GuiPreferences.py:221 msgid "" "Choose a writable folder for each drive for which to overwrite free space." msgstr "" "Wybierz zapisywalny katalog dla każdego napędu, celem nadpisania wolnej " "przestrzeni." #. TRANSLATORS: In the preferences dialog, this button adds a path to #. the list of paths #: ../bleachbit/GuiPreferences.py:243 msgctxt "button" msgid "Add" msgstr "Dodaj" #. TRANSLATORS: In the preferences dialog, this button removes a path #. from the list of paths #: ../bleachbit/GuiPreferences.py:247 ../bleachbit/GuiPreferences.py:458 msgctxt "button" msgid "Remove" msgstr "Usuń" #: ../bleachbit/GuiPreferences.py:272 msgid "All languages will be deleted except those checked." msgstr "Zostaną usunięte wszystkie języki poza wybranymi." #: ../bleachbit/GuiPreferences.py:288 msgid "Preserve" msgstr "Zachowaj" #: ../bleachbit/GuiPreferences.py:292 msgid "Code" msgstr "Kod" #: ../bleachbit/GuiPreferences.py:313 ../bleachbit/GuiPreferences.py:354 msgid "Choose a file" msgstr "Wybierz plik" #: ../bleachbit/GuiPreferences.py:320 ../bleachbit/GuiPreferences.py:361 #: ../bleachbit/GuiPreferences.py:405 msgid "File" msgstr "Plik" #: ../bleachbit/GuiPreferences.py:334 ../bleachbit/GuiPreferences.py:375 #: ../bleachbit/GuiPreferences.py:407 msgid "Folder" msgstr "Folder" #: ../bleachbit/GuiPreferences.py:417 msgid "Theses paths will not be deleted or modified." msgstr "Te ścieżki nie będą usuwane lub modyfikowane." #: ../bleachbit/GuiPreferences.py:420 msgid "These locations can be selected for deletion." msgstr "Te ścieżki mogą być zaznaczone do usuwania." #: ../bleachbit/GuiPreferences.py:428 msgid "Type" msgstr "Rodzaj" #. TRANSLATORS: In the tree view "Path" is used generically to refer to a #. file, a folder, or a pattern describing either #: ../bleachbit/GuiPreferences.py:434 msgid "Path" msgstr "Ścieżka" #: ../bleachbit/GuiPreferences.py:446 msgctxt "button" msgid "Add file" msgstr "Dodaj plik" #: ../bleachbit/GuiPreferences.py:452 msgctxt "button" msgid "Add folder" msgstr "Dodaj folder" bleachbit-2.0/po/en_GB.po0000644000175000017500000013264113245436307013340 0ustar hlehle# English (United Kingdom) translation for bleachbit # Copyright (c) 2011 Rosetta Contributors and Canonical Ltd 2011 # This file is distributed under the same license as the bleachbit package. # FIRST AUTHOR , 2011. # msgid "" msgstr "" "Project-Id-Version: bleachbit\n" "Report-Msgid-Bugs-To: FULL NAME \n" "POT-Creation-Date: 2017-02-11 11:12-0700\n" "PO-Revision-Date: 2018-01-10 12:30+0000\n" "Last-Translator: Anthony Harrington \n" "Language-Team: English (United Kingdom) \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n != 1;\n" "X-Launchpad-Export-Date: 2018-01-11 03:24+0000\n" "X-Generator: Launchpad (build 18521)\n" #: ../cleaners/mc.xml ../cleaners/tortoisesvn.xml ../cleaners/vim.xml #: ../cleaners/safari.xml ../cleaners/links2.xml ../cleaners/seamonkey.xml #: ../cleaners/realplayer.xml ../cleaners/windows_defender.xml #: ../cleaners/d4x.xml ../cleaners/sqlite3.xml #: ../cleaners/internet_explorer.xml ../cleaners/libreoffice.xml #: ../cleaners/easytag.xml ../cleaners/bash.xml ../cleaners/nautilus.xml #: ../cleaners/octave.xml ../cleaners/elinks.xml ../cleaners/chromium.xml #: ../cleaners/google_chrome.xml msgid "History" msgstr "History" #: ../cleaners/mc.xml ../cleaners/tortoisesvn.xml ../cleaners/links2.xml #: ../cleaners/realplayer.xml ../cleaners/d4x.xml ../cleaners/libreoffice.xml #: ../cleaners/easytag.xml ../cleaners/nautilus.xml ../cleaners/gnome.xml #: ../bleachbit/Cleaner.py:349 ../bleachbit/Cleaner.py:423 #: ../bleachbit/Cleaner.py:432 msgid "Delete the usage history" msgstr "Delete the usage history" #: ../cleaners/gpodder.xml ../cleaners/hippo_opensim_viewer.xml #: ../cleaners/thumbnails.xml ../cleaners/safari.xml ../cleaners/emesene.xml #: ../cleaners/liferea.xml ../cleaners/seamonkey.xml ../cleaners/vuze.xml #: ../cleaners/yahoo_messenger.xml ../cleaners/pidgin.xml #: ../cleaners/adobe_reader.xml ../cleaners/evolution.xml #: ../cleaners/tremulous.xml ../cleaners/libreoffice.xml ../cleaners/xine.xml #: ../cleaners/nexuiz.xml ../cleaners/exaile.xml ../cleaners/opera.xml #: ../cleaners/amsn.xml ../cleaners/gftp.xml ../cleaners/miro.xml #: ../cleaners/beagle.xml ../cleaners/kde.xml ../cleaners/epiphany.xml #: ../cleaners/flash.xml ../cleaners/secondlife_viewer.xml ../cleaners/java.xml #: ../cleaners/chromium.xml ../cleaners/audacious.xml ../cleaners/rhythmbox.xml #: ../cleaners/google_chrome.xml ../cleaners/thunderbird.xml #: ../bleachbit/Cleaner.py:192 ../bleachbit/Cleaner.py:370 #: ../bleachbit/Cleaner.py:455 msgid "Cache" msgstr "Cache" #: ../cleaners/gpodder.xml ../cleaners/yum.xml #: ../cleaners/hippo_opensim_viewer.xml ../cleaners/thumbnails.xml #: ../cleaners/windows_explorer.xml ../cleaners/liferea.xml #: ../cleaners/vuze.xml ../cleaners/yahoo_messenger.xml ../cleaners/pidgin.xml #: ../cleaners/adobe_reader.xml ../cleaners/evolution.xml #: ../cleaners/libreoffice.xml ../cleaners/apt.xml ../cleaners/xine.xml #: ../cleaners/nexuiz.xml ../cleaners/exaile.xml ../cleaners/amsn.xml #: ../cleaners/gftp.xml ../cleaners/miro.xml ../cleaners/beagle.xml #: ../cleaners/kde.xml ../cleaners/flash.xml ../cleaners/secondlife_viewer.xml #: ../cleaners/java.xml ../cleaners/audacious.xml ../cleaners/rhythmbox.xml #: ../bleachbit/Cleaner.py:370 ../bleachbit/Cleaner.py:455 #: ../bleachbit/Cleaner.py:489 ../bleachbit/Cleaner.py:491 msgid "Delete the cache" msgstr "Delete the cache" #. TRANSLATORS: Vacuum is a verb. The term is jargon #. from the SQLite database. Microsoft Access uses #. the term 'Compact Database' (which you may translate #. instead). Another synonym is 'defragment.' #: ../cleaners/gpodder.xml ../cleaners/yum.xml ../cleaners/safari.xml #: ../cleaners/liferea.xml ../cleaners/chromium.xml #: ../cleaners/google_chrome.xml ../cleaners/thunderbird.xml #: ../bleachbit/Cleaner.py:214 ../bleachbit/Cleaner.py:360 #: ../bleachbit/Action.py:445 msgid "Vacuum" msgstr "Vacuum" #: ../cleaners/gpodder.xml ../cleaners/yum.xml ../cleaners/safari.xml #: ../cleaners/liferea.xml ../cleaners/chromium.xml #: ../cleaners/google_chrome.xml ../cleaners/thunderbird.xml #: ../bleachbit/Cleaner.py:215 msgid "" "Clean database fragmentation to reduce space and improve speed without " "removing any data" msgstr "" "Clean database fragmentation to reduce space and improve speed without " "removing any data" #: ../cleaners/yum.xml ../cleaners/apt.xml msgid "Package manager" msgstr "Package manager" #: ../cleaners/warzone2100.xml ../cleaners/hippo_opensim_viewer.xml #: ../cleaners/gl-117.xml ../cleaners/tremulous.xml ../cleaners/nexuiz.xml #: ../cleaners/secondlife_viewer.xml msgid "Game" msgstr "Game" #: ../cleaners/warzone2100.xml ../cleaners/hippo_opensim_viewer.xml #: ../cleaners/teamviewer.xml ../cleaners/realplayer.xml ../cleaners/vuze.xml #: ../cleaners/yahoo_messenger.xml ../cleaners/amule.xml #: ../cleaners/easytag.xml ../cleaners/exaile.xml ../cleaners/screenlets.xml #: ../cleaners/gftp.xml ../cleaners/miro.xml ../cleaners/audacious.xml #: ../bleachbit/Cleaner.py:486 msgid "Logs" msgstr "Logs" #: ../cleaners/warzone2100.xml ../cleaners/hippo_opensim_viewer.xml #: ../cleaners/teamviewer.xml ../cleaners/realplayer.xml ../cleaners/vuze.xml #: ../cleaners/yahoo_messenger.xml ../cleaners/amule.xml ../cleaners/exaile.xml #: ../cleaners/screenlets.xml ../cleaners/gftp.xml ../cleaners/miro.xml #: ../cleaners/audacious.xml ../bleachbit/Cleaner.py:486 msgid "Delete the logs" msgstr "Delete the logs" #: ../cleaners/thumbnails.xml ../cleaners/windows_explorer.xml msgid "Thumbnails" msgstr "Thumbnails" #: ../cleaners/thumbnails.xml msgid "Icons for files on the system" msgstr "Icons for files on the system" #: ../cleaners/vim.xml ../cleaners/gedit.xml msgid "Editor" msgstr "Editor" #: ../cleaners/vim.xml msgid "" "Delete ~/.viminfo which includes file history, command history, and buffers" msgstr "" "Delete ~/.viminfo which includes file history, command history, and buffers" #: ../cleaners/filezilla.xml ../cleaners/transmission.xml ../cleaners/vuze.xml #: ../cleaners/amule.xml ../cleaners/gftp.xml msgid "File transfer client" msgstr "File transfer client" #: ../cleaners/filezilla.xml ../cleaners/paint.xml #: ../cleaners/windows_media_player.xml ../cleaners/windows_explorer.xml #: ../cleaners/teamviewer.xml ../cleaners/microsoft_office.xml #: ../cleaners/vlc.xml ../cleaners/adobe_reader.xml ../cleaners/winamp.xml #: ../cleaners/winzip.xml ../cleaners/winrar.xml ../cleaners/audacious.xml #: ../cleaners/wordpad.xml ../bleachbit/Cleaner.py:371 msgid "Most recently used" msgstr "Most recently used" #: ../cleaners/filezilla.xml ../cleaners/windows_explorer.xml #: ../cleaners/gwenview.xml ../cleaners/adobe_reader.xml ../cleaners/gedit.xml #: ../cleaners/kde.xml ../cleaners/audacious.xml ../bleachbit/Cleaner.py:372 #: ../bleachbit/Cleaner.py:469 msgid "Delete the list of recently used documents" msgstr "Delete the list of recently used documents" #: ../cleaners/skype.xml ../cleaners/emesene.xml #: ../cleaners/yahoo_messenger.xml ../cleaners/pidgin.xml ../cleaners/amsn.xml msgid "Chat client" msgstr "Chat client" #: ../cleaners/skype.xml ../cleaners/hexchat.xml ../cleaners/emesene.xml #: ../cleaners/seamonkey.xml ../cleaners/yahoo_messenger.xml #: ../cleaners/pidgin.xml ../cleaners/amsn.xml msgid "Chat logs" msgstr "Chat logs" #: ../cleaners/skype.xml ../cleaners/hexchat.xml ../cleaners/emesene.xml #: ../cleaners/seamonkey.xml ../cleaners/yahoo_messenger.xml #: ../cleaners/pidgin.xml ../cleaners/amsn.xml msgid "Delete the chat logs" msgstr "Delete the chat logs" #: ../cleaners/skype.xml msgid "Installers" msgstr "Installers" #: ../cleaners/skype.xml msgid "Delete cached patches and installers" msgstr "Delete cached patches and installers" #: ../cleaners/hexchat.xml msgid "IRC client formerly known as XChat" msgstr "IRC client formerly known as XChat" #: ../cleaners/safari.xml ../cleaners/links2.xml ../cleaners/seamonkey.xml #: ../cleaners/konqueror.xml ../cleaners/internet_explorer.xml #: ../cleaners/opera.xml ../cleaners/epiphany.xml ../cleaners/elinks.xml #: ../cleaners/chromium.xml ../cleaners/google_chrome.xml #: ../bleachbit/Cleaner.py:226 msgid "Web browser" msgstr "Web browser" #: ../cleaners/safari.xml ../cleaners/seamonkey.xml ../cleaners/opera.xml #: ../cleaners/epiphany.xml ../cleaners/chromium.xml #: ../cleaners/google_chrome.xml ../cleaners/thunderbird.xml #: ../bleachbit/Cleaner.py:193 msgid "Delete the web cache, which reduces time to display revisited pages" msgstr "Delete the web cache, which reduces time to display revisited pages" #: ../cleaners/safari.xml ../cleaners/liferea.xml ../cleaners/seamonkey.xml #: ../cleaners/realplayer.xml ../cleaners/konqueror.xml #: ../cleaners/internet_explorer.xml ../cleaners/opera.xml #: ../cleaners/epiphany.xml ../cleaners/flash.xml ../cleaners/silverlight.xml #: ../cleaners/chromium.xml ../cleaners/google_chrome.xml #: ../cleaners/thunderbird.xml ../bleachbit/Cleaner.py:194 msgid "Cookies" msgstr "Cookies" #: ../cleaners/safari.xml ../cleaners/liferea.xml ../cleaners/seamonkey.xml #: ../cleaners/realplayer.xml ../cleaners/konqueror.xml #: ../cleaners/internet_explorer.xml ../cleaners/opera.xml #: ../cleaners/epiphany.xml ../cleaners/flash.xml ../cleaners/silverlight.xml #: ../cleaners/chromium.xml ../cleaners/google_chrome.xml #: ../cleaners/thunderbird.xml ../bleachbit/Cleaner.py:195 msgid "" "Delete cookies, which contain information such as web site preferences, " "authentication, and tracking identification" msgstr "" "Delete cookies, which contain information such as web site preferences, " "authentication, and tracking identification" #: ../cleaners/safari.xml ../cleaners/konqueror.xml #: ../cleaners/internet_explorer.xml ../cleaners/opera.xml #: ../bleachbit/Cleaner.py:213 msgid "List of visited web pages" msgstr "List of visited web pages" #. Torrent software can block a list of IP addresses, such as those that may belong to malware or anti-piracy organizations #: ../cleaners/transmission.xml msgid "Blocklists" msgstr "Blocklists" #: ../cleaners/transmission.xml ../cleaners/windows_defender.xml #: ../cleaners/beagle.xml ../cleaners/thunderbird.xml ../cleaners/deepscan.xml #: ../bleachbit/Cleaner.py:197 msgid "Delete the files" msgstr "Delete the files" #: ../cleaners/transmission.xml msgid "Blocklists will need update to work." msgstr "Blocklists will need to be updated to work effectively." #: ../cleaners/transmission.xml msgid "Torrents" msgstr "Torrents" #: ../cleaners/transmission.xml msgid "Delete the torrents (just the metadata but not the files described)" msgstr "Delete the torrents (just the meta-data but not the files described)" #: ../cleaners/transmission.xml msgid "Statistics" msgstr "Statistics" #: ../cleaners/transmission.xml msgid "Delete the file" msgstr "Delete the file" #: ../cleaners/paint.xml ../cleaners/windows_media_player.xml #: ../cleaners/windows_explorer.xml ../cleaners/teamviewer.xml #: ../cleaners/microsoft_office.xml ../cleaners/vlc.xml ../cleaners/winamp.xml #: ../cleaners/winzip.xml ../cleaners/winrar.xml ../cleaners/wordpad.xml msgid "Delete the most recently used list" msgstr "Delete the most recently used list" #: ../cleaners/emesene.xml msgid "Delete the avatars and emoticons cache" msgstr "Delete the avatars and emoticons cache" #: ../cleaners/windows_media_player.xml ../cleaners/realplayer.xml #: ../cleaners/vlc.xml ../cleaners/winamp.xml msgid "Media player" msgstr "Media player" #: ../cleaners/windows_explorer.xml ../cleaners/nautilus.xml msgid "File manager" msgstr "File manager" #: ../cleaners/windows_explorer.xml ../cleaners/gwenview.xml #: ../cleaners/gedit.xml ../cleaners/kde.xml ../bleachbit/Cleaner.py:468 #: ../bleachbit/Cleaner.py:663 msgid "Recent documents list" msgstr "Recent documents list" #: ../cleaners/windows_explorer.xml msgid "" "This option will reset pinned locations in Quick Access to their defaults." msgstr "" "This option will reset pinned locations in Quick Access to their defaults." #. In Windows 'Run' is the dialog in the Start menu #. In GNOME 'Run' is the dialog shown when typing ALT+F2' #: ../cleaners/windows_explorer.xml ../cleaners/gnome.xml msgid "Run" msgstr "Run" #: ../cleaners/windows_explorer.xml ../cleaners/opera.xml ../cleaners/gnome.xml #: ../cleaners/google_toolbar.xml msgid "Search history" msgstr "Search history" #: ../cleaners/windows_explorer.xml ../cleaners/opera.xml ../cleaners/gnome.xml #: ../cleaners/google_toolbar.xml msgid "Delete the search history" msgstr "Delete the search history" #: ../cleaners/windows_explorer.xml msgid "This will restart Windows Explorer." msgstr "This will restart Windows Explorer." #: ../cleaners/gl-117.xml ../cleaners/microsoft_office.xml #: ../cleaners/beagle.xml ../cleaners/secondlife_viewer.xml ../cleaners/x11.xml msgid "Debug logs" msgstr "Debug logs" #: ../cleaners/gl-117.xml ../cleaners/microsoft_office.xml #: ../cleaners/easytag.xml ../cleaners/beagle.xml #: ../cleaners/secondlife_viewer.xml ../cleaners/x11.xml msgid "Delete the debug logs" msgstr "Delete the debug logs" #: ../cleaners/google_earth.xml ../cleaners/winetricks.xml ../cleaners/vuze.xml #: ../cleaners/adobe_reader.xml ../cleaners/amule.xml ../cleaners/wine.xml #: ../cleaners/internet_explorer.xml ../cleaners/gimp.xml ../cleaners/kde.xml #: ../cleaners/deepscan.xml ../bleachbit/Cleaner.py:520 msgid "Temporary files" msgstr "Temporary files" #: ../cleaners/google_earth.xml ../cleaners/winetricks.xml ../cleaners/vuze.xml #: ../cleaners/adobe_reader.xml ../cleaners/amule.xml ../cleaners/wine.xml #: ../cleaners/internet_explorer.xml ../cleaners/gimp.xml ../cleaners/kde.xml #: ../cleaners/deepscan.xml ../bleachbit/Cleaner.py:520 msgid "Delete the temporary files" msgstr "Delete the temporary files" #: ../cleaners/seamonkey.xml ../cleaners/opera.xml ../bleachbit/Cleaner.py:201 msgid "Download history" msgstr "Download history" #: ../cleaners/seamonkey.xml ../cleaners/opera.xml ../bleachbit/Cleaner.py:201 msgid "List of files downloaded" msgstr "List of files downloaded" #: ../cleaners/seamonkey.xml msgid "Delete the list of visited web pages" msgstr "Delete the list of visited web pages" #: ../cleaners/vuze.xml ../cleaners/deepscan.xml ../bleachbit/Cleaner.py:190 msgid "Backup files" msgstr "Backup files" #: ../cleaners/vuze.xml ../cleaners/deepscan.xml ../bleachbit/Cleaner.py:191 msgid "Delete the backup files" msgstr "Delete the backup files" #: ../cleaners/konqueror.xml ../cleaners/opera.xml ../cleaners/chromium.xml msgid "Current session" msgstr "Current session" #: ../cleaners/konqueror.xml ../cleaners/opera.xml ../cleaners/chromium.xml msgid "Delete the current session" msgstr "Delete the current session" #: ../cleaners/konqueror.xml ../cleaners/opera.xml ../bleachbit/Cleaner.py:213 msgid "URL history" msgstr "URL history" #: ../cleaners/microsoft_office.xml ../cleaners/libreoffice.xml #: ../bleachbit/Cleaner.py:375 msgid "Office suite" msgstr "Office suite" #: ../cleaners/windows_defender.xml msgid "Anti-virus" msgstr "Anti-virus" #: ../cleaners/journald.xml msgid "System journals" msgstr "System journals" #: ../cleaners/journald.xml msgid "Clean old system journals" msgstr "Clean old system journals" #: ../cleaners/adobe_reader.xml msgid "Document viewer" msgstr "Document viewer" #: ../cleaners/evolution.xml ../cleaners/thunderbird.xml msgid "Email client" msgstr "E-mail client" #: ../cleaners/tremulous.xml msgid "Delete the list of game servers" msgstr "Delete the list of game servers" #: ../cleaners/sqlite3.xml ../cleaners/bash.xml ../cleaners/octave.xml msgid "Delete the command history" msgstr "Delete the command history" #: ../cleaners/wine.xml msgid "Compatibility layer for Windows software" msgstr "Compatibility layer for Windows software" #: ../cleaners/internet_explorer.xml ../cleaners/chromium.xml #: ../cleaners/google_chrome.xml ../bleachbit/Cleaner.py:202 msgid "Form history" msgstr "Form history" #: ../cleaners/internet_explorer.xml ../bleachbit/Cleaner.py:203 msgid "A history of forms entered in web sites and in the Search bar" msgstr "A history of forms entered in web sites and in the Search bar" #. This software edits metadata tags, such as title and artist, in audio files #: ../cleaners/easytag.xml msgid "Audio files tagger" msgstr "Audio files tagger" #: ../cleaners/apt.xml msgid "Delete obsolete files" msgstr "Delete obsolete files" #: ../cleaners/apt.xml msgid "Package lists" msgstr "Package lists" #: ../cleaners/xine.xml ../cleaners/miro.xml ../cleaners/flash.xml msgid "Multimedia viewer" msgstr "Multimedia viewer" #: ../cleaners/recoll.xml ../cleaners/beagle.xml msgid "Search tool" msgstr "Search tool" #: ../cleaners/recoll.xml ../cleaners/beagle.xml ../cleaners/thunderbird.xml msgid "Index" msgstr "Index" #: ../cleaners/recoll.xml msgid "" "Delete the search index, a database of words and the files they contain" msgstr "" "Delete the search index, a database of words and the files they contain" #: ../cleaners/gimp.xml msgid "Graphics editor" msgstr "Graphics editor" #: ../cleaners/exaile.xml msgid "Downloaded podcasts" msgstr "Downloaded podcasts" #: ../cleaners/exaile.xml msgid "Delete downloaded podcasts" msgstr "Delete downloaded podcasts" #: ../cleaners/bash.xml msgid "Shell" msgstr "Shell" #. TRANSLATORS: DOM = Document Object Model. #: ../cleaners/opera.xml ../cleaners/epiphany.xml ../cleaners/chromium.xml #: ../cleaners/google_chrome.xml ../bleachbit/Cleaner.py:199 msgid "DOM Storage" msgstr "DOM Storage" #: ../cleaners/opera.xml ../cleaners/epiphany.xml ../cleaners/chromium.xml #: ../cleaners/google_chrome.xml ../bleachbit/Cleaner.py:199 msgid "Delete HTML5 cookies" msgstr "Delete HTML5 cookies" #: ../cleaners/opera.xml ../cleaners/epiphany.xml ../cleaners/chromium.xml #: ../cleaners/google_chrome.xml ../cleaners/thunderbird.xml #: ../bleachbit/Cleaner.py:208 msgid "Passwords" msgstr "Passwords" #: ../cleaners/opera.xml ../cleaners/epiphany.xml ../cleaners/chromium.xml #: ../cleaners/google_chrome.xml ../cleaners/thunderbird.xml #: ../bleachbit/Cleaner.py:209 msgid "" "A database of usernames and passwords as well as a list of sites that should " "not store passwords" msgstr "" "A database of usernames and passwords as well as a list of sites that should " "not store passwords" #: ../cleaners/opera.xml ../cleaners/epiphany.xml ../cleaners/chromium.xml #: ../cleaners/google_chrome.xml ../cleaners/thunderbird.xml #: ../bleachbit/Cleaner.py:211 msgid "This option will delete your saved passwords." msgstr "This option will delete your saved passwords." #: ../cleaners/nautilus.xml msgid "Custom folders will be reset." msgstr "Custom folders will be reset." #: ../cleaners/gnome.xml ../cleaners/kde.xml msgid "Desktop environment" msgstr "Desktop environment" #: ../cleaners/screenlets.xml msgid "Widgets for the desktop" msgstr "Widgets for the desktop" #: ../cleaners/epiphany.xml msgid "Places" msgstr "Places" #: ../cleaners/epiphany.xml msgid "" "A database of URLs including bookmarks, favicons, and a history of visited " "web sites" msgstr "" "A database of URLs including bookmarks, favicons, and a history of visited " "web sites" #: ../cleaners/epiphany.xml msgid "This option deletes all bookmarks." msgstr "This option deletes all bookmarks." #: ../cleaners/winrar.xml msgid "File archiver" msgstr "File archiver" #: ../cleaners/elinks.xml msgid "Delete the cookies, visited URLs, and search history" msgstr "Delete the cookies, visited URLs, and search history" #: ../cleaners/chromium.xml ../cleaners/google_chrome.xml msgid "A history of forms entered in web sites" msgstr "A history of forms entered in web sites" #: ../cleaners/chromium.xml ../cleaners/google_chrome.xml msgid "" "Delete the history which includes visited sites, downloads, and thumbnails" msgstr "" "Delete the history which includes visited sites, downloads, and thumbnails" #: ../cleaners/chromium.xml ../cleaners/google_chrome.xml msgid "Search engines" msgstr "Search engines" #. 'Factory' means a search engine that is installed by default 'from the factory,' but this is different than a 'default search engine' https://lists.launchpad.net/launchpad-translators/msg00283.html #: ../cleaners/chromium.xml ../cleaners/google_chrome.xml msgid "" "Reset the search engine usage history and delete non-factory search engines, " "some of which are added automatically" msgstr "" "Reset the search engine usage history and delete non-factory search engines, " "some of which are added automatically" #: ../cleaners/audacious.xml msgid "Audio player" msgstr "Audio player" #: ../cleaners/rhythmbox.xml msgid "Database" msgstr "Database" #: ../cleaners/rhythmbox.xml msgid "" "Delete the database, which contain information such as play count and last " "played" msgstr "" "Delete the database, which contain information such as play count and last " "played" #: ../cleaners/google_chrome.xml msgid "Session" msgstr "Session" #: ../cleaners/google_chrome.xml msgid "Delete the current and last sessions" msgstr "Delete the current and last sessions" #: ../cleaners/x11.xml msgid "Windowing system" msgstr "Windowing system" #: ../cleaners/wordpad.xml msgid "Word processor" msgstr "Word processor" #: ../cleaners/deepscan.xml msgid "Deep scan" msgstr "Deep scan" #: ../cleaners/deepscan.xml msgid "Clean files widely scattered across the disk" msgstr "Clean files widely scattered across the disk" #: ../cleaners/deepscan.xml msgid "Inspect the preview for any files you want to keep." msgstr "Inspect the preview for any files you want to keep." #: ../cleaners/deepscan.xml msgid "This option is slow." msgstr "This option is slow." #: ../bleachbit.desktop msgid "Unnecessary file cleaner" msgstr "Unnecessary file cleaner" #: ../bleachbit.desktop msgid "Free space and maintain privacy" msgstr "Free space and maintain privacy" #: ../bleachbit/FileUtilities.py:668 msgid "" "There was at least one file on a file system that does not support advanced " "overwriting." msgstr "" "There was at least one file on a file system that does not support advanced " "overwriting." #: ../bleachbit/Unix.py:574 #, python-format msgid "Executable not found: %s" msgstr "Executable not found: %s" #. TRANSLATORS: %s expands to a name such as 'Firefox' or 'System'. #: ../bleachbit/Unix.py:623 ../bleachbit/Worker.py:136 #, python-format msgid "" "%s cannot be cleaned because it is currently running. Close it, and try " "again." msgstr "" "%s cannot be cleaned because it is currently running. Close it, and try " "again." #: ../bleachbit/GuiBasic.py:112 msgid "Delete confirmation" msgstr "Delete confirmation" #: ../bleachbit/GuiBasic.py:122 msgid "" "Are you sure you want to permanently delete files according to the selected " "operations? The actual files that will be deleted may have changed since " "you ran the preview." msgstr "" "Are you sure you want to permanently delete files according to the selected " "operations? The actual files that will be deleted may have changed since " "you ran the preview." #: ../bleachbit/GuiBasic.py:125 msgid "Are you sure you want to permanently delete these files?" msgstr "Are you sure you want to permanently delete these files?" #: ../bleachbit/GuiBasic.py:162 #, python-format msgid "" "Because you are running as root, please manually open this link in a web " "browser:\n" "%s" msgstr "" "Because you are running as root, please manually open this link in a web " "browser:\n" "%s" #. TRANSLATORS: %s expands to www.bleachbit.org or similar #: ../bleachbit/GuiBasic.py:174 #, python-format msgid "Open web browser to %s?" msgstr "Open web browser to %s?" #. TRANSLATORS: This is the label in the log indicating was #. skipped because it matches the whitelist #: ../bleachbit/Command.py:47 msgid "Skip" msgstr "Skip" #. TRANSLATORS: This is the label in the log indicating will be #. deleted (for previews) or was actually deleted #: ../bleachbit/Command.py:77 msgid "Delete" msgstr "Delete" #: ../bleachbit/Command.py:99 msgid "" "At least one file was locked by another process, so its contents could not " "be overwritten. It will be marked for deletion upon system reboot." msgstr "" "At least one file was locked by another process, so its contents could not " "be overwritten. It will be marked for deletion upon system reboot." #. TRANSLATORS: The file will be deleted when the #. system reboots #: ../bleachbit/Command.py:102 msgid "Mark for deletion" msgstr "Mark for deletion" #. TRANSLATORS: Parts of this file will be deleted #: ../bleachbit/Command.py:199 ../bleachbit/Command.py:233 #: ../bleachbit/Action.py:254 ../bleachbit/Action.py:267 #: ../bleachbit/Action.py:280 ../bleachbit/Action.py:293 #: ../bleachbit/Action.py:306 msgid "Clean file" msgstr "Clean file" #. TRANSLATORS: The file will be truncated to 0 bytes in length #: ../bleachbit/Command.py:275 msgid "Truncate" msgstr "Truncate" #: ../bleachbit/Command.py:317 msgid "Delete registry key" msgstr "Delete registry key" #. TRANSLATORS: This is cleaner name for cleaners imported from winapp2.ini #: ../bleachbit/Winapp.py:44 msgid "Applications" msgstr "Applications" #. TRANSLATORS: This is cleaner name for cleaners imported #. from winapp2.ini #: ../bleachbit/Winapp.py:47 msgid "Internet" msgstr "Internet" #. TRANSLATORS: This is cleaner name for cleaners imported #. from winapp2.ini #: ../bleachbit/Winapp.py:50 msgid "Multimedia" msgstr "Multimedia" #. TRANSLATORS: This is cleaner name for cleaners imported #. from winapp2.ini #: ../bleachbit/Winapp.py:53 msgid "Utilities" msgstr "Utilities" #: ../bleachbit/Winapp.py:64 msgid "Games" msgstr "Games" #: ../bleachbit/Winapp.py:162 msgid "Imported from winapp2.ini" msgstr "Imported from winapp2.ini" #: ../bleachbit/Cleaner.py:197 msgid "Crash reports" msgstr "Crash reports" #: ../bleachbit/Cleaner.py:204 msgid "Session restore" msgstr "Session restore" #: ../bleachbit/Cleaner.py:205 msgid "Loads the initial session after the browser closes or crashes" msgstr "Loads the initial session after the browser closes or crashes" #: ../bleachbit/Cleaner.py:207 msgid "Site preferences" msgstr "Site preferences" #: ../bleachbit/Cleaner.py:207 msgid "Settings for individual sites" msgstr "Settings for individual sites" #. TRANSLATORS: desktop entries are .desktop files in Linux that #. make up the application menu (the menu that shows BleachBit, #. Firefox, and others. The .desktop files also associate file #. types, so clicking on an .html file in Nautilus brings up #. Firefox. #. More information: #. http://standards.freedesktop.org/menu-spec/latest/index.html#introduction #: ../bleachbit/Cleaner.py:453 msgid "Broken desktop files" msgstr "Broken desktop files" #: ../bleachbit/Cleaner.py:454 msgid "Delete broken application menu entries and file associations" msgstr "Delete broken application menu entries and file associations" #. TRANSLATORS: Localizations are files supporting specific #. languages, so applications appear in Spanish, etc. #: ../bleachbit/Cleaner.py:458 msgid "Localizations" msgstr "Localisations" #: ../bleachbit/Cleaner.py:459 msgid "Delete files for unwanted languages" msgstr "Delete files for unwanted languages" #: ../bleachbit/Cleaner.py:461 msgid "Configure this option in the preferences." msgstr "Configure this option in the preferences." #: ../bleachbit/Cleaner.py:467 msgid "Rotated logs" msgstr "Rotated logs" #: ../bleachbit/Cleaner.py:467 msgid "Delete old system logs" msgstr "Delete old system logs" #: ../bleachbit/Cleaner.py:470 msgid "Trash" msgstr "Rubbish Bin" #: ../bleachbit/Cleaner.py:470 msgid "Empty the trash" msgstr "Empty the Rubbish Bin" #: ../bleachbit/Cleaner.py:476 ../bleachbit/Cleaner.py:627 #: ../bleachbit/Worker.py:184 msgid "Memory" msgstr "Memory" #. TRANSLATORS: 'free' means 'unallocated' #: ../bleachbit/Cleaner.py:478 msgid "Wipe the swap and free memory" msgstr "Wipe the swap and free memory" #: ../bleachbit/Cleaner.py:480 msgid "This option is experimental and may cause system problems." msgstr "This option is experimental and may cause system problems." #: ../bleachbit/Cleaner.py:488 msgid "Memory dump" msgstr "Memory dump" #: ../bleachbit/Cleaner.py:488 msgid "Delete the file memory.dmp" msgstr "Delete the file memory.dmp" #. TRANSLATORS: Prefetch is Microsoft Windows jargon. #: ../bleachbit/Cleaner.py:491 msgid "Prefetch" msgstr "Prefetch" #: ../bleachbit/Cleaner.py:493 msgid "Recycle bin" msgstr "Recycle bin" #: ../bleachbit/Cleaner.py:493 ../bleachbit/Cleaner.py:787 msgid "Empty the recycle bin" msgstr "Empty the recycle bin" #. TRANSLATORS: 'Update' is a noun, and 'Update uninstallers' is an option to delete #. the uninstallers for software updates. #: ../bleachbit/Cleaner.py:496 msgid "Update uninstallers" msgstr "Update uninstallers" #: ../bleachbit/Cleaner.py:497 msgid "" "Delete uninstallers for Microsoft updates including hotfixes, service packs, " "and Internet Explorer updates" msgstr "" "Delete uninstallers for Microsoft updates including hotfixes, service packs, " "and Internet Explorer updates" #: ../bleachbit/Cleaner.py:504 ../bleachbit/Cleaner.py:727 msgid "Clipboard" msgstr "Clipboard" #: ../bleachbit/Cleaner.py:505 msgid "" "The desktop environment's clipboard used for copy and paste operations" msgstr "" "The desktop environment's clipboard used for copy and paste operations" #. TRANSLATORS: "Custom" is an option allowing the user to specify which #. files and folders will be erased. #: ../bleachbit/Cleaner.py:512 ../bleachbit/GuiPreferences.py:66 msgid "Custom" msgstr "Custom" #: ../bleachbit/Cleaner.py:513 msgid "Delete user-specified files and folders" msgstr "Delete user-specified files and folders" #. TRANSLATORS: 'free' means 'unallocated' #: ../bleachbit/Cleaner.py:515 msgid "Free disk space" msgstr "Free disk space" #. TRANSLATORS: 'free' means 'unallocated' #: ../bleachbit/Cleaner.py:517 msgid "Overwrite free disk space to hide deleted files" msgstr "Overwrite free disk space to hide deleted files" #: ../bleachbit/Cleaner.py:518 msgid "This option is very slow." msgstr "This option is very slow." #: ../bleachbit/Cleaner.py:522 msgid "The system in general" msgstr "The system in general" #: ../bleachbit/Cleaner.py:524 ../bleachbit/Cleaner.py:857 msgid "System" msgstr "System" #. TRANSLATORS: 'Free' means 'unallocated.' #. %s expands to a path such as C:\ or /tmp/ #: ../bleachbit/Cleaner.py:735 ../bleachbit/Cleaner.py:890 #, python-format msgid "Overwrite free disk space %s" msgstr "Overwrite free disk space %s" #: ../bleachbit/RecognizeCleanerML.py:59 msgid "Security warning" msgstr "Security warning" #: ../bleachbit/RecognizeCleanerML.py:72 msgid "" "These cleaner definitions are new or have changed. Malicious definitions can " "damage your system. If you do not trust these changes, delete the files or " "quit." msgstr "" "These cleaner definitions are new or have changed. Malicious definitions can " "damage your system. If you do not trust these changes, delete the files or " "quit." #: ../bleachbit/RecognizeCleanerML.py:88 msgctxt "column_label" msgid "Delete" msgstr "Permanently Delete" #: ../bleachbit/RecognizeCleanerML.py:93 msgctxt "column_label" msgid "Filename" msgstr "Filename" #. TRANSLATORS: This indicates an error. The special keyword #. %(operation)s will be replaced by 'firefox' or 'opera' or #. some other cleaner ID. The special keyword %(msg)s will be #. replaced by a message such as 'Permission denied.' #: ../bleachbit/Worker.py:74 #, python-format msgid "Exception while running operation '%(operation)s': '%(msg)s'" msgstr "Exception while running operation '%(operation)s': '%(msg)s'" #. TRANSLATORS: 'free' means 'unallocated' #: ../bleachbit/Worker.py:182 msgid "Please wait. Wiping free disk space." msgstr "Please wait. Wiping free disk space." #. TRANSLATORS: %s is replaced with Firefox, System, etc. #: ../bleachbit/Worker.py:184 ../bleachbit/Worker.py:332 #, python-format msgid "Please wait. Cleaning %s." msgstr "Please wait. Cleaning %s." #: ../bleachbit/Worker.py:199 msgid "Please wait. Wiping file system metadata." msgstr "Please wait. Wiping file system metadata." #: ../bleachbit/Worker.py:202 msgid "Please wait. Cleaning up after wiping file system metadata." msgstr "Please wait. Cleaning up after wiping file system metadata." #: ../bleachbit/Worker.py:205 #, python-format msgid "About %d minute remaining." msgid_plural "About %d minutes remaining." msgstr[0] "About %d minute remaining." msgstr[1] "About %d minutes remaining." #. TRANSLATORS: This refers to disk space that was #. really recovered (in other words, not a preview) #: ../bleachbit/Worker.py:272 #, python-format msgid "Disk space recovered: %s" msgstr "Disk space recovered: %s" #. TRANSLATORS: This refers to a preview (no real #. changes were made yet) #: ../bleachbit/Worker.py:276 #, python-format msgid "Disk space to be recovered: %s" msgstr "Disk space to be recovered: %s" #. TRANSLATORS: This refers to the number of files really #. deleted (in other words, not a preview). #: ../bleachbit/Worker.py:281 #, python-format msgid "Files deleted: %d" msgstr "Files deleted: %d" #. TRANSLATORS: This refers to the number of files that #. would be deleted (in other words, simply a preview). #: ../bleachbit/Worker.py:285 #, python-format msgid "Files to be deleted: %d" msgstr "Files to be deleted: %d" #: ../bleachbit/Worker.py:288 #, python-format msgid "Special operations: %d" msgstr "Special operations: %d" #: ../bleachbit/Worker.py:291 #, python-format msgid "Errors: %d" msgstr "Errors: %d" #. TRANSLATORS: The "deep scan" feature searches over broad #. areas of the file system such as the user's whole home directory #. or all the system executables. #: ../bleachbit/Worker.py:306 msgid "Please wait. Running deep scan." msgstr "Please wait. Running deep scan." #. TRANSLATORS: %s is replaced with Firefox, System, etc. #: ../bleachbit/Worker.py:335 #, python-format msgid "Please wait. Previewing %s." msgstr "Please wait. Previewing %s." #: ../bleachbit/Update.py:80 msgid "New winapp2.ini was downloaded." msgstr "New winapp2.ini was downloaded." #: ../bleachbit/Update.py:125 msgid "Update BleachBit" msgstr "Update BleachBit" #: ../bleachbit/Update.py:130 msgid "A new version is available." msgstr "A new version is available." #. TRANSLATORS: %s expands to version such as '0.8.4' or '0.8.5beta' or #. similar #: ../bleachbit/Update.py:139 #, python-format msgid "Update to version %s" msgstr "Update to version %s" #: ../bleachbit/Update.py:164 #, python-format msgid "" "Error when opening a network connection to %s to check for updates. Please " "verify the network is working." msgstr "" "Error when opening a network connection to %s to check for updates. Please " "verify the network is working." #: ../bleachbit/CLI.py:106 #, python-format msgid "not a valid cleaner: %s" msgstr "not a valid cleaner: %s" #. TRANSLATORS: This is the command line usage. Don't translate #. %prog, but do translate usage, options, cleaner, and option. #. More information about the command line is here #. https://www.bleachbit.org/documentation/command-line #: ../bleachbit/CLI.py:133 msgid "usage: %prog [options] cleaner.option1 cleaner.option2" msgstr "usage: %prog [options] cleaner.option1 cleaner.option2" #: ../bleachbit/CLI.py:136 msgid "list cleaners" msgstr "list cleaners" #. TRANSLATORS: predefined cleaners are for applications, such as Firefox and Flash. #. This is different than cleaning an arbitrary file, such as a #. spreadsheet on the desktop. #: ../bleachbit/CLI.py:141 msgid "run cleaners to delete files and make other permanent changes" msgstr "run cleaners to delete files and make other permanent changes" #: ../bleachbit/CLI.py:144 msgid "shred specific files or folders" msgstr "shred specific files or folders" #: ../bleachbit/CLI.py:146 msgid "show system information" msgstr "show system information" #: ../bleachbit/CLI.py:148 msgid "launch the graphical interface" msgstr "launch the graphical interface" #: ../bleachbit/CLI.py:152 msgid "do not prompt for administrator privileges" msgstr "do not prompt for administrator privileges" #: ../bleachbit/CLI.py:157 msgid "preview files to be deleted and other changes" msgstr "preview files to be deleted and other changes" #: ../bleachbit/CLI.py:161 msgid "use options set in the graphical interface" msgstr "use options set in the graphical interface" #: ../bleachbit/CLI.py:164 msgid "update winapp2.ini, if a new version is available" msgstr "update winapp2.ini, if a new version is available" #: ../bleachbit/CLI.py:166 msgid "output version information and exit" msgstr "output version information and exit" #: ../bleachbit/CLI.py:168 msgid "overwrite files to hide contents" msgstr "overwrite files to hide contents" #. TRANSLATORS: this is the context menu #: ../bleachbit/Action.py:382 ../bleachbit/GUI.py:632 msgid "Clean" msgstr "Clean" #: ../bleachbit/Action.py:418 #, python-format msgid "Run external command: %s" msgstr "Run external command: %s" #: ../bleachbit/GUI.py:135 ../bleachbit/GuiPreferences.py:296 msgid "Name" msgstr "Name" #: ../bleachbit/GUI.py:143 msgid "Active" msgstr "Active" #. TRANSLATORS: Size is the label for the column that shows how #. much space an option would clean or did clean #: ../bleachbit/GUI.py:155 msgid "Size" msgstr "Size" #. TRANSLATORS: %(cleaner) may be Firefox, System, etc. #. %(option) may be cache, logs, cookies, etc. #. %(warning) may be 'This option is really slow' #: ../bleachbit/GUI.py:186 #, python-format msgid "" "Warning regarding %(cleaner)s - %(option)s:\n" "\n" "%(warning)s" msgstr "" "Warning regarding %(cleaner)s - %(option)s:\n" "\n" "%(warning)s" #: ../bleachbit/GUI.py:372 msgid "You must select an operation" msgstr "You must select an operation" #: ../bleachbit/GUI.py:391 ../bleachbit/GUI.py:413 msgid "Done." msgstr "Done." #: ../bleachbit/GUI.py:426 msgid "Program to clean unnecessary files" msgstr "Program to clean unnecessary files" #: ../bleachbit/GUI.py:436 msgid "" "GNU General Public License version 3 or later.\n" "See http://www.gnu.org/licenses/gpl-3.0.txt" msgstr "" "GNU General Public License version 3 or later.\n" "See http://www.gnu.org/licenses/gpl-3.0.txt" #. TRANSLATORS: Maintain the names of translators here. #. Launchpad does this automatically for translations #. typed in Launchpad. This is a special string shown #. in the 'About' box. #: ../bleachbit/GUI.py:442 msgid "translator-credits" msgstr "" "Launchpad Contributions:\n" " Alexander Mackinnon Jansen https://launchpad.net/~alexander-jansen\n" " Alfredo Hernández https://launchpad.net/~aldomann\n" " Andi Chandler https://launchpad.net/~bing\n" " Anthony Harrington https://launchpad.net/~untaintableangel\n" " fossfreedom https://launchpad.net/~fossfreedom" #: ../bleachbit/GUI.py:454 msgid "System information" msgstr "System information" #: ../bleachbit/GUI.py:527 msgid "Choose files to shred" msgstr "Choose files to shred" #: ../bleachbit/GUI.py:530 msgid "Choose folder to shred" msgstr "Choose folder to shred" #: ../bleachbit/GUI.py:594 ../bleachbit/GuiPreferences.py:197 #: ../bleachbit/GuiPreferences.py:326 ../bleachbit/GuiPreferences.py:367 msgid "Choose a folder" msgstr "Choose a folder" #. TRANSLATORS: this is the context menu #: ../bleachbit/GUI.py:627 msgid "Preview" msgstr "Preview" #: ../bleachbit/GUI.py:734 msgid "_Shred Files" msgstr "_Shred Files" #: ../bleachbit/GUI.py:736 msgid "Sh_red Folders" msgstr "Sh_red Folders" #: ../bleachbit/GUI.py:738 msgid "_Wipe Free Space" msgstr "_Wipe Free Space" #: ../bleachbit/GUI.py:740 msgid "S_hred Settings and Quit" msgstr "S_hred Settings and Quit" #: ../bleachbit/GUI.py:742 msgid "_Quit" msgstr "_Quit" #: ../bleachbit/GUI.py:744 msgid "_File" msgstr "_File" #: ../bleachbit/GUI.py:746 ../bleachbit/GuiPreferences.py:58 msgid "Preferences" msgstr "Preferences" #: ../bleachbit/GUI.py:747 msgid "_Edit" msgstr "_Edit" #: ../bleachbit/GUI.py:748 msgid "Help Contents" msgstr "Help Contents" #: ../bleachbit/GUI.py:751 msgid "_Release Notes" msgstr "_Release Notes" #: ../bleachbit/GUI.py:754 msgid "_System Information" msgstr "_System Information" #: ../bleachbit/GUI.py:757 msgid "_About" msgstr "_About" #: ../bleachbit/GUI.py:758 msgid "_Help" msgstr "_Help" #: ../bleachbit/GUI.py:783 msgctxt "button" msgid "Preview" msgstr "Preview" #: ../bleachbit/GUI.py:788 msgid "Preview files in the selected operations (without deleting any files)" msgstr "" "Preview files in the selected operations (without deleting any files)" #: ../bleachbit/GUI.py:798 msgctxt "button" msgid "Clean" msgstr "Clean" #: ../bleachbit/GUI.py:802 msgid "Clean files in the selected operations" msgstr "Clean files in the selected operations" #: ../bleachbit/GUI.py:893 msgid "Error when checking for updates: " msgstr "Error when checking for updates: " #: ../bleachbit/GUI.py:932 msgid "" "Error loading the SQLite module: the antivirus software may be blocking it." msgstr "" "Error loading the SQLite module: the antivirus software may be blocking it." #: ../bleachbit/GUI.py:935 msgid "" "You are running BleachBit with administrative privileges for cleaning shared " "parts of the system, and references to the user profile folder will clean " "only the root account." msgstr "" "You are running BleachBit with administrative privileges for cleaning shared " "parts of the system, and references to the user profile folder will clean " "only the root account." #: ../bleachbit/GUI.py:940 msgid "" "Run BleachBit with administrator privileges to improve the accuracy of " "overwriting the contents of files." msgstr "" "Run BleachBit with administrator privileges to improve the accuracy of " "overwriting the contents of files." #: ../bleachbit/GuiPreferences.py:64 msgid "General" msgstr "General" #: ../bleachbit/GuiPreferences.py:67 msgid "Drives" msgstr "Drives" #: ../bleachbit/GuiPreferences.py:70 msgid "Languages" msgstr "Languages" #: ../bleachbit/GuiPreferences.py:72 msgid "Whitelist" msgstr "Whitelist" #: ../bleachbit/GuiPreferences.py:117 msgid "Check periodically for software updates via the Internet" msgstr "Check periodically for software updates via the Internet" #: ../bleachbit/GuiPreferences.py:122 msgid "" "If an update is found, you will be given the option to view information " "about it. Then, you may manually download and install the update." msgstr "" "If an update is found, you will be given the option to view information " "about it. Then, you may manually download and install the update." #: ../bleachbit/GuiPreferences.py:128 msgid "Check for new beta releases" msgstr "Check for new beta releases" #: ../bleachbit/GuiPreferences.py:137 msgid "Download and update cleaners from community (winapp2.ini)" msgstr "Download and update cleaners from community (winapp2.ini)" #. TRANSLATORS: This means to hide cleaners which would do #. nothing. For example, if Firefox were never used on #. this system, this option would hide Firefox to simplify #. the list of cleaners. #: ../bleachbit/GuiPreferences.py:151 msgid "Hide irrelevant cleaners" msgstr "Hide irrelevant cleaners" #. TRANSLATORS: Overwriting is the same as shredding. It is a way #. to prevent recovery of the data. You could also translate #. 'Shred files to prevent recovery.' #: ../bleachbit/GuiPreferences.py:159 msgid "Overwrite contents of files to prevent recovery" msgstr "Overwrite contents of files to prevent recovery" #: ../bleachbit/GuiPreferences.py:163 msgid "" "Overwriting is ineffective on some file systems and with certain BleachBit " "operations. Overwriting is significantly slower." msgstr "" "Overwriting is ineffective on some file systems and with certain BleachBit " "operations. Overwriting is significantly slower." #: ../bleachbit/GuiPreferences.py:166 msgid "Start BleachBit with computer" msgstr "Start BleachBit with computer" #: ../bleachbit/GuiPreferences.py:172 msgid "Exit after cleaning" msgstr "Exit after cleaning" #: ../bleachbit/GuiPreferences.py:178 msgid "Confirm before delete" msgstr "Confirm before delete" #: ../bleachbit/GuiPreferences.py:186 msgid "Use IEC sizes (1 KiB = 1024 bytes) instead of SI (1 kB = 1000 bytes)" msgstr "Use IEC sizes (1 KiB = 1024 bytes) instead of SI (1 kB = 1000 bytes)" #: ../bleachbit/GuiPreferences.py:221 msgid "" "Choose a writable folder for each drive for which to overwrite free space." msgstr "" "Choose a writable folder for each drive for which to overwrite free space." #. TRANSLATORS: In the preferences dialog, this button adds a path to #. the list of paths #: ../bleachbit/GuiPreferences.py:243 msgctxt "button" msgid "Add" msgstr "Add" #. TRANSLATORS: In the preferences dialog, this button removes a path #. from the list of paths #: ../bleachbit/GuiPreferences.py:247 ../bleachbit/GuiPreferences.py:458 msgctxt "button" msgid "Remove" msgstr "Remove" #: ../bleachbit/GuiPreferences.py:272 msgid "All languages will be deleted except those checked." msgstr "All languages will be deleted except those ticked." #: ../bleachbit/GuiPreferences.py:288 msgid "Preserve" msgstr "Preserve" #: ../bleachbit/GuiPreferences.py:292 msgid "Code" msgstr "Code" #: ../bleachbit/GuiPreferences.py:313 ../bleachbit/GuiPreferences.py:354 msgid "Choose a file" msgstr "Choose a file" #: ../bleachbit/GuiPreferences.py:320 ../bleachbit/GuiPreferences.py:361 #: ../bleachbit/GuiPreferences.py:405 msgid "File" msgstr "File" #: ../bleachbit/GuiPreferences.py:334 ../bleachbit/GuiPreferences.py:375 #: ../bleachbit/GuiPreferences.py:407 msgid "Folder" msgstr "Folder" #: ../bleachbit/GuiPreferences.py:417 msgid "Theses paths will not be deleted or modified." msgstr "Theses paths will not be deleted or modified." #: ../bleachbit/GuiPreferences.py:420 msgid "These locations can be selected for deletion." msgstr "These locations can be selected for deletion." #: ../bleachbit/GuiPreferences.py:428 msgid "Type" msgstr "Type" #. TRANSLATORS: In the tree view "Path" is used generically to refer to a #. file, a folder, or a pattern describing either #: ../bleachbit/GuiPreferences.py:434 msgid "Path" msgstr "Path" #: ../bleachbit/GuiPreferences.py:446 msgctxt "button" msgid "Add file" msgstr "Add file" #: ../bleachbit/GuiPreferences.py:452 msgctxt "button" msgid "Add folder" msgstr "Add folder" bleachbit-2.0/po/vi.po0000644000175000017500000012566613245436307013015 0ustar hlehle# Vietnamese translation for bleachbit # Copyright (c) 2011 Rosetta Contributors and Canonical Ltd 2011 # This file is distributed under the same license as the bleachbit package. # FIRST AUTHOR , 2011. # msgid "" msgstr "" "Project-Id-Version: bleachbit\n" "Report-Msgid-Bugs-To: FULL NAME \n" "POT-Creation-Date: 2015-01-09 21:05-0700\n" "PO-Revision-Date: 2015-01-13 08:08+0000\n" "Last-Translator: Nguyen Kim Kha \n" "Language-Team: Vietnamese \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=1; plural=0;\n" "X-Launchpad-Export-Date: 2015-01-13 15:56+0000\n" "X-Generator: Launchpad (build 17298)\n" #: ../cleaners/mc.xml ../cleaners/tortoisesvn.xml ../cleaners/vim.xml #: ../cleaners/safari.xml ../cleaners/links2.xml ../cleaners/seamonkey.xml #: ../cleaners/realplayer.xml ../cleaners/windows_defender.xml #: ../cleaners/d4x.xml ../cleaners/sqlite3.xml #: ../cleaners/internet_explorer.xml ../cleaners/libreoffice.xml #: ../cleaners/easytag.xml ../cleaners/bash.xml ../cleaners/nautilus.xml #: ../cleaners/octave.xml ../cleaners/elinks.xml ../cleaners/chromium.xml #: ../cleaners/google_chrome.xml msgid "History" msgstr "Lịch sử" #: ../cleaners/mc.xml ../cleaners/tortoisesvn.xml ../cleaners/links2.xml #: ../cleaners/realplayer.xml ../cleaners/d4x.xml ../cleaners/libreoffice.xml #: ../cleaners/easytag.xml ../cleaners/nautilus.xml ../cleaners/gnome.xml #: ../bleachbit/Cleaner.py:345 ../bleachbit/Cleaner.py:419 #: ../bleachbit/Cleaner.py:428 msgid "Delete the usage history" msgstr "Xóa lịch sử sử dụng" #: ../cleaners/gpodder.xml ../cleaners/hippo_opensim_viewer.xml #: ../cleaners/thumbnails.xml ../cleaners/safari.xml ../cleaners/emesene.xml #: ../cleaners/liferea.xml ../cleaners/seamonkey.xml ../cleaners/vuze.xml #: ../cleaners/yahoo_messenger.xml ../cleaners/pidgin.xml #: ../cleaners/adobe_reader.xml ../cleaners/evolution.xml #: ../cleaners/tremulous.xml ../cleaners/libreoffice.xml ../cleaners/xine.xml #: ../cleaners/nexuiz.xml ../cleaners/exaile.xml ../cleaners/opera.xml #: ../cleaners/amsn.xml ../cleaners/gftp.xml ../cleaners/miro.xml #: ../cleaners/beagle.xml ../cleaners/kde.xml ../cleaners/epiphany.xml #: ../cleaners/flash.xml ../cleaners/secondlife_viewer.xml #: ../cleaners/java.xml ../cleaners/chromium.xml ../cleaners/audacious.xml #: ../cleaners/rhythmbox.xml ../cleaners/google_chrome.xml #: ../cleaners/thunderbird.xml ../bleachbit/Cleaner.py:189 #: ../bleachbit/Cleaner.py:366 ../bleachbit/Cleaner.py:451 msgid "Cache" msgstr "Bộ nhớ đệm" #: ../cleaners/gpodder.xml ../cleaners/yum.xml #: ../cleaners/hippo_opensim_viewer.xml ../cleaners/thumbnails.xml #: ../cleaners/windows_explorer.xml ../cleaners/liferea.xml #: ../cleaners/vuze.xml ../cleaners/yahoo_messenger.xml ../cleaners/pidgin.xml #: ../cleaners/adobe_reader.xml ../cleaners/evolution.xml #: ../cleaners/libreoffice.xml ../cleaners/apt.xml ../cleaners/xine.xml #: ../cleaners/nexuiz.xml ../cleaners/exaile.xml ../cleaners/amsn.xml #: ../cleaners/gftp.xml ../cleaners/miro.xml ../cleaners/beagle.xml #: ../cleaners/kde.xml ../cleaners/flash.xml ../cleaners/secondlife_viewer.xml #: ../cleaners/java.xml ../cleaners/audacious.xml ../cleaners/rhythmbox.xml #: ../bleachbit/Cleaner.py:366 ../bleachbit/Cleaner.py:451 #: ../bleachbit/Cleaner.py:485 ../bleachbit/Cleaner.py:487 msgid "Delete the cache" msgstr "Xóa bộ nhớ đệm" #. TRANSLATORS: Vacuum is a verb. The term is jargon #. from the SQLite database. Microsoft Access uses #. the term 'Compact Database' (which you may translate #. instead). Another synonym is 'defragment.' #: ../cleaners/gpodder.xml ../cleaners/yum.xml ../cleaners/safari.xml #: ../cleaners/liferea.xml ../cleaners/chromium.xml #: ../cleaners/google_chrome.xml ../cleaners/thunderbird.xml #: ../bleachbit/Action.py:335 ../bleachbit/Cleaner.py:209 #: ../bleachbit/Cleaner.py:356 msgid "Vacuum" msgstr "Chống phân mảnh cơ sở dữ liệu" #: ../cleaners/gpodder.xml ../cleaners/yum.xml ../cleaners/safari.xml #: ../cleaners/liferea.xml ../cleaners/chromium.xml #: ../cleaners/google_chrome.xml ../cleaners/thunderbird.xml #: ../bleachbit/Cleaner.py:210 msgid "" "Clean database fragmentation to reduce space and improve speed without " "removing any data" msgstr "" "Dọn dẹp cơ sở dữ liệu bị phân mảnh để lấy lại dung lượng và cải thiện tốc độ " "mà không cần xóa bất kì dữ liệu nào" #: ../cleaners/warzone2100.xml ../cleaners/hippo_opensim_viewer.xml #: ../cleaners/teamviewer.xml ../cleaners/realplayer.xml ../cleaners/vuze.xml #: ../cleaners/yahoo_messenger.xml ../cleaners/amule.xml #: ../cleaners/easytag.xml ../cleaners/exaile.xml ../cleaners/screenlets.xml #: ../cleaners/gftp.xml ../cleaners/miro.xml ../cleaners/audacious.xml #: ../bleachbit/Cleaner.py:482 msgid "Logs" msgstr "Nhật ký" #: ../cleaners/warzone2100.xml ../cleaners/hippo_opensim_viewer.xml #: ../cleaners/teamviewer.xml ../cleaners/realplayer.xml ../cleaners/vuze.xml #: ../cleaners/yahoo_messenger.xml ../cleaners/amule.xml #: ../cleaners/exaile.xml ../cleaners/screenlets.xml ../cleaners/gftp.xml #: ../cleaners/miro.xml ../cleaners/audacious.xml ../bleachbit/Cleaner.py:482 msgid "Delete the logs" msgstr "Xóa các nhật kí" #: ../cleaners/hippo_opensim_viewer.xml ../cleaners/gl-117.xml #: ../cleaners/tremulous.xml ../cleaners/nexuiz.xml #: ../cleaners/secondlife_viewer.xml msgid "Game" msgstr "Trò chơi" #: ../cleaners/thumbnails.xml ../cleaners/windows_explorer.xml msgid "Thumbnails" msgstr "Hình thu nhỏ" #: ../cleaners/vim.xml ../cleaners/gedit.xml msgid "Editor" msgstr "Trình soạn thảo" #: ../cleaners/vim.xml msgid "" "Delete ~/.viminfo which includes file history, command history, and buffers" msgstr "Xóa ~/.viminfo chứa tập tin lịch sử, lịch sử dòng lệnh, và bộ đệm" #: ../cleaners/filezilla.xml ../cleaners/transmission.xml ../cleaners/vuze.xml #: ../cleaners/amule.xml ../cleaners/gftp.xml msgid "File transfer client" msgstr "Chương trình truyền tải tập tin" #: ../cleaners/filezilla.xml ../cleaners/paint.xml #: ../cleaners/windows_media_player.xml ../cleaners/windows_explorer.xml #: ../cleaners/teamviewer.xml ../cleaners/microsoft_office.xml #: ../cleaners/vlc.xml ../cleaners/adobe_reader.xml ../cleaners/winamp.xml #: ../cleaners/winzip.xml ../cleaners/winrar.xml ../cleaners/audacious.xml #: ../cleaners/wordpad.xml ../bleachbit/Cleaner.py:367 msgid "Most recently used" msgstr "Sử dụng gần đây" #: ../cleaners/filezilla.xml ../cleaners/windows_explorer.xml #: ../cleaners/gwenview.xml ../cleaners/adobe_reader.xml ../cleaners/gedit.xml #: ../cleaners/kde.xml ../cleaners/audacious.xml ../bleachbit/Cleaner.py:368 #: ../bleachbit/Cleaner.py:465 msgid "Delete the list of recently used documents" msgstr "Xóa danh sách các tài liệu được sử dụng gần đây nhất" #: ../cleaners/skype.xml ../cleaners/xchat.xml ../cleaners/emesene.xml #: ../cleaners/seamonkey.xml ../cleaners/yahoo_messenger.xml #: ../cleaners/pidgin.xml ../cleaners/amsn.xml msgid "Chat logs" msgstr "Nhật kí trò chuyện" #: ../cleaners/skype.xml ../cleaners/xchat.xml ../cleaners/emesene.xml #: ../cleaners/seamonkey.xml ../cleaners/yahoo_messenger.xml #: ../cleaners/pidgin.xml ../cleaners/amsn.xml msgid "Delete the chat logs" msgstr "Xóa các nhật kí trò chuyện" #: ../cleaners/xchat.xml ../cleaners/emesene.xml #: ../cleaners/yahoo_messenger.xml ../cleaners/pidgin.xml ../cleaners/amsn.xml msgid "Chat client" msgstr "Chương trình nhắn tin" #: ../cleaners/safari.xml ../cleaners/links2.xml ../cleaners/seamonkey.xml #: ../cleaners/konqueror.xml ../cleaners/internet_explorer.xml #: ../cleaners/opera.xml ../cleaners/epiphany.xml ../cleaners/elinks.xml #: ../cleaners/chromium.xml ../cleaners/google_chrome.xml #: ../bleachbit/Cleaner.py:222 msgid "Web browser" msgstr "Trình duyệt web" #: ../cleaners/safari.xml ../cleaners/seamonkey.xml ../cleaners/opera.xml #: ../cleaners/epiphany.xml ../cleaners/chromium.xml #: ../cleaners/google_chrome.xml ../cleaners/thunderbird.xml #: ../bleachbit/Cleaner.py:190 msgid "Delete the web cache, which reduces time to display revisited pages" msgstr "" "Xóa bộ nhớ đệm web, bộ đệm giúp làm giảm thời gian hiển thị các trang đã ghé " "thăm" #: ../cleaners/safari.xml ../cleaners/liferea.xml ../cleaners/seamonkey.xml #: ../cleaners/realplayer.xml ../cleaners/konqueror.xml #: ../cleaners/internet_explorer.xml ../cleaners/opera.xml #: ../cleaners/epiphany.xml ../cleaners/flash.xml ../cleaners/silverlight.xml #: ../cleaners/chromium.xml ../cleaners/google_chrome.xml #: ../cleaners/thunderbird.xml ../bleachbit/Cleaner.py:191 msgid "Cookies" msgstr "Cookie" #: ../cleaners/safari.xml ../cleaners/liferea.xml ../cleaners/seamonkey.xml #: ../cleaners/realplayer.xml ../cleaners/konqueror.xml #: ../cleaners/internet_explorer.xml ../cleaners/opera.xml #: ../cleaners/epiphany.xml ../cleaners/flash.xml ../cleaners/silverlight.xml #: ../cleaners/chromium.xml ../cleaners/google_chrome.xml #: ../cleaners/thunderbird.xml ../bleachbit/Cleaner.py:192 msgid "" "Delete cookies, which contain information such as web site preferences, " "authentication, and tracking identification" msgstr "" "Xóa cookie, các cookie chứa thông tin như các thiết lập trên trang web, " "thông tin xác thực, và xác định theo dấu" #: ../cleaners/safari.xml ../cleaners/konqueror.xml #: ../cleaners/internet_explorer.xml ../cleaners/opera.xml #: ../bleachbit/Cleaner.py:208 msgid "List of visited web pages" msgstr "Danh sách các trang web đã ghé thăm" #. Torrent software can block a list of IP addresses, such as those that may belong to malware or anti-piracy organizations #: ../cleaners/transmission.xml msgid "Blocklists" msgstr "Danh sách chặn" #: ../cleaners/transmission.xml ../cleaners/windows_defender.xml #: ../cleaners/beagle.xml ../cleaners/thunderbird.xml ../cleaners/deepscan.xml #: ../bleachbit/Cleaner.py:194 msgid "Delete the files" msgstr "Xóa các tập tin" #: ../cleaners/transmission.xml msgid "Blocklists will need update to work." msgstr "Danh sách chặn cần được cập nhật để làm việc." #: ../cleaners/transmission.xml msgid "Torrents" msgstr "Torrents" #: ../cleaners/transmission.xml msgid "Delete the torrents (just the metadata but not the files described)" msgstr "Xóa Torrents (chỉ phần metadata, không phải các file được liệt kê)" #: ../cleaners/paint.xml ../cleaners/windows_media_player.xml #: ../cleaners/windows_explorer.xml ../cleaners/teamviewer.xml #: ../cleaners/microsoft_office.xml ../cleaners/vlc.xml ../cleaners/winamp.xml #: ../cleaners/winzip.xml ../cleaners/winrar.xml ../cleaners/wordpad.xml msgid "Delete the most recently used list" msgstr "Xóa danh sách sử dụng gần đây" #: ../cleaners/emesene.xml msgid "Delete the avatars and emoticons cache" msgstr "Xóa bộ nhớ đệm hình đại diện và biểu tượng cảm xúc" #: ../cleaners/windows_explorer.xml ../cleaners/gwenview.xml #: ../cleaners/gedit.xml ../cleaners/kde.xml ../bleachbit/Cleaner.py:464 msgid "Recent documents list" msgstr "Danh sách các tài liệu gần đây" #. In Windows 'Run' is the dialog in the Start menu #. In GNOME 'Run' is the dialog shown when typing ALT+F2' #: ../cleaners/windows_explorer.xml ../cleaners/gnome.xml msgid "Run" msgstr "Chạy" #: ../cleaners/windows_explorer.xml ../cleaners/opera.xml #: ../cleaners/gnome.xml ../cleaners/google_toolbar.xml msgid "Search history" msgstr "Lịch sử tìm kiếm" #: ../cleaners/windows_explorer.xml ../cleaners/opera.xml #: ../cleaners/gnome.xml ../cleaners/google_toolbar.xml msgid "Delete the search history" msgstr "Xóa lịch sử tìm kiếm" #: ../cleaners/gl-117.xml ../cleaners/microsoft_office.xml #: ../cleaners/beagle.xml ../cleaners/secondlife_viewer.xml #: ../cleaners/x11.xml msgid "Debug logs" msgstr "Gỡ lỗi nhật kí" #: ../cleaners/gl-117.xml ../cleaners/microsoft_office.xml #: ../cleaners/easytag.xml ../cleaners/beagle.xml #: ../cleaners/secondlife_viewer.xml ../cleaners/x11.xml msgid "Delete the debug logs" msgstr "Xóa nhật kí gỡ lỗi" #: ../cleaners/google_earth.xml ../cleaners/winetricks.xml #: ../cleaners/vuze.xml ../cleaners/adobe_reader.xml ../cleaners/amule.xml #: ../cleaners/wine.xml ../cleaners/internet_explorer.xml ../cleaners/gimp.xml #: ../cleaners/kde.xml ../cleaners/deepscan.xml ../bleachbit/Cleaner.py:516 msgid "Temporary files" msgstr "Các tập tin tạm" #: ../cleaners/google_earth.xml ../cleaners/winetricks.xml #: ../cleaners/vuze.xml ../cleaners/adobe_reader.xml ../cleaners/amule.xml #: ../cleaners/wine.xml ../cleaners/internet_explorer.xml ../cleaners/gimp.xml #: ../cleaners/kde.xml ../cleaners/deepscan.xml ../bleachbit/Cleaner.py:516 msgid "Delete the temporary files" msgstr "Xóa các tập tin tạm" #: ../cleaners/seamonkey.xml ../cleaners/opera.xml ../bleachbit/Cleaner.py:198 msgid "Download history" msgstr "Lịch sử tải xuống" #: ../cleaners/seamonkey.xml ../cleaners/opera.xml ../bleachbit/Cleaner.py:198 msgid "List of files downloaded" msgstr "Danh sách các tập tin đã tải về" #: ../cleaners/seamonkey.xml msgid "Delete the list of visited web pages" msgstr "Xóa danh sách các trang web đã ghé thăm" #: ../cleaners/vuze.xml ../cleaners/deepscan.xml ../bleachbit/Cleaner.py:187 msgid "Backup files" msgstr "Các tập tin sao lưu" #: ../cleaners/vuze.xml ../cleaners/deepscan.xml ../bleachbit/Cleaner.py:188 msgid "Delete the backup files" msgstr "Xóa các tập tin sao lưu" #: ../cleaners/konqueror.xml ../cleaners/opera.xml ../cleaners/chromium.xml msgid "Current session" msgstr "Phiên hiện tại" #: ../cleaners/konqueror.xml ../cleaners/opera.xml ../cleaners/chromium.xml msgid "Delete the current session" msgstr "Xóa phiên hiện tại" #: ../cleaners/konqueror.xml ../cleaners/opera.xml ../bleachbit/Cleaner.py:208 msgid "URL history" msgstr "Lịch sử URL" #: ../cleaners/microsoft_office.xml ../cleaners/libreoffice.xml #: ../bleachbit/Cleaner.py:380 msgid "Office suite" msgstr "Bộ công cụ văn phòng" #: ../cleaners/tremulous.xml msgid "Delete the list of game servers" msgstr "Xóa danh sách các máy chủ trò chơi" #: ../cleaners/sqlite3.xml ../cleaners/bash.xml ../cleaners/octave.xml msgid "Delete the command history" msgstr "Xóa lịch sử dòng lệnh" #: ../cleaners/internet_explorer.xml ../cleaners/chromium.xml #: ../cleaners/google_chrome.xml ../bleachbit/Cleaner.py:199 msgid "Form history" msgstr "Lịch sử biểu mẫu" #: ../cleaners/internet_explorer.xml ../bleachbit/Cleaner.py:200 msgid "A history of forms entered in web sites and in the Search bar" msgstr "" "Một lịch sử của các biểu mẫu được nhập trong các trang web và trong thanh " "Tìm kiếm" #. This software edits metadata tags, such as title and artist, in audio files #: ../cleaners/easytag.xml msgid "Audio files tagger" msgstr "" #: ../cleaners/apt.xml msgid "Delete obsolete files" msgstr "Xóa các tập tin ít dùng" #: ../cleaners/apt.xml msgid "Package lists" msgstr "Danh sách gói" #: ../cleaners/xine.xml ../cleaners/miro.xml ../cleaners/flash.xml msgid "Multimedia viewer" msgstr "Trình xem tập tin đa phương tiện" #: ../cleaners/recoll.xml ../cleaners/beagle.xml msgid "Search tool" msgstr "Công cụ tìm kiếm" #: ../cleaners/recoll.xml ../cleaners/beagle.xml ../cleaners/thunderbird.xml msgid "Index" msgstr "Giá trị" #: ../cleaners/recoll.xml msgid "" "Delete the search index, a database of words and the files they contain" msgstr "Xóa chỉ mục tìm kiếm, một cơ sở dữ liệu các từ và tập tin mà nó chứa" #: ../cleaners/exaile.xml msgid "Downloaded podcasts" msgstr "Các podcast đã tải về" #: ../cleaners/exaile.xml msgid "Delete downloaded podcasts" msgstr "Xóa các podcast đã tải về" #. TRANSLATORS: DOM = Document Object Model. #: ../cleaners/opera.xml ../cleaners/chromium.xml #: ../cleaners/google_chrome.xml ../bleachbit/Cleaner.py:196 msgid "DOM Storage" msgstr "Lưu trữ DOM" #: ../cleaners/opera.xml ../cleaners/chromium.xml #: ../cleaners/google_chrome.xml ../bleachbit/Cleaner.py:196 msgid "Delete HTML5 cookies" msgstr "Xóa các cookie HTML5" #: ../cleaners/opera.xml ../cleaners/epiphany.xml ../cleaners/chromium.xml #: ../cleaners/google_chrome.xml ../cleaners/thunderbird.xml #: ../bleachbit/Cleaner.py:205 msgid "Passwords" msgstr "Mật khẩu" #: ../cleaners/opera.xml ../cleaners/epiphany.xml ../cleaners/chromium.xml #: ../cleaners/google_chrome.xml ../cleaners/thunderbird.xml #: ../bleachbit/Cleaner.py:206 msgid "" "A database of usernames and passwords as well as a list of sites that should " "not store passwords" msgstr "" "Một cơ sở dữ liệu chứa tên người dùng và mật khẩu cũng như danh sách các " "trang không nên lưu giữ mật khẩu" #: ../cleaners/opera.xml ../cleaners/epiphany.xml ../cleaners/chromium.xml #: ../cleaners/google_chrome.xml ../cleaners/thunderbird.xml msgid "This option will delete your saved passwords." msgstr "Tùy chọn này sẽ xóa các mật khẩu được lưu của bạn." #: ../cleaners/nautilus.xml msgid "Custom folders will be reset." msgstr "Các thư mục tùy chọn sẽ được thiết đặt lại." #: ../cleaners/screenlets.xml msgid "Widgets for the desktop" msgstr "Tiện ích cho màn hình làm việc" #: ../cleaners/kde.xml msgid "This option may be incompatible with kdesudo" msgstr "Tùy chọn này có thể không tương thích với kdesudo" #: ../cleaners/epiphany.xml msgid "Places" msgstr "Vị trí" #: ../cleaners/epiphany.xml msgid "" "A database of URLs including bookmarks, favicons, and a history of visited " "web sites" msgstr "" "Một cơ sở dữ liệu của các URL bao gồm các đánh dấu, các favicon, và lịch sử " "các trang web đã ghé thăm" #: ../cleaners/epiphany.xml msgid "This option deletes all bookmarks." msgstr "Tùy chỉnh này sẽ xóa tất cả các đánh dấu." #: ../cleaners/elinks.xml msgid "Delete the cookies, visited URLs, and search history" msgstr "Xóa cookie, các liên kết web đã xem, và lịch sử tìm kiếm" #: ../cleaners/chromium.xml ../cleaners/google_chrome.xml msgid "A history of forms entered in web sites" msgstr "Một lịch sử của các biểu mẫu đã nhập trên các trang web" #: ../cleaners/chromium.xml ../cleaners/google_chrome.xml msgid "" "Delete the history which includes visited sites, downloads, and thumbnails" msgstr "" "Xóa lịch sử chứa các trang web đã ghé thăm, các tải về, và các hình thu nhỏ" #: ../cleaners/chromium.xml ../cleaners/google_chrome.xml msgid "Search engines" msgstr "Các cỗ máy tìm kiếm" #. 'Factory' means a search engine that is installed by default 'from the factory,' but this is different than a 'default search engine' https://lists.launchpad.net/launchpad-translators/msg00283.html #: ../cleaners/chromium.xml ../cleaners/google_chrome.xml msgid "" "Reset the search engine usage history and delete non-factory search engines, " "some of which are added automatically" msgstr "" "Thiết đặt lại lịch sử sử dụng của các cỗ máy tìm kiếm và xóa các cỗ máy tìm " "kiếm không phải mặc định" #: ../cleaners/google_chrome.xml msgid "Session" msgstr "Phiên chạy" #: ../cleaners/google_chrome.xml msgid "Delete the current and last sessions" msgstr "Xóa phiên hiện tại và các phiên gần nhất" #: ../cleaners/deepscan.xml msgid "Deep scan" msgstr "Quét sâu" #: ../cleaners/deepscan.xml msgid "Inspect the preview for any files you want to keep." msgstr "Kiểm tra trước bất kì tập tin nào bạn muốn giữ lại." #: ../cleaners/deepscan.xml msgid "This option is slow." msgstr "Tùy chọn này sẽ chậm." #: ../bleachbit.desktop msgid "Unnecessary file cleaner" msgstr "Trình dọn dẹp tập tin không cần thiết" #: ../bleachbit.desktop msgid "Free space and maintain privacy" msgstr "Làm trống ổ đĩa và bảo vệ sự riêng tư" #. TRANSLATORS: Parts of this file will be deleted #: ../bleachbit/Action.py:192 ../bleachbit/Action.py:205 #: ../bleachbit/Action.py:218 ../bleachbit/Action.py:231 #: ../bleachbit/Action.py:244 ../bleachbit/Command.py:181 #: ../bleachbit/Command.py:211 msgid "Clean file" msgstr "Dọn dẹp tập tin" #. TRANSLATORS: this is the context menu #: ../bleachbit/Action.py:308 ../bleachbit/GUI.py:578 msgid "Clean" msgstr "Dọn dẹp" #: ../bleachbit/Cleaner.py:194 msgid "Crash reports" msgstr "Báo hỏng" #: ../bleachbit/Cleaner.py:201 msgid "Session restore" msgstr "Hồi phục phiên làm việc" #: ../bleachbit/Cleaner.py:202 msgid "Loads the initial session after the browser closes or crashes" msgstr "Nạp phiên làm việc lúc đầu sau khi trình duyệt đóng hay bị sự cố" #: ../bleachbit/Cleaner.py:204 msgid "Site preferences" msgstr "Tùy chỉnh trang" #: ../bleachbit/Cleaner.py:204 msgid "Settings for individual sites" msgstr "Thiết lập cho các trang cá nhân" #. TRANSLATORS: desktop entries are .desktop files in Linux tha #. make up the application menu (the menu that shows BleachBit, #. Firefox, and others. The .desktop files also associate file #. types, so clicking on an .html file in Nautilus brings up #. Firefox. #. More information: #. http://standards.freedesktop.org/menu-spec/latest/index.html#introduction #: ../bleachbit/Cleaner.py:449 msgid "Broken desktop files" msgstr "Các tập tin trên màn hình làm việc bị hỏng" #: ../bleachbit/Cleaner.py:450 msgid "Delete broken application menu entries and file associations" msgstr "Xóa các mục trình đơn ứng dụng bị hỏng và các liên kết tập tin" #. TRANSLATORS: Localizations are files supporting specific #. languages, so applications appear in Spanish, etc. #: ../bleachbit/Cleaner.py:454 msgid "Localizations" msgstr "Bản địa hoá" #: ../bleachbit/Cleaner.py:455 msgid "Delete files for unwanted languages" msgstr "Xóa các tập tin ngôn ngữ không mong muốn" #: ../bleachbit/Cleaner.py:457 msgid "Configure this option in the preferences." msgstr "Cấu hình mục này trong tùy chỉnh." #: ../bleachbit/Cleaner.py:463 msgid "Rotated logs" msgstr "Nhật kí luân chuyển" #: ../bleachbit/Cleaner.py:463 msgid "Delete old system logs" msgstr "Xóa các bản ghi hệ thống cũ" #: ../bleachbit/Cleaner.py:466 msgid "Trash" msgstr "Sọt rác" #: ../bleachbit/Cleaner.py:466 msgid "Empty the trash" msgstr "Dọn trống sọt rác" #: ../bleachbit/Cleaner.py:472 ../bleachbit/Cleaner.py:624 #: ../bleachbit/Worker.py:169 msgid "Memory" msgstr "Bộ nhớ" #. TRANSLATORS: 'free' means 'unallocated' #: ../bleachbit/Cleaner.py:474 msgid "Wipe the swap and free memory" msgstr "Dọn dẹp bộ nhớ trao đổi và vùng nhớ trống" #: ../bleachbit/Cleaner.py:476 msgid "This option is experimental and may cause system problems." msgstr "Tính năng này chưa ổn định và nó có thể gây rắc rối cho hệ thống." #: ../bleachbit/Cleaner.py:484 msgid "Memory dump" msgstr "Kết xuất bộ nhớ" #: ../bleachbit/Cleaner.py:484 msgid "Delete the file memory.dmp" msgstr "Xóa tập tin memory.dmp" #. TRANSLATORS: Prefetch is Microsoft Windows jargon. #: ../bleachbit/Cleaner.py:487 msgid "Prefetch" msgstr "Prefetch" #: ../bleachbit/Cleaner.py:489 msgid "Recycle bin" msgstr "Recycle bin" #: ../bleachbit/Cleaner.py:489 msgid "Empty the recycle bin" msgstr "Xóa trống recycle bin" #. TRANSLATORS: 'Update' is a noun, and 'Update uninstallers' is an option to delete #. the uninstallers for software updates. #: ../bleachbit/Cleaner.py:492 msgid "Update uninstallers" msgstr "Cập nhật cho các trình tháo gỡ" #: ../bleachbit/Cleaner.py:493 msgid "" "Delete uninstallers for Microsoft updates including hotfixes, service packs, " "and Internet Explorer updates" msgstr "" "Xóa trình tháo gỡ cho các cập nhật Microsoft bao gồm các bản vá khẩn, " "service pack, và cập nhật Internet Explorer" #: ../bleachbit/Cleaner.py:500 ../bleachbit/Cleaner.py:713 msgid "Clipboard" msgstr "Bộ nhớ đệm" #: ../bleachbit/Cleaner.py:501 msgid "" "The desktop environment's clipboard used for copy and paste operations" msgstr "Bộ đệm của môi trường đồ họa dùng cho thao tác chép và dán" #. TRANSLATORS: "Custom" is an option allowing the user to specify which #. files and folders will be erased. #: ../bleachbit/Cleaner.py:508 ../bleachbit/GuiPreferences.py:63 msgid "Custom" msgstr "Tùy chọn" #: ../bleachbit/Cleaner.py:509 msgid "Delete user-specified files and folders" msgstr "" #. TRANSLATORS: 'free' means 'unallocated' #: ../bleachbit/Cleaner.py:511 msgid "Free disk space" msgstr "Dung lượng đĩa chưa phân vùng" #. TRANSLATORS: 'free' means 'unallocated' #: ../bleachbit/Cleaner.py:513 msgid "Overwrite free disk space to hide deleted files" msgstr "Ghi đè phần đĩa trống để ẩn các tập tin bị xóa" #: ../bleachbit/Cleaner.py:514 msgid "This option is very slow." msgstr "Tính năng này rất chậm." #: ../bleachbit/Cleaner.py:519 msgid "The system in general" msgstr "Khái quát hệ thống" #: ../bleachbit/Cleaner.py:525 ../bleachbit/Cleaner.py:819 msgid "System" msgstr "Hệ thống" #. TRANSLATORS: 'Free' means 'unallocated.' #. %s expands to a path such as C:\ or /tmp/ #: ../bleachbit/Cleaner.py:721 ../bleachbit/Cleaner.py:850 #, python-format msgid "Overwrite free disk space %s" msgstr "Ghi đè phần đĩa trống %s" #. TRANSLATORS: %s expands to a drive letter such as C:\ or D:\ #: ../bleachbit/Cleaner.py:748 #, python-format msgid "Recycle bin %s" msgstr "Recycle bin %s" #: ../bleachbit/CLI.py:107 #, python-format msgid "not a valid cleaner: %s" msgstr "không phải trình dọn dẹp hợp lệ: %s" #. TRANSLATORS: This is the command line usage. Don't translate #. %prog, but do translate usage, options, cleaner, and option. #. More information about the command line is here #. http://bleachbit.sourceforge.net/documentation/command-line #: ../bleachbit/CLI.py:134 msgid "usage: %prog [options] cleaner.option1 cleaner.option2" msgstr "sử dụng: %prog [tùy_chỉnh] cleaner.option1 cleaner.option2" #: ../bleachbit/CLI.py:137 msgid "list cleaners" msgstr "danh sách các trình dọn dẹp" #. TRANSLATORS: predefined cleaners are for applications, such as Firefox and Flash. #. This is different than cleaning an arbitrary file, such as a #. spreadsheet on the desktop. #: ../bleachbit/CLI.py:142 msgid "run cleaners to delete files and make other permanent changes" msgstr "" #: ../bleachbit/CLI.py:144 msgid "shred specific files or folders" msgstr "" #: ../bleachbit/CLI.py:146 msgid "show system information" msgstr "hiện thông tin hệ thống" #: ../bleachbit/CLI.py:148 msgid "launch the graphical interface" msgstr "khởi chạy giao diện đồ họa" #: ../bleachbit/CLI.py:150 msgid "do not prompt for administrator privileges" msgstr "không hỏi quyền quản trị" #: ../bleachbit/CLI.py:155 msgid "preview files to be deleted and other changes" msgstr "xem trước các tập tin bị xóa và các thay đổi khác" #: ../bleachbit/CLI.py:157 msgid "use options set in the graphical interface" msgstr "sử dụng các tùy chọn được thiết lập trong giao diện đồ họa" #: ../bleachbit/CLI.py:160 msgid "update winapp2.ini, if a new version is available" msgstr "" #: ../bleachbit/CLI.py:162 msgid "output version information and exit" msgstr "hiện thông tin phiên bản và thoát" #: ../bleachbit/CLI.py:164 msgid "overwrite files to hide contents" msgstr "ghi đè các tập tin để ẩn nội dung" #. TRANSLATORS: This is the label in the log indicating was #. skipped because it matches the whitelist #: ../bleachbit/Command.py:44 msgid "Skip" msgstr "Bỏ qua" #. TRANSLATORS: This is the label in the log indicating will be #. deleted (for previews) or was actually deleted #: ../bleachbit/Command.py:70 msgid "Delete" msgstr "Xóa" #. TRANSLATORS: The file will be deleted when the #. system reboots #: ../bleachbit/Command.py:91 msgid "Mark for deletion" msgstr "Đánh dấu để xóa" #. TRANSLATORS: The file will be truncated to 0 bytes in length #: ../bleachbit/Command.py:247 msgid "Truncate" msgstr "Cắt bỏ" #: ../bleachbit/Command.py:286 msgid "Delete registry key" msgstr "Xóa khóa registry" #: ../bleachbit/GuiBasic.py:112 msgid "Delete confirmation" msgstr "Xác nhận xóa" #: ../bleachbit/GuiBasic.py:122 msgid "" "Are you sure you want to permanently delete files according to the selected " "operations? The actual files that will be deleted may have changed since " "you ran the preview." msgstr "" "Bạn có chắc là muốn xóa các tập tin này theo như các thao tác đã chọn? Các " "tập tin thật sự bị xóa có thể thay đổi từ khi bạn xem qua." #: ../bleachbit/GuiBasic.py:125 msgid "Are you sure you want to permanently delete these files?" msgstr "Bạn có chắc là muốn xóa vĩnh viễn các tập tin này?" #: ../bleachbit/GuiBasic.py:162 #, python-format msgid "" "Because you are running as root, please manually open this link in a web " "browser:\n" "%s" msgstr "" "Do bạn chạy chương trình với quyền quản trị, hãy mở thủ công liên kết sau " "trong trình duyệt:\n" "%s" #. TRANSLATORS: %s expands to bleachbit.sourceforge.net or similar #: ../bleachbit/GuiBasic.py:174 #, python-format msgid "Open web browser to %s?" msgstr "Mở trang %s bằng trình duyệt?" #: ../bleachbit/GuiPreferences.py:55 ../bleachbit/GUI.py:633 msgid "Preferences" msgstr "Tùy chỉnh" #: ../bleachbit/GuiPreferences.py:61 msgid "General" msgstr "Tổng quát" #: ../bleachbit/GuiPreferences.py:64 msgid "Drives" msgstr "Ổ đĩa" #: ../bleachbit/GuiPreferences.py:67 msgid "Languages" msgstr "Ngôn ngữ" #: ../bleachbit/GuiPreferences.py:69 msgid "Whitelist" msgstr "Ngoại lệ" #: ../bleachbit/GuiPreferences.py:114 msgid "Check periodically for software updates via the Internet" msgstr "Kiểm tra định kì các cập nhật phần mềm thông qua Internet" #: ../bleachbit/GuiPreferences.py:119 msgid "" "If an update is found, you will be given the option to view information " "about it. Then, you may manually download and install the update." msgstr "" "Nếu có cập nhật, sẽ có tùy chọn để xem thông tin về nó. Sau đó, bạn có thể " "tải về và cài đặt bản cập nhật một cách thủ công." #: ../bleachbit/GuiPreferences.py:125 msgid "Check for new beta releases" msgstr "Kiểm tra phát hành beta mới" #: ../bleachbit/GuiPreferences.py:134 msgid "Download and update cleaners from community (winapp2.ini)" msgstr "Tải và cập nhật trình dọn dẹp từ cộng đồng (winapp2.ini)" #. TRANSLATORS: This means to hide cleaners which would do #. nothing. For example, if Firefox were never used on #. this system, this option would hide Firefox to simplify #. the list of cleaners. #: ../bleachbit/GuiPreferences.py:148 msgid "Hide irrelevant cleaners" msgstr "" #. TRANSLATORS: Overwriting is the same as shredding. It is a way #. to prevent recovery of the data. You could also translate #. 'Shred files to prevent recovery.' #: ../bleachbit/GuiPreferences.py:156 msgid "Overwrite files to hide contents" msgstr "Xóa tập tin và ngăn cản phục hồi" #: ../bleachbit/GuiPreferences.py:160 msgid "" "Overwriting is ineffective on some file systems and with certain BleachBit " "operations. Overwriting is significantly slower." msgstr "" "Ghi đè không có hiệu quả trên một số tập tin hệ thống và với các thao tác " "nhất định của Bleachbit. Ghi đè gây chậm đáng kể." #: ../bleachbit/GuiPreferences.py:163 msgid "Start BleachBit with computer" msgstr "Bật Bleachbit cùng với hệ điều hành" #: ../bleachbit/GuiPreferences.py:169 msgid "Exit after cleaning" msgstr "" #: ../bleachbit/GuiPreferences.py:175 msgid "Confirm before delete" msgstr "" #: ../bleachbit/GuiPreferences.py:188 ../bleachbit/GuiPreferences.py:319 #: ../bleachbit/GuiPreferences.py:360 ../bleachbit/GUI.py:540 msgid "Choose a folder" msgstr "Chọn thư mục" #: ../bleachbit/GuiPreferences.py:212 msgid "" "Choose a writable folder for each drive for which to overwrite free space." msgstr "Chọn một thư mục có thể ghi được cho mỗi ổ đĩa để ghi đè vùng trống." #. TRANSLATORS: In the preferences dialog, this button adds a path to #. the list of paths #: ../bleachbit/GuiPreferences.py:234 msgctxt "button" msgid "Add" msgstr "Thêm" #. TRANSLATORS: In the preferences dialog, this button removes a path #. from the list of paths #: ../bleachbit/GuiPreferences.py:238 ../bleachbit/GuiPreferences.py:451 msgctxt "button" msgid "Remove" msgstr "Loại bỏ" #: ../bleachbit/GuiPreferences.py:263 msgid "All languages will be deleted except those checked." msgstr "Tất cả ngôn ngữ sẽ bị xóa ngoại trừ những ngôn ngữ được chọn." #: ../bleachbit/GuiPreferences.py:281 msgid "Preserve" msgstr "Giữ lại" #: ../bleachbit/GuiPreferences.py:285 msgid "Code" msgstr "Mã" #: ../bleachbit/GuiPreferences.py:289 ../bleachbit/GUI.py:130 msgid "Name" msgstr "Tên" #: ../bleachbit/GuiPreferences.py:306 ../bleachbit/GuiPreferences.py:347 msgid "Choose a file" msgstr "Chọn tập tin" #: ../bleachbit/GuiPreferences.py:313 ../bleachbit/GuiPreferences.py:354 #: ../bleachbit/GuiPreferences.py:398 msgid "File" msgstr "Tập tin" #: ../bleachbit/GuiPreferences.py:327 ../bleachbit/GuiPreferences.py:368 #: ../bleachbit/GuiPreferences.py:400 msgid "Folder" msgstr "Thư mục" #: ../bleachbit/GuiPreferences.py:410 msgid "Theses paths will not be deleted or modified." msgstr "Các đường dẫn này sẽ không bị xóa hay chỉnh sửa." #: ../bleachbit/GuiPreferences.py:413 msgid "These locations can be selected for deletion." msgstr "" #: ../bleachbit/GuiPreferences.py:421 msgid "Type" msgstr "Loại" #. TRANSLATORS: In the tree view "Path" is used generically to refer to a #. file, a folder, or a pattern describing either #: ../bleachbit/GuiPreferences.py:427 msgid "Path" msgstr "Đường dẫn" #: ../bleachbit/GuiPreferences.py:439 msgctxt "button" msgid "Add file" msgstr "Thêm tập tin" #: ../bleachbit/GuiPreferences.py:445 msgctxt "button" msgid "Add folder" msgstr "Thêm thư mục" #: ../bleachbit/GUI.py:138 msgid "Active" msgstr "Hoạt động" #. TRANSLATORS: %(cleaner) may be Firefox, System, etc. #. %(option) may be cache, logs, cookies, etc. #. %(warning) may be 'This option is really slow' #: ../bleachbit/GUI.py:169 #, python-format msgid "" "Warning regarding %(cleaner)s - %(option)s:\n" "\n" "%(warning)s" msgstr "" "Cảnh báo về %(cleaner)s - %(option)s:\n" "\n" "%(warning)s" #: ../bleachbit/GUI.py:336 msgid "You must select an operation" msgstr "Bạn phải chọn một thao tác" #: ../bleachbit/GUI.py:357 ../bleachbit/GUI.py:379 msgid "Done." msgstr "Xong." #: ../bleachbit/GUI.py:392 msgid "Program to clean unnecessary files" msgstr "Chương trình dùng để dọn dẹp các tập tin không cần thiết" #: ../bleachbit/GUI.py:398 msgid "" "GNU General Public License version 3 or later.\n" "See http://www.gnu.org/licenses/gpl-3.0.txt" msgstr "" "Giấy phép Công cộng chung GNU phiên bản 3 hoặc mới hơn.\n" "Xem tại http://www.gnu.org/licenses/gpl-3.0.txt" #. TRANSLATORS: Maintain the names of translators here. #. Launchpad does this automatically for translations #. typed in Launchpad. This is a special string shown #. in the 'About' box. #: ../bleachbit/GUI.py:404 msgid "translator-credits" msgstr "" "Launchpad Contributions:\n" " Lê Trường An https://launchpad.net/~truongan\n" " Nguyen Kim Kha https://launchpad.net/~nkimkha" #: ../bleachbit/GUI.py:416 msgid "System information" msgstr "Thông tin hệ thống" #: ../bleachbit/GUI.py:489 msgid "Choose files to shred" msgstr "Chọn (các) tập tin để xóa" #: ../bleachbit/GUI.py:492 msgid "Choose folder to shred" msgstr "Chọn thư mục để xóa" #. TRANSLATORS: this is the context menu #: ../bleachbit/GUI.py:573 msgid "Preview" msgstr "Xem trước" #: ../bleachbit/GUI.py:621 msgid "_Shred Files" msgstr "_Xóa tập tin" #: ../bleachbit/GUI.py:623 msgid "Sh_red Folders" msgstr "Xóa thư _mục" #: ../bleachbit/GUI.py:625 msgid "_Wipe Free Space" msgstr "_Dọn dẹp không gian trống" #: ../bleachbit/GUI.py:627 msgid "S_hred Settings and Quit" msgstr "Thiết lập xóa và thoát" #: ../bleachbit/GUI.py:629 msgid "_Quit" msgstr "T_hoát" #: ../bleachbit/GUI.py:631 msgid "_File" msgstr "_Tập tin" #: ../bleachbit/GUI.py:634 msgid "_Edit" msgstr "_Chỉnh sửa" #: ../bleachbit/GUI.py:635 msgid "Help Contents" msgstr "Nội dung trợ giúp" #: ../bleachbit/GUI.py:638 msgid "_Release Notes" msgstr "Ghi chú phát hành" #: ../bleachbit/GUI.py:641 msgid "_System Information" msgstr "_Thông tin hệ thống" #: ../bleachbit/GUI.py:644 msgid "_About" msgstr "_Giới thiệu" #: ../bleachbit/GUI.py:645 msgid "_Help" msgstr "Trợ _giúp" #: ../bleachbit/GUI.py:670 msgctxt "button" msgid "Preview" msgstr "Xem thử" #: ../bleachbit/GUI.py:675 msgid "Preview files in the selected operations (without deleting any files)" msgstr "" "Xem trước các tập tin trong những hành động đã chọn (không xóa tập tin)" #: ../bleachbit/GUI.py:685 msgctxt "button" msgid "Clean" msgstr "Dọn" #: ../bleachbit/GUI.py:689 msgid "Clean files in the selected operations" msgstr "Dọn các tập tin trong các thao tác đã chọn" #: ../bleachbit/GUI.py:778 msgid "Error when checking for updates: " msgstr "Lỗi khi kiểm tra cập nhật: " #: ../bleachbit/GUI.py:808 msgid "" "Error loading the SQLite module: the antivirus software may be blocking it." msgstr "Lỗi khi nạp mô-đun SQLite: có thể phần mềm diệt virus đã khóa nó." #: ../bleachbit/GUI.py:811 msgid "" "You are running BleachBit with administrative privileges for cleaning shared " "parts of the system, and references to the user profile folder will clean " "only the root account." msgstr "" #: ../bleachbit/RecognizeCleanerML.py:57 msgid "Security warning" msgstr "Cảnh báo an ninh" #: ../bleachbit/RecognizeCleanerML.py:70 msgid "" "These cleaner definitions are new or have changed. Malicious definitions can " "damage your system. If you do not trust these changes, delete the files or " "quit." msgstr "" "Các định nghĩa trình dọn dẹp này được tạo mới hay thay đổi. Các định nghĩa " "nguy hiểm có thể gây sự cố cho hệ thống. Nếu bạn không chắc chắn về những " "thay đổi này, hãy xóa các tập tin hoặc thoát." #: ../bleachbit/RecognizeCleanerML.py:85 msgctxt "column_label" msgid "Delete" msgstr "Xóa" #: ../bleachbit/RecognizeCleanerML.py:90 msgctxt "column_label" msgid "Filename" msgstr "Tên tập tin" #: ../bleachbit/Unix.py:383 ../bleachbit/Unix.py:413 ../bleachbit/Unix.py:603 #, python-format msgid "Executable not found: %s" msgstr "Không tìm thấy thuộc tính thực thi: %s" #. TRANSLATORS: %s expands to a name such as 'Firefox' or 'System'. #: ../bleachbit/Unix.py:600 ../bleachbit/Worker.py:128 #, python-format msgid "" "%s cannot be cleaned because it is currently running. Close it, and try " "again." msgstr "" "%s không thể bị xóa vì nó hiện đang chạy. Đóng nó lại, và thử lần nữa." #: ../bleachbit/Update.py:72 msgid "New winapp2.ini was downloaded." msgstr "Có winapp2.ini mới đã được tải về" #: ../bleachbit/Update.py:117 msgid "Update BleachBit" msgstr "Cập nhật cho Bleachbit" #: ../bleachbit/Update.py:122 msgid "A new version is available." msgstr "Có phiên bản mới." #. TRANSLATORS: %s expands to version such as '0.8.4' or '0.8.5beta' or #. similar #: ../bleachbit/Update.py:131 #, python-format msgid "Update to version %s" msgstr "Cập nhật lên phiên bản %s" #. TRANSLATORS: This is cleaner name for cleaners imported from winapp2.ini #: ../bleachbit/Winapp.py:44 msgid "Applications" msgstr "Ứng dụng" #. TRANSLATORS: This is cleaner name for cleaners imported #. from winapp2.ini #: ../bleachbit/Winapp.py:47 msgid "Internet" msgstr "Internet" #. TRANSLATORS: This is cleaner name for cleaners imported #. from winapp2.ini #: ../bleachbit/Winapp.py:50 msgid "Multimedia" msgstr "Đa phương tiện" #. TRANSLATORS: This is cleaner name for cleaners imported #. from winapp2.ini #: ../bleachbit/Winapp.py:53 msgid "Utilities" msgstr "Tiện ích" #: ../bleachbit/Winapp.py:68 msgid "Games" msgstr "" #: ../bleachbit/Winapp.py:155 msgid "Imported from winapp2.ini" msgstr "Đã nhập từ winapp2.ini" #. TRANSLATORS: This indicates an error. The special keyword #. %(operation)s will be replaced by 'firefox' or 'opera' or #. some other cleaner ID. The special keyword %(msg)s will be #. replaced by a message such as 'Permission denied.' #: ../bleachbit/Worker.py:71 #, python-format msgid "Exception while running operation '%(operation)s': '%(msg)s'" msgstr "Loại bỏ tiến trình đang chạy '%(operation)s': '%(msg)s'" #. TRANSLATORS: 'free' means 'unallocated' #: ../bleachbit/Worker.py:167 msgid "Please wait. Wiping free disk space." msgstr "Xin hãy chờ. Đang dọn dẹp vùng chưa được phân bổ." #. TRANSLATORS: %s is replaced with Firefox, System, etc. #: ../bleachbit/Worker.py:169 ../bleachbit/Worker.py:308 #, python-format msgid "Please wait. Cleaning %s." msgstr "Vui lòng đợi. Đang dọn dẹp %s." #: ../bleachbit/Worker.py:184 msgid "Please wait. Wiping file system metadata." msgstr "" #: ../bleachbit/Worker.py:187 msgid "Please wait. Cleaning up after wiping file system metadata." msgstr "" #: ../bleachbit/Worker.py:190 #, python-format msgid "About %d minute remaining." msgid_plural "About %d minutes remaining." msgstr[0] "Còn lại khoảng %d phút." #. TRANSLATORS: This refers to disk space that was #. really recovered (in other words, not a preview) #: ../bleachbit/Worker.py:247 #, python-format msgid "Disk space recovered: %s" msgstr "Dung lượng đã phục hồi: %s" #. TRANSLATORS: This refers to a preview (no real #. changes were made yet) #: ../bleachbit/Worker.py:251 #, python-format msgid "Disk space to be recovered: %s" msgstr "Dung lượng sẽ được phục hồi: %s" #. TRANSLATORS: This refers to the number of files really #. deleted (in other words, not a preview). #: ../bleachbit/Worker.py:256 #, python-format msgid "Files deleted: %d" msgstr "Tập tin đã xóa: %d" #. TRANSLATORS: This refers to the number of files that #. would be deleted (in other words, simply a preview). #: ../bleachbit/Worker.py:260 #, python-format msgid "Files to be deleted: %d" msgstr "Tập tin sẽ bị xóa: %d" #: ../bleachbit/Worker.py:263 #, python-format msgid "Special operations: %d" msgstr "Thao tác đặc biệt: %d" #: ../bleachbit/Worker.py:266 #, python-format msgid "Errors: %d" msgstr "Lỗi: %d" #. TRANSLATORS: The "deep scan" feature searches over broad #. areas of the file system such as the user's whole home directory #. or all the system executables. #: ../bleachbit/Worker.py:281 msgid "Please wait. Running deep scan." msgstr "Vui lòng đợi. Đang quét sâu." #. TRANSLATORS: %s is replaced with Firefox, System, etc. #: ../bleachbit/Worker.py:311 #, python-format msgid "Please wait. Previewing %s." msgstr "Vui lòng chờ. Đang xem trước %s." bleachbit-2.0/po/hu.po0000644000175000017500000013114313245436307012776 0ustar hlehle# Hungarian translation for bleachbit # Copyright (c) 2009 Rosetta Contributors and Canonical Ltd 2009 # This file is distributed under the same license as the bleachbit package. # FIRST AUTHOR , 2009. # msgid "" msgstr "" "Project-Id-Version: bleachbit\n" "Report-Msgid-Bugs-To: FULL NAME \n" "POT-Creation-Date: 2015-03-15 15:49-0600\n" "PO-Revision-Date: 2015-09-05 00:35+0000\n" "Last-Translator: Csaba Vágányik \n" "Language-Team: Hungarian \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n != 1;\n" "X-Launchpad-Export-Date: 2015-09-06 17:48+0000\n" "X-Generator: Launchpad (build 17706)\n" #: ../cleaners/mc.xml ../cleaners/tortoisesvn.xml ../cleaners/vim.xml #: ../cleaners/safari.xml ../cleaners/links2.xml ../cleaners/seamonkey.xml #: ../cleaners/realplayer.xml ../cleaners/windows_defender.xml #: ../cleaners/d4x.xml ../cleaners/sqlite3.xml #: ../cleaners/internet_explorer.xml ../cleaners/libreoffice.xml #: ../cleaners/easytag.xml ../cleaners/bash.xml ../cleaners/nautilus.xml #: ../cleaners/octave.xml ../cleaners/elinks.xml ../cleaners/chromium.xml #: ../cleaners/google_chrome.xml msgid "History" msgstr "Előzmények" #: ../cleaners/mc.xml ../cleaners/tortoisesvn.xml ../cleaners/links2.xml #: ../cleaners/realplayer.xml ../cleaners/d4x.xml ../cleaners/libreoffice.xml #: ../cleaners/easytag.xml ../cleaners/nautilus.xml ../cleaners/gnome.xml #: ../bleachbit/Cleaner.py:348 ../bleachbit/Cleaner.py:422 #: ../bleachbit/Cleaner.py:431 msgid "Delete the usage history" msgstr "Törli a használati előzményeket" #: ../cleaners/gpodder.xml ../cleaners/hippo_opensim_viewer.xml #: ../cleaners/thumbnails.xml ../cleaners/safari.xml ../cleaners/emesene.xml #: ../cleaners/liferea.xml ../cleaners/seamonkey.xml ../cleaners/vuze.xml #: ../cleaners/yahoo_messenger.xml ../cleaners/pidgin.xml #: ../cleaners/adobe_reader.xml ../cleaners/evolution.xml #: ../cleaners/tremulous.xml ../cleaners/libreoffice.xml ../cleaners/xine.xml #: ../cleaners/nexuiz.xml ../cleaners/exaile.xml ../cleaners/opera.xml #: ../cleaners/amsn.xml ../cleaners/gftp.xml ../cleaners/miro.xml #: ../cleaners/beagle.xml ../cleaners/kde.xml ../cleaners/epiphany.xml #: ../cleaners/flash.xml ../cleaners/secondlife_viewer.xml #: ../cleaners/java.xml ../cleaners/chromium.xml ../cleaners/audacious.xml #: ../cleaners/rhythmbox.xml ../cleaners/google_chrome.xml #: ../cleaners/thunderbird.xml ../bleachbit/Cleaner.py:191 #: ../bleachbit/Cleaner.py:369 ../bleachbit/Cleaner.py:454 msgid "Cache" msgstr "Gyorsítótár" #: ../cleaners/gpodder.xml ../cleaners/yum.xml #: ../cleaners/hippo_opensim_viewer.xml ../cleaners/thumbnails.xml #: ../cleaners/windows_explorer.xml ../cleaners/liferea.xml #: ../cleaners/vuze.xml ../cleaners/yahoo_messenger.xml ../cleaners/pidgin.xml #: ../cleaners/adobe_reader.xml ../cleaners/evolution.xml #: ../cleaners/libreoffice.xml ../cleaners/apt.xml ../cleaners/xine.xml #: ../cleaners/nexuiz.xml ../cleaners/exaile.xml ../cleaners/amsn.xml #: ../cleaners/gftp.xml ../cleaners/miro.xml ../cleaners/beagle.xml #: ../cleaners/kde.xml ../cleaners/flash.xml ../cleaners/secondlife_viewer.xml #: ../cleaners/java.xml ../cleaners/audacious.xml ../cleaners/rhythmbox.xml #: ../bleachbit/Cleaner.py:369 ../bleachbit/Cleaner.py:454 #: ../bleachbit/Cleaner.py:488 ../bleachbit/Cleaner.py:490 msgid "Delete the cache" msgstr "Gyorsítótár törlése" #. TRANSLATORS: Vacuum is a verb. The term is jargon #. from the SQLite database. Microsoft Access uses #. the term 'Compact Database' (which you may translate #. instead). Another synonym is 'defragment.' #: ../cleaners/gpodder.xml ../cleaners/yum.xml ../cleaners/safari.xml #: ../cleaners/liferea.xml ../cleaners/chromium.xml #: ../cleaners/google_chrome.xml ../cleaners/thunderbird.xml #: ../bleachbit/Action.py:335 ../bleachbit/Cleaner.py:211 #: ../bleachbit/Cleaner.py:359 msgid "Vacuum" msgstr "Zsugorítás" #: ../cleaners/gpodder.xml ../cleaners/yum.xml ../cleaners/safari.xml #: ../cleaners/liferea.xml ../cleaners/chromium.xml #: ../cleaners/google_chrome.xml ../cleaners/thunderbird.xml #: ../bleachbit/Cleaner.py:212 msgid "" "Clean database fragmentation to reduce space and improve speed without " "removing any data" msgstr "" "Az adatbázis töredezettségének megszüntetése, adatok törlése nélkül, a jobb " "helykihasználás és sebesség érdekében" #: ../cleaners/yum.xml ../cleaners/apt.xml msgid "Package manager" msgstr "Csomagkezelő" #: ../cleaners/warzone2100.xml ../cleaners/hippo_opensim_viewer.xml #: ../cleaners/gl-117.xml ../cleaners/tremulous.xml ../cleaners/nexuiz.xml #: ../cleaners/secondlife_viewer.xml msgid "Game" msgstr "Játék" #: ../cleaners/warzone2100.xml ../cleaners/hippo_opensim_viewer.xml #: ../cleaners/teamviewer.xml ../cleaners/realplayer.xml ../cleaners/vuze.xml #: ../cleaners/yahoo_messenger.xml ../cleaners/amule.xml #: ../cleaners/easytag.xml ../cleaners/exaile.xml ../cleaners/screenlets.xml #: ../cleaners/gftp.xml ../cleaners/miro.xml ../cleaners/audacious.xml #: ../bleachbit/Cleaner.py:485 msgid "Logs" msgstr "Naplók" #: ../cleaners/warzone2100.xml ../cleaners/hippo_opensim_viewer.xml #: ../cleaners/teamviewer.xml ../cleaners/realplayer.xml ../cleaners/vuze.xml #: ../cleaners/yahoo_messenger.xml ../cleaners/amule.xml #: ../cleaners/exaile.xml ../cleaners/screenlets.xml ../cleaners/gftp.xml #: ../cleaners/miro.xml ../cleaners/audacious.xml ../bleachbit/Cleaner.py:485 msgid "Delete the logs" msgstr "Naplók törlése" #: ../cleaners/thumbnails.xml ../cleaners/windows_explorer.xml msgid "Thumbnails" msgstr "Bélyegképek" #: ../cleaners/thumbnails.xml msgid "Icons for files on the system" msgstr "Ikonok a rendszeren lévő fájlok részére" #: ../cleaners/vim.xml ../cleaners/gedit.xml msgid "Editor" msgstr "Szerkesztő" #: ../cleaners/vim.xml msgid "" "Delete ~/.viminfo which includes file history, command history, and buffers" msgstr "" "~/.viminfo fájl törlése, mely a Vim munkamenetet, előzményeket tárolja." #: ../cleaners/filezilla.xml ../cleaners/transmission.xml ../cleaners/vuze.xml #: ../cleaners/amule.xml ../cleaners/gftp.xml msgid "File transfer client" msgstr "Fájl letöltő, feltöltő kliens" #: ../cleaners/filezilla.xml ../cleaners/paint.xml #: ../cleaners/windows_media_player.xml ../cleaners/windows_explorer.xml #: ../cleaners/teamviewer.xml ../cleaners/microsoft_office.xml #: ../cleaners/vlc.xml ../cleaners/adobe_reader.xml ../cleaners/winamp.xml #: ../cleaners/winzip.xml ../cleaners/winrar.xml ../cleaners/audacious.xml #: ../cleaners/wordpad.xml ../bleachbit/Cleaner.py:370 msgid "Most recently used" msgstr "Legutóbb használt" #: ../cleaners/filezilla.xml ../cleaners/windows_explorer.xml #: ../cleaners/gwenview.xml ../cleaners/adobe_reader.xml ../cleaners/gedit.xml #: ../cleaners/kde.xml ../cleaners/audacious.xml ../bleachbit/Cleaner.py:371 #: ../bleachbit/Cleaner.py:468 msgid "Delete the list of recently used documents" msgstr "Törli a legutóbb használt dokumentumok listáját" #: ../cleaners/skype.xml ../cleaners/xchat.xml ../cleaners/emesene.xml #: ../cleaners/seamonkey.xml ../cleaners/yahoo_messenger.xml #: ../cleaners/pidgin.xml ../cleaners/amsn.xml msgid "Chat logs" msgstr "Chat naplók" #: ../cleaners/skype.xml ../cleaners/xchat.xml ../cleaners/emesene.xml #: ../cleaners/seamonkey.xml ../cleaners/yahoo_messenger.xml #: ../cleaners/pidgin.xml ../cleaners/amsn.xml msgid "Delete the chat logs" msgstr "Csevegési naplók törlése" #: ../cleaners/skype.xml msgid "Installers" msgstr "Telepítők" #: ../cleaners/skype.xml msgid "Delete cached patches and installers" msgstr "Gyorsítótárazott javítások és telepítők törlése" #: ../cleaners/xchat.xml ../cleaners/emesene.xml #: ../cleaners/yahoo_messenger.xml ../cleaners/pidgin.xml ../cleaners/amsn.xml msgid "Chat client" msgstr "Chat kliens" #: ../cleaners/safari.xml ../cleaners/links2.xml ../cleaners/seamonkey.xml #: ../cleaners/konqueror.xml ../cleaners/internet_explorer.xml #: ../cleaners/opera.xml ../cleaners/epiphany.xml ../cleaners/elinks.xml #: ../cleaners/chromium.xml ../cleaners/google_chrome.xml #: ../bleachbit/Cleaner.py:224 msgid "Web browser" msgstr "Webböngésző" #: ../cleaners/safari.xml ../cleaners/seamonkey.xml ../cleaners/opera.xml #: ../cleaners/epiphany.xml ../cleaners/chromium.xml #: ../cleaners/google_chrome.xml ../cleaners/thunderbird.xml #: ../bleachbit/Cleaner.py:192 msgid "Delete the web cache, which reduces time to display revisited pages" msgstr "" "Web gyorsítótár törlése, amely csökkenti az újra meglátogatott oldalak " "megjelenítési idejét" #: ../cleaners/safari.xml ../cleaners/liferea.xml ../cleaners/seamonkey.xml #: ../cleaners/realplayer.xml ../cleaners/konqueror.xml #: ../cleaners/internet_explorer.xml ../cleaners/opera.xml #: ../cleaners/epiphany.xml ../cleaners/flash.xml ../cleaners/silverlight.xml #: ../cleaners/chromium.xml ../cleaners/google_chrome.xml #: ../cleaners/thunderbird.xml ../bleachbit/Cleaner.py:193 msgid "Cookies" msgstr "Sütik" #: ../cleaners/safari.xml ../cleaners/liferea.xml ../cleaners/seamonkey.xml #: ../cleaners/realplayer.xml ../cleaners/konqueror.xml #: ../cleaners/internet_explorer.xml ../cleaners/opera.xml #: ../cleaners/epiphany.xml ../cleaners/flash.xml ../cleaners/silverlight.xml #: ../cleaners/chromium.xml ../cleaners/google_chrome.xml #: ../cleaners/thunderbird.xml ../bleachbit/Cleaner.py:194 msgid "" "Delete cookies, which contain information such as web site preferences, " "authentication, and tracking identification" msgstr "" "Törli a sütiket, melyek olyan információkat hordoznak mint weboldalak " "beállításai, hitelesítés, és követési azonosítók" #: ../cleaners/safari.xml ../cleaners/konqueror.xml #: ../cleaners/internet_explorer.xml ../cleaners/opera.xml #: ../bleachbit/Cleaner.py:210 msgid "List of visited web pages" msgstr "A látogatott oldalak listája" #. Torrent software can block a list of IP addresses, such as those that may belong to malware or anti-piracy organizations #: ../cleaners/transmission.xml msgid "Blocklists" msgstr "Tiltólisták" #: ../cleaners/transmission.xml ../cleaners/windows_defender.xml #: ../cleaners/beagle.xml ../cleaners/thunderbird.xml ../cleaners/deepscan.xml #: ../bleachbit/Cleaner.py:196 msgid "Delete the files" msgstr "Fájlok törlése" #: ../cleaners/transmission.xml msgid "Blocklists will need update to work." msgstr "A tiltólistákat frissíteni kell a működéshez" #: ../cleaners/transmission.xml msgid "Torrents" msgstr "Torrentek" #: ../cleaners/transmission.xml msgid "Delete the torrents (just the metadata but not the files described)" msgstr "Törli a torrenteket (csak a metaadatokat, de nem a leírt fájlokat)" #: ../cleaners/paint.xml ../cleaners/windows_media_player.xml #: ../cleaners/windows_explorer.xml ../cleaners/teamviewer.xml #: ../cleaners/microsoft_office.xml ../cleaners/vlc.xml ../cleaners/winamp.xml #: ../cleaners/winzip.xml ../cleaners/winrar.xml ../cleaners/wordpad.xml msgid "Delete the most recently used list" msgstr "Törli a legutóbbi dokumentumok listáját" #: ../cleaners/emesene.xml msgid "Delete the avatars and emoticons cache" msgstr "Az avatarok és hangulatjelek gyorsítótárának törlése" #: ../cleaners/windows_media_player.xml ../cleaners/realplayer.xml #: ../cleaners/vlc.xml ../cleaners/winamp.xml msgid "Media player" msgstr "Médialejátszó" #: ../cleaners/windows_explorer.xml ../cleaners/nautilus.xml msgid "File manager" msgstr "Fájlkezelő" #: ../cleaners/windows_explorer.xml ../cleaners/gwenview.xml #: ../cleaners/gedit.xml ../cleaners/kde.xml ../bleachbit/Cleaner.py:467 msgid "Recent documents list" msgstr "Legutóbbi dokumentumok listája" #. In Windows 'Run' is the dialog in the Start menu #. In GNOME 'Run' is the dialog shown when typing ALT+F2' #: ../cleaners/windows_explorer.xml ../cleaners/gnome.xml msgid "Run" msgstr "Futtatás" #: ../cleaners/windows_explorer.xml ../cleaners/opera.xml #: ../cleaners/gnome.xml ../cleaners/google_toolbar.xml msgid "Search history" msgstr "Keresési előzmények" #: ../cleaners/windows_explorer.xml ../cleaners/opera.xml #: ../cleaners/gnome.xml ../cleaners/google_toolbar.xml msgid "Delete the search history" msgstr "Keresési előzmények törlése" #: ../cleaners/gl-117.xml ../cleaners/microsoft_office.xml #: ../cleaners/beagle.xml ../cleaners/secondlife_viewer.xml #: ../cleaners/x11.xml msgid "Debug logs" msgstr "Nyomkövetési naplók" #: ../cleaners/gl-117.xml ../cleaners/microsoft_office.xml #: ../cleaners/easytag.xml ../cleaners/beagle.xml #: ../cleaners/secondlife_viewer.xml ../cleaners/x11.xml msgid "Delete the debug logs" msgstr "Nyomkövetési naplók törlése" #: ../cleaners/google_earth.xml ../cleaners/winetricks.xml #: ../cleaners/vuze.xml ../cleaners/adobe_reader.xml ../cleaners/amule.xml #: ../cleaners/wine.xml ../cleaners/internet_explorer.xml ../cleaners/gimp.xml #: ../cleaners/kde.xml ../cleaners/deepscan.xml ../bleachbit/Cleaner.py:519 msgid "Temporary files" msgstr "Átmeneti fájlok" #: ../cleaners/google_earth.xml ../cleaners/winetricks.xml #: ../cleaners/vuze.xml ../cleaners/adobe_reader.xml ../cleaners/amule.xml #: ../cleaners/wine.xml ../cleaners/internet_explorer.xml ../cleaners/gimp.xml #: ../cleaners/kde.xml ../cleaners/deepscan.xml ../bleachbit/Cleaner.py:519 msgid "Delete the temporary files" msgstr "Átmeneti fájlok törlése" #: ../cleaners/seamonkey.xml ../cleaners/opera.xml ../bleachbit/Cleaner.py:200 msgid "Download history" msgstr "Letöltési előzmények" #: ../cleaners/seamonkey.xml ../cleaners/opera.xml ../bleachbit/Cleaner.py:200 msgid "List of files downloaded" msgstr "A letöltött fájlok listája" #: ../cleaners/seamonkey.xml msgid "Delete the list of visited web pages" msgstr "Böngészési előzmények törlése" #: ../cleaners/vuze.xml ../cleaners/deepscan.xml ../bleachbit/Cleaner.py:189 msgid "Backup files" msgstr "Biztonsági mentések" #: ../cleaners/vuze.xml ../cleaners/deepscan.xml ../bleachbit/Cleaner.py:190 msgid "Delete the backup files" msgstr "Törli a biztonsági mentéseket" #: ../cleaners/konqueror.xml ../cleaners/opera.xml ../cleaners/chromium.xml msgid "Current session" msgstr "Jelenlegi munkamenet" #: ../cleaners/konqueror.xml ../cleaners/opera.xml ../cleaners/chromium.xml msgid "Delete the current session" msgstr "Jelenlegi munkamenet törlése" #: ../cleaners/konqueror.xml ../cleaners/opera.xml ../bleachbit/Cleaner.py:210 msgid "URL history" msgstr "URL előzmények" #: ../cleaners/microsoft_office.xml ../cleaners/libreoffice.xml #: ../bleachbit/Cleaner.py:383 msgid "Office suite" msgstr "Irodai programcsomak" #: ../cleaners/adobe_reader.xml msgid "Document viewer" msgstr "Dokumentumnéző" #: ../cleaners/evolution.xml ../cleaners/thunderbird.xml msgid "Email client" msgstr "E-mail kliens" #: ../cleaners/tremulous.xml msgid "Delete the list of game servers" msgstr "Törli a játékszerverek listáját" #: ../cleaners/sqlite3.xml ../cleaners/bash.xml ../cleaners/octave.xml msgid "Delete the command history" msgstr "Parancs előzmények törlése" #: ../cleaners/wine.xml msgid "Compatibility layer for Windows software" msgstr "Kompatibilitási réteg Windows szoftverhez" #: ../cleaners/internet_explorer.xml ../cleaners/chromium.xml #: ../cleaners/google_chrome.xml ../bleachbit/Cleaner.py:201 msgid "Form history" msgstr "Űrlapok előzményei" #: ../cleaners/internet_explorer.xml ../bleachbit/Cleaner.py:202 msgid "A history of forms entered in web sites and in the Search bar" msgstr "A keresőmező és webes űrlapok előzményei" #. This software edits metadata tags, such as title and artist, in audio files #: ../cleaners/easytag.xml msgid "Audio files tagger" msgstr "Hangfájl címkéző" #: ../cleaners/apt.xml msgid "Delete obsolete files" msgstr "Elavult fájlok törlése" #: ../cleaners/apt.xml msgid "Package lists" msgstr "Csomaglisták" #: ../cleaners/xine.xml ../cleaners/miro.xml ../cleaners/flash.xml msgid "Multimedia viewer" msgstr "Multimédia néző" #: ../cleaners/recoll.xml ../cleaners/beagle.xml msgid "Search tool" msgstr "Kereső eszköz" #: ../cleaners/recoll.xml ../cleaners/beagle.xml ../cleaners/thunderbird.xml msgid "Index" msgstr "Index" #: ../cleaners/recoll.xml msgid "" "Delete the search index, a database of words and the files they contain" msgstr "" "Törli a keresési indexet, mely szavak és az őket tartalmazó fájlok adatbázisa" #: ../cleaners/exaile.xml msgid "Downloaded podcasts" msgstr "Letöltött podcastok" #: ../cleaners/exaile.xml msgid "Delete downloaded podcasts" msgstr "Letöltött podcastok törlése" #: ../cleaners/bash.xml msgid "Shell" msgstr "Parancsértelmező" #. TRANSLATORS: DOM = Document Object Model. #: ../cleaners/opera.xml ../cleaners/chromium.xml #: ../cleaners/google_chrome.xml ../bleachbit/Cleaner.py:198 msgid "DOM Storage" msgstr "DOM tároló" #: ../cleaners/opera.xml ../cleaners/chromium.xml #: ../cleaners/google_chrome.xml ../bleachbit/Cleaner.py:198 msgid "Delete HTML5 cookies" msgstr "Törli a HTML5 sütiket" #: ../cleaners/opera.xml ../cleaners/epiphany.xml ../cleaners/chromium.xml #: ../cleaners/google_chrome.xml ../cleaners/thunderbird.xml #: ../bleachbit/Cleaner.py:207 msgid "Passwords" msgstr "Jelszavak" #: ../cleaners/opera.xml ../cleaners/epiphany.xml ../cleaners/chromium.xml #: ../cleaners/google_chrome.xml ../cleaners/thunderbird.xml #: ../bleachbit/Cleaner.py:208 msgid "" "A database of usernames and passwords as well as a list of sites that should " "not store passwords" msgstr "" "Adatbázis, mely tartalmazza az elmentett felhasználó neveket és jelszavakat, " "valamint azon oldalak listáját, ahol soha ne mentse a jelszót" #: ../cleaners/opera.xml ../cleaners/epiphany.xml ../cleaners/chromium.xml #: ../cleaners/google_chrome.xml ../cleaners/thunderbird.xml msgid "This option will delete your saved passwords." msgstr "Ez a beállítás törölni fogja a mentett jelszavakat." #: ../cleaners/nautilus.xml msgid "Custom folders will be reset." msgstr "Egyéni mappák vissza lesznek állítva." #: ../cleaners/screenlets.xml msgid "Widgets for the desktop" msgstr "Asztali widgetek" #: ../cleaners/kde.xml msgid "This option may be incompatible with kdesudo" msgstr "Ez a beállítás lehet, hogy nem kompatibilis a kdesudo-val" #: ../cleaners/epiphany.xml msgid "Places" msgstr "Helyek" #: ../cleaners/epiphany.xml msgid "" "A database of URLs including bookmarks, favicons, and a history of visited " "web sites" msgstr "" "Adatbázis, mely tartalmazza az előzményeket, a könyvjelzőket és a faviconokat" #: ../cleaners/epiphany.xml msgid "This option deletes all bookmarks." msgstr "Ez a beállítás töröl minden könyvjelzőt." #: ../cleaners/elinks.xml msgid "Delete the cookies, visited URLs, and search history" msgstr "Törli a sütiket, látogatott oldalakat és a keresési előzményeket" #: ../cleaners/chromium.xml ../cleaners/google_chrome.xml msgid "A history of forms entered in web sites" msgstr "Weboldalakon kitöltött Űrlap előzmények" #: ../cleaners/chromium.xml ../cleaners/google_chrome.xml msgid "" "Delete the history which includes visited sites, downloads, and thumbnails" msgstr "" "Törli az előzményeket, amelyek tartalmazzák: meglátogatott webhelyek és " "letöltések listáját, bélyegképekeket" #: ../cleaners/chromium.xml ../cleaners/google_chrome.xml msgid "Search engines" msgstr "Keresők" #. 'Factory' means a search engine that is installed by default 'from the factory,' but this is different than a 'default search engine' https://lists.launchpad.net/launchpad-translators/msg00283.html #: ../cleaners/chromium.xml ../cleaners/google_chrome.xml msgid "" "Reset the search engine usage history and delete non-factory search engines, " "some of which are added automatically" msgstr "" "Törli a keresők használatának előzményeit és a nem-gyári keresőket, néhány " "automatikusan lett felvéve" #: ../cleaners/audacious.xml msgid "Audio player" msgstr "Hanglejátszó" #: ../cleaners/google_chrome.xml msgid "Session" msgstr "Munkamenet" #: ../cleaners/google_chrome.xml msgid "Delete the current and last sessions" msgstr "Törli a jelenlegi és az utolsó munkamenetet" #: ../cleaners/x11.xml msgid "Windowing system" msgstr "Ablakkezelő rendszer" #: ../cleaners/wordpad.xml msgid "Word processor" msgstr "Szövegszerkesztő" #: ../cleaners/deepscan.xml msgid "Deep scan" msgstr "Alapos vizsgálat" #: ../cleaners/deepscan.xml msgid "Inspect the preview for any files you want to keep." msgstr "" "Nézze át az előzetes listát olyan fájlok után melyeket meg szeretne tartani." #: ../cleaners/deepscan.xml msgid "This option is slow." msgstr "Ez a beállítás elég lassú." #: ../bleachbit.desktop msgid "Unnecessary file cleaner" msgstr "Szükségtelen fájl törlő" #: ../bleachbit.desktop msgid "Free space and maintain privacy" msgstr "Hely felszabadítása és magánszférájának fenntartása" #. TRANSLATORS: Parts of this file will be deleted #: ../bleachbit/Action.py:192 ../bleachbit/Action.py:205 #: ../bleachbit/Action.py:218 ../bleachbit/Action.py:231 #: ../bleachbit/Action.py:244 ../bleachbit/Command.py:181 #: ../bleachbit/Command.py:211 msgid "Clean file" msgstr "Fájl megtisztítása" #. TRANSLATORS: this is the context menu #: ../bleachbit/Action.py:308 ../bleachbit/GUI.py:578 msgid "Clean" msgstr "Tisztítás" #: ../bleachbit/Cleaner.py:196 msgid "Crash reports" msgstr "Összeomlás jelentések" #: ../bleachbit/Cleaner.py:203 msgid "Session restore" msgstr "Munkamenet visszaállítása" #: ../bleachbit/Cleaner.py:204 msgid "Loads the initial session after the browser closes or crashes" msgstr "" "Visszatölti a munkamenetet miután a böngésző bezáródik vagy összeomlik" #: ../bleachbit/Cleaner.py:206 msgid "Site preferences" msgstr "Oldal beállításai" #: ../bleachbit/Cleaner.py:206 msgid "Settings for individual sites" msgstr "Egyéni oldalak beállításai" #. TRANSLATORS: desktop entries are .desktop files in Linux tha #. make up the application menu (the menu that shows BleachBit, #. Firefox, and others. The .desktop files also associate file #. types, so clicking on an .html file in Nautilus brings up #. Firefox. #. More information: #. http://standards.freedesktop.org/menu-spec/latest/index.html#introduction #: ../bleachbit/Cleaner.py:452 msgid "Broken desktop files" msgstr "Hibás asztali fájlok" #: ../bleachbit/Cleaner.py:453 msgid "Delete broken application menu entries and file associations" msgstr "" "Törli az Alkalmazások menü hibás bejegyzéseit és a hibás fájltársításokat" #. TRANSLATORS: Localizations are files supporting specific #. languages, so applications appear in Spanish, etc. #: ../bleachbit/Cleaner.py:457 msgid "Localizations" msgstr "Lokalizáció" #: ../bleachbit/Cleaner.py:458 msgid "Delete files for unwanted languages" msgstr "Szükségtelen nyelvek fájljainak törlése" #: ../bleachbit/Cleaner.py:460 msgid "Configure this option in the preferences." msgstr "Konfigurálj ezt az opciót a Beállítások menüben." #: ../bleachbit/Cleaner.py:466 msgid "Rotated logs" msgstr "Régi naplófájlok" #: ../bleachbit/Cleaner.py:466 msgid "Delete old system logs" msgstr "Régi rendszernaplók törlése" #: ../bleachbit/Cleaner.py:469 msgid "Trash" msgstr "Kuka" #: ../bleachbit/Cleaner.py:469 msgid "Empty the trash" msgstr "Kuka ürítése" #: ../bleachbit/Cleaner.py:475 ../bleachbit/Cleaner.py:629 #: ../bleachbit/Worker.py:169 msgid "Memory" msgstr "Memória" #. TRANSLATORS: 'free' means 'unallocated' #: ../bleachbit/Cleaner.py:477 msgid "Wipe the swap and free memory" msgstr "A swap és a szabad memória tisztítása" #: ../bleachbit/Cleaner.py:479 msgid "This option is experimental and may cause system problems." msgstr "Ez egy kísérleti lehetőség, rendszerproblémákat okozhat." #: ../bleachbit/Cleaner.py:487 msgid "Memory dump" msgstr "Memóriatartalom" #: ../bleachbit/Cleaner.py:487 msgid "Delete the file memory.dmp" msgstr "Törli a memory.dmp fájlt" #. TRANSLATORS: Prefetch is Microsoft Windows jargon. #: ../bleachbit/Cleaner.py:490 msgid "Prefetch" msgstr "Prefetch" #: ../bleachbit/Cleaner.py:492 msgid "Recycle bin" msgstr "Kuka" #: ../bleachbit/Cleaner.py:492 msgid "Empty the recycle bin" msgstr "Kuka ürítése" #. TRANSLATORS: 'Update' is a noun, and 'Update uninstallers' is an option to delete #. the uninstallers for software updates. #: ../bleachbit/Cleaner.py:495 msgid "Update uninstallers" msgstr "Frissítések eltávolítói" #: ../bleachbit/Cleaner.py:496 msgid "" "Delete uninstallers for Microsoft updates including hotfixes, service packs, " "and Internet Explorer updates" msgstr "" "Törli a Microsoft frissítések eltávolító programjait, beleértve a " "gyorsjavításokat, szervizcsomagokat és Internet Explorer frissítéseket" #: ../bleachbit/Cleaner.py:503 ../bleachbit/Cleaner.py:718 msgid "Clipboard" msgstr "Vágólap" #: ../bleachbit/Cleaner.py:504 msgid "" "The desktop environment's clipboard used for copy and paste operations" msgstr "" "Az asztali környezet vágólapja, melyet másolás és beillesztés műveletekre " "használnak" #. TRANSLATORS: "Custom" is an option allowing the user to specify which #. files and folders will be erased. #: ../bleachbit/Cleaner.py:511 ../bleachbit/GuiPreferences.py:63 msgid "Custom" msgstr "Egyéni" #: ../bleachbit/Cleaner.py:512 msgid "Delete user-specified files and folders" msgstr "A felhasználó által megadott fájlok és mappák törlése" #. TRANSLATORS: 'free' means 'unallocated' #: ../bleachbit/Cleaner.py:514 msgid "Free disk space" msgstr "Szabad lemezterület" #. TRANSLATORS: 'free' means 'unallocated' #: ../bleachbit/Cleaner.py:516 msgid "Overwrite free disk space to hide deleted files" msgstr "Szabad lemezterület felülírása a törölt fájlok álcázására" #: ../bleachbit/Cleaner.py:517 msgid "This option is very slow." msgstr "Ez a beállítás nagyon lassú." #: ../bleachbit/Cleaner.py:522 msgid "The system in general" msgstr "A rendszer általában" #: ../bleachbit/Cleaner.py:528 ../bleachbit/Cleaner.py:824 msgid "System" msgstr "Rendszer" #. TRANSLATORS: 'Free' means 'unallocated.' #. %s expands to a path such as C:\ or /tmp/ #: ../bleachbit/Cleaner.py:726 ../bleachbit/Cleaner.py:855 #, python-format msgid "Overwrite free disk space %s" msgstr "Szabad lemezterület felülírása: %s" #. TRANSLATORS: %s expands to a drive letter such as C:\ or D:\ #: ../bleachbit/Cleaner.py:753 #, python-format msgid "Recycle bin %s" msgstr "Kuka %s" #: ../bleachbit/CLI.py:107 #, python-format msgid "not a valid cleaner: %s" msgstr "nem érvényes takarító: %s" #. TRANSLATORS: This is the command line usage. Don't translate #. %prog, but do translate usage, options, cleaner, and option. #. More information about the command line is here #. http://bleachbit.sourceforge.net/documentation/command-line #: ../bleachbit/CLI.py:134 msgid "usage: %prog [options] cleaner.option1 cleaner.option2" msgstr "használat: %prog[opciók] takarító.opció1 takarító.opció2" #: ../bleachbit/CLI.py:137 msgid "list cleaners" msgstr "takarítók listázása" #. TRANSLATORS: predefined cleaners are for applications, such as Firefox and Flash. #. This is different than cleaning an arbitrary file, such as a #. spreadsheet on the desktop. #: ../bleachbit/CLI.py:142 msgid "run cleaners to delete files and make other permanent changes" msgstr "" "tisztítók futtatása a fájlok törlése és egyéb maradandó változtatások " "elvégzésének céljából" #: ../bleachbit/CLI.py:144 msgid "shred specific files or folders" msgstr "adott fájlok és mappák megsemmisítése" #: ../bleachbit/CLI.py:146 msgid "show system information" msgstr "rendszerinformáció megjelenítése" #: ../bleachbit/CLI.py:148 msgid "launch the graphical interface" msgstr "grafikus felület indítása" #: ../bleachbit/CLI.py:150 msgid "do not prompt for administrator privileges" msgstr "ne kérjen rendszergazdai jogokat" #: ../bleachbit/CLI.py:155 msgid "preview files to be deleted and other changes" msgstr "tekintse meg a törlendő fájlokat és más változtatásokat" #: ../bleachbit/CLI.py:157 msgid "use options set in the graphical interface" msgstr "a grafikus felületen beállított opciók használata" #: ../bleachbit/CLI.py:160 msgid "update winapp2.ini, if a new version is available" msgstr "winapp2.ini frissítése ha új verzió érhető el" #: ../bleachbit/CLI.py:162 msgid "output version information and exit" msgstr "verzióinformációk kiírása és kilépés" #: ../bleachbit/CLI.py:164 msgid "overwrite files to hide contents" msgstr "fájlok felülírása a tartalom elrejtéséhez" #. TRANSLATORS: This is the label in the log indicating was #. skipped because it matches the whitelist #: ../bleachbit/Command.py:44 msgid "Skip" msgstr "Kihagyva" #. TRANSLATORS: This is the label in the log indicating will be #. deleted (for previews) or was actually deleted #: ../bleachbit/Command.py:70 msgid "Delete" msgstr "Törlés" #. TRANSLATORS: The file will be deleted when the #. system reboots #: ../bleachbit/Command.py:91 msgid "Mark for deletion" msgstr "Kijelölés törlésre" #. TRANSLATORS: The file will be truncated to 0 bytes in length #: ../bleachbit/Command.py:247 msgid "Truncate" msgstr "Kiűrítés" #: ../bleachbit/Command.py:286 msgid "Delete registry key" msgstr "Regisztrációs kulcs törlése" #: ../bleachbit/GuiBasic.py:112 msgid "Delete confirmation" msgstr "Törlés megerősítése" #: ../bleachbit/GuiBasic.py:122 msgid "" "Are you sure you want to permanently delete files according to the selected " "operations? The actual files that will be deleted may have changed since " "you ran the preview." msgstr "" "Biztos benne, hogy véglegesen törli a kijelölt fájlokat? Az előnézet " "futtatása óta módosulhatott a törlésre kerülő fájlok listája." #: ../bleachbit/GuiBasic.py:125 msgid "Are you sure you want to permanently delete these files?" msgstr "Biztos benne, hogy véglegesen törli ezeket a fájlokat?" #: ../bleachbit/GuiBasic.py:162 #, python-format msgid "" "Because you are running as root, please manually open this link in a web " "browser:\n" "%s" msgstr "" "Mivel rendszergazdaként futtatja a programot, kérjük a következő hivatkozást " "kézzel nyissa meg a böngészőben:\n" "%s" #. TRANSLATORS: %s expands to bleachbit.sourceforge.net or similar #: ../bleachbit/GuiBasic.py:174 #, python-format msgid "Open web browser to %s?" msgstr "Megnyissam a %s-t a böngészőben?" #: ../bleachbit/GuiPreferences.py:55 ../bleachbit/GUI.py:633 msgid "Preferences" msgstr "Beállítások" #: ../bleachbit/GuiPreferences.py:61 msgid "General" msgstr "Általános" #: ../bleachbit/GuiPreferences.py:64 msgid "Drives" msgstr "Meghajtók" #: ../bleachbit/GuiPreferences.py:67 msgid "Languages" msgstr "Nyelvek" #: ../bleachbit/GuiPreferences.py:69 msgid "Whitelist" msgstr "Fehérlista" #: ../bleachbit/GuiPreferences.py:114 msgid "Check periodically for software updates via the Internet" msgstr "Rendszeresen keressen frissítéseket az internet segítségével" #: ../bleachbit/GuiPreferences.py:119 msgid "" "If an update is found, you will be given the option to view information " "about it. Then, you may manually download and install the update." msgstr "" "Ha elérhető egy újabb frissítés, megtekintheted a frissítés információit, " "ezután kézileg töltsd le a legfrissebb telepítőt és telepítsd a frissítést." #: ../bleachbit/GuiPreferences.py:125 msgid "Check for new beta releases" msgstr "Új béta kiadások keresése" #: ../bleachbit/GuiPreferences.py:134 msgid "Download and update cleaners from community (winapp2.ini)" msgstr "Tisztítók letöltése és frissítése közösségtől (winapp2.ini)" #. TRANSLATORS: This means to hide cleaners which would do #. nothing. For example, if Firefox were never used on #. this system, this option would hide Firefox to simplify #. the list of cleaners. #: ../bleachbit/GuiPreferences.py:148 msgid "Hide irrelevant cleaners" msgstr "Lényegtelen tisztítók elrejtése" #. TRANSLATORS: Overwriting is the same as shredding. It is a way #. to prevent recovery of the data. You could also translate #. 'Shred files to prevent recovery.' #: ../bleachbit/GuiPreferences.py:156 msgid "Overwrite files to hide contents" msgstr "Fájlok felülírása a tartalom elrejtéséhez" #: ../bleachbit/GuiPreferences.py:160 msgid "" "Overwriting is ineffective on some file systems and with certain BleachBit " "operations. Overwriting is significantly slower." msgstr "" "A felülírás hatástalan néhány fájlrendszeren és bizonyos BleachBit " "műveleteknél. A felülírás lényegesen lassabb." #: ../bleachbit/GuiPreferences.py:163 msgid "Start BleachBit with computer" msgstr "BleachBit indítása a számítógép indulásakor" #: ../bleachbit/GuiPreferences.py:169 msgid "Exit after cleaning" msgstr "Kilépés tisztítás után" #: ../bleachbit/GuiPreferences.py:175 msgid "Confirm before delete" msgstr "Megerősítés törlés előtt" #: ../bleachbit/GuiPreferences.py:188 ../bleachbit/GuiPreferences.py:319 #: ../bleachbit/GuiPreferences.py:360 ../bleachbit/GUI.py:540 msgid "Choose a folder" msgstr "Mappa kiválasztása" #: ../bleachbit/GuiPreferences.py:212 msgid "" "Choose a writable folder for each drive for which to overwrite free space." msgstr "" "Válasszon egy írható mappát minden egyes meghatónak amely felülírja a szabad " "lemezterületet." #. TRANSLATORS: In the preferences dialog, this button adds a path to #. the list of paths #: ../bleachbit/GuiPreferences.py:234 msgctxt "button" msgid "Add" msgstr "Hozzáadás" #. TRANSLATORS: In the preferences dialog, this button removes a path #. from the list of paths #: ../bleachbit/GuiPreferences.py:238 ../bleachbit/GuiPreferences.py:451 msgctxt "button" msgid "Remove" msgstr "Eltávolítás" #: ../bleachbit/GuiPreferences.py:263 msgid "All languages will be deleted except those checked." msgstr "Minden nyelv törlődik a kijelölteken kívül." #: ../bleachbit/GuiPreferences.py:281 msgid "Preserve" msgstr "Megőrzés" #: ../bleachbit/GuiPreferences.py:285 msgid "Code" msgstr "Kód" #: ../bleachbit/GuiPreferences.py:289 ../bleachbit/GUI.py:130 msgid "Name" msgstr "Név" #: ../bleachbit/GuiPreferences.py:306 ../bleachbit/GuiPreferences.py:347 msgid "Choose a file" msgstr "Fájl kiválasztása" #: ../bleachbit/GuiPreferences.py:313 ../bleachbit/GuiPreferences.py:354 #: ../bleachbit/GuiPreferences.py:398 msgid "File" msgstr "Fájl" #: ../bleachbit/GuiPreferences.py:327 ../bleachbit/GuiPreferences.py:368 #: ../bleachbit/GuiPreferences.py:400 msgid "Folder" msgstr "Mappa" #: ../bleachbit/GuiPreferences.py:410 msgid "Theses paths will not be deleted or modified." msgstr "Ezek az útvonalak nem kerülnek törlésre vagy módosításra." #: ../bleachbit/GuiPreferences.py:413 msgid "These locations can be selected for deletion." msgstr "Ezen helyek jelölhetőek ki törlésre." #: ../bleachbit/GuiPreferences.py:421 msgid "Type" msgstr "Típus" #. TRANSLATORS: In the tree view "Path" is used generically to refer to a #. file, a folder, or a pattern describing either #: ../bleachbit/GuiPreferences.py:427 msgid "Path" msgstr "Útvonal" #: ../bleachbit/GuiPreferences.py:439 msgctxt "button" msgid "Add file" msgstr "Fájl hozzáadása" #: ../bleachbit/GuiPreferences.py:445 msgctxt "button" msgid "Add folder" msgstr "Mappa hozzáadása" #: ../bleachbit/GUI.py:138 msgid "Active" msgstr "Aktív" #. TRANSLATORS: %(cleaner) may be Firefox, System, etc. #. %(option) may be cache, logs, cookies, etc. #. %(warning) may be 'This option is really slow' #: ../bleachbit/GUI.py:169 #, python-format msgid "" "Warning regarding %(cleaner)s - %(option)s:\n" "\n" "%(warning)s" msgstr "" "Figyelmeztetés:%(cleaner)s - %(option)s:\n" "\n" "%(warning)s" #: ../bleachbit/GUI.py:336 msgid "You must select an operation" msgstr "Választani kell egy műveletet" #: ../bleachbit/GUI.py:357 ../bleachbit/GUI.py:379 msgid "Done." msgstr "Kész." #: ../bleachbit/GUI.py:392 msgid "Program to clean unnecessary files" msgstr "Program a szükségtelen fájlok eltávolítására" #: ../bleachbit/GUI.py:398 msgid "" "GNU General Public License version 3 or later.\n" "See http://www.gnu.org/licenses/gpl-3.0.txt" msgstr "" "GNU GPL v3 vagy későbbi.\n" "Lásd: http://www.gnu.hu/gplv3.html" #. TRANSLATORS: Maintain the names of translators here. #. Launchpad does this automatically for translations #. typed in Launchpad. This is a special string shown #. in the 'About' box. #: ../bleachbit/GUI.py:404 msgid "translator-credits" msgstr "" "Launchpad Contributions:\n" " A. John Tom https://launchpad.net/~proller14-acc\n" " Balázs Kisterenyei https://launchpad.net/~moltenice80\n" " Csaba Vágányik https://launchpad.net/~vaganyik\n" " Gabor Kelemen https://launchpad.net/~kelemeng\n" " Gergely Szarka https://launchpad.net/~gszarka\n" " Muszela Balázs https://launchpad.net/~bazsi86-deactivatedaccount\n" " Papp Bence https://launchpad.net/~sclegnrbs\n" " Péter Trombitás https://launchpad.net/~trombipeti\n" " Zoltán Krasznecz https://launchpad.net/~krasznecz-zoltan\n" " alfa00red https://launchpad.net/~alfa00red\n" " charlie https://launchpad.net/~janos.csardi" #: ../bleachbit/GUI.py:416 msgid "System information" msgstr "Rendszerinformáció" #: ../bleachbit/GUI.py:489 msgid "Choose files to shred" msgstr "Válassza ki a megsemmisítendő fájlokat" #: ../bleachbit/GUI.py:492 msgid "Choose folder to shred" msgstr "Válasszon mappát a megsemmisítéshez" #. TRANSLATORS: this is the context menu #: ../bleachbit/GUI.py:573 msgid "Preview" msgstr "Előnézet" #: ../bleachbit/GUI.py:621 msgid "_Shred Files" msgstr "_Megsemmisítendő fájlok" #: ../bleachbit/GUI.py:623 msgid "Sh_red Folders" msgstr "M_egsemmisítendő mappák" #: ../bleachbit/GUI.py:625 msgid "_Wipe Free Space" msgstr "_Szabadterület törlése" #: ../bleachbit/GUI.py:627 msgid "S_hred Settings and Quit" msgstr "_Beállítások törlése és Kilépés" #: ../bleachbit/GUI.py:629 msgid "_Quit" msgstr "_Kilépés" #: ../bleachbit/GUI.py:631 msgid "_File" msgstr "_Fájl" #: ../bleachbit/GUI.py:634 msgid "_Edit" msgstr "_Szerkesztés" #: ../bleachbit/GUI.py:635 msgid "Help Contents" msgstr "Súgó tartalomjegyzéke" #: ../bleachbit/GUI.py:638 msgid "_Release Notes" msgstr "_Kiadási megjegyzések" #: ../bleachbit/GUI.py:641 msgid "_System Information" msgstr "_Rendszerinformáció" #: ../bleachbit/GUI.py:644 msgid "_About" msgstr "_Névjegy" #: ../bleachbit/GUI.py:645 msgid "_Help" msgstr "_Súgó" #: ../bleachbit/GUI.py:670 msgctxt "button" msgid "Preview" msgstr "Előnézet" #: ../bleachbit/GUI.py:675 msgid "Preview files in the selected operations (without deleting any files)" msgstr "" "A (törlésre) kiválasztott fájlok listájának megtekintése (nem lesz egyetlen " "fájl sem törölve)." #: ../bleachbit/GUI.py:685 msgctxt "button" msgid "Clean" msgstr "Tisztítás" #: ../bleachbit/GUI.py:689 msgid "Clean files in the selected operations" msgstr "Fájlok tisztítása a kijelölt műveletek során" #: ../bleachbit/GUI.py:779 msgid "Error when checking for updates: " msgstr "Hiba a frissítés keresése közben: " #: ../bleachbit/GUI.py:809 msgid "" "Error loading the SQLite module: the antivirus software may be blocking it." msgstr "" "Hiba lépett fel a SQLite modul betöltése közben: az antivirus program lehet " "hogy blokkolja." #: ../bleachbit/GUI.py:812 msgid "" "You are running BleachBit with administrative privileges for cleaning shared " "parts of the system, and references to the user profile folder will clean " "only the root account." msgstr "" "Rendszergazdai jogokkal futtatja a BleachBit-et a rendszer megosztott " "részeinek tisztítása végett, a felhasználói profil könyvtárra vonatkozó " "utalások csak a root fiókot fogják megtisztítani." #: ../bleachbit/RecognizeCleanerML.py:57 msgid "Security warning" msgstr "Biztonsági figyelmeztetés" #: ../bleachbit/RecognizeCleanerML.py:70 msgid "" "These cleaner definitions are new or have changed. Malicious definitions can " "damage your system. If you do not trust these changes, delete the files or " "quit." msgstr "" "Ezek a törlési szabályok ujjak vagy módosítva lettek. A hibás szabályok " "tönkre tehetik a rendszerét. Ha nem bízik a módosításokban, törölje a " "fájlokat vagy lépjen ki." #: ../bleachbit/RecognizeCleanerML.py:85 msgctxt "column_label" msgid "Delete" msgstr "Törölve" #: ../bleachbit/RecognizeCleanerML.py:90 msgctxt "column_label" msgid "Filename" msgstr "Fájlnév" #: ../bleachbit/Unix.py:383 ../bleachbit/Unix.py:413 ../bleachbit/Unix.py:603 #, python-format msgid "Executable not found: %s" msgstr "A futtatható állomány nem található: %s" #. TRANSLATORS: %s expands to a name such as 'Firefox' or 'System'. #: ../bleachbit/Unix.py:600 ../bleachbit/Worker.py:128 #, python-format msgid "" "%s cannot be cleaned because it is currently running. Close it, and try " "again." msgstr "" "%s nem tisztítható meg, mert jelenleg is fut. Zárja be és próbálkozzon újra." #: ../bleachbit/Update.py:76 msgid "New winapp2.ini was downloaded." msgstr "Az új winapp2.ini letöltve" #: ../bleachbit/Update.py:121 msgid "Update BleachBit" msgstr "BleachBit frissítése" #: ../bleachbit/Update.py:126 msgid "A new version is available." msgstr "Elérhető egy újabb verzió." #. TRANSLATORS: %s expands to version such as '0.8.4' or '0.8.5beta' or #. similar #: ../bleachbit/Update.py:135 #, python-format msgid "Update to version %s" msgstr "Frissítés %s verzióra" #. TRANSLATORS: This is cleaner name for cleaners imported from winapp2.ini #: ../bleachbit/Winapp.py:44 msgid "Applications" msgstr "Alkalmazások" #. TRANSLATORS: This is cleaner name for cleaners imported #. from winapp2.ini #: ../bleachbit/Winapp.py:47 msgid "Internet" msgstr "Internet" #. TRANSLATORS: This is cleaner name for cleaners imported #. from winapp2.ini #: ../bleachbit/Winapp.py:50 msgid "Multimedia" msgstr "Multimédia" #. TRANSLATORS: This is cleaner name for cleaners imported #. from winapp2.ini #: ../bleachbit/Winapp.py:53 msgid "Utilities" msgstr "Segédprogramok" #: ../bleachbit/Winapp.py:68 msgid "Games" msgstr "Játékok" #: ../bleachbit/Winapp.py:155 msgid "Imported from winapp2.ini" msgstr "Importálva a winapp2.ini fájlból" #. TRANSLATORS: This indicates an error. The special keyword #. %(operation)s will be replaced by 'firefox' or 'opera' or #. some other cleaner ID. The special keyword %(msg)s will be #. replaced by a message such as 'Permission denied.' #: ../bleachbit/Worker.py:71 #, python-format msgid "Exception while running operation '%(operation)s': '%(msg)s'" msgstr "%(operation)s futás közben hibát okozott: %(msg)s" #. TRANSLATORS: 'free' means 'unallocated' #: ../bleachbit/Worker.py:167 msgid "Please wait. Wiping free disk space." msgstr "Kérem várjon. Üres lemezterület törlése" #. TRANSLATORS: %s is replaced with Firefox, System, etc. #: ../bleachbit/Worker.py:169 ../bleachbit/Worker.py:308 #, python-format msgid "Please wait. Cleaning %s." msgstr "Kérem várjon. %s megtisztítása." #: ../bleachbit/Worker.py:184 msgid "Please wait. Wiping file system metadata." msgstr "Kérem várjon. A fájlrendszer metaadatainak törlése folyamatban van." #: ../bleachbit/Worker.py:187 msgid "Please wait. Cleaning up after wiping file system metadata." msgstr "" "Kérem várjon. A fájlrendszer metaadatainak törlése utáni tisztítás " "folyamatban van." #: ../bleachbit/Worker.py:190 #, python-format msgid "About %d minute remaining." msgid_plural "About %d minutes remaining." msgstr[0] "Körülbelül %d perc van hátra." msgstr[1] "Körülbelül %d perc van hátra." #. TRANSLATORS: This refers to disk space that was #. really recovered (in other words, not a preview) #: ../bleachbit/Worker.py:247 #, python-format msgid "Disk space recovered: %s" msgstr "Felszabadított lemezterület: %s" #. TRANSLATORS: This refers to a preview (no real #. changes were made yet) #: ../bleachbit/Worker.py:251 #, python-format msgid "Disk space to be recovered: %s" msgstr "Felszabadítandó lemezterület: %s" #. TRANSLATORS: This refers to the number of files really #. deleted (in other words, not a preview). #: ../bleachbit/Worker.py:256 #, python-format msgid "Files deleted: %d" msgstr "Fájlok törölve: %d" #. TRANSLATORS: This refers to the number of files that #. would be deleted (in other words, simply a preview). #: ../bleachbit/Worker.py:260 #, python-format msgid "Files to be deleted: %d" msgstr "Törlendő fájlok: %d" #: ../bleachbit/Worker.py:263 #, python-format msgid "Special operations: %d" msgstr "Különleges műveletek: %d" #: ../bleachbit/Worker.py:266 #, python-format msgid "Errors: %d" msgstr "Hibák: %d" #. TRANSLATORS: The "deep scan" feature searches over broad #. areas of the file system such as the user's whole home directory #. or all the system executables. #: ../bleachbit/Worker.py:281 msgid "Please wait. Running deep scan." msgstr "Kérem várjon. Alapos keresés futtatása." #. TRANSLATORS: %s is replaced with Firefox, System, etc. #: ../bleachbit/Worker.py:311 #, python-format msgid "Please wait. Previewing %s." msgstr "Kérem várjon. %s előnézete." bleachbit-2.0/po/ca.po0000644000175000017500000013626513245436307012757 0ustar hlehle# Catalan translation for bleachbit # Copyright (c) 2009 Rosetta Contributors and Canonical Ltd 2009 # This file is distributed under the same license as the bleachbit package. # FIRST AUTHOR , 2009. # msgid "" msgstr "" "Project-Id-Version: bleachbit\n" "Report-Msgid-Bugs-To: FULL NAME \n" "POT-Creation-Date: 2017-02-11 11:12-0700\n" "PO-Revision-Date: 2017-02-15 18:23+0000\n" "Last-Translator: VPablo \n" "Language-Team: Catalan \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n != 1;\n" "X-Launchpad-Export-Date: 2017-02-16 05:01+0000\n" "X-Generator: Launchpad (build 18326)\n" #: ../cleaners/mc.xml ../cleaners/tortoisesvn.xml ../cleaners/vim.xml #: ../cleaners/safari.xml ../cleaners/links2.xml ../cleaners/seamonkey.xml #: ../cleaners/realplayer.xml ../cleaners/windows_defender.xml #: ../cleaners/d4x.xml ../cleaners/sqlite3.xml #: ../cleaners/internet_explorer.xml ../cleaners/libreoffice.xml #: ../cleaners/easytag.xml ../cleaners/bash.xml ../cleaners/nautilus.xml #: ../cleaners/octave.xml ../cleaners/elinks.xml ../cleaners/chromium.xml #: ../cleaners/google_chrome.xml msgid "History" msgstr "Historial" #: ../cleaners/mc.xml ../cleaners/tortoisesvn.xml ../cleaners/links2.xml #: ../cleaners/realplayer.xml ../cleaners/d4x.xml ../cleaners/libreoffice.xml #: ../cleaners/easytag.xml ../cleaners/nautilus.xml ../cleaners/gnome.xml #: ../bleachbit/Cleaner.py:349 ../bleachbit/Cleaner.py:423 #: ../bleachbit/Cleaner.py:432 msgid "Delete the usage history" msgstr "Suprimeix l'historial d'ús" #: ../cleaners/gpodder.xml ../cleaners/hippo_opensim_viewer.xml #: ../cleaners/thumbnails.xml ../cleaners/safari.xml ../cleaners/emesene.xml #: ../cleaners/liferea.xml ../cleaners/seamonkey.xml ../cleaners/vuze.xml #: ../cleaners/yahoo_messenger.xml ../cleaners/pidgin.xml #: ../cleaners/adobe_reader.xml ../cleaners/evolution.xml #: ../cleaners/tremulous.xml ../cleaners/libreoffice.xml ../cleaners/xine.xml #: ../cleaners/nexuiz.xml ../cleaners/exaile.xml ../cleaners/opera.xml #: ../cleaners/amsn.xml ../cleaners/gftp.xml ../cleaners/miro.xml #: ../cleaners/beagle.xml ../cleaners/kde.xml ../cleaners/epiphany.xml #: ../cleaners/flash.xml ../cleaners/secondlife_viewer.xml ../cleaners/java.xml #: ../cleaners/chromium.xml ../cleaners/audacious.xml ../cleaners/rhythmbox.xml #: ../cleaners/google_chrome.xml ../cleaners/thunderbird.xml #: ../bleachbit/Cleaner.py:192 ../bleachbit/Cleaner.py:370 #: ../bleachbit/Cleaner.py:455 msgid "Cache" msgstr "Memòria cau" #: ../cleaners/gpodder.xml ../cleaners/yum.xml #: ../cleaners/hippo_opensim_viewer.xml ../cleaners/thumbnails.xml #: ../cleaners/windows_explorer.xml ../cleaners/liferea.xml #: ../cleaners/vuze.xml ../cleaners/yahoo_messenger.xml ../cleaners/pidgin.xml #: ../cleaners/adobe_reader.xml ../cleaners/evolution.xml #: ../cleaners/libreoffice.xml ../cleaners/apt.xml ../cleaners/xine.xml #: ../cleaners/nexuiz.xml ../cleaners/exaile.xml ../cleaners/amsn.xml #: ../cleaners/gftp.xml ../cleaners/miro.xml ../cleaners/beagle.xml #: ../cleaners/kde.xml ../cleaners/flash.xml ../cleaners/secondlife_viewer.xml #: ../cleaners/java.xml ../cleaners/audacious.xml ../cleaners/rhythmbox.xml #: ../bleachbit/Cleaner.py:370 ../bleachbit/Cleaner.py:455 #: ../bleachbit/Cleaner.py:489 ../bleachbit/Cleaner.py:491 msgid "Delete the cache" msgstr "Suprimeix la memòria cau" #. TRANSLATORS: Vacuum is a verb. The term is jargon #. from the SQLite database. Microsoft Access uses #. the term 'Compact Database' (which you may translate #. instead). Another synonym is 'defragment.' #: ../cleaners/gpodder.xml ../cleaners/yum.xml ../cleaners/safari.xml #: ../cleaners/liferea.xml ../cleaners/chromium.xml #: ../cleaners/google_chrome.xml ../cleaners/thunderbird.xml #: ../bleachbit/Cleaner.py:214 ../bleachbit/Cleaner.py:360 #: ../bleachbit/Action.py:445 msgid "Vacuum" msgstr "Optimitza" #: ../cleaners/gpodder.xml ../cleaners/yum.xml ../cleaners/safari.xml #: ../cleaners/liferea.xml ../cleaners/chromium.xml #: ../cleaners/google_chrome.xml ../cleaners/thunderbird.xml #: ../bleachbit/Cleaner.py:215 msgid "" "Clean database fragmentation to reduce space and improve speed without " "removing any data" msgstr "" "Neteja la fragmentació de la base de dades per a reduir l'espai i millorar " "la velocitat sense eliminar dades" #: ../cleaners/yum.xml ../cleaners/apt.xml msgid "Package manager" msgstr "Gestor de paquets" #: ../cleaners/warzone2100.xml ../cleaners/hippo_opensim_viewer.xml #: ../cleaners/gl-117.xml ../cleaners/tremulous.xml ../cleaners/nexuiz.xml #: ../cleaners/secondlife_viewer.xml msgid "Game" msgstr "Joc" #: ../cleaners/warzone2100.xml ../cleaners/hippo_opensim_viewer.xml #: ../cleaners/teamviewer.xml ../cleaners/realplayer.xml ../cleaners/vuze.xml #: ../cleaners/yahoo_messenger.xml ../cleaners/amule.xml #: ../cleaners/easytag.xml ../cleaners/exaile.xml ../cleaners/screenlets.xml #: ../cleaners/gftp.xml ../cleaners/miro.xml ../cleaners/audacious.xml #: ../bleachbit/Cleaner.py:486 msgid "Logs" msgstr "Registres" #: ../cleaners/warzone2100.xml ../cleaners/hippo_opensim_viewer.xml #: ../cleaners/teamviewer.xml ../cleaners/realplayer.xml ../cleaners/vuze.xml #: ../cleaners/yahoo_messenger.xml ../cleaners/amule.xml ../cleaners/exaile.xml #: ../cleaners/screenlets.xml ../cleaners/gftp.xml ../cleaners/miro.xml #: ../cleaners/audacious.xml ../bleachbit/Cleaner.py:486 msgid "Delete the logs" msgstr "Suprimeix els registres" #: ../cleaners/thumbnails.xml ../cleaners/windows_explorer.xml msgid "Thumbnails" msgstr "Miniatures" #: ../cleaners/thumbnails.xml msgid "Icons for files on the system" msgstr "Icones per els fitxers al sistema" #: ../cleaners/vim.xml ../cleaners/gedit.xml msgid "Editor" msgstr "Editor" #: ../cleaners/vim.xml msgid "" "Delete ~/.viminfo which includes file history, command history, and buffers" msgstr "" "Suprimeix el ~/.viminfo, que inclou l'historial de fitxers, ordres i la " "memòria intermèdia" #: ../cleaners/filezilla.xml ../cleaners/transmission.xml ../cleaners/vuze.xml #: ../cleaners/amule.xml ../cleaners/gftp.xml msgid "File transfer client" msgstr "Client de transferència de fitxers" #: ../cleaners/filezilla.xml ../cleaners/paint.xml #: ../cleaners/windows_media_player.xml ../cleaners/windows_explorer.xml #: ../cleaners/teamviewer.xml ../cleaners/microsoft_office.xml #: ../cleaners/vlc.xml ../cleaners/adobe_reader.xml ../cleaners/winamp.xml #: ../cleaners/winzip.xml ../cleaners/winrar.xml ../cleaners/audacious.xml #: ../cleaners/wordpad.xml ../bleachbit/Cleaner.py:371 msgid "Most recently used" msgstr "Les més recents" #: ../cleaners/filezilla.xml ../cleaners/windows_explorer.xml #: ../cleaners/gwenview.xml ../cleaners/adobe_reader.xml ../cleaners/gedit.xml #: ../cleaners/kde.xml ../cleaners/audacious.xml ../bleachbit/Cleaner.py:372 #: ../bleachbit/Cleaner.py:469 msgid "Delete the list of recently used documents" msgstr "Suprimeix la llista de documents utilitzats recentment" #: ../cleaners/skype.xml ../cleaners/emesene.xml #: ../cleaners/yahoo_messenger.xml ../cleaners/pidgin.xml ../cleaners/amsn.xml msgid "Chat client" msgstr "Client de xat" #: ../cleaners/skype.xml ../cleaners/hexchat.xml ../cleaners/emesene.xml #: ../cleaners/seamonkey.xml ../cleaners/yahoo_messenger.xml #: ../cleaners/pidgin.xml ../cleaners/amsn.xml msgid "Chat logs" msgstr "Registre de xat" #: ../cleaners/skype.xml ../cleaners/hexchat.xml ../cleaners/emesene.xml #: ../cleaners/seamonkey.xml ../cleaners/yahoo_messenger.xml #: ../cleaners/pidgin.xml ../cleaners/amsn.xml msgid "Delete the chat logs" msgstr "Suprimeix els registres de xat" #: ../cleaners/skype.xml msgid "Installers" msgstr "Instal·ladors" #: ../cleaners/skype.xml msgid "Delete cached patches and installers" msgstr "Esborra pedaços emmagatzemats i instal·ladors" #: ../cleaners/hexchat.xml msgid "IRC client formerly known as XChat" msgstr "Client d'IRC anteriorment conegut com XChat" #: ../cleaners/safari.xml ../cleaners/links2.xml ../cleaners/seamonkey.xml #: ../cleaners/konqueror.xml ../cleaners/internet_explorer.xml #: ../cleaners/opera.xml ../cleaners/epiphany.xml ../cleaners/elinks.xml #: ../cleaners/chromium.xml ../cleaners/google_chrome.xml #: ../bleachbit/Cleaner.py:226 msgid "Web browser" msgstr "Navegador" #: ../cleaners/safari.xml ../cleaners/seamonkey.xml ../cleaners/opera.xml #: ../cleaners/epiphany.xml ../cleaners/chromium.xml #: ../cleaners/google_chrome.xml ../cleaners/thunderbird.xml #: ../bleachbit/Cleaner.py:193 msgid "Delete the web cache, which reduces time to display revisited pages" msgstr "" "Suprimeix la memòria cau, que redueix el temps per mostrar pàgines " "revisitades" #: ../cleaners/safari.xml ../cleaners/liferea.xml ../cleaners/seamonkey.xml #: ../cleaners/realplayer.xml ../cleaners/konqueror.xml #: ../cleaners/internet_explorer.xml ../cleaners/opera.xml #: ../cleaners/epiphany.xml ../cleaners/flash.xml ../cleaners/silverlight.xml #: ../cleaners/chromium.xml ../cleaners/google_chrome.xml #: ../cleaners/thunderbird.xml ../bleachbit/Cleaner.py:194 msgid "Cookies" msgstr "Galetes" #: ../cleaners/safari.xml ../cleaners/liferea.xml ../cleaners/seamonkey.xml #: ../cleaners/realplayer.xml ../cleaners/konqueror.xml #: ../cleaners/internet_explorer.xml ../cleaners/opera.xml #: ../cleaners/epiphany.xml ../cleaners/flash.xml ../cleaners/silverlight.xml #: ../cleaners/chromium.xml ../cleaners/google_chrome.xml #: ../cleaners/thunderbird.xml ../bleachbit/Cleaner.py:195 msgid "" "Delete cookies, which contain information such as web site preferences, " "authentication, and tracking identification" msgstr "" "Suprimeix les galetes, que contenen informació com preferències de pàgines " "web, autenticació i identificació de seguiment." #: ../cleaners/safari.xml ../cleaners/konqueror.xml #: ../cleaners/internet_explorer.xml ../cleaners/opera.xml #: ../bleachbit/Cleaner.py:213 msgid "List of visited web pages" msgstr "Llista de pàgines visitades" #. Torrent software can block a list of IP addresses, such as those that may belong to malware or anti-piracy organizations #: ../cleaners/transmission.xml msgid "Blocklists" msgstr "Llistes de bloqueig" #: ../cleaners/transmission.xml ../cleaners/windows_defender.xml #: ../cleaners/beagle.xml ../cleaners/thunderbird.xml ../cleaners/deepscan.xml #: ../bleachbit/Cleaner.py:197 msgid "Delete the files" msgstr "Suprimeix els fitxers" #: ../cleaners/transmission.xml msgid "Blocklists will need update to work." msgstr "Les llistes de bloqueig necessiten ser actualitzades per funcionar." #: ../cleaners/transmission.xml msgid "Torrents" msgstr "Torrents" #: ../cleaners/transmission.xml msgid "Delete the torrents (just the metadata but not the files described)" msgstr "" "Esborra els torrents (només les metadades però no els fitxers descrits)" #: ../cleaners/transmission.xml msgid "Statistics" msgstr "Estadístiques" #: ../cleaners/transmission.xml msgid "Delete the file" msgstr "Elimina el fitxer" #: ../cleaners/paint.xml ../cleaners/windows_media_player.xml #: ../cleaners/windows_explorer.xml ../cleaners/teamviewer.xml #: ../cleaners/microsoft_office.xml ../cleaners/vlc.xml ../cleaners/winamp.xml #: ../cleaners/winzip.xml ../cleaners/winrar.xml ../cleaners/wordpad.xml msgid "Delete the most recently used list" msgstr "Suprimeix la llista de fitxers utilitzats recentment" #: ../cleaners/emesene.xml msgid "Delete the avatars and emoticons cache" msgstr "Suprimeix els avatars i les emoticones" #: ../cleaners/windows_media_player.xml ../cleaners/realplayer.xml #: ../cleaners/vlc.xml ../cleaners/winamp.xml msgid "Media player" msgstr "Reproductor multimèdia" #: ../cleaners/windows_explorer.xml ../cleaners/nautilus.xml msgid "File manager" msgstr "Gestor de fitxers" #: ../cleaners/windows_explorer.xml ../cleaners/gwenview.xml #: ../cleaners/gedit.xml ../cleaners/kde.xml ../bleachbit/Cleaner.py:468 #: ../bleachbit/Cleaner.py:663 msgid "Recent documents list" msgstr "Llista de documents recents" #: ../cleaners/windows_explorer.xml msgid "" "This option will reset pinned locations in Quick Access to their defaults." msgstr "" "Esta opció restablirà les ubicacions fixades a l'Accés Ràpid a les " "predeterminades." #. In Windows 'Run' is the dialog in the Start menu #. In GNOME 'Run' is the dialog shown when typing ALT+F2' #: ../cleaners/windows_explorer.xml ../cleaners/gnome.xml msgid "Run" msgstr "Executa" #: ../cleaners/windows_explorer.xml ../cleaners/opera.xml ../cleaners/gnome.xml #: ../cleaners/google_toolbar.xml msgid "Search history" msgstr "Historial de cerca" #: ../cleaners/windows_explorer.xml ../cleaners/opera.xml ../cleaners/gnome.xml #: ../cleaners/google_toolbar.xml msgid "Delete the search history" msgstr "Suprimeix l'historial de cerca" #: ../cleaners/windows_explorer.xml msgid "This will restart Windows Explorer." msgstr "Açò reiniciarà el Windows Explorer" #: ../cleaners/gl-117.xml ../cleaners/microsoft_office.xml #: ../cleaners/beagle.xml ../cleaners/secondlife_viewer.xml ../cleaners/x11.xml msgid "Debug logs" msgstr "Registres de depuració" #: ../cleaners/gl-117.xml ../cleaners/microsoft_office.xml #: ../cleaners/easytag.xml ../cleaners/beagle.xml #: ../cleaners/secondlife_viewer.xml ../cleaners/x11.xml msgid "Delete the debug logs" msgstr "Suprimeix els registres de depuració" #: ../cleaners/google_earth.xml ../cleaners/winetricks.xml ../cleaners/vuze.xml #: ../cleaners/adobe_reader.xml ../cleaners/amule.xml ../cleaners/wine.xml #: ../cleaners/internet_explorer.xml ../cleaners/gimp.xml ../cleaners/kde.xml #: ../cleaners/deepscan.xml ../bleachbit/Cleaner.py:520 msgid "Temporary files" msgstr "Fitxers temporals" #: ../cleaners/google_earth.xml ../cleaners/winetricks.xml ../cleaners/vuze.xml #: ../cleaners/adobe_reader.xml ../cleaners/amule.xml ../cleaners/wine.xml #: ../cleaners/internet_explorer.xml ../cleaners/gimp.xml ../cleaners/kde.xml #: ../cleaners/deepscan.xml ../bleachbit/Cleaner.py:520 msgid "Delete the temporary files" msgstr "Suprimeix els fitxers temporals" #: ../cleaners/seamonkey.xml ../cleaners/opera.xml ../bleachbit/Cleaner.py:201 msgid "Download history" msgstr "Historial de baixades" #: ../cleaners/seamonkey.xml ../cleaners/opera.xml ../bleachbit/Cleaner.py:201 msgid "List of files downloaded" msgstr "Llista de fitxers baixats" #: ../cleaners/seamonkey.xml msgid "Delete the list of visited web pages" msgstr "Suprimeix la llista de pàgines web visitades" #: ../cleaners/vuze.xml ../cleaners/deepscan.xml ../bleachbit/Cleaner.py:190 msgid "Backup files" msgstr "Fitxers de còpia de seguretat" #: ../cleaners/vuze.xml ../cleaners/deepscan.xml ../bleachbit/Cleaner.py:191 msgid "Delete the backup files" msgstr "Suprimeix les còpies de seguretat" #: ../cleaners/konqueror.xml ../cleaners/opera.xml ../cleaners/chromium.xml msgid "Current session" msgstr "Sessió actual" #: ../cleaners/konqueror.xml ../cleaners/opera.xml ../cleaners/chromium.xml msgid "Delete the current session" msgstr "Suprimeix la sessió actual" #: ../cleaners/konqueror.xml ../cleaners/opera.xml ../bleachbit/Cleaner.py:213 msgid "URL history" msgstr "Historial d'URL" #: ../cleaners/microsoft_office.xml ../cleaners/libreoffice.xml #: ../bleachbit/Cleaner.py:375 msgid "Office suite" msgstr "Paquet ofimàtic" #: ../cleaners/windows_defender.xml msgid "Anti-virus" msgstr "Anti-virus" #: ../cleaners/journald.xml msgid "System journals" msgstr "Registres del sistema" #: ../cleaners/journald.xml msgid "Clean old system journals" msgstr "Esborra registres del sistema antics" #: ../cleaners/adobe_reader.xml msgid "Document viewer" msgstr "Visor de documents" #: ../cleaners/evolution.xml ../cleaners/thunderbird.xml msgid "Email client" msgstr "Client de correu" #: ../cleaners/tremulous.xml msgid "Delete the list of game servers" msgstr "Suprimeix la llista de servidors de jocs" #: ../cleaners/sqlite3.xml ../cleaners/bash.xml ../cleaners/octave.xml msgid "Delete the command history" msgstr "Suprimeix l'historial d'ordres" #: ../cleaners/wine.xml msgid "Compatibility layer for Windows software" msgstr "Capa de compatibilitat amb programari Windows" #: ../cleaners/internet_explorer.xml ../cleaners/chromium.xml #: ../cleaners/google_chrome.xml ../bleachbit/Cleaner.py:202 msgid "Form history" msgstr "Historial de formularis" #: ../cleaners/internet_explorer.xml ../bleachbit/Cleaner.py:203 msgid "A history of forms entered in web sites and in the Search bar" msgstr "" "Un historial de formularis introduïts a llocs web i a la barra de cerques" #. This software edits metadata tags, such as title and artist, in audio files #: ../cleaners/easytag.xml msgid "Audio files tagger" msgstr "Etiquetador d'arxius d'àudio" #: ../cleaners/apt.xml msgid "Delete obsolete files" msgstr "Suprimeix els fitxers obsolets" #: ../cleaners/apt.xml msgid "Package lists" msgstr "Llistes de paquets" #: ../cleaners/xine.xml ../cleaners/miro.xml ../cleaners/flash.xml msgid "Multimedia viewer" msgstr "Reproductor multimèdia" #: ../cleaners/recoll.xml ../cleaners/beagle.xml msgid "Search tool" msgstr "Eina de cerca" #: ../cleaners/recoll.xml ../cleaners/beagle.xml ../cleaners/thunderbird.xml msgid "Index" msgstr "Índex" #: ../cleaners/recoll.xml msgid "" "Delete the search index, a database of words and the files they contain" msgstr "" "Suprimeix l'índex de cerques, una base de dades amb paraules i els fitxers " "que les contenen" #: ../cleaners/gimp.xml msgid "Graphics editor" msgstr "Editor de gràfics" #: ../cleaners/exaile.xml msgid "Downloaded podcasts" msgstr "Podcast descarregats" #: ../cleaners/exaile.xml msgid "Delete downloaded podcasts" msgstr "Suprimeix els podcasts baixats" #: ../cleaners/bash.xml msgid "Shell" msgstr "Intèrpret d'ordres" #. TRANSLATORS: DOM = Document Object Model. #: ../cleaners/opera.xml ../cleaners/epiphany.xml ../cleaners/chromium.xml #: ../cleaners/google_chrome.xml ../bleachbit/Cleaner.py:199 msgid "DOM Storage" msgstr "Emmagatzemament DOM" #: ../cleaners/opera.xml ../cleaners/epiphany.xml ../cleaners/chromium.xml #: ../cleaners/google_chrome.xml ../bleachbit/Cleaner.py:199 msgid "Delete HTML5 cookies" msgstr "Suprimeix les galetes HTML5" #: ../cleaners/opera.xml ../cleaners/epiphany.xml ../cleaners/chromium.xml #: ../cleaners/google_chrome.xml ../cleaners/thunderbird.xml #: ../bleachbit/Cleaner.py:208 msgid "Passwords" msgstr "Contrasenyes" #: ../cleaners/opera.xml ../cleaners/epiphany.xml ../cleaners/chromium.xml #: ../cleaners/google_chrome.xml ../cleaners/thunderbird.xml #: ../bleachbit/Cleaner.py:209 msgid "" "A database of usernames and passwords as well as a list of sites that should " "not store passwords" msgstr "" "Tant una base de dades d'usuaris i contrasenyes com una llista de llocs que " "no hauria d'emmagatzemar contrasenyes" #: ../cleaners/opera.xml ../cleaners/epiphany.xml ../cleaners/chromium.xml #: ../cleaners/google_chrome.xml ../cleaners/thunderbird.xml #: ../bleachbit/Cleaner.py:211 msgid "This option will delete your saved passwords." msgstr "Aquesta opció esborrarà les contrasenyes emmagatzemades." #: ../cleaners/nautilus.xml msgid "Custom folders will be reset." msgstr "Es reinicialitzaran les carpetes personalitzades." #: ../cleaners/gnome.xml ../cleaners/kde.xml msgid "Desktop environment" msgstr "Entorn d'escriptori" #: ../cleaners/screenlets.xml msgid "Widgets for the desktop" msgstr "Ginys per a l'escriptori" #: ../cleaners/epiphany.xml msgid "Places" msgstr "Llocs" #: ../cleaners/epiphany.xml msgid "" "A database of URLs including bookmarks, favicons, and a history of visited " "web sites" msgstr "" "Una base de dades d'URL, incloent adreces d'interès, favicones i l'historial " "de llocs visitats" #: ../cleaners/epiphany.xml msgid "This option deletes all bookmarks." msgstr "Aquesta opció suprimeix les adreces d'interès." #: ../cleaners/winrar.xml msgid "File archiver" msgstr "Empaquetador d'arxius" #: ../cleaners/elinks.xml msgid "Delete the cookies, visited URLs, and search history" msgstr "Suprimeix les galetes, URL visitades i l'historial de cerca" #: ../cleaners/chromium.xml ../cleaners/google_chrome.xml msgid "A history of forms entered in web sites" msgstr "Un historial de formularis emplenats als llocs web" #: ../cleaners/chromium.xml ../cleaners/google_chrome.xml msgid "" "Delete the history which includes visited sites, downloads, and thumbnails" msgstr "" "Suprimeix l'historial, que inclou llocs visitats, baixades i miniatures" #: ../cleaners/chromium.xml ../cleaners/google_chrome.xml msgid "Search engines" msgstr "Motors de cerca" #. 'Factory' means a search engine that is installed by default 'from the factory,' but this is different than a 'default search engine' https://lists.launchpad.net/launchpad-translators/msg00283.html #: ../cleaners/chromium.xml ../cleaners/google_chrome.xml msgid "" "Reset the search engine usage history and delete non-factory search engines, " "some of which are added automatically" msgstr "" "Reinicia l'historial del motor de cerca i elimina qualsevol motor de cerca " "que no siga el predeterminat al navegador, alguns dels quals s'afegiren " "automàticament" #: ../cleaners/audacious.xml msgid "Audio player" msgstr "Reproductor d'àudio" #: ../cleaners/rhythmbox.xml msgid "Database" msgstr "Base de dades" #: ../cleaners/rhythmbox.xml msgid "" "Delete the database, which contain information such as play count and last " "played" msgstr "" "Elimina la base de dades, la qual conté informació com el compte de " "reproduccions o l'ultim reproduït" #: ../cleaners/google_chrome.xml msgid "Session" msgstr "Sessió" #: ../cleaners/google_chrome.xml msgid "Delete the current and last sessions" msgstr "Suprimeix la sessió actual i l'anterior" #: ../cleaners/x11.xml msgid "Windowing system" msgstr "Sistema de finestres" #: ../cleaners/wordpad.xml msgid "Word processor" msgstr "Processador de textos" #: ../cleaners/deepscan.xml msgid "Deep scan" msgstr "Anàlisi en profunditat" #: ../cleaners/deepscan.xml msgid "Clean files widely scattered across the disk" msgstr "Neteja arxius dispersos àmpliament al disc" #: ../cleaners/deepscan.xml msgid "Inspect the preview for any files you want to keep." msgstr "Inspeccioneu la previsualització per si voleu mantenir algun fitxer." #: ../cleaners/deepscan.xml msgid "This option is slow." msgstr "Aquesta opció és lenta." #: ../bleachbit.desktop msgid "Unnecessary file cleaner" msgstr "No cal eliminar fitxers" #: ../bleachbit.desktop msgid "Free space and maintain privacy" msgstr "Allibera l'espai i manté la privacitat" #: ../bleachbit/FileUtilities.py:668 msgid "" "There was at least one file on a file system that does not support advanced " "overwriting." msgstr "" "Hi ha almenys un sistema de fitxers que no suporta sobreescriptura avançada." #: ../bleachbit/Unix.py:574 #, python-format msgid "Executable not found: %s" msgstr "No s'ha trobat l'executable: %s" #. TRANSLATORS: %s expands to a name such as 'Firefox' or 'System'. #: ../bleachbit/Unix.py:623 ../bleachbit/Worker.py:136 #, python-format msgid "" "%s cannot be cleaned because it is currently running. Close it, and try " "again." msgstr "" "No es pot netejar el %s perquè s'està executant en aquests moments. Tanqueu-" "lo i torneu-ho a intentar." #: ../bleachbit/GuiBasic.py:112 msgid "Delete confirmation" msgstr "Confirma l'eliminació" #: ../bleachbit/GuiBasic.py:122 msgid "" "Are you sure you want to permanently delete files according to the selected " "operations? The actual files that will be deleted may have changed since " "you ran the preview." msgstr "" "Esteu segur que voleu eliminar permanentment els fitxers d'acord amb les " "operacions seleccionades? Els fitxers que s'eliminaran pot ser diferent de " "quan es va fer la simulació." #: ../bleachbit/GuiBasic.py:125 msgid "Are you sure you want to permanently delete these files?" msgstr "Esteu segur que voleu eliminar permanentment aquests fitxers?" #: ../bleachbit/GuiBasic.py:162 #, python-format msgid "" "Because you are running as root, please manually open this link in a web " "browser:\n" "%s" msgstr "" "Esteu executant com a administrador (root), obriu l'enllaç en un navegador " "web:\n" "%s" #. TRANSLATORS: %s expands to www.bleachbit.org or similar #: ../bleachbit/GuiBasic.py:174 #, python-format msgid "Open web browser to %s?" msgstr "Voleu obrir %s al navegador web?" #. TRANSLATORS: This is the label in the log indicating was #. skipped because it matches the whitelist #: ../bleachbit/Command.py:47 msgid "Skip" msgstr "Omet" #. TRANSLATORS: This is the label in the log indicating will be #. deleted (for previews) or was actually deleted #: ../bleachbit/Command.py:77 msgid "Delete" msgstr "Suprimeix" #: ../bleachbit/Command.py:99 msgid "" "At least one file was locked by another process, so its contents could not " "be overwritten. It will be marked for deletion upon system reboot." msgstr "" "Almenys un fitxer està bloquejat per altre procés, per tant el seu contingut " "no pot ser sobreescrit. Es marcarà per eliminar al següent reinici." #. TRANSLATORS: The file will be deleted when the #. system reboots #: ../bleachbit/Command.py:102 msgid "Mark for deletion" msgstr "Marca per a suprimir" #. TRANSLATORS: Parts of this file will be deleted #: ../bleachbit/Command.py:199 ../bleachbit/Command.py:233 #: ../bleachbit/Action.py:254 ../bleachbit/Action.py:267 #: ../bleachbit/Action.py:280 ../bleachbit/Action.py:293 #: ../bleachbit/Action.py:306 msgid "Clean file" msgstr "Neteja arxiu" #. TRANSLATORS: The file will be truncated to 0 bytes in length #: ../bleachbit/Command.py:275 msgid "Truncate" msgstr "Trunca" #: ../bleachbit/Command.py:317 msgid "Delete registry key" msgstr "Suprimeix la clau del registre" #. TRANSLATORS: This is cleaner name for cleaners imported from winapp2.ini #: ../bleachbit/Winapp.py:44 msgid "Applications" msgstr "Programari" #. TRANSLATORS: This is cleaner name for cleaners imported #. from winapp2.ini #: ../bleachbit/Winapp.py:47 msgid "Internet" msgstr "Internet" #. TRANSLATORS: This is cleaner name for cleaners imported #. from winapp2.ini #: ../bleachbit/Winapp.py:50 msgid "Multimedia" msgstr "Multimèdia" #. TRANSLATORS: This is cleaner name for cleaners imported #. from winapp2.ini #: ../bleachbit/Winapp.py:53 msgid "Utilities" msgstr "Utilitats" #: ../bleachbit/Winapp.py:64 msgid "Games" msgstr "Jocs" #: ../bleachbit/Winapp.py:162 msgid "Imported from winapp2.ini" msgstr "Importats des del winapp2.ini" #: ../bleachbit/Cleaner.py:197 msgid "Crash reports" msgstr "Informes de falls inesperats" #: ../bleachbit/Cleaner.py:204 msgid "Session restore" msgstr "Restaura la sessió" #: ../bleachbit/Cleaner.py:205 msgid "Loads the initial session after the browser closes or crashes" msgstr "Carrega la sessió inicial després que el navegador es tanqui o falli" #: ../bleachbit/Cleaner.py:207 msgid "Site preferences" msgstr "Preferències del lloc" #: ../bleachbit/Cleaner.py:207 msgid "Settings for individual sites" msgstr "Opcions per a llocs individuals" #. TRANSLATORS: desktop entries are .desktop files in Linux that #. make up the application menu (the menu that shows BleachBit, #. Firefox, and others. The .desktop files also associate file #. types, so clicking on an .html file in Nautilus brings up #. Firefox. #. More information: #. http://standards.freedesktop.org/menu-spec/latest/index.html#introduction #: ../bleachbit/Cleaner.py:453 msgid "Broken desktop files" msgstr "Dreceres d'escriptori trencades" #: ../bleachbit/Cleaner.py:454 msgid "Delete broken application menu entries and file associations" msgstr "" "Suprimeix les entrades del menú i les associacions de fitxers trencades" #. TRANSLATORS: Localizations are files supporting specific #. languages, so applications appear in Spanish, etc. #: ../bleachbit/Cleaner.py:458 msgid "Localizations" msgstr "Localitzacions" #: ../bleachbit/Cleaner.py:459 msgid "Delete files for unwanted languages" msgstr "Suprimeix els fitxers d'idiomes no desitjats" #: ../bleachbit/Cleaner.py:461 msgid "Configure this option in the preferences." msgstr "Configura aquesta opció a les preferències" #: ../bleachbit/Cleaner.py:467 msgid "Rotated logs" msgstr "Registres cíclics" #: ../bleachbit/Cleaner.py:467 msgid "Delete old system logs" msgstr "Suprimeix els registres antics del sistema" #: ../bleachbit/Cleaner.py:470 msgid "Trash" msgstr "Paperera" #: ../bleachbit/Cleaner.py:470 msgid "Empty the trash" msgstr "Buida la paperera" #: ../bleachbit/Cleaner.py:476 ../bleachbit/Cleaner.py:627 #: ../bleachbit/Worker.py:184 msgid "Memory" msgstr "Memòria" #. TRANSLATORS: 'free' means 'unallocated' #: ../bleachbit/Cleaner.py:478 msgid "Wipe the swap and free memory" msgstr "Neteja la memòria lliure i la partició d'intercanvi" #: ../bleachbit/Cleaner.py:480 msgid "This option is experimental and may cause system problems." msgstr "Aquesta opció és experimental i pot causar problemes al sistema." #: ../bleachbit/Cleaner.py:488 msgid "Memory dump" msgstr "Abocament de memòria" #: ../bleachbit/Cleaner.py:488 msgid "Delete the file memory.dmp" msgstr "Suprimeix el fitxer memory.dmp" #. TRANSLATORS: Prefetch is Microsoft Windows jargon. #: ../bleachbit/Cleaner.py:491 msgid "Prefetch" msgstr "Obtén prèviament" #: ../bleachbit/Cleaner.py:493 msgid "Recycle bin" msgstr "Paperera" #: ../bleachbit/Cleaner.py:493 ../bleachbit/Cleaner.py:787 msgid "Empty the recycle bin" msgstr "Buida la paperera" #. TRANSLATORS: 'Update' is a noun, and 'Update uninstallers' is an option to delete #. the uninstallers for software updates. #: ../bleachbit/Cleaner.py:496 msgid "Update uninstallers" msgstr "Desinstal·ladors d'actualitzacions" #: ../bleachbit/Cleaner.py:497 msgid "" "Delete uninstallers for Microsoft updates including hotfixes, service packs, " "and Internet Explorer updates" msgstr "" "Suprimeix els desinstal·ladors d'actualitzacions de Microsoft, incloent " "correccions, service packs i actualitzacions de l'Internet Explorer" #: ../bleachbit/Cleaner.py:504 ../bleachbit/Cleaner.py:727 msgid "Clipboard" msgstr "Porta-retalls" #: ../bleachbit/Cleaner.py:505 msgid "" "The desktop environment's clipboard used for copy and paste operations" msgstr "" "El porta-retalls de l'entorn d'escriptori utilitzat per a operacions de " "copiar i enganxar" #. TRANSLATORS: "Custom" is an option allowing the user to specify which #. files and folders will be erased. #: ../bleachbit/Cleaner.py:512 ../bleachbit/GuiPreferences.py:66 msgid "Custom" msgstr "Personalitzat" #: ../bleachbit/Cleaner.py:513 msgid "Delete user-specified files and folders" msgstr "Elimina arxius i carpetes especificats per l'usuari" #. TRANSLATORS: 'free' means 'unallocated' #: ../bleachbit/Cleaner.py:515 msgid "Free disk space" msgstr "Allibera espai en disc" #. TRANSLATORS: 'free' means 'unallocated' #: ../bleachbit/Cleaner.py:517 msgid "Overwrite free disk space to hide deleted files" msgstr "Sobreescriu l'espai lliure per amagar els fitxers eliminats" #: ../bleachbit/Cleaner.py:518 msgid "This option is very slow." msgstr "Aquesta opció és molt lenta" #: ../bleachbit/Cleaner.py:522 msgid "The system in general" msgstr "El sistema en general" #: ../bleachbit/Cleaner.py:524 ../bleachbit/Cleaner.py:857 msgid "System" msgstr "Sistema" #. TRANSLATORS: 'Free' means 'unallocated.' #. %s expands to a path such as C:\ or /tmp/ #: ../bleachbit/Cleaner.py:735 ../bleachbit/Cleaner.py:890 #, python-format msgid "Overwrite free disk space %s" msgstr "Sobreescriu l'espai lliure a %s" #: ../bleachbit/RecognizeCleanerML.py:59 msgid "Security warning" msgstr "Advertència de seguretat" #: ../bleachbit/RecognizeCleanerML.py:72 msgid "" "These cleaner definitions are new or have changed. Malicious definitions can " "damage your system. If you do not trust these changes, delete the files or " "quit." msgstr "" "Aquestes definicions netes són més actuals, o bé han canviat. Unes " "definicions perjudicials poden malmetre el vostre sistema. Si no confieu en " "aquests canvis, esborreu-los o sortiu ara mateix." #: ../bleachbit/RecognizeCleanerML.py:88 msgctxt "column_label" msgid "Delete" msgstr "Suprimeix" #: ../bleachbit/RecognizeCleanerML.py:93 msgctxt "column_label" msgid "Filename" msgstr "Nom del fitxer" #. TRANSLATORS: This indicates an error. The special keyword #. %(operation)s will be replaced by 'firefox' or 'opera' or #. some other cleaner ID. The special keyword %(msg)s will be #. replaced by a message such as 'Permission denied.' #: ../bleachbit/Worker.py:74 #, python-format msgid "Exception while running operation '%(operation)s': '%(msg)s'" msgstr "S'ha produït un error a l'operació '%(operation)s': '%(msg)s'" #. TRANSLATORS: 'free' means 'unallocated' #: ../bleachbit/Worker.py:182 msgid "Please wait. Wiping free disk space." msgstr "Espereu. S'està netejant l'espai lliure del disc." #. TRANSLATORS: %s is replaced with Firefox, System, etc. #: ../bleachbit/Worker.py:184 ../bleachbit/Worker.py:332 #, python-format msgid "Please wait. Cleaning %s." msgstr "Espereu. S'està netejant el %s." #: ../bleachbit/Worker.py:199 msgid "Please wait. Wiping file system metadata." msgstr "Per favor, espere. Esborrant metadades del sistema d'arxius." #: ../bleachbit/Worker.py:202 msgid "Please wait. Cleaning up after wiping file system metadata." msgstr "" "Per favor, espere. Realitzant una neteja després d'esborrar metadades del " "sistema d'arxius." #: ../bleachbit/Worker.py:205 #, python-format msgid "About %d minute remaining." msgid_plural "About %d minutes remaining." msgstr[0] "Queda %d minut, aproximadament." msgstr[1] "Queden %d minuts, aproximadament." #. TRANSLATORS: This refers to disk space that was #. really recovered (in other words, not a preview) #: ../bleachbit/Worker.py:272 #, python-format msgid "Disk space recovered: %s" msgstr "Espai en disc recuperat: %s" #. TRANSLATORS: This refers to a preview (no real #. changes were made yet) #: ../bleachbit/Worker.py:276 #, python-format msgid "Disk space to be recovered: %s" msgstr "Espai en disc a recuperar: %s" #. TRANSLATORS: This refers to the number of files really #. deleted (in other words, not a preview). #: ../bleachbit/Worker.py:281 #, python-format msgid "Files deleted: %d" msgstr "Fitxers eliminats: %d" #. TRANSLATORS: This refers to the number of files that #. would be deleted (in other words, simply a preview). #: ../bleachbit/Worker.py:285 #, python-format msgid "Files to be deleted: %d" msgstr "Fitxers a eliminar: %d" #: ../bleachbit/Worker.py:288 #, python-format msgid "Special operations: %d" msgstr "Operacions especials: %d" #: ../bleachbit/Worker.py:291 #, python-format msgid "Errors: %d" msgstr "Errors: %d" #. TRANSLATORS: The "deep scan" feature searches over broad #. areas of the file system such as the user's whole home directory #. or all the system executables. #: ../bleachbit/Worker.py:306 msgid "Please wait. Running deep scan." msgstr "Espereu. S'està executant una cerca profunda." #. TRANSLATORS: %s is replaced with Firefox, System, etc. #: ../bleachbit/Worker.py:335 #, python-format msgid "Please wait. Previewing %s." msgstr "Espereu. S'està previsualitzant el %s." #: ../bleachbit/Update.py:80 msgid "New winapp2.ini was downloaded." msgstr "S'ha baixat un fitxer winapp2.ini nou." #: ../bleachbit/Update.py:125 msgid "Update BleachBit" msgstr "Actualitza el BleachBit" #: ../bleachbit/Update.py:130 msgid "A new version is available." msgstr "Hi ha una versió nova disponible." #. TRANSLATORS: %s expands to version such as '0.8.4' or '0.8.5beta' or #. similar #: ../bleachbit/Update.py:139 #, python-format msgid "Update to version %s" msgstr "Actualitza a la versió %s" #: ../bleachbit/Update.py:164 #, python-format msgid "" "Error when opening a network connection to %s to check for updates. Please " "verify the network is working." msgstr "" "Error obrint una connexió a la xarxa a %s per comprovar actualitzacions. Per " "favor comprove si la xarxa funciona." #: ../bleachbit/CLI.py:106 #, python-format msgid "not a valid cleaner: %s" msgstr "no és un netejador vàlid: %s" #. TRANSLATORS: This is the command line usage. Don't translate #. %prog, but do translate usage, options, cleaner, and option. #. More information about the command line is here #. https://www.bleachbit.org/documentation/command-line #: ../bleachbit/CLI.py:133 msgid "usage: %prog [options] cleaner.option1 cleaner.option2" msgstr "utilització: %prog [opcions] netejador.opció1 netejador.opció2" #: ../bleachbit/CLI.py:136 msgid "list cleaners" msgstr "llistat dels netejadors" #. TRANSLATORS: predefined cleaners are for applications, such as Firefox and Flash. #. This is different than cleaning an arbitrary file, such as a #. spreadsheet on the desktop. #: ../bleachbit/CLI.py:141 msgid "run cleaners to delete files and make other permanent changes" msgstr "" "executa netejadors per esborrar arxius i realitzar altres canvis permanents" #: ../bleachbit/CLI.py:144 msgid "shred specific files or folders" msgstr "comparteix fitxers o carpetes específiques" #: ../bleachbit/CLI.py:146 msgid "show system information" msgstr "Mostra la informació del sistema" #: ../bleachbit/CLI.py:148 msgid "launch the graphical interface" msgstr "obre la interfície gràfica" #: ../bleachbit/CLI.py:152 msgid "do not prompt for administrator privileges" msgstr "no demanis privilegis d'administrador" #: ../bleachbit/CLI.py:157 msgid "preview files to be deleted and other changes" msgstr "previsualitza els fitxers a eliminar i els altres canvis" #: ../bleachbit/CLI.py:161 msgid "use options set in the graphical interface" msgstr "usa les opcions establertes a la interfície gràfica" #: ../bleachbit/CLI.py:164 msgid "update winapp2.ini, if a new version is available" msgstr "actualitza winapp2.ini, si una nova versió està disponible" #: ../bleachbit/CLI.py:166 msgid "output version information and exit" msgstr "mostra la informació de la versió i surt" #: ../bleachbit/CLI.py:168 msgid "overwrite files to hide contents" msgstr "sobreescriu els fitxers per amagar els continguts" #. TRANSLATORS: this is the context menu #: ../bleachbit/Action.py:382 ../bleachbit/GUI.py:632 msgid "Clean" msgstr "Neteja" #: ../bleachbit/Action.py:418 #, python-format msgid "Run external command: %s" msgstr "Executa l'ordre externa: %s" #: ../bleachbit/GUI.py:135 ../bleachbit/GuiPreferences.py:296 msgid "Name" msgstr "Nom" #: ../bleachbit/GUI.py:143 msgid "Active" msgstr "Actiu" #. TRANSLATORS: Size is the label for the column that shows how #. much space an option would clean or did clean #: ../bleachbit/GUI.py:155 msgid "Size" msgstr "Mida" #. TRANSLATORS: %(cleaner) may be Firefox, System, etc. #. %(option) may be cache, logs, cookies, etc. #. %(warning) may be 'This option is really slow' #: ../bleachbit/GUI.py:186 #, python-format msgid "" "Warning regarding %(cleaner)s - %(option)s:\n" "\n" "%(warning)s" msgstr "" "Compte amb respecte al %(cleaner)s - %(option)s:\n" "\n" "%(warning)s" #: ../bleachbit/GUI.py:372 msgid "You must select an operation" msgstr "Heu de seleccionar una operació" #: ../bleachbit/GUI.py:391 ../bleachbit/GUI.py:413 msgid "Done." msgstr "Fet." #: ../bleachbit/GUI.py:426 msgid "Program to clean unnecessary files" msgstr "Programa per a netejar fitxers innecessaris" #: ../bleachbit/GUI.py:436 msgid "" "GNU General Public License version 3 or later.\n" "See http://www.gnu.org/licenses/gpl-3.0.txt" msgstr "" "GNU General Public License versió 3 o posterior.\n" "Veieu http://www.gnu.org/licenses/gpl-3.0.txt" #. TRANSLATORS: Maintain the names of translators here. #. Launchpad does this automatically for translations #. typed in Launchpad. This is a special string shown #. in the 'About' box. #: ../bleachbit/GUI.py:442 msgid "translator-credits" msgstr "" "Launchpad Contributions:\n" " Alfredo Hernández https://launchpad.net/~aldomann\n" " BennyBeat https://launchpad.net/~bennybeat\n" " David Planella https://launchpad.net/~dpm\n" " Joan Montané https://launchpad.net/~jmontane\n" " VPablo https://launchpad.net/~villumar\n" " oriolsbd https://launchpad.net/~oriolsbd" #: ../bleachbit/GUI.py:454 msgid "System information" msgstr "Informació del sistema" #: ../bleachbit/GUI.py:527 msgid "Choose files to shred" msgstr "Seleccioneu els fitxers a destruir" #: ../bleachbit/GUI.py:530 msgid "Choose folder to shred" msgstr "Seleccioneu el directori que voleu triturar" #: ../bleachbit/GUI.py:594 ../bleachbit/GuiPreferences.py:197 #: ../bleachbit/GuiPreferences.py:326 ../bleachbit/GuiPreferences.py:367 msgid "Choose a folder" msgstr "Trieu una carpeta" #. TRANSLATORS: this is the context menu #: ../bleachbit/GUI.py:627 msgid "Preview" msgstr "Previsualitza" #: ../bleachbit/GUI.py:734 msgid "_Shred Files" msgstr "_Destrueix fitxers" #: ../bleachbit/GUI.py:736 msgid "Sh_red Folders" msgstr "T_ritura directoris" #: ../bleachbit/GUI.py:738 msgid "_Wipe Free Space" msgstr "_Neteja l'espai lliure" #: ../bleachbit/GUI.py:740 msgid "S_hred Settings and Quit" msgstr "Descarta la configuració i surt" #: ../bleachbit/GUI.py:742 msgid "_Quit" msgstr "_Surt" #: ../bleachbit/GUI.py:744 msgid "_File" msgstr "_Fitxer" #: ../bleachbit/GUI.py:746 ../bleachbit/GuiPreferences.py:58 msgid "Preferences" msgstr "Preferències" #: ../bleachbit/GUI.py:747 msgid "_Edit" msgstr "_Edita" #: ../bleachbit/GUI.py:748 msgid "Help Contents" msgstr "Continguts de l'ajuda" #: ../bleachbit/GUI.py:751 msgid "_Release Notes" msgstr "_Notes de la versió" #: ../bleachbit/GUI.py:754 msgid "_System Information" msgstr "Informació del _sistema" #: ../bleachbit/GUI.py:757 msgid "_About" msgstr "_Quant a" #: ../bleachbit/GUI.py:758 msgid "_Help" msgstr "_Ajuda" #: ../bleachbit/GUI.py:783 msgctxt "button" msgid "Preview" msgstr "Previsualitza" #: ../bleachbit/GUI.py:788 msgid "Preview files in the selected operations (without deleting any files)" msgstr "" "Previsualitza els fitxers de les operacions seleccionades (sense eliminar-" "los)" #: ../bleachbit/GUI.py:798 msgctxt "button" msgid "Clean" msgstr "Neteja" #: ../bleachbit/GUI.py:802 msgid "Clean files in the selected operations" msgstr "Neteja els fitxers a les operacions seleccionades" #: ../bleachbit/GUI.py:893 msgid "Error when checking for updates: " msgstr "Error a la comprovació d'actualitzacions: " #: ../bleachbit/GUI.py:932 msgid "" "Error loading the SQLite module: the antivirus software may be blocking it." msgstr "" "S'ha produït un error carregant el mòdul SQLite: l'antivirus pot estar " "bloquejant-lo." #: ../bleachbit/GUI.py:935 msgid "" "You are running BleachBit with administrative privileges for cleaning shared " "parts of the system, and references to the user profile folder will clean " "only the root account." msgstr "" "Vosté està executant BleachBit amb permisos administratius per netejar parts " "compartides del sistema, i les referències del perfil d'usuari netejaran " "només el compte de root." #: ../bleachbit/GUI.py:940 msgid "" "Run BleachBit with administrator privileges to improve the accuracy of " "overwriting the contents of files." msgstr "" "Arranque BleachBit amb privilegis d'administrador per millorar la precisió " "de la sobreescriptura del contingut dels fitxers." #: ../bleachbit/GuiPreferences.py:64 msgid "General" msgstr "General" #: ../bleachbit/GuiPreferences.py:67 msgid "Drives" msgstr "Unitats" #: ../bleachbit/GuiPreferences.py:70 msgid "Languages" msgstr "Idiomes" #: ../bleachbit/GuiPreferences.py:72 msgid "Whitelist" msgstr "Llista blanca" #: ../bleachbit/GuiPreferences.py:117 msgid "Check periodically for software updates via the Internet" msgstr "Comprova periòdicament si hi ha actualitzacions via Internet" #: ../bleachbit/GuiPreferences.py:122 msgid "" "If an update is found, you will be given the option to view information " "about it. Then, you may manually download and install the update." msgstr "" "Si es troba una actualització, podreu visualitzar-ne la informació " "relacinoada. Llavors podreu descarregar i instal·lar l'actualització." #: ../bleachbit/GuiPreferences.py:128 msgid "Check for new beta releases" msgstr "Comprova si hi ha versions beta noves" #: ../bleachbit/GuiPreferences.py:137 msgid "Download and update cleaners from community (winapp2.ini)" msgstr "" "Baixa i actualitza els netejadors fets per la comunitat (winapp2.ini)" #. TRANSLATORS: This means to hide cleaners which would do #. nothing. For example, if Firefox were never used on #. this system, this option would hide Firefox to simplify #. the list of cleaners. #: ../bleachbit/GuiPreferences.py:151 msgid "Hide irrelevant cleaners" msgstr "Oculta netejadors irrellevants" #. TRANSLATORS: Overwriting is the same as shredding. It is a way #. to prevent recovery of the data. You could also translate #. 'Shred files to prevent recovery.' #: ../bleachbit/GuiPreferences.py:159 msgid "Overwrite contents of files to prevent recovery" msgstr "Sobreescriu els continguts dels fitxers per previndre la recuperació" #: ../bleachbit/GuiPreferences.py:163 msgid "" "Overwriting is ineffective on some file systems and with certain BleachBit " "operations. Overwriting is significantly slower." msgstr "" "La sobreescriptura no és efectiva en alguns sistemes de fitxers i amb certes " "operacions del BleachBit. La sobreesciptura és més lenta." #: ../bleachbit/GuiPreferences.py:166 msgid "Start BleachBit with computer" msgstr "Inicia el BleachBit amb l'ordinador" #: ../bleachbit/GuiPreferences.py:172 msgid "Exit after cleaning" msgstr "Ix després de netejar" #: ../bleachbit/GuiPreferences.py:178 msgid "Confirm before delete" msgstr "Confirma abans d'esborrar" #: ../bleachbit/GuiPreferences.py:186 msgid "Use IEC sizes (1 KiB = 1024 bytes) instead of SI (1 kB = 1000 bytes)" msgstr "" "Usa la mida IEC (1 KiB = 1024 bytes) en lloc de la SI (1 kB = 1000 bytes)" #: ../bleachbit/GuiPreferences.py:221 msgid "" "Choose a writable folder for each drive for which to overwrite free space." msgstr "" "Seleccioneu un directori amb permisos d'escriptura per a cada unitat en la " "qual es pugui sobreescriure en l'espai lliure" #. TRANSLATORS: In the preferences dialog, this button adds a path to #. the list of paths #: ../bleachbit/GuiPreferences.py:243 msgctxt "button" msgid "Add" msgstr "Afegeix" #. TRANSLATORS: In the preferences dialog, this button removes a path #. from the list of paths #: ../bleachbit/GuiPreferences.py:247 ../bleachbit/GuiPreferences.py:458 msgctxt "button" msgid "Remove" msgstr "Suprimeix" #: ../bleachbit/GuiPreferences.py:272 msgid "All languages will be deleted except those checked." msgstr "S'eliminaran tots els idiomes excepte els marcats." #: ../bleachbit/GuiPreferences.py:288 msgid "Preserve" msgstr "Conserva" #: ../bleachbit/GuiPreferences.py:292 msgid "Code" msgstr "Codi" #: ../bleachbit/GuiPreferences.py:313 ../bleachbit/GuiPreferences.py:354 msgid "Choose a file" msgstr "Escolliu un fitxer" #: ../bleachbit/GuiPreferences.py:320 ../bleachbit/GuiPreferences.py:361 #: ../bleachbit/GuiPreferences.py:405 msgid "File" msgstr "Fitxer" #: ../bleachbit/GuiPreferences.py:334 ../bleachbit/GuiPreferences.py:375 #: ../bleachbit/GuiPreferences.py:407 msgid "Folder" msgstr "Carpeta" #: ../bleachbit/GuiPreferences.py:417 msgid "Theses paths will not be deleted or modified." msgstr "No es modificaran ni s'esborraran aquests camins." #: ../bleachbit/GuiPreferences.py:420 msgid "These locations can be selected for deletion." msgstr "Aquestes ubicacions poden ser seleccionades per eliminar" #: ../bleachbit/GuiPreferences.py:428 msgid "Type" msgstr "Tipus" #. TRANSLATORS: In the tree view "Path" is used generically to refer to a #. file, a folder, or a pattern describing either #: ../bleachbit/GuiPreferences.py:434 msgid "Path" msgstr "Camí" #: ../bleachbit/GuiPreferences.py:446 msgctxt "button" msgid "Add file" msgstr "Afegeix un fitxer" #: ../bleachbit/GuiPreferences.py:452 msgctxt "button" msgid "Add folder" msgstr "Afegeix un directori" bleachbit-2.0/po/nn.po0000644000175000017500000011605413245436307013001 0ustar hlehle# Norwegian Nynorsk translation for bleachbit # Copyright (c) 2012 Rosetta Contributors and Canonical Ltd 2012 # This file is distributed under the same license as the bleachbit package. # FIRST AUTHOR , 2012. # msgid "" msgstr "" "Project-Id-Version: bleachbit\n" "Report-Msgid-Bugs-To: FULL NAME \n" "POT-Creation-Date: 2014-12-30 16:39-0700\n" "PO-Revision-Date: 2015-01-08 15:35+0000\n" "Last-Translator: Alexander Mackinnon Jansen \n" "Language-Team: Norwegian Nynorsk \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n != 1;\n" "X-Launchpad-Export-Date: 2015-01-08 22:00+0000\n" "X-Generator: Launchpad (build 17298)\n" #: ../cleaners/mc.xml ../cleaners/tortoisesvn.xml ../cleaners/vim.xml #: ../cleaners/safari.xml ../cleaners/links2.xml ../cleaners/seamonkey.xml #: ../cleaners/realplayer.xml ../cleaners/windows_defender.xml #: ../cleaners/d4x.xml ../cleaners/sqlite3.xml #: ../cleaners/internet_explorer.xml ../cleaners/libreoffice.xml #: ../cleaners/easytag.xml ../cleaners/bash.xml ../cleaners/nautilus.xml #: ../cleaners/octave.xml ../cleaners/elinks.xml ../cleaners/chromium.xml #: ../cleaners/google_chrome.xml msgid "History" msgstr "Historikk" #: ../cleaners/mc.xml ../cleaners/tortoisesvn.xml ../cleaners/links2.xml #: ../cleaners/realplayer.xml ../cleaners/d4x.xml ../cleaners/libreoffice.xml #: ../cleaners/easytag.xml ../cleaners/nautilus.xml ../cleaners/gnome.xml #: ../bleachbit/Cleaner.py:345 ../bleachbit/Cleaner.py:419 #: ../bleachbit/Cleaner.py:428 msgid "Delete the usage history" msgstr "Slett brukshistorikken" #: ../cleaners/gpodder.xml ../cleaners/hippo_opensim_viewer.xml #: ../cleaners/thumbnails.xml ../cleaners/safari.xml ../cleaners/emesene.xml #: ../cleaners/liferea.xml ../cleaners/seamonkey.xml ../cleaners/vuze.xml #: ../cleaners/yahoo_messenger.xml ../cleaners/pidgin.xml #: ../cleaners/adobe_reader.xml ../cleaners/evolution.xml #: ../cleaners/tremulous.xml ../cleaners/libreoffice.xml ../cleaners/xine.xml #: ../cleaners/nexuiz.xml ../cleaners/exaile.xml ../cleaners/opera.xml #: ../cleaners/amsn.xml ../cleaners/gftp.xml ../cleaners/miro.xml #: ../cleaners/beagle.xml ../cleaners/kde.xml ../cleaners/epiphany.xml #: ../cleaners/flash.xml ../cleaners/secondlife_viewer.xml #: ../cleaners/java.xml ../cleaners/chromium.xml ../cleaners/audacious.xml #: ../cleaners/rhythmbox.xml ../cleaners/google_chrome.xml #: ../cleaners/thunderbird.xml ../bleachbit/Cleaner.py:189 #: ../bleachbit/Cleaner.py:366 ../bleachbit/Cleaner.py:451 msgid "Cache" msgstr "Mellomlager" #: ../cleaners/gpodder.xml ../cleaners/yum.xml #: ../cleaners/hippo_opensim_viewer.xml ../cleaners/thumbnails.xml #: ../cleaners/windows_explorer.xml ../cleaners/liferea.xml #: ../cleaners/vuze.xml ../cleaners/yahoo_messenger.xml ../cleaners/pidgin.xml #: ../cleaners/adobe_reader.xml ../cleaners/evolution.xml #: ../cleaners/libreoffice.xml ../cleaners/apt.xml ../cleaners/xine.xml #: ../cleaners/nexuiz.xml ../cleaners/exaile.xml ../cleaners/amsn.xml #: ../cleaners/gftp.xml ../cleaners/miro.xml ../cleaners/beagle.xml #: ../cleaners/kde.xml ../cleaners/flash.xml ../cleaners/secondlife_viewer.xml #: ../cleaners/java.xml ../cleaners/audacious.xml ../cleaners/rhythmbox.xml #: ../bleachbit/Cleaner.py:366 ../bleachbit/Cleaner.py:451 #: ../bleachbit/Cleaner.py:485 ../bleachbit/Cleaner.py:487 msgid "Delete the cache" msgstr "Slett mellomlageret" #. TRANSLATORS: Vacuum is a verb. The term is jargon #. from the SQLite database. Microsoft Access uses #. the term 'Compact Database' (which you may translate #. instead). Another synonym is 'defragment.' #: ../cleaners/gpodder.xml ../cleaners/yum.xml ../cleaners/safari.xml #: ../cleaners/liferea.xml ../cleaners/chromium.xml #: ../cleaners/google_chrome.xml ../cleaners/thunderbird.xml #: ../bleachbit/Action.py:335 ../bleachbit/Cleaner.py:209 #: ../bleachbit/Cleaner.py:356 msgid "Vacuum" msgstr "Støvsug" #: ../cleaners/gpodder.xml ../cleaners/yum.xml ../cleaners/safari.xml #: ../cleaners/liferea.xml ../cleaners/chromium.xml #: ../cleaners/google_chrome.xml ../cleaners/thunderbird.xml #: ../bleachbit/Cleaner.py:210 msgid "" "Clean database fragmentation to reduce space and improve speed without " "removing any data" msgstr "" "Rensk opp smådelar i databasa for å minske plass og auke farta utan å fjerne " "data" #: ../cleaners/warzone2100.xml ../cleaners/hippo_opensim_viewer.xml #: ../cleaners/teamviewer.xml ../cleaners/realplayer.xml ../cleaners/vuze.xml #: ../cleaners/yahoo_messenger.xml ../cleaners/amule.xml #: ../cleaners/easytag.xml ../cleaners/exaile.xml ../cleaners/screenlets.xml #: ../cleaners/gftp.xml ../cleaners/miro.xml ../cleaners/audacious.xml #: ../bleachbit/Cleaner.py:482 msgid "Logs" msgstr "Loggar" #: ../cleaners/warzone2100.xml ../cleaners/hippo_opensim_viewer.xml #: ../cleaners/teamviewer.xml ../cleaners/realplayer.xml ../cleaners/vuze.xml #: ../cleaners/yahoo_messenger.xml ../cleaners/amule.xml #: ../cleaners/exaile.xml ../cleaners/screenlets.xml ../cleaners/gftp.xml #: ../cleaners/miro.xml ../cleaners/audacious.xml ../bleachbit/Cleaner.py:482 msgid "Delete the logs" msgstr "Slett loggane" #: ../cleaners/hippo_opensim_viewer.xml ../cleaners/gl-117.xml #: ../cleaners/tremulous.xml ../cleaners/nexuiz.xml #: ../cleaners/secondlife_viewer.xml msgid "Game" msgstr "Spel" #: ../cleaners/thumbnails.xml ../cleaners/windows_explorer.xml msgid "Thumbnails" msgstr "Miniatyrbilete" #: ../cleaners/vim.xml ../cleaners/gedit.xml msgid "Editor" msgstr "Skriveprogram" #: ../cleaners/vim.xml msgid "" "Delete ~/.viminfo which includes file history, command history, and buffers" msgstr "" "Slett ~./vminfo som inneheld filhistorikk, komandohistorikk og bufrar" #: ../cleaners/filezilla.xml ../cleaners/transmission.xml ../cleaners/vuze.xml #: ../cleaners/amule.xml ../cleaners/gftp.xml msgid "File transfer client" msgstr "Program for filoverføring" #: ../cleaners/filezilla.xml ../cleaners/paint.xml #: ../cleaners/windows_media_player.xml ../cleaners/windows_explorer.xml #: ../cleaners/teamviewer.xml ../cleaners/microsoft_office.xml #: ../cleaners/vlc.xml ../cleaners/adobe_reader.xml ../cleaners/winamp.xml #: ../cleaners/winzip.xml ../cleaners/winrar.xml ../cleaners/audacious.xml #: ../cleaners/wordpad.xml ../bleachbit/Cleaner.py:367 msgid "Most recently used" msgstr "Sist brukt" #: ../cleaners/filezilla.xml ../cleaners/windows_explorer.xml #: ../cleaners/gwenview.xml ../cleaners/adobe_reader.xml ../cleaners/gedit.xml #: ../cleaners/kde.xml ../cleaners/audacious.xml ../bleachbit/Cleaner.py:368 #: ../bleachbit/Cleaner.py:465 msgid "Delete the list of recently used documents" msgstr "Slett lista over nyleg brukte dokument" #: ../cleaners/skype.xml ../cleaners/xchat.xml ../cleaners/emesene.xml #: ../cleaners/seamonkey.xml ../cleaners/yahoo_messenger.xml #: ../cleaners/pidgin.xml ../cleaners/amsn.xml msgid "Chat logs" msgstr "Prateloggar" #: ../cleaners/skype.xml ../cleaners/xchat.xml ../cleaners/emesene.xml #: ../cleaners/seamonkey.xml ../cleaners/yahoo_messenger.xml #: ../cleaners/pidgin.xml ../cleaners/amsn.xml msgid "Delete the chat logs" msgstr "Slett prateloggane" #: ../cleaners/xchat.xml ../cleaners/emesene.xml #: ../cleaners/yahoo_messenger.xml ../cleaners/pidgin.xml ../cleaners/amsn.xml msgid "Chat client" msgstr "Prateprogram" #: ../cleaners/safari.xml ../cleaners/links2.xml ../cleaners/seamonkey.xml #: ../cleaners/konqueror.xml ../cleaners/internet_explorer.xml #: ../cleaners/opera.xml ../cleaners/epiphany.xml ../cleaners/elinks.xml #: ../cleaners/chromium.xml ../cleaners/google_chrome.xml #: ../bleachbit/Cleaner.py:222 msgid "Web browser" msgstr "Nettlesar" #: ../cleaners/safari.xml ../cleaners/seamonkey.xml ../cleaners/opera.xml #: ../cleaners/epiphany.xml ../cleaners/chromium.xml #: ../cleaners/google_chrome.xml ../cleaners/thunderbird.xml #: ../bleachbit/Cleaner.py:190 msgid "Delete the web cache, which reduces time to display revisited pages" msgstr "" "Slett mellombelsfiler for internett, som minskar tida det tek å vise " "tidlegare vitja nettsider" #: ../cleaners/safari.xml ../cleaners/liferea.xml ../cleaners/seamonkey.xml #: ../cleaners/realplayer.xml ../cleaners/konqueror.xml #: ../cleaners/internet_explorer.xml ../cleaners/opera.xml #: ../cleaners/epiphany.xml ../cleaners/flash.xml ../cleaners/silverlight.xml #: ../cleaners/chromium.xml ../cleaners/google_chrome.xml #: ../cleaners/thunderbird.xml ../bleachbit/Cleaner.py:191 msgid "Cookies" msgstr "Informasjonskapslar" #: ../cleaners/safari.xml ../cleaners/liferea.xml ../cleaners/seamonkey.xml #: ../cleaners/realplayer.xml ../cleaners/konqueror.xml #: ../cleaners/internet_explorer.xml ../cleaners/opera.xml #: ../cleaners/epiphany.xml ../cleaners/flash.xml ../cleaners/silverlight.xml #: ../cleaners/chromium.xml ../cleaners/google_chrome.xml #: ../cleaners/thunderbird.xml ../bleachbit/Cleaner.py:192 msgid "" "Delete cookies, which contain information such as web site preferences, " "authentication, and tracking identification" msgstr "" "Slett informasjonskapsler, som inneheld informasjon om mellom anna " "nettstadsval, stadfesting og sporingsstadfesting" #: ../cleaners/safari.xml ../cleaners/konqueror.xml #: ../cleaners/internet_explorer.xml ../cleaners/opera.xml #: ../bleachbit/Cleaner.py:208 msgid "List of visited web pages" msgstr "Liste over vitja nettsider" #: ../cleaners/transmission.xml msgid "Blocklists" msgstr "" #: ../cleaners/transmission.xml ../cleaners/windows_defender.xml #: ../cleaners/beagle.xml ../cleaners/thunderbird.xml ../cleaners/deepscan.xml #: ../bleachbit/Cleaner.py:194 msgid "Delete the files" msgstr "Slett filane" #: ../cleaners/transmission.xml msgid "Blocklists will need update to work." msgstr "" #: ../cleaners/transmission.xml msgid "Torrents" msgstr "Torrentar" #: ../cleaners/transmission.xml msgid "Delete the torrents (just the metadata but not the files described)" msgstr "Slett torrentane (berre metadataen men ikkje filene som er skildra)" #: ../cleaners/paint.xml ../cleaners/windows_media_player.xml #: ../cleaners/windows_explorer.xml ../cleaners/teamviewer.xml #: ../cleaners/microsoft_office.xml ../cleaners/vlc.xml ../cleaners/winamp.xml #: ../cleaners/winzip.xml ../cleaners/winrar.xml ../cleaners/wordpad.xml msgid "Delete the most recently used list" msgstr "Slett lista over nyleg brukte element" #: ../cleaners/emesene.xml msgid "Delete the avatars and emoticons cache" msgstr "Slett hurtiglageret for profilbilete og smilefjes" #: ../cleaners/windows_explorer.xml ../cleaners/gwenview.xml #: ../cleaners/gedit.xml ../cleaners/kde.xml ../bleachbit/Cleaner.py:464 msgid "Recent documents list" msgstr "Liste over dei siste dokumenta" #. In Windows 'Run' is the dialog in the Start menu #. In GNOME 'Run' is the dialog shown when typing ALT+F2' #: ../cleaners/windows_explorer.xml ../cleaners/gnome.xml msgid "Run" msgstr "Køyr" #: ../cleaners/windows_explorer.xml ../cleaners/opera.xml #: ../cleaners/gnome.xml ../cleaners/google_toolbar.xml msgid "Search history" msgstr "Søkehistorikk" #: ../cleaners/windows_explorer.xml ../cleaners/opera.xml #: ../cleaners/gnome.xml ../cleaners/google_toolbar.xml msgid "Delete the search history" msgstr "Slett søkehistorikken" #: ../cleaners/gl-117.xml ../cleaners/microsoft_office.xml #: ../cleaners/beagle.xml ../cleaners/secondlife_viewer.xml #: ../cleaners/x11.xml msgid "Debug logs" msgstr "Feilsøkingsloggar" #: ../cleaners/gl-117.xml ../cleaners/microsoft_office.xml #: ../cleaners/easytag.xml ../cleaners/beagle.xml #: ../cleaners/secondlife_viewer.xml ../cleaners/x11.xml msgid "Delete the debug logs" msgstr "Slett feilsøkingsloggane" #: ../cleaners/google_earth.xml ../cleaners/winetricks.xml #: ../cleaners/vuze.xml ../cleaners/adobe_reader.xml ../cleaners/amule.xml #: ../cleaners/wine.xml ../cleaners/internet_explorer.xml ../cleaners/gimp.xml #: ../cleaners/kde.xml ../cleaners/deepscan.xml ../bleachbit/Cleaner.py:516 msgid "Temporary files" msgstr "Mellombelse filer" #: ../cleaners/google_earth.xml ../cleaners/winetricks.xml #: ../cleaners/vuze.xml ../cleaners/adobe_reader.xml ../cleaners/amule.xml #: ../cleaners/wine.xml ../cleaners/internet_explorer.xml ../cleaners/gimp.xml #: ../cleaners/kde.xml ../cleaners/deepscan.xml ../bleachbit/Cleaner.py:516 msgid "Delete the temporary files" msgstr "Slett dei midlertidige filene" #: ../cleaners/seamonkey.xml ../cleaners/opera.xml ../bleachbit/Cleaner.py:198 msgid "Download history" msgstr "Nedlastingshistorikk" #: ../cleaners/seamonkey.xml ../cleaners/opera.xml ../bleachbit/Cleaner.py:198 msgid "List of files downloaded" msgstr "Liste over nedlasta filer" #: ../cleaners/seamonkey.xml msgid "Delete the list of visited web pages" msgstr "Slett lista over vitja nettsider" #: ../cleaners/vuze.xml ../cleaners/deepscan.xml ../bleachbit/Cleaner.py:187 msgid "Backup files" msgstr "Tryggleikskopiar" #: ../cleaners/vuze.xml ../cleaners/deepscan.xml ../bleachbit/Cleaner.py:188 msgid "Delete the backup files" msgstr "Slett tryggleikskopiane" #: ../cleaners/konqueror.xml ../cleaners/opera.xml ../cleaners/chromium.xml msgid "Current session" msgstr "Aktiv økt" #: ../cleaners/konqueror.xml ../cleaners/opera.xml ../cleaners/chromium.xml msgid "Delete the current session" msgstr "Slett den aktive økta" #: ../cleaners/konqueror.xml ../cleaners/opera.xml ../bleachbit/Cleaner.py:208 msgid "URL history" msgstr "URL-historikk" #: ../cleaners/microsoft_office.xml ../cleaners/libreoffice.xml #: ../bleachbit/Cleaner.py:380 msgid "Office suite" msgstr "Kontorpakke" #: ../cleaners/tremulous.xml msgid "Delete the list of game servers" msgstr "Slett lista over speltenarar" #: ../cleaners/sqlite3.xml ../cleaners/bash.xml ../cleaners/octave.xml msgid "Delete the command history" msgstr "Slett kommandohistorikken" #: ../cleaners/internet_explorer.xml ../cleaners/chromium.xml #: ../cleaners/google_chrome.xml ../bleachbit/Cleaner.py:199 msgid "Form history" msgstr "Skjemahistorikk" #: ../cleaners/internet_explorer.xml ../bleachbit/Cleaner.py:200 msgid "A history of forms entered in web sites and in the Search bar" msgstr "Historikk over skjema brukt på nettstader og i søkelinja" #: ../cleaners/easytag.xml msgid "Audio files tagger" msgstr "Taggeprogram for lydfiler" #: ../cleaners/apt.xml msgid "Delete obsolete files" msgstr "Slett filer som ikkje er naudsynte" #: ../cleaners/apt.xml msgid "Package lists" msgstr "Pakkelister" #: ../cleaners/xine.xml ../cleaners/miro.xml ../cleaners/flash.xml msgid "Multimedia viewer" msgstr "Multimediaframsynar" #: ../cleaners/recoll.xml ../cleaners/beagle.xml msgid "Search tool" msgstr "Søkeverktøy" #: ../cleaners/recoll.xml ../cleaners/beagle.xml ../cleaners/thunderbird.xml msgid "Index" msgstr "Søkeregister" #: ../cleaners/recoll.xml msgid "" "Delete the search index, a database of words and the files they contain" msgstr "Slett søkeregisteret, ei database over ord og filene dei inneheld" #: ../cleaners/exaile.xml msgid "Downloaded podcasts" msgstr "Nedlasta podkastar" #: ../cleaners/exaile.xml msgid "Delete downloaded podcasts" msgstr "Slett nedlasta podkastar" #. TRANSLATORS: DOM = Document Object Model. #: ../cleaners/opera.xml ../cleaners/chromium.xml #: ../cleaners/google_chrome.xml ../bleachbit/Cleaner.py:196 msgid "DOM Storage" msgstr "DOM-lagring" #: ../cleaners/opera.xml ../cleaners/chromium.xml #: ../cleaners/google_chrome.xml ../bleachbit/Cleaner.py:196 msgid "Delete HTML5 cookies" msgstr "Slett HTML5-informasjonskapslar" #: ../cleaners/opera.xml ../cleaners/epiphany.xml ../cleaners/chromium.xml #: ../cleaners/google_chrome.xml ../cleaners/thunderbird.xml #: ../bleachbit/Cleaner.py:205 msgid "Passwords" msgstr "Passord" #: ../cleaners/opera.xml ../cleaners/epiphany.xml ../cleaners/chromium.xml #: ../cleaners/google_chrome.xml ../cleaners/thunderbird.xml #: ../bleachbit/Cleaner.py:206 msgid "" "A database of usernames and passwords as well as a list of sites that should " "not store passwords" msgstr "" "Ei database med brukarnamn og passord, samt ei liste over nettstader som " "ikkje skal lagre passord" #: ../cleaners/opera.xml ../cleaners/epiphany.xml ../cleaners/chromium.xml #: ../cleaners/google_chrome.xml ../cleaners/thunderbird.xml msgid "This option will delete your saved passwords." msgstr "Dette valet sletter dei lagra passorda." #: ../cleaners/nautilus.xml msgid "Custom folders will be reset." msgstr "Eigne mapper blir tilbakestilt." #: ../cleaners/screenlets.xml msgid "Widgets for the desktop" msgstr "Miniprogram til skrivebordet" #: ../cleaners/kde.xml msgid "This option may be incompatible with kdesudo" msgstr "Dette valget fungerer kanskje ikkje med kdesudo" #: ../cleaners/epiphany.xml msgid "Places" msgstr "Stader" #: ../cleaners/epiphany.xml msgid "" "A database of URLs including bookmarks, favicons, and a history of visited " "web sites" msgstr "" "Ei URL-database med mellom anna bokmerke, favikon, og historikk over vitja " "nettstader" #: ../cleaners/epiphany.xml msgid "This option deletes all bookmarks." msgstr "Dette valet sletter alle bokmerka" #: ../cleaners/elinks.xml msgid "Delete the cookies, visited URLs, and search history" msgstr "Slett informasjonskapslane, vitja URL-ar, og søkehistorikken" #: ../cleaners/chromium.xml ../cleaners/google_chrome.xml msgid "A history of forms entered in web sites" msgstr "Ei historikk over skjema som er skrivne inn på nettstader" #: ../cleaners/chromium.xml ../cleaners/google_chrome.xml msgid "" "Delete the history which includes visited sites, downloads, and thumbnails" msgstr "" "Slett historikken som gjeld vitja nettstader, nedlastinger, og miniatyrbilete" #: ../cleaners/chromium.xml ../cleaners/google_chrome.xml msgid "Search engines" msgstr "Søkemotorar" #. 'Factory' means a search engine that is installed by default 'from the factory,' but this is different than a 'default search engine' https://lists.launchpad.net/launchpad-translators/msg00283.html #: ../cleaners/chromium.xml ../cleaners/google_chrome.xml msgid "" "Reset the search engine usage history and delete non-factory search engines, " "some of which are added automatically" msgstr "" "Still nettlesaren og brukshistorikken attende til standard, og slett " "søkemotorar som ikkje er standard; nokre av desse blir lagt til automatisk" #: ../cleaners/google_chrome.xml msgid "Session" msgstr "Økt" #: ../cleaners/google_chrome.xml msgid "Delete the current and last sessions" msgstr "Slett denne og førre økt" #: ../cleaners/deepscan.xml msgid "Deep scan" msgstr "Grundig søk" #: ../cleaners/deepscan.xml msgid "Inspect the preview for any files you want to keep." msgstr "Undersøk førehandsvisinga for filene du vil ta vare på." #: ../cleaners/deepscan.xml msgid "This option is slow." msgstr "Dette valet er tregt." #: ../bleachbit.desktop msgid "Unnecessary file cleaner" msgstr "Renskar for unødige filer" #: ../bleachbit.desktop msgid "Free space and maintain privacy" msgstr "Frigjer plass og oppretthald personvern" #. TRANSLATORS: Parts of this file will be deleted #: ../bleachbit/Action.py:192 ../bleachbit/Action.py:205 #: ../bleachbit/Action.py:218 ../bleachbit/Action.py:231 #: ../bleachbit/Action.py:244 ../bleachbit/Command.py:181 #: ../bleachbit/Command.py:211 msgid "Clean file" msgstr "Reinsk fil" #. TRANSLATORS: this is the context menu #: ../bleachbit/Action.py:308 ../bleachbit/GUI.py:578 msgid "Clean" msgstr "Reinsk" #: ../bleachbit/Cleaner.py:194 msgid "Crash reports" msgstr "Krasjraportar" #: ../bleachbit/Cleaner.py:201 msgid "Session restore" msgstr "Øktgjennoppretting" #: ../bleachbit/Cleaner.py:202 msgid "Loads the initial session after the browser closes or crashes" msgstr "Lastar inn den første økta etter at lesaren lukkast eller krasjar" #: ../bleachbit/Cleaner.py:204 msgid "Site preferences" msgstr "Nettstadinnstillingar" #: ../bleachbit/Cleaner.py:204 msgid "Settings for individual sites" msgstr "Innstillingar for enkeltnettstader" #. TRANSLATORS: desktop entries are .desktop files in Linux tha #. make up the application menu (the menu that shows BleachBit, #. Firefox, and others. The .desktop files also associate file #. types, so clicking on an .html file in Nautilus brings up #. Firefox. #. More information: #. http://standards.freedesktop.org/menu-spec/latest/index.html#introduction #: ../bleachbit/Cleaner.py:449 msgid "Broken desktop files" msgstr "Øydelagde skrivebordsfiler" #: ../bleachbit/Cleaner.py:450 msgid "Delete broken application menu entries and file associations" msgstr "Slett øydelagde menyinnlegg og filsamankoplingar" #. TRANSLATORS: Localizations are files supporting specific #. languages, so applications appear in Spanish, etc. #: ../bleachbit/Cleaner.py:454 msgid "Localizations" msgstr "Lokaliseringar" #: ../bleachbit/Cleaner.py:455 msgid "Delete files for unwanted languages" msgstr "Slett filar for uønska språk" #: ../bleachbit/Cleaner.py:457 msgid "Configure this option in the preferences." msgstr "Tilpass dette valet i innstillingane." #: ../bleachbit/Cleaner.py:463 msgid "Rotated logs" msgstr "Gamle loggar" #: ../bleachbit/Cleaner.py:463 msgid "Delete old system logs" msgstr "Slett gamle systemloggar" #: ../bleachbit/Cleaner.py:466 msgid "Trash" msgstr "Papirkorg" #: ../bleachbit/Cleaner.py:466 msgid "Empty the trash" msgstr "Tøm papirkorga" #: ../bleachbit/Cleaner.py:472 ../bleachbit/Cleaner.py:624 #: ../bleachbit/Worker.py:169 msgid "Memory" msgstr "Minne" #. TRANSLATORS: 'free' means 'unallocated' #: ../bleachbit/Cleaner.py:474 msgid "Wipe the swap and free memory" msgstr "Reinsk veksel- og ledig minne" #: ../bleachbit/Cleaner.py:476 msgid "This option is experimental and may cause system problems." msgstr "" "Dette alternativet er på forsøksstadiet og kan skape problem i systemet." #: ../bleachbit/Cleaner.py:484 msgid "Memory dump" msgstr "Minnedump" #: ../bleachbit/Cleaner.py:484 msgid "Delete the file memory.dmp" msgstr "Slett memory.dmp-fila" #. TRANSLATORS: Prefetch is Microsoft Windows jargon. #: ../bleachbit/Cleaner.py:487 msgid "Prefetch" msgstr "førehåndslaste" #: ../bleachbit/Cleaner.py:489 msgid "Recycle bin" msgstr "Papirkorg" #: ../bleachbit/Cleaner.py:489 msgid "Empty the recycle bin" msgstr "Tøm papirkorga" #. TRANSLATORS: 'Update' is a noun, and 'Update uninstallers' is an option to delete #. the uninstallers for software updates. #: ../bleachbit/Cleaner.py:492 msgid "Update uninstallers" msgstr "Oppdater avinstallasjonsprogramma" #: ../bleachbit/Cleaner.py:493 msgid "" "Delete uninstallers for Microsoft updates including hotfixes, service packs, " "and Internet Explorer updates" msgstr "" "Slett uinstalerarane for Microsoft-oppdateringar som inneheld rettingar, " "sørvisspakkar og oppdateringar til Internet Explorer" #: ../bleachbit/Cleaner.py:500 ../bleachbit/Cleaner.py:713 msgid "Clipboard" msgstr "Utklippstavle" #: ../bleachbit/Cleaner.py:501 msgid "" "The desktop environment's clipboard used for copy and paste operations" msgstr "" "Utklippstavla for skrivebordmiljøet blir brukt til å kopiera og lima inn" #. TRANSLATORS: "Custom" is an option allowing the user to specify which #. files and folders will be erased. #: ../bleachbit/Cleaner.py:508 ../bleachbit/GuiPreferences.py:63 msgid "Custom" msgstr "Tilpassa" #: ../bleachbit/Cleaner.py:509 msgid "Delete user-specified files and folders" msgstr "Slett brukervalde filer og mapper" #. TRANSLATORS: 'free' means 'unallocated' #: ../bleachbit/Cleaner.py:511 msgid "Free disk space" msgstr "Ledig diskplass" #. TRANSLATORS: 'free' means 'unallocated' #: ../bleachbit/Cleaner.py:513 msgid "Overwrite free disk space to hide deleted files" msgstr "Skriv over ledig diskplass for å gøyme sletta filer" #: ../bleachbit/Cleaner.py:514 msgid "This option is very slow." msgstr "Dette valet er veldig treigt." #: ../bleachbit/Cleaner.py:519 msgid "The system in general" msgstr "Systemet generelt" #: ../bleachbit/Cleaner.py:525 ../bleachbit/Cleaner.py:819 msgid "System" msgstr "System" #. TRANSLATORS: 'Free' means 'unallocated.' #. %s expands to a path such as C:\ or /tmp/ #: ../bleachbit/Cleaner.py:721 ../bleachbit/Cleaner.py:850 #, python-format msgid "Overwrite free disk space %s" msgstr "Overskriv ledig diskplass %s" #. TRANSLATORS: %s expands to a drive letter such as C:\ or D:\ #: ../bleachbit/Cleaner.py:748 #, python-format msgid "Recycle bin %s" msgstr "Papirkorg %s" #: ../bleachbit/CLI.py:107 #, python-format msgid "not a valid cleaner: %s" msgstr "ikkje ei gyldig reinskar: %s" #. TRANSLATORS: This is the command line usage. Don't translate #. %prog, but do translate usage, options, cleaner, and option. #. More information about the command line is here #. http://bleachbit.sourceforge.net/documentation/command-line #: ../bleachbit/CLI.py:134 msgid "usage: %prog [options] cleaner.option1 cleaner.option2" msgstr "bruk: %prog [val] reinskar.val1 reinskar.val2" #: ../bleachbit/CLI.py:137 msgid "list cleaners" msgstr "listereinskarar" #. TRANSLATORS: predefined cleaners are for applications, such as Firefox and Flash. #. This is different than cleaning an arbitrary file, such as a #. spreadsheet on the desktop. #: ../bleachbit/CLI.py:142 msgid "run cleaners to delete files and make other permanent changes" msgstr "" "køyr reinskeprogram for å sletta filer og gjer andre permanente endringar" #: ../bleachbit/CLI.py:144 msgid "shred specific files or folders" msgstr "makuler filar eller mapper" #: ../bleachbit/CLI.py:146 msgid "show system information" msgstr "vis systeminformasjon" #: ../bleachbit/CLI.py:148 msgid "launch the graphical interface" msgstr "køyr det grafiske grensesnittet" #: ../bleachbit/CLI.py:150 msgid "do not prompt for administrator privileges" msgstr "ikkje be om administratorrettar" #: ../bleachbit/CLI.py:155 msgid "preview files to be deleted and other changes" msgstr "forhandsvis filer som skal slettast og andre endringar" #: ../bleachbit/CLI.py:157 msgid "use options set in the graphical interface" msgstr "bruk val frå det grafiske grensesnittet" #: ../bleachbit/CLI.py:160 msgid "update winapp2.ini, if a new version is available" msgstr "oppdater winapp2.ini hvis det finnes en ny versjon" #: ../bleachbit/CLI.py:162 msgid "output version information and exit" msgstr "skriv ut informasjon om versjonen og avslutt" #: ../bleachbit/CLI.py:164 msgid "overwrite files to hide contents" msgstr "skriv over filer for å skjule innhald" #. TRANSLATORS: This is the label in the log indicating was #. skipped because it matches the whitelist #: ../bleachbit/Command.py:44 msgid "Skip" msgstr "Hoppa over" #. TRANSLATORS: This is the label in the log indicating will be #. deleted (for previews) or was actually deleted #: ../bleachbit/Command.py:70 msgid "Delete" msgstr "Slett" #. TRANSLATORS: The file will be deleted when the #. system reboots #: ../bleachbit/Command.py:91 msgid "Mark for deletion" msgstr "Merk for sletting" #. TRANSLATORS: The file will be truncated to 0 bytes in length #: ../bleachbit/Command.py:247 msgid "Truncate" msgstr "Kort av" #: ../bleachbit/Command.py:286 msgid "Delete registry key" msgstr "Slett registernøkkel" #: ../bleachbit/GuiBasic.py:112 msgid "Delete confirmation" msgstr "Slett stadfesting" #: ../bleachbit/GuiBasic.py:122 msgid "" "Are you sure you want to permanently delete files according to the selected " "operations? The actual files that will be deleted may have changed since " "you ran the preview." msgstr "" "Er du sikker på at du vil slette filer permanent i høve til valde " "handlingar? Dei eigentlege filene som skal slettast kan ha blitt endra sia " "du køyrde førehandssyninga." #: ../bleachbit/GuiBasic.py:125 msgid "Are you sure you want to permanently delete these files?" msgstr "Er du sikker på at du vil slette disse filane permanent?" #: ../bleachbit/GuiBasic.py:162 #, python-format msgid "" "Because you are running as root, please manually open this link in a web " "browser:\n" "%s" msgstr "" "Før du køyrer som rotbrukar, må du opna denne lenka manuelt i ein " "nettlesar:\n" "%s" #. TRANSLATORS: %s expands to bleachbit.sourceforge.net or similar #: ../bleachbit/GuiBasic.py:174 #, python-format msgid "Open web browser to %s?" msgstr "Vil du opne %s i nettlesaren?" #: ../bleachbit/GuiPreferences.py:55 ../bleachbit/GUI.py:633 msgid "Preferences" msgstr "Innstillingar" #: ../bleachbit/GuiPreferences.py:61 msgid "General" msgstr "Generelt" #: ../bleachbit/GuiPreferences.py:64 msgid "Drives" msgstr "Stasjonar" #: ../bleachbit/GuiPreferences.py:67 msgid "Languages" msgstr "Språk" #: ../bleachbit/GuiPreferences.py:69 msgid "Whitelist" msgstr "Unntaksliste" #: ../bleachbit/GuiPreferences.py:114 msgid "Check periodically for software updates via the Internet" msgstr "Sjå regelmessig etter oppdateringar over verdsveven" #: ../bleachbit/GuiPreferences.py:119 msgid "" "If an update is found, you will be given the option to view information " "about it. Then, you may manually download and install the update." msgstr "" "Viss ei oppdatering blir funnen, vil du få valet om å sjå informasjon om " "henne. Så kan du laste ned og installere oppdateringa manuelt." #: ../bleachbit/GuiPreferences.py:125 msgid "Check for new beta releases" msgstr "Sjå etter nye betautgåver" #: ../bleachbit/GuiPreferences.py:134 msgid "Download and update cleaners from community (winapp2.ini)" msgstr "Last ned og oppdater reinskarar frå nettsamfunnet (winapp2.ini)" #. TRANSLATORS: This means to hide cleaners which would do #. nothing. For example, if Firefox were never used on #. this system, this option would hide Firefox to simplify #. the list of cleaners. #: ../bleachbit/GuiPreferences.py:148 msgid "Hide irrelevant cleaners" msgstr "Skjul uaktuelle renseprosesser" #. TRANSLATORS: Overwriting is the same as shredding. It is a way #. to prevent recovery of the data. You could also translate #. 'Shred files to prevent recovery.' #: ../bleachbit/GuiPreferences.py:156 msgid "Overwrite files to hide contents" msgstr "Overskriv filar for å skjule innhaldet" #: ../bleachbit/GuiPreferences.py:160 msgid "" "Overwriting is ineffective on some file systems and with certain BleachBit " "operations. Overwriting is significantly slower." msgstr "" "I nokre filsystem og med enkelte BleachBit-handlingar er det lite effektivt " "å skriva over. Det er mykje tregare å skriva over." #: ../bleachbit/GuiPreferences.py:163 msgid "Start BleachBit with computer" msgstr "Start BleachBit med maskina." #: ../bleachbit/GuiPreferences.py:169 msgid "Exit after cleaning" msgstr "Avslutt etter reinsking" #: ../bleachbit/GuiPreferences.py:175 msgid "Confirm before delete" msgstr "Bekreft sletting" #: ../bleachbit/GuiPreferences.py:188 ../bleachbit/GuiPreferences.py:319 #: ../bleachbit/GuiPreferences.py:360 ../bleachbit/GUI.py:540 msgid "Choose a folder" msgstr "" #: ../bleachbit/GuiPreferences.py:212 msgid "" "Choose a writable folder for each drive for which to overwrite free space." msgstr "" #. TRANSLATORS: In the preferences dialog, this button adds a path to #. the list of paths #: ../bleachbit/GuiPreferences.py:234 msgctxt "button" msgid "Add" msgstr "" #. TRANSLATORS: In the preferences dialog, this button removes a path #. from the list of paths #: ../bleachbit/GuiPreferences.py:238 ../bleachbit/GuiPreferences.py:451 msgctxt "button" msgid "Remove" msgstr "" #: ../bleachbit/GuiPreferences.py:263 msgid "All languages will be deleted except those checked." msgstr "" #: ../bleachbit/GuiPreferences.py:281 msgid "Preserve" msgstr "" #: ../bleachbit/GuiPreferences.py:285 msgid "Code" msgstr "" #: ../bleachbit/GuiPreferences.py:289 ../bleachbit/GUI.py:130 msgid "Name" msgstr "" #: ../bleachbit/GuiPreferences.py:306 ../bleachbit/GuiPreferences.py:347 msgid "Choose a file" msgstr "" #: ../bleachbit/GuiPreferences.py:313 ../bleachbit/GuiPreferences.py:354 #: ../bleachbit/GuiPreferences.py:398 msgid "File" msgstr "" #: ../bleachbit/GuiPreferences.py:327 ../bleachbit/GuiPreferences.py:368 #: ../bleachbit/GuiPreferences.py:400 msgid "Folder" msgstr "" #: ../bleachbit/GuiPreferences.py:410 msgid "Theses paths will not be deleted or modified." msgstr "" #: ../bleachbit/GuiPreferences.py:413 msgid "These locations can be selected for deletion." msgstr "" #: ../bleachbit/GuiPreferences.py:421 msgid "Type" msgstr "" #. TRANSLATORS: In the tree view "Path" is used generically to refer to a #. file, a folder, or a pattern describing either #: ../bleachbit/GuiPreferences.py:427 msgid "Path" msgstr "" #: ../bleachbit/GuiPreferences.py:439 msgctxt "button" msgid "Add file" msgstr "" #: ../bleachbit/GuiPreferences.py:445 msgctxt "button" msgid "Add folder" msgstr "" #: ../bleachbit/GUI.py:138 msgid "Active" msgstr "" #. TRANSLATORS: %(cleaner) may be Firefox, System, etc. #. %(option) may be cache, logs, cookies, etc. #. %(warning) may be 'This option is really slow' #: ../bleachbit/GUI.py:169 #, python-format msgid "" "Warning regarding %(cleaner)s - %(option)s:\n" "\n" "%(warning)s" msgstr "" #: ../bleachbit/GUI.py:336 msgid "You must select an operation" msgstr "" #: ../bleachbit/GUI.py:357 ../bleachbit/GUI.py:379 msgid "Done." msgstr "" #: ../bleachbit/GUI.py:392 msgid "Program to clean unnecessary files" msgstr "" #: ../bleachbit/GUI.py:398 msgid "" "GNU General Public License version 3 or later.\n" "See http://www.gnu.org/licenses/gpl-3.0.txt" msgstr "" #. TRANSLATORS: Maintain the names of translators here. #. Launchpad does this automatically for translations #. typed in Launchpad. This is a special string shown #. in the 'About' box. #: ../bleachbit/GUI.py:404 msgid "translator-credits" msgstr "" "Launchpad Contributions:\n" " Alexander Mackinnon Jansen https://launchpad.net/~alexander-jansen" #: ../bleachbit/GUI.py:416 msgid "System information" msgstr "" #: ../bleachbit/GUI.py:489 msgid "Choose files to shred" msgstr "" #: ../bleachbit/GUI.py:492 msgid "Choose folder to shred" msgstr "" #. TRANSLATORS: this is the context menu #: ../bleachbit/GUI.py:573 msgid "Preview" msgstr "" #: ../bleachbit/GUI.py:621 msgid "_Shred Files" msgstr "" #: ../bleachbit/GUI.py:623 msgid "Sh_red Folders" msgstr "" #: ../bleachbit/GUI.py:625 msgid "_Wipe Free Space" msgstr "" #: ../bleachbit/GUI.py:627 msgid "S_hred Settings and Quit" msgstr "" #: ../bleachbit/GUI.py:629 msgid "_Quit" msgstr "" #: ../bleachbit/GUI.py:631 msgid "_File" msgstr "" #: ../bleachbit/GUI.py:634 msgid "_Edit" msgstr "" #: ../bleachbit/GUI.py:635 msgid "Help Contents" msgstr "" #: ../bleachbit/GUI.py:638 msgid "_Release Notes" msgstr "" #: ../bleachbit/GUI.py:641 msgid "_System Information" msgstr "" #: ../bleachbit/GUI.py:644 msgid "_About" msgstr "" #: ../bleachbit/GUI.py:645 msgid "_Help" msgstr "" #: ../bleachbit/GUI.py:670 msgctxt "button" msgid "Preview" msgstr "" #: ../bleachbit/GUI.py:675 msgid "Preview files in the selected operations (without deleting any files)" msgstr "" #: ../bleachbit/GUI.py:685 msgctxt "button" msgid "Clean" msgstr "" #: ../bleachbit/GUI.py:689 msgid "Clean files in the selected operations" msgstr "" #: ../bleachbit/GUI.py:778 msgid "Error when checking for updates: " msgstr "" #: ../bleachbit/GUI.py:808 msgid "" "Error loading the SQLite module: the antivirus software may be blocking it." msgstr "" #: ../bleachbit/GUI.py:811 msgid "" "You are running BleachBit with administrative privileges for cleaning shared " "parts of the system, and references to the user profile folder will clean " "only the root account." msgstr "" #: ../bleachbit/RecognizeCleanerML.py:57 msgid "Security warning" msgstr "" #: ../bleachbit/RecognizeCleanerML.py:70 msgid "" "These cleaner definitions are new or have changed. Malicious definitions can " "damage your system. If you do not trust these changes, delete the files or " "quit." msgstr "" #: ../bleachbit/RecognizeCleanerML.py:85 msgctxt "column_label" msgid "Delete" msgstr "" #: ../bleachbit/RecognizeCleanerML.py:90 msgctxt "column_label" msgid "Filename" msgstr "" #: ../bleachbit/Unix.py:382 ../bleachbit/Unix.py:412 ../bleachbit/Unix.py:595 #, python-format msgid "Executable not found: %s" msgstr "" #. TRANSLATORS: %s expands to a name such as 'Firefox' or 'System'. #: ../bleachbit/Unix.py:592 ../bleachbit/Worker.py:128 #, python-format msgid "" "%s cannot be cleaned because it is currently running. Close it, and try " "again." msgstr "" #: ../bleachbit/Update.py:72 msgid "New winapp2.ini was downloaded." msgstr "" #: ../bleachbit/Update.py:117 msgid "Update BleachBit" msgstr "" #: ../bleachbit/Update.py:122 msgid "A new version is available." msgstr "" #. TRANSLATORS: %s expands to version such as '0.8.4' or '0.8.5beta' or #. similar #: ../bleachbit/Update.py:131 #, python-format msgid "Update to version %s" msgstr "" #. TRANSLATORS: This is cleaner name for cleaners imported from winapp2.ini #: ../bleachbit/Winapp.py:44 msgid "Applications" msgstr "" #. TRANSLATORS: This is cleaner name for cleaners imported #. from winapp2.ini #: ../bleachbit/Winapp.py:47 msgid "Internet" msgstr "" #. TRANSLATORS: This is cleaner name for cleaners imported #. from winapp2.ini #: ../bleachbit/Winapp.py:50 msgid "Multimedia" msgstr "" #. TRANSLATORS: This is cleaner name for cleaners imported #. from winapp2.ini #: ../bleachbit/Winapp.py:53 msgid "Utilities" msgstr "" #: ../bleachbit/Winapp.py:68 msgid "Games" msgstr "" #: ../bleachbit/Winapp.py:155 msgid "Imported from winapp2.ini" msgstr "" #. TRANSLATORS: This indicates an error. The special keyword #. %(operation)s will be replaced by 'firefox' or 'opera' or #. some other cleaner ID. The special keyword %(msg)s will be #. replaced by a message such as 'Permission denied.' #: ../bleachbit/Worker.py:71 #, python-format msgid "Exception while running operation '%(operation)s': '%(msg)s'" msgstr "" #. TRANSLATORS: 'free' means 'unallocated' #: ../bleachbit/Worker.py:167 msgid "Please wait. Wiping free disk space." msgstr "" #. TRANSLATORS: %s is replaced with Firefox, System, etc. #: ../bleachbit/Worker.py:169 ../bleachbit/Worker.py:308 #, python-format msgid "Please wait. Cleaning %s." msgstr "" #: ../bleachbit/Worker.py:184 msgid "Please wait. Wiping file system metadata." msgstr "" #: ../bleachbit/Worker.py:187 msgid "Please wait. Cleaning up after wiping file system metadata." msgstr "" #: ../bleachbit/Worker.py:190 #, python-format msgid "About %d minute remaining." msgid_plural "About %d minutes remaining." msgstr[0] "" msgstr[1] "" #. TRANSLATORS: This refers to disk space that was #. really recovered (in other words, not a preview) #: ../bleachbit/Worker.py:247 #, python-format msgid "Disk space recovered: %s" msgstr "" #. TRANSLATORS: This refers to a preview (no real #. changes were made yet) #: ../bleachbit/Worker.py:251 #, python-format msgid "Disk space to be recovered: %s" msgstr "" #. TRANSLATORS: This refers to the number of files really #. deleted (in other words, not a preview). #: ../bleachbit/Worker.py:256 #, python-format msgid "Files deleted: %d" msgstr "" #. TRANSLATORS: This refers to the number of files that #. would be deleted (in other words, simply a preview). #: ../bleachbit/Worker.py:260 #, python-format msgid "Files to be deleted: %d" msgstr "" #: ../bleachbit/Worker.py:263 #, python-format msgid "Special operations: %d" msgstr "" #: ../bleachbit/Worker.py:266 #, python-format msgid "Errors: %d" msgstr "" #. TRANSLATORS: The "deep scan" feature searches over broad #. areas of the file system such as the user's whole home directory #. or all the system executables. #: ../bleachbit/Worker.py:281 msgid "Please wait. Running deep scan." msgstr "" #. TRANSLATORS: %s is replaced with Firefox, System, etc. #: ../bleachbit/Worker.py:311 #, python-format msgid "Please wait. Previewing %s." msgstr "" bleachbit-2.0/po/ia.po0000644000175000017500000013166413245436307012763 0ustar hlehle# Interlingua translation for bleachbit # Copyright (c) 2011 Rosetta Contributors and Canonical Ltd 2011 # This file is distributed under the same license as the bleachbit package. # FIRST AUTHOR , 2011. # msgid "" msgstr "" "Project-Id-Version: bleachbit\n" "Report-Msgid-Bugs-To: FULL NAME \n" "POT-Creation-Date: 2015-12-15 17:12-0700\n" "PO-Revision-Date: 2015-12-20 11:41+0000\n" "Last-Translator: karm \n" "Language-Team: Interlingua \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n != 1;\n" "X-Launchpad-Export-Date: 2015-12-20 16:48+0000\n" "X-Generator: Launchpad (build 17865)\n" #: ../cleaners/mc.xml ../cleaners/tortoisesvn.xml ../cleaners/vim.xml #: ../cleaners/safari.xml ../cleaners/links2.xml ../cleaners/seamonkey.xml #: ../cleaners/realplayer.xml ../cleaners/windows_defender.xml #: ../cleaners/d4x.xml ../cleaners/sqlite3.xml #: ../cleaners/internet_explorer.xml ../cleaners/libreoffice.xml #: ../cleaners/easytag.xml ../cleaners/bash.xml ../cleaners/nautilus.xml #: ../cleaners/octave.xml ../cleaners/elinks.xml ../cleaners/chromium.xml #: ../cleaners/google_chrome.xml msgid "History" msgstr "Historia" #: ../cleaners/mc.xml ../cleaners/tortoisesvn.xml ../cleaners/links2.xml #: ../cleaners/realplayer.xml ../cleaners/d4x.xml ../cleaners/libreoffice.xml #: ../cleaners/easytag.xml ../cleaners/nautilus.xml ../cleaners/gnome.xml #: ../bleachbit/Cleaner.py:351 ../bleachbit/Cleaner.py:425 #: ../bleachbit/Cleaner.py:434 msgid "Delete the usage history" msgstr "Deler le historia de uso" #: ../cleaners/gpodder.xml ../cleaners/hippo_opensim_viewer.xml #: ../cleaners/thumbnails.xml ../cleaners/safari.xml ../cleaners/emesene.xml #: ../cleaners/liferea.xml ../cleaners/seamonkey.xml ../cleaners/vuze.xml #: ../cleaners/yahoo_messenger.xml ../cleaners/pidgin.xml #: ../cleaners/adobe_reader.xml ../cleaners/evolution.xml #: ../cleaners/tremulous.xml ../cleaners/libreoffice.xml ../cleaners/xine.xml #: ../cleaners/nexuiz.xml ../cleaners/exaile.xml ../cleaners/opera.xml #: ../cleaners/amsn.xml ../cleaners/gftp.xml ../cleaners/miro.xml #: ../cleaners/beagle.xml ../cleaners/kde.xml ../cleaners/epiphany.xml #: ../cleaners/flash.xml ../cleaners/secondlife_viewer.xml #: ../cleaners/java.xml ../cleaners/chromium.xml ../cleaners/audacious.xml #: ../cleaners/rhythmbox.xml ../cleaners/google_chrome.xml #: ../cleaners/thunderbird.xml ../bleachbit/Cleaner.py:194 #: ../bleachbit/Cleaner.py:372 ../bleachbit/Cleaner.py:457 msgid "Cache" msgstr "Cache" #: ../cleaners/gpodder.xml ../cleaners/yum.xml #: ../cleaners/hippo_opensim_viewer.xml ../cleaners/thumbnails.xml #: ../cleaners/windows_explorer.xml ../cleaners/liferea.xml #: ../cleaners/vuze.xml ../cleaners/yahoo_messenger.xml ../cleaners/pidgin.xml #: ../cleaners/adobe_reader.xml ../cleaners/evolution.xml #: ../cleaners/libreoffice.xml ../cleaners/apt.xml ../cleaners/xine.xml #: ../cleaners/nexuiz.xml ../cleaners/exaile.xml ../cleaners/amsn.xml #: ../cleaners/gftp.xml ../cleaners/miro.xml ../cleaners/beagle.xml #: ../cleaners/kde.xml ../cleaners/flash.xml ../cleaners/secondlife_viewer.xml #: ../cleaners/java.xml ../cleaners/audacious.xml ../cleaners/rhythmbox.xml #: ../bleachbit/Cleaner.py:372 ../bleachbit/Cleaner.py:457 #: ../bleachbit/Cleaner.py:491 ../bleachbit/Cleaner.py:493 msgid "Delete the cache" msgstr "Deler le cache" #. TRANSLATORS: Vacuum is a verb. The term is jargon #. from the SQLite database. Microsoft Access uses #. the term 'Compact Database' (which you may translate #. instead). Another synonym is 'defragment.' #: ../cleaners/gpodder.xml ../cleaners/yum.xml ../cleaners/safari.xml #: ../cleaners/liferea.xml ../cleaners/chromium.xml #: ../cleaners/google_chrome.xml ../cleaners/thunderbird.xml #: ../bleachbit/Cleaner.py:216 ../bleachbit/Cleaner.py:362 #: ../bleachbit/Action.py:365 msgid "Vacuum" msgstr "Vacuo" #: ../cleaners/gpodder.xml ../cleaners/yum.xml ../cleaners/safari.xml #: ../cleaners/liferea.xml ../cleaners/chromium.xml #: ../cleaners/google_chrome.xml ../cleaners/thunderbird.xml #: ../bleachbit/Cleaner.py:217 msgid "" "Clean database fragmentation to reduce space and improve speed without " "removing any data" msgstr "" "Nettar le fragmentation del base de datos pro reducer le spatio e meliorar " "le velocitate sin remover ulle datos" #: ../cleaners/yum.xml ../cleaners/apt.xml msgid "Package manager" msgstr "Gerente de pacchetto" #: ../cleaners/warzone2100.xml ../cleaners/hippo_opensim_viewer.xml #: ../cleaners/gl-117.xml ../cleaners/tremulous.xml ../cleaners/nexuiz.xml #: ../cleaners/secondlife_viewer.xml msgid "Game" msgstr "Joco" #: ../cleaners/warzone2100.xml ../cleaners/hippo_opensim_viewer.xml #: ../cleaners/teamviewer.xml ../cleaners/realplayer.xml ../cleaners/vuze.xml #: ../cleaners/yahoo_messenger.xml ../cleaners/amule.xml #: ../cleaners/easytag.xml ../cleaners/exaile.xml ../cleaners/screenlets.xml #: ../cleaners/gftp.xml ../cleaners/miro.xml ../cleaners/audacious.xml #: ../bleachbit/Cleaner.py:488 msgid "Logs" msgstr "Registros" #: ../cleaners/warzone2100.xml ../cleaners/hippo_opensim_viewer.xml #: ../cleaners/teamviewer.xml ../cleaners/realplayer.xml ../cleaners/vuze.xml #: ../cleaners/yahoo_messenger.xml ../cleaners/amule.xml #: ../cleaners/exaile.xml ../cleaners/screenlets.xml ../cleaners/gftp.xml #: ../cleaners/miro.xml ../cleaners/audacious.xml ../bleachbit/Cleaner.py:488 msgid "Delete the logs" msgstr "Deler le registros" #: ../cleaners/thumbnails.xml ../cleaners/windows_explorer.xml msgid "Thumbnails" msgstr "Miniaturas" #: ../cleaners/thumbnails.xml msgid "Icons for files on the system" msgstr "Icones pro le files sur le systema" #: ../cleaners/vim.xml ../cleaners/gedit.xml msgid "Editor" msgstr "Editor" #: ../cleaners/vim.xml msgid "" "Delete ~/.viminfo which includes file history, command history, and buffers" msgstr "" "Cancellar ~/.viminfo que include le historia de file, le historia de " "commando, e le memorias tampon" #: ../cleaners/filezilla.xml ../cleaners/transmission.xml ../cleaners/vuze.xml #: ../cleaners/amule.xml ../cleaners/gftp.xml msgid "File transfer client" msgstr "Cliente de transferimento de file" #: ../cleaners/filezilla.xml ../cleaners/paint.xml #: ../cleaners/windows_media_player.xml ../cleaners/windows_explorer.xml #: ../cleaners/teamviewer.xml ../cleaners/microsoft_office.xml #: ../cleaners/vlc.xml ../cleaners/adobe_reader.xml ../cleaners/winamp.xml #: ../cleaners/winzip.xml ../cleaners/winrar.xml ../cleaners/audacious.xml #: ../cleaners/wordpad.xml ../bleachbit/Cleaner.py:373 msgid "Most recently used" msgstr "Usate plus recentemente" #: ../cleaners/filezilla.xml ../cleaners/windows_explorer.xml #: ../cleaners/gwenview.xml ../cleaners/adobe_reader.xml ../cleaners/gedit.xml #: ../cleaners/kde.xml ../cleaners/audacious.xml ../bleachbit/Cleaner.py:374 #: ../bleachbit/Cleaner.py:471 msgid "Delete the list of recently used documents" msgstr "Cancellar le lista del documentos usate recentemente" #: ../cleaners/skype.xml ../cleaners/xchat.xml ../cleaners/emesene.xml #: ../cleaners/yahoo_messenger.xml ../cleaners/pidgin.xml ../cleaners/amsn.xml msgid "Chat client" msgstr "Cliente de chat" #: ../cleaners/skype.xml ../cleaners/xchat.xml ../cleaners/emesene.xml #: ../cleaners/seamonkey.xml ../cleaners/yahoo_messenger.xml #: ../cleaners/pidgin.xml ../cleaners/amsn.xml msgid "Chat logs" msgstr "Registros de chat" #: ../cleaners/skype.xml ../cleaners/xchat.xml ../cleaners/emesene.xml #: ../cleaners/seamonkey.xml ../cleaners/yahoo_messenger.xml #: ../cleaners/pidgin.xml ../cleaners/amsn.xml msgid "Delete the chat logs" msgstr "Cancellar le registros de chat" #: ../cleaners/skype.xml msgid "Installers" msgstr "Installatores" #: ../cleaners/skype.xml msgid "Delete cached patches and installers" msgstr "Cancellar le patches tampon e le installatores" #: ../cleaners/safari.xml ../cleaners/links2.xml ../cleaners/seamonkey.xml #: ../cleaners/konqueror.xml ../cleaners/internet_explorer.xml #: ../cleaners/opera.xml ../cleaners/epiphany.xml ../cleaners/elinks.xml #: ../cleaners/chromium.xml ../cleaners/google_chrome.xml #: ../bleachbit/Cleaner.py:228 msgid "Web browser" msgstr "Navigator web" #: ../cleaners/safari.xml ../cleaners/seamonkey.xml ../cleaners/opera.xml #: ../cleaners/epiphany.xml ../cleaners/chromium.xml #: ../cleaners/google_chrome.xml ../cleaners/thunderbird.xml #: ../bleachbit/Cleaner.py:195 msgid "Delete the web cache, which reduces time to display revisited pages" msgstr "" "Cancellar le memoria tampon del Web, que reduce le tempore pro monstrar le " "paginas revisitate" #: ../cleaners/safari.xml ../cleaners/liferea.xml ../cleaners/seamonkey.xml #: ../cleaners/realplayer.xml ../cleaners/konqueror.xml #: ../cleaners/internet_explorer.xml ../cleaners/opera.xml #: ../cleaners/epiphany.xml ../cleaners/flash.xml ../cleaners/silverlight.xml #: ../cleaners/chromium.xml ../cleaners/google_chrome.xml #: ../cleaners/thunderbird.xml ../bleachbit/Cleaner.py:196 msgid "Cookies" msgstr "Cookies" #: ../cleaners/safari.xml ../cleaners/liferea.xml ../cleaners/seamonkey.xml #: ../cleaners/realplayer.xml ../cleaners/konqueror.xml #: ../cleaners/internet_explorer.xml ../cleaners/opera.xml #: ../cleaners/epiphany.xml ../cleaners/flash.xml ../cleaners/silverlight.xml #: ../cleaners/chromium.xml ../cleaners/google_chrome.xml #: ../cleaners/thunderbird.xml ../bleachbit/Cleaner.py:197 msgid "" "Delete cookies, which contain information such as web site preferences, " "authentication, and tracking identification" msgstr "" "Cancellar le cookies, que contine information qual le preferentias de sito " "web, authentication, e identification de revision" #: ../cleaners/safari.xml ../cleaners/konqueror.xml #: ../cleaners/internet_explorer.xml ../cleaners/opera.xml #: ../bleachbit/Cleaner.py:215 msgid "List of visited web pages" msgstr "Lista del paginas web visitate" #. Torrent software can block a list of IP addresses, such as those that may belong to malware or anti-piracy organizations #: ../cleaners/transmission.xml msgid "Blocklists" msgstr "Listas de bloco" #: ../cleaners/transmission.xml ../cleaners/windows_defender.xml #: ../cleaners/beagle.xml ../cleaners/thunderbird.xml ../cleaners/deepscan.xml #: ../bleachbit/Cleaner.py:199 msgid "Delete the files" msgstr "Deler le files" #: ../cleaners/transmission.xml msgid "Blocklists will need update to work." msgstr "Listas de bloco" #: ../cleaners/transmission.xml msgid "Torrents" msgstr "Torrentes" #: ../cleaners/transmission.xml msgid "Delete the torrents (just the metadata but not the files described)" msgstr "" "Cancellar le torrents (solmente le metadatos e non le files describite)" #: ../cleaners/paint.xml ../cleaners/windows_media_player.xml #: ../cleaners/windows_explorer.xml ../cleaners/teamviewer.xml #: ../cleaners/microsoft_office.xml ../cleaners/vlc.xml ../cleaners/winamp.xml #: ../cleaners/winzip.xml ../cleaners/winrar.xml ../cleaners/wordpad.xml msgid "Delete the most recently used list" msgstr "Cancellar le lista usate plus recentemente" #: ../cleaners/emesene.xml msgid "Delete the avatars and emoticons cache" msgstr "Cancellar le memoria tampon del avatares del emoticones" #: ../cleaners/windows_media_player.xml ../cleaners/realplayer.xml #: ../cleaners/vlc.xml ../cleaners/winamp.xml msgid "Media player" msgstr "Reproductor de medios" #: ../cleaners/windows_explorer.xml ../cleaners/nautilus.xml msgid "File manager" msgstr "Gerente de file" #: ../cleaners/windows_explorer.xml ../cleaners/gwenview.xml #: ../cleaners/gedit.xml ../cleaners/kde.xml ../bleachbit/Cleaner.py:470 msgid "Recent documents list" msgstr "Lista de documentos recente" #. In Windows 'Run' is the dialog in the Start menu #. In GNOME 'Run' is the dialog shown when typing ALT+F2' #: ../cleaners/windows_explorer.xml ../cleaners/gnome.xml msgid "Run" msgstr "Facer fluer" #: ../cleaners/windows_explorer.xml ../cleaners/opera.xml #: ../cleaners/gnome.xml ../cleaners/google_toolbar.xml msgid "Search history" msgstr "Cercar in historia" #: ../cleaners/windows_explorer.xml ../cleaners/opera.xml #: ../cleaners/gnome.xml ../cleaners/google_toolbar.xml msgid "Delete the search history" msgstr "Deler le historia de cerca" #: ../cleaners/gl-117.xml ../cleaners/microsoft_office.xml #: ../cleaners/beagle.xml ../cleaners/secondlife_viewer.xml #: ../cleaners/x11.xml msgid "Debug logs" msgstr "Registros de correction" #: ../cleaners/gl-117.xml ../cleaners/microsoft_office.xml #: ../cleaners/easytag.xml ../cleaners/beagle.xml #: ../cleaners/secondlife_viewer.xml ../cleaners/x11.xml msgid "Delete the debug logs" msgstr "Cancellar le registros de correction" #: ../cleaners/google_earth.xml ../cleaners/winetricks.xml #: ../cleaners/vuze.xml ../cleaners/adobe_reader.xml ../cleaners/amule.xml #: ../cleaners/wine.xml ../cleaners/internet_explorer.xml ../cleaners/gimp.xml #: ../cleaners/kde.xml ../cleaners/deepscan.xml ../bleachbit/Cleaner.py:522 msgid "Temporary files" msgstr "Files temporari" #: ../cleaners/google_earth.xml ../cleaners/winetricks.xml #: ../cleaners/vuze.xml ../cleaners/adobe_reader.xml ../cleaners/amule.xml #: ../cleaners/wine.xml ../cleaners/internet_explorer.xml ../cleaners/gimp.xml #: ../cleaners/kde.xml ../cleaners/deepscan.xml ../bleachbit/Cleaner.py:522 msgid "Delete the temporary files" msgstr "Cancella le files temporari" #: ../cleaners/seamonkey.xml ../cleaners/opera.xml ../bleachbit/Cleaner.py:203 msgid "Download history" msgstr "Historia de discargas" #: ../cleaners/seamonkey.xml ../cleaners/opera.xml ../bleachbit/Cleaner.py:203 msgid "List of files downloaded" msgstr "Lista de files discargate" #: ../cleaners/seamonkey.xml msgid "Delete the list of visited web pages" msgstr "Cancellar le lista del paginas Web visitate" #: ../cleaners/vuze.xml ../cleaners/deepscan.xml ../bleachbit/Cleaner.py:192 msgid "Backup files" msgstr "Files copia de reserva" #: ../cleaners/vuze.xml ../cleaners/deepscan.xml ../bleachbit/Cleaner.py:193 msgid "Delete the backup files" msgstr "Cancellar le files copia de reserva" #: ../cleaners/konqueror.xml ../cleaners/opera.xml ../cleaners/chromium.xml msgid "Current session" msgstr "Session actual" #: ../cleaners/konqueror.xml ../cleaners/opera.xml ../cleaners/chromium.xml msgid "Delete the current session" msgstr "Cancellar le session actual" #: ../cleaners/konqueror.xml ../cleaners/opera.xml ../bleachbit/Cleaner.py:215 msgid "URL history" msgstr "Historia del URL" #: ../cleaners/microsoft_office.xml ../cleaners/libreoffice.xml #: ../bleachbit/Cleaner.py:377 msgid "Office suite" msgstr "Suite de applicationes de officio" #: ../cleaners/windows_defender.xml msgid "Anti-virus" msgstr "Contra-virus" #: ../cleaners/adobe_reader.xml msgid "Document viewer" msgstr "Visor de documento" #: ../cleaners/evolution.xml ../cleaners/thunderbird.xml msgid "Email client" msgstr "Cliente de e-Posta" #: ../cleaners/tremulous.xml msgid "Delete the list of game servers" msgstr "Deler le lista de servitores de joco" #: ../cleaners/sqlite3.xml ../cleaners/bash.xml ../cleaners/octave.xml msgid "Delete the command history" msgstr "Cancellar le historia de commando" #: ../cleaners/wine.xml msgid "Compatibility layer for Windows software" msgstr "Strato de compatibilitate pro le software Windows" #: ../cleaners/internet_explorer.xml ../cleaners/chromium.xml #: ../cleaners/google_chrome.xml ../bleachbit/Cleaner.py:204 msgid "Form history" msgstr "Historia de forma" #: ../cleaners/internet_explorer.xml ../bleachbit/Cleaner.py:205 msgid "A history of forms entered in web sites and in the Search bar" msgstr "" "Un historia de formas inserite in le sitos Web e in le barra de recerca" #. This software edits metadata tags, such as title and artist, in audio files #: ../cleaners/easytag.xml msgid "Audio files tagger" msgstr "Taggator de files audio" #: ../cleaners/apt.xml msgid "Delete obsolete files" msgstr "Cancellar le files obsolete" #: ../cleaners/apt.xml msgid "Package lists" msgstr "Listas de pacchetto" #: ../cleaners/xine.xml ../cleaners/miro.xml ../cleaners/flash.xml msgid "Multimedia viewer" msgstr "Visor multimedial" #: ../cleaners/recoll.xml ../cleaners/beagle.xml msgid "Search tool" msgstr "Instrumento de cerca" #: ../cleaners/recoll.xml ../cleaners/beagle.xml ../cleaners/thunderbird.xml msgid "Index" msgstr "Indice" #: ../cleaners/recoll.xml msgid "" "Delete the search index, a database of words and the files they contain" msgstr "" "Cancellar le indice de recerca, un base de datos de parolas e files a que " "illos contine" #: ../cleaners/gimp.xml msgid "Graphics editor" msgstr "Modificator de graphicos" #: ../cleaners/exaile.xml msgid "Downloaded podcasts" msgstr "Podcastes discargate" #: ../cleaners/exaile.xml msgid "Delete downloaded podcasts" msgstr "Podcastes discargate" #: ../cleaners/bash.xml msgid "Shell" msgstr "Shell" #. TRANSLATORS: DOM = Document Object Model. #: ../cleaners/opera.xml ../cleaners/chromium.xml #: ../cleaners/google_chrome.xml ../bleachbit/Cleaner.py:201 msgid "DOM Storage" msgstr "Magazin de DOM" #: ../cleaners/opera.xml ../cleaners/chromium.xml #: ../cleaners/google_chrome.xml ../bleachbit/Cleaner.py:201 msgid "Delete HTML5 cookies" msgstr "Deler cookies de HTML5" #: ../cleaners/opera.xml ../cleaners/epiphany.xml ../cleaners/chromium.xml #: ../cleaners/google_chrome.xml ../cleaners/thunderbird.xml #: ../bleachbit/Cleaner.py:210 msgid "Passwords" msgstr "Contrasignos" #: ../cleaners/opera.xml ../cleaners/epiphany.xml ../cleaners/chromium.xml #: ../cleaners/google_chrome.xml ../cleaners/thunderbird.xml #: ../bleachbit/Cleaner.py:211 msgid "" "A database of usernames and passwords as well as a list of sites that should " "not store passwords" msgstr "" "Un base de datos de nomines del usator e contrasignos assi como un lista de " "sitos que non debe immagazinar contrasignos" #: ../cleaners/opera.xml ../cleaners/epiphany.xml ../cleaners/chromium.xml #: ../cleaners/google_chrome.xml ../cleaners/thunderbird.xml #: ../bleachbit/Cleaner.py:213 msgid "This option will delete your saved passwords." msgstr "Iste option cancellara tu contrasignos salveguardate" #: ../cleaners/nautilus.xml msgid "Custom folders will be reset." msgstr "Le plicas personal essera restaurate." #: ../cleaners/gnome.xml ../cleaners/kde.xml msgid "Desktop environment" msgstr "Le plicas personal essera restaurate." #: ../cleaners/screenlets.xml msgid "Widgets for the desktop" msgstr "Widgets pro le scriptorio" #: ../cleaners/epiphany.xml msgid "Places" msgstr "Postos" #: ../cleaners/epiphany.xml msgid "" "A database of URLs including bookmarks, favicons, and a history of visited " "web sites" msgstr "" "Un base de datos de URLes includente le signa-libros, le favicones, e un " "historia del sitos web visitate" #: ../cleaners/epiphany.xml msgid "This option deletes all bookmarks." msgstr "Iste option cancella tote le signa-libros." #: ../cleaners/winrar.xml msgid "File archiver" msgstr "Archivator de file" #: ../cleaners/elinks.xml msgid "Delete the cookies, visited URLs, and search history" msgstr "Cancellar le cookies, le URLes visitate, e le historia de recerca" #: ../cleaners/chromium.xml ../cleaners/google_chrome.xml msgid "A history of forms entered in web sites" msgstr "Un historia de formularios inserite in le sitos" #: ../cleaners/chromium.xml ../cleaners/google_chrome.xml msgid "" "Delete the history which includes visited sites, downloads, and thumbnails" msgstr "Un historia de formularios inserite in le sitos" #: ../cleaners/chromium.xml ../cleaners/google_chrome.xml msgid "Search engines" msgstr "Motores de recerca" #. 'Factory' means a search engine that is installed by default 'from the factory,' but this is different than a 'default search engine' https://lists.launchpad.net/launchpad-translators/msg00283.html #: ../cleaners/chromium.xml ../cleaners/google_chrome.xml msgid "" "Reset the search engine usage history and delete non-factory search engines, " "some of which are added automatically" msgstr "" "Reinitialisar le historia de uso del motor de recerca e cancellar le motores " "de recerca non de fabrica, alicunos del qual es addite automaticamente" #: ../cleaners/audacious.xml msgid "Audio player" msgstr "Reproductor audio" #: ../cleaners/google_chrome.xml msgid "Session" msgstr "Session" #: ../cleaners/google_chrome.xml msgid "Delete the current and last sessions" msgstr "Cancellar le session actual e le ultime" #: ../cleaners/x11.xml msgid "Windowing system" msgstr "Systema de fenestras" #: ../cleaners/wordpad.xml msgid "Word processor" msgstr "Processor de parola" #: ../cleaners/deepscan.xml msgid "Deep scan" msgstr "Scansion profunde" #: ../cleaners/deepscan.xml msgid "Clean files widely scattered across the disk" msgstr "Nettar le files largemente dispersate trans le disco" #: ../cleaners/deepscan.xml msgid "Inspect the preview for any files you want to keep." msgstr "" "Inspicer le vista preliminar pro qualcunque files tu desira mantener." #: ../cleaners/deepscan.xml msgid "This option is slow." msgstr "Iste option es lente." #: ../bleachbit.desktop msgid "Unnecessary file cleaner" msgstr "Nettator de files non necessari" #: ../bleachbit.desktop msgid "Free space and maintain privacy" msgstr "Liberar spatio e mantener le confidentialitate" #. TRANSLATORS: This is the label in the log indicating was #. skipped because it matches the whitelist #: ../bleachbit/Command.py:44 msgid "Skip" msgstr "Saltar" #. TRANSLATORS: This is the label in the log indicating will be #. deleted (for previews) or was actually deleted #: ../bleachbit/Command.py:74 msgid "Delete" msgstr "Cancellar" #. TRANSLATORS: The file will be deleted when the #. system reboots #: ../bleachbit/Command.py:95 msgid "Mark for deletion" msgstr "Marcar pro le cancellation" #. TRANSLATORS: Parts of this file will be deleted #: ../bleachbit/Command.py:189 ../bleachbit/Command.py:223 #: ../bleachbit/Action.py:222 ../bleachbit/Action.py:235 #: ../bleachbit/Action.py:248 ../bleachbit/Action.py:261 #: ../bleachbit/Action.py:274 msgid "Clean file" msgstr "Nettar le file" #. TRANSLATORS: The file will be truncated to 0 bytes in length #: ../bleachbit/Command.py:265 msgid "Truncate" msgstr "Truncar" #: ../bleachbit/Command.py:308 msgid "Delete registry key" msgstr "Cancellar le clave de registro" #: ../bleachbit/Unix.py:348 ../bleachbit/Unix.py:378 ../bleachbit/Unix.py:568 #, python-format msgid "Executable not found: %s" msgstr "Executabile non trovate: %s" #. TRANSLATORS: %s expands to a name such as 'Firefox' or 'System'. #: ../bleachbit/Unix.py:565 ../bleachbit/Worker.py:141 #, python-format msgid "" "%s cannot be cleaned because it is currently running. Close it, and try " "again." msgstr "%s non pote esser nettate pois que illo es actualmente fluente." #: ../bleachbit/GuiBasic.py:112 msgid "Delete confirmation" msgstr "Cancellar le confirmation" #: ../bleachbit/GuiBasic.py:122 msgid "" "Are you sure you want to permanently delete files according to the selected " "operations? The actual files that will be deleted may have changed since " "you ran the preview." msgstr "" "Desira tu vermente deler permanentemente le files conformemente al " "operationes eligite? Le actual files que essera cancellate pote esser " "cambiate depost que tu ha facite fluer le vistas preliminar." #: ../bleachbit/GuiBasic.py:125 msgid "Are you sure you want to permanently delete these files?" msgstr "Desira tu vermente cancellar permanentemente iste files?" #: ../bleachbit/GuiBasic.py:162 #, python-format msgid "" "Because you are running as root, please manually open this link in a web " "browser:\n" "%s" msgstr "" "Pois que tu es agente qual radice, per favor aperi manualmente iste ligamine " "in un navigator web:\n" "%s" #. TRANSLATORS: %s expands to bleachbit.sourceforge.net or similar #: ../bleachbit/GuiBasic.py:174 #, python-format msgid "Open web browser to %s?" msgstr "Aperir le navigator del web a %s?" #. TRANSLATORS: This is cleaner name for cleaners imported from winapp2.ini #: ../bleachbit/Winapp.py:43 msgid "Applications" msgstr "Applicationes" #. TRANSLATORS: This is cleaner name for cleaners imported #. from winapp2.ini #: ../bleachbit/Winapp.py:46 msgid "Internet" msgstr "Internet" #. TRANSLATORS: This is cleaner name for cleaners imported #. from winapp2.ini #: ../bleachbit/Winapp.py:49 msgid "Multimedia" msgstr "Multimedios" #. TRANSLATORS: This is cleaner name for cleaners imported #. from winapp2.ini #: ../bleachbit/Winapp.py:52 msgid "Utilities" msgstr "Utilitates" #: ../bleachbit/Winapp.py:63 msgid "Games" msgstr "Jocos" #: ../bleachbit/Winapp.py:153 msgid "Imported from winapp2.ini" msgstr "Importate ab le winapp2.ini" #: ../bleachbit/Cleaner.py:199 msgid "Crash reports" msgstr "Reportos de disastro" #: ../bleachbit/Cleaner.py:206 msgid "Session restore" msgstr "Restauration de session" #: ../bleachbit/Cleaner.py:207 msgid "Loads the initial session after the browser closes or crashes" msgstr "Carga le session initial post que le navigator claude o aborta" #: ../bleachbit/Cleaner.py:209 msgid "Site preferences" msgstr "Preferentias de sito" #: ../bleachbit/Cleaner.py:209 msgid "Settings for individual sites" msgstr "Configurationes pro sitos individual" #. TRANSLATORS: desktop entries are .desktop files in Linux tha #. make up the application menu (the menu that shows BleachBit, #. Firefox, and others. The .desktop files also associate file #. types, so clicking on an .html file in Nautilus brings up #. Firefox. #. More information: #. http://standards.freedesktop.org/menu-spec/latest/index.html#introduction #: ../bleachbit/Cleaner.py:455 msgid "Broken desktop files" msgstr "Files de scriptorio rupte" #: ../bleachbit/Cleaner.py:456 msgid "Delete broken application menu entries and file associations" msgstr "" "Cancellar le entratas e le associationes de file del menu del application " "rupte." #. TRANSLATORS: Localizations are files supporting specific #. languages, so applications appear in Spanish, etc. #: ../bleachbit/Cleaner.py:460 msgid "Localizations" msgstr "Localisationes" #: ../bleachbit/Cleaner.py:461 msgid "Delete files for unwanted languages" msgstr "Cancellar files pro linguas non volite" #: ../bleachbit/Cleaner.py:463 msgid "Configure this option in the preferences." msgstr "Configurar iste option in le preferentias." #: ../bleachbit/Cleaner.py:469 msgid "Rotated logs" msgstr "Registros rotate" #: ../bleachbit/Cleaner.py:469 msgid "Delete old system logs" msgstr "Cancellar le vetule registros de systema" #: ../bleachbit/Cleaner.py:472 msgid "Trash" msgstr "Immunditia" #: ../bleachbit/Cleaner.py:472 msgid "Empty the trash" msgstr "Vacuar le immunditia" #: ../bleachbit/Cleaner.py:478 ../bleachbit/Cleaner.py:629 #: ../bleachbit/Worker.py:189 msgid "Memory" msgstr "Memoria" #. TRANSLATORS: 'free' means 'unallocated' #: ../bleachbit/Cleaner.py:480 msgid "Wipe the swap and free memory" msgstr "Nettar le spatio de excambio e le memoria libere" #: ../bleachbit/Cleaner.py:482 msgid "This option is experimental and may cause system problems." msgstr "Iste option es experimental e pote causar problemas de systema." #: ../bleachbit/Cleaner.py:490 msgid "Memory dump" msgstr "Discarga de memoria" #: ../bleachbit/Cleaner.py:490 msgid "Delete the file memory.dmp" msgstr "Cancellar le file memory.dmp" #. TRANSLATORS: Prefetch is Microsoft Windows jargon. #: ../bleachbit/Cleaner.py:493 msgid "Prefetch" msgstr "Prefetch" #: ../bleachbit/Cleaner.py:495 msgid "Recycle bin" msgstr "Receptaculo de recuperation" #: ../bleachbit/Cleaner.py:495 msgid "Empty the recycle bin" msgstr "Vacuar le receptaculo de recuperation" #. TRANSLATORS: 'Update' is a noun, and 'Update uninstallers' is an option to delete #. the uninstallers for software updates. #: ../bleachbit/Cleaner.py:498 msgid "Update uninstallers" msgstr "Ajornar le de-installatores" #: ../bleachbit/Cleaner.py:499 msgid "" "Delete uninstallers for Microsoft updates including hotfixes, service packs, " "and Internet Explorer updates" msgstr "" "Cancellar le de-installatores pro le ajornamentos de Microsoft includente le " "correctiones rapide, le pacchettos de servicio, e le ajornamentos de " "Internet Explorer" #: ../bleachbit/Cleaner.py:506 ../bleachbit/Cleaner.py:722 msgid "Clipboard" msgstr "Area de transferentia" #: ../bleachbit/Cleaner.py:507 msgid "" "The desktop environment's clipboard used for copy and paste operations" msgstr "" "Le tabula del fragmento del ambiente de scriptorio usate pro operationes de " "copiar e collar" #. TRANSLATORS: "Custom" is an option allowing the user to specify which #. files and folders will be erased. #: ../bleachbit/Cleaner.py:514 ../bleachbit/GuiPreferences.py:63 msgid "Custom" msgstr "Personalisate" #: ../bleachbit/Cleaner.py:515 msgid "Delete user-specified files and folders" msgstr "Cancellar le files e le plicas specificate per le usator" #. TRANSLATORS: 'free' means 'unallocated' #: ../bleachbit/Cleaner.py:517 msgid "Free disk space" msgstr "Spatio libere de disco" #. TRANSLATORS: 'free' means 'unallocated' #: ../bleachbit/Cleaner.py:519 msgid "Overwrite free disk space to hide deleted files" msgstr "" "Superscriber le spatio libere de disco pro occultar le files cancellate" #: ../bleachbit/Cleaner.py:520 msgid "This option is very slow." msgstr "Iste option es multo lente." #: ../bleachbit/Cleaner.py:524 msgid "The system in general" msgstr "Le systema in general" #: ../bleachbit/Cleaner.py:526 ../bleachbit/Cleaner.py:841 msgid "System" msgstr "Systema" #. TRANSLATORS: 'Free' means 'unallocated.' #. %s expands to a path such as C:\ or /tmp/ #: ../bleachbit/Cleaner.py:730 ../bleachbit/Cleaner.py:874 #, python-format msgid "Overwrite free disk space %s" msgstr "Superscriber le spatio libere del disco %s" #: ../bleachbit/GuiPreferences.py:55 ../bleachbit/GUI.py:702 msgid "Preferences" msgstr "Preferentias" #: ../bleachbit/GuiPreferences.py:61 msgid "General" msgstr "General" #: ../bleachbit/GuiPreferences.py:64 msgid "Drives" msgstr "Drives" #: ../bleachbit/GuiPreferences.py:67 msgid "Languages" msgstr "Linguas" #: ../bleachbit/GuiPreferences.py:69 msgid "Whitelist" msgstr "Lista blanc" #: ../bleachbit/GuiPreferences.py:114 msgid "Check periodically for software updates via the Internet" msgstr "Controlar periodicamente pro ajornamentos de software via Internet" #: ../bleachbit/GuiPreferences.py:119 msgid "" "If an update is found, you will be given the option to view information " "about it. Then, you may manually download and install the update." msgstr "" "Si es trovate un ajornamento, tu potera vider le informationes de illo. " "Alora, tu pote discargar manualmente e installar le ajornamento." #: ../bleachbit/GuiPreferences.py:125 msgid "Check for new beta releases" msgstr "Check for new beta releases" #: ../bleachbit/GuiPreferences.py:134 msgid "Download and update cleaners from community (winapp2.ini)" msgstr "Discargar e ajornar le nettatores ex le communitate (winapp2.ini)" #. TRANSLATORS: This means to hide cleaners which would do #. nothing. For example, if Firefox were never used on #. this system, this option would hide Firefox to simplify #. the list of cleaners. #: ../bleachbit/GuiPreferences.py:148 msgid "Hide irrelevant cleaners" msgstr "Celar le nettatores irrelevante" #. TRANSLATORS: Overwriting is the same as shredding. It is a way #. to prevent recovery of the data. You could also translate #. 'Shred files to prevent recovery.' #: ../bleachbit/GuiPreferences.py:156 msgid "Overwrite files to hide contents" msgstr "Superscriber le files pro occultar le contentos" #: ../bleachbit/GuiPreferences.py:160 msgid "" "Overwriting is ineffective on some file systems and with certain BleachBit " "operations. Overwriting is significantly slower." msgstr "" "Le super-scriptura es inefficace sur alicun systemas del files e con alicun " "operationes de BleachBit. Superscriber es significativemente plus lente." #: ../bleachbit/GuiPreferences.py:163 msgid "Start BleachBit with computer" msgstr "Lancear BleachBit con le computator" #: ../bleachbit/GuiPreferences.py:169 msgid "Exit after cleaning" msgstr "Exir post le cancellation" #: ../bleachbit/GuiPreferences.py:175 msgid "Confirm before delete" msgstr "Confirmar ante que cancellar" #: ../bleachbit/GuiPreferences.py:182 msgid "Use IEC sizes (1 KiB = 1024 bytes) instead of SI (1 kB = 1000 bytes)" msgstr "" "Usa le unitates de mesura del IEC (1 KiB = 1024 bytes) in vice del SI (1 kB " "= 1000 bytes)" #: ../bleachbit/GuiPreferences.py:193 ../bleachbit/GuiPreferences.py:322 #: ../bleachbit/GuiPreferences.py:363 ../bleachbit/GUI.py:588 msgid "Choose a folder" msgstr "Eliger un plica" #: ../bleachbit/GuiPreferences.py:217 msgid "" "Choose a writable folder for each drive for which to overwrite free space." msgstr "" "Eliger un plica scribibile pro cata drive pro le qual superscriber le spatio " "libere." #. TRANSLATORS: In the preferences dialog, this button adds a path to #. the list of paths #: ../bleachbit/GuiPreferences.py:239 msgctxt "button" msgid "Add" msgstr "Adder" #. TRANSLATORS: In the preferences dialog, this button removes a path #. from the list of paths #: ../bleachbit/GuiPreferences.py:243 ../bleachbit/GuiPreferences.py:454 msgctxt "button" msgid "Remove" msgstr "Remover" #: ../bleachbit/GuiPreferences.py:268 msgid "All languages will be deleted except those checked." msgstr "Tote le linguas essera cancellate excepte illos marcate." #: ../bleachbit/GuiPreferences.py:284 msgid "Preserve" msgstr "Preservar" #: ../bleachbit/GuiPreferences.py:288 msgid "Code" msgstr "Codice" #: ../bleachbit/GuiPreferences.py:292 ../bleachbit/GUI.py:131 msgid "Name" msgstr "Nomine" #: ../bleachbit/GuiPreferences.py:309 ../bleachbit/GuiPreferences.py:350 msgid "Choose a file" msgstr "Seliger un file" #: ../bleachbit/GuiPreferences.py:316 ../bleachbit/GuiPreferences.py:357 #: ../bleachbit/GuiPreferences.py:401 msgid "File" msgstr "File" #: ../bleachbit/GuiPreferences.py:330 ../bleachbit/GuiPreferences.py:371 #: ../bleachbit/GuiPreferences.py:403 msgid "Folder" msgstr "Plica" #: ../bleachbit/GuiPreferences.py:413 msgid "Theses paths will not be deleted or modified." msgstr "Iste percursos non essera cancellate o modificate." #: ../bleachbit/GuiPreferences.py:416 msgid "These locations can be selected for deletion." msgstr "Iste locationes pote ser eligite pro le cancellation." #: ../bleachbit/GuiPreferences.py:424 msgid "Type" msgstr "Typo" #. TRANSLATORS: In the tree view "Path" is used generically to refer to a #. file, a folder, or a pattern describing either #: ../bleachbit/GuiPreferences.py:430 msgid "Path" msgstr "Percurso" #: ../bleachbit/GuiPreferences.py:442 msgctxt "button" msgid "Add file" msgstr "Adder un file" #: ../bleachbit/GuiPreferences.py:448 msgctxt "button" msgid "Add folder" msgstr "Adder un plica" #: ../bleachbit/RecognizeCleanerML.py:57 msgid "Security warning" msgstr "Advertimento de securitate" #: ../bleachbit/RecognizeCleanerML.py:70 msgid "" "These cleaner definitions are new or have changed. Malicious definitions can " "damage your system. If you do not trust these changes, delete the files or " "quit." msgstr "" "Iste definitiones de dismaculator es nove o ha essite modificate. Le " "definitiones malitiose pote damnificar tu systema. Si tu non ha fiducia in " "iste cambios, cancella le files o claude." #: ../bleachbit/RecognizeCleanerML.py:85 msgctxt "column_label" msgid "Delete" msgstr "Cancellar" #: ../bleachbit/RecognizeCleanerML.py:90 msgctxt "column_label" msgid "Filename" msgstr "Nomine de file" #. TRANSLATORS: This indicates an error. The special keyword #. %(operation)s will be replaced by 'firefox' or 'opera' or #. some other cleaner ID. The special keyword %(msg)s will be #. replaced by a message such as 'Permission denied.' #: ../bleachbit/Worker.py:74 #, python-format msgid "Exception while running operation '%(operation)s': '%(msg)s'" msgstr "" "Exception durante le operation de functionamento '%(operation)s': '%(msg)s'" #. TRANSLATORS: 'free' means 'unallocated' #: ../bleachbit/Worker.py:187 msgid "Please wait. Wiping free disk space." msgstr "Attende per favor. Nettation del spatio libere del disco." #. TRANSLATORS: %s is replaced with Firefox, System, etc. #: ../bleachbit/Worker.py:189 ../bleachbit/Worker.py:329 #, python-format msgid "Please wait. Cleaning %s." msgstr "Attende per favor. Nettation de %s." #: ../bleachbit/Worker.py:204 msgid "Please wait. Wiping file system metadata." msgstr "Attende per favor. Cancellation del metadatos de systema de files." #: ../bleachbit/Worker.py:207 msgid "Please wait. Cleaning up after wiping file system metadata." msgstr "" "Attende per favor. Nettation post le cancellation del metadatos de systema " "de files." #: ../bleachbit/Worker.py:210 #, python-format msgid "About %d minute remaining." msgid_plural "About %d minutes remaining." msgstr[0] "Circa %d minuta restante." msgstr[1] "Circa %d minutas restante." #. TRANSLATORS: This refers to disk space that was #. really recovered (in other words, not a preview) #: ../bleachbit/Worker.py:268 #, python-format msgid "Disk space recovered: %s" msgstr "Spatio de disco recuperate: %s" #. TRANSLATORS: This refers to a preview (no real #. changes were made yet) #: ../bleachbit/Worker.py:272 #, python-format msgid "Disk space to be recovered: %s" msgstr "Spatio de disco a recuperar: %s" #. TRANSLATORS: This refers to the number of files really #. deleted (in other words, not a preview). #: ../bleachbit/Worker.py:277 #, python-format msgid "Files deleted: %d" msgstr "Files cancellate: %d" #. TRANSLATORS: This refers to the number of files that #. would be deleted (in other words, simply a preview). #: ../bleachbit/Worker.py:281 #, python-format msgid "Files to be deleted: %d" msgstr "Files a cancellar: %d" #: ../bleachbit/Worker.py:284 #, python-format msgid "Special operations: %d" msgstr "Operationes special: %d" #: ../bleachbit/Worker.py:287 #, python-format msgid "Errors: %d" msgstr "Errores: %d" #. TRANSLATORS: The "deep scan" feature searches over broad #. areas of the file system such as the user's whole home directory #. or all the system executables. #: ../bleachbit/Worker.py:303 msgid "Please wait. Running deep scan." msgstr "Attende per favor. Execution del scansion profunde." #. TRANSLATORS: %s is replaced with Firefox, System, etc. #: ../bleachbit/Worker.py:332 #, python-format msgid "Please wait. Previewing %s." msgstr "Attende per favor. Vision preliminar de %s." #: ../bleachbit/Update.py:77 msgid "New winapp2.ini was downloaded." msgstr "Un nove winapp2.ini ha essite discargate" #: ../bleachbit/Update.py:123 msgid "Update BleachBit" msgstr "Ajornar BleachBit" #: ../bleachbit/Update.py:128 msgid "A new version is available." msgstr "Un nove version es disponibile." #. TRANSLATORS: %s expands to version such as '0.8.4' or '0.8.5beta' or #. similar #: ../bleachbit/Update.py:137 #, python-format msgid "Update to version %s" msgstr "Ajornar al version %s" #: ../bleachbit/Update.py:163 #, python-format msgid "" "Error when opening a network connection to %s to check for updates. Please " "verify the network is working." msgstr "" "Error in le apertura de un connexiones de rete a %s pro controlar le " "ajornamentos. Per favor verificar que le rete es functionante." #: ../bleachbit/CLI.py:106 #, python-format msgid "not a valid cleaner: %s" msgstr "non un nettator valide: %s" #. TRANSLATORS: This is the command line usage. Don't translate #. %prog, but do translate usage, options, cleaner, and option. #. More information about the command line is here #. http://bleachbit.sourceforge.net/documentation/command-line #: ../bleachbit/CLI.py:133 msgid "usage: %prog [options] cleaner.option1 cleaner.option2" msgstr "uso: %prog [optiones] cleaner.option1 cleaner.option2" #: ../bleachbit/CLI.py:136 msgid "list cleaners" msgstr "listar le nettatores" #. TRANSLATORS: predefined cleaners are for applications, such as Firefox and Flash. #. This is different than cleaning an arbitrary file, such as a #. spreadsheet on the desktop. #: ../bleachbit/CLI.py:141 msgid "run cleaners to delete files and make other permanent changes" msgstr "" "facer fluer le nettatores pro cancellar le files e facer altere cambios " "permanente" #: ../bleachbit/CLI.py:144 msgid "shred specific files or folders" msgstr "destruer files o plicas specific" #: ../bleachbit/CLI.py:146 msgid "show system information" msgstr "monstrar le informationes de systema" #: ../bleachbit/CLI.py:148 msgid "launch the graphical interface" msgstr "lancear le interfacie graphic" #: ../bleachbit/CLI.py:150 msgid "do not prompt for administrator privileges" msgstr "non emitter le prompto pro privilegios de administrator" #: ../bleachbit/CLI.py:155 msgid "preview files to be deleted and other changes" msgstr "vista preliminar del files a cancellar e altere modificationes" #: ../bleachbit/CLI.py:157 msgid "use options set in the graphical interface" msgstr "usar le optiones fixate in le interfacie graphic" #: ../bleachbit/CLI.py:160 msgid "update winapp2.ini, if a new version is available" msgstr "ajornar winapp2.ini, si un nove version es disponibile" #: ../bleachbit/CLI.py:162 msgid "output version information and exit" msgstr "emitter le informationes del version e sortir" #: ../bleachbit/CLI.py:164 msgid "overwrite files to hide contents" msgstr "emitter le informationes del version e exir" #. TRANSLATORS: this is the context menu #: ../bleachbit/Action.py:338 ../bleachbit/GUI.py:626 msgid "Clean" msgstr "Nettar" #: ../bleachbit/GUI.py:139 msgid "Active" msgstr "Activar" #. TRANSLATORS: Size is the label for the column that shows how #. much space an option would clean or did clean #: ../bleachbit/GUI.py:151 msgid "Size" msgstr "Dimension" #. TRANSLATORS: %(cleaner) may be Firefox, System, etc. #. %(option) may be cache, logs, cookies, etc. #. %(warning) may be 'This option is really slow' #: ../bleachbit/GUI.py:182 #, python-format msgid "" "Warning regarding %(cleaner)s - %(option)s:\n" "\n" "%(warning)s" msgstr "" "Advertimento re %(cleaner)s - %(option)s:\n" "\n" "%(warning)s" #: ../bleachbit/GUI.py:368 msgid "You must select an operation" msgstr "Tu debe eliger un operation" #: ../bleachbit/GUI.py:388 ../bleachbit/GUI.py:411 msgid "Done." msgstr "Facite." #: ../bleachbit/GUI.py:424 msgid "Program to clean unnecessary files" msgstr "Programma pro cancellar files non necessari" #: ../bleachbit/GUI.py:430 msgid "" "GNU General Public License version 3 or later.\n" "See http://www.gnu.org/licenses/gpl-3.0.txt" msgstr "" "(Licentia general public GNU, version 3 o sequente) GNU General Public " "License, version 3 or later\n" "See http://www.gnu.org/licenses/gpl-3.0.txt\n" "Launchpad Contributions:\n" " karm https://launchpad.net/~melo-o" #. TRANSLATORS: Maintain the names of translators here. #. Launchpad does this automatically for translations #. typed in Launchpad. This is a special string shown #. in the 'About' box. #: ../bleachbit/GUI.py:436 msgid "translator-credits" msgstr "" "Launchpad Contributions:\n" " Emilio Sepulveda https://launchpad.net/~emisep-deactivatedaccount\n" " karm https://launchpad.net/~melo-o" #: ../bleachbit/GUI.py:448 msgid "System information" msgstr "Informationes de systema" #: ../bleachbit/GUI.py:521 msgid "Choose files to shred" msgstr "Eliger le files a destruer" #: ../bleachbit/GUI.py:524 msgid "Choose folder to shred" msgstr "Eliger le plicas a destruer" #. TRANSLATORS: this is the context menu #: ../bleachbit/GUI.py:621 msgid "Preview" msgstr "Vista preliminar" #: ../bleachbit/GUI.py:690 msgid "_Shred Files" msgstr "Destruer (_Shred) le files" #: ../bleachbit/GUI.py:692 msgid "Sh_red Folders" msgstr "Destruer (Sh_red) le plicas" #: ../bleachbit/GUI.py:694 msgid "_Wipe Free Space" msgstr "Nettar (_Wipe) le spatio libere" #: ../bleachbit/GUI.py:696 msgid "S_hred Settings and Quit" msgstr "Nettar (S_hred) le preparationes e quitar" #: ../bleachbit/GUI.py:698 msgid "_Quit" msgstr "_Quitar" #: ../bleachbit/GUI.py:700 msgid "_File" msgstr "_File" #: ../bleachbit/GUI.py:703 msgid "_Edit" msgstr "_Editar" #: ../bleachbit/GUI.py:704 msgid "Help Contents" msgstr "Contentos de adjuta" #: ../bleachbit/GUI.py:707 msgid "_Release Notes" msgstr "Notas de version (_Release)" #: ../bleachbit/GUI.py:710 msgid "_System Information" msgstr "Information de _Systema" #: ../bleachbit/GUI.py:713 msgid "_About" msgstr "Circ_A" #: ../bleachbit/GUI.py:714 msgid "_Help" msgstr "Adjuta (_Help)" #: ../bleachbit/GUI.py:739 msgctxt "button" msgid "Preview" msgstr "Vista preliminar" #: ../bleachbit/GUI.py:744 msgid "Preview files in the selected operations (without deleting any files)" msgstr "" "Vista preliminar del files in le operationes eligite (sin cancellar ulle " "file)" #: ../bleachbit/GUI.py:754 msgctxt "button" msgid "Clean" msgstr "Nettar" #: ../bleachbit/GUI.py:758 msgid "Clean files in the selected operations" msgstr "Cancellar le files in le operationes eligite" #: ../bleachbit/GUI.py:847 msgid "Error when checking for updates: " msgstr "Error in le controlo del ajornamentos: " #: ../bleachbit/GUI.py:887 msgid "" "Error loading the SQLite module: the antivirus software may be blocking it." msgstr "" "Error in le cargamento del modulo SQLite: le software antivirus pote ser " "blocante lo." #: ../bleachbit/GUI.py:890 msgid "" "You are running BleachBit with administrative privileges for cleaning shared " "parts of the system, and references to the user profile folder will clean " "only the root account." msgstr "" "Tu face fluer BleachBit con le privilegios administrative pro cancellar le " "partes commun in le systema, e le referentias al plica del profilo de usator " "cancellara solmente le conto de radice." bleachbit-2.0/po/bs.po0000644000175000017500000010122413245436307012763 0ustar hlehle# Bosnian translation for bleachbit # Copyright (c) 2011 Rosetta Contributors and Canonical Ltd 2011 # This file is distributed under the same license as the bleachbit package. # FIRST AUTHOR , 2011. # msgid "" msgstr "" "Project-Id-Version: bleachbit\n" "Report-Msgid-Bugs-To: FULL NAME \n" "POT-Creation-Date: 2011-08-17 20:52-0600\n" "PO-Revision-Date: 2011-08-18 11:27+0000\n" "Last-Translator: Kenan Dervišević \n" "Language-Team: Bosnian \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=3; plural=n%10==1 && n%100!=11 ? 0 : n%10>=2 && " "n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2;\n" "X-Launchpad-Export-Date: 2011-08-19 23:38+0000\n" "X-Generator: Launchpad (build 13697)\n" #: ../cleaners/tremulous.xml ../cleaners/gl-117.xml ../cleaners/nexuiz.xml #: ../cleaners/hippo_opensim_viewer.xml ../cleaners/secondlife_viewer.xml msgid "Game" msgstr "Igra" #: ../cleaners/tremulous.xml ../cleaners/chromium.xml ../cleaners/miro.xml #: ../cleaners/audacious.xml ../cleaners/xine.xml ../cleaners/kde.xml #: ../cleaners/pidgin.xml ../cleaners/seamonkey.xml ../cleaners/liferea.xml #: ../cleaners/beagle.xml ../cleaners/opera.xml ../cleaners/rhythmbox.xml #: ../cleaners/epiphany.xml ../cleaners/transmission.xml #: ../cleaners/nexuiz.xml ../cleaners/hippo_opensim_viewer.xml #: ../cleaners/vuze.xml ../cleaners/evolution.xml ../cleaners/exaile.xml #: ../cleaners/google_chrome.xml ../cleaners/emesene.xml ../cleaners/amsn.xml #: ../cleaners/yahoo_messenger.xml ../cleaners/thumbnails.xml #: ../cleaners/safari.xml ../cleaners/java.xml ../cleaners/flash.xml #: ../cleaners/thunderbird.xml ../cleaners/adobe_reader.xml #: ../cleaners/gftp.xml ../cleaners/gpodder.xml #: ../cleaners/secondlife_viewer.xml ../bleachbit/Cleaner.py:186 #: ../bleachbit/Cleaner.py:296 ../bleachbit/Cleaner.py:363 msgid "Cache" msgstr "Keš" #: ../cleaners/tremulous.xml msgid "Delete the list of game servers" msgstr "Obriši listu servera za igre" #: ../cleaners/yum.xml ../cleaners/miro.xml ../cleaners/audacious.xml #: ../cleaners/xine.xml ../cleaners/kde.xml ../cleaners/pidgin.xml #: ../cleaners/liferea.xml ../cleaners/beagle.xml ../cleaners/rhythmbox.xml #: ../cleaners/transmission.xml ../cleaners/nexuiz.xml ../cleaners/apt.xml #: ../cleaners/hippo_opensim_viewer.xml ../cleaners/vuze.xml #: ../cleaners/evolution.xml ../cleaners/exaile.xml ../cleaners/amsn.xml #: ../cleaners/yahoo_messenger.xml ../cleaners/thumbnails.xml #: ../cleaners/java.xml ../cleaners/windows_explorer.xml ../cleaners/flash.xml #: ../cleaners/adobe_reader.xml ../cleaners/gftp.xml ../cleaners/gpodder.xml #: ../cleaners/secondlife_viewer.xml ../bleachbit/Cleaner.py:296 #: ../bleachbit/Cleaner.py:363 ../bleachbit/Cleaner.py:383 #: ../bleachbit/Cleaner.py:385 msgid "Delete the cache" msgstr "Obriši keš" #. TRANSLATORS: Vacuum is a verb. The term is jargon #. from the SQLite database. Microsoft Access uses #. the term 'Compact Database' (which you may translate #. instead). Another synonym is 'defragment.' #: ../cleaners/yum.xml ../cleaners/chromium.xml ../cleaners/liferea.xml #: ../cleaners/google_chrome.xml ../cleaners/safari.xml #: ../cleaners/thunderbird.xml ../cleaners/gpodder.xml #: ../bleachbit/Cleaner.py:196 ../bleachbit/Cleaner.py:286 #: ../bleachbit/Action.py:323 msgid "Vacuum" msgstr "Vakum" #: ../cleaners/yum.xml ../cleaners/chromium.xml ../cleaners/liferea.xml #: ../cleaners/google_chrome.xml ../cleaners/safari.xml #: ../cleaners/thunderbird.xml ../cleaners/gpodder.xml #: ../bleachbit/Cleaner.py:196 msgid "" "Clean database fragmentation to reduce space and improve speed without " "removing any data" msgstr "" #: ../cleaners/chromium.xml ../cleaners/internet_explorer.xml #: ../cleaners/seamonkey.xml ../cleaners/opera.xml ../cleaners/epiphany.xml #: ../cleaners/google_chrome.xml ../cleaners/safari.xml ../cleaners/links2.xml #: ../cleaners/elinks.xml ../cleaners/konqueror.xml #: ../bleachbit/Cleaner.py:209 msgid "Web browser" msgstr "Web preglednik" #: ../cleaners/chromium.xml ../cleaners/seamonkey.xml ../cleaners/opera.xml #: ../cleaners/epiphany.xml ../cleaners/google_chrome.xml #: ../cleaners/safari.xml ../cleaners/thunderbird.xml #: ../bleachbit/Cleaner.py:186 msgid "Delete the web cache, which reduces time to display revisited pages" msgstr "" #: ../cleaners/chromium.xml ../cleaners/internet_explorer.xml #: ../cleaners/seamonkey.xml ../cleaners/liferea.xml ../cleaners/opera.xml #: ../cleaners/epiphany.xml ../cleaners/google_chrome.xml #: ../cleaners/safari.xml ../cleaners/flash.xml ../cleaners/thunderbird.xml #: ../cleaners/konqueror.xml ../cleaners/realplayer.xml #: ../cleaners/silverlight.xml ../bleachbit/Cleaner.py:187 msgid "Cookies" msgstr "Kolačići" #: ../cleaners/chromium.xml ../cleaners/internet_explorer.xml #: ../cleaners/seamonkey.xml ../cleaners/liferea.xml ../cleaners/opera.xml #: ../cleaners/epiphany.xml ../cleaners/google_chrome.xml #: ../cleaners/safari.xml ../cleaners/flash.xml ../cleaners/thunderbird.xml #: ../cleaners/konqueror.xml ../cleaners/realplayer.xml #: ../cleaners/silverlight.xml ../bleachbit/Cleaner.py:187 msgid "" "Delete cookies, which contain information such as web site preferences, " "authentication, and tracking identification" msgstr "" #. TRANSLATORS: DOM = Document Object Model. #: ../cleaners/chromium.xml ../cleaners/opera.xml #: ../cleaners/google_chrome.xml ../bleachbit/Cleaner.py:189 msgid "DOM Storage" msgstr "" #: ../cleaners/chromium.xml ../cleaners/opera.xml #: ../cleaners/google_chrome.xml ../bleachbit/Cleaner.py:189 msgid "Delete HTML5 cookies" msgstr "Obriši HTML5 kolačiće" #: ../cleaners/chromium.xml ../cleaners/internet_explorer.xml #: ../cleaners/google_chrome.xml ../bleachbit/Cleaner.py:191 msgid "Form history" msgstr "Historija obrazaca" #: ../cleaners/chromium.xml ../cleaners/google_chrome.xml msgid "A history of forms entered in web sites" msgstr "" #: ../cleaners/chromium.xml ../cleaners/d4x.xml ../cleaners/vim.xml #: ../cleaners/internet_explorer.xml ../cleaners/mc.xml #: ../cleaners/seamonkey.xml ../cleaners/windows_defender.xml #: ../cleaners/google_chrome.xml ../cleaners/nautilus.xml #: ../cleaners/safari.xml ../cleaners/bash.xml ../cleaners/links2.xml #: ../cleaners/elinks.xml ../cleaners/tortoisesvn.xml #: ../cleaners/realplayer.xml msgid "History" msgstr "Historija" #: ../cleaners/chromium.xml ../cleaners/google_chrome.xml msgid "" "Delete the history which includes visited sites, downloads, and thumbnails" msgstr "" #: ../cleaners/chromium.xml ../cleaners/google_chrome.xml msgid "Search engines" msgstr "Pretraživači" #. 'Factory' means a search engine that is installed by default 'from the factory,' but this is different than a 'default search engine' https://lists.launchpad.net/launchpad-translators/msg00283.html #: ../cleaners/chromium.xml ../cleaners/google_chrome.xml msgid "" "Reset the search engine usage history and delete non-factory search engines, " "some of which are added automatically" msgstr "" #: ../cleaners/chromium.xml ../cleaners/opera.xml ../cleaners/konqueror.xml msgid "Current session" msgstr "Trenutna sesija" #: ../cleaners/chromium.xml ../cleaners/opera.xml ../cleaners/konqueror.xml msgid "Delete the current session" msgstr "Obriši trenutnu sesiju" #: ../cleaners/d4x.xml ../cleaners/mc.xml ../cleaners/nautilus.xml #: ../cleaners/gnome.xml ../cleaners/links2.xml ../cleaners/tortoisesvn.xml #: ../cleaners/realplayer.xml ../bleachbit/Cleaner.py:276 #: ../bleachbit/Cleaner.py:347 msgid "Delete the usage history" msgstr "" #: ../cleaners/vim.xml ../cleaners/gedit.xml msgid "Editor" msgstr "Uređivač" #: ../cleaners/vim.xml msgid "" "Delete ~/.viminfo which includes file history, command history, and buffers" msgstr "" #: ../cleaners/miro.xml ../cleaners/xine.xml ../cleaners/flash.xml msgid "Multimedia viewer" msgstr "" #: ../cleaners/miro.xml ../cleaners/audacious.xml ../cleaners/screenlets.xml #: ../cleaners/hippo_opensim_viewer.xml ../cleaners/vuze.xml #: ../cleaners/exaile.xml ../cleaners/easytag.xml #: ../cleaners/yahoo_messenger.xml ../cleaners/teamviewer.xml #: ../cleaners/gftp.xml ../cleaners/amule.xml ../cleaners/realplayer.xml #: ../bleachbit/Cleaner.py:381 msgid "Logs" msgstr "" #: ../cleaners/miro.xml ../cleaners/audacious.xml ../cleaners/screenlets.xml #: ../cleaners/hippo_opensim_viewer.xml ../cleaners/vuze.xml #: ../cleaners/exaile.xml ../cleaners/yahoo_messenger.xml #: ../cleaners/teamviewer.xml ../cleaners/gftp.xml ../cleaners/amule.xml #: ../cleaners/realplayer.xml ../bleachbit/Cleaner.py:381 msgid "Delete the logs" msgstr "" #: ../cleaners/gl-117.xml ../cleaners/beagle.xml ../cleaners/x11.xml #: ../cleaners/microsoft_office.xml ../cleaners/secondlife_viewer.xml msgid "Debug logs" msgstr "" #: ../cleaners/gl-117.xml ../cleaners/beagle.xml ../cleaners/x11.xml #: ../cleaners/microsoft_office.xml ../cleaners/easytag.xml #: ../cleaners/secondlife_viewer.xml msgid "Delete the debug logs" msgstr "" #: ../cleaners/internet_explorer.xml ../bleachbit/Cleaner.py:191 msgid "A history of forms entered in web sites and in the Search bar" msgstr "" #: ../cleaners/internet_explorer.xml ../cleaners/opera.xml #: ../cleaners/safari.xml ../cleaners/konqueror.xml #: ../bleachbit/Cleaner.py:195 msgid "List of visited web pages" msgstr "" #: ../cleaners/internet_explorer.xml ../cleaners/kde.xml ../cleaners/vuze.xml #: ../cleaners/deepscan.xml ../cleaners/gimp.xml ../cleaners/google_earth.xml #: ../cleaners/adobe_reader.xml ../cleaners/amule.xml #: ../cleaners/winetricks.xml ../cleaners/wine.xml ../bleachbit/Cleaner.py:397 msgid "Temporary files" msgstr "Privremene datoteke" #: ../cleaners/internet_explorer.xml ../cleaners/kde.xml ../cleaners/vuze.xml #: ../cleaners/deepscan.xml ../cleaners/gimp.xml ../cleaners/google_earth.xml #: ../cleaners/adobe_reader.xml ../cleaners/amule.xml #: ../cleaners/winetricks.xml ../cleaners/wine.xml ../bleachbit/Cleaner.py:397 msgid "Delete the temporary files" msgstr "" #: ../cleaners/audacious.xml ../cleaners/filezilla.xml ../cleaners/winrar.xml #: ../cleaners/wordpad.xml ../cleaners/winamp.xml #: ../cleaners/windows_media_player.xml ../cleaners/microsoft_office.xml #: ../cleaners/winzip.xml ../cleaners/vlc.xml ../cleaners/windows_explorer.xml #: ../cleaners/teamviewer.xml ../cleaners/adobe_reader.xml #: ../cleaners/paint.xml ../bleachbit/Cleaner.py:297 msgid "Most recently used" msgstr "" #: ../cleaners/audacious.xml ../cleaners/kde.xml ../cleaners/filezilla.xml #: ../cleaners/gwenview.xml ../cleaners/gedit.xml #: ../cleaners/windows_explorer.xml ../cleaners/adobe_reader.xml #: ../bleachbit/Cleaner.py:297 ../bleachbit/Cleaner.py:373 msgid "Delete the list of recently used documents" msgstr "" #: ../cleaners/kde.xml ../cleaners/gwenview.xml ../cleaners/gedit.xml #: ../cleaners/windows_explorer.xml ../bleachbit/Cleaner.py:373 msgid "Recent documents list" msgstr "" #: ../cleaners/pidgin.xml ../cleaners/xchat.xml ../cleaners/emesene.xml #: ../cleaners/amsn.xml ../cleaners/yahoo_messenger.xml msgid "Chat client" msgstr "" #: ../cleaners/pidgin.xml ../cleaners/seamonkey.xml ../cleaners/xchat.xml #: ../cleaners/emesene.xml ../cleaners/amsn.xml #: ../cleaners/yahoo_messenger.xml ../cleaners/skype.xml msgid "Chat logs" msgstr "" #: ../cleaners/pidgin.xml ../cleaners/seamonkey.xml ../cleaners/xchat.xml #: ../cleaners/emesene.xml ../cleaners/amsn.xml #: ../cleaners/yahoo_messenger.xml ../cleaners/skype.xml msgid "Delete the chat logs" msgstr "" #: ../cleaners/seamonkey.xml ../cleaners/opera.xml ../bleachbit/Cleaner.py:190 msgid "Download history" msgstr "" #: ../cleaners/seamonkey.xml ../cleaners/opera.xml ../bleachbit/Cleaner.py:190 msgid "List of files downloaded" msgstr "" #: ../cleaners/seamonkey.xml msgid "Delete the list of visited web pages" msgstr "" #: ../cleaners/screenlets.xml msgid "Widgets for the desktop" msgstr "" #: ../cleaners/beagle.xml ../cleaners/recoll.xml msgid "Search tool" msgstr "" #: ../cleaners/beagle.xml msgid "Search indexes" msgstr "" #: ../cleaners/beagle.xml msgid "Delete the search indexes" msgstr "" #: ../cleaners/filezilla.xml ../cleaners/transmission.xml ../cleaners/vuze.xml #: ../cleaners/gftp.xml ../cleaners/amule.xml msgid "File transfer client" msgstr "" #: ../cleaners/windows_defender.xml ../cleaners/deepscan.xml msgid "Delete the files" msgstr "" #: ../cleaners/opera.xml ../cleaners/google_toolbar.xml ../cleaners/gnome.xml #: ../cleaners/windows_explorer.xml msgid "Search history" msgstr "" #: ../cleaners/opera.xml ../cleaners/google_toolbar.xml ../cleaners/gnome.xml #: ../cleaners/windows_explorer.xml msgid "Delete the search history" msgstr "" #: ../cleaners/opera.xml ../cleaners/konqueror.xml ../bleachbit/Cleaner.py:195 msgid "URL history" msgstr "" #: ../cleaners/winrar.xml ../cleaners/wordpad.xml ../cleaners/winamp.xml #: ../cleaners/windows_media_player.xml ../cleaners/microsoft_office.xml #: ../cleaners/winzip.xml ../cleaners/vlc.xml ../cleaners/windows_explorer.xml #: ../cleaners/teamviewer.xml ../cleaners/paint.xml msgid "Delete the most recently used list" msgstr "" #: ../cleaners/epiphany.xml ../cleaners/thunderbird.xml #: ../bleachbit/Cleaner.py:194 msgid "Passwords" msgstr "" #: ../cleaners/epiphany.xml ../cleaners/thunderbird.xml #: ../bleachbit/Cleaner.py:194 msgid "" "A database of usernames and passwords as well as a list of sites that should " "not store passwords" msgstr "" #: ../cleaners/epiphany.xml msgid "Places" msgstr "" #: ../cleaners/epiphany.xml msgid "" "A database of URLs including bookmarks, favicons, and a history of visited " "web sites" msgstr "" #: ../cleaners/epiphany.xml msgid "This option deletes all bookmarks." msgstr "" #: ../cleaners/microsoft_office.xml ../bleachbit/Cleaner.py:307 msgid "Office suite" msgstr "" #: ../cleaners/apt.xml msgid "Delete obsolete files" msgstr "" #: ../cleaners/vuze.xml ../cleaners/deepscan.xml msgid "Backup files" msgstr "" #: ../cleaners/vuze.xml ../cleaners/deepscan.xml msgid "Delete the backup files" msgstr "" #: ../cleaners/exaile.xml msgid "Downloaded podcasts" msgstr "" #: ../cleaners/exaile.xml msgid "Delete downloaded podcasts" msgstr "" #: ../cleaners/google_chrome.xml msgid "Session" msgstr "" #: ../cleaners/google_chrome.xml msgid "Delete the current and last sessions" msgstr "" #: ../cleaners/emesene.xml msgid "Delete the avatars and emoticons cache" msgstr "" #: ../cleaners/deepscan.xml msgid "Deep scan" msgstr "" #: ../cleaners/deepscan.xml msgid "Inspect the preview for any files you want to keep." msgstr "" #: ../cleaners/deepscan.xml msgid "This option is slow." msgstr "" #: ../cleaners/nautilus.xml msgid "Custom folders will be reset." msgstr "" #: ../cleaners/thumbnails.xml ../cleaners/windows_explorer.xml msgid "Thumbnails" msgstr "" #: ../cleaners/bash.xml msgid "Delete the command history" msgstr "" #. In GNOME 'Run' is the dialog shown when typing ALT+F2' #. In Windows 'Run' is the dialog in the Start menu #: ../cleaners/gnome.xml ../cleaners/windows_explorer.xml msgid "Run" msgstr "" #: ../cleaners/elinks.xml msgid "Delete the cookies, visited URLs, and search history" msgstr "" #: ../cleaners/recoll.xml msgid "Index" msgstr "" #: ../cleaners/recoll.xml msgid "" "Delete the search index, a database of words and the files they contain" msgstr "" #: ../bleachbit.desktop msgid "Unnecessary file cleaner" msgstr "" #: ../bleachbit.desktop msgid "Free space and maintain privacy" msgstr "" #. TRANSLATORS: This is the label in the log indicating was #. skipped because it matches the whitelist #: ../bleachbit/Command.py:46 msgid "Skip" msgstr "" #. TRANSLATORS: This is the label in the log indicating will be #. deleted (for previews) or was actually deleted #: ../bleachbit/Command.py:73 msgid "Delete" msgstr "" #. TRANSLATORS: The file will be deleted when the #. system reboots #: ../bleachbit/Command.py:93 msgid "Mark for deletion" msgstr "" #. TRANSLATORS: Parts of this file will be deleted #: ../bleachbit/Command.py:182 ../bleachbit/Command.py:212 #: ../bleachbit/Action.py:203 ../bleachbit/Action.py:216 #: ../bleachbit/Action.py:228 ../bleachbit/Action.py:241 #: ../bleachbit/Action.py:253 msgid "Clean file" msgstr "" #. TRANSLATORS: The file will be truncated to 0 bytes in length #: ../bleachbit/Command.py:249 msgid "Truncate" msgstr "" #: ../bleachbit/Command.py:288 msgid "Delete registry key" msgstr "" #: ../bleachbit/Unix.py:365 ../bleachbit/Unix.py:395 ../bleachbit/Unix.py:575 #, python-format msgid "Executable not found: %s" msgstr "" #. TRANSLATORS: %s expands to a name such as 'Firefox' or 'System'. #: ../bleachbit/Unix.py:572 ../bleachbit/Worker.py:135 #, python-format msgid "" "%s cannot be cleaned because it is currently running. Close it, and try " "again." msgstr "" #. TRANSLATORS: This is cleaner name for cleaners imported from winapp2.ini #: ../bleachbit/Winapp.py:45 msgid "Applications" msgstr "" #. TRANSLATORS: This is cleaner name for cleaners imported from winapp2.ini #: ../bleachbit/Winapp.py:47 ../bleachbit/Winapp.py:54 #: ../bleachbit/Winapp.py:55 ../bleachbit/Winapp.py:56 msgid "Internet" msgstr "" #. TRANSLATORS: This is cleaner name for cleaners imported from winapp2.ini #: ../bleachbit/Winapp.py:49 msgid "Multimedia" msgstr "" #. TRANSLATORS: This is cleaner name for cleaners imported from winapp2.ini #: ../bleachbit/Winapp.py:51 msgid "Utilities" msgstr "" #. TRANSLATORS: This is cleaner name for cleaners imported from winapp2.ini. #: ../bleachbit/Winapp.py:53 msgid "Microsoft Windows" msgstr "" #: ../bleachbit/Winapp.py:87 msgid "Imported from winapp2.ini" msgstr "" #: ../bleachbit/Cleaner.py:192 msgid "Session restore" msgstr "" #: ../bleachbit/Cleaner.py:192 msgid "Loads the initial session after the browser closes or crashes" msgstr "" #: ../bleachbit/Cleaner.py:193 msgid "Site preferences" msgstr "" #: ../bleachbit/Cleaner.py:193 msgid "Settings for individual sites" msgstr "" #. TRANSLATORS: desktop entries are .desktop files in Linux tha #. make up the application menu (the menu that shows BleachBit, #. Firefox, and others. The .desktop files also associate file #. types, so clicking on an .html file in Nautilus brings up #. Firefox. #. More information: http://standards.freedesktop.org/menu-spec/latest/index.html#introduction #: ../bleachbit/Cleaner.py:362 msgid "Broken desktop files" msgstr "" #: ../bleachbit/Cleaner.py:362 msgid "Delete broken application menu entries and file associations" msgstr "" #. TRANSLATORS: Localizations are files supporting specific #. languages, so applications appear in Spanish, etc. #: ../bleachbit/Cleaner.py:366 msgid "Localizations" msgstr "" #: ../bleachbit/Cleaner.py:366 msgid "Delete files for unwanted languages" msgstr "" #: ../bleachbit/Cleaner.py:367 msgid "Configure this option in the preferences." msgstr "" #. TRANSLATORS: 'Rotated logs' refers to old system log files. #. Linux systems often have a scheduled job to rotate the logs #. which means compress all except the newest log and then delete #. the oldest log. You could translate this 'old logs.' #: ../bleachbit/Cleaner.py:372 msgid "Rotated logs" msgstr "" #: ../bleachbit/Cleaner.py:372 msgid "Delete old system logs" msgstr "" #: ../bleachbit/Cleaner.py:374 msgid "Trash" msgstr "" #: ../bleachbit/Cleaner.py:374 msgid "Empty the trash" msgstr "" #: ../bleachbit/Cleaner.py:376 ../bleachbit/Cleaner.py:482 #: ../bleachbit/Worker.py:211 msgid "Memory" msgstr "" #. TRANSLATORS: 'free' means 'unallocated' #: ../bleachbit/Cleaner.py:378 msgid "Wipe the swap and free memory" msgstr "" #: ../bleachbit/Cleaner.py:379 msgid "This option is experimental and may cause system problems." msgstr "" #: ../bleachbit/Cleaner.py:382 msgid "Memory dump" msgstr "" #: ../bleachbit/Cleaner.py:382 msgid "Delete the file memory.dmp" msgstr "" #. TRANSLATORS: Prefetch is Microsoft Windows jargon. #: ../bleachbit/Cleaner.py:385 msgid "Prefetch" msgstr "" #: ../bleachbit/Cleaner.py:386 msgid "Recycle bin" msgstr "" #: ../bleachbit/Cleaner.py:386 msgid "Empty the recycle bin" msgstr "" #. TRANSLATORS: 'Update' is a noun, and 'Update uninstallers' is an option to delete #. the uninstallers for software updates. #: ../bleachbit/Cleaner.py:389 msgid "Update uninstallers" msgstr "" #: ../bleachbit/Cleaner.py:389 msgid "" "Delete uninstallers for Microsoft updates including hotfixes, service packs, " "and Internet Explorer updates" msgstr "" #: ../bleachbit/Cleaner.py:391 ../bleachbit/Cleaner.py:564 msgid "Clipboard" msgstr "" #: ../bleachbit/Cleaner.py:391 msgid "" "The desktop environment's clipboard used for copy and paste operations" msgstr "" #. TRANSLATORS: 'free' means 'unallocated' #: ../bleachbit/Cleaner.py:393 msgid "Free disk space" msgstr "" #. TRANSLATORS: 'free' means 'unallocated' #: ../bleachbit/Cleaner.py:395 msgid "Overwrite free disk space to hide deleted files" msgstr "" #: ../bleachbit/Cleaner.py:396 msgid "This option is very slow." msgstr "" #: ../bleachbit/Cleaner.py:400 msgid "The system in general" msgstr "" #: ../bleachbit/Cleaner.py:406 ../bleachbit/Cleaner.py:659 msgid "System" msgstr "" #. TRANSLATORS: 'Free' means 'unallocated.' #. %s expands to a path such as C:\ or /tmp/ #: ../bleachbit/Cleaner.py:590 ../bleachbit/Cleaner.py:686 #, python-format msgid "Overwrite free disk space %s" msgstr "" #. TRANSLATORS: %s expands to a drive letter such as C:\ or D:\ #: ../bleachbit/Cleaner.py:618 #, python-format msgid "Recycle bin %s" msgstr "" #: ../bleachbit/GuiPreferences.py:52 ../bleachbit/GUI.py:637 msgid "Preferences" msgstr "" #: ../bleachbit/GuiPreferences.py:58 msgid "General" msgstr "" #: ../bleachbit/GuiPreferences.py:59 msgid "Drives" msgstr "" #: ../bleachbit/GuiPreferences.py:61 msgid "Languages" msgstr "" #: ../bleachbit/GuiPreferences.py:62 msgid "Whitelist" msgstr "" #: ../bleachbit/GuiPreferences.py:107 msgid "Check periodically for software updates via the Internet" msgstr "" #: ../bleachbit/GuiPreferences.py:110 msgid "" "If an update is found, you will be given the option to view information " "about it. Then, you may manually download and install the update." msgstr "" #: ../bleachbit/GuiPreferences.py:116 msgid "Check for new beta releases" msgstr "" #: ../bleachbit/GuiPreferences.py:123 msgid "Download and update cleaners from community (winapp2.ini)" msgstr "" #. TRANSLATORS: This means to hide cleaners which would do #. nothing. For example, if Firefox were never used on #. this system, this option would hide Firefox to simplify #. the list of cleaners. #: ../bleachbit/GuiPreferences.py:135 msgid "Hide irrelevant cleaners" msgstr "" #. TRANSLATORS: Overwriting is the same as shredding. It is a way #. to prevent recovery of the data. You could also translate #. 'Shred files to prevent recovery.' #: ../bleachbit/GuiPreferences.py:143 msgid "Overwrite files to hide contents" msgstr "" #: ../bleachbit/GuiPreferences.py:146 msgid "" "Overwriting is ineffective on some file systems and with certain BleachBit " "operations. Overwriting is significantly slower." msgstr "" #: ../bleachbit/GuiPreferences.py:149 msgid "Start BleachBit with computer" msgstr "" #: ../bleachbit/GuiPreferences.py:160 ../bleachbit/GuiPreferences.py:291 #: ../bleachbit/GUI.py:545 msgid "Choose a folder" msgstr "" #. TRANSLATORS: 'free' means 'unallocated' #: ../bleachbit/GuiPreferences.py:185 msgid "" "Choose a writable folder for each drive for which to overwrite free space." msgstr "" #. TRANSLATORS: In the preferences dialog, this button adds a path to the list of paths #: ../bleachbit/GuiPreferences.py:206 msgctxt "button" msgid "Add" msgstr "" #. TRANSLATORS: In the preferences dialog, this button removes a path from the list of paths #: ../bleachbit/GuiPreferences.py:209 ../bleachbit/GuiPreferences.py:369 msgctxt "button" msgid "Remove" msgstr "" #: ../bleachbit/GuiPreferences.py:234 msgid "All languages will be deleted except those checked." msgstr "" #: ../bleachbit/GuiPreferences.py:251 msgid "Preserve" msgstr "" #: ../bleachbit/GuiPreferences.py:255 msgid "Code" msgstr "" #: ../bleachbit/GuiPreferences.py:259 ../bleachbit/GUI.py:136 msgid "Name" msgstr "" #: ../bleachbit/GuiPreferences.py:277 msgid "Choose a file" msgstr "" #: ../bleachbit/GuiPreferences.py:284 ../bleachbit/GuiPreferences.py:328 msgid "File" msgstr "" #: ../bleachbit/GuiPreferences.py:299 ../bleachbit/GuiPreferences.py:330 msgid "Folder" msgstr "" #. TRANSLATORS: "Paths" is used generically to refer to both files and folders #: ../bleachbit/GuiPreferences.py:337 msgid "Theses paths will not be deleted or modified." msgstr "" #: ../bleachbit/GuiPreferences.py:345 msgid "Type" msgstr "" #. TRANSLATORS: In the tree view "Path" is used generically to refer to a #. file, a folder, or a pattern describing either #: ../bleachbit/GuiPreferences.py:351 msgid "Path" msgstr "" #: ../bleachbit/GuiPreferences.py:363 msgctxt "button" msgid "Add file" msgstr "" #: ../bleachbit/GuiPreferences.py:366 msgctxt "button" msgid "Add folder" msgstr "" #: ../bleachbit/RecognizeCleanerML.py:63 msgid "Security warning" msgstr "" #. TRANSLATORS: Cleaner definitions are XML data files that define #. which files will be cleaned. #: ../bleachbit/RecognizeCleanerML.py:75 msgid "" "These cleaner definitions are new or have changed. Malicious definitions can " "damage your system. If you do not trust these changes, delete the files or " "quit." msgstr "" #. TRANSLATORS: This is the column label (header) in the tree view for the security dialog #: ../bleachbit/RecognizeCleanerML.py:88 msgctxt "column_label" msgid "Delete" msgstr "" #. TRANSLATORS: This is the column label (header) in the tree view for the security dialog #: ../bleachbit/RecognizeCleanerML.py:91 msgctxt "column_label" msgid "Filename" msgstr "" #. TRANSLATORS: This indicates an error. The special keyword #. %(operation)s will be replaced by 'firefox' or 'opera' or #. some other cleaner ID. The special keyword %(msg)s will be #. replaced by a message such as 'Permission denied.' #: ../bleachbit/Worker.py:76 #, python-format msgid "Exception while running operation '%(operation)s': '%(msg)s'" msgstr "" #. TRANSLATORS: 'free' means 'unallocated' #: ../bleachbit/Worker.py:209 msgid "Please wait. Wiping free disk space." msgstr "" #. TRANSLATORS: %s is replaced with Firefox, System, etc. #: ../bleachbit/Worker.py:211 ../bleachbit/Worker.py:298 #, python-format msgid "Please wait. Cleaning %s." msgstr "" #: ../bleachbit/Worker.py:221 #, python-format msgid "About %d minute remaining." msgid_plural "About %d minutes remaining." msgstr[0] "" msgstr[1] "" #. TRANSLATORS: This refers to disk space that was #. really recovered (in other words, not a preview) #: ../bleachbit/Worker.py:236 #, python-format msgid "Disk space recovered: %s" msgstr "" #. TRANSLATORS: This refers to a preview (no real #. changes were made yet) #: ../bleachbit/Worker.py:240 #, python-format msgid "Disk space to be recovered: %s" msgstr "" #. TRANSLATORS: This refers to the number of files really #. deleted (in other words, not a preview). #: ../bleachbit/Worker.py:245 #, python-format msgid "Files deleted: %d" msgstr "" #. TRANSLATORS: This refers to the number of files that #. would be deleted (in other words, simply a preview). #: ../bleachbit/Worker.py:249 #, python-format msgid "Files to be deleted: %d" msgstr "" #: ../bleachbit/Worker.py:252 #, python-format msgid "Special operations: %d" msgstr "" #: ../bleachbit/Worker.py:255 #, python-format msgid "Errors: %d" msgstr "" #. TRANSLATORS: The "deep scan" feature searches over broad #. areas of the file system such as the user's whole home directory #. or all the system executables. #: ../bleachbit/Worker.py:271 msgid "Please wait. Running deep scan." msgstr "" #. TRANSLATORS: %s is replaced with Firefox, System, etc. #: ../bleachbit/Worker.py:301 #, python-format msgid "Please wait. Previewing %s." msgstr "" #: ../bleachbit/Update.py:75 msgid "New winapp2.ini was downloaded." msgstr "" #: ../bleachbit/Update.py:111 msgid "Update BleachBit" msgstr "" #: ../bleachbit/Update.py:116 msgid "A new version is available." msgstr "" #. TRANSLATORS: %s expands to version such as '0.8.4' or '0.8.5beta' or similar #: ../bleachbit/Update.py:124 #, python-format msgid "Update to version %s" msgstr "" #: ../bleachbit/CLI.py:123 #, python-format msgid "not a valid cleaner: %s" msgstr "" #. TRANSLATORS: This is the command line usage. Don't translate #. %prog, but do translate usage, options, cleaner, and option. #. More information about the command line is here #. http://bleachbit.sourceforge.net/documentation/command-line #: ../bleachbit/CLI.py:150 msgid "usage: %prog [options] cleaner.option1 cleaner.option2" msgstr "" #: ../bleachbit/CLI.py:153 msgid "list cleaners" msgstr "" #: ../bleachbit/CLI.py:155 msgid "delete files and make other permanent changes" msgstr "" #. TRANSLATORS: this is a warning for using --delete which will go away one day #: ../bleachbit/CLI.py:158 msgid "depreciated alias for --clean" msgstr "" #: ../bleachbit/CLI.py:160 msgid "show system information" msgstr "" #: ../bleachbit/CLI.py:161 msgid "launch the graphical interface" msgstr "" #: ../bleachbit/CLI.py:163 msgid "do not prompt for administrator privileges" msgstr "" #: ../bleachbit/CLI.py:168 msgid "preview files to be deleted and other changes" msgstr "" #: ../bleachbit/CLI.py:170 msgid "use options set in the graphical interface" msgstr "" #: ../bleachbit/CLI.py:172 msgid "output version information and exit" msgstr "" #: ../bleachbit/CLI.py:174 msgid "overwrite files to hide contents" msgstr "" #: ../bleachbit/GuiBasic.py:113 msgid "Delete confirmation" msgstr "" #: ../bleachbit/GuiBasic.py:121 msgid "" "Are you sure you want to permanently delete files according to the selected " "operations? The actual files that will be deleted may have changed since " "you ran the preview." msgstr "" #: ../bleachbit/GuiBasic.py:123 msgid "Are you sure you want to permanently delete these files?" msgstr "" #: ../bleachbit/GuiBasic.py:159 #, python-format msgid "" "Because you are running as root, please manually open this link in a web " "browser:\n" "%s" msgstr "" #. TRANSLATORS: %s expands to bleachbit.sourceforge.net or similar #: ../bleachbit/GuiBasic.py:171 #, python-format msgid "Open web browser to %s?" msgstr "" #: ../bleachbit/GUI.py:144 msgid "Active" msgstr "" #. TRANSLATORS: %(cleaner) may be Firefox, System, etc. #. %(option) may be cache, logs, cookies, etc. #. %(warning) may be 'This option is really slow' #: ../bleachbit/GUI.py:176 #, python-format msgid "" "Warning regarding %(cleaner)s - %(option)s:\n" "\n" "%(warning)s" msgstr "" #: ../bleachbit/GUI.py:346 msgid "You must select an operation" msgstr "" #: ../bleachbit/GUI.py:369 ../bleachbit/GUI.py:384 msgid "Done." msgstr "" #: ../bleachbit/GUI.py:398 msgid "Program to clean unnecessary files" msgstr "" #: ../bleachbit/GUI.py:403 msgid "" "GNU General Public License version 3 or later.\n" "See http://www.gnu.org/licenses/gpl-3.0.txt" msgstr "" #. TRANSLATORS: Maintain the names of translators here. #. Launchpad does this automatically for translations #. typed in Launchpad. This is a special string shown #. in the 'About' box. #: ../bleachbit/GUI.py:409 msgid "translator-credits" msgstr "" "Launchpad Contributions:\n" " Kenan Dervišević https://launchpad.net/~kenan3008" #: ../bleachbit/GUI.py:422 msgid "System information" msgstr "" #: ../bleachbit/GUI.py:492 msgid "Choose files to shred" msgstr "" #: ../bleachbit/GUI.py:495 msgid "Choose folder to shred" msgstr "" #. TRANSLATORS: this is the context menu #: ../bleachbit/GUI.py:580 msgid "Preview" msgstr "" #. TRANSLATORS: this is the context menu #: ../bleachbit/GUI.py:585 msgid "Clean" msgstr "" #: ../bleachbit/GUI.py:631 msgid "_Shred Files" msgstr "" #: ../bleachbit/GUI.py:632 msgid "Sh_red Folders" msgstr "" #: ../bleachbit/GUI.py:633 msgid "_Wipe Free Space" msgstr "" #: ../bleachbit/GUI.py:634 msgid "S_hred Settings and Quit" msgstr "" #: ../bleachbit/GUI.py:635 msgid "_Quit" msgstr "" #: ../bleachbit/GUI.py:636 msgid "_File" msgstr "" #: ../bleachbit/GUI.py:638 msgid "_Edit" msgstr "" #: ../bleachbit/GUI.py:639 msgid "Help Contents" msgstr "" #: ../bleachbit/GUI.py:641 msgid "_Release Notes" msgstr "" #: ../bleachbit/GUI.py:643 msgid "_System Information" msgstr "" #: ../bleachbit/GUI.py:644 msgid "_About" msgstr "" #: ../bleachbit/GUI.py:645 msgid "_Help" msgstr "" #. TRANSLATORS: This is the preview button on the main window. It previews changes. #: ../bleachbit/GUI.py:669 msgctxt "button" msgid "Preview" msgstr "" #: ../bleachbit/GUI.py:672 msgid "Preview files in the selected operations (without deleting any files)" msgstr "" #. TRANSLATORS: This is the clean button on the main window. #. It makes permanent changes: usually deleting files, sometimes altering them. #: ../bleachbit/GUI.py:680 msgctxt "button" msgid "Clean" msgstr "" #: ../bleachbit/GUI.py:683 msgid "Clean files in the selected operations" msgstr "" #: ../bleachbit/GUI.py:769 msgid "Error when checking for updates: " msgstr "" #: ../bleachbit/GUI.py:800 msgid "" "Error loading the SQLite module: the antivirus software may be blocking it." msgstr "" bleachbit-2.0/po/th.po0000644000175000017500000015662013245436307013004 0ustar hlehle# Thai translation for bleachbit # Copyright (c) 2009 Rosetta Contributors and Canonical Ltd 2009 # This file is distributed under the same license as the bleachbit package. # FIRST AUTHOR , 2009. # msgid "" msgstr "" "Project-Id-Version: bleachbit 0.7.3-1\n" "Report-Msgid-Bugs-To: FULL NAME \n" "POT-Creation-Date: 2017-02-11 11:12-0700\n" "PO-Revision-Date: 2017-03-26 06:41+0000\n" "Last-Translator: Rockworld \n" "Language-Team: Thai \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=1; plural=0;\n" "X-Launchpad-Export-Date: 2017-03-26 18:48+0000\n" "X-Generator: Launchpad (build 18334)\n" #: ../cleaners/mc.xml ../cleaners/tortoisesvn.xml ../cleaners/vim.xml #: ../cleaners/safari.xml ../cleaners/links2.xml ../cleaners/seamonkey.xml #: ../cleaners/realplayer.xml ../cleaners/windows_defender.xml #: ../cleaners/d4x.xml ../cleaners/sqlite3.xml #: ../cleaners/internet_explorer.xml ../cleaners/libreoffice.xml #: ../cleaners/easytag.xml ../cleaners/bash.xml ../cleaners/nautilus.xml #: ../cleaners/octave.xml ../cleaners/elinks.xml ../cleaners/chromium.xml #: ../cleaners/google_chrome.xml msgid "History" msgstr "ประวัติ" #: ../cleaners/mc.xml ../cleaners/tortoisesvn.xml ../cleaners/links2.xml #: ../cleaners/realplayer.xml ../cleaners/d4x.xml ../cleaners/libreoffice.xml #: ../cleaners/easytag.xml ../cleaners/nautilus.xml ../cleaners/gnome.xml #: ../bleachbit/Cleaner.py:349 ../bleachbit/Cleaner.py:423 #: ../bleachbit/Cleaner.py:432 msgid "Delete the usage history" msgstr "ลบประวัติการใช้" #: ../cleaners/gpodder.xml ../cleaners/hippo_opensim_viewer.xml #: ../cleaners/thumbnails.xml ../cleaners/safari.xml ../cleaners/emesene.xml #: ../cleaners/liferea.xml ../cleaners/seamonkey.xml ../cleaners/vuze.xml #: ../cleaners/yahoo_messenger.xml ../cleaners/pidgin.xml #: ../cleaners/adobe_reader.xml ../cleaners/evolution.xml #: ../cleaners/tremulous.xml ../cleaners/libreoffice.xml ../cleaners/xine.xml #: ../cleaners/nexuiz.xml ../cleaners/exaile.xml ../cleaners/opera.xml #: ../cleaners/amsn.xml ../cleaners/gftp.xml ../cleaners/miro.xml #: ../cleaners/beagle.xml ../cleaners/kde.xml ../cleaners/epiphany.xml #: ../cleaners/flash.xml ../cleaners/secondlife_viewer.xml ../cleaners/java.xml #: ../cleaners/chromium.xml ../cleaners/audacious.xml ../cleaners/rhythmbox.xml #: ../cleaners/google_chrome.xml ../cleaners/thunderbird.xml #: ../bleachbit/Cleaner.py:192 ../bleachbit/Cleaner.py:370 #: ../bleachbit/Cleaner.py:455 msgid "Cache" msgstr "แคช" #: ../cleaners/gpodder.xml ../cleaners/yum.xml #: ../cleaners/hippo_opensim_viewer.xml ../cleaners/thumbnails.xml #: ../cleaners/windows_explorer.xml ../cleaners/liferea.xml #: ../cleaners/vuze.xml ../cleaners/yahoo_messenger.xml ../cleaners/pidgin.xml #: ../cleaners/adobe_reader.xml ../cleaners/evolution.xml #: ../cleaners/libreoffice.xml ../cleaners/apt.xml ../cleaners/xine.xml #: ../cleaners/nexuiz.xml ../cleaners/exaile.xml ../cleaners/amsn.xml #: ../cleaners/gftp.xml ../cleaners/miro.xml ../cleaners/beagle.xml #: ../cleaners/kde.xml ../cleaners/flash.xml ../cleaners/secondlife_viewer.xml #: ../cleaners/java.xml ../cleaners/audacious.xml ../cleaners/rhythmbox.xml #: ../bleachbit/Cleaner.py:370 ../bleachbit/Cleaner.py:455 #: ../bleachbit/Cleaner.py:489 ../bleachbit/Cleaner.py:491 msgid "Delete the cache" msgstr "ลบแคช" #. TRANSLATORS: Vacuum is a verb. The term is jargon #. from the SQLite database. Microsoft Access uses #. the term 'Compact Database' (which you may translate #. instead). Another synonym is 'defragment.' #: ../cleaners/gpodder.xml ../cleaners/yum.xml ../cleaners/safari.xml #: ../cleaners/liferea.xml ../cleaners/chromium.xml #: ../cleaners/google_chrome.xml ../cleaners/thunderbird.xml #: ../bleachbit/Cleaner.py:214 ../bleachbit/Cleaner.py:360 #: ../bleachbit/Action.py:445 msgid "Vacuum" msgstr "กระชับ" #: ../cleaners/gpodder.xml ../cleaners/yum.xml ../cleaners/safari.xml #: ../cleaners/liferea.xml ../cleaners/chromium.xml #: ../cleaners/google_chrome.xml ../cleaners/thunderbird.xml #: ../bleachbit/Cleaner.py:215 msgid "" "Clean database fragmentation to reduce space and improve speed without " "removing any data" msgstr "" "ขจัดการแยกส่วนของฐานข้อมูลเพื่อลดพื้นที่และเพิ่มความเร็วโดยไม่ต้องทำการลบข้อม" "ูลใดๆ" #: ../cleaners/yum.xml ../cleaners/apt.xml msgid "Package manager" msgstr "เครื่องมือจัดการแพคเกจ" #: ../cleaners/warzone2100.xml ../cleaners/hippo_opensim_viewer.xml #: ../cleaners/gl-117.xml ../cleaners/tremulous.xml ../cleaners/nexuiz.xml #: ../cleaners/secondlife_viewer.xml msgid "Game" msgstr "เกม" #: ../cleaners/warzone2100.xml ../cleaners/hippo_opensim_viewer.xml #: ../cleaners/teamviewer.xml ../cleaners/realplayer.xml ../cleaners/vuze.xml #: ../cleaners/yahoo_messenger.xml ../cleaners/amule.xml #: ../cleaners/easytag.xml ../cleaners/exaile.xml ../cleaners/screenlets.xml #: ../cleaners/gftp.xml ../cleaners/miro.xml ../cleaners/audacious.xml #: ../bleachbit/Cleaner.py:486 msgid "Logs" msgstr "ปูม" #: ../cleaners/warzone2100.xml ../cleaners/hippo_opensim_viewer.xml #: ../cleaners/teamviewer.xml ../cleaners/realplayer.xml ../cleaners/vuze.xml #: ../cleaners/yahoo_messenger.xml ../cleaners/amule.xml ../cleaners/exaile.xml #: ../cleaners/screenlets.xml ../cleaners/gftp.xml ../cleaners/miro.xml #: ../cleaners/audacious.xml ../bleachbit/Cleaner.py:486 msgid "Delete the logs" msgstr "ลบปูม" #: ../cleaners/thumbnails.xml ../cleaners/windows_explorer.xml msgid "Thumbnails" msgstr "ภาพย่อ" #: ../cleaners/thumbnails.xml msgid "Icons for files on the system" msgstr "ไอคอนสำหรับแฟ้มที่อยู่ในระบบ" #: ../cleaners/vim.xml ../cleaners/gedit.xml msgid "Editor" msgstr "เครื่องมือแก้ไข" #: ../cleaners/vim.xml msgid "" "Delete ~/.viminfo which includes file history, command history, and buffers" msgstr "ลบ ~/.viminfo ซึ่งประกอบไปด้วยประวัติแฟ้ม, ประวัติคำสั่ง และบัฟเฟอร์" #: ../cleaners/filezilla.xml ../cleaners/transmission.xml ../cleaners/vuze.xml #: ../cleaners/amule.xml ../cleaners/gftp.xml msgid "File transfer client" msgstr "โปรแกรมลูกข่ายสำหรับรับส่งแฟ้ม" #: ../cleaners/filezilla.xml ../cleaners/paint.xml #: ../cleaners/windows_media_player.xml ../cleaners/windows_explorer.xml #: ../cleaners/teamviewer.xml ../cleaners/microsoft_office.xml #: ../cleaners/vlc.xml ../cleaners/adobe_reader.xml ../cleaners/winamp.xml #: ../cleaners/winzip.xml ../cleaners/winrar.xml ../cleaners/audacious.xml #: ../cleaners/wordpad.xml ../bleachbit/Cleaner.py:371 msgid "Most recently used" msgstr "ที่ใช้ล่าสุด" #: ../cleaners/filezilla.xml ../cleaners/windows_explorer.xml #: ../cleaners/gwenview.xml ../cleaners/adobe_reader.xml ../cleaners/gedit.xml #: ../cleaners/kde.xml ../cleaners/audacious.xml ../bleachbit/Cleaner.py:372 #: ../bleachbit/Cleaner.py:469 msgid "Delete the list of recently used documents" msgstr "ลบรายชื่อของเอกสารที่ใช้ล่าสุด" #: ../cleaners/skype.xml ../cleaners/emesene.xml #: ../cleaners/yahoo_messenger.xml ../cleaners/pidgin.xml ../cleaners/amsn.xml msgid "Chat client" msgstr "โปรแกรมลูกข่ายสนทนา" #: ../cleaners/skype.xml ../cleaners/hexchat.xml ../cleaners/emesene.xml #: ../cleaners/seamonkey.xml ../cleaners/yahoo_messenger.xml #: ../cleaners/pidgin.xml ../cleaners/amsn.xml msgid "Chat logs" msgstr "ปูมสนทนา" #: ../cleaners/skype.xml ../cleaners/hexchat.xml ../cleaners/emesene.xml #: ../cleaners/seamonkey.xml ../cleaners/yahoo_messenger.xml #: ../cleaners/pidgin.xml ../cleaners/amsn.xml msgid "Delete the chat logs" msgstr "ลบปูมสนทนา" #: ../cleaners/skype.xml msgid "Installers" msgstr "โปรแกรมติดตั้ง" #: ../cleaners/skype.xml msgid "Delete cached patches and installers" msgstr "ล้างแคชของแพชและโปรแกรมติดตั้งต่าง ๆ" #: ../cleaners/hexchat.xml msgid "IRC client formerly known as XChat" msgstr "" #: ../cleaners/safari.xml ../cleaners/links2.xml ../cleaners/seamonkey.xml #: ../cleaners/konqueror.xml ../cleaners/internet_explorer.xml #: ../cleaners/opera.xml ../cleaners/epiphany.xml ../cleaners/elinks.xml #: ../cleaners/chromium.xml ../cleaners/google_chrome.xml #: ../bleachbit/Cleaner.py:226 msgid "Web browser" msgstr "เว็บเบราว์เซอร์" #: ../cleaners/safari.xml ../cleaners/seamonkey.xml ../cleaners/opera.xml #: ../cleaners/epiphany.xml ../cleaners/chromium.xml #: ../cleaners/google_chrome.xml ../cleaners/thunderbird.xml #: ../bleachbit/Cleaner.py:193 msgid "Delete the web cache, which reduces time to display revisited pages" msgstr "ลบเว็บแคช ซึ่งลดเวลาในการแสดงหน้าที่เข้าชมแล้ว" #: ../cleaners/safari.xml ../cleaners/liferea.xml ../cleaners/seamonkey.xml #: ../cleaners/realplayer.xml ../cleaners/konqueror.xml #: ../cleaners/internet_explorer.xml ../cleaners/opera.xml #: ../cleaners/epiphany.xml ../cleaners/flash.xml ../cleaners/silverlight.xml #: ../cleaners/chromium.xml ../cleaners/google_chrome.xml #: ../cleaners/thunderbird.xml ../bleachbit/Cleaner.py:194 msgid "Cookies" msgstr "คุกกี้" #: ../cleaners/safari.xml ../cleaners/liferea.xml ../cleaners/seamonkey.xml #: ../cleaners/realplayer.xml ../cleaners/konqueror.xml #: ../cleaners/internet_explorer.xml ../cleaners/opera.xml #: ../cleaners/epiphany.xml ../cleaners/flash.xml ../cleaners/silverlight.xml #: ../cleaners/chromium.xml ../cleaners/google_chrome.xml #: ../cleaners/thunderbird.xml ../bleachbit/Cleaner.py:195 msgid "" "Delete cookies, which contain information such as web site preferences, " "authentication, and tracking identification" msgstr "" "ลบคุกกี้ ซึ่งบรรจุข้อมูล เช่น ค่าปรับแต่งเว็บไซต์, ยืนยันตัวบุคคล " "และการติดตามการระบุตัวตน" #: ../cleaners/safari.xml ../cleaners/konqueror.xml #: ../cleaners/internet_explorer.xml ../cleaners/opera.xml #: ../bleachbit/Cleaner.py:213 msgid "List of visited web pages" msgstr "รายการหน้าเว็บที่เข้าชมแล้ว" #. Torrent software can block a list of IP addresses, such as those that may belong to malware or anti-piracy organizations #: ../cleaners/transmission.xml msgid "Blocklists" msgstr "บล็อกลิสต์" #: ../cleaners/transmission.xml ../cleaners/windows_defender.xml #: ../cleaners/beagle.xml ../cleaners/thunderbird.xml ../cleaners/deepscan.xml #: ../bleachbit/Cleaner.py:197 msgid "Delete the files" msgstr "ลบแฟ้ม" #: ../cleaners/transmission.xml msgid "Blocklists will need update to work." msgstr "ต้องมีการปรับปรุงข้อมูลในบล็อกลิสต์ จึงจะทำงานได้" #: ../cleaners/transmission.xml msgid "Torrents" msgstr "ทอร์เรนท์" #: ../cleaners/transmission.xml msgid "Delete the torrents (just the metadata but not the files described)" msgstr "ลบทอร์เรนท์ต่าง ๆ (ลบแค่ส่วนของ metadata แต่จะไม่ลบแฟ้มต่างๆ)" #: ../cleaners/transmission.xml msgid "Statistics" msgstr "สถิติ" #: ../cleaners/transmission.xml msgid "Delete the file" msgstr "ลบแฟ้มนี้" #: ../cleaners/paint.xml ../cleaners/windows_media_player.xml #: ../cleaners/windows_explorer.xml ../cleaners/teamviewer.xml #: ../cleaners/microsoft_office.xml ../cleaners/vlc.xml ../cleaners/winamp.xml #: ../cleaners/winzip.xml ../cleaners/winrar.xml ../cleaners/wordpad.xml msgid "Delete the most recently used list" msgstr "ลบรายการที่ใช้ล่าสุด" #: ../cleaners/emesene.xml msgid "Delete the avatars and emoticons cache" msgstr "ลบแคชรูปแทนตัวและรูปสีหน้า" #: ../cleaners/windows_media_player.xml ../cleaners/realplayer.xml #: ../cleaners/vlc.xml ../cleaners/winamp.xml msgid "Media player" msgstr "เครื่องเล่นสื่อ" #: ../cleaners/windows_explorer.xml ../cleaners/nautilus.xml msgid "File manager" msgstr "ตัวจัดการแฟ้ม" #: ../cleaners/windows_explorer.xml ../cleaners/gwenview.xml #: ../cleaners/gedit.xml ../cleaners/kde.xml ../bleachbit/Cleaner.py:468 #: ../bleachbit/Cleaner.py:663 msgid "Recent documents list" msgstr "รายชื่อเอกสารล่าสุด" #: ../cleaners/windows_explorer.xml msgid "" "This option will reset pinned locations in Quick Access to their defaults." msgstr "" "ตัวเลือกนี้จะรีเซ็ตที่ตั้งที่ปักหมุดไว้ใน 'การเข้าถึงด่วน' กลับสู่ค่าเริ่มต้น" #. In Windows 'Run' is the dialog in the Start menu #. In GNOME 'Run' is the dialog shown when typing ALT+F2' #: ../cleaners/windows_explorer.xml ../cleaners/gnome.xml msgid "Run" msgstr "เรียกใช้" #: ../cleaners/windows_explorer.xml ../cleaners/opera.xml ../cleaners/gnome.xml #: ../cleaners/google_toolbar.xml msgid "Search history" msgstr "ประวัติค้นหา" #: ../cleaners/windows_explorer.xml ../cleaners/opera.xml ../cleaners/gnome.xml #: ../cleaners/google_toolbar.xml msgid "Delete the search history" msgstr "ลบประวัติค้นหา" #: ../cleaners/windows_explorer.xml msgid "This will restart Windows Explorer." msgstr "การดำเนินการนี้จะเป็นการเริ่มการทำงานของ Windows Explorer ใหม่" #: ../cleaners/gl-117.xml ../cleaners/microsoft_office.xml #: ../cleaners/beagle.xml ../cleaners/secondlife_viewer.xml ../cleaners/x11.xml msgid "Debug logs" msgstr "ปูมดีบั๊ก" #: ../cleaners/gl-117.xml ../cleaners/microsoft_office.xml #: ../cleaners/easytag.xml ../cleaners/beagle.xml #: ../cleaners/secondlife_viewer.xml ../cleaners/x11.xml msgid "Delete the debug logs" msgstr "ลบปูมดีบั๊ก" #: ../cleaners/google_earth.xml ../cleaners/winetricks.xml ../cleaners/vuze.xml #: ../cleaners/adobe_reader.xml ../cleaners/amule.xml ../cleaners/wine.xml #: ../cleaners/internet_explorer.xml ../cleaners/gimp.xml ../cleaners/kde.xml #: ../cleaners/deepscan.xml ../bleachbit/Cleaner.py:520 msgid "Temporary files" msgstr "แฟ้มชั่วคราว" #: ../cleaners/google_earth.xml ../cleaners/winetricks.xml ../cleaners/vuze.xml #: ../cleaners/adobe_reader.xml ../cleaners/amule.xml ../cleaners/wine.xml #: ../cleaners/internet_explorer.xml ../cleaners/gimp.xml ../cleaners/kde.xml #: ../cleaners/deepscan.xml ../bleachbit/Cleaner.py:520 msgid "Delete the temporary files" msgstr "ลบแฟ้มชั่วคราว" #: ../cleaners/seamonkey.xml ../cleaners/opera.xml ../bleachbit/Cleaner.py:201 msgid "Download history" msgstr "ประวัติดาวน์โหลด" #: ../cleaners/seamonkey.xml ../cleaners/opera.xml ../bleachbit/Cleaner.py:201 msgid "List of files downloaded" msgstr "รายการแฟ้มที่ดาวน์โหลดแล้ว" #: ../cleaners/seamonkey.xml msgid "Delete the list of visited web pages" msgstr "ลบรายการหน้าเว็บที่เข้าชมแล้ว" #: ../cleaners/vuze.xml ../cleaners/deepscan.xml ../bleachbit/Cleaner.py:190 msgid "Backup files" msgstr "แฟ้มสำรอง" #: ../cleaners/vuze.xml ../cleaners/deepscan.xml ../bleachbit/Cleaner.py:191 msgid "Delete the backup files" msgstr "ลบแฟ้มสำรอง" #: ../cleaners/konqueror.xml ../cleaners/opera.xml ../cleaners/chromium.xml msgid "Current session" msgstr "วาระปัจจุบัน" #: ../cleaners/konqueror.xml ../cleaners/opera.xml ../cleaners/chromium.xml msgid "Delete the current session" msgstr "ลบวาระปัจจุบัน" #: ../cleaners/konqueror.xml ../cleaners/opera.xml ../bleachbit/Cleaner.py:213 msgid "URL history" msgstr "ประวัติ URL" #: ../cleaners/microsoft_office.xml ../cleaners/libreoffice.xml #: ../bleachbit/Cleaner.py:375 msgid "Office suite" msgstr "ชุดโปรแกรมสำนักงาน" #: ../cleaners/windows_defender.xml msgid "Anti-virus" msgstr "โปรแกรมป้องกันไวรัส" #: ../cleaners/journald.xml msgid "System journals" msgstr "" #: ../cleaners/journald.xml msgid "Clean old system journals" msgstr "" #: ../cleaners/adobe_reader.xml msgid "Document viewer" msgstr "โปรแกรมดูเอกสาร" #: ../cleaners/evolution.xml ../cleaners/thunderbird.xml msgid "Email client" msgstr "ไคลเอนต์อีเมล" #: ../cleaners/tremulous.xml msgid "Delete the list of game servers" msgstr "ลบรายชื่อเกมเซิร์ฟเวอร์" #: ../cleaners/sqlite3.xml ../cleaners/bash.xml ../cleaners/octave.xml msgid "Delete the command history" msgstr "ลบประวัติคำสั่ง" #: ../cleaners/wine.xml msgid "Compatibility layer for Windows software" msgstr "เลเยอร์ความเข้ากันได้สำหรับซอฟต์แวร์ Windows" #: ../cleaners/internet_explorer.xml ../cleaners/chromium.xml #: ../cleaners/google_chrome.xml ../bleachbit/Cleaner.py:202 msgid "Form history" msgstr "แบบฟอร์มประวัติ" #: ../cleaners/internet_explorer.xml ../bleachbit/Cleaner.py:203 msgid "A history of forms entered in web sites and in the Search bar" msgstr "แบบฟอร์มประวัติที่ถูกป้อนลงในเว็บไซต์และในแถบค้นหา" #. This software edits metadata tags, such as title and artist, in audio files #: ../cleaners/easytag.xml msgid "Audio files tagger" msgstr "ตัวแท็กแฟ้มเสียง" #: ../cleaners/apt.xml msgid "Delete obsolete files" msgstr "ลบแฟ้มที่ล้าสมัย" #: ../cleaners/apt.xml msgid "Package lists" msgstr "รายการแพคเกจ" #: ../cleaners/xine.xml ../cleaners/miro.xml ../cleaners/flash.xml msgid "Multimedia viewer" msgstr "เครื่องมือดูสื่อผสม" #: ../cleaners/recoll.xml ../cleaners/beagle.xml msgid "Search tool" msgstr "เครื่องมือค้นหา" #: ../cleaners/recoll.xml ../cleaners/beagle.xml ../cleaners/thunderbird.xml msgid "Index" msgstr "ดรรชนี" #: ../cleaners/recoll.xml msgid "" "Delete the search index, a database of words and the files they contain" msgstr "ลบดรรชนีค้นหา ฐานข้อมูลของคำศัพท์และแฟ้มที่บรรจุไว้" #: ../cleaners/gimp.xml msgid "Graphics editor" msgstr "โปรแกรมแก้ไขรูปภาพ" #: ../cleaners/exaile.xml msgid "Downloaded podcasts" msgstr "พอดคาสต์ที่ดาวน์โหลดแล้ว" #: ../cleaners/exaile.xml msgid "Delete downloaded podcasts" msgstr "ลบพอดแคสต์ที่ดาวน์โหลดแล้ว" #: ../cleaners/bash.xml msgid "Shell" msgstr "Shell" #. TRANSLATORS: DOM = Document Object Model. #: ../cleaners/opera.xml ../cleaners/epiphany.xml ../cleaners/chromium.xml #: ../cleaners/google_chrome.xml ../bleachbit/Cleaner.py:199 msgid "DOM Storage" msgstr "DOM Storage" #: ../cleaners/opera.xml ../cleaners/epiphany.xml ../cleaners/chromium.xml #: ../cleaners/google_chrome.xml ../bleachbit/Cleaner.py:199 msgid "Delete HTML5 cookies" msgstr "ลบคุกกี้ HTML5" #: ../cleaners/opera.xml ../cleaners/epiphany.xml ../cleaners/chromium.xml #: ../cleaners/google_chrome.xml ../cleaners/thunderbird.xml #: ../bleachbit/Cleaner.py:208 msgid "Passwords" msgstr "รหัสผ่าน" #: ../cleaners/opera.xml ../cleaners/epiphany.xml ../cleaners/chromium.xml #: ../cleaners/google_chrome.xml ../cleaners/thunderbird.xml #: ../bleachbit/Cleaner.py:209 msgid "" "A database of usernames and passwords as well as a list of sites that should " "not store passwords" msgstr "" "ฐานข้อมูลของชื่อผู้ใช้และรหัสผ่าน รวมถึงบัญชีของไซต์ที่ไม่น่าจะเก็บรหัสผ่าน" #: ../cleaners/opera.xml ../cleaners/epiphany.xml ../cleaners/chromium.xml #: ../cleaners/google_chrome.xml ../cleaners/thunderbird.xml #: ../bleachbit/Cleaner.py:211 msgid "This option will delete your saved passwords." msgstr "การเลือกตัวเลือกนี้จะลบรหัสผ่านที่คุณได้บันทึกไว้" #: ../cleaners/nautilus.xml msgid "Custom folders will be reset." msgstr "โฟลเดอร์กำหนดเองจะถูกล้าง" #: ../cleaners/gnome.xml ../cleaners/kde.xml msgid "Desktop environment" msgstr "สภาพแวดล้อมพื้นโต๊ะ" #: ../cleaners/screenlets.xml msgid "Widgets for the desktop" msgstr "วิดเจ็ตสำหรับพื้นโต๊ะ" #: ../cleaners/epiphany.xml msgid "Places" msgstr "ที่หลัก ๆ" #: ../cleaners/epiphany.xml msgid "" "A database of URLs including bookmarks, favicons, and a history of visited " "web sites" msgstr "" "ฐานข้อมูลของ URL ที่รวมถึง ที่คั่นหน้า, favicon " "และประวัติเว็บไซต์ที่เยี่ยมชมแล้ว" #: ../cleaners/epiphany.xml msgid "This option deletes all bookmarks." msgstr "ตัวเลือกนี้ลบที่คั่นหน้าทั้งหมด" #: ../cleaners/winrar.xml msgid "File archiver" msgstr "ตัวจัดการแฟ้มจัดเก็บ" #: ../cleaners/elinks.xml msgid "Delete the cookies, visited URLs, and search history" msgstr "ลบคุกกี้, URL ที่เยี่ยมชม และประวัติค้นหา" #: ../cleaners/chromium.xml ../cleaners/google_chrome.xml msgid "A history of forms entered in web sites" msgstr "ประวัติการกรอกแบบฟอร์มในเว็บไซต์" #: ../cleaners/chromium.xml ../cleaners/google_chrome.xml msgid "" "Delete the history which includes visited sites, downloads, and thumbnails" msgstr "ลบประวัติ ซึ่งรวมถึง ไซต์ที่เยี่ยมชม, การดาวน์โหลดและภาพย่อ" #: ../cleaners/chromium.xml ../cleaners/google_chrome.xml msgid "Search engines" msgstr "เครื่องมือค้นหา" #. 'Factory' means a search engine that is installed by default 'from the factory,' but this is different than a 'default search engine' https://lists.launchpad.net/launchpad-translators/msg00283.html #: ../cleaners/chromium.xml ../cleaners/google_chrome.xml msgid "" "Reset the search engine usage history and delete non-factory search engines, " "some of which are added automatically" msgstr "" #: ../cleaners/audacious.xml msgid "Audio player" msgstr "โปรแกรมเล่นเสียง" #: ../cleaners/rhythmbox.xml msgid "Database" msgstr "" #: ../cleaners/rhythmbox.xml msgid "" "Delete the database, which contain information such as play count and last " "played" msgstr "" #: ../cleaners/google_chrome.xml msgid "Session" msgstr "วาระ" #: ../cleaners/google_chrome.xml msgid "Delete the current and last sessions" msgstr "ลบวาระล่าสุดและวาระปัจจุบัน" #: ../cleaners/x11.xml msgid "Windowing system" msgstr "ระบบการวางหน้าต่าง" #: ../cleaners/wordpad.xml msgid "Word processor" msgstr "โปรแกรมประมวลผลคำ" #: ../cleaners/deepscan.xml msgid "Deep scan" msgstr "สแกนละเอียด" #: ../cleaners/deepscan.xml msgid "Clean files widely scattered across the disk" msgstr "" #: ../cleaners/deepscan.xml msgid "Inspect the preview for any files you want to keep." msgstr "ตรวจสอบตัวอย่างแฟ้มใดๆ ที่คุณต้องการเก็บไว้" #: ../cleaners/deepscan.xml msgid "This option is slow." msgstr "ตัวเลือกนี้ช้า" #: ../bleachbit.desktop msgid "Unnecessary file cleaner" msgstr "เครื่องมือลบแฟ้มที่ไม่จำเป็น" #: ../bleachbit.desktop msgid "Free space and maintain privacy" msgstr "เนื้อที่ว่างและการรักษาความเป็นส่วนตัว" #: ../bleachbit/FileUtilities.py:668 msgid "" "There was at least one file on a file system that does not support advanced " "overwriting." msgstr "" #: ../bleachbit/Unix.py:574 #, python-format msgid "Executable not found: %s" msgstr "ไม่พบแฟ้มโปรแกรม: %s" #. TRANSLATORS: %s expands to a name such as 'Firefox' or 'System'. #: ../bleachbit/Unix.py:623 ../bleachbit/Worker.py:136 #, python-format msgid "" "%s cannot be cleaned because it is currently running. Close it, and try " "again." msgstr "" "%s ไม่สามารถล้างได้เพราะกำลังทำงานอยู่ในปัจจุบัน ปิดโปรแกรมแล้วลองอีกครั้ง" #: ../bleachbit/GuiBasic.py:112 msgid "Delete confirmation" msgstr "ยืนยันการลบ" #: ../bleachbit/GuiBasic.py:122 msgid "" "Are you sure you want to permanently delete files according to the selected " "operations? The actual files that will be deleted may have changed since " "you ran the preview." msgstr "" "คุณแน่ใจหรือไม่ว่าต้องการลบแฟ้มอย่างถาวรตามการทำงานที่เลือก? " "แฟ้มจริงที่จะถูกลบอาจมีการเปลี่ยนแปลงตั้งแต่คุณเรียกตัวอย่าง" #: ../bleachbit/GuiBasic.py:125 msgid "Are you sure you want to permanently delete these files?" msgstr "คุณแน่ใจหรือไม่ว่าต้องการลบแฟ้มเหล่านี้อย่างถาวร?" #: ../bleachbit/GuiBasic.py:162 #, python-format msgid "" "Because you are running as root, please manually open this link in a web " "browser:\n" "%s" msgstr "" "เพราะว่าคุณกำลังใช้โปรแกรมนี้ในชื่อ root " "คุณจะต้องเปิดลิงก์นี้ในเว็บเบราว์เซอร์เอาเอง:\n" "%s" #. TRANSLATORS: %s expands to www.bleachbit.org or similar #: ../bleachbit/GuiBasic.py:174 #, python-format msgid "Open web browser to %s?" msgstr "เปิดโปรแกรมท่องเว็บเพื่อเพิ่ม %s หรือไม่?" #. TRANSLATORS: This is the label in the log indicating was #. skipped because it matches the whitelist #: ../bleachbit/Command.py:47 msgid "Skip" msgstr "ข้ามไป" #. TRANSLATORS: This is the label in the log indicating will be #. deleted (for previews) or was actually deleted #: ../bleachbit/Command.py:77 msgid "Delete" msgstr "ลบ" #: ../bleachbit/Command.py:99 msgid "" "At least one file was locked by another process, so its contents could not " "be overwritten. It will be marked for deletion upon system reboot." msgstr "" #. TRANSLATORS: The file will be deleted when the #. system reboots #: ../bleachbit/Command.py:102 msgid "Mark for deletion" msgstr "ทำเครื่องหมายสำหรับการลบ" #. TRANSLATORS: Parts of this file will be deleted #: ../bleachbit/Command.py:199 ../bleachbit/Command.py:233 #: ../bleachbit/Action.py:254 ../bleachbit/Action.py:267 #: ../bleachbit/Action.py:280 ../bleachbit/Action.py:293 #: ../bleachbit/Action.py:306 msgid "Clean file" msgstr "ลบแฟ้มทั้งหมด" #. TRANSLATORS: The file will be truncated to 0 bytes in length #: ../bleachbit/Command.py:275 msgid "Truncate" msgstr "ตัดท้าย" #: ../bleachbit/Command.py:317 msgid "Delete registry key" msgstr "ลบคีย์เรจิสตรี" #. TRANSLATORS: This is cleaner name for cleaners imported from winapp2.ini #: ../bleachbit/Winapp.py:44 msgid "Applications" msgstr "แอพพลิเคชั่น" #. TRANSLATORS: This is cleaner name for cleaners imported #. from winapp2.ini #: ../bleachbit/Winapp.py:47 msgid "Internet" msgstr "อินเทอร์เน็ต" #. TRANSLATORS: This is cleaner name for cleaners imported #. from winapp2.ini #: ../bleachbit/Winapp.py:50 msgid "Multimedia" msgstr "มัลติมีเดีย" #. TRANSLATORS: This is cleaner name for cleaners imported #. from winapp2.ini #: ../bleachbit/Winapp.py:53 msgid "Utilities" msgstr "อรรถประโยชน์" #: ../bleachbit/Winapp.py:64 msgid "Games" msgstr "เกม" #: ../bleachbit/Winapp.py:162 msgid "Imported from winapp2.ini" msgstr "นำเข้าจาก winapp2.ini" #: ../bleachbit/Cleaner.py:197 msgid "Crash reports" msgstr "การรายงานปัญหา" #: ../bleachbit/Cleaner.py:204 msgid "Session restore" msgstr "เรียกคืนวาระ" #: ../bleachbit/Cleaner.py:205 msgid "Loads the initial session after the browser closes or crashes" msgstr "โหลดวาระตั้งต้นหลังจากเบราว์เซอร์ปิดหรือขัดข้อง" #: ../bleachbit/Cleaner.py:207 msgid "Site preferences" msgstr "ตั้งค่าไซต์" #: ../bleachbit/Cleaner.py:207 msgid "Settings for individual sites" msgstr "" #. TRANSLATORS: desktop entries are .desktop files in Linux that #. make up the application menu (the menu that shows BleachBit, #. Firefox, and others. The .desktop files also associate file #. types, so clicking on an .html file in Nautilus brings up #. Firefox. #. More information: #. http://standards.freedesktop.org/menu-spec/latest/index.html#introduction #: ../bleachbit/Cleaner.py:453 msgid "Broken desktop files" msgstr "แฟ้มเดส์กท็อปชำรุด" #: ../bleachbit/Cleaner.py:454 msgid "Delete broken application menu entries and file associations" msgstr "ลบรายการเมนูโปรแกรมชำรุดและการเชื่อมโยงของแฟ้ม" #. TRANSLATORS: Localizations are files supporting specific #. languages, so applications appear in Spanish, etc. #: ../bleachbit/Cleaner.py:458 msgid "Localizations" msgstr "แฟ้มภาษา" #: ../bleachbit/Cleaner.py:459 msgid "Delete files for unwanted languages" msgstr "ลบแฟ้มสำหรับภาษาที่ไม่ต้องการ" #: ../bleachbit/Cleaner.py:461 msgid "Configure this option in the preferences." msgstr "ตั้งค่าตัวเลือกนี้ในเมนูการตั้งค่า" #: ../bleachbit/Cleaner.py:467 msgid "Rotated logs" msgstr "ปูมหมุนเวียน" #: ../bleachbit/Cleaner.py:467 msgid "Delete old system logs" msgstr "ลบปูมเก่าของระบบ" #: ../bleachbit/Cleaner.py:470 msgid "Trash" msgstr "ถังขยะ" #: ../bleachbit/Cleaner.py:470 msgid "Empty the trash" msgstr "ทำความสะอาดถังขยะ" #: ../bleachbit/Cleaner.py:476 ../bleachbit/Cleaner.py:627 #: ../bleachbit/Worker.py:184 msgid "Memory" msgstr "ความจำ" #. TRANSLATORS: 'free' means 'unallocated' #: ../bleachbit/Cleaner.py:478 msgid "Wipe the swap and free memory" msgstr "ลบพื้นที่สลับและคืนหน่วยความจำ" #: ../bleachbit/Cleaner.py:480 msgid "This option is experimental and may cause system problems." msgstr "ตัวเลือกนี้เป็นการทดลองและอาจทำให้เกิดปัญหาของระบบ" #: ../bleachbit/Cleaner.py:488 msgid "Memory dump" msgstr "memory dump" #: ../bleachbit/Cleaner.py:488 msgid "Delete the file memory.dmp" msgstr "ลบแฟ้ม memory.dmp" #. TRANSLATORS: Prefetch is Microsoft Windows jargon. #: ../bleachbit/Cleaner.py:491 msgid "Prefetch" msgstr "Prefetch" #: ../bleachbit/Cleaner.py:493 msgid "Recycle bin" msgstr "ถังขยะ" #: ../bleachbit/Cleaner.py:493 ../bleachbit/Cleaner.py:787 msgid "Empty the recycle bin" msgstr "เทขยะ" #. TRANSLATORS: 'Update' is a noun, and 'Update uninstallers' is an option to delete #. the uninstallers for software updates. #: ../bleachbit/Cleaner.py:496 msgid "Update uninstallers" msgstr "ล้างโปรแกรมถอนการติดตั้ง" #: ../bleachbit/Cleaner.py:497 msgid "" "Delete uninstallers for Microsoft updates including hotfixes, service packs, " "and Internet Explorer updates" msgstr "" "ล้าง uninstallers ทั้งหมดที่ใช้ลบข้อมูลอัปเดตของ Microsoft ซึ่งได้แก่ " "hotfixes, service packs, และการปรับปรุง Internet Explorer" #: ../bleachbit/Cleaner.py:504 ../bleachbit/Cleaner.py:727 msgid "Clipboard" msgstr "คลิปบอร์ด" #: ../bleachbit/Cleaner.py:505 msgid "" "The desktop environment's clipboard used for copy and paste operations" msgstr "คลิปบอร์ดของสภาพแวดล้อมเดสก์ท็อปที่ใช้ในการกระทำคัดลอกและแปะ" #. TRANSLATORS: "Custom" is an option allowing the user to specify which #. files and folders will be erased. #: ../bleachbit/Cleaner.py:512 ../bleachbit/GuiPreferences.py:66 msgid "Custom" msgstr "กำหนดเอง" #: ../bleachbit/Cleaner.py:513 msgid "Delete user-specified files and folders" msgstr "ลบแฟ้มและโฟลเดอร์ที่ผู้ใช้สร้างไว้" #. TRANSLATORS: 'free' means 'unallocated' #: ../bleachbit/Cleaner.py:515 msgid "Free disk space" msgstr "เนื้อที่ว่างในดิสก์" #. TRANSLATORS: 'free' means 'unallocated' #: ../bleachbit/Cleaner.py:517 msgid "Overwrite free disk space to hide deleted files" msgstr "เขียนทับเนื้อที่ว่างในดิสก์เพื่อซ่อนแฟ้มที่ถูกลบ" #: ../bleachbit/Cleaner.py:518 msgid "This option is very slow." msgstr "ตัวเลือกนี้จะทำงานได้ช้ามาก" #: ../bleachbit/Cleaner.py:522 msgid "The system in general" msgstr "ระบบทั่วไป" #: ../bleachbit/Cleaner.py:524 ../bleachbit/Cleaner.py:857 msgid "System" msgstr "ระบบ" #. TRANSLATORS: 'Free' means 'unallocated.' #. %s expands to a path such as C:\ or /tmp/ #: ../bleachbit/Cleaner.py:735 ../bleachbit/Cleaner.py:890 #, python-format msgid "Overwrite free disk space %s" msgstr "เขียนทับบนพื้นที่ว่างของดิสก์ %s" #: ../bleachbit/RecognizeCleanerML.py:59 msgid "Security warning" msgstr "คำเตือนความปลอดภัย" #: ../bleachbit/RecognizeCleanerML.py:72 msgid "" "These cleaner definitions are new or have changed. Malicious definitions can " "damage your system. If you do not trust these changes, delete the files or " "quit." msgstr "" "คำจำกัดความเครื่องมือทำความสะอาดเหล่านี้ใหม่หรือมีการเปลี่ยนแปลง " "คำจำกัดความที่เป็นอันตรายสามารถทำลายระบบของคุณ " "ถ้าคุณไม่เชื่อถือการเปลี่ยนแปลงเหล่านี้ ลบแฟ้มต่างๆ หรือออกจากโปรแกรม" #: ../bleachbit/RecognizeCleanerML.py:88 msgctxt "column_label" msgid "Delete" msgstr "ลบ" #: ../bleachbit/RecognizeCleanerML.py:93 msgctxt "column_label" msgid "Filename" msgstr "ชื่อแฟ้ม" #. TRANSLATORS: This indicates an error. The special keyword #. %(operation)s will be replaced by 'firefox' or 'opera' or #. some other cleaner ID. The special keyword %(msg)s will be #. replaced by a message such as 'Permission denied.' #: ../bleachbit/Worker.py:74 #, python-format msgid "Exception while running operation '%(operation)s': '%(msg)s'" msgstr "ข้อยกเว้นขณะกำลังเรียกทำงาน '%(operation)s': '%(msg)s'" #. TRANSLATORS: 'free' means 'unallocated' #: ../bleachbit/Worker.py:182 msgid "Please wait. Wiping free disk space." msgstr "โปรดรอสักครู่ กำลังล้างเพื่อเพิ่มพื้นที่ว่าง" #. TRANSLATORS: %s is replaced with Firefox, System, etc. #: ../bleachbit/Worker.py:184 ../bleachbit/Worker.py:332 #, python-format msgid "Please wait. Cleaning %s." msgstr "กรุณารอ กำลังทำความสะอาด %s" #: ../bleachbit/Worker.py:199 msgid "Please wait. Wiping file system metadata." msgstr "โปรดรอสักครู่ กำลังล้าง file system metadata" #: ../bleachbit/Worker.py:202 msgid "Please wait. Cleaning up after wiping file system metadata." msgstr "โปรดรอสักครู่ กำลังเก็บกวาดหลังการล้าง file system metadata" #: ../bleachbit/Worker.py:205 #, python-format msgid "About %d minute remaining." msgid_plural "About %d minutes remaining." msgstr[0] "เหลืออีกประมาณ %d นาที" #. TRANSLATORS: This refers to disk space that was #. really recovered (in other words, not a preview) #: ../bleachbit/Worker.py:272 #, python-format msgid "Disk space recovered: %s" msgstr "เนื้อที่ว่างในดิสก์ที่กู้คืน: %s" #. TRANSLATORS: This refers to a preview (no real #. changes were made yet) #: ../bleachbit/Worker.py:276 #, python-format msgid "Disk space to be recovered: %s" msgstr "เนื้อที่ว่างในดิสก์ที่กู้คืน:% s" #. TRANSLATORS: This refers to the number of files really #. deleted (in other words, not a preview). #: ../bleachbit/Worker.py:281 #, python-format msgid "Files deleted: %d" msgstr "แฟ้มที่ลบ: %d" #. TRANSLATORS: This refers to the number of files that #. would be deleted (in other words, simply a preview). #: ../bleachbit/Worker.py:285 #, python-format msgid "Files to be deleted: %d" msgstr "แฟ้มที่ลบ: %d" #: ../bleachbit/Worker.py:288 #, python-format msgid "Special operations: %d" msgstr "การทำงานพิเศษ: %d" #: ../bleachbit/Worker.py:291 #, python-format msgid "Errors: %d" msgstr "ข้อผิดพลาด: %d" #. TRANSLATORS: The "deep scan" feature searches over broad #. areas of the file system such as the user's whole home directory #. or all the system executables. #: ../bleachbit/Worker.py:306 msgid "Please wait. Running deep scan." msgstr "โปรดรอสักครู่ กำลังทำการสแกนละเอียด" #. TRANSLATORS: %s is replaced with Firefox, System, etc. #: ../bleachbit/Worker.py:335 #, python-format msgid "Please wait. Previewing %s." msgstr "กรุณารอ กำลังแสดงตัวอย่าง %s" #: ../bleachbit/Update.py:80 msgid "New winapp2.ini was downloaded." msgstr "winapp2.ini รุ่นใหม่ถูกดาวน์โหลดไว้แล้ว" #: ../bleachbit/Update.py:125 msgid "Update BleachBit" msgstr "ปรับรุ่น BleachBit" #: ../bleachbit/Update.py:130 msgid "A new version is available." msgstr "มีรุ่นใหม่ที่ใช้ได้" #. TRANSLATORS: %s expands to version such as '0.8.4' or '0.8.5beta' or #. similar #: ../bleachbit/Update.py:139 #, python-format msgid "Update to version %s" msgstr "อัปเดตเป็นรุ่น %s" #: ../bleachbit/Update.py:164 #, python-format msgid "" "Error when opening a network connection to %s to check for updates. Please " "verify the network is working." msgstr "" "เกิดข้อผิดพลาดขณะเปิดใช้งานการเชื่อมต่อเครือข่ายไปที่ %s เพื่อตรวจสอบอัปเดต " "โปรดตรวจสอบให้แน่ใจว่าเครือข่ายทำงานอยู่" #: ../bleachbit/CLI.py:106 #, python-format msgid "not a valid cleaner: %s" msgstr "ไม่ใช่เครื่องมือทำความสะอาดที่ถูกต้อง: %s" #. TRANSLATORS: This is the command line usage. Don't translate #. %prog, but do translate usage, options, cleaner, and option. #. More information about the command line is here #. https://www.bleachbit.org/documentation/command-line #: ../bleachbit/CLI.py:133 msgid "usage: %prog [options] cleaner.option1 cleaner.option2" msgstr "" "วิธีใช้: %prog [ตัวเลือก] เครื่องมือความสะอาด.ตัวเลือก1 " "เครื่องมือความสะอาด.ตัวเลือก2" #: ../bleachbit/CLI.py:136 msgid "list cleaners" msgstr "รายชื่อเครื่องมือทำความสะอาด" #. TRANSLATORS: predefined cleaners are for applications, such as Firefox and Flash. #. This is different than cleaning an arbitrary file, such as a #. spreadsheet on the desktop. #: ../bleachbit/CLI.py:141 msgid "run cleaners to delete files and make other permanent changes" msgstr "เรียกโปรแกรมล้างเพื่อลบแฟ้มและทำการเปลี่ยนแปลงสิทธิ์" #: ../bleachbit/CLI.py:144 msgid "shred specific files or folders" msgstr "ล้างแฟ้มหรือโฟลเดอร์ที่เลือก" #: ../bleachbit/CLI.py:146 msgid "show system information" msgstr "แสดงข้อมูลระบบ" #: ../bleachbit/CLI.py:148 msgid "launch the graphical interface" msgstr "ใช้อินเตอร์เฟซแบบกราฟิก" #: ../bleachbit/CLI.py:152 msgid "do not prompt for administrator privileges" msgstr "ไม่ต้องถามเกี่ยวกับสิทธิ์ของผู้ดูแลระบบ" #: ../bleachbit/CLI.py:157 msgid "preview files to be deleted and other changes" msgstr "ตัวอย่างแฟ้มที่จะถูกลบและมีเปลี่ยนแปลง" #: ../bleachbit/CLI.py:161 msgid "use options set in the graphical interface" msgstr "ใช้ตัวเลือกเดียวกันกับที่ตั้งไว้ตอนใช้อินเตอร์เฟซแบบกราฟิก" #: ../bleachbit/CLI.py:164 msgid "update winapp2.ini, if a new version is available" msgstr "อัปเดตข้อมูลสำหรับ winapp2.ini ถ้ามีเวอร์ชั่นใหม่ที่ใช้ได้" #: ../bleachbit/CLI.py:166 msgid "output version information and exit" msgstr "แสดงข้อมูลรุ่นของโปรแกรมแล้วออก" #: ../bleachbit/CLI.py:168 msgid "overwrite files to hide contents" msgstr "เขียนทับแฟ้มเพื่อซ่อนข้อมูล" #. TRANSLATORS: this is the context menu #: ../bleachbit/Action.py:382 ../bleachbit/GUI.py:632 msgid "Clean" msgstr "ล้าง" #: ../bleachbit/Action.py:418 #, python-format msgid "Run external command: %s" msgstr "" #: ../bleachbit/GUI.py:135 ../bleachbit/GuiPreferences.py:296 msgid "Name" msgstr "ชื่อ" #: ../bleachbit/GUI.py:143 msgid "Active" msgstr "ทำงาน" #. TRANSLATORS: Size is the label for the column that shows how #. much space an option would clean or did clean #: ../bleachbit/GUI.py:155 msgid "Size" msgstr "ขนาด" #. TRANSLATORS: %(cleaner) may be Firefox, System, etc. #. %(option) may be cache, logs, cookies, etc. #. %(warning) may be 'This option is really slow' #: ../bleachbit/GUI.py:186 #, python-format msgid "" "Warning regarding %(cleaner)s - %(option)s:\n" "\n" "%(warning)s" msgstr "" #: ../bleachbit/GUI.py:372 msgid "You must select an operation" msgstr "คุณต้องเลือกการทำงาน" #: ../bleachbit/GUI.py:391 ../bleachbit/GUI.py:413 msgid "Done." msgstr "เสร็จแล้ว" #: ../bleachbit/GUI.py:426 msgid "Program to clean unnecessary files" msgstr "โปรแกรมล้างแฟ้มที่ไม่จำเป็น" #: ../bleachbit/GUI.py:436 msgid "" "GNU General Public License version 3 or later.\n" "See http://www.gnu.org/licenses/gpl-3.0.txt" msgstr "" "GNU General Public License รุ่น 3 หรือใหม่กว่า\n" "ดู http://www.gnu.org/licenses/gpl-3.0.txt" #. TRANSLATORS: Maintain the names of translators here. #. Launchpad does this automatically for translations #. typed in Launchpad. This is a special string shown #. in the 'About' box. #: ../bleachbit/GUI.py:442 msgid "translator-credits" msgstr "" "Launchpad Contributions:\n" " Akom C. https://launchpad.net/~knight2000\n" " Rockworld https://launchpad.net/~rockrock2222222\n" " SiraNokyoongtong https://launchpad.net/~gumara\n" " shane.fox https://launchpad.net/~shanefox" #: ../bleachbit/GUI.py:454 msgid "System information" msgstr "ข้อมูลระบบ" #: ../bleachbit/GUI.py:527 msgid "Choose files to shred" msgstr "เลือกแฟ้มที่แบ่งปัน" #: ../bleachbit/GUI.py:530 msgid "Choose folder to shred" msgstr "เลือกโฟลเดอร์ที่จะล้าง" #: ../bleachbit/GUI.py:594 ../bleachbit/GuiPreferences.py:197 #: ../bleachbit/GuiPreferences.py:326 ../bleachbit/GuiPreferences.py:367 msgid "Choose a folder" msgstr "เลือกโฟลเดอร์" #. TRANSLATORS: this is the context menu #: ../bleachbit/GUI.py:627 msgid "Preview" msgstr "ตัวอย่าง" #: ../bleachbit/GUI.py:734 msgid "_Shred Files" msgstr "แ_บ่งปันแฟ้ม" #: ../bleachbit/GUI.py:736 msgid "Sh_red Folders" msgstr "ล้า_งโฟลเดอร์" #: ../bleachbit/GUI.py:738 msgid "_Wipe Free Space" msgstr "_ล้างเพื่อเพิ่มพื้นที่ว่าง" #: ../bleachbit/GUI.py:740 msgid "S_hred Settings and Quit" msgstr "ล้_างค่าตั้งทั้งหมดแล้วออก" #: ../bleachbit/GUI.py:742 msgid "_Quit" msgstr "_ออก" #: ../bleachbit/GUI.py:744 msgid "_File" msgstr "แ_ฟ้ม" #: ../bleachbit/GUI.py:746 ../bleachbit/GuiPreferences.py:58 msgid "Preferences" msgstr "ปรับแต่ง" #: ../bleachbit/GUI.py:747 msgid "_Edit" msgstr "แ_ก้ไข" #: ../bleachbit/GUI.py:748 msgid "Help Contents" msgstr "สารบัญวิธีใช้" #: ../bleachbit/GUI.py:751 msgid "_Release Notes" msgstr "_บันทึกประจำรุ่น" #: ../bleachbit/GUI.py:754 msgid "_System Information" msgstr "ข้อมูล_ระบบ" #: ../bleachbit/GUI.py:757 msgid "_About" msgstr "เ_กี่ยวกับ" #: ../bleachbit/GUI.py:758 msgid "_Help" msgstr "_วิธีใช้" #: ../bleachbit/GUI.py:783 msgctxt "button" msgid "Preview" msgstr "แสดงตัวอย่าง" #: ../bleachbit/GUI.py:788 msgid "Preview files in the selected operations (without deleting any files)" msgstr "ตัวอย่างแฟ้มในการทำงานที่เลือก (โดยไม่ลบแฟ้มใดๆ)" #: ../bleachbit/GUI.py:798 msgctxt "button" msgid "Clean" msgstr "ล้าง" #: ../bleachbit/GUI.py:802 msgid "Clean files in the selected operations" msgstr "ล้างแฟ้มโดยทำตามคำสั่งที่เลือก" #: ../bleachbit/GUI.py:893 msgid "Error when checking for updates: " msgstr "เกิดข้อผิดพลาดเมื่อกำลังตรวจสอบการปรับรุ่น: " #: ../bleachbit/GUI.py:932 msgid "" "Error loading the SQLite module: the antivirus software may be blocking it." msgstr "ไม่สามารถโหลดมอดูล SQLite ได้: อาจมีซอฟต์แวร์ป้องกันไวรัสบล็อกมันไว้" #: ../bleachbit/GUI.py:935 msgid "" "You are running BleachBit with administrative privileges for cleaning shared " "parts of the system, and references to the user profile folder will clean " "only the root account." msgstr "" #: ../bleachbit/GUI.py:940 msgid "" "Run BleachBit with administrator privileges to improve the accuracy of " "overwriting the contents of files." msgstr "" #: ../bleachbit/GuiPreferences.py:64 msgid "General" msgstr "ทั่วไป" #: ../bleachbit/GuiPreferences.py:67 msgid "Drives" msgstr "ไดรว์" #: ../bleachbit/GuiPreferences.py:70 msgid "Languages" msgstr "ภาษา" #: ../bleachbit/GuiPreferences.py:72 msgid "Whitelist" msgstr "บัญชีขาว" #: ../bleachbit/GuiPreferences.py:117 msgid "Check periodically for software updates via the Internet" msgstr "ตรวจสอบเป็นระยะๆ สำหรับการปรับรุ่นซอฟต์แวร์ผ่านทางอินเทอร์เน็ต" #: ../bleachbit/GuiPreferences.py:122 msgid "" "If an update is found, you will be given the option to view information " "about it. Then, you may manually download and install the update." msgstr "" "ถ้าพบการปรับรุ่น คุณจะได้รับตัวเลือกที่จะดูข้อมูลเกี่ยวกับซอฟต์แวร์ " "จากนั้นคุณอาจดาวน์โหลดและติดตั้งการปรับรุ่นเอง" #: ../bleachbit/GuiPreferences.py:128 msgid "Check for new beta releases" msgstr "ตรวจสอบสำหรับ new beta releases" #: ../bleachbit/GuiPreferences.py:137 msgid "Download and update cleaners from community (winapp2.ini)" msgstr "ดาวน์โหลดและอัปเดตโปรแกรมล้างจากชุมชน (winapp2.ini)" #. TRANSLATORS: This means to hide cleaners which would do #. nothing. For example, if Firefox were never used on #. this system, this option would hide Firefox to simplify #. the list of cleaners. #: ../bleachbit/GuiPreferences.py:151 msgid "Hide irrelevant cleaners" msgstr "ซ่อนเครื่องมือทำความสะอาดที่ไม่เกี่ยวข้อง" #. TRANSLATORS: Overwriting is the same as shredding. It is a way #. to prevent recovery of the data. You could also translate #. 'Shred files to prevent recovery.' #: ../bleachbit/GuiPreferences.py:159 msgid "Overwrite contents of files to prevent recovery" msgstr "" #: ../bleachbit/GuiPreferences.py:163 msgid "" "Overwriting is ineffective on some file systems and with certain BleachBit " "operations. Overwriting is significantly slower." msgstr "" "การเขียนทับไม่ได้ผลในระบบแฟ้มบางอย่างและมีการทำงาน BleachBit บางอย่าง " "การเขียนทับเป็นสิ่งที่ช้ามากอย่างสำคัญ" #: ../bleachbit/GuiPreferences.py:166 msgid "Start BleachBit with computer" msgstr "เริ่ม BleachBit พร้อมคอมพิวเตอร์" #: ../bleachbit/GuiPreferences.py:172 msgid "Exit after cleaning" msgstr "ปิดโปรแกรมหลังจากล้างเสร็จแล้ว" #: ../bleachbit/GuiPreferences.py:178 msgid "Confirm before delete" msgstr "ถามก่อนลบ" #: ../bleachbit/GuiPreferences.py:186 msgid "Use IEC sizes (1 KiB = 1024 bytes) instead of SI (1 kB = 1000 bytes)" msgstr "" "ใช้ขนาดแบบ IEC (1 กิโลไบต์ = 1024 ไบต์) แทน SI (1 กิโลไบต์ = 1000 ไบต์)" #: ../bleachbit/GuiPreferences.py:221 msgid "" "Choose a writable folder for each drive for which to overwrite free space." msgstr "" "เลือกโฟลเดอร์ที่สามารถเขียนข้อมูลลงไปได้สำหรับแต่ละไดรฟ์เพื่อเขียนทับข้อมูลเก" "ี่ยวกับพื้นที่ว่าง" #. TRANSLATORS: In the preferences dialog, this button adds a path to #. the list of paths #: ../bleachbit/GuiPreferences.py:243 msgctxt "button" msgid "Add" msgstr "เพิ่ม" #. TRANSLATORS: In the preferences dialog, this button removes a path #. from the list of paths #: ../bleachbit/GuiPreferences.py:247 ../bleachbit/GuiPreferences.py:458 msgctxt "button" msgid "Remove" msgstr "ลบ" #: ../bleachbit/GuiPreferences.py:272 msgid "All languages will be deleted except those checked." msgstr "ทุกภาษาจะถูกลบยกเว้นภาษาที่ถูกเลือก" #: ../bleachbit/GuiPreferences.py:288 msgid "Preserve" msgstr "รักษา" #: ../bleachbit/GuiPreferences.py:292 msgid "Code" msgstr "รหัส" #: ../bleachbit/GuiPreferences.py:313 ../bleachbit/GuiPreferences.py:354 msgid "Choose a file" msgstr "เลือกแฟ้ม" #: ../bleachbit/GuiPreferences.py:320 ../bleachbit/GuiPreferences.py:361 #: ../bleachbit/GuiPreferences.py:405 msgid "File" msgstr "แฟ้ม" #: ../bleachbit/GuiPreferences.py:334 ../bleachbit/GuiPreferences.py:375 #: ../bleachbit/GuiPreferences.py:407 msgid "Folder" msgstr "โฟลเดอร์" #: ../bleachbit/GuiPreferences.py:417 msgid "Theses paths will not be deleted or modified." msgstr "จะไม่มีการลบหรือเปลี่ยนแปลงข้อมูลในเส้นทางเหล่านี้" #: ../bleachbit/GuiPreferences.py:420 msgid "These locations can be selected for deletion." msgstr "สามารถเลือกตำแหน่งที่ต้องการให้ล้างข้อมูลได้" #: ../bleachbit/GuiPreferences.py:428 msgid "Type" msgstr "ประเภท" #. TRANSLATORS: In the tree view "Path" is used generically to refer to a #. file, a folder, or a pattern describing either #: ../bleachbit/GuiPreferences.py:434 msgid "Path" msgstr "เส้นทาง" #: ../bleachbit/GuiPreferences.py:446 msgctxt "button" msgid "Add file" msgstr "เพิ่มเอกสาร" #: ../bleachbit/GuiPreferences.py:452 msgctxt "button" msgid "Add folder" msgstr "เพิ่มโฟลเดอร์" bleachbit-2.0/po/nb.po0000644000175000017500000012642713245436307012772 0ustar hlehle# Norwegian Bokmal translation for bleachbit # Copyright (c) 2009 Rosetta Contributors and Canonical Ltd 2009 # This file is distributed under the same license as the bleachbit package. # FIRST AUTHOR , 2009. # msgid "" msgstr "" "Project-Id-Version: bleachbit\n" "Report-Msgid-Bugs-To: FULL NAME \n" "POT-Creation-Date: 2015-09-11 16:02-0600\n" "PO-Revision-Date: 2015-10-06 13:47+0000\n" "Last-Translator: Harald H. \n" "Language-Team: Norwegian Bokmal \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n != 1;\n" "X-Launchpad-Export-Date: 2015-10-07 02:16+0000\n" "X-Generator: Launchpad (build 17802)\n" #: ../cleaners/mc.xml ../cleaners/tortoisesvn.xml ../cleaners/vim.xml #: ../cleaners/safari.xml ../cleaners/links2.xml ../cleaners/seamonkey.xml #: ../cleaners/realplayer.xml ../cleaners/windows_defender.xml #: ../cleaners/d4x.xml ../cleaners/sqlite3.xml #: ../cleaners/internet_explorer.xml ../cleaners/libreoffice.xml #: ../cleaners/easytag.xml ../cleaners/bash.xml ../cleaners/nautilus.xml #: ../cleaners/octave.xml ../cleaners/elinks.xml ../cleaners/chromium.xml #: ../cleaners/google_chrome.xml msgid "History" msgstr "Historikk" #: ../cleaners/mc.xml ../cleaners/tortoisesvn.xml ../cleaners/links2.xml #: ../cleaners/realplayer.xml ../cleaners/d4x.xml ../cleaners/libreoffice.xml #: ../cleaners/easytag.xml ../cleaners/nautilus.xml ../cleaners/gnome.xml #: ../bleachbit/Cleaner.py:348 ../bleachbit/Cleaner.py:422 #: ../bleachbit/Cleaner.py:431 msgid "Delete the usage history" msgstr "Slett brukshistorikk" #: ../cleaners/gpodder.xml ../cleaners/hippo_opensim_viewer.xml #: ../cleaners/thumbnails.xml ../cleaners/safari.xml ../cleaners/emesene.xml #: ../cleaners/liferea.xml ../cleaners/seamonkey.xml ../cleaners/vuze.xml #: ../cleaners/yahoo_messenger.xml ../cleaners/pidgin.xml #: ../cleaners/adobe_reader.xml ../cleaners/evolution.xml #: ../cleaners/tremulous.xml ../cleaners/libreoffice.xml ../cleaners/xine.xml #: ../cleaners/nexuiz.xml ../cleaners/exaile.xml ../cleaners/opera.xml #: ../cleaners/amsn.xml ../cleaners/gftp.xml ../cleaners/miro.xml #: ../cleaners/beagle.xml ../cleaners/kde.xml ../cleaners/epiphany.xml #: ../cleaners/flash.xml ../cleaners/secondlife_viewer.xml #: ../cleaners/java.xml ../cleaners/chromium.xml ../cleaners/audacious.xml #: ../cleaners/rhythmbox.xml ../cleaners/google_chrome.xml #: ../cleaners/thunderbird.xml ../bleachbit/Cleaner.py:193 #: ../bleachbit/Cleaner.py:369 ../bleachbit/Cleaner.py:454 msgid "Cache" msgstr "Hurtiglager" #: ../cleaners/gpodder.xml ../cleaners/yum.xml #: ../cleaners/hippo_opensim_viewer.xml ../cleaners/thumbnails.xml #: ../cleaners/windows_explorer.xml ../cleaners/liferea.xml #: ../cleaners/vuze.xml ../cleaners/yahoo_messenger.xml ../cleaners/pidgin.xml #: ../cleaners/adobe_reader.xml ../cleaners/evolution.xml #: ../cleaners/libreoffice.xml ../cleaners/apt.xml ../cleaners/xine.xml #: ../cleaners/nexuiz.xml ../cleaners/exaile.xml ../cleaners/amsn.xml #: ../cleaners/gftp.xml ../cleaners/miro.xml ../cleaners/beagle.xml #: ../cleaners/kde.xml ../cleaners/flash.xml ../cleaners/secondlife_viewer.xml #: ../cleaners/java.xml ../cleaners/audacious.xml ../cleaners/rhythmbox.xml #: ../bleachbit/Cleaner.py:369 ../bleachbit/Cleaner.py:454 #: ../bleachbit/Cleaner.py:488 ../bleachbit/Cleaner.py:490 msgid "Delete the cache" msgstr "Slett hurtiglager" #. TRANSLATORS: Vacuum is a verb. The term is jargon #. from the SQLite database. Microsoft Access uses #. the term 'Compact Database' (which you may translate #. instead). Another synonym is 'defragment.' #: ../cleaners/gpodder.xml ../cleaners/yum.xml ../cleaners/safari.xml #: ../cleaners/liferea.xml ../cleaners/chromium.xml #: ../cleaners/google_chrome.xml ../cleaners/thunderbird.xml #: ../bleachbit/Cleaner.py:213 ../bleachbit/Cleaner.py:359 #: ../bleachbit/Action.py:340 msgid "Vacuum" msgstr "Defragmenter" #: ../cleaners/gpodder.xml ../cleaners/yum.xml ../cleaners/safari.xml #: ../cleaners/liferea.xml ../cleaners/chromium.xml #: ../cleaners/google_chrome.xml ../cleaners/thunderbird.xml #: ../bleachbit/Cleaner.py:214 msgid "" "Clean database fragmentation to reduce space and improve speed without " "removing any data" msgstr "" "Rydd opp databasefragmentering for å frigjøre lagringsplass og øke hastighet " "uten å fjerne data" #: ../cleaners/yum.xml ../cleaners/apt.xml msgid "Package manager" msgstr "Pakkebehandler" #: ../cleaners/warzone2100.xml ../cleaners/hippo_opensim_viewer.xml #: ../cleaners/gl-117.xml ../cleaners/tremulous.xml ../cleaners/nexuiz.xml #: ../cleaners/secondlife_viewer.xml msgid "Game" msgstr "Spill" #: ../cleaners/warzone2100.xml ../cleaners/hippo_opensim_viewer.xml #: ../cleaners/teamviewer.xml ../cleaners/realplayer.xml ../cleaners/vuze.xml #: ../cleaners/yahoo_messenger.xml ../cleaners/amule.xml #: ../cleaners/easytag.xml ../cleaners/exaile.xml ../cleaners/screenlets.xml #: ../cleaners/gftp.xml ../cleaners/miro.xml ../cleaners/audacious.xml #: ../bleachbit/Cleaner.py:485 msgid "Logs" msgstr "Logger" #: ../cleaners/warzone2100.xml ../cleaners/hippo_opensim_viewer.xml #: ../cleaners/teamviewer.xml ../cleaners/realplayer.xml ../cleaners/vuze.xml #: ../cleaners/yahoo_messenger.xml ../cleaners/amule.xml #: ../cleaners/exaile.xml ../cleaners/screenlets.xml ../cleaners/gftp.xml #: ../cleaners/miro.xml ../cleaners/audacious.xml ../bleachbit/Cleaner.py:485 msgid "Delete the logs" msgstr "Slett logger" #: ../cleaners/thumbnails.xml ../cleaners/windows_explorer.xml msgid "Thumbnails" msgstr "Miniatyrbilder" #: ../cleaners/thumbnails.xml msgid "Icons for files on the system" msgstr "Ikoner for filer på systemet" #: ../cleaners/vim.xml ../cleaners/gedit.xml msgid "Editor" msgstr "Redigerer" #: ../cleaners/vim.xml msgid "" "Delete ~/.viminfo which includes file history, command history, and buffers" msgstr "Slett ~./vminfo (historikk, brukte kommandoer og buffer)" #: ../cleaners/filezilla.xml ../cleaners/transmission.xml ../cleaners/vuze.xml #: ../cleaners/amule.xml ../cleaners/gftp.xml msgid "File transfer client" msgstr "Filoverføringsklient" #: ../cleaners/filezilla.xml ../cleaners/paint.xml #: ../cleaners/windows_media_player.xml ../cleaners/windows_explorer.xml #: ../cleaners/teamviewer.xml ../cleaners/microsoft_office.xml #: ../cleaners/vlc.xml ../cleaners/adobe_reader.xml ../cleaners/winamp.xml #: ../cleaners/winzip.xml ../cleaners/winrar.xml ../cleaners/audacious.xml #: ../cleaners/wordpad.xml ../bleachbit/Cleaner.py:370 msgid "Most recently used" msgstr "Nylig brukt" #: ../cleaners/filezilla.xml ../cleaners/windows_explorer.xml #: ../cleaners/gwenview.xml ../cleaners/adobe_reader.xml ../cleaners/gedit.xml #: ../cleaners/kde.xml ../cleaners/audacious.xml ../bleachbit/Cleaner.py:371 #: ../bleachbit/Cleaner.py:468 msgid "Delete the list of recently used documents" msgstr "Slett listen over nylig brukte dokumenter" #: ../cleaners/skype.xml ../cleaners/xchat.xml ../cleaners/emesene.xml #: ../cleaners/yahoo_messenger.xml ../cleaners/pidgin.xml ../cleaners/amsn.xml msgid "Chat client" msgstr "Chatteklient" #: ../cleaners/skype.xml ../cleaners/xchat.xml ../cleaners/emesene.xml #: ../cleaners/seamonkey.xml ../cleaners/yahoo_messenger.xml #: ../cleaners/pidgin.xml ../cleaners/amsn.xml msgid "Chat logs" msgstr "Chattelogger" #: ../cleaners/skype.xml ../cleaners/xchat.xml ../cleaners/emesene.xml #: ../cleaners/seamonkey.xml ../cleaners/yahoo_messenger.xml #: ../cleaners/pidgin.xml ../cleaners/amsn.xml msgid "Delete the chat logs" msgstr "Slett chatteloggene" #: ../cleaners/skype.xml msgid "Installers" msgstr "Installasjonsfiler" #: ../cleaners/skype.xml msgid "Delete cached patches and installers" msgstr "Slett mellomlagrede programrettelser og installasjonsfiler" #: ../cleaners/safari.xml ../cleaners/links2.xml ../cleaners/seamonkey.xml #: ../cleaners/konqueror.xml ../cleaners/internet_explorer.xml #: ../cleaners/opera.xml ../cleaners/epiphany.xml ../cleaners/elinks.xml #: ../cleaners/chromium.xml ../cleaners/google_chrome.xml #: ../bleachbit/Cleaner.py:225 msgid "Web browser" msgstr "Nettleser" #: ../cleaners/safari.xml ../cleaners/seamonkey.xml ../cleaners/opera.xml #: ../cleaners/epiphany.xml ../cleaners/chromium.xml #: ../cleaners/google_chrome.xml ../cleaners/thunderbird.xml #: ../bleachbit/Cleaner.py:194 msgid "Delete the web cache, which reduces time to display revisited pages" msgstr "" "Slett midlertidige Internett-filer, som reduserer tiden det tar å vise " "tidligere besøkte nettsider" #: ../cleaners/safari.xml ../cleaners/liferea.xml ../cleaners/seamonkey.xml #: ../cleaners/realplayer.xml ../cleaners/konqueror.xml #: ../cleaners/internet_explorer.xml ../cleaners/opera.xml #: ../cleaners/epiphany.xml ../cleaners/flash.xml ../cleaners/silverlight.xml #: ../cleaners/chromium.xml ../cleaners/google_chrome.xml #: ../cleaners/thunderbird.xml ../bleachbit/Cleaner.py:195 msgid "Cookies" msgstr "Informasjonskapsler" #: ../cleaners/safari.xml ../cleaners/liferea.xml ../cleaners/seamonkey.xml #: ../cleaners/realplayer.xml ../cleaners/konqueror.xml #: ../cleaners/internet_explorer.xml ../cleaners/opera.xml #: ../cleaners/epiphany.xml ../cleaners/flash.xml ../cleaners/silverlight.xml #: ../cleaners/chromium.xml ../cleaners/google_chrome.xml #: ../cleaners/thunderbird.xml ../bleachbit/Cleaner.py:196 msgid "" "Delete cookies, which contain information such as web site preferences, " "authentication, and tracking identification" msgstr "" "Slett informasjonskapsler, som inneholder informasjon om blant annet " "nettsidepreferanser, autentisering og sporingsidentifikasjon" #: ../cleaners/safari.xml ../cleaners/konqueror.xml #: ../cleaners/internet_explorer.xml ../cleaners/opera.xml #: ../bleachbit/Cleaner.py:212 msgid "List of visited web pages" msgstr "Liste over besøkte nettsider" #. Torrent software can block a list of IP addresses, such as those that may belong to malware or anti-piracy organizations #: ../cleaners/transmission.xml msgid "Blocklists" msgstr "Blokklister" #: ../cleaners/transmission.xml ../cleaners/windows_defender.xml #: ../cleaners/beagle.xml ../cleaners/thunderbird.xml ../cleaners/deepscan.xml #: ../bleachbit/Cleaner.py:198 msgid "Delete the files" msgstr "Slett filene" #: ../cleaners/transmission.xml msgid "Blocklists will need update to work." msgstr "Blokklistene må oppdateres for å fungere." #: ../cleaners/transmission.xml msgid "Torrents" msgstr "Torrenter" #: ../cleaners/transmission.xml msgid "Delete the torrents (just the metadata but not the files described)" msgstr "Slett torrentene (bare metadataen men ikke filene som er beskrevet)" #: ../cleaners/paint.xml ../cleaners/windows_media_player.xml #: ../cleaners/windows_explorer.xml ../cleaners/teamviewer.xml #: ../cleaners/microsoft_office.xml ../cleaners/vlc.xml ../cleaners/winamp.xml #: ../cleaners/winzip.xml ../cleaners/winrar.xml ../cleaners/wordpad.xml msgid "Delete the most recently used list" msgstr "Slett listen over nylig brukte elementer" #: ../cleaners/emesene.xml msgid "Delete the avatars and emoticons cache" msgstr "Slett hurtiglageret for avatarer og smilefjes" #: ../cleaners/windows_media_player.xml ../cleaners/realplayer.xml #: ../cleaners/vlc.xml ../cleaners/winamp.xml msgid "Media player" msgstr "Medieavspiller" #: ../cleaners/windows_explorer.xml ../cleaners/nautilus.xml msgid "File manager" msgstr "Filbehandler" #: ../cleaners/windows_explorer.xml ../cleaners/gwenview.xml #: ../cleaners/gedit.xml ../cleaners/kde.xml ../bleachbit/Cleaner.py:467 msgid "Recent documents list" msgstr "Nylig brukte dokumenter" #. In Windows 'Run' is the dialog in the Start menu #. In GNOME 'Run' is the dialog shown when typing ALT+F2' #: ../cleaners/windows_explorer.xml ../cleaners/gnome.xml msgid "Run" msgstr "Kjør" #: ../cleaners/windows_explorer.xml ../cleaners/opera.xml #: ../cleaners/gnome.xml ../cleaners/google_toolbar.xml msgid "Search history" msgstr "Søkehistorikk" #: ../cleaners/windows_explorer.xml ../cleaners/opera.xml #: ../cleaners/gnome.xml ../cleaners/google_toolbar.xml msgid "Delete the search history" msgstr "Slett søkehistorikken" #: ../cleaners/gl-117.xml ../cleaners/microsoft_office.xml #: ../cleaners/beagle.xml ../cleaners/secondlife_viewer.xml #: ../cleaners/x11.xml msgid "Debug logs" msgstr "Feilsøkingslogger" #: ../cleaners/gl-117.xml ../cleaners/microsoft_office.xml #: ../cleaners/easytag.xml ../cleaners/beagle.xml #: ../cleaners/secondlife_viewer.xml ../cleaners/x11.xml msgid "Delete the debug logs" msgstr "Slett feilsøkingsloggene" #: ../cleaners/google_earth.xml ../cleaners/winetricks.xml #: ../cleaners/vuze.xml ../cleaners/adobe_reader.xml ../cleaners/amule.xml #: ../cleaners/wine.xml ../cleaners/internet_explorer.xml ../cleaners/gimp.xml #: ../cleaners/kde.xml ../cleaners/deepscan.xml ../bleachbit/Cleaner.py:519 msgid "Temporary files" msgstr "Midlertidige filer" #: ../cleaners/google_earth.xml ../cleaners/winetricks.xml #: ../cleaners/vuze.xml ../cleaners/adobe_reader.xml ../cleaners/amule.xml #: ../cleaners/wine.xml ../cleaners/internet_explorer.xml ../cleaners/gimp.xml #: ../cleaners/kde.xml ../cleaners/deepscan.xml ../bleachbit/Cleaner.py:519 msgid "Delete the temporary files" msgstr "Slett midlertidige filer" #: ../cleaners/seamonkey.xml ../cleaners/opera.xml ../bleachbit/Cleaner.py:202 msgid "Download history" msgstr "Nedlastingshistorikk" #: ../cleaners/seamonkey.xml ../cleaners/opera.xml ../bleachbit/Cleaner.py:202 msgid "List of files downloaded" msgstr "Liste over nedlastede filer" #: ../cleaners/seamonkey.xml msgid "Delete the list of visited web pages" msgstr "Slett listen over besøkte nettsider" #: ../cleaners/vuze.xml ../cleaners/deepscan.xml ../bleachbit/Cleaner.py:191 msgid "Backup files" msgstr "Sikkerhetskopierte filer" #: ../cleaners/vuze.xml ../cleaners/deepscan.xml ../bleachbit/Cleaner.py:192 msgid "Delete the backup files" msgstr "Slett sikkerhetskopierte filer" #: ../cleaners/konqueror.xml ../cleaners/opera.xml ../cleaners/chromium.xml msgid "Current session" msgstr "Aktiv økt" #: ../cleaners/konqueror.xml ../cleaners/opera.xml ../cleaners/chromium.xml msgid "Delete the current session" msgstr "Slett den aktive økten" #: ../cleaners/konqueror.xml ../cleaners/opera.xml ../bleachbit/Cleaner.py:212 msgid "URL history" msgstr "URL-historikk" #: ../cleaners/microsoft_office.xml ../cleaners/libreoffice.xml #: ../bleachbit/Cleaner.py:374 msgid "Office suite" msgstr "Kontorpakke" #: ../cleaners/windows_defender.xml msgid "Anti-virus" msgstr "Antivirus" #: ../cleaners/adobe_reader.xml msgid "Document viewer" msgstr "Dokumentviser" #: ../cleaners/evolution.xml ../cleaners/thunderbird.xml msgid "Email client" msgstr "E-postklient" #: ../cleaners/tremulous.xml msgid "Delete the list of game servers" msgstr "Slett listen over spilltjenere" #: ../cleaners/sqlite3.xml ../cleaners/bash.xml ../cleaners/octave.xml msgid "Delete the command history" msgstr "Slett kommandohistorikken" #: ../cleaners/wine.xml msgid "Compatibility layer for Windows software" msgstr "Kompatibilitetslag for Windows-programvare" #: ../cleaners/internet_explorer.xml ../cleaners/chromium.xml #: ../cleaners/google_chrome.xml ../bleachbit/Cleaner.py:203 msgid "Form history" msgstr "Skjemahistorikk" #: ../cleaners/internet_explorer.xml ../bleachbit/Cleaner.py:204 msgid "A history of forms entered in web sites and in the Search bar" msgstr "Historikk over skjemaer brukt på nettsider og i søkelinjen" #. This software edits metadata tags, such as title and artist, in audio files #: ../cleaners/easytag.xml msgid "Audio files tagger" msgstr "Lydfil-taggeprogram" #: ../cleaners/apt.xml msgid "Delete obsolete files" msgstr "Slett utdaterte filer" #: ../cleaners/apt.xml msgid "Package lists" msgstr "Pakkelister" #: ../cleaners/xine.xml ../cleaners/miro.xml ../cleaners/flash.xml msgid "Multimedia viewer" msgstr "Multimedia-fremviser" #: ../cleaners/recoll.xml ../cleaners/beagle.xml msgid "Search tool" msgstr "Søkeverktøy" #: ../cleaners/recoll.xml ../cleaners/beagle.xml ../cleaners/thunderbird.xml msgid "Index" msgstr "Indeks" #: ../cleaners/recoll.xml msgid "" "Delete the search index, a database of words and the files they contain" msgstr "Slett søkeindeksen, en database med ord og filene de inneholder" #: ../cleaners/gimp.xml msgid "Graphics editor" msgstr "" #: ../cleaners/exaile.xml msgid "Downloaded podcasts" msgstr "Nedlastede podkaster" #: ../cleaners/exaile.xml msgid "Delete downloaded podcasts" msgstr "Slett nedlastede podkaster" #: ../cleaners/bash.xml msgid "Shell" msgstr "Skall" #. TRANSLATORS: DOM = Document Object Model. #: ../cleaners/opera.xml ../cleaners/chromium.xml #: ../cleaners/google_chrome.xml ../bleachbit/Cleaner.py:200 msgid "DOM Storage" msgstr "DOM-lagring" #: ../cleaners/opera.xml ../cleaners/chromium.xml #: ../cleaners/google_chrome.xml ../bleachbit/Cleaner.py:200 msgid "Delete HTML5 cookies" msgstr "Slett HTML5-informasjonskapsler" #: ../cleaners/opera.xml ../cleaners/epiphany.xml ../cleaners/chromium.xml #: ../cleaners/google_chrome.xml ../cleaners/thunderbird.xml #: ../bleachbit/Cleaner.py:209 msgid "Passwords" msgstr "Passord" #: ../cleaners/opera.xml ../cleaners/epiphany.xml ../cleaners/chromium.xml #: ../cleaners/google_chrome.xml ../cleaners/thunderbird.xml #: ../bleachbit/Cleaner.py:210 msgid "" "A database of usernames and passwords as well as a list of sites that should " "not store passwords" msgstr "" "En database med brukernavn og passord, samt en liste over sider som ikke " "skal lagre passord" #: ../cleaners/opera.xml ../cleaners/epiphany.xml ../cleaners/chromium.xml #: ../cleaners/google_chrome.xml ../cleaners/thunderbird.xml msgid "This option will delete your saved passwords." msgstr "Dette valget sletter lagrede passord." #: ../cleaners/nautilus.xml msgid "Custom folders will be reset." msgstr "Egendefinerte mapper vil bli tilbakestilt." #: ../cleaners/gnome.xml ../cleaners/kde.xml msgid "Desktop environment" msgstr "Skrivebordsmiljø" #: ../cleaners/screenlets.xml msgid "Widgets for the desktop" msgstr "Skrivebordselementer" #: ../cleaners/kde.xml msgid "This option may be incompatible with kdesudo" msgstr "Dette valget fungerer kanskje ikke med kdesudo" #: ../cleaners/epiphany.xml msgid "Places" msgstr "Steder" #: ../cleaners/epiphany.xml msgid "" "A database of URLs including bookmarks, favicons, and a history of visited " "web sites" msgstr "" "En database med URL-er (bokmerker, favikoner og historikk over besøkte " "nettsider)" #: ../cleaners/epiphany.xml msgid "This option deletes all bookmarks." msgstr "Dette valget sletter alle bokmerker." #: ../cleaners/winrar.xml msgid "File archiver" msgstr "" #: ../cleaners/elinks.xml msgid "Delete the cookies, visited URLs, and search history" msgstr "Slett informasjonskapslene, besøkte URL-er og søkehistorikk" #: ../cleaners/chromium.xml ../cleaners/google_chrome.xml msgid "A history of forms entered in web sites" msgstr "Historikk over utfylte web-skjemaer" #: ../cleaners/chromium.xml ../cleaners/google_chrome.xml msgid "" "Delete the history which includes visited sites, downloads, and thumbnails" msgstr "" "Slett historikken, som inkluderer besøkte nettsider, nedlastinger og " "miniatyrbilder" #: ../cleaners/chromium.xml ../cleaners/google_chrome.xml msgid "Search engines" msgstr "Søkemotorer" #. 'Factory' means a search engine that is installed by default 'from the factory,' but this is different than a 'default search engine' https://lists.launchpad.net/launchpad-translators/msg00283.html #: ../cleaners/chromium.xml ../cleaners/google_chrome.xml msgid "" "Reset the search engine usage history and delete non-factory search engines, " "some of which are added automatically" msgstr "" "Tilbakestill brukshistorikk for søkemotorer, og slett søkemotorer som ikke " "er standard" #: ../cleaners/audacious.xml msgid "Audio player" msgstr "Lydavspiller" #: ../cleaners/google_chrome.xml msgid "Session" msgstr "Økt" #: ../cleaners/google_chrome.xml msgid "Delete the current and last sessions" msgstr "Slett aktiv og inaktive økter" #: ../cleaners/x11.xml msgid "Windowing system" msgstr "Vindussystem" #: ../cleaners/wordpad.xml msgid "Word processor" msgstr "Tekstbehandler" #: ../cleaners/deepscan.xml msgid "Deep scan" msgstr "Grundig søk" #: ../cleaners/deepscan.xml msgid "Clean files widely scattered across the disk" msgstr "Rydd filer som er spredd vidt utover disken" #: ../cleaners/deepscan.xml msgid "Inspect the preview for any files you want to keep." msgstr "Inspiser forhåndsvisningen av filer du vil beholde." #: ../cleaners/deepscan.xml msgid "This option is slow." msgstr "Dette alternativet er tregt." #: ../bleachbit.desktop msgid "Unnecessary file cleaner" msgstr "Unødvendig filrenser" #: ../bleachbit.desktop msgid "Free space and maintain privacy" msgstr "Ledig plass og bevare personvern" #. TRANSLATORS: This is the label in the log indicating was #. skipped because it matches the whitelist #: ../bleachbit/Command.py:44 msgid "Skip" msgstr "Hopp over" #. TRANSLATORS: This is the label in the log indicating will be #. deleted (for previews) or was actually deleted #: ../bleachbit/Command.py:70 msgid "Delete" msgstr "Slett" #. TRANSLATORS: The file will be deleted when the #. system reboots #: ../bleachbit/Command.py:91 msgid "Mark for deletion" msgstr "Marker for sletting" #. TRANSLATORS: Parts of this file will be deleted #: ../bleachbit/Command.py:181 ../bleachbit/Command.py:211 #: ../bleachbit/Action.py:197 ../bleachbit/Action.py:210 #: ../bleachbit/Action.py:223 ../bleachbit/Action.py:236 #: ../bleachbit/Action.py:249 msgid "Clean file" msgstr "Rens fil" #. TRANSLATORS: The file will be truncated to 0 bytes in length #: ../bleachbit/Command.py:247 msgid "Truncate" msgstr "Trunker" #: ../bleachbit/Command.py:286 msgid "Delete registry key" msgstr "Slett registernøkkel" #: ../bleachbit/Unix.py:353 ../bleachbit/Unix.py:383 ../bleachbit/Unix.py:573 #, python-format msgid "Executable not found: %s" msgstr "Fant ikke programfil: %s" #. TRANSLATORS: %s expands to a name such as 'Firefox' or 'System'. #: ../bleachbit/Unix.py:570 ../bleachbit/Worker.py:131 #, python-format msgid "" "%s cannot be cleaned because it is currently running. Close it, and try " "again." msgstr "" "%s kan ikke renses fordi det kjører. Lukk programmet, og prøv på nytt." #: ../bleachbit/GuiBasic.py:112 msgid "Delete confirmation" msgstr "Slett bekreftelse" #: ../bleachbit/GuiBasic.py:122 msgid "" "Are you sure you want to permanently delete files according to the selected " "operations? The actual files that will be deleted may have changed since " "you ran the preview." msgstr "" "Er du sikker på at du vil slette filene permanent i henhold til valgte " "handlinger? De aktuelle filene kan ha blitt endret siden du kjørte " "forhåndsvisningen." #: ../bleachbit/GuiBasic.py:125 msgid "Are you sure you want to permanently delete these files?" msgstr "Er du sikker på at du vil slette disse filene permanent?" #: ../bleachbit/GuiBasic.py:162 #, python-format msgid "" "Because you are running as root, please manually open this link in a web " "browser:\n" "%s" msgstr "" "Fordi du kjører som rotbruker, må du åpne følgende lenke manuelt i en " "nettleser:\n" "%s" #. TRANSLATORS: %s expands to bleachbit.sourceforge.net or similar #: ../bleachbit/GuiBasic.py:174 #, python-format msgid "Open web browser to %s?" msgstr "Vil du åpne %s i nettleseren?" #. TRANSLATORS: This is cleaner name for cleaners imported from winapp2.ini #: ../bleachbit/Winapp.py:44 msgid "Applications" msgstr "Programmer" #. TRANSLATORS: This is cleaner name for cleaners imported #. from winapp2.ini #: ../bleachbit/Winapp.py:47 msgid "Internet" msgstr "Internett" #. TRANSLATORS: This is cleaner name for cleaners imported #. from winapp2.ini #: ../bleachbit/Winapp.py:50 msgid "Multimedia" msgstr "Multimedia" #. TRANSLATORS: This is cleaner name for cleaners imported #. from winapp2.ini #: ../bleachbit/Winapp.py:53 msgid "Utilities" msgstr "Verktøy" #: ../bleachbit/Winapp.py:64 msgid "Games" msgstr "Spill" #: ../bleachbit/Winapp.py:151 msgid "Imported from winapp2.ini" msgstr "Importert fra winapp2.ini" #: ../bleachbit/Cleaner.py:198 msgid "Crash reports" msgstr "Krasjrapporter" #: ../bleachbit/Cleaner.py:205 msgid "Session restore" msgstr "Gjenopprette økt" #: ../bleachbit/Cleaner.py:206 msgid "Loads the initial session after the browser closes or crashes" msgstr "" "Laster inn den opprinnelige økten etter at nettleseren lukkes eller krasjer" #: ../bleachbit/Cleaner.py:208 msgid "Site preferences" msgstr "Innstillinger for nettsted" #: ../bleachbit/Cleaner.py:208 msgid "Settings for individual sites" msgstr "Instillinger for enkeltnettsteder" #. TRANSLATORS: desktop entries are .desktop files in Linux tha #. make up the application menu (the menu that shows BleachBit, #. Firefox, and others. The .desktop files also associate file #. types, so clicking on an .html file in Nautilus brings up #. Firefox. #. More information: #. http://standards.freedesktop.org/menu-spec/latest/index.html#introduction #: ../bleachbit/Cleaner.py:452 msgid "Broken desktop files" msgstr "Ødelagte skrivebordfiler" #: ../bleachbit/Cleaner.py:453 msgid "Delete broken application menu entries and file associations" msgstr "Slett brutte applikasjonsmenyelementer og filassosiasjoner" #. TRANSLATORS: Localizations are files supporting specific #. languages, so applications appear in Spanish, etc. #: ../bleachbit/Cleaner.py:457 msgid "Localizations" msgstr "Lokaliseringer" #: ../bleachbit/Cleaner.py:458 msgid "Delete files for unwanted languages" msgstr "Slett filer for uønskede språk" #: ../bleachbit/Cleaner.py:460 msgid "Configure this option in the preferences." msgstr "Still inn dette valget i innstillinger." #: ../bleachbit/Cleaner.py:466 msgid "Rotated logs" msgstr "Roterte logger" #: ../bleachbit/Cleaner.py:466 msgid "Delete old system logs" msgstr "Slett gamle systemlogger" #: ../bleachbit/Cleaner.py:469 msgid "Trash" msgstr "Papirkurv" #: ../bleachbit/Cleaner.py:469 msgid "Empty the trash" msgstr "Tøm papirkurven" #: ../bleachbit/Cleaner.py:475 ../bleachbit/Cleaner.py:626 #: ../bleachbit/Worker.py:172 msgid "Memory" msgstr "Minne" #. TRANSLATORS: 'free' means 'unallocated' #: ../bleachbit/Cleaner.py:477 msgid "Wipe the swap and free memory" msgstr "Frigjør vekselfil og minne" #: ../bleachbit/Cleaner.py:479 msgid "This option is experimental and may cause system problems." msgstr "" "Dette alternativet er eksperimentelt, og kan føre til systemproblemer." #: ../bleachbit/Cleaner.py:487 msgid "Memory dump" msgstr "Minnedump" #: ../bleachbit/Cleaner.py:487 msgid "Delete the file memory.dmp" msgstr "Slett filen memory.dmp" #. TRANSLATORS: Prefetch is Microsoft Windows jargon. #: ../bleachbit/Cleaner.py:490 msgid "Prefetch" msgstr "Forhåndshent" #: ../bleachbit/Cleaner.py:492 msgid "Recycle bin" msgstr "Papirkurv" #: ../bleachbit/Cleaner.py:492 msgid "Empty the recycle bin" msgstr "Tøm papirkurven" #. TRANSLATORS: 'Update' is a noun, and 'Update uninstallers' is an option to delete #. the uninstallers for software updates. #: ../bleachbit/Cleaner.py:495 msgid "Update uninstallers" msgstr "Avinstalleringsprogrammer for oppdateringer" #: ../bleachbit/Cleaner.py:496 msgid "" "Delete uninstallers for Microsoft updates including hotfixes, service packs, " "and Internet Explorer updates" msgstr "" "Slett avinstalleringsprogrammer for Microsoft-oppdateriger som inneholder " "hurtigreparasjoner, servicepakker og oppdateringer til Internet Explorer" #: ../bleachbit/Cleaner.py:503 ../bleachbit/Cleaner.py:719 msgid "Clipboard" msgstr "Utklippstavle" #: ../bleachbit/Cleaner.py:504 msgid "" "The desktop environment's clipboard used for copy and paste operations" msgstr "" "Skrivebordmiljøets utklippstavle som brukes til å kopiere og lime inn" #. TRANSLATORS: "Custom" is an option allowing the user to specify which #. files and folders will be erased. #: ../bleachbit/Cleaner.py:511 ../bleachbit/GuiPreferences.py:63 msgid "Custom" msgstr "Selvvalgt" #: ../bleachbit/Cleaner.py:512 msgid "Delete user-specified files and folders" msgstr "Slett brukervalgte filer og mapper" #. TRANSLATORS: 'free' means 'unallocated' #: ../bleachbit/Cleaner.py:514 msgid "Free disk space" msgstr "Ledig diskplass" #. TRANSLATORS: 'free' means 'unallocated' #: ../bleachbit/Cleaner.py:516 msgid "Overwrite free disk space to hide deleted files" msgstr "Overskriv ledig diskplass for å skjule slettede filer" #: ../bleachbit/Cleaner.py:517 msgid "This option is very slow." msgstr "Dette alternativet er veldig tregt." #: ../bleachbit/Cleaner.py:521 msgid "The system in general" msgstr "Systemet generelt" #: ../bleachbit/Cleaner.py:523 ../bleachbit/Cleaner.py:838 msgid "System" msgstr "System" #. TRANSLATORS: 'Free' means 'unallocated.' #. %s expands to a path such as C:\ or /tmp/ #: ../bleachbit/Cleaner.py:727 ../bleachbit/Cleaner.py:871 #, python-format msgid "Overwrite free disk space %s" msgstr "Overskriv ledig diskplass %s" #: ../bleachbit/GuiPreferences.py:55 ../bleachbit/GUI.py:670 msgid "Preferences" msgstr "Innstillinger" #: ../bleachbit/GuiPreferences.py:61 msgid "General" msgstr "Generelt" #: ../bleachbit/GuiPreferences.py:64 msgid "Drives" msgstr "Stasjoner" #: ../bleachbit/GuiPreferences.py:67 msgid "Languages" msgstr "Språk" #: ../bleachbit/GuiPreferences.py:69 msgid "Whitelist" msgstr "Unntaksliste" #: ../bleachbit/GuiPreferences.py:114 msgid "Check periodically for software updates via the Internet" msgstr "Periodiske søk etter oppdateringer over Internett" #: ../bleachbit/GuiPreferences.py:119 msgid "" "If an update is found, you will be given the option to view information " "about it. Then, you may manually download and install the update." msgstr "" "Hvis en oppdatering blir funnet, vil du bli gitt muligheten å se informasjon " "om oppdateringen. Deretter kan du manuelt laste ned og installere den." #: ../bleachbit/GuiPreferences.py:125 msgid "Check for new beta releases" msgstr "Se etter nye betautgivelser" #: ../bleachbit/GuiPreferences.py:134 msgid "Download and update cleaners from community (winapp2.ini)" msgstr "Last ned og oppdater renseprosesser (winapp2.ini) fra nett" #. TRANSLATORS: This means to hide cleaners which would do #. nothing. For example, if Firefox were never used on #. this system, this option would hide Firefox to simplify #. the list of cleaners. #: ../bleachbit/GuiPreferences.py:148 msgid "Hide irrelevant cleaners" msgstr "Skjul uaktuelle renseprosesser" #. TRANSLATORS: Overwriting is the same as shredding. It is a way #. to prevent recovery of the data. You could also translate #. 'Shred files to prevent recovery.' #: ../bleachbit/GuiPreferences.py:156 msgid "Overwrite files to hide contents" msgstr "Overskriv filer for å skjule innholdet" #: ../bleachbit/GuiPreferences.py:160 msgid "" "Overwriting is ineffective on some file systems and with certain BleachBit " "operations. Overwriting is significantly slower." msgstr "" "Overskriving av filer er ineffektivt i noen filsystemer og med noen " "BleachBit-handlinger. Overskriving er betydelig tregere." #: ../bleachbit/GuiPreferences.py:163 msgid "Start BleachBit with computer" msgstr "Start BleachBit ved maskinoppstart" #: ../bleachbit/GuiPreferences.py:169 msgid "Exit after cleaning" msgstr "Avslutt etter rensing" #: ../bleachbit/GuiPreferences.py:175 msgid "Confirm before delete" msgstr "Bekreft sletting" #: ../bleachbit/GuiPreferences.py:188 ../bleachbit/GuiPreferences.py:317 #: ../bleachbit/GuiPreferences.py:358 ../bleachbit/GUI.py:577 msgid "Choose a folder" msgstr "Velg en mappe" #: ../bleachbit/GuiPreferences.py:212 msgid "" "Choose a writable folder for each drive for which to overwrite free space." msgstr "" "Velg en skrivbar mappe for hver lagringsenhet, der ledig plass skal " "overskrives." #. TRANSLATORS: In the preferences dialog, this button adds a path to #. the list of paths #: ../bleachbit/GuiPreferences.py:234 msgctxt "button" msgid "Add" msgstr "Legg til" #. TRANSLATORS: In the preferences dialog, this button removes a path #. from the list of paths #: ../bleachbit/GuiPreferences.py:238 ../bleachbit/GuiPreferences.py:449 msgctxt "button" msgid "Remove" msgstr "Fjern" #: ../bleachbit/GuiPreferences.py:263 msgid "All languages will be deleted except those checked." msgstr "Alle språk vil bli slettet, utenom de som er krysset av." #: ../bleachbit/GuiPreferences.py:279 msgid "Preserve" msgstr "Ivareta" #: ../bleachbit/GuiPreferences.py:283 msgid "Code" msgstr "Kode" #: ../bleachbit/GuiPreferences.py:287 ../bleachbit/GUI.py:132 msgid "Name" msgstr "Navn" #: ../bleachbit/GuiPreferences.py:304 ../bleachbit/GuiPreferences.py:345 msgid "Choose a file" msgstr "Velg en fil" #: ../bleachbit/GuiPreferences.py:311 ../bleachbit/GuiPreferences.py:352 #: ../bleachbit/GuiPreferences.py:396 msgid "File" msgstr "Fil" #: ../bleachbit/GuiPreferences.py:325 ../bleachbit/GuiPreferences.py:366 #: ../bleachbit/GuiPreferences.py:398 msgid "Folder" msgstr "Mappe" #: ../bleachbit/GuiPreferences.py:408 msgid "Theses paths will not be deleted or modified." msgstr "Disse stiene vil verken bli slettet eller endret på." #: ../bleachbit/GuiPreferences.py:411 msgid "These locations can be selected for deletion." msgstr "Disse plasseringene kan merkes for sletting." #: ../bleachbit/GuiPreferences.py:419 msgid "Type" msgstr "Type" #. TRANSLATORS: In the tree view "Path" is used generically to refer to a #. file, a folder, or a pattern describing either #: ../bleachbit/GuiPreferences.py:425 msgid "Path" msgstr "Sti" #: ../bleachbit/GuiPreferences.py:437 msgctxt "button" msgid "Add file" msgstr "Legg til fil" #: ../bleachbit/GuiPreferences.py:443 msgctxt "button" msgid "Add folder" msgstr "Legg til mappe" #: ../bleachbit/RecognizeCleanerML.py:57 msgid "Security warning" msgstr "Sikkerhetsadvarsel" #: ../bleachbit/RecognizeCleanerML.py:70 msgid "" "These cleaner definitions are new or have changed. Malicious definitions can " "damage your system. If you do not trust these changes, delete the files or " "quit." msgstr "" "Disse rensedefinisjonene er enten nye eller nylig endret. Ondsinnede " "definisjoner kan skade systemet. Slett filene eller avslutt programmet hvis " "du du ikke stoler på disse endringene." #: ../bleachbit/RecognizeCleanerML.py:85 msgctxt "column_label" msgid "Delete" msgstr "Slett" #: ../bleachbit/RecognizeCleanerML.py:90 msgctxt "column_label" msgid "Filename" msgstr "Filnavn" #. TRANSLATORS: This indicates an error. The special keyword #. %(operation)s will be replaced by 'firefox' or 'opera' or #. some other cleaner ID. The special keyword %(msg)s will be #. replaced by a message such as 'Permission denied.' #: ../bleachbit/Worker.py:71 #, python-format msgid "Exception while running operation '%(operation)s': '%(msg)s'" msgstr "" "Unntak forekom under kjøringen av operasjonen '%(operation)s': '%(msg)s'" #. TRANSLATORS: 'free' means 'unallocated' #: ../bleachbit/Worker.py:170 msgid "Please wait. Wiping free disk space." msgstr "Vent litt. Frigjør ledig lagringsplass." #. TRANSLATORS: %s is replaced with Firefox, System, etc. #: ../bleachbit/Worker.py:172 ../bleachbit/Worker.py:311 #, python-format msgid "Please wait. Cleaning %s." msgstr "Vent litt. Renser %s." #: ../bleachbit/Worker.py:187 msgid "Please wait. Wiping file system metadata." msgstr "Vent litt. Frigjør metadata i filsystemet." #: ../bleachbit/Worker.py:190 msgid "Please wait. Cleaning up after wiping file system metadata." msgstr "Vent litt. Rydder opp etter frigjøring av metadata i filsystem." #: ../bleachbit/Worker.py:193 #, python-format msgid "About %d minute remaining." msgid_plural "About %d minutes remaining." msgstr[0] "Cirka %d minutt gjennstår." msgstr[1] "Cirka %d minutter gjennstår." #. TRANSLATORS: This refers to disk space that was #. really recovered (in other words, not a preview) #: ../bleachbit/Worker.py:250 #, python-format msgid "Disk space recovered: %s" msgstr "Frigjort diskplass: %s" #. TRANSLATORS: This refers to a preview (no real #. changes were made yet) #: ../bleachbit/Worker.py:254 #, python-format msgid "Disk space to be recovered: %s" msgstr "Diskplass som skal frigjøres: %s" #. TRANSLATORS: This refers to the number of files really #. deleted (in other words, not a preview). #: ../bleachbit/Worker.py:259 #, python-format msgid "Files deleted: %d" msgstr "Slettede filer: %d" #. TRANSLATORS: This refers to the number of files that #. would be deleted (in other words, simply a preview). #: ../bleachbit/Worker.py:263 #, python-format msgid "Files to be deleted: %d" msgstr "Filer som skal slettes: %d" #: ../bleachbit/Worker.py:266 #, python-format msgid "Special operations: %d" msgstr "Spesielle operasjoner: %d" #: ../bleachbit/Worker.py:269 #, python-format msgid "Errors: %d" msgstr "Feil: %d" #. TRANSLATORS: The "deep scan" feature searches over broad #. areas of the file system such as the user's whole home directory #. or all the system executables. #: ../bleachbit/Worker.py:284 msgid "Please wait. Running deep scan." msgstr "Vent litt. Kjører grundig søk." #. TRANSLATORS: %s is replaced with Firefox, System, etc. #: ../bleachbit/Worker.py:314 #, python-format msgid "Please wait. Previewing %s." msgstr "Vent litt. Forhåndsviser %s." #: ../bleachbit/Update.py:76 msgid "New winapp2.ini was downloaded." msgstr "Ny winapp2.ini er lastet ned." #: ../bleachbit/Update.py:121 msgid "Update BleachBit" msgstr "Oppdatere BleachBit" #: ../bleachbit/Update.py:126 msgid "A new version is available." msgstr "En ny versjon er tilgjengelig." #. TRANSLATORS: %s expands to version such as '0.8.4' or '0.8.5beta' or #. similar #: ../bleachbit/Update.py:135 #, python-format msgid "Update to version %s" msgstr "Oppdater til versjon %s" #: ../bleachbit/CLI.py:102 #, python-format msgid "not a valid cleaner: %s" msgstr "%s er en ugyldig renseprosess" #. TRANSLATORS: This is the command line usage. Don't translate #. %prog, but do translate usage, options, cleaner, and option. #. More information about the command line is here #. http://bleachbit.sourceforge.net/documentation/command-line #: ../bleachbit/CLI.py:129 msgid "usage: %prog [options] cleaner.option1 cleaner.option2" msgstr "bruk: %prog [valg] rens.valg1 rens.valg2" #: ../bleachbit/CLI.py:132 msgid "list cleaners" msgstr "vis renseprosesser" #. TRANSLATORS: predefined cleaners are for applications, such as Firefox and Flash. #. This is different than cleaning an arbitrary file, such as a #. spreadsheet on the desktop. #: ../bleachbit/CLI.py:137 msgid "run cleaners to delete files and make other permanent changes" msgstr "" "kjør renseprosesser som sletter filer og gjør andre permanente endringer" #: ../bleachbit/CLI.py:140 msgid "shred specific files or folders" msgstr "makuler filer eller mapper" #: ../bleachbit/CLI.py:142 msgid "show system information" msgstr "vis systeminformasjon" #: ../bleachbit/CLI.py:144 msgid "launch the graphical interface" msgstr "kjør grafisk grensesnitt" #: ../bleachbit/CLI.py:146 msgid "do not prompt for administrator privileges" msgstr "ikke be om administratortillatelser" #: ../bleachbit/CLI.py:151 msgid "preview files to be deleted and other changes" msgstr "forhåndsvis filer som skal slettes og andre endringer" #: ../bleachbit/CLI.py:153 msgid "use options set in the graphical interface" msgstr "bruk oppsett fra grafisk grensesnitt" #: ../bleachbit/CLI.py:156 msgid "update winapp2.ini, if a new version is available" msgstr "oppdater winapp2.ini hvis det finnes en ny versjon" #: ../bleachbit/CLI.py:158 msgid "output version information and exit" msgstr "vis versjonsinformasjon og avslutt" #: ../bleachbit/CLI.py:160 msgid "overwrite files to hide contents" msgstr "overskriv filer for å skjule innholdet" #. TRANSLATORS: this is the context menu #: ../bleachbit/Action.py:313 ../bleachbit/GUI.py:615 msgid "Clean" msgstr "Rydd opp" #: ../bleachbit/GUI.py:140 msgid "Active" msgstr "I bruk" #. TRANSLATORS: %(cleaner) may be Firefox, System, etc. #. %(option) may be cache, logs, cookies, etc. #. %(warning) may be 'This option is really slow' #: ../bleachbit/GUI.py:171 #, python-format msgid "" "Warning regarding %(cleaner)s - %(option)s:\n" "\n" "%(warning)s" msgstr "" "Advarsel om %(cleaner)s - %(option)s:\n" "\n" "%(warning)s" #: ../bleachbit/GUI.py:357 msgid "You must select an operation" msgstr "Du må velge en handling" #: ../bleachbit/GUI.py:377 ../bleachbit/GUI.py:400 msgid "Done." msgstr "Utført." #: ../bleachbit/GUI.py:413 msgid "Program to clean unnecessary files" msgstr "Program som fjerner unødvendige filer" #: ../bleachbit/GUI.py:419 msgid "" "GNU General Public License version 3 or later.\n" "See http://www.gnu.org/licenses/gpl-3.0.txt" msgstr "" "GNU General Public License versjon 3 eller høyere.\n" "Se http://www.gnu.org/licenses/gpl-3.0.txt" #. TRANSLATORS: Maintain the names of translators here. #. Launchpad does this automatically for translations #. typed in Launchpad. This is a special string shown #. in the 'About' box. #: ../bleachbit/GUI.py:425 msgid "translator-credits" msgstr "" "Launchpad Contributions:\n" " Alexander Mackinnon Jansen https://launchpad.net/~alexander-jansen\n" " Harald H. https://launchpad.net/~haarektrans\n" " Jon Arne Westgaard https://launchpad.net/~westgaard\n" " Simen Heggestøyl https://launchpad.net/~simen-simenh\n" " airesacha https://launchpad.net/~danielwd-lavabit\n" " Åka Sikrom https://launchpad.net/~akrosikam" #: ../bleachbit/GUI.py:437 msgid "System information" msgstr "Systeminformasjon" #: ../bleachbit/GUI.py:510 msgid "Choose files to shred" msgstr "Velg filer du vil slette og overskrive" #: ../bleachbit/GUI.py:513 msgid "Choose folder to shred" msgstr "Velg mappe som skal makuleres" #. TRANSLATORS: this is the context menu #: ../bleachbit/GUI.py:610 msgid "Preview" msgstr "Forhåndsvisning" #: ../bleachbit/GUI.py:658 msgid "_Shred Files" msgstr "_Slett og overskriv filer" #: ../bleachbit/GUI.py:660 msgid "Sh_red Folders" msgstr "_Makuler mapper" #: ../bleachbit/GUI.py:662 msgid "_Wipe Free Space" msgstr "_Frigjør ledig lagringsplass" #: ../bleachbit/GUI.py:664 msgid "S_hred Settings and Quit" msgstr "Fjern innstillinger, og avslutt" #: ../bleachbit/GUI.py:666 msgid "_Quit" msgstr "_Avslutt" #: ../bleachbit/GUI.py:668 msgid "_File" msgstr "_Fil" #: ../bleachbit/GUI.py:671 msgid "_Edit" msgstr "_Rediger" #: ../bleachbit/GUI.py:672 msgid "Help Contents" msgstr "Hjelpinnhold" #: ../bleachbit/GUI.py:675 msgid "_Release Notes" msgstr "_Utgivelsesnotater" #: ../bleachbit/GUI.py:678 msgid "_System Information" msgstr "_Systeminformasjon" #: ../bleachbit/GUI.py:681 msgid "_About" msgstr "_Om" #: ../bleachbit/GUI.py:682 msgid "_Help" msgstr "_Hjelp" #: ../bleachbit/GUI.py:707 msgctxt "button" msgid "Preview" msgstr "Forhåndsvisning" #: ../bleachbit/GUI.py:712 msgid "Preview files in the selected operations (without deleting any files)" msgstr "Forhåndsvis filer gjennom valgte handlinger (uten å slette filer)" #: ../bleachbit/GUI.py:722 msgctxt "button" msgid "Clean" msgstr "Rens" #: ../bleachbit/GUI.py:726 msgid "Clean files in the selected operations" msgstr "REns filer med valgte handlinger" #: ../bleachbit/GUI.py:815 msgid "Error when checking for updates: " msgstr "Feil ved søking etter oppdateringer: " #: ../bleachbit/GUI.py:855 msgid "" "Error loading the SQLite module: the antivirus software may be blocking it." msgstr "" "Feil ved innlasting av SQLite-modulen: Det kan hende den blir blokkert av et " "antivirusprogram." #: ../bleachbit/GUI.py:858 msgid "" "You are running BleachBit with administrative privileges for cleaning shared " "parts of the system, and references to the user profile folder will clean " "only the root account." msgstr "" "Du kjører BleachBit med administratortillatelser for å rense systemets " "fellesområder. Alle renseprosesser som peker på brukerprofilens mappe er kun " "gjeldende for brukerkontoen «root»." bleachbit-2.0/po/fi.po0000644000175000017500000013536113245436307012766 0ustar hlehle# Finnish translation for bleachbit # Copyright (c) 2009 Rosetta Contributors and Canonical Ltd 2009 # This file is distributed under the same license as the bleachbit package. # FIRST AUTHOR , 2009. # msgid "" msgstr "" "Project-Id-Version: bleachbit\n" "Report-Msgid-Bugs-To: FULL NAME \n" "POT-Creation-Date: 2017-02-11 11:12-0700\n" "PO-Revision-Date: 2017-02-15 07:25+0000\n" "Last-Translator: Jiri Grönroos \n" "Language-Team: Finnish \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n != 1;\n" "X-Launchpad-Export-Date: 2017-02-16 05:00+0000\n" "X-Generator: Launchpad (build 18326)\n" #: ../cleaners/mc.xml ../cleaners/tortoisesvn.xml ../cleaners/vim.xml #: ../cleaners/safari.xml ../cleaners/links2.xml ../cleaners/seamonkey.xml #: ../cleaners/realplayer.xml ../cleaners/windows_defender.xml #: ../cleaners/d4x.xml ../cleaners/sqlite3.xml #: ../cleaners/internet_explorer.xml ../cleaners/libreoffice.xml #: ../cleaners/easytag.xml ../cleaners/bash.xml ../cleaners/nautilus.xml #: ../cleaners/octave.xml ../cleaners/elinks.xml ../cleaners/chromium.xml #: ../cleaners/google_chrome.xml msgid "History" msgstr "Historia" #: ../cleaners/mc.xml ../cleaners/tortoisesvn.xml ../cleaners/links2.xml #: ../cleaners/realplayer.xml ../cleaners/d4x.xml ../cleaners/libreoffice.xml #: ../cleaners/easytag.xml ../cleaners/nautilus.xml ../cleaners/gnome.xml #: ../bleachbit/Cleaner.py:349 ../bleachbit/Cleaner.py:423 #: ../bleachbit/Cleaner.py:432 msgid "Delete the usage history" msgstr "Poista käyttöhistoria" #: ../cleaners/gpodder.xml ../cleaners/hippo_opensim_viewer.xml #: ../cleaners/thumbnails.xml ../cleaners/safari.xml ../cleaners/emesene.xml #: ../cleaners/liferea.xml ../cleaners/seamonkey.xml ../cleaners/vuze.xml #: ../cleaners/yahoo_messenger.xml ../cleaners/pidgin.xml #: ../cleaners/adobe_reader.xml ../cleaners/evolution.xml #: ../cleaners/tremulous.xml ../cleaners/libreoffice.xml ../cleaners/xine.xml #: ../cleaners/nexuiz.xml ../cleaners/exaile.xml ../cleaners/opera.xml #: ../cleaners/amsn.xml ../cleaners/gftp.xml ../cleaners/miro.xml #: ../cleaners/beagle.xml ../cleaners/kde.xml ../cleaners/epiphany.xml #: ../cleaners/flash.xml ../cleaners/secondlife_viewer.xml ../cleaners/java.xml #: ../cleaners/chromium.xml ../cleaners/audacious.xml ../cleaners/rhythmbox.xml #: ../cleaners/google_chrome.xml ../cleaners/thunderbird.xml #: ../bleachbit/Cleaner.py:192 ../bleachbit/Cleaner.py:370 #: ../bleachbit/Cleaner.py:455 msgid "Cache" msgstr "Välimuisti" #: ../cleaners/gpodder.xml ../cleaners/yum.xml #: ../cleaners/hippo_opensim_viewer.xml ../cleaners/thumbnails.xml #: ../cleaners/windows_explorer.xml ../cleaners/liferea.xml #: ../cleaners/vuze.xml ../cleaners/yahoo_messenger.xml ../cleaners/pidgin.xml #: ../cleaners/adobe_reader.xml ../cleaners/evolution.xml #: ../cleaners/libreoffice.xml ../cleaners/apt.xml ../cleaners/xine.xml #: ../cleaners/nexuiz.xml ../cleaners/exaile.xml ../cleaners/amsn.xml #: ../cleaners/gftp.xml ../cleaners/miro.xml ../cleaners/beagle.xml #: ../cleaners/kde.xml ../cleaners/flash.xml ../cleaners/secondlife_viewer.xml #: ../cleaners/java.xml ../cleaners/audacious.xml ../cleaners/rhythmbox.xml #: ../bleachbit/Cleaner.py:370 ../bleachbit/Cleaner.py:455 #: ../bleachbit/Cleaner.py:489 ../bleachbit/Cleaner.py:491 msgid "Delete the cache" msgstr "Tyhjennä välimuisti" #. TRANSLATORS: Vacuum is a verb. The term is jargon #. from the SQLite database. Microsoft Access uses #. the term 'Compact Database' (which you may translate #. instead). Another synonym is 'defragment.' #: ../cleaners/gpodder.xml ../cleaners/yum.xml ../cleaners/safari.xml #: ../cleaners/liferea.xml ../cleaners/chromium.xml #: ../cleaners/google_chrome.xml ../cleaners/thunderbird.xml #: ../bleachbit/Cleaner.py:214 ../bleachbit/Cleaner.py:360 #: ../bleachbit/Action.py:445 msgid "Vacuum" msgstr "Tiivistä tietokanta" #: ../cleaners/gpodder.xml ../cleaners/yum.xml ../cleaners/safari.xml #: ../cleaners/liferea.xml ../cleaners/chromium.xml #: ../cleaners/google_chrome.xml ../cleaners/thunderbird.xml #: ../bleachbit/Cleaner.py:215 msgid "" "Clean database fragmentation to reduce space and improve speed without " "removing any data" msgstr "" "Poista tietokannan pirstoutuminen vähentääksesi tilankäyttöä ja " "nopeuttaaksesi toimintaa tietoja poistamatta" #: ../cleaners/yum.xml ../cleaners/apt.xml msgid "Package manager" msgstr "Pakettihallinta" #: ../cleaners/warzone2100.xml ../cleaners/hippo_opensim_viewer.xml #: ../cleaners/gl-117.xml ../cleaners/tremulous.xml ../cleaners/nexuiz.xml #: ../cleaners/secondlife_viewer.xml msgid "Game" msgstr "Peli" #: ../cleaners/warzone2100.xml ../cleaners/hippo_opensim_viewer.xml #: ../cleaners/teamviewer.xml ../cleaners/realplayer.xml ../cleaners/vuze.xml #: ../cleaners/yahoo_messenger.xml ../cleaners/amule.xml #: ../cleaners/easytag.xml ../cleaners/exaile.xml ../cleaners/screenlets.xml #: ../cleaners/gftp.xml ../cleaners/miro.xml ../cleaners/audacious.xml #: ../bleachbit/Cleaner.py:486 msgid "Logs" msgstr "Lokit" #: ../cleaners/warzone2100.xml ../cleaners/hippo_opensim_viewer.xml #: ../cleaners/teamviewer.xml ../cleaners/realplayer.xml ../cleaners/vuze.xml #: ../cleaners/yahoo_messenger.xml ../cleaners/amule.xml ../cleaners/exaile.xml #: ../cleaners/screenlets.xml ../cleaners/gftp.xml ../cleaners/miro.xml #: ../cleaners/audacious.xml ../bleachbit/Cleaner.py:486 msgid "Delete the logs" msgstr "Poista lokit" #: ../cleaners/thumbnails.xml ../cleaners/windows_explorer.xml msgid "Thumbnails" msgstr "Esikatselukuvat" #: ../cleaners/thumbnails.xml msgid "Icons for files on the system" msgstr "Järjestelmässä olevien tiedostojen esikatselukuvat" #: ../cleaners/vim.xml ../cleaners/gedit.xml msgid "Editor" msgstr "Editori" #: ../cleaners/vim.xml msgid "" "Delete ~/.viminfo which includes file history, command history, and buffers" msgstr "" "Poista ~/.viminfo, joka sisältää tiedostohistorian, komentojen historian ja " "puskurit" #: ../cleaners/filezilla.xml ../cleaners/transmission.xml ../cleaners/vuze.xml #: ../cleaners/amule.xml ../cleaners/gftp.xml msgid "File transfer client" msgstr "Tiedostonsiirto-ohjelma" #: ../cleaners/filezilla.xml ../cleaners/paint.xml #: ../cleaners/windows_media_player.xml ../cleaners/windows_explorer.xml #: ../cleaners/teamviewer.xml ../cleaners/microsoft_office.xml #: ../cleaners/vlc.xml ../cleaners/adobe_reader.xml ../cleaners/winamp.xml #: ../cleaners/winzip.xml ../cleaners/winrar.xml ../cleaners/audacious.xml #: ../cleaners/wordpad.xml ../bleachbit/Cleaner.py:371 msgid "Most recently used" msgstr "Viimeksi käytetyt" #: ../cleaners/filezilla.xml ../cleaners/windows_explorer.xml #: ../cleaners/gwenview.xml ../cleaners/adobe_reader.xml ../cleaners/gedit.xml #: ../cleaners/kde.xml ../cleaners/audacious.xml ../bleachbit/Cleaner.py:372 #: ../bleachbit/Cleaner.py:469 msgid "Delete the list of recently used documents" msgstr "Poista viimeisimpien asiakirjojen lista" #: ../cleaners/skype.xml ../cleaners/emesene.xml #: ../cleaners/yahoo_messenger.xml ../cleaners/pidgin.xml ../cleaners/amsn.xml msgid "Chat client" msgstr "Pikaviestimet" #: ../cleaners/skype.xml ../cleaners/hexchat.xml ../cleaners/emesene.xml #: ../cleaners/seamonkey.xml ../cleaners/yahoo_messenger.xml #: ../cleaners/pidgin.xml ../cleaners/amsn.xml msgid "Chat logs" msgstr "Pikaviestimien lokit" #: ../cleaners/skype.xml ../cleaners/hexchat.xml ../cleaners/emesene.xml #: ../cleaners/seamonkey.xml ../cleaners/yahoo_messenger.xml #: ../cleaners/pidgin.xml ../cleaners/amsn.xml msgid "Delete the chat logs" msgstr "Tyhjennä pikaviestimien lokit" #: ../cleaners/skype.xml msgid "Installers" msgstr "Asennusohjelmat" #: ../cleaners/skype.xml msgid "Delete cached patches and installers" msgstr "Poista välimuistissa olevat paikkaukset ja asennusohjelmat" #: ../cleaners/hexchat.xml msgid "IRC client formerly known as XChat" msgstr "Aiemmin XChatina tunnettu IRC-asiakasohjelmisto" #: ../cleaners/safari.xml ../cleaners/links2.xml ../cleaners/seamonkey.xml #: ../cleaners/konqueror.xml ../cleaners/internet_explorer.xml #: ../cleaners/opera.xml ../cleaners/epiphany.xml ../cleaners/elinks.xml #: ../cleaners/chromium.xml ../cleaners/google_chrome.xml #: ../bleachbit/Cleaner.py:226 msgid "Web browser" msgstr "Web-selain" #: ../cleaners/safari.xml ../cleaners/seamonkey.xml ../cleaners/opera.xml #: ../cleaners/epiphany.xml ../cleaners/chromium.xml #: ../cleaners/google_chrome.xml ../cleaners/thunderbird.xml #: ../bleachbit/Cleaner.py:193 msgid "Delete the web cache, which reduces time to display revisited pages" msgstr "" "Poista sivuhistoria, joka nopeuttaa jo vierailtujen sivujen näyttämistä" #: ../cleaners/safari.xml ../cleaners/liferea.xml ../cleaners/seamonkey.xml #: ../cleaners/realplayer.xml ../cleaners/konqueror.xml #: ../cleaners/internet_explorer.xml ../cleaners/opera.xml #: ../cleaners/epiphany.xml ../cleaners/flash.xml ../cleaners/silverlight.xml #: ../cleaners/chromium.xml ../cleaners/google_chrome.xml #: ../cleaners/thunderbird.xml ../bleachbit/Cleaner.py:194 msgid "Cookies" msgstr "Evästeet" #: ../cleaners/safari.xml ../cleaners/liferea.xml ../cleaners/seamonkey.xml #: ../cleaners/realplayer.xml ../cleaners/konqueror.xml #: ../cleaners/internet_explorer.xml ../cleaners/opera.xml #: ../cleaners/epiphany.xml ../cleaners/flash.xml ../cleaners/silverlight.xml #: ../cleaners/chromium.xml ../cleaners/google_chrome.xml #: ../cleaners/thunderbird.xml ../bleachbit/Cleaner.py:195 msgid "" "Delete cookies, which contain information such as web site preferences, " "authentication, and tracking identification" msgstr "" "Poista tietoa sisältävät evästeet, kuten web-sivustojen asetukset, " "varmenteet ja jäljitystiedot" #: ../cleaners/safari.xml ../cleaners/konqueror.xml #: ../cleaners/internet_explorer.xml ../cleaners/opera.xml #: ../bleachbit/Cleaner.py:213 msgid "List of visited web pages" msgstr "Lista vierailluista verkkosivuista" #. Torrent software can block a list of IP addresses, such as those that may belong to malware or anti-piracy organizations #: ../cleaners/transmission.xml msgid "Blocklists" msgstr "Estolistat" #: ../cleaners/transmission.xml ../cleaners/windows_defender.xml #: ../cleaners/beagle.xml ../cleaners/thunderbird.xml ../cleaners/deepscan.xml #: ../bleachbit/Cleaner.py:197 msgid "Delete the files" msgstr "Poista tiedostot" #: ../cleaners/transmission.xml msgid "Blocklists will need update to work." msgstr "Estolistat vaativat päivitystä toimiakseen." #: ../cleaners/transmission.xml msgid "Torrents" msgstr "Torrentit" #: ../cleaners/transmission.xml msgid "Delete the torrents (just the metadata but not the files described)" msgstr "Poista torrentit (vain metadata, ei itse tiedostoja)" #: ../cleaners/transmission.xml msgid "Statistics" msgstr "Tilastot" #: ../cleaners/transmission.xml msgid "Delete the file" msgstr "Poista tiedosto" #: ../cleaners/paint.xml ../cleaners/windows_media_player.xml #: ../cleaners/windows_explorer.xml ../cleaners/teamviewer.xml #: ../cleaners/microsoft_office.xml ../cleaners/vlc.xml ../cleaners/winamp.xml #: ../cleaners/winzip.xml ../cleaners/winrar.xml ../cleaners/wordpad.xml msgid "Delete the most recently used list" msgstr "Poista viimeisimpien asiakirjojen lista" #: ../cleaners/emesene.xml msgid "Delete the avatars and emoticons cache" msgstr "Tyhjennä avatar- ja tunneikoni-välimuisti" #: ../cleaners/windows_media_player.xml ../cleaners/realplayer.xml #: ../cleaners/vlc.xml ../cleaners/winamp.xml msgid "Media player" msgstr "Mediasoitin" #: ../cleaners/windows_explorer.xml ../cleaners/nautilus.xml msgid "File manager" msgstr "Tiedostonhallinta" #: ../cleaners/windows_explorer.xml ../cleaners/gwenview.xml #: ../cleaners/gedit.xml ../cleaners/kde.xml ../bleachbit/Cleaner.py:468 #: ../bleachbit/Cleaner.py:663 msgid "Recent documents list" msgstr "Viimeisimpien asiakirjojen lista" #: ../cleaners/windows_explorer.xml msgid "" "This option will reset pinned locations in Quick Access to their defaults." msgstr "" "Tämä valinta palauttaa pikakäynnistykseen kiinnitettyjen sijaintien " "oletusasetukset." #. In Windows 'Run' is the dialog in the Start menu #. In GNOME 'Run' is the dialog shown when typing ALT+F2' #: ../cleaners/windows_explorer.xml ../cleaners/gnome.xml msgid "Run" msgstr "Suorita" #: ../cleaners/windows_explorer.xml ../cleaners/opera.xml ../cleaners/gnome.xml #: ../cleaners/google_toolbar.xml msgid "Search history" msgstr "Hakuhistoria" #: ../cleaners/windows_explorer.xml ../cleaners/opera.xml ../cleaners/gnome.xml #: ../cleaners/google_toolbar.xml msgid "Delete the search history" msgstr "Poista hakuhistoria" #: ../cleaners/windows_explorer.xml msgid "This will restart Windows Explorer." msgstr "Tämä käynnistää Windows Explorerin uudelleen." #: ../cleaners/gl-117.xml ../cleaners/microsoft_office.xml #: ../cleaners/beagle.xml ../cleaners/secondlife_viewer.xml ../cleaners/x11.xml msgid "Debug logs" msgstr "Ohjelmavirheiden jäljityksen lokit" #: ../cleaners/gl-117.xml ../cleaners/microsoft_office.xml #: ../cleaners/easytag.xml ../cleaners/beagle.xml #: ../cleaners/secondlife_viewer.xml ../cleaners/x11.xml msgid "Delete the debug logs" msgstr "Poista virheiden jäljityslokit" #: ../cleaners/google_earth.xml ../cleaners/winetricks.xml ../cleaners/vuze.xml #: ../cleaners/adobe_reader.xml ../cleaners/amule.xml ../cleaners/wine.xml #: ../cleaners/internet_explorer.xml ../cleaners/gimp.xml ../cleaners/kde.xml #: ../cleaners/deepscan.xml ../bleachbit/Cleaner.py:520 msgid "Temporary files" msgstr "Väliaikaiset tiedostot" #: ../cleaners/google_earth.xml ../cleaners/winetricks.xml ../cleaners/vuze.xml #: ../cleaners/adobe_reader.xml ../cleaners/amule.xml ../cleaners/wine.xml #: ../cleaners/internet_explorer.xml ../cleaners/gimp.xml ../cleaners/kde.xml #: ../cleaners/deepscan.xml ../bleachbit/Cleaner.py:520 msgid "Delete the temporary files" msgstr "Poista väliaikaiset tiedostot" #: ../cleaners/seamonkey.xml ../cleaners/opera.xml ../bleachbit/Cleaner.py:201 msgid "Download history" msgstr "Lataushistoria" #: ../cleaners/seamonkey.xml ../cleaners/opera.xml ../bleachbit/Cleaner.py:201 msgid "List of files downloaded" msgstr "Lista ladatuista tiedostoista" #: ../cleaners/seamonkey.xml msgid "Delete the list of visited web pages" msgstr "Poista vierailtujen web-sivujen lista" #: ../cleaners/vuze.xml ../cleaners/deepscan.xml ../bleachbit/Cleaner.py:190 msgid "Backup files" msgstr "Varmuuskopiotiedostot" #: ../cleaners/vuze.xml ../cleaners/deepscan.xml ../bleachbit/Cleaner.py:191 msgid "Delete the backup files" msgstr "Poista varmuuskopiot" #: ../cleaners/konqueror.xml ../cleaners/opera.xml ../cleaners/chromium.xml msgid "Current session" msgstr "Nykyinen istunto" #: ../cleaners/konqueror.xml ../cleaners/opera.xml ../cleaners/chromium.xml msgid "Delete the current session" msgstr "Poista nykyinen istunto" #: ../cleaners/konqueror.xml ../cleaners/opera.xml ../bleachbit/Cleaner.py:213 msgid "URL history" msgstr "URL-historia" #: ../cleaners/microsoft_office.xml ../cleaners/libreoffice.xml #: ../bleachbit/Cleaner.py:375 msgid "Office suite" msgstr "Toimisto-ohjelmisto" #: ../cleaners/windows_defender.xml msgid "Anti-virus" msgstr "Virustorjunta" #: ../cleaners/journald.xml msgid "System journals" msgstr "Järjestelmän päiväkirjat (journal)" #: ../cleaners/journald.xml msgid "Clean old system journals" msgstr "Siivoa vanhat järjestelmän päiväkirjat" #: ../cleaners/adobe_reader.xml msgid "Document viewer" msgstr "Asiakirjakatselin" #: ../cleaners/evolution.xml ../cleaners/thunderbird.xml msgid "Email client" msgstr "Sähköpostiohjelma" #: ../cleaners/tremulous.xml msgid "Delete the list of game servers" msgstr "Poista lista pelipalvelimista" #: ../cleaners/sqlite3.xml ../cleaners/bash.xml ../cleaners/octave.xml msgid "Delete the command history" msgstr "Poista päätteen historia" #: ../cleaners/wine.xml msgid "Compatibility layer for Windows software" msgstr "Yhteensopivuustaso Windows-ohjelmistojen kanssa" #: ../cleaners/internet_explorer.xml ../cleaners/chromium.xml #: ../cleaners/google_chrome.xml ../bleachbit/Cleaner.py:202 msgid "Form history" msgstr "Lomakehistoria" #: ../cleaners/internet_explorer.xml ../bleachbit/Cleaner.py:203 msgid "A history of forms entered in web sites and in the Search bar" msgstr "Web-sivuille ja hakupalkkiin syötettyjen tietojen historia" #. This software edits metadata tags, such as title and artist, in audio files #: ../cleaners/easytag.xml msgid "Audio files tagger" msgstr "Äänitiedostojen merkitsijä" #: ../cleaners/apt.xml msgid "Delete obsolete files" msgstr "Poista vanhentuneet tiedostot" #: ../cleaners/apt.xml msgid "Package lists" msgstr "Pakettiluettelot" #: ../cleaners/xine.xml ../cleaners/miro.xml ../cleaners/flash.xml msgid "Multimedia viewer" msgstr "Multimediaohjelma" #: ../cleaners/recoll.xml ../cleaners/beagle.xml msgid "Search tool" msgstr "Hakutyökalu" #: ../cleaners/recoll.xml ../cleaners/beagle.xml ../cleaners/thunderbird.xml msgid "Index" msgstr "Indeksi" #: ../cleaners/recoll.xml msgid "" "Delete the search index, a database of words and the files they contain" msgstr "" "Poista hakuindeksi, tietokanta sanoista ja tiedostoista, joissa ne ovat" #: ../cleaners/gimp.xml msgid "Graphics editor" msgstr "Grafiikkaeditori" #: ../cleaners/exaile.xml msgid "Downloaded podcasts" msgstr "Ladatut podcastit" #: ../cleaners/exaile.xml msgid "Delete downloaded podcasts" msgstr "Poista ladatut podcastit" #: ../cleaners/bash.xml msgid "Shell" msgstr "Komentotulkki" #. TRANSLATORS: DOM = Document Object Model. #: ../cleaners/opera.xml ../cleaners/epiphany.xml ../cleaners/chromium.xml #: ../cleaners/google_chrome.xml ../bleachbit/Cleaner.py:199 msgid "DOM Storage" msgstr "DOM-tallennus" #: ../cleaners/opera.xml ../cleaners/epiphany.xml ../cleaners/chromium.xml #: ../cleaners/google_chrome.xml ../bleachbit/Cleaner.py:199 msgid "Delete HTML5 cookies" msgstr "Poista HTML5-evästeet" #: ../cleaners/opera.xml ../cleaners/epiphany.xml ../cleaners/chromium.xml #: ../cleaners/google_chrome.xml ../cleaners/thunderbird.xml #: ../bleachbit/Cleaner.py:208 msgid "Passwords" msgstr "Salasanat" #: ../cleaners/opera.xml ../cleaners/epiphany.xml ../cleaners/chromium.xml #: ../cleaners/google_chrome.xml ../cleaners/thunderbird.xml #: ../bleachbit/Cleaner.py:209 msgid "" "A database of usernames and passwords as well as a list of sites that should " "not store passwords" msgstr "" "Tietokanta käyttäjätunnuksista ja salasanoista sekä lista verkkosivustoista " "joiden salasanoja ei pitäisi tallentaa" #: ../cleaners/opera.xml ../cleaners/epiphany.xml ../cleaners/chromium.xml #: ../cleaners/google_chrome.xml ../cleaners/thunderbird.xml #: ../bleachbit/Cleaner.py:211 msgid "This option will delete your saved passwords." msgstr "Tämä valinta poistaa kaikki tallennetut salasanat." #: ../cleaners/nautilus.xml msgid "Custom folders will be reset." msgstr "Omat kansiot alustetaan." #: ../cleaners/gnome.xml ../cleaners/kde.xml msgid "Desktop environment" msgstr "Työpöytäympäristö" #: ../cleaners/screenlets.xml msgid "Widgets for the desktop" msgstr "Työpöydän sovelmat" #: ../cleaners/epiphany.xml msgid "Places" msgstr "Sijainnit" #: ../cleaners/epiphany.xml msgid "" "A database of URLs including bookmarks, favicons, and a history of visited " "web sites" msgstr "" "URL:eista koostuva tietokanta, jossa on kirjanmerkkejä, suosikki-ikoneja ja " "lista käydyistä sivustoista" #: ../cleaners/epiphany.xml msgid "This option deletes all bookmarks." msgstr "Tämä valinta poistaa kaikki kirjanmerkit." #: ../cleaners/winrar.xml msgid "File archiver" msgstr "Tiedostojen pakkaus ja purku" #: ../cleaners/elinks.xml msgid "Delete the cookies, visited URLs, and search history" msgstr "Poista evästeet, vieraillut URL:it ja hakuhistoria" #: ../cleaners/chromium.xml ../cleaners/google_chrome.xml msgid "A history of forms entered in web sites" msgstr "Sivujen lomakkeille kirjoitettu historia" #: ../cleaners/chromium.xml ../cleaners/google_chrome.xml msgid "" "Delete the history which includes visited sites, downloads, and thumbnails" msgstr "" "Poista historiatiedot käydyistä sivustoista latauksista ja kuvakkeista" #: ../cleaners/chromium.xml ../cleaners/google_chrome.xml msgid "Search engines" msgstr "Hakukoneet" #. 'Factory' means a search engine that is installed by default 'from the factory,' but this is different than a 'default search engine' https://lists.launchpad.net/launchpad-translators/msg00283.html #: ../cleaners/chromium.xml ../cleaners/google_chrome.xml msgid "" "Reset the search engine usage history and delete non-factory search engines, " "some of which are added automatically" msgstr "" "Tyhjennä hakukoneiden käyttöhistoria ja poista alkuperäisten rinnalle " "lisätyt hakukoneet (osa näistä on lisätty automaattisesti)" #: ../cleaners/audacious.xml msgid "Audio player" msgstr "Äänisoitin" #: ../cleaners/rhythmbox.xml msgid "Database" msgstr "Tietokanta" #: ../cleaners/rhythmbox.xml msgid "" "Delete the database, which contain information such as play count and last " "played" msgstr "" "Poista tietokanta, joka sisältää tietoja kuten toistokerrat ja viimeisimmän " "toiston ajankohdan" #: ../cleaners/google_chrome.xml msgid "Session" msgstr "Istunto" #: ../cleaners/google_chrome.xml msgid "Delete the current and last sessions" msgstr "Poista nykyinen ja aikaisemmat istunnot" #: ../cleaners/x11.xml msgid "Windowing system" msgstr "Ikkunointijärjestelmä" #: ../cleaners/wordpad.xml msgid "Word processor" msgstr "Tekstinkäsittelysovellus" #: ../cleaners/deepscan.xml msgid "Deep scan" msgstr "Tarkempi tutkimus" #: ../cleaners/deepscan.xml msgid "Clean files widely scattered across the disk" msgstr "Siivoa ympäri levyä olevat tiedostot" #: ../cleaners/deepscan.xml msgid "Inspect the preview for any files you want to keep." msgstr "Tarkista esikatselusta, jos haluat säilyttää joitain tiedostoja." #: ../cleaners/deepscan.xml msgid "This option is slow." msgstr "Tämä vaihtoehto on hidas." #: ../bleachbit.desktop msgid "Unnecessary file cleaner" msgstr "Turhien tiedostojen puhdistaja" #: ../bleachbit.desktop msgid "Free space and maintain privacy" msgstr "Vapauta tilaa ja hallitse yksityisyyttä" #: ../bleachbit/FileUtilities.py:668 msgid "" "There was at least one file on a file system that does not support advanced " "overwriting." msgstr "" "Tiedostojärjestelmässä oli ainakin yksi tiedosto, joka ei tue edistynyttä " "ylikirjoitusta." #: ../bleachbit/Unix.py:574 #, python-format msgid "Executable not found: %s" msgstr "Ohjelmaa ei löytynyt: %s" #. TRANSLATORS: %s expands to a name such as 'Firefox' or 'System'. #: ../bleachbit/Unix.py:623 ../bleachbit/Worker.py:136 #, python-format msgid "" "%s cannot be cleaned because it is currently running. Close it, and try " "again." msgstr "" "Kohdetta %s ei voitu siivota koska se on ajossa. Sulje se ja yritä uudelleen." #: ../bleachbit/GuiBasic.py:112 msgid "Delete confirmation" msgstr "Poiston vahvistus" #: ../bleachbit/GuiBasic.py:122 msgid "" "Are you sure you want to permanently delete files according to the selected " "operations? The actual files that will be deleted may have changed since " "you ran the preview." msgstr "" "Haluatko varmasti poistaa tiedostot valittujen operaatioiden mukaisesti? " "Poistettavat tiedostot ovat voineet muuttua sitten edellisen esikatselun." #: ../bleachbit/GuiBasic.py:125 msgid "Are you sure you want to permanently delete these files?" msgstr "Haluatko varmasti poistaa nämä tiedostot pysyvästi?" #: ../bleachbit/GuiBasic.py:162 #, python-format msgid "" "Because you are running as root, please manually open this link in a web " "browser:\n" "%s" msgstr "" "Koska sovellus suoritetaan järjestelmävalvojan oikeuksin, kopioi ja liitä " "seuraava linkki selaimeen:\n" "%s" #. TRANSLATORS: %s expands to www.bleachbit.org or similar #: ../bleachbit/GuiBasic.py:174 #, python-format msgid "Open web browser to %s?" msgstr "Avataanko osoite %s selaimessa?" #. TRANSLATORS: This is the label in the log indicating was #. skipped because it matches the whitelist #: ../bleachbit/Command.py:47 msgid "Skip" msgstr "Sivuuta" #. TRANSLATORS: This is the label in the log indicating will be #. deleted (for previews) or was actually deleted #: ../bleachbit/Command.py:77 msgid "Delete" msgstr "Poista" #: ../bleachbit/Command.py:99 msgid "" "At least one file was locked by another process, so its contents could not " "be overwritten. It will be marked for deletion upon system reboot." msgstr "" "Ainakin yksi tiedosto oli lukittu toisen prosessin toimesta, joten sen " "sisällön yli ei voitu kirjoittaa. Tiedosto asetetaan poistettavaksi " "järjestelmän uudelleenkäynnistyksen yhteydessä." #. TRANSLATORS: The file will be deleted when the #. system reboots #: ../bleachbit/Command.py:102 msgid "Mark for deletion" msgstr "Merkitse poistettavaksi" #. TRANSLATORS: Parts of this file will be deleted #: ../bleachbit/Command.py:199 ../bleachbit/Command.py:233 #: ../bleachbit/Action.py:254 ../bleachbit/Action.py:267 #: ../bleachbit/Action.py:280 ../bleachbit/Action.py:293 #: ../bleachbit/Action.py:306 msgid "Clean file" msgstr "Siivoa tiedosto" #. TRANSLATORS: The file will be truncated to 0 bytes in length #: ../bleachbit/Command.py:275 msgid "Truncate" msgstr "Katkaise" #: ../bleachbit/Command.py:317 msgid "Delete registry key" msgstr "Poista rekisterin avain" #. TRANSLATORS: This is cleaner name for cleaners imported from winapp2.ini #: ../bleachbit/Winapp.py:44 msgid "Applications" msgstr "Sovellukset" #. TRANSLATORS: This is cleaner name for cleaners imported #. from winapp2.ini #: ../bleachbit/Winapp.py:47 msgid "Internet" msgstr "Internet" #. TRANSLATORS: This is cleaner name for cleaners imported #. from winapp2.ini #: ../bleachbit/Winapp.py:50 msgid "Multimedia" msgstr "Multimedia" #. TRANSLATORS: This is cleaner name for cleaners imported #. from winapp2.ini #: ../bleachbit/Winapp.py:53 msgid "Utilities" msgstr "Apuohjelmat" #: ../bleachbit/Winapp.py:64 msgid "Games" msgstr "Pelit" #: ../bleachbit/Winapp.py:162 msgid "Imported from winapp2.ini" msgstr "Tuotu winapp2.ini-tiedostosta" #: ../bleachbit/Cleaner.py:197 msgid "Crash reports" msgstr "Kaatumisraportit" #: ../bleachbit/Cleaner.py:204 msgid "Session restore" msgstr "Istunnon palautus" #: ../bleachbit/Cleaner.py:205 msgid "Loads the initial session after the browser closes or crashes" msgstr "Lataa alkuperäisen istunnon selaimen lopetettua tai kaaduttua" #: ../bleachbit/Cleaner.py:207 msgid "Site preferences" msgstr "Sivustoasetukset" #: ../bleachbit/Cleaner.py:207 msgid "Settings for individual sites" msgstr "Asetukset yksittäisille sivustoille" #. TRANSLATORS: desktop entries are .desktop files in Linux that #. make up the application menu (the menu that shows BleachBit, #. Firefox, and others. The .desktop files also associate file #. types, so clicking on an .html file in Nautilus brings up #. Firefox. #. More information: #. http://standards.freedesktop.org/menu-spec/latest/index.html#introduction #: ../bleachbit/Cleaner.py:453 msgid "Broken desktop files" msgstr "Rikkonaiset työpöytätiedostot" #: ../bleachbit/Cleaner.py:454 msgid "Delete broken application menu entries and file associations" msgstr "Poista rikkonaiset sovellusvalikon kohteet ja tiedostosidonnaisuudet" #. TRANSLATORS: Localizations are files supporting specific #. languages, so applications appear in Spanish, etc. #: ../bleachbit/Cleaner.py:458 msgid "Localizations" msgstr "Lokalisaatiot" #: ../bleachbit/Cleaner.py:459 msgid "Delete files for unwanted languages" msgstr "Poista ei-toivotut kielitiedostot" #: ../bleachbit/Cleaner.py:461 msgid "Configure this option in the preferences." msgstr "Muokkaa tätä valintaa asetuksissa." #: ../bleachbit/Cleaner.py:467 msgid "Rotated logs" msgstr "Kierrätä lokeja" #: ../bleachbit/Cleaner.py:467 msgid "Delete old system logs" msgstr "Poista vanhat järjestelmälokit" #: ../bleachbit/Cleaner.py:470 msgid "Trash" msgstr "Roskakori" #: ../bleachbit/Cleaner.py:470 msgid "Empty the trash" msgstr "Tyhjennä roskakori" #: ../bleachbit/Cleaner.py:476 ../bleachbit/Cleaner.py:627 #: ../bleachbit/Worker.py:184 msgid "Memory" msgstr "Muisti" #. TRANSLATORS: 'free' means 'unallocated' #: ../bleachbit/Cleaner.py:478 msgid "Wipe the swap and free memory" msgstr "Tyhjennä swap ja vapaa muisti" #: ../bleachbit/Cleaner.py:480 msgid "This option is experimental and may cause system problems." msgstr "Tämä valinta on kokeellinen ja voi aiheuttaa ongelmia järjestelmään." #: ../bleachbit/Cleaner.py:488 msgid "Memory dump" msgstr "Muistivedos" #: ../bleachbit/Cleaner.py:488 msgid "Delete the file memory.dmp" msgstr "Poista tiedosto memory.dmp" #. TRANSLATORS: Prefetch is Microsoft Windows jargon. #: ../bleachbit/Cleaner.py:491 msgid "Prefetch" msgstr "Prefetch" #: ../bleachbit/Cleaner.py:493 msgid "Recycle bin" msgstr "Roskakori" #: ../bleachbit/Cleaner.py:493 ../bleachbit/Cleaner.py:787 msgid "Empty the recycle bin" msgstr "Tyhjennä roskakori" #. TRANSLATORS: 'Update' is a noun, and 'Update uninstallers' is an option to delete #. the uninstallers for software updates. #: ../bleachbit/Cleaner.py:496 msgid "Update uninstallers" msgstr "Päivitysten poisto-ohjelmat" #: ../bleachbit/Cleaner.py:497 msgid "" "Delete uninstallers for Microsoft updates including hotfixes, service packs, " "and Internet Explorer updates" msgstr "" "Poista Microsoft-päivityksille tarkoitetut poisto-ohjelmat (sisältää " "hotfixit, service packit ja Internet Explorer -päivitykset)" #: ../bleachbit/Cleaner.py:504 ../bleachbit/Cleaner.py:727 msgid "Clipboard" msgstr "Leikepöytä" #: ../bleachbit/Cleaner.py:505 msgid "" "The desktop environment's clipboard used for copy and paste operations" msgstr "Työpöytäympäristön kopiointiin ja liittämiseen käytetty leikepöytä" #. TRANSLATORS: "Custom" is an option allowing the user to specify which #. files and folders will be erased. #: ../bleachbit/Cleaner.py:512 ../bleachbit/GuiPreferences.py:66 msgid "Custom" msgstr "Mukautettu" #: ../bleachbit/Cleaner.py:513 msgid "Delete user-specified files and folders" msgstr "Poista käyttäjän määrittämät tiedostot ja kansiot" #. TRANSLATORS: 'free' means 'unallocated' #: ../bleachbit/Cleaner.py:515 msgid "Free disk space" msgstr "Vapaa levytila" #. TRANSLATORS: 'free' means 'unallocated' #: ../bleachbit/Cleaner.py:517 msgid "Overwrite free disk space to hide deleted files" msgstr "Piilota poistetut tiedostot kirjoittamalla vapaan levytilan päälle" #: ../bleachbit/Cleaner.py:518 msgid "This option is very slow." msgstr "Tämä vaihtoehto on erittäin hidas." #: ../bleachbit/Cleaner.py:522 msgid "The system in general" msgstr "Järjestelmä yleisesti" #: ../bleachbit/Cleaner.py:524 ../bleachbit/Cleaner.py:857 msgid "System" msgstr "Järjestelmä" #. TRANSLATORS: 'Free' means 'unallocated.' #. %s expands to a path such as C:\ or /tmp/ #: ../bleachbit/Cleaner.py:735 ../bleachbit/Cleaner.py:890 #, python-format msgid "Overwrite free disk space %s" msgstr "Päällekirjoita vapaa levytila %s" #: ../bleachbit/RecognizeCleanerML.py:59 msgid "Security warning" msgstr "Turvallisuusvaroitus" #: ../bleachbit/RecognizeCleanerML.py:72 msgid "" "These cleaner definitions are new or have changed. Malicious definitions can " "damage your system. If you do not trust these changes, delete the files or " "quit." msgstr "" "Nämä siivoojamääritykset ovat uusia tai muuttuneita. Haitalliset määritykset " "voivat vaurioittaa järjestelmääsi. Jollet luota näihin muutoksiin, poista " "tiedostot tai lopeta." #: ../bleachbit/RecognizeCleanerML.py:88 msgctxt "column_label" msgid "Delete" msgstr "Poista" #: ../bleachbit/RecognizeCleanerML.py:93 msgctxt "column_label" msgid "Filename" msgstr "Tiedostonimi" #. TRANSLATORS: This indicates an error. The special keyword #. %(operation)s will be replaced by 'firefox' or 'opera' or #. some other cleaner ID. The special keyword %(msg)s will be #. replaced by a message such as 'Permission denied.' #: ../bleachbit/Worker.py:74 #, python-format msgid "Exception while running operation '%(operation)s': '%(msg)s'" msgstr "Virhe suoritettaessa operaatiota ”%(operation)s”: ”%(msg)s”" #. TRANSLATORS: 'free' means 'unallocated' #: ../bleachbit/Worker.py:182 msgid "Please wait. Wiping free disk space." msgstr "Odota, tyhjennetään vapaata levytilaa." #. TRANSLATORS: %s is replaced with Firefox, System, etc. #: ../bleachbit/Worker.py:184 ../bleachbit/Worker.py:332 #, python-format msgid "Please wait. Cleaning %s." msgstr "Odota. Siivotaan kohdetta %s." #: ../bleachbit/Worker.py:199 msgid "Please wait. Wiping file system metadata." msgstr "Odota, tyhjennetään tiedostojärjestelmän metatietoja." #: ../bleachbit/Worker.py:202 msgid "Please wait. Cleaning up after wiping file system metadata." msgstr "" "Odota, siivotaan tiedostojärjestelmän metatietojen tyhjennyksen jälkeen." #: ../bleachbit/Worker.py:205 #, python-format msgid "About %d minute remaining." msgid_plural "About %d minutes remaining." msgstr[0] "Noin %d minuutti jäljellä." msgstr[1] "Noin %d minuuttia jäljellä." #. TRANSLATORS: This refers to disk space that was #. really recovered (in other words, not a preview) #: ../bleachbit/Worker.py:272 #, python-format msgid "Disk space recovered: %s" msgstr "Levytilaa vapautettu: %s" #. TRANSLATORS: This refers to a preview (no real #. changes were made yet) #: ../bleachbit/Worker.py:276 #, python-format msgid "Disk space to be recovered: %s" msgstr "Levytilaa vapautuu: %s" #. TRANSLATORS: This refers to the number of files really #. deleted (in other words, not a preview). #: ../bleachbit/Worker.py:281 #, python-format msgid "Files deleted: %d" msgstr "Tiedostoja poistettu: %d" #. TRANSLATORS: This refers to the number of files that #. would be deleted (in other words, simply a preview). #: ../bleachbit/Worker.py:285 #, python-format msgid "Files to be deleted: %d" msgstr "Poistettavia tiedostoja: %d" #: ../bleachbit/Worker.py:288 #, python-format msgid "Special operations: %d" msgstr "Erikoisoperaatiot: %d" #: ../bleachbit/Worker.py:291 #, python-format msgid "Errors: %d" msgstr "Virheet: %d" #. TRANSLATORS: The "deep scan" feature searches over broad #. areas of the file system such as the user's whole home directory #. or all the system executables. #: ../bleachbit/Worker.py:306 msgid "Please wait. Running deep scan." msgstr "Odota, tarkempi tutkimus on meneillään." #. TRANSLATORS: %s is replaced with Firefox, System, etc. #: ../bleachbit/Worker.py:335 #, python-format msgid "Please wait. Previewing %s." msgstr "Odota. Esikatsellaan kohdetta %s." #: ../bleachbit/Update.py:80 msgid "New winapp2.ini was downloaded." msgstr "Uusi winapp2.ini ladattiin." #: ../bleachbit/Update.py:125 msgid "Update BleachBit" msgstr "Päivitä BleachBit" #: ../bleachbit/Update.py:130 msgid "A new version is available." msgstr "Uusi versio on saatavilla." #. TRANSLATORS: %s expands to version such as '0.8.4' or '0.8.5beta' or #. similar #: ../bleachbit/Update.py:139 #, python-format msgid "Update to version %s" msgstr "Päivitä versioon %s" #: ../bleachbit/Update.py:164 #, python-format msgid "" "Error when opening a network connection to %s to check for updates. Please " "verify the network is working." msgstr "" "Virhe verkkoyhteyttä avatessa %s-päivitysten tarkistamista varten. Tarkista " "verkkoyhteyden toimivuus." #: ../bleachbit/CLI.py:106 #, python-format msgid "not a valid cleaner: %s" msgstr "virheellinen siivooja: %s" #. TRANSLATORS: This is the command line usage. Don't translate #. %prog, but do translate usage, options, cleaner, and option. #. More information about the command line is here #. https://www.bleachbit.org/documentation/command-line #: ../bleachbit/CLI.py:133 msgid "usage: %prog [options] cleaner.option1 cleaner.option2" msgstr "käyttö: %prog [valinnat] siivooja.valinta1 siivooja.valinta2" #: ../bleachbit/CLI.py:136 msgid "list cleaners" msgstr "listaa siivoojat" #. TRANSLATORS: predefined cleaners are for applications, such as Firefox and Flash. #. This is different than cleaning an arbitrary file, such as a #. spreadsheet on the desktop. #: ../bleachbit/CLI.py:141 msgid "run cleaners to delete files and make other permanent changes" msgstr "" "suorita siivoojat poistaaksesi tiedostoja ja tehdäksesi muita pysyviä " "muutoksia" #: ../bleachbit/CLI.py:144 msgid "shred specific files or folders" msgstr "tee silppua tietyistä tiedostoista tai kansioista" #: ../bleachbit/CLI.py:146 msgid "show system information" msgstr "näytä järjestelmän tiedot" #: ../bleachbit/CLI.py:148 msgid "launch the graphical interface" msgstr "käynnistä graafinen käyttöliittymä" #: ../bleachbit/CLI.py:152 msgid "do not prompt for administrator privileges" msgstr "älä pyydä järjestelmävalvojan oikeuksia" #: ../bleachbit/CLI.py:157 msgid "preview files to be deleted and other changes" msgstr "esikatsele poistettavat tiedostot ja muut muutokset" #: ../bleachbit/CLI.py:161 msgid "use options set in the graphical interface" msgstr "käytä graafisessa käyttöliittymässä asetettuja valintoja" #: ../bleachbit/CLI.py:164 msgid "update winapp2.ini, if a new version is available" msgstr "päivitä winapp2.ini, jos uusi versio on saatavilla" #: ../bleachbit/CLI.py:166 msgid "output version information and exit" msgstr "tulosta versiotiedot ja poistu" #: ../bleachbit/CLI.py:168 msgid "overwrite files to hide contents" msgstr "päällekirjoita tiedostot sisällön piilottamiseksi" #. TRANSLATORS: this is the context menu #: ../bleachbit/Action.py:382 ../bleachbit/GUI.py:632 msgid "Clean" msgstr "Siivoa" #: ../bleachbit/Action.py:418 #, python-format msgid "Run external command: %s" msgstr "Suorita ulkoinen komento: %s" #: ../bleachbit/GUI.py:135 ../bleachbit/GuiPreferences.py:296 msgid "Name" msgstr "Nimi" #: ../bleachbit/GUI.py:143 msgid "Active" msgstr "Aktiivinen" #. TRANSLATORS: Size is the label for the column that shows how #. much space an option would clean or did clean #: ../bleachbit/GUI.py:155 msgid "Size" msgstr "Koko" #. TRANSLATORS: %(cleaner) may be Firefox, System, etc. #. %(option) may be cache, logs, cookies, etc. #. %(warning) may be 'This option is really slow' #: ../bleachbit/GUI.py:186 #, python-format msgid "" "Warning regarding %(cleaner)s - %(option)s:\n" "\n" "%(warning)s" msgstr "" "Varoitus: %(cleaner)s - %(option)s:\n" "\n" "%(warning)s" #: ../bleachbit/GUI.py:372 msgid "You must select an operation" msgstr "Sinun pitää valita operaatio" #: ../bleachbit/GUI.py:391 ../bleachbit/GUI.py:413 msgid "Done." msgstr "Tehty." #: ../bleachbit/GUI.py:426 msgid "Program to clean unnecessary files" msgstr "Turhat tiedostot siivoava ohjelma" #: ../bleachbit/GUI.py:436 msgid "" "GNU General Public License version 3 or later.\n" "See http://www.gnu.org/licenses/gpl-3.0.txt" msgstr "" "GNU General Public License versio 3 tai uudempi.\n" "Katso http://www.gnu.org/licenses/gpl-3.0.txt" #. TRANSLATORS: Maintain the names of translators here. #. Launchpad does this automatically for translations #. typed in Launchpad. This is a special string shown #. in the 'About' box. #: ../bleachbit/GUI.py:442 msgid "translator-credits" msgstr "" "Launchpad Contributions:\n" " Heidi Mattila https://launchpad.net/~hessuk-deactivatedaccount\n" " Jan Forsbacka https://launchpad.net/~shopanda\n" " Jiri Grönroos https://launchpad.net/~jiri-gronroos\n" " Kimmo Lahtinen https://launchpad.net/~kimple\n" " Lauri Lappalainen https://launchpad.net/~lappla1\n" " Pekka Niemi https://launchpad.net/~pekka-niemi\n" " Sami Korkalainen https://launchpad.net/~zazaamm\n" " Tommi Saira https://launchpad.net/~tommisaira\n" " papukaija https://launchpad.net/~papukaija" #: ../bleachbit/GUI.py:454 msgid "System information" msgstr "Järjestelmätiedot" #: ../bleachbit/GUI.py:527 msgid "Choose files to shred" msgstr "Valitse silputtavat tiedostot" #: ../bleachbit/GUI.py:530 msgid "Choose folder to shred" msgstr "Valitse silputtava kansio" #: ../bleachbit/GUI.py:594 ../bleachbit/GuiPreferences.py:197 #: ../bleachbit/GuiPreferences.py:326 ../bleachbit/GuiPreferences.py:367 msgid "Choose a folder" msgstr "Valitse kansio" #. TRANSLATORS: this is the context menu #: ../bleachbit/GUI.py:627 msgid "Preview" msgstr "Esikatselu" #: ../bleachbit/GUI.py:734 msgid "_Shred Files" msgstr "Tee sil_ppua tiedostoista" #: ../bleachbit/GUI.py:736 msgid "Sh_red Folders" msgstr "Tee si_lppua kansioista" #: ../bleachbit/GUI.py:738 msgid "_Wipe Free Space" msgstr "Ty_hjennä levytilaa" #: ../bleachbit/GUI.py:740 msgid "S_hred Settings and Quit" msgstr "P_oista asetukset ja lopeta" #: ../bleachbit/GUI.py:742 msgid "_Quit" msgstr "_Lopeta" #: ../bleachbit/GUI.py:744 msgid "_File" msgstr "_Tiedosto" #: ../bleachbit/GUI.py:746 ../bleachbit/GuiPreferences.py:58 msgid "Preferences" msgstr "Asetukset" #: ../bleachbit/GUI.py:747 msgid "_Edit" msgstr "_Muokkaa" #: ../bleachbit/GUI.py:748 msgid "Help Contents" msgstr "Ohjeen sisältö" #: ../bleachbit/GUI.py:751 msgid "_Release Notes" msgstr "_Versiotiedot" #: ../bleachbit/GUI.py:754 msgid "_System Information" msgstr "_Järjestelmätiedot" #: ../bleachbit/GUI.py:757 msgid "_About" msgstr "_Tietoja" #: ../bleachbit/GUI.py:758 msgid "_Help" msgstr "_Ohje" #: ../bleachbit/GUI.py:783 msgctxt "button" msgid "Preview" msgstr "Esikatselu" #: ../bleachbit/GUI.py:788 msgid "Preview files in the selected operations (without deleting any files)" msgstr "" "Esikatsele valittujen operaatioiden tiedostot (poistamatta tiedostoja)" #: ../bleachbit/GUI.py:798 msgctxt "button" msgid "Clean" msgstr "Siivoa" #: ../bleachbit/GUI.py:802 msgid "Clean files in the selected operations" msgstr "Siivoa tiedostot valituilta toimenpiteiltä" #: ../bleachbit/GUI.py:893 msgid "Error when checking for updates: " msgstr "Virhe tarkistettaessa päivityksiä: " #: ../bleachbit/GUI.py:932 msgid "" "Error loading the SQLite module: the antivirus software may be blocking it." msgstr "" "Virhe ladattaessa SQLite-moduulia: viruksentorjuntasovellus saattaa estää " "sen toiminnan." #: ../bleachbit/GUI.py:935 msgid "" "You are running BleachBit with administrative privileges for cleaning shared " "parts of the system, and references to the user profile folder will clean " "only the root account." msgstr "" "BleachBit on käynnissä ylläpitäjän oikeuksin, jolloin järjestelmän jaettujen " "osien siivoaminen on mahdollista. Viittaukset käyttäjäkohtaiseen kansioon " "siivoavat ainoastaan ylläpitäjän tilin." #: ../bleachbit/GUI.py:940 msgid "" "Run BleachBit with administrator privileges to improve the accuracy of " "overwriting the contents of files." msgstr "" "Suorita BleachBit ylläpitäjän oikeuksin parantaaksesi tiedostojen sisällön " "ylikirjoituksen tarkkuutta." #: ../bleachbit/GuiPreferences.py:64 msgid "General" msgstr "Yleiset" #: ../bleachbit/GuiPreferences.py:67 msgid "Drives" msgstr "Levyt" #: ../bleachbit/GuiPreferences.py:70 msgid "Languages" msgstr "Kielet" #: ../bleachbit/GuiPreferences.py:72 msgid "Whitelist" msgstr "Päästölista" #: ../bleachbit/GuiPreferences.py:117 msgid "Check periodically for software updates via the Internet" msgstr "Tarkista ajoittain päivitykset Internetistä" #: ../bleachbit/GuiPreferences.py:122 msgid "" "If an update is found, you will be given the option to view information " "about it. Then, you may manually download and install the update." msgstr "" "Jos päivitys löytyy, voit katsella sen tiedot. Sen jälkeen voit ladata ja " "asentaa päivityksen käsin." #: ../bleachbit/GuiPreferences.py:128 msgid "Check for new beta releases" msgstr "Tarkista uusien beta-versioiden saatavuus" #: ../bleachbit/GuiPreferences.py:137 msgid "Download and update cleaners from community (winapp2.ini)" msgstr "Lataa ja päivitä yhteisön luomat siivoojat (winapp2.ini)" #. TRANSLATORS: This means to hide cleaners which would do #. nothing. For example, if Firefox were never used on #. this system, this option would hide Firefox to simplify #. the list of cleaners. #: ../bleachbit/GuiPreferences.py:151 msgid "Hide irrelevant cleaners" msgstr "Piilota epäolennaiset siivoojat" #. TRANSLATORS: Overwriting is the same as shredding. It is a way #. to prevent recovery of the data. You could also translate #. 'Shred files to prevent recovery.' #: ../bleachbit/GuiPreferences.py:159 msgid "Overwrite contents of files to prevent recovery" msgstr "Kirjoita tiedostojen sisällön yli palauttamisen estämiseksi" #: ../bleachbit/GuiPreferences.py:163 msgid "" "Overwriting is ineffective on some file systems and with certain BleachBit " "operations. Overwriting is significantly slower." msgstr "" "Päällekirjoitus ei tehoa joissain tiedostojärjestelmissä ja tietyissä " "BleachBitin operaatioissa. Päällekirjoitus on huomattavasti hitaampaa." #: ../bleachbit/GuiPreferences.py:166 msgid "Start BleachBit with computer" msgstr "Käynnistä BleachBit automaattisesti" #: ../bleachbit/GuiPreferences.py:172 msgid "Exit after cleaning" msgstr "Poistu siivouksen jälkeen" #: ../bleachbit/GuiPreferences.py:178 msgid "Confirm before delete" msgstr "Pyydä vahvistus ennen poistamista" #: ../bleachbit/GuiPreferences.py:186 msgid "Use IEC sizes (1 KiB = 1024 bytes) instead of SI (1 kB = 1000 bytes)" msgstr "" "Käytä IEC-yksikköjä (1 KiB = 1024 tavua) SI-yksikköjen sijaan (1 kt = 1000 " "tavua)" #: ../bleachbit/GuiPreferences.py:221 msgid "" "Choose a writable folder for each drive for which to overwrite free space." msgstr "" "Valitse kirjoitettava kansio jokaiselle asemalle joihin ylikirjoitetaan " "käyttämätöntä tilaa." #. TRANSLATORS: In the preferences dialog, this button adds a path to #. the list of paths #: ../bleachbit/GuiPreferences.py:243 msgctxt "button" msgid "Add" msgstr "Lisää" #. TRANSLATORS: In the preferences dialog, this button removes a path #. from the list of paths #: ../bleachbit/GuiPreferences.py:247 ../bleachbit/GuiPreferences.py:458 msgctxt "button" msgid "Remove" msgstr "Poista" #: ../bleachbit/GuiPreferences.py:272 msgid "All languages will be deleted except those checked." msgstr "Kielet, joita ei ole merkitty, poistetaan." #: ../bleachbit/GuiPreferences.py:288 msgid "Preserve" msgstr "Säilytä" #: ../bleachbit/GuiPreferences.py:292 msgid "Code" msgstr "Koodi" #: ../bleachbit/GuiPreferences.py:313 ../bleachbit/GuiPreferences.py:354 msgid "Choose a file" msgstr "Valitse tiedosto" #: ../bleachbit/GuiPreferences.py:320 ../bleachbit/GuiPreferences.py:361 #: ../bleachbit/GuiPreferences.py:405 msgid "File" msgstr "Tiedosto" #: ../bleachbit/GuiPreferences.py:334 ../bleachbit/GuiPreferences.py:375 #: ../bleachbit/GuiPreferences.py:407 msgid "Folder" msgstr "Kansio" #: ../bleachbit/GuiPreferences.py:417 msgid "Theses paths will not be deleted or modified." msgstr "Seuraavia polkuja ei poisteta tai muokata." #: ../bleachbit/GuiPreferences.py:420 msgid "These locations can be selected for deletion." msgstr "Nämä sijainnit on mahdollista valita poistettaviksi." #: ../bleachbit/GuiPreferences.py:428 msgid "Type" msgstr "Tyyppi" #. TRANSLATORS: In the tree view "Path" is used generically to refer to a #. file, a folder, or a pattern describing either #: ../bleachbit/GuiPreferences.py:434 msgid "Path" msgstr "Polku" #: ../bleachbit/GuiPreferences.py:446 msgctxt "button" msgid "Add file" msgstr "Lisää tiedosto" #: ../bleachbit/GuiPreferences.py:452 msgctxt "button" msgid "Add folder" msgstr "Lisää kansio" bleachbit-2.0/po/ja.po0000644000175000017500000014154613245436307012764 0ustar hlehle# Japanese translation for bleachbit # Copyright (c) 2009 Rosetta Contributors and Canonical Ltd 2009 # This file is distributed under the same license as the bleachbit package. # FIRST AUTHOR , 2009. # msgid "" msgstr "" "Project-Id-Version: bleachbit\n" "Report-Msgid-Bugs-To: FULL NAME \n" "POT-Creation-Date: 2017-02-11 11:12-0700\n" "PO-Revision-Date: 2018-01-13 14:08+0000\n" "Last-Translator: Shinichirou Yamada " "\n" "Language-Team: Japanese \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=1; plural=0;\n" "X-Launchpad-Export-Date: 2018-01-13 19:24+0000\n" "X-Generator: Launchpad (build 18532)\n" #: ../cleaners/mc.xml ../cleaners/tortoisesvn.xml ../cleaners/vim.xml #: ../cleaners/safari.xml ../cleaners/links2.xml ../cleaners/seamonkey.xml #: ../cleaners/realplayer.xml ../cleaners/windows_defender.xml #: ../cleaners/d4x.xml ../cleaners/sqlite3.xml #: ../cleaners/internet_explorer.xml ../cleaners/libreoffice.xml #: ../cleaners/easytag.xml ../cleaners/bash.xml ../cleaners/nautilus.xml #: ../cleaners/octave.xml ../cleaners/elinks.xml ../cleaners/chromium.xml #: ../cleaners/google_chrome.xml msgid "History" msgstr "履歴" #: ../cleaners/mc.xml ../cleaners/tortoisesvn.xml ../cleaners/links2.xml #: ../cleaners/realplayer.xml ../cleaners/d4x.xml ../cleaners/libreoffice.xml #: ../cleaners/easytag.xml ../cleaners/nautilus.xml ../cleaners/gnome.xml #: ../bleachbit/Cleaner.py:349 ../bleachbit/Cleaner.py:423 #: ../bleachbit/Cleaner.py:432 msgid "Delete the usage history" msgstr "使用履歴の削除" #: ../cleaners/gpodder.xml ../cleaners/hippo_opensim_viewer.xml #: ../cleaners/thumbnails.xml ../cleaners/safari.xml ../cleaners/emesene.xml #: ../cleaners/liferea.xml ../cleaners/seamonkey.xml ../cleaners/vuze.xml #: ../cleaners/yahoo_messenger.xml ../cleaners/pidgin.xml #: ../cleaners/adobe_reader.xml ../cleaners/evolution.xml #: ../cleaners/tremulous.xml ../cleaners/libreoffice.xml ../cleaners/xine.xml #: ../cleaners/nexuiz.xml ../cleaners/exaile.xml ../cleaners/opera.xml #: ../cleaners/amsn.xml ../cleaners/gftp.xml ../cleaners/miro.xml #: ../cleaners/beagle.xml ../cleaners/kde.xml ../cleaners/epiphany.xml #: ../cleaners/flash.xml ../cleaners/secondlife_viewer.xml ../cleaners/java.xml #: ../cleaners/chromium.xml ../cleaners/audacious.xml ../cleaners/rhythmbox.xml #: ../cleaners/google_chrome.xml ../cleaners/thunderbird.xml #: ../bleachbit/Cleaner.py:192 ../bleachbit/Cleaner.py:370 #: ../bleachbit/Cleaner.py:455 msgid "Cache" msgstr "キャッシュ" #: ../cleaners/gpodder.xml ../cleaners/yum.xml #: ../cleaners/hippo_opensim_viewer.xml ../cleaners/thumbnails.xml #: ../cleaners/windows_explorer.xml ../cleaners/liferea.xml #: ../cleaners/vuze.xml ../cleaners/yahoo_messenger.xml ../cleaners/pidgin.xml #: ../cleaners/adobe_reader.xml ../cleaners/evolution.xml #: ../cleaners/libreoffice.xml ../cleaners/apt.xml ../cleaners/xine.xml #: ../cleaners/nexuiz.xml ../cleaners/exaile.xml ../cleaners/amsn.xml #: ../cleaners/gftp.xml ../cleaners/miro.xml ../cleaners/beagle.xml #: ../cleaners/kde.xml ../cleaners/flash.xml ../cleaners/secondlife_viewer.xml #: ../cleaners/java.xml ../cleaners/audacious.xml ../cleaners/rhythmbox.xml #: ../bleachbit/Cleaner.py:370 ../bleachbit/Cleaner.py:455 #: ../bleachbit/Cleaner.py:489 ../bleachbit/Cleaner.py:491 msgid "Delete the cache" msgstr "キャッシュの削除" #. TRANSLATORS: Vacuum is a verb. The term is jargon #. from the SQLite database. Microsoft Access uses #. the term 'Compact Database' (which you may translate #. instead). Another synonym is 'defragment.' #: ../cleaners/gpodder.xml ../cleaners/yum.xml ../cleaners/safari.xml #: ../cleaners/liferea.xml ../cleaners/chromium.xml #: ../cleaners/google_chrome.xml ../cleaners/thunderbird.xml #: ../bleachbit/Cleaner.py:214 ../bleachbit/Cleaner.py:360 #: ../bleachbit/Action.py:445 msgid "Vacuum" msgstr "Vacuum" #: ../cleaners/gpodder.xml ../cleaners/yum.xml ../cleaners/safari.xml #: ../cleaners/liferea.xml ../cleaners/chromium.xml #: ../cleaners/google_chrome.xml ../cleaners/thunderbird.xml #: ../bleachbit/Cleaner.py:215 msgid "" "Clean database fragmentation to reduce space and improve speed without " "removing any data" msgstr "データベースの断片化を解消 (データサイズの縮小、速度の改善)" #: ../cleaners/yum.xml ../cleaners/apt.xml msgid "Package manager" msgstr "パッケージマネージャー" #: ../cleaners/warzone2100.xml ../cleaners/hippo_opensim_viewer.xml #: ../cleaners/gl-117.xml ../cleaners/tremulous.xml ../cleaners/nexuiz.xml #: ../cleaners/secondlife_viewer.xml msgid "Game" msgstr "ゲーム" #: ../cleaners/warzone2100.xml ../cleaners/hippo_opensim_viewer.xml #: ../cleaners/teamviewer.xml ../cleaners/realplayer.xml ../cleaners/vuze.xml #: ../cleaners/yahoo_messenger.xml ../cleaners/amule.xml #: ../cleaners/easytag.xml ../cleaners/exaile.xml ../cleaners/screenlets.xml #: ../cleaners/gftp.xml ../cleaners/miro.xml ../cleaners/audacious.xml #: ../bleachbit/Cleaner.py:486 msgid "Logs" msgstr "ログファイル" #: ../cleaners/warzone2100.xml ../cleaners/hippo_opensim_viewer.xml #: ../cleaners/teamviewer.xml ../cleaners/realplayer.xml ../cleaners/vuze.xml #: ../cleaners/yahoo_messenger.xml ../cleaners/amule.xml ../cleaners/exaile.xml #: ../cleaners/screenlets.xml ../cleaners/gftp.xml ../cleaners/miro.xml #: ../cleaners/audacious.xml ../bleachbit/Cleaner.py:486 msgid "Delete the logs" msgstr "ログファイルの削除" #: ../cleaners/thumbnails.xml ../cleaners/windows_explorer.xml msgid "Thumbnails" msgstr "サムネイル" #: ../cleaners/thumbnails.xml msgid "Icons for files on the system" msgstr "ファイルのアイコン" #: ../cleaners/vim.xml ../cleaners/gedit.xml msgid "Editor" msgstr "エディター" #: ../cleaners/vim.xml msgid "" "Delete ~/.viminfo which includes file history, command history, and buffers" msgstr "~/.viminfo の削除 (ファイル履歴、コマンド履歴、バッファ情報を含みます)" #: ../cleaners/filezilla.xml ../cleaners/transmission.xml ../cleaners/vuze.xml #: ../cleaners/amule.xml ../cleaners/gftp.xml msgid "File transfer client" msgstr "ファイル転送アプリ" #: ../cleaners/filezilla.xml ../cleaners/paint.xml #: ../cleaners/windows_media_player.xml ../cleaners/windows_explorer.xml #: ../cleaners/teamviewer.xml ../cleaners/microsoft_office.xml #: ../cleaners/vlc.xml ../cleaners/adobe_reader.xml ../cleaners/winamp.xml #: ../cleaners/winzip.xml ../cleaners/winrar.xml ../cleaners/audacious.xml #: ../cleaners/wordpad.xml ../bleachbit/Cleaner.py:371 msgid "Most recently used" msgstr "最近使用したファイル" #: ../cleaners/filezilla.xml ../cleaners/windows_explorer.xml #: ../cleaners/gwenview.xml ../cleaners/adobe_reader.xml ../cleaners/gedit.xml #: ../cleaners/kde.xml ../cleaners/audacious.xml ../bleachbit/Cleaner.py:372 #: ../bleachbit/Cleaner.py:469 msgid "Delete the list of recently used documents" msgstr "最近使用したドキュメントの履歴の削除" #: ../cleaners/skype.xml ../cleaners/emesene.xml #: ../cleaners/yahoo_messenger.xml ../cleaners/pidgin.xml ../cleaners/amsn.xml msgid "Chat client" msgstr "チャットアプリ" #: ../cleaners/skype.xml ../cleaners/hexchat.xml ../cleaners/emesene.xml #: ../cleaners/seamonkey.xml ../cleaners/yahoo_messenger.xml #: ../cleaners/pidgin.xml ../cleaners/amsn.xml msgid "Chat logs" msgstr "チャット会話ログ" #: ../cleaners/skype.xml ../cleaners/hexchat.xml ../cleaners/emesene.xml #: ../cleaners/seamonkey.xml ../cleaners/yahoo_messenger.xml #: ../cleaners/pidgin.xml ../cleaners/amsn.xml msgid "Delete the chat logs" msgstr "チャット会話ログの削除" #: ../cleaners/skype.xml msgid "Installers" msgstr "インストーラー" #: ../cleaners/skype.xml msgid "Delete cached patches and installers" msgstr "キャッシュされたパッチとインストーラーの削除" #: ../cleaners/hexchat.xml msgid "IRC client formerly known as XChat" msgstr "以前は XChat として知られていた IRC クライアント" #: ../cleaners/safari.xml ../cleaners/links2.xml ../cleaners/seamonkey.xml #: ../cleaners/konqueror.xml ../cleaners/internet_explorer.xml #: ../cleaners/opera.xml ../cleaners/epiphany.xml ../cleaners/elinks.xml #: ../cleaners/chromium.xml ../cleaners/google_chrome.xml #: ../bleachbit/Cleaner.py:226 msgid "Web browser" msgstr "ウェブブラウザー" #: ../cleaners/safari.xml ../cleaners/seamonkey.xml ../cleaners/opera.xml #: ../cleaners/epiphany.xml ../cleaners/chromium.xml #: ../cleaners/google_chrome.xml ../cleaners/thunderbird.xml #: ../bleachbit/Cleaner.py:193 msgid "Delete the web cache, which reduces time to display revisited pages" msgstr "ウェブサイトのキャッシュの削除 (訪問済みページの表示速度改善)" #: ../cleaners/safari.xml ../cleaners/liferea.xml ../cleaners/seamonkey.xml #: ../cleaners/realplayer.xml ../cleaners/konqueror.xml #: ../cleaners/internet_explorer.xml ../cleaners/opera.xml #: ../cleaners/epiphany.xml ../cleaners/flash.xml ../cleaners/silverlight.xml #: ../cleaners/chromium.xml ../cleaners/google_chrome.xml #: ../cleaners/thunderbird.xml ../bleachbit/Cleaner.py:194 msgid "Cookies" msgstr "Cookie" #: ../cleaners/safari.xml ../cleaners/liferea.xml ../cleaners/seamonkey.xml #: ../cleaners/realplayer.xml ../cleaners/konqueror.xml #: ../cleaners/internet_explorer.xml ../cleaners/opera.xml #: ../cleaners/epiphany.xml ../cleaners/flash.xml ../cleaners/silverlight.xml #: ../cleaners/chromium.xml ../cleaners/google_chrome.xml #: ../cleaners/thunderbird.xml ../bleachbit/Cleaner.py:195 msgid "" "Delete cookies, which contain information such as web site preferences, " "authentication, and tracking identification" msgstr "Cookie の削除 (サイトの設定、認証、アクセス解析のための追跡情報などが含まれます)" #: ../cleaners/safari.xml ../cleaners/konqueror.xml #: ../cleaners/internet_explorer.xml ../cleaners/opera.xml #: ../bleachbit/Cleaner.py:213 msgid "List of visited web pages" msgstr "訪問済みページの一覧" #. Torrent software can block a list of IP addresses, such as those that may belong to malware or anti-piracy organizations #: ../cleaners/transmission.xml msgid "Blocklists" msgstr "ブロックリスト" #: ../cleaners/transmission.xml ../cleaners/windows_defender.xml #: ../cleaners/beagle.xml ../cleaners/thunderbird.xml ../cleaners/deepscan.xml #: ../bleachbit/Cleaner.py:197 msgid "Delete the files" msgstr "ファイルの削除" #: ../cleaners/transmission.xml msgid "Blocklists will need update to work." msgstr "" #: ../cleaners/transmission.xml msgid "Torrents" msgstr "Torrent" #: ../cleaners/transmission.xml msgid "Delete the torrents (just the metadata but not the files described)" msgstr "Torrent の削除 (ファイルではなくメタデータのみ)" #: ../cleaners/transmission.xml msgid "Statistics" msgstr "統計情報" #: ../cleaners/transmission.xml msgid "Delete the file" msgstr "ファイルの削除" #: ../cleaners/paint.xml ../cleaners/windows_media_player.xml #: ../cleaners/windows_explorer.xml ../cleaners/teamviewer.xml #: ../cleaners/microsoft_office.xml ../cleaners/vlc.xml ../cleaners/winamp.xml #: ../cleaners/winzip.xml ../cleaners/winrar.xml ../cleaners/wordpad.xml msgid "Delete the most recently used list" msgstr "最近使用したファイル一覧の削除" #: ../cleaners/emesene.xml msgid "Delete the avatars and emoticons cache" msgstr "アバターと emoticon キャッシュの削除" #: ../cleaners/windows_media_player.xml ../cleaners/realplayer.xml #: ../cleaners/vlc.xml ../cleaners/winamp.xml msgid "Media player" msgstr "メディアプレイヤー" #: ../cleaners/windows_explorer.xml ../cleaners/nautilus.xml msgid "File manager" msgstr "ファイルマネージャー" #: ../cleaners/windows_explorer.xml ../cleaners/gwenview.xml #: ../cleaners/gedit.xml ../cleaners/kde.xml ../bleachbit/Cleaner.py:468 #: ../bleachbit/Cleaner.py:663 msgid "Recent documents list" msgstr "最近使用したドキュメント一覧" #: ../cleaners/windows_explorer.xml msgid "" "This option will reset pinned locations in Quick Access to their defaults." msgstr "このオプションはクイックアクセスにピン留めされた場所をデフォルトにリセットします。" #. In Windows 'Run' is the dialog in the Start menu #. In GNOME 'Run' is the dialog shown when typing ALT+F2' #: ../cleaners/windows_explorer.xml ../cleaners/gnome.xml msgid "Run" msgstr "実行" #: ../cleaners/windows_explorer.xml ../cleaners/opera.xml ../cleaners/gnome.xml #: ../cleaners/google_toolbar.xml msgid "Search history" msgstr "検索履歴" #: ../cleaners/windows_explorer.xml ../cleaners/opera.xml ../cleaners/gnome.xml #: ../cleaners/google_toolbar.xml msgid "Delete the search history" msgstr "検索履歴の削除" #: ../cleaners/windows_explorer.xml msgid "This will restart Windows Explorer." msgstr "これは Windows Explorer を再起動します。" #: ../cleaners/gl-117.xml ../cleaners/microsoft_office.xml #: ../cleaners/beagle.xml ../cleaners/secondlife_viewer.xml ../cleaners/x11.xml msgid "Debug logs" msgstr "デバッグログ" #: ../cleaners/gl-117.xml ../cleaners/microsoft_office.xml #: ../cleaners/easytag.xml ../cleaners/beagle.xml #: ../cleaners/secondlife_viewer.xml ../cleaners/x11.xml msgid "Delete the debug logs" msgstr "デバッグログの削除" #: ../cleaners/google_earth.xml ../cleaners/winetricks.xml ../cleaners/vuze.xml #: ../cleaners/adobe_reader.xml ../cleaners/amule.xml ../cleaners/wine.xml #: ../cleaners/internet_explorer.xml ../cleaners/gimp.xml ../cleaners/kde.xml #: ../cleaners/deepscan.xml ../bleachbit/Cleaner.py:520 msgid "Temporary files" msgstr "一時ファイル" #: ../cleaners/google_earth.xml ../cleaners/winetricks.xml ../cleaners/vuze.xml #: ../cleaners/adobe_reader.xml ../cleaners/amule.xml ../cleaners/wine.xml #: ../cleaners/internet_explorer.xml ../cleaners/gimp.xml ../cleaners/kde.xml #: ../cleaners/deepscan.xml ../bleachbit/Cleaner.py:520 msgid "Delete the temporary files" msgstr "一時ファイルの削除" #: ../cleaners/seamonkey.xml ../cleaners/opera.xml ../bleachbit/Cleaner.py:201 msgid "Download history" msgstr "ダウンロード履歴" #: ../cleaners/seamonkey.xml ../cleaners/opera.xml ../bleachbit/Cleaner.py:201 msgid "List of files downloaded" msgstr "ダウンロードしたファイル一覧" #: ../cleaners/seamonkey.xml msgid "Delete the list of visited web pages" msgstr "訪問済みページ履歴の削除" #: ../cleaners/vuze.xml ../cleaners/deepscan.xml ../bleachbit/Cleaner.py:190 msgid "Backup files" msgstr "バックアップファイル" #: ../cleaners/vuze.xml ../cleaners/deepscan.xml ../bleachbit/Cleaner.py:191 msgid "Delete the backup files" msgstr "バックアップファイルの削除" #: ../cleaners/konqueror.xml ../cleaners/opera.xml ../cleaners/chromium.xml msgid "Current session" msgstr "現在のセッション" #: ../cleaners/konqueror.xml ../cleaners/opera.xml ../cleaners/chromium.xml msgid "Delete the current session" msgstr "現在のセッションの削除" #: ../cleaners/konqueror.xml ../cleaners/opera.xml ../bleachbit/Cleaner.py:213 msgid "URL history" msgstr "URL 履歴" #: ../cleaners/microsoft_office.xml ../cleaners/libreoffice.xml #: ../bleachbit/Cleaner.py:375 msgid "Office suite" msgstr "オフィススイート" #: ../cleaners/windows_defender.xml msgid "Anti-virus" msgstr "アンチウイルス" #: ../cleaners/journald.xml msgid "System journals" msgstr "システムのジャーナル" #: ../cleaners/journald.xml msgid "Clean old system journals" msgstr "古いジャーナルを削除" #: ../cleaners/adobe_reader.xml msgid "Document viewer" msgstr "ドキュメントビューアー" #: ../cleaners/evolution.xml ../cleaners/thunderbird.xml msgid "Email client" msgstr "メールクライアント" #: ../cleaners/tremulous.xml msgid "Delete the list of game servers" msgstr "ゲームサーバ一覧の削除" #: ../cleaners/sqlite3.xml ../cleaners/bash.xml ../cleaners/octave.xml msgid "Delete the command history" msgstr "コマンド履歴の削除" #: ../cleaners/wine.xml msgid "Compatibility layer for Windows software" msgstr "Windows ソフトウェアのための互換レイヤー" #: ../cleaners/internet_explorer.xml ../cleaners/chromium.xml #: ../cleaners/google_chrome.xml ../bleachbit/Cleaner.py:202 msgid "Form history" msgstr "入力履歴" #: ../cleaners/internet_explorer.xml ../bleachbit/Cleaner.py:203 msgid "A history of forms entered in web sites and in the Search bar" msgstr "ウェブサイトのフォーム入力や検索バー入力の履歴" #. This software edits metadata tags, such as title and artist, in audio files #: ../cleaners/easytag.xml msgid "Audio files tagger" msgstr "音楽ファイルタグエディター" #: ../cleaners/apt.xml msgid "Delete obsolete files" msgstr "不要なファイルの削除" #: ../cleaners/apt.xml msgid "Package lists" msgstr "パッケージリスト" #: ../cleaners/xine.xml ../cleaners/miro.xml ../cleaners/flash.xml msgid "Multimedia viewer" msgstr "マルチメディアプレイヤー" #: ../cleaners/recoll.xml ../cleaners/beagle.xml msgid "Search tool" msgstr "検索ツール" #: ../cleaners/recoll.xml ../cleaners/beagle.xml ../cleaners/thunderbird.xml msgid "Index" msgstr "インデックス" #: ../cleaners/recoll.xml msgid "" "Delete the search index, a database of words and the files they contain" msgstr "検索インデックスの削除 (キーワードとファイル名を含むデータベース)" #: ../cleaners/gimp.xml msgid "Graphics editor" msgstr "グラフィックエディター" #: ../cleaners/exaile.xml msgid "Downloaded podcasts" msgstr "ダウンロード済みのポッドキャスト" #: ../cleaners/exaile.xml msgid "Delete downloaded podcasts" msgstr "ダウンロード済みポッドキャストの削除" #: ../cleaners/bash.xml msgid "Shell" msgstr "Shell" #. TRANSLATORS: DOM = Document Object Model. #: ../cleaners/opera.xml ../cleaners/epiphany.xml ../cleaners/chromium.xml #: ../cleaners/google_chrome.xml ../bleachbit/Cleaner.py:199 msgid "DOM Storage" msgstr "DOM ストレージ" #: ../cleaners/opera.xml ../cleaners/epiphany.xml ../cleaners/chromium.xml #: ../cleaners/google_chrome.xml ../bleachbit/Cleaner.py:199 msgid "Delete HTML5 cookies" msgstr "HTML5 cookie を削除" #: ../cleaners/opera.xml ../cleaners/epiphany.xml ../cleaners/chromium.xml #: ../cleaners/google_chrome.xml ../cleaners/thunderbird.xml #: ../bleachbit/Cleaner.py:208 msgid "Passwords" msgstr "パスワード" #: ../cleaners/opera.xml ../cleaners/epiphany.xml ../cleaners/chromium.xml #: ../cleaners/google_chrome.xml ../cleaners/thunderbird.xml #: ../bleachbit/Cleaner.py:209 msgid "" "A database of usernames and passwords as well as a list of sites that should " "not store passwords" msgstr "パスワードを記憶させるサイトと、そのユーザ名とパスワードのデータベース" #: ../cleaners/opera.xml ../cleaners/epiphany.xml ../cleaners/chromium.xml #: ../cleaners/google_chrome.xml ../cleaners/thunderbird.xml #: ../bleachbit/Cleaner.py:211 msgid "This option will delete your saved passwords." msgstr "このオプションは保存されたパスワードを削除します。" #: ../cleaners/nautilus.xml msgid "Custom folders will be reset." msgstr "フォルダのカスタム設定がリセットされます。" #: ../cleaners/gnome.xml ../cleaners/kde.xml msgid "Desktop environment" msgstr "デスクトップ環境" #: ../cleaners/screenlets.xml msgid "Widgets for the desktop" msgstr "デスクトップウィジェット" #: ../cleaners/epiphany.xml msgid "Places" msgstr "Places" #: ../cleaners/epiphany.xml msgid "" "A database of URLs including bookmarks, favicons, and a history of visited " "web sites" msgstr "ブックマーク、favicon、閲覧履歴のデータベース" #: ../cleaners/epiphany.xml msgid "This option deletes all bookmarks." msgstr "このオプションは全てのブックマークを削除します。" #: ../cleaners/winrar.xml msgid "File archiver" msgstr "ファイルアーカイバー" #: ../cleaners/elinks.xml msgid "Delete the cookies, visited URLs, and search history" msgstr "Cookie、訪問済み URL、検索履歴の削除" #: ../cleaners/chromium.xml ../cleaners/google_chrome.xml msgid "A history of forms entered in web sites" msgstr "web サイトで入力したフォームの履歴" #: ../cleaners/chromium.xml ../cleaners/google_chrome.xml msgid "" "Delete the history which includes visited sites, downloads, and thumbnails" msgstr "履歴の削除 (訪問済みサイト、ダウンロード、サムネイルなどを含みます)" #: ../cleaners/chromium.xml ../cleaners/google_chrome.xml msgid "Search engines" msgstr "検索エンジン" #. 'Factory' means a search engine that is installed by default 'from the factory,' but this is different than a 'default search engine' https://lists.launchpad.net/launchpad-translators/msg00283.html #: ../cleaners/chromium.xml ../cleaners/google_chrome.xml msgid "" "Reset the search engine usage history and delete non-factory search engines, " "some of which are added automatically" msgstr "検索エンジンの使用履歴をリセットし、自動的に追加されたサードパーティの検索エンジンを削除" #: ../cleaners/audacious.xml msgid "Audio player" msgstr "音楽プレイヤー" #: ../cleaners/rhythmbox.xml msgid "Database" msgstr "データベース" #: ../cleaners/rhythmbox.xml msgid "" "Delete the database, which contain information such as play count and last " "played" msgstr "再生回数や最終再生日時などの情報を含むデータベースを削除する" #: ../cleaners/google_chrome.xml msgid "Session" msgstr "セッション" #: ../cleaners/google_chrome.xml msgid "Delete the current and last sessions" msgstr "現在と以前のセッションの削除" #: ../cleaners/x11.xml msgid "Windowing system" msgstr "ウィンドウシステム" #: ../cleaners/wordpad.xml msgid "Word processor" msgstr "ワードプロセッサー" #: ../cleaners/deepscan.xml msgid "Deep scan" msgstr "ディープスキャン" #: ../cleaners/deepscan.xml msgid "Clean files widely scattered across the disk" msgstr "ディスク全体に広く散在するファイルを削除する" #: ../cleaners/deepscan.xml msgid "Inspect the preview for any files you want to keep." msgstr "残したいファイルについては、プレビューを精査してください。" #: ../cleaners/deepscan.xml msgid "This option is slow." msgstr "この項目は処理に時間がかかります。" #: ../bleachbit.desktop msgid "Unnecessary file cleaner" msgstr "不要ファイルクリーナー" #: ../bleachbit.desktop msgid "Free space and maintain privacy" msgstr "スペースの確保とプライバシーの保全" #: ../bleachbit/FileUtilities.py:668 msgid "" "There was at least one file on a file system that does not support advanced " "overwriting." msgstr "" #: ../bleachbit/Unix.py:574 #, python-format msgid "Executable not found: %s" msgstr "実行ファイルが見つかりません: %s" #. TRANSLATORS: %s expands to a name such as 'Firefox' or 'System'. #: ../bleachbit/Unix.py:623 ../bleachbit/Worker.py:136 #, python-format msgid "" "%s cannot be cleaned because it is currently running. Close it, and try " "again." msgstr "%s は現在実行中であるためクリーニングできません。終了してから再度実行し直してください。" #: ../bleachbit/GuiBasic.py:112 msgid "Delete confirmation" msgstr "削除の確認" #: ../bleachbit/GuiBasic.py:122 msgid "" "Are you sure you want to permanently delete files according to the selected " "operations? The actual files that will be deleted may have changed since " "you ran the preview." msgstr "" "あなたが選択した操作に応じてファイルを永久に削除してもよろしいですか?実際に削除されるファイルはプレビューを実行した時点から変わっているかもしれません。" #: ../bleachbit/GuiBasic.py:125 msgid "Are you sure you want to permanently delete these files?" msgstr "これらのファイルを永久に削除してよろしいですか?" #: ../bleachbit/GuiBasic.py:162 #, python-format msgid "" "Because you are running as root, please manually open this link in a web " "browser:\n" "%s" msgstr "root として実行しているため、ウェブブラウザから手動でこのリンクを開いてください: %s" #. TRANSLATORS: %s expands to www.bleachbit.org or similar #: ../bleachbit/GuiBasic.py:174 #, python-format msgid "Open web browser to %s?" msgstr "%s をウェブブラウザーで開きますか?" #. TRANSLATORS: This is the label in the log indicating was #. skipped because it matches the whitelist #: ../bleachbit/Command.py:47 msgid "Skip" msgstr "スキップ" #. TRANSLATORS: This is the label in the log indicating will be #. deleted (for previews) or was actually deleted #: ../bleachbit/Command.py:77 msgid "Delete" msgstr "削除" #: ../bleachbit/Command.py:99 msgid "" "At least one file was locked by another process, so its contents could not " "be overwritten. It will be marked for deletion upon system reboot." msgstr "" #. TRANSLATORS: The file will be deleted when the #. system reboots #: ../bleachbit/Command.py:102 msgid "Mark for deletion" msgstr "削除マークを付ける" #. TRANSLATORS: Parts of this file will be deleted #: ../bleachbit/Command.py:199 ../bleachbit/Command.py:233 #: ../bleachbit/Action.py:254 ../bleachbit/Action.py:267 #: ../bleachbit/Action.py:280 ../bleachbit/Action.py:293 #: ../bleachbit/Action.py:306 msgid "Clean file" msgstr "" #. TRANSLATORS: The file will be truncated to 0 bytes in length #: ../bleachbit/Command.py:275 msgid "Truncate" msgstr "切り詰める" #: ../bleachbit/Command.py:317 msgid "Delete registry key" msgstr "レジストリキーの削除" #. TRANSLATORS: This is cleaner name for cleaners imported from winapp2.ini #: ../bleachbit/Winapp.py:44 msgid "Applications" msgstr "アプリケーション" #. TRANSLATORS: This is cleaner name for cleaners imported #. from winapp2.ini #: ../bleachbit/Winapp.py:47 msgid "Internet" msgstr "インターネット" #. TRANSLATORS: This is cleaner name for cleaners imported #. from winapp2.ini #: ../bleachbit/Winapp.py:50 msgid "Multimedia" msgstr "マルチメディア" #. TRANSLATORS: This is cleaner name for cleaners imported #. from winapp2.ini #: ../bleachbit/Winapp.py:53 msgid "Utilities" msgstr "ユーティリティ" #: ../bleachbit/Winapp.py:64 msgid "Games" msgstr "ゲーム" #: ../bleachbit/Winapp.py:162 msgid "Imported from winapp2.ini" msgstr "winapp2.ini からインポート" #: ../bleachbit/Cleaner.py:197 msgid "Crash reports" msgstr "クラッシュレポート" #: ../bleachbit/Cleaner.py:204 msgid "Session restore" msgstr "セッション復元" #: ../bleachbit/Cleaner.py:205 msgid "Loads the initial session after the browser closes or crashes" msgstr "ブラウザが閉じられた、または正常終了しなかった後、読み込む初期セッション" #: ../bleachbit/Cleaner.py:207 msgid "Site preferences" msgstr "サイトの設定" #: ../bleachbit/Cleaner.py:207 msgid "Settings for individual sites" msgstr "サイト別設定" #. TRANSLATORS: desktop entries are .desktop files in Linux that #. make up the application menu (the menu that shows BleachBit, #. Firefox, and others. The .desktop files also associate file #. types, so clicking on an .html file in Nautilus brings up #. Firefox. #. More information: #. http://standards.freedesktop.org/menu-spec/latest/index.html#introduction #: ../bleachbit/Cleaner.py:453 msgid "Broken desktop files" msgstr "壊れた .desktop ファイル" #: ../bleachbit/Cleaner.py:454 msgid "Delete broken application menu entries and file associations" msgstr "壊れたアプリケーションメニュー項目とファイルの関連付けの削除" #. TRANSLATORS: Localizations are files supporting specific #. languages, so applications appear in Spanish, etc. #: ../bleachbit/Cleaner.py:458 msgid "Localizations" msgstr "ローカライゼーション" #: ../bleachbit/Cleaner.py:459 msgid "Delete files for unwanted languages" msgstr "不要な言語ファイルの削除" #: ../bleachbit/Cleaner.py:461 msgid "Configure this option in the preferences." msgstr "設定メニューでこのオプションを設定します。" #: ../bleachbit/Cleaner.py:467 msgid "Rotated logs" msgstr "古いシステムログファイル" #: ../bleachbit/Cleaner.py:467 msgid "Delete old system logs" msgstr "古いシステムログファイルの削除" #: ../bleachbit/Cleaner.py:470 msgid "Trash" msgstr "ゴミ箱" #: ../bleachbit/Cleaner.py:470 msgid "Empty the trash" msgstr "ゴミ箱を空にする" #: ../bleachbit/Cleaner.py:476 ../bleachbit/Cleaner.py:627 #: ../bleachbit/Worker.py:184 msgid "Memory" msgstr "メモリ" #. TRANSLATORS: 'free' means 'unallocated' #: ../bleachbit/Cleaner.py:478 msgid "Wipe the swap and free memory" msgstr "スワップを削除し、メモリの空き領域を確保する" #: ../bleachbit/Cleaner.py:480 msgid "This option is experimental and may cause system problems." msgstr "この項目は実験的なもので、システムエラーの原因となる可能性があります。" #: ../bleachbit/Cleaner.py:488 msgid "Memory dump" msgstr "メモリダンプ" #: ../bleachbit/Cleaner.py:488 msgid "Delete the file memory.dmp" msgstr "memory.dmp ファイルを削除" #. TRANSLATORS: Prefetch is Microsoft Windows jargon. #: ../bleachbit/Cleaner.py:491 msgid "Prefetch" msgstr "先読み" #: ../bleachbit/Cleaner.py:493 msgid "Recycle bin" msgstr "ゴミ箱" #: ../bleachbit/Cleaner.py:493 ../bleachbit/Cleaner.py:787 msgid "Empty the recycle bin" msgstr "ゴミ箱を空にする" #. TRANSLATORS: 'Update' is a noun, and 'Update uninstallers' is an option to delete #. the uninstallers for software updates. #: ../bleachbit/Cleaner.py:496 msgid "Update uninstallers" msgstr "アップデート用のアンインストーラー" #: ../bleachbit/Cleaner.py:497 msgid "" "Delete uninstallers for Microsoft updates including hotfixes, service packs, " "and Internet Explorer updates" msgstr "" "ホットフィックス、サービスパック、および Internet Explorer のアップデートを含む Microsoft Update " "のためのアンインストーラーを削除する" #: ../bleachbit/Cleaner.py:504 ../bleachbit/Cleaner.py:727 msgid "Clipboard" msgstr "クリップボード" #: ../bleachbit/Cleaner.py:505 msgid "" "The desktop environment's clipboard used for copy and paste operations" msgstr "コピー&ペーストに使用したデスクトップ環境のクリップボード" #. TRANSLATORS: "Custom" is an option allowing the user to specify which #. files and folders will be erased. #: ../bleachbit/Cleaner.py:512 ../bleachbit/GuiPreferences.py:66 msgid "Custom" msgstr "カスタム" #: ../bleachbit/Cleaner.py:513 msgid "Delete user-specified files and folders" msgstr "ユーザー指定のファイルとフォルダーを削除する" #. TRANSLATORS: 'free' means 'unallocated' #: ../bleachbit/Cleaner.py:515 msgid "Free disk space" msgstr "ディスクの空き領域の確保" #. TRANSLATORS: 'free' means 'unallocated' #: ../bleachbit/Cleaner.py:517 msgid "Overwrite free disk space to hide deleted files" msgstr "削除済みファイルを上書きしてディスクの空き領域を確保する" #: ../bleachbit/Cleaner.py:518 msgid "This option is very slow." msgstr "このオプションは非常に時間がかかります。" #: ../bleachbit/Cleaner.py:522 msgid "The system in general" msgstr "システム一般" #: ../bleachbit/Cleaner.py:524 ../bleachbit/Cleaner.py:857 msgid "System" msgstr "システム" #. TRANSLATORS: 'Free' means 'unallocated.' #. %s expands to a path such as C:\ or /tmp/ #: ../bleachbit/Cleaner.py:735 ../bleachbit/Cleaner.py:890 #, python-format msgid "Overwrite free disk space %s" msgstr "ディスクの未使用領域を上書きする: %s" #: ../bleachbit/RecognizeCleanerML.py:59 msgid "Security warning" msgstr "セキュリティ警告" #: ../bleachbit/RecognizeCleanerML.py:72 msgid "" "These cleaner definitions are new or have changed. Malicious definitions can " "damage your system. If you do not trust these changes, delete the files or " "quit." msgstr "" "これらのクリーナー定義は新規のものか、或いは変更されています。 悪意のある定義はあなたのシステムを破損するかも知れません。 " "これらの変更を信じないなら、ファイルを削除するか、または実行をとりやめてください。" #: ../bleachbit/RecognizeCleanerML.py:88 msgctxt "column_label" msgid "Delete" msgstr "削除" #: ../bleachbit/RecognizeCleanerML.py:93 msgctxt "column_label" msgid "Filename" msgstr "ファイル名" #. TRANSLATORS: This indicates an error. The special keyword #. %(operation)s will be replaced by 'firefox' or 'opera' or #. some other cleaner ID. The special keyword %(msg)s will be #. replaced by a message such as 'Permission denied.' #: ../bleachbit/Worker.py:74 #, python-format msgid "Exception while running operation '%(operation)s': '%(msg)s'" msgstr "'%(operation)s' の例外: '%(msg)s'" #. TRANSLATORS: 'free' means 'unallocated' #: ../bleachbit/Worker.py:182 msgid "Please wait. Wiping free disk space." msgstr "ディスクの空き領域を wipe しています。しばらくお待ちください。" #. TRANSLATORS: %s is replaced with Firefox, System, etc. #: ../bleachbit/Worker.py:184 ../bleachbit/Worker.py:332 #, python-format msgid "Please wait. Cleaning %s." msgstr "%s をクリーニング中です。しばらくお待ちください。" #: ../bleachbit/Worker.py:199 msgid "Please wait. Wiping file system metadata." msgstr "ファイルシステムのメタデータを wipe しています。しばらくお待ちください。" #: ../bleachbit/Worker.py:202 msgid "Please wait. Cleaning up after wiping file system metadata." msgstr "ファイルシステムのメタデータを wipe した後のクリーンアップを実行しています。しばらくお待ちください。" #: ../bleachbit/Worker.py:205 #, python-format msgid "About %d minute remaining." msgid_plural "About %d minutes remaining." msgstr[0] "残り約 %d 分" #. TRANSLATORS: This refers to disk space that was #. really recovered (in other words, not a preview) #: ../bleachbit/Worker.py:272 #, python-format msgid "Disk space recovered: %s" msgstr "ディスク容量の増加: %s" #. TRANSLATORS: This refers to a preview (no real #. changes were made yet) #: ../bleachbit/Worker.py:276 #, python-format msgid "Disk space to be recovered: %s" msgstr "増加するディスク容量: %s" #. TRANSLATORS: This refers to the number of files really #. deleted (in other words, not a preview). #: ../bleachbit/Worker.py:281 #, python-format msgid "Files deleted: %d" msgstr "削除されたファイル数: %d" #. TRANSLATORS: This refers to the number of files that #. would be deleted (in other words, simply a preview). #: ../bleachbit/Worker.py:285 #, python-format msgid "Files to be deleted: %d" msgstr "削除されるファイル数: %d" #: ../bleachbit/Worker.py:288 #, python-format msgid "Special operations: %d" msgstr "特殊な操作数: %d" #: ../bleachbit/Worker.py:291 #, python-format msgid "Errors: %d" msgstr "エラー: %d" #. TRANSLATORS: The "deep scan" feature searches over broad #. areas of the file system such as the user's whole home directory #. or all the system executables. #: ../bleachbit/Worker.py:306 msgid "Please wait. Running deep scan." msgstr "ディープスキャンを実行しています。しばらくお待ちください。" #. TRANSLATORS: %s is replaced with Firefox, System, etc. #: ../bleachbit/Worker.py:335 #, python-format msgid "Please wait. Previewing %s." msgstr "%s のプレビューを作成中です。しばらくお待ちください。" #: ../bleachbit/Update.py:80 msgid "New winapp2.ini was downloaded." msgstr "新しい winapp2.ini がダウンロードされました。" #: ../bleachbit/Update.py:125 msgid "Update BleachBit" msgstr "BleachBit のアップデート" #: ../bleachbit/Update.py:130 msgid "A new version is available." msgstr "新しいバージョンが利用可能です。" #. TRANSLATORS: %s expands to version such as '0.8.4' or '0.8.5beta' or #. similar #: ../bleachbit/Update.py:139 #, python-format msgid "Update to version %s" msgstr "バージョン %s に更新" #: ../bleachbit/Update.py:164 #, python-format msgid "" "Error when opening a network connection to %s to check for updates. Please " "verify the network is working." msgstr "アップデートを確認するために %s へネットワーク接続する際にエラーが発生しました。 ネットワークが動作していることを確認してください。" #: ../bleachbit/CLI.py:106 #, python-format msgid "not a valid cleaner: %s" msgstr "%s は有効なクリーナではありません" #. TRANSLATORS: This is the command line usage. Don't translate #. %prog, but do translate usage, options, cleaner, and option. #. More information about the command line is here #. https://www.bleachbit.org/documentation/command-line #: ../bleachbit/CLI.py:133 msgid "usage: %prog [options] cleaner.option1 cleaner.option2" msgstr "使用法: %prog [options] cleaner.option1 cleaner.option2" #: ../bleachbit/CLI.py:136 msgid "list cleaners" msgstr "クリーナ一覧" #. TRANSLATORS: predefined cleaners are for applications, such as Firefox and Flash. #. This is different than cleaning an arbitrary file, such as a #. spreadsheet on the desktop. #: ../bleachbit/CLI.py:141 msgid "run cleaners to delete files and make other permanent changes" msgstr "ファイルの削除とその他の永続的な変更を加えるためにクリーナーを実行する" #: ../bleachbit/CLI.py:144 msgid "shred specific files or folders" msgstr "特定のファイルやフォルダーを shred する" #: ../bleachbit/CLI.py:146 msgid "show system information" msgstr "システム情報を参照" #: ../bleachbit/CLI.py:148 msgid "launch the graphical interface" msgstr "グラフィカルインターフェースで起動" #: ../bleachbit/CLI.py:152 msgid "do not prompt for administrator privileges" msgstr "管理者権限を要求しない" #: ../bleachbit/CLI.py:157 msgid "preview files to be deleted and other changes" msgstr "削除・変更されるファイルをプレビュー" #: ../bleachbit/CLI.py:161 msgid "use options set in the graphical interface" msgstr "グラフィカルインターフェイスで設定されたオプションを使用する" #: ../bleachbit/CLI.py:164 msgid "update winapp2.ini, if a new version is available" msgstr "新しいバージョンが利用可能な場合、winapp2.ini をアップデートする" #: ../bleachbit/CLI.py:166 msgid "output version information and exit" msgstr "バージョン情報を出力して終了する" #: ../bleachbit/CLI.py:168 msgid "overwrite files to hide contents" msgstr "内容を隠すためにファイルを上書き" #. TRANSLATORS: this is the context menu #: ../bleachbit/Action.py:382 ../bleachbit/GUI.py:632 msgid "Clean" msgstr "削除" #: ../bleachbit/Action.py:418 #, python-format msgid "Run external command: %s" msgstr "外部コマンドを実行: %s" #: ../bleachbit/GUI.py:135 ../bleachbit/GuiPreferences.py:296 msgid "Name" msgstr "名前" #: ../bleachbit/GUI.py:143 msgid "Active" msgstr "有効" #. TRANSLATORS: Size is the label for the column that shows how #. much space an option would clean or did clean #: ../bleachbit/GUI.py:155 msgid "Size" msgstr "サイズ" #. TRANSLATORS: %(cleaner) may be Firefox, System, etc. #. %(option) may be cache, logs, cookies, etc. #. %(warning) may be 'This option is really slow' #: ../bleachbit/GUI.py:186 #, python-format msgid "" "Warning regarding %(cleaner)s - %(option)s:\n" "\n" "%(warning)s" msgstr "" "%(cleaner)s の %(option)s に関する注意:\n" "\n" "%(warning)s" #: ../bleachbit/GUI.py:372 msgid "You must select an operation" msgstr "操作を選択してください" #: ../bleachbit/GUI.py:391 ../bleachbit/GUI.py:413 msgid "Done." msgstr "完了しました。" #: ../bleachbit/GUI.py:426 msgid "Program to clean unnecessary files" msgstr "不要なファイルを削除するためのプログラム" #: ../bleachbit/GUI.py:436 msgid "" "GNU General Public License version 3 or later.\n" "See http://www.gnu.org/licenses/gpl-3.0.txt" msgstr "" "GNU 一般公衆利用許諾書 バージョン 3 かそれ以降。\n" "http://www.gnu.org/licenses/gpl-3.0.txt を参照して下さい。" #. TRANSLATORS: Maintain the names of translators here. #. Launchpad does this automatically for translations #. typed in Launchpad. This is a special string shown #. in the 'About' box. #: ../bleachbit/GUI.py:442 msgid "translator-credits" msgstr "" "Launchpad Contributions:\n" " José Lou Chang https://launchpad.net/~obake\n" " Shinichirou Yamada https://launchpad.net/~yamada-strong-yamada-nice-64bit\n" " Toshiharu Kudoh https://launchpad.net/~toshi-kd2\n" " Yuki Kodama https://launchpad.net/~kuy" #: ../bleachbit/GUI.py:454 msgid "System information" msgstr "システム情報" #: ../bleachbit/GUI.py:527 msgid "Choose files to shred" msgstr "shred するファイルの選択" #: ../bleachbit/GUI.py:530 msgid "Choose folder to shred" msgstr "shred するフォルダーの選択" #: ../bleachbit/GUI.py:594 ../bleachbit/GuiPreferences.py:197 #: ../bleachbit/GuiPreferences.py:326 ../bleachbit/GuiPreferences.py:367 msgid "Choose a folder" msgstr "フォルダーの選択" #. TRANSLATORS: this is the context menu #: ../bleachbit/GUI.py:627 msgid "Preview" msgstr "プレビュー" #: ../bleachbit/GUI.py:734 msgid "_Shred Files" msgstr "ファイルを shred する(_S)" #: ../bleachbit/GUI.py:736 msgid "Sh_red Folders" msgstr "フォルダーを shred する(_R)" #: ../bleachbit/GUI.py:738 msgid "_Wipe Free Space" msgstr "空き領域を wipe する(_W)" #: ../bleachbit/GUI.py:740 msgid "S_hred Settings and Quit" msgstr "設定を削除して終了(_H)" #: ../bleachbit/GUI.py:742 msgid "_Quit" msgstr "終了(_Q)" #: ../bleachbit/GUI.py:744 msgid "_File" msgstr "ファイル(_F)" #: ../bleachbit/GUI.py:746 ../bleachbit/GuiPreferences.py:58 msgid "Preferences" msgstr "設定" #: ../bleachbit/GUI.py:747 msgid "_Edit" msgstr "編集(_E)" #: ../bleachbit/GUI.py:748 msgid "Help Contents" msgstr "ヘルプの目次" #: ../bleachbit/GUI.py:751 msgid "_Release Notes" msgstr "リリースノート(_R)" #: ../bleachbit/GUI.py:754 msgid "_System Information" msgstr "システム情報(_S)" #: ../bleachbit/GUI.py:757 msgid "_About" msgstr "バージョン情報(_A)" #: ../bleachbit/GUI.py:758 msgid "_Help" msgstr "ヘルプ(_H)" #: ../bleachbit/GUI.py:783 msgctxt "button" msgid "Preview" msgstr "プレビュー" #: ../bleachbit/GUI.py:788 msgid "Preview files in the selected operations (without deleting any files)" msgstr "選択された操作でファイルをプレビューします(ファイル削除はしません)" #: ../bleachbit/GUI.py:798 msgctxt "button" msgid "Clean" msgstr "削除" #: ../bleachbit/GUI.py:802 msgid "Clean files in the selected operations" msgstr "選択された操作でファイルを削除します" #: ../bleachbit/GUI.py:893 msgid "Error when checking for updates: " msgstr "更新の確認中にエラーが発生しました: " #: ../bleachbit/GUI.py:932 msgid "" "Error loading the SQLite module: the antivirus software may be blocking it." msgstr "SQLite モジュールのロード中にエラーが発生しました。アンチウィルスソフトがブロックしたのかも知れません。" #: ../bleachbit/GUI.py:935 msgid "" "You are running BleachBit with administrative privileges for cleaning shared " "parts of the system, and references to the user profile folder will clean " "only the root account." msgstr "" "システムの共有部分をクリーニングするために、BleachBit を管理者権限で実行しています。ユーザープロファイルフォルダーは root " "アカウントのみクリーンします。" #: ../bleachbit/GUI.py:940 msgid "" "Run BleachBit with administrator privileges to improve the accuracy of " "overwriting the contents of files." msgstr "ファイルの内容を上書きする精度を向上させるには、BleachBit を管理者権限で実行してください。" #: ../bleachbit/GuiPreferences.py:64 msgid "General" msgstr "全般" #: ../bleachbit/GuiPreferences.py:67 msgid "Drives" msgstr "ドライブ" #: ../bleachbit/GuiPreferences.py:70 msgid "Languages" msgstr "言語" #: ../bleachbit/GuiPreferences.py:72 msgid "Whitelist" msgstr "ホワイトリスト" #: ../bleachbit/GuiPreferences.py:117 msgid "Check periodically for software updates via the Internet" msgstr "インターネットを介して定期的にソフトウェアの更新を確認" #: ../bleachbit/GuiPreferences.py:122 msgid "" "If an update is found, you will be given the option to view information " "about it. Then, you may manually download and install the update." msgstr "" "もし更新が見つかったなら、それについての情報を表示するオプションが与えられます。その後、手動でダウンロードし、アップデートをインストールすることができます" "。" #: ../bleachbit/GuiPreferences.py:128 msgid "Check for new beta releases" msgstr "新しいベータリリースをチェック" #: ../bleachbit/GuiPreferences.py:137 msgid "Download and update cleaners from community (winapp2.ini)" msgstr "コミュニティからクリーナーをダウンロードしてアップデート(winapp2.ini)" #. TRANSLATORS: This means to hide cleaners which would do #. nothing. For example, if Firefox were never used on #. this system, this option would hide Firefox to simplify #. the list of cleaners. #: ../bleachbit/GuiPreferences.py:151 msgid "Hide irrelevant cleaners" msgstr "関係のないクリーナーを隠す" #. TRANSLATORS: Overwriting is the same as shredding. It is a way #. to prevent recovery of the data. You could also translate #. 'Shred files to prevent recovery.' #: ../bleachbit/GuiPreferences.py:159 msgid "Overwrite contents of files to prevent recovery" msgstr "ファイルの復元を防ぐために内容を上書きする" #: ../bleachbit/GuiPreferences.py:163 msgid "" "Overwriting is ineffective on some file systems and with certain BleachBit " "operations. Overwriting is significantly slower." msgstr "上書き処理は、ファイルシステムや BleachBit の特定の操作には影響を与えません。上書き処理は非常に遅いです。" #: ../bleachbit/GuiPreferences.py:166 msgid "Start BleachBit with computer" msgstr "コンピュータの起動とともに Bleachbit を開始" #: ../bleachbit/GuiPreferences.py:172 msgid "Exit after cleaning" msgstr "削除後に BleachBit を終了する" #: ../bleachbit/GuiPreferences.py:178 msgid "Confirm before delete" msgstr "削除する前に確認する" #: ../bleachbit/GuiPreferences.py:186 msgid "Use IEC sizes (1 KiB = 1024 bytes) instead of SI (1 kB = 1000 bytes)" msgstr "SI (1 kB = 1000 バイト) の代わりに IEC サイズ (1 KiB = 1024 バイト) を使用する" #: ../bleachbit/GuiPreferences.py:221 msgid "" "Choose a writable folder for each drive for which to overwrite free space." msgstr "未使用領域を上書きするために、各ドライブの書き込み可能なフォルダーを選択してください。" #. TRANSLATORS: In the preferences dialog, this button adds a path to #. the list of paths #: ../bleachbit/GuiPreferences.py:243 msgctxt "button" msgid "Add" msgstr "追加" #. TRANSLATORS: In the preferences dialog, this button removes a path #. from the list of paths #: ../bleachbit/GuiPreferences.py:247 ../bleachbit/GuiPreferences.py:458 msgctxt "button" msgid "Remove" msgstr "削除" #: ../bleachbit/GuiPreferences.py:272 msgid "All languages will be deleted except those checked." msgstr "チェックされたものを除くすべての言語が検出されます。" #: ../bleachbit/GuiPreferences.py:288 msgid "Preserve" msgstr "保管" #: ../bleachbit/GuiPreferences.py:292 msgid "Code" msgstr "コード" #: ../bleachbit/GuiPreferences.py:313 ../bleachbit/GuiPreferences.py:354 msgid "Choose a file" msgstr "ファイルを選択" #: ../bleachbit/GuiPreferences.py:320 ../bleachbit/GuiPreferences.py:361 #: ../bleachbit/GuiPreferences.py:405 msgid "File" msgstr "ファイル" #: ../bleachbit/GuiPreferences.py:334 ../bleachbit/GuiPreferences.py:375 #: ../bleachbit/GuiPreferences.py:407 msgid "Folder" msgstr "フォルダー" #: ../bleachbit/GuiPreferences.py:417 msgid "Theses paths will not be deleted or modified." msgstr "これらのパスは削除や変更はできません。" #: ../bleachbit/GuiPreferences.py:420 msgid "These locations can be selected for deletion." msgstr "これらのファイルやフォルダーを削除の対象とします。" #: ../bleachbit/GuiPreferences.py:428 msgid "Type" msgstr "タイプ" #. TRANSLATORS: In the tree view "Path" is used generically to refer to a #. file, a folder, or a pattern describing either #: ../bleachbit/GuiPreferences.py:434 msgid "Path" msgstr "パス" #: ../bleachbit/GuiPreferences.py:446 msgctxt "button" msgid "Add file" msgstr "ファイルの追加" #: ../bleachbit/GuiPreferences.py:452 msgctxt "button" msgid "Add folder" msgstr "フォルダーの追加" bleachbit-2.0/po/tr.po0000644000175000017500000013057613245436307013020 0ustar hlehle# Turkish translation for bleachbit # Copyright (c) 2009 Rosetta Contributors and Canonical Ltd 2009 # This file is distributed under the same license as the bleachbit package. # FIRST AUTHOR , 2009. # msgid "" msgstr "" "Project-Id-Version: bleachbit\n" "Report-Msgid-Bugs-To: FULL NAME \n" "POT-Creation-Date: 2015-09-11 16:02-0600\n" "PO-Revision-Date: 2015-09-29 13:35+0000\n" "Last-Translator: Özgür BASKIN \n" "Language-Team: Turkish \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n != 1;\n" "X-Launchpad-Export-Date: 2015-09-29 19:00+0000\n" "X-Generator: Launchpad (build 17768)\n" #: ../cleaners/mc.xml ../cleaners/tortoisesvn.xml ../cleaners/vim.xml #: ../cleaners/safari.xml ../cleaners/links2.xml ../cleaners/seamonkey.xml #: ../cleaners/realplayer.xml ../cleaners/windows_defender.xml #: ../cleaners/d4x.xml ../cleaners/sqlite3.xml #: ../cleaners/internet_explorer.xml ../cleaners/libreoffice.xml #: ../cleaners/easytag.xml ../cleaners/bash.xml ../cleaners/nautilus.xml #: ../cleaners/octave.xml ../cleaners/elinks.xml ../cleaners/chromium.xml #: ../cleaners/google_chrome.xml msgid "History" msgstr "Geçmiş" #: ../cleaners/mc.xml ../cleaners/tortoisesvn.xml ../cleaners/links2.xml #: ../cleaners/realplayer.xml ../cleaners/d4x.xml ../cleaners/libreoffice.xml #: ../cleaners/easytag.xml ../cleaners/nautilus.xml ../cleaners/gnome.xml #: ../bleachbit/Cleaner.py:348 ../bleachbit/Cleaner.py:422 #: ../bleachbit/Cleaner.py:431 msgid "Delete the usage history" msgstr "Kullanım geçmişini sil" #: ../cleaners/gpodder.xml ../cleaners/hippo_opensim_viewer.xml #: ../cleaners/thumbnails.xml ../cleaners/safari.xml ../cleaners/emesene.xml #: ../cleaners/liferea.xml ../cleaners/seamonkey.xml ../cleaners/vuze.xml #: ../cleaners/yahoo_messenger.xml ../cleaners/pidgin.xml #: ../cleaners/adobe_reader.xml ../cleaners/evolution.xml #: ../cleaners/tremulous.xml ../cleaners/libreoffice.xml ../cleaners/xine.xml #: ../cleaners/nexuiz.xml ../cleaners/exaile.xml ../cleaners/opera.xml #: ../cleaners/amsn.xml ../cleaners/gftp.xml ../cleaners/miro.xml #: ../cleaners/beagle.xml ../cleaners/kde.xml ../cleaners/epiphany.xml #: ../cleaners/flash.xml ../cleaners/secondlife_viewer.xml #: ../cleaners/java.xml ../cleaners/chromium.xml ../cleaners/audacious.xml #: ../cleaners/rhythmbox.xml ../cleaners/google_chrome.xml #: ../cleaners/thunderbird.xml ../bleachbit/Cleaner.py:193 #: ../bleachbit/Cleaner.py:369 ../bleachbit/Cleaner.py:454 msgid "Cache" msgstr "Önbellek" #: ../cleaners/gpodder.xml ../cleaners/yum.xml #: ../cleaners/hippo_opensim_viewer.xml ../cleaners/thumbnails.xml #: ../cleaners/windows_explorer.xml ../cleaners/liferea.xml #: ../cleaners/vuze.xml ../cleaners/yahoo_messenger.xml ../cleaners/pidgin.xml #: ../cleaners/adobe_reader.xml ../cleaners/evolution.xml #: ../cleaners/libreoffice.xml ../cleaners/apt.xml ../cleaners/xine.xml #: ../cleaners/nexuiz.xml ../cleaners/exaile.xml ../cleaners/amsn.xml #: ../cleaners/gftp.xml ../cleaners/miro.xml ../cleaners/beagle.xml #: ../cleaners/kde.xml ../cleaners/flash.xml ../cleaners/secondlife_viewer.xml #: ../cleaners/java.xml ../cleaners/audacious.xml ../cleaners/rhythmbox.xml #: ../bleachbit/Cleaner.py:369 ../bleachbit/Cleaner.py:454 #: ../bleachbit/Cleaner.py:488 ../bleachbit/Cleaner.py:490 msgid "Delete the cache" msgstr "Önbelleği sil" #. TRANSLATORS: Vacuum is a verb. The term is jargon #. from the SQLite database. Microsoft Access uses #. the term 'Compact Database' (which you may translate #. instead). Another synonym is 'defragment.' #: ../cleaners/gpodder.xml ../cleaners/yum.xml ../cleaners/safari.xml #: ../cleaners/liferea.xml ../cleaners/chromium.xml #: ../cleaners/google_chrome.xml ../cleaners/thunderbird.xml #: ../bleachbit/Cleaner.py:213 ../bleachbit/Cleaner.py:359 #: ../bleachbit/Action.py:340 msgid "Vacuum" msgstr "Vakum" #: ../cleaners/gpodder.xml ../cleaners/yum.xml ../cleaners/safari.xml #: ../cleaners/liferea.xml ../cleaners/chromium.xml #: ../cleaners/google_chrome.xml ../cleaners/thunderbird.xml #: ../bleachbit/Cleaner.py:214 msgid "" "Clean database fragmentation to reduce space and improve speed without " "removing any data" msgstr "" "Kullanılan alanı azaltmak ve hızı artırmak için hiç bir veriyi silmeden " "veritabanı parçalanmasını düzelt" #: ../cleaners/yum.xml ../cleaners/apt.xml msgid "Package manager" msgstr "Paket yöneticisi" #: ../cleaners/warzone2100.xml ../cleaners/hippo_opensim_viewer.xml #: ../cleaners/gl-117.xml ../cleaners/tremulous.xml ../cleaners/nexuiz.xml #: ../cleaners/secondlife_viewer.xml msgid "Game" msgstr "Oyun" #: ../cleaners/warzone2100.xml ../cleaners/hippo_opensim_viewer.xml #: ../cleaners/teamviewer.xml ../cleaners/realplayer.xml ../cleaners/vuze.xml #: ../cleaners/yahoo_messenger.xml ../cleaners/amule.xml #: ../cleaners/easytag.xml ../cleaners/exaile.xml ../cleaners/screenlets.xml #: ../cleaners/gftp.xml ../cleaners/miro.xml ../cleaners/audacious.xml #: ../bleachbit/Cleaner.py:485 msgid "Logs" msgstr "Günlükler" #: ../cleaners/warzone2100.xml ../cleaners/hippo_opensim_viewer.xml #: ../cleaners/teamviewer.xml ../cleaners/realplayer.xml ../cleaners/vuze.xml #: ../cleaners/yahoo_messenger.xml ../cleaners/amule.xml #: ../cleaners/exaile.xml ../cleaners/screenlets.xml ../cleaners/gftp.xml #: ../cleaners/miro.xml ../cleaners/audacious.xml ../bleachbit/Cleaner.py:485 msgid "Delete the logs" msgstr "Günlükleri sil" #: ../cleaners/thumbnails.xml ../cleaners/windows_explorer.xml msgid "Thumbnails" msgstr "Küçük resimler" #: ../cleaners/thumbnails.xml msgid "Icons for files on the system" msgstr "Sistemdeki dosyaların simgeleri" #: ../cleaners/vim.xml ../cleaners/gedit.xml msgid "Editor" msgstr "Editör" #: ../cleaners/vim.xml msgid "" "Delete ~/.viminfo which includes file history, command history, and buffers" msgstr "" "Dosya geçmişi, komut geçmişi ve arabellek dosyalarını barındıran ~/.viminfo " "dosyasını sil" #: ../cleaners/filezilla.xml ../cleaners/transmission.xml ../cleaners/vuze.xml #: ../cleaners/amule.xml ../cleaners/gftp.xml msgid "File transfer client" msgstr "Dosya transfer istemcisi" #: ../cleaners/filezilla.xml ../cleaners/paint.xml #: ../cleaners/windows_media_player.xml ../cleaners/windows_explorer.xml #: ../cleaners/teamviewer.xml ../cleaners/microsoft_office.xml #: ../cleaners/vlc.xml ../cleaners/adobe_reader.xml ../cleaners/winamp.xml #: ../cleaners/winzip.xml ../cleaners/winrar.xml ../cleaners/audacious.xml #: ../cleaners/wordpad.xml ../bleachbit/Cleaner.py:370 msgid "Most recently used" msgstr "En son kullanılanlar" #: ../cleaners/filezilla.xml ../cleaners/windows_explorer.xml #: ../cleaners/gwenview.xml ../cleaners/adobe_reader.xml ../cleaners/gedit.xml #: ../cleaners/kde.xml ../cleaners/audacious.xml ../bleachbit/Cleaner.py:371 #: ../bleachbit/Cleaner.py:468 msgid "Delete the list of recently used documents" msgstr "En son kullanılan belgeler listesini sil" #: ../cleaners/skype.xml ../cleaners/xchat.xml ../cleaners/emesene.xml #: ../cleaners/yahoo_messenger.xml ../cleaners/pidgin.xml ../cleaners/amsn.xml msgid "Chat client" msgstr "Sohbet istemcisi" #: ../cleaners/skype.xml ../cleaners/xchat.xml ../cleaners/emesene.xml #: ../cleaners/seamonkey.xml ../cleaners/yahoo_messenger.xml #: ../cleaners/pidgin.xml ../cleaners/amsn.xml msgid "Chat logs" msgstr "Sohbet günlükleri" #: ../cleaners/skype.xml ../cleaners/xchat.xml ../cleaners/emesene.xml #: ../cleaners/seamonkey.xml ../cleaners/yahoo_messenger.xml #: ../cleaners/pidgin.xml ../cleaners/amsn.xml msgid "Delete the chat logs" msgstr "Sohbet günlüklerini sil" #: ../cleaners/skype.xml msgid "Installers" msgstr "Yükleyiciler" #: ../cleaners/skype.xml msgid "Delete cached patches and installers" msgstr "Önbelleğe alınan yamaları ve yükleyicileri sil" #: ../cleaners/safari.xml ../cleaners/links2.xml ../cleaners/seamonkey.xml #: ../cleaners/konqueror.xml ../cleaners/internet_explorer.xml #: ../cleaners/opera.xml ../cleaners/epiphany.xml ../cleaners/elinks.xml #: ../cleaners/chromium.xml ../cleaners/google_chrome.xml #: ../bleachbit/Cleaner.py:225 msgid "Web browser" msgstr "Web tarayıcısı" #: ../cleaners/safari.xml ../cleaners/seamonkey.xml ../cleaners/opera.xml #: ../cleaners/epiphany.xml ../cleaners/chromium.xml #: ../cleaners/google_chrome.xml ../cleaners/thunderbird.xml #: ../bleachbit/Cleaner.py:194 msgid "Delete the web cache, which reduces time to display revisited pages" msgstr "Web önbelleğini sil, bu işlem ile yeni sayfalar geç açılır" #: ../cleaners/safari.xml ../cleaners/liferea.xml ../cleaners/seamonkey.xml #: ../cleaners/realplayer.xml ../cleaners/konqueror.xml #: ../cleaners/internet_explorer.xml ../cleaners/opera.xml #: ../cleaners/epiphany.xml ../cleaners/flash.xml ../cleaners/silverlight.xml #: ../cleaners/chromium.xml ../cleaners/google_chrome.xml #: ../cleaners/thunderbird.xml ../bleachbit/Cleaner.py:195 msgid "Cookies" msgstr "Çerezler" #: ../cleaners/safari.xml ../cleaners/liferea.xml ../cleaners/seamonkey.xml #: ../cleaners/realplayer.xml ../cleaners/konqueror.xml #: ../cleaners/internet_explorer.xml ../cleaners/opera.xml #: ../cleaners/epiphany.xml ../cleaners/flash.xml ../cleaners/silverlight.xml #: ../cleaners/chromium.xml ../cleaners/google_chrome.xml #: ../cleaners/thunderbird.xml ../bleachbit/Cleaner.py:196 msgid "" "Delete cookies, which contain information such as web site preferences, " "authentication, and tracking identification" msgstr "" "Web sitesi tercihleri, kimlik doğrulama ve izleme kimliği gibi bilgileri " "içeren çerezleri sil" #: ../cleaners/safari.xml ../cleaners/konqueror.xml #: ../cleaners/internet_explorer.xml ../cleaners/opera.xml #: ../bleachbit/Cleaner.py:212 msgid "List of visited web pages" msgstr "Ziyaret edilmiş internet siteleri listesi" #. Torrent software can block a list of IP addresses, such as those that may belong to malware or anti-piracy organizations #: ../cleaners/transmission.xml msgid "Blocklists" msgstr "Engelleme listesi" #: ../cleaners/transmission.xml ../cleaners/windows_defender.xml #: ../cleaners/beagle.xml ../cleaners/thunderbird.xml ../cleaners/deepscan.xml #: ../bleachbit/Cleaner.py:198 msgid "Delete the files" msgstr "Dosyaları sil" #: ../cleaners/transmission.xml msgid "Blocklists will need update to work." msgstr "Engelleme listesinin çalışması için güncelleme gerekir" #: ../cleaners/transmission.xml msgid "Torrents" msgstr "Torrentler" #: ../cleaners/transmission.xml msgid "Delete the torrents (just the metadata but not the files described)" msgstr "Torrentleri sil (sadece meta verilerini)" #: ../cleaners/paint.xml ../cleaners/windows_media_player.xml #: ../cleaners/windows_explorer.xml ../cleaners/teamviewer.xml #: ../cleaners/microsoft_office.xml ../cleaners/vlc.xml ../cleaners/winamp.xml #: ../cleaners/winzip.xml ../cleaners/winrar.xml ../cleaners/wordpad.xml msgid "Delete the most recently used list" msgstr "En son kullanılanlar listesini sil" #: ../cleaners/emesene.xml msgid "Delete the avatars and emoticons cache" msgstr "Avatar ve ifade önbelleklerini sil" #: ../cleaners/windows_media_player.xml ../cleaners/realplayer.xml #: ../cleaners/vlc.xml ../cleaners/winamp.xml msgid "Media player" msgstr "Ortam yürütücüsü" #: ../cleaners/windows_explorer.xml ../cleaners/nautilus.xml msgid "File manager" msgstr "Dosya yöneticisi" #: ../cleaners/windows_explorer.xml ../cleaners/gwenview.xml #: ../cleaners/gedit.xml ../cleaners/kde.xml ../bleachbit/Cleaner.py:467 msgid "Recent documents list" msgstr "En son kullanılan belgeler listesi" #. In Windows 'Run' is the dialog in the Start menu #. In GNOME 'Run' is the dialog shown when typing ALT+F2' #: ../cleaners/windows_explorer.xml ../cleaners/gnome.xml msgid "Run" msgstr "Çalıştır" #: ../cleaners/windows_explorer.xml ../cleaners/opera.xml #: ../cleaners/gnome.xml ../cleaners/google_toolbar.xml msgid "Search history" msgstr "Arama geçmişi" #: ../cleaners/windows_explorer.xml ../cleaners/opera.xml #: ../cleaners/gnome.xml ../cleaners/google_toolbar.xml msgid "Delete the search history" msgstr "Arama geçmişini sil" #: ../cleaners/gl-117.xml ../cleaners/microsoft_office.xml #: ../cleaners/beagle.xml ../cleaners/secondlife_viewer.xml #: ../cleaners/x11.xml msgid "Debug logs" msgstr "Hata ayıklama günlükleri" #: ../cleaners/gl-117.xml ../cleaners/microsoft_office.xml #: ../cleaners/easytag.xml ../cleaners/beagle.xml #: ../cleaners/secondlife_viewer.xml ../cleaners/x11.xml msgid "Delete the debug logs" msgstr "Hata ayıklama günlüklerini sil" #: ../cleaners/google_earth.xml ../cleaners/winetricks.xml #: ../cleaners/vuze.xml ../cleaners/adobe_reader.xml ../cleaners/amule.xml #: ../cleaners/wine.xml ../cleaners/internet_explorer.xml ../cleaners/gimp.xml #: ../cleaners/kde.xml ../cleaners/deepscan.xml ../bleachbit/Cleaner.py:519 msgid "Temporary files" msgstr "Geçici dosyalar" #: ../cleaners/google_earth.xml ../cleaners/winetricks.xml #: ../cleaners/vuze.xml ../cleaners/adobe_reader.xml ../cleaners/amule.xml #: ../cleaners/wine.xml ../cleaners/internet_explorer.xml ../cleaners/gimp.xml #: ../cleaners/kde.xml ../cleaners/deepscan.xml ../bleachbit/Cleaner.py:519 msgid "Delete the temporary files" msgstr "Geçici dosyaları sil" #: ../cleaners/seamonkey.xml ../cleaners/opera.xml ../bleachbit/Cleaner.py:202 msgid "Download history" msgstr "İndirme geçmişi" #: ../cleaners/seamonkey.xml ../cleaners/opera.xml ../bleachbit/Cleaner.py:202 msgid "List of files downloaded" msgstr "İndirilmiş dosyalar listesi" #: ../cleaners/seamonkey.xml msgid "Delete the list of visited web pages" msgstr "Ziyaret edilmiş internet siteleri listesini sil" #: ../cleaners/vuze.xml ../cleaners/deepscan.xml ../bleachbit/Cleaner.py:191 msgid "Backup files" msgstr "Yedeklenmiş dosyalar" #: ../cleaners/vuze.xml ../cleaners/deepscan.xml ../bleachbit/Cleaner.py:192 msgid "Delete the backup files" msgstr "Yedeklenmiş dosyaları sil" #: ../cleaners/konqueror.xml ../cleaners/opera.xml ../cleaners/chromium.xml msgid "Current session" msgstr "Geçerli oturum" #: ../cleaners/konqueror.xml ../cleaners/opera.xml ../cleaners/chromium.xml msgid "Delete the current session" msgstr "Geçerli oturumu sil" #: ../cleaners/konqueror.xml ../cleaners/opera.xml ../bleachbit/Cleaner.py:212 msgid "URL history" msgstr "URL geçmişi" #: ../cleaners/microsoft_office.xml ../cleaners/libreoffice.xml #: ../bleachbit/Cleaner.py:374 msgid "Office suite" msgstr "Ofis programı" #: ../cleaners/windows_defender.xml msgid "Anti-virus" msgstr "Virüs programı" #: ../cleaners/adobe_reader.xml msgid "Document viewer" msgstr "Belge görüntüleyici" #: ../cleaners/evolution.xml ../cleaners/thunderbird.xml msgid "Email client" msgstr "E-posta istemcisi" #: ../cleaners/tremulous.xml msgid "Delete the list of game servers" msgstr "Oyun sunucu listelerini sil" #: ../cleaners/sqlite3.xml ../cleaners/bash.xml ../cleaners/octave.xml msgid "Delete the command history" msgstr "Komut geçmişini sil" #: ../cleaners/wine.xml msgid "Compatibility layer for Windows software" msgstr "Windows yazılımı için uyumluluk katmanı" #: ../cleaners/internet_explorer.xml ../cleaners/chromium.xml #: ../cleaners/google_chrome.xml ../bleachbit/Cleaner.py:203 msgid "Form history" msgstr "Form geçmişi" #: ../cleaners/internet_explorer.xml ../bleachbit/Cleaner.py:204 msgid "A history of forms entered in web sites and in the Search bar" msgstr "Web siteleri ve arama çubuğu form geçmişi" #. This software edits metadata tags, such as title and artist, in audio files #: ../cleaners/easytag.xml msgid "Audio files tagger" msgstr "Ses dosyaları etiketleyici" #: ../cleaners/apt.xml msgid "Delete obsolete files" msgstr "Kullanılmayan dosyaları sil" #: ../cleaners/apt.xml msgid "Package lists" msgstr "Paket listeleri" #: ../cleaners/xine.xml ../cleaners/miro.xml ../cleaners/flash.xml msgid "Multimedia viewer" msgstr "Çoklu ortam görüntüleyicisi" #: ../cleaners/recoll.xml ../cleaners/beagle.xml msgid "Search tool" msgstr "Arama aracı" #: ../cleaners/recoll.xml ../cleaners/beagle.xml ../cleaners/thunderbird.xml msgid "Index" msgstr "İndeks" #: ../cleaners/recoll.xml msgid "" "Delete the search index, a database of words and the files they contain" msgstr "" "Arama indeksini sil. Arama indeksi dosya ve kelimeler içeren bir " "veritabanıdır." #: ../cleaners/gimp.xml msgid "Graphics editor" msgstr "Grafik düzenleyici" #: ../cleaners/exaile.xml msgid "Downloaded podcasts" msgstr "İndirilmiş pod yayınları" #: ../cleaners/exaile.xml msgid "Delete downloaded podcasts" msgstr "İndirilmiş pod yayınlarını sil" #: ../cleaners/bash.xml msgid "Shell" msgstr "Kabuk" #. TRANSLATORS: DOM = Document Object Model. #: ../cleaners/opera.xml ../cleaners/chromium.xml #: ../cleaners/google_chrome.xml ../bleachbit/Cleaner.py:200 msgid "DOM Storage" msgstr "DOM Deposu" #: ../cleaners/opera.xml ../cleaners/chromium.xml #: ../cleaners/google_chrome.xml ../bleachbit/Cleaner.py:200 msgid "Delete HTML5 cookies" msgstr "HTML5 çerezlerini sil" #: ../cleaners/opera.xml ../cleaners/epiphany.xml ../cleaners/chromium.xml #: ../cleaners/google_chrome.xml ../cleaners/thunderbird.xml #: ../bleachbit/Cleaner.py:209 msgid "Passwords" msgstr "Parolalar" #: ../cleaners/opera.xml ../cleaners/epiphany.xml ../cleaners/chromium.xml #: ../cleaners/google_chrome.xml ../cleaners/thunderbird.xml #: ../bleachbit/Cleaner.py:210 msgid "" "A database of usernames and passwords as well as a list of sites that should " "not store passwords" msgstr "" "Kullanıcı adları ve şifreleri bunun yanında şifreleri depolanmaması gereken " "sitelerin listesini içeren bir veritabanı." #: ../cleaners/opera.xml ../cleaners/epiphany.xml ../cleaners/chromium.xml #: ../cleaners/google_chrome.xml ../cleaners/thunderbird.xml msgid "This option will delete your saved passwords." msgstr "Bu seçenek kayıtlı parolalarınızı siler." #: ../cleaners/nautilus.xml msgid "Custom folders will be reset." msgstr "Özel klasörler sıfırlanır." #: ../cleaners/gnome.xml ../cleaners/kde.xml msgid "Desktop environment" msgstr "Masaüstü ortamı" #: ../cleaners/screenlets.xml msgid "Widgets for the desktop" msgstr "Masaüstü pencere öğeleri" #: ../cleaners/kde.xml msgid "This option may be incompatible with kdesudo" msgstr "Bu seçenek kdesudo ile uyumsuz olabilir" #: ../cleaners/epiphany.xml msgid "Places" msgstr "Yerler" #: ../cleaners/epiphany.xml msgid "" "A database of URLs including bookmarks, favicons, and a history of visited " "web sites" msgstr "" "Sık kullanılanlar, favikonları ve ziyaret edilen siteler geçmişini içeren " "bir veritabanı" #: ../cleaners/epiphany.xml msgid "This option deletes all bookmarks." msgstr "Bu seçenek tüm sık kullanılanları siler." #: ../cleaners/winrar.xml msgid "File archiver" msgstr "Dosya arşivleyici" #: ../cleaners/elinks.xml msgid "Delete the cookies, visited URLs, and search history" msgstr "Çerezler, ziyaret edilen URL'ler ve arama geçmişini sil" #: ../cleaners/chromium.xml ../cleaners/google_chrome.xml msgid "A history of forms entered in web sites" msgstr "Web sitelerinde girilen formların geçmişi" #: ../cleaners/chromium.xml ../cleaners/google_chrome.xml msgid "" "Delete the history which includes visited sites, downloads, and thumbnails" msgstr "" "Ziyaret edilen internet siteleri, indirmeler ve önizleme resimleri geçmişini " "sil" #: ../cleaners/chromium.xml ../cleaners/google_chrome.xml msgid "Search engines" msgstr "Arama motorları" #. 'Factory' means a search engine that is installed by default 'from the factory,' but this is different than a 'default search engine' https://lists.launchpad.net/launchpad-translators/msg00283.html #: ../cleaners/chromium.xml ../cleaners/google_chrome.xml msgid "" "Reset the search engine usage history and delete non-factory search engines, " "some of which are added automatically" msgstr "" "Arama motoru geçmişini temizle ve bazıları otomatik olarak eklenen diğer " "arama motorlarını sil" #: ../cleaners/audacious.xml msgid "Audio player" msgstr "Ses çalar" #: ../cleaners/google_chrome.xml msgid "Session" msgstr "Oturum" #: ../cleaners/google_chrome.xml msgid "Delete the current and last sessions" msgstr "Geçerli ve son oturumu sil" #: ../cleaners/x11.xml msgid "Windowing system" msgstr "Pencere sistemi" #: ../cleaners/wordpad.xml msgid "Word processor" msgstr "Sözcük işlemci" #: ../cleaners/deepscan.xml msgid "Deep scan" msgstr "Derin tarama" #: ../cleaners/deepscan.xml msgid "Clean files widely scattered across the disk" msgstr "Yaygın bir şekilde diske dağılmış dosyaları temizle" #: ../cleaners/deepscan.xml msgid "Inspect the preview for any files you want to keep." msgstr "Kalmasını istedigin dosyalar için önizlemeyi denetle." #: ../cleaners/deepscan.xml msgid "This option is slow." msgstr "Bu seçenek yavaştır." #: ../bleachbit.desktop msgid "Unnecessary file cleaner" msgstr "Gereksiz dosya temizleyici" #: ../bleachbit.desktop msgid "Free space and maintain privacy" msgstr "Boş alan ve gizlilik koruması" #. TRANSLATORS: This is the label in the log indicating was #. skipped because it matches the whitelist #: ../bleachbit/Command.py:44 msgid "Skip" msgstr "Atla" #. TRANSLATORS: This is the label in the log indicating will be #. deleted (for previews) or was actually deleted #: ../bleachbit/Command.py:70 msgid "Delete" msgstr "Sil" #. TRANSLATORS: The file will be deleted when the #. system reboots #: ../bleachbit/Command.py:91 msgid "Mark for deletion" msgstr "Silinmek üzere işaretle" #. TRANSLATORS: Parts of this file will be deleted #: ../bleachbit/Command.py:181 ../bleachbit/Command.py:211 #: ../bleachbit/Action.py:197 ../bleachbit/Action.py:210 #: ../bleachbit/Action.py:223 ../bleachbit/Action.py:236 #: ../bleachbit/Action.py:249 msgid "Clean file" msgstr "Dosyayı temizle" #. TRANSLATORS: The file will be truncated to 0 bytes in length #: ../bleachbit/Command.py:247 msgid "Truncate" msgstr "Kes" #: ../bleachbit/Command.py:286 msgid "Delete registry key" msgstr "Kayıt anahtarını sil" #: ../bleachbit/Unix.py:353 ../bleachbit/Unix.py:383 ../bleachbit/Unix.py:573 #, python-format msgid "Executable not found: %s" msgstr "Çalıştırılabilir dosya bulunamadı : %s" #. TRANSLATORS: %s expands to a name such as 'Firefox' or 'System'. #: ../bleachbit/Unix.py:570 ../bleachbit/Worker.py:131 #, python-format msgid "" "%s cannot be cleaned because it is currently running. Close it, and try " "again." msgstr "" "%s silinemez çünkü şuan kullanılmakta. Lütfen dosya kullanımlarını kapatın " "ve tekrar deneyin." #: ../bleachbit/GuiBasic.py:112 msgid "Delete confirmation" msgstr "Silme onayı" #: ../bleachbit/GuiBasic.py:122 msgid "" "Are you sure you want to permanently delete files according to the selected " "operations? The actual files that will be deleted may have changed since " "you ran the preview." msgstr "" "Seçili işlemlere göre dosyaları kalıcı olarak silmek istediğinizden emin " "misiniz? Önizlemeyi çalıştırdığınız süre boyunca, silinecek olan gerçek " "dosyalar değişmiş olabilir." #: ../bleachbit/GuiBasic.py:125 msgid "Are you sure you want to permanently delete these files?" msgstr "Kalıcı olarak bu dosyaları silmek istediğinizden emin misiniz?" #: ../bleachbit/GuiBasic.py:162 #, python-format msgid "" "Because you are running as root, please manually open this link in a web " "browser:\n" "%s" msgstr "" "Yönetici olarak oturum açtığınız için, lütfen bu linki el ile bir internet " "tarayıcısında açın.\n" "%s" #. TRANSLATORS: %s expands to bleachbit.sourceforge.net or similar #: ../bleachbit/GuiBasic.py:174 #, python-format msgid "Open web browser to %s?" msgstr "%s için web tarayıcısını aç" #. TRANSLATORS: This is cleaner name for cleaners imported from winapp2.ini #: ../bleachbit/Winapp.py:44 msgid "Applications" msgstr "Uygulamalar" #. TRANSLATORS: This is cleaner name for cleaners imported #. from winapp2.ini #: ../bleachbit/Winapp.py:47 msgid "Internet" msgstr "İnternet" #. TRANSLATORS: This is cleaner name for cleaners imported #. from winapp2.ini #: ../bleachbit/Winapp.py:50 msgid "Multimedia" msgstr "Çoklu Ortam" #. TRANSLATORS: This is cleaner name for cleaners imported #. from winapp2.ini #: ../bleachbit/Winapp.py:53 msgid "Utilities" msgstr "Yardımcı Programlar" #: ../bleachbit/Winapp.py:64 msgid "Games" msgstr "Oyunlar" #: ../bleachbit/Winapp.py:151 msgid "Imported from winapp2.ini" msgstr "winapp2.ini dosyasından içe aktarıldı" #: ../bleachbit/Cleaner.py:198 msgid "Crash reports" msgstr "Çökme raporları" #: ../bleachbit/Cleaner.py:205 msgid "Session restore" msgstr "Oturumu yenile" #: ../bleachbit/Cleaner.py:206 msgid "Loads the initial session after the browser closes or crashes" msgstr "Tarayıcı kapanma yada çökmesinden sonra başlangıç oturumunu yükle" #: ../bleachbit/Cleaner.py:208 msgid "Site preferences" msgstr "Site tercihleri" #: ../bleachbit/Cleaner.py:208 msgid "Settings for individual sites" msgstr "Tek tek siteler için ayarlar" #. TRANSLATORS: desktop entries are .desktop files in Linux tha #. make up the application menu (the menu that shows BleachBit, #. Firefox, and others. The .desktop files also associate file #. types, so clicking on an .html file in Nautilus brings up #. Firefox. #. More information: #. http://standards.freedesktop.org/menu-spec/latest/index.html#introduction #: ../bleachbit/Cleaner.py:452 msgid "Broken desktop files" msgstr "Bozuk masaüstü dosyaları" #: ../bleachbit/Cleaner.py:453 msgid "Delete broken application menu entries and file associations" msgstr "Bozuk uygulama menüsü girişlerini ve dosya ilişkilerini sil" #. TRANSLATORS: Localizations are files supporting specific #. languages, so applications appear in Spanish, etc. #: ../bleachbit/Cleaner.py:457 msgid "Localizations" msgstr "Yerelleştirme" #: ../bleachbit/Cleaner.py:458 msgid "Delete files for unwanted languages" msgstr "İstenmeyen dil dosyalarını sil" #: ../bleachbit/Cleaner.py:460 msgid "Configure this option in the preferences." msgstr "Bu seçeneği tercihlerde ayarla." #: ../bleachbit/Cleaner.py:466 msgid "Rotated logs" msgstr "Döndürülmüş günlükler" #: ../bleachbit/Cleaner.py:466 msgid "Delete old system logs" msgstr "Eski sistem günlüklerini sil" #: ../bleachbit/Cleaner.py:469 msgid "Trash" msgstr "Çöp" #: ../bleachbit/Cleaner.py:469 msgid "Empty the trash" msgstr "Çöpü boşalt" #: ../bleachbit/Cleaner.py:475 ../bleachbit/Cleaner.py:626 #: ../bleachbit/Worker.py:172 msgid "Memory" msgstr "Bellek" #. TRANSLATORS: 'free' means 'unallocated' #: ../bleachbit/Cleaner.py:477 msgid "Wipe the swap and free memory" msgstr "Takas alanını ve boş hafızayı temizle" #: ../bleachbit/Cleaner.py:479 msgid "This option is experimental and may cause system problems." msgstr "Bu özellik deneme aşamasındadır, sistem hatalarına yol açabilir" #: ../bleachbit/Cleaner.py:487 msgid "Memory dump" msgstr "Bellek dökümü" #: ../bleachbit/Cleaner.py:487 msgid "Delete the file memory.dmp" msgstr "memory.dmp dosyasını sil" #. TRANSLATORS: Prefetch is Microsoft Windows jargon. #: ../bleachbit/Cleaner.py:490 msgid "Prefetch" msgstr "Önceden Getirme" #: ../bleachbit/Cleaner.py:492 msgid "Recycle bin" msgstr "Geri dönüşüm kutusu" #: ../bleachbit/Cleaner.py:492 msgid "Empty the recycle bin" msgstr "Geri dönüşüm kutusunu boşalt" #. TRANSLATORS: 'Update' is a noun, and 'Update uninstallers' is an option to delete #. the uninstallers for software updates. #: ../bleachbit/Cleaner.py:495 msgid "Update uninstallers" msgstr "Uygulama kaldırıcıları güncelle" #: ../bleachbit/Cleaner.py:496 msgid "" "Delete uninstallers for Microsoft updates including hotfixes, service packs, " "and Internet Explorer updates" msgstr "" "Microsoft güncellemelerinin kaldırıcılarını sil (servis paketleri, Internet " "Explorer güncellemerini vs. kapsar)" #: ../bleachbit/Cleaner.py:503 ../bleachbit/Cleaner.py:719 msgid "Clipboard" msgstr "Pano" #: ../bleachbit/Cleaner.py:504 msgid "" "The desktop environment's clipboard used for copy and paste operations" msgstr "Kopyalama ve yapıştırma için kullanılan masaüstü ortamı panosu" #. TRANSLATORS: "Custom" is an option allowing the user to specify which #. files and folders will be erased. #: ../bleachbit/Cleaner.py:511 ../bleachbit/GuiPreferences.py:63 msgid "Custom" msgstr "Özel" #: ../bleachbit/Cleaner.py:512 msgid "Delete user-specified files and folders" msgstr "Kullanıcı tarafından belirtilmiş dosya ve klasörleri sil" #. TRANSLATORS: 'free' means 'unallocated' #: ../bleachbit/Cleaner.py:514 msgid "Free disk space" msgstr "Boş disk alanı" #. TRANSLATORS: 'free' means 'unallocated' #: ../bleachbit/Cleaner.py:516 msgid "Overwrite free disk space to hide deleted files" msgstr "Silinmiş dosyaları saklamak için boş disk alanının üzerine yaz" #: ../bleachbit/Cleaner.py:517 msgid "This option is very slow." msgstr "Bu seçenek çok yavaştır." #: ../bleachbit/Cleaner.py:521 msgid "The system in general" msgstr "Genel olarak sistemin" #: ../bleachbit/Cleaner.py:523 ../bleachbit/Cleaner.py:838 msgid "System" msgstr "Sistem" #. TRANSLATORS: 'Free' means 'unallocated.' #. %s expands to a path such as C:\ or /tmp/ #: ../bleachbit/Cleaner.py:727 ../bleachbit/Cleaner.py:871 #, python-format msgid "Overwrite free disk space %s" msgstr "%s boş disk alanı üzerine yaz" #: ../bleachbit/GuiPreferences.py:55 ../bleachbit/GUI.py:670 msgid "Preferences" msgstr "Tercihler" #: ../bleachbit/GuiPreferences.py:61 msgid "General" msgstr "Genel" #: ../bleachbit/GuiPreferences.py:64 msgid "Drives" msgstr "Sürücüler" #: ../bleachbit/GuiPreferences.py:67 msgid "Languages" msgstr "Diller" #: ../bleachbit/GuiPreferences.py:69 msgid "Whitelist" msgstr "Beyaz Liste" #: ../bleachbit/GuiPreferences.py:114 msgid "Check periodically for software updates via the Internet" msgstr "Yazılım güncellemelerini düzenli aralıklarla kontrol et" #: ../bleachbit/GuiPreferences.py:119 msgid "" "If an update is found, you will be given the option to view information " "about it. Then, you may manually download and install the update." msgstr "" "Eğer bir güncelleştirme bulunursa size güncelleme hakkında bilgi " "görüntülenme seçeneği sunulacak. Böylece siz elle indirip güncellemeyi " "yükleyebilirsiniz." #: ../bleachbit/GuiPreferences.py:125 msgid "Check for new beta releases" msgstr "Yeni beta sürümleri kontrol et" #: ../bleachbit/GuiPreferences.py:134 msgid "Download and update cleaners from community (winapp2.ini)" msgstr "Topluluktan temizleyicileri indir ve güncelle (winapp2.ini)" #. TRANSLATORS: This means to hide cleaners which would do #. nothing. For example, if Firefox were never used on #. this system, this option would hide Firefox to simplify #. the list of cleaners. #: ../bleachbit/GuiPreferences.py:148 msgid "Hide irrelevant cleaners" msgstr "İlgisiz temizleyicileri gizle" #. TRANSLATORS: Overwriting is the same as shredding. It is a way #. to prevent recovery of the data. You could also translate #. 'Shred files to prevent recovery.' #: ../bleachbit/GuiPreferences.py:156 msgid "Overwrite files to hide contents" msgstr "İçerikleri gizlemek için dosyaların üzerine yaz" #: ../bleachbit/GuiPreferences.py:160 msgid "" "Overwriting is ineffective on some file systems and with certain BleachBit " "operations. Overwriting is significantly slower." msgstr "" "Üzerine yazma bazı dosya sistemlerinde ve belirli BleachBit işlemlerinde " "etkisizdir. Üzerine yazma önemli bir şekilde daha yavaştır." #: ../bleachbit/GuiPreferences.py:163 msgid "Start BleachBit with computer" msgstr "Bleachbit'i sistem açılışında başlat." #: ../bleachbit/GuiPreferences.py:169 msgid "Exit after cleaning" msgstr "Temizledikten sonra çık" #: ../bleachbit/GuiPreferences.py:175 msgid "Confirm before delete" msgstr "Silmeden önce onayla" #: ../bleachbit/GuiPreferences.py:188 ../bleachbit/GuiPreferences.py:317 #: ../bleachbit/GuiPreferences.py:358 ../bleachbit/GUI.py:577 msgid "Choose a folder" msgstr "Bir klasör seçin" #: ../bleachbit/GuiPreferences.py:212 msgid "" "Choose a writable folder for each drive for which to overwrite free space." msgstr "Her sürücüden yazılabilir bir klasör seçiniz." #. TRANSLATORS: In the preferences dialog, this button adds a path to #. the list of paths #: ../bleachbit/GuiPreferences.py:234 msgctxt "button" msgid "Add" msgstr "Ekle" #. TRANSLATORS: In the preferences dialog, this button removes a path #. from the list of paths #: ../bleachbit/GuiPreferences.py:238 ../bleachbit/GuiPreferences.py:449 msgctxt "button" msgid "Remove" msgstr "Kaldır" #: ../bleachbit/GuiPreferences.py:263 msgid "All languages will be deleted except those checked." msgstr "Seçilen dillerin dışındaki bütün dilleri sil" #: ../bleachbit/GuiPreferences.py:279 msgid "Preserve" msgstr "Koru" #: ../bleachbit/GuiPreferences.py:283 msgid "Code" msgstr "Kod" #: ../bleachbit/GuiPreferences.py:287 ../bleachbit/GUI.py:132 msgid "Name" msgstr "İsim" #: ../bleachbit/GuiPreferences.py:304 ../bleachbit/GuiPreferences.py:345 msgid "Choose a file" msgstr "Bir dosya seçin" #: ../bleachbit/GuiPreferences.py:311 ../bleachbit/GuiPreferences.py:352 #: ../bleachbit/GuiPreferences.py:396 msgid "File" msgstr "Dosya" #: ../bleachbit/GuiPreferences.py:325 ../bleachbit/GuiPreferences.py:366 #: ../bleachbit/GuiPreferences.py:398 msgid "Folder" msgstr "Dizin" #: ../bleachbit/GuiPreferences.py:408 msgid "Theses paths will not be deleted or modified." msgstr "Bu konumlar silinmeyecek ve değiştirilmeyecek" #: ../bleachbit/GuiPreferences.py:411 msgid "These locations can be selected for deletion." msgstr "Bu konumlar silmek için seçilebilir." #: ../bleachbit/GuiPreferences.py:419 msgid "Type" msgstr "Tür" #. TRANSLATORS: In the tree view "Path" is used generically to refer to a #. file, a folder, or a pattern describing either #: ../bleachbit/GuiPreferences.py:425 msgid "Path" msgstr "Yol" #: ../bleachbit/GuiPreferences.py:437 msgctxt "button" msgid "Add file" msgstr "Dosya ekle" #: ../bleachbit/GuiPreferences.py:443 msgctxt "button" msgid "Add folder" msgstr "Dizin ekle" #: ../bleachbit/RecognizeCleanerML.py:57 msgid "Security warning" msgstr "Güvenlik uyarısı" #: ../bleachbit/RecognizeCleanerML.py:70 msgid "" "These cleaner definitions are new or have changed. Malicious definitions can " "damage your system. If you do not trust these changes, delete the files or " "quit." msgstr "" "Bu temizleyici tanımlamaları yeni ya da değişmiş. Yanlış tanımlamalar " "sisteminize zarar verebilir. Eğer bu değişikliğe güvenmiyorsanız dosyaları " "silin ya da çıkın." #: ../bleachbit/RecognizeCleanerML.py:85 msgctxt "column_label" msgid "Delete" msgstr "Sil" #: ../bleachbit/RecognizeCleanerML.py:90 msgctxt "column_label" msgid "Filename" msgstr "Dosya Adı" #. TRANSLATORS: This indicates an error. The special keyword #. %(operation)s will be replaced by 'firefox' or 'opera' or #. some other cleaner ID. The special keyword %(msg)s will be #. replaced by a message such as 'Permission denied.' #: ../bleachbit/Worker.py:71 #, python-format msgid "Exception while running operation '%(operation)s': '%(msg)s'" msgstr "İşlem çalışırken bir hata meydana geldi. '%(operation)s': '%(msg)s'" #. TRANSLATORS: 'free' means 'unallocated' #: ../bleachbit/Worker.py:170 msgid "Please wait. Wiping free disk space." msgstr "Lütfen bekleyin. Boş disk alanı temizleniyor." #. TRANSLATORS: %s is replaced with Firefox, System, etc. #: ../bleachbit/Worker.py:172 ../bleachbit/Worker.py:311 #, python-format msgid "Please wait. Cleaning %s." msgstr "Lütfen bekleyin. %s temizleniyor." #: ../bleachbit/Worker.py:187 msgid "Please wait. Wiping file system metadata." msgstr "Lütfen bekleyin. Dosya sistemi meta verisi siliniyor." #: ../bleachbit/Worker.py:190 msgid "Please wait. Cleaning up after wiping file system metadata." msgstr "" "Lütfen bekleyin. Dosya sistemi meta verisi silinip temizlik yapılıyor." #: ../bleachbit/Worker.py:193 #, python-format msgid "About %d minute remaining." msgid_plural "About %d minutes remaining." msgstr[0] "Yaklaşık %d dakika kaldı." msgstr[1] "Yaklaşık %d dakika kaldı." #. TRANSLATORS: This refers to disk space that was #. really recovered (in other words, not a preview) #: ../bleachbit/Worker.py:250 #, python-format msgid "Disk space recovered: %s" msgstr "Geri kazanılan disk alanı: %s" #. TRANSLATORS: This refers to a preview (no real #. changes were made yet) #: ../bleachbit/Worker.py:254 #, python-format msgid "Disk space to be recovered: %s" msgstr "Geri kazanılacak disk alanı: %s" #. TRANSLATORS: This refers to the number of files really #. deleted (in other words, not a preview). #: ../bleachbit/Worker.py:259 #, python-format msgid "Files deleted: %d" msgstr "Silinen dosyalar: %d" #. TRANSLATORS: This refers to the number of files that #. would be deleted (in other words, simply a preview). #: ../bleachbit/Worker.py:263 #, python-format msgid "Files to be deleted: %d" msgstr "Silinecek dosyalar: %d" #: ../bleachbit/Worker.py:266 #, python-format msgid "Special operations: %d" msgstr "Özel işlemler: %d" #: ../bleachbit/Worker.py:269 #, python-format msgid "Errors: %d" msgstr "Hatalar: %d" #. TRANSLATORS: The "deep scan" feature searches over broad #. areas of the file system such as the user's whole home directory #. or all the system executables. #: ../bleachbit/Worker.py:284 msgid "Please wait. Running deep scan." msgstr "Derin tarama yapılıyor, lütfen bekleyiniz." #. TRANSLATORS: %s is replaced with Firefox, System, etc. #: ../bleachbit/Worker.py:314 #, python-format msgid "Please wait. Previewing %s." msgstr "%s için önizleme yapılıyor, lütfen bekleyiniz." #: ../bleachbit/Update.py:76 msgid "New winapp2.ini was downloaded." msgstr "Yeni winapp2.ini indirildi." #: ../bleachbit/Update.py:121 msgid "Update BleachBit" msgstr "BleachBit'i güncelle" #: ../bleachbit/Update.py:126 msgid "A new version is available." msgstr "Yeni bir sürüm var." #. TRANSLATORS: %s expands to version such as '0.8.4' or '0.8.5beta' or #. similar #: ../bleachbit/Update.py:135 #, python-format msgid "Update to version %s" msgstr "%s sürümüne güncelle" #: ../bleachbit/CLI.py:102 #, python-format msgid "not a valid cleaner: %s" msgstr "%s geçerli bir temizleyici değil" #. TRANSLATORS: This is the command line usage. Don't translate #. %prog, but do translate usage, options, cleaner, and option. #. More information about the command line is here #. http://bleachbit.sourceforge.net/documentation/command-line #: ../bleachbit/CLI.py:129 msgid "usage: %prog [options] cleaner.option1 cleaner.option2" msgstr "" "kullanım: %prog [seçenekler] temizleyici.seçenek1 temizleyici.seçenek2" #: ../bleachbit/CLI.py:132 msgid "list cleaners" msgstr "temizleyicileri listele" #. TRANSLATORS: predefined cleaners are for applications, such as Firefox and Flash. #. This is different than cleaning an arbitrary file, such as a #. spreadsheet on the desktop. #: ../bleachbit/CLI.py:137 msgid "run cleaners to delete files and make other permanent changes" msgstr "" "dosyaları silmek ve diğer kalıcı değişiklikleri yapmak için temizleyicileri " "çalıştır" #: ../bleachbit/CLI.py:140 msgid "shred specific files or folders" msgstr "seçili dosya ve klasörleri parçala" #: ../bleachbit/CLI.py:142 msgid "show system information" msgstr "sistem bilgilerini göster" #: ../bleachbit/CLI.py:144 msgid "launch the graphical interface" msgstr "grafik arayüzü çalıştır" #: ../bleachbit/CLI.py:146 msgid "do not prompt for administrator privileges" msgstr "yönetici yetkileri için soru sorma" #: ../bleachbit/CLI.py:151 msgid "preview files to be deleted and other changes" msgstr "silinecek dosyaları ve diğer değişiklikleri önizleyin" #: ../bleachbit/CLI.py:153 msgid "use options set in the graphical interface" msgstr "grafik arayüzde belirlenen seçenekleri kullan" #: ../bleachbit/CLI.py:156 msgid "update winapp2.ini, if a new version is available" msgstr "yeni bir sürümü mevcutsa winapp2.ini dosyasını güncelle" #: ../bleachbit/CLI.py:158 msgid "output version information and exit" msgstr "sürüm bilgisini görüntüle ve çık" #: ../bleachbit/CLI.py:160 msgid "overwrite files to hide contents" msgstr "içerikleri saklamak için dosyaların üzerine yaz" #. TRANSLATORS: this is the context menu #: ../bleachbit/Action.py:313 ../bleachbit/GUI.py:615 msgid "Clean" msgstr "Temizle" #: ../bleachbit/GUI.py:140 msgid "Active" msgstr "Etkin" #. TRANSLATORS: %(cleaner) may be Firefox, System, etc. #. %(option) may be cache, logs, cookies, etc. #. %(warning) may be 'This option is really slow' #: ../bleachbit/GUI.py:171 #, python-format msgid "" "Warning regarding %(cleaner)s - %(option)s:\n" "\n" "%(warning)s" msgstr "" "%(cleaner)s - %(option)s seçenekleri ile ilgili uyarılar:\n" "\n" "%(warning)s" #: ../bleachbit/GUI.py:357 msgid "You must select an operation" msgstr "Bir işlem seçmelisiniz" #: ../bleachbit/GUI.py:377 ../bleachbit/GUI.py:400 msgid "Done." msgstr "Tamamlandı." #: ../bleachbit/GUI.py:413 msgid "Program to clean unnecessary files" msgstr "Gereksiz dosyaları temizleyen program" #: ../bleachbit/GUI.py:419 msgid "" "GNU General Public License version 3 or later.\n" "See http://www.gnu.org/licenses/gpl-3.0.txt" msgstr "" "GNU (General Public License) Genel Açık Lisans versiyon 3 veya sonrası.\n" "Daha fazla bilgi için http://www.gnu.org/licenses/gpl-3.0.txt adresine bakın" #. TRANSLATORS: Maintain the names of translators here. #. Launchpad does this automatically for translations #. typed in Launchpad. This is a special string shown #. in the 'About' box. #: ../bleachbit/GUI.py:425 msgid "translator-credits" msgstr "" "Launchpad Contributions:\n" " Amed Çeko Jiyan https://launchpad.net/~amedcj\n" " Burak Ilgıcıoğlu https://launchpad.net/~buraki\n" " Ekrem Kocadere https://launchpad.net/~ekocadere-deactivatedaccount-" "deactivatedaccount\n" " Mehmet Gülmen https://launchpad.net/~memetgulmen\n" " Muhammet Kara https://launchpad.net/~muhammet-k\n" " Murat Bişkin https://launchpad.net/~muratbiskin\n" " Ufuk Yıldırım https://launchpad.net/~ckurdu\n" " Volkan Gezer https://launchpad.net/~volkangezer\n" " Yusuf Kayan https://launchpad.net/~c08b\n" " alperyilmaz https://launchpad.net/~alperyilmaz\n" " alquirel https://launchpad.net/~alquirel\n" " zeugma https://launchpad.net/~sunder67\n" " Özgür BASKIN https://launchpad.net/~ozgur-baskin" #: ../bleachbit/GUI.py:437 msgid "System information" msgstr "Sistem bilgisi" #: ../bleachbit/GUI.py:510 msgid "Choose files to shred" msgstr "Parçalanıcak dosyaları seç" #: ../bleachbit/GUI.py:513 msgid "Choose folder to shred" msgstr "Parçalanıcak dizini seç" #. TRANSLATORS: this is the context menu #: ../bleachbit/GUI.py:610 msgid "Preview" msgstr "Önizleme" #: ../bleachbit/GUI.py:658 msgid "_Shred Files" msgstr "Dosyaları Parça_la" #: ../bleachbit/GUI.py:660 msgid "Sh_red Folders" msgstr "Dizinleri Parçala" #: ../bleachbit/GUI.py:662 msgid "_Wipe Free Space" msgstr "Boş Alanı Sil" #: ../bleachbit/GUI.py:664 msgid "S_hred Settings and Quit" msgstr "Ayarları Sıfırla ve Çık" #: ../bleachbit/GUI.py:666 msgid "_Quit" msgstr "_Kapat" #: ../bleachbit/GUI.py:668 msgid "_File" msgstr "_Dosya" #: ../bleachbit/GUI.py:671 msgid "_Edit" msgstr "_Düzenle" #: ../bleachbit/GUI.py:672 msgid "Help Contents" msgstr "Yardım İçeriği" #: ../bleachbit/GUI.py:675 msgid "_Release Notes" msgstr "_Sürüm Notları" #: ../bleachbit/GUI.py:678 msgid "_System Information" msgstr "_Sistem Bilgisi" #: ../bleachbit/GUI.py:681 msgid "_About" msgstr "H_akkında" #: ../bleachbit/GUI.py:682 msgid "_Help" msgstr "_Yardım" #: ../bleachbit/GUI.py:707 msgctxt "button" msgid "Preview" msgstr "Önizleme" #: ../bleachbit/GUI.py:712 msgid "Preview files in the selected operations (without deleting any files)" msgstr "" "Seçili işlemlerdeki dosyaların önizlemesini yapın (Hiçbir dosya silinmeyecek)" #: ../bleachbit/GUI.py:722 msgctxt "button" msgid "Clean" msgstr "Temizle" #: ../bleachbit/GUI.py:726 msgid "Clean files in the selected operations" msgstr "Seçili işlemlerdeki dosyaları temizle" #: ../bleachbit/GUI.py:815 msgid "Error when checking for updates: " msgstr "Güncellemeleri kontrol ederken bir hata meydana geldi " #: ../bleachbit/GUI.py:855 msgid "" "Error loading the SQLite module: the antivirus software may be blocking it." msgstr "" "SQLite modülünü yüklerken hata: Antivirüs uygulaması engelliyor olabilir." #: ../bleachbit/GUI.py:858 msgid "" "You are running BleachBit with administrative privileges for cleaning shared " "parts of the system, and references to the user profile folder will clean " "only the root account." msgstr "" "Yönetici ayrıcalıklarına sahip BleachBit çalıştırıyorsunuz. Bu yalnızca " "paylaşılan sistemin parçalarını ve root hesabının kullanıcı profili " "klasörünü temizler." bleachbit-2.0/po/ms.po0000644000175000017500000013051413245436307013002 0ustar hlehle# Malay translation for bleachbit # Copyright (c) 2009 Rosetta Contributors and Canonical Ltd 2009 # This file is distributed under the same license as the bleachbit package. # FIRST AUTHOR , 2009. # msgid "" msgstr "" "Project-Id-Version: bleachbit\n" "Report-Msgid-Bugs-To: FULL NAME \n" "POT-Creation-Date: 2016-06-24 19:52-0600\n" "PO-Revision-Date: 2016-06-26 14:30+0000\n" "Last-Translator: abuyop \n" "Language-Team: Malay \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n != 1;\n" "X-Launchpad-Export-Date: 2016-06-27 13:00+0000\n" "X-Generator: Launchpad (build 18115)\n" #: ../cleaners/mc.xml ../cleaners/tortoisesvn.xml ../cleaners/vim.xml #: ../cleaners/safari.xml ../cleaners/links2.xml ../cleaners/seamonkey.xml #: ../cleaners/realplayer.xml ../cleaners/windows_defender.xml #: ../cleaners/d4x.xml ../cleaners/sqlite3.xml #: ../cleaners/internet_explorer.xml ../cleaners/libreoffice.xml #: ../cleaners/easytag.xml ../cleaners/bash.xml ../cleaners/nautilus.xml #: ../cleaners/octave.xml ../cleaners/elinks.xml ../cleaners/chromium.xml #: ../cleaners/google_chrome.xml msgid "History" msgstr "Sejarah" #: ../cleaners/mc.xml ../cleaners/tortoisesvn.xml ../cleaners/links2.xml #: ../cleaners/realplayer.xml ../cleaners/d4x.xml ../cleaners/libreoffice.xml #: ../cleaners/easytag.xml ../cleaners/nautilus.xml ../cleaners/gnome.xml #: ../bleachbit/Cleaner.py:351 ../bleachbit/Cleaner.py:425 #: ../bleachbit/Cleaner.py:434 msgid "Delete the usage history" msgstr "Padam sejarah penggunaan" #: ../cleaners/gpodder.xml ../cleaners/hippo_opensim_viewer.xml #: ../cleaners/thumbnails.xml ../cleaners/safari.xml ../cleaners/emesene.xml #: ../cleaners/liferea.xml ../cleaners/seamonkey.xml ../cleaners/vuze.xml #: ../cleaners/yahoo_messenger.xml ../cleaners/pidgin.xml #: ../cleaners/adobe_reader.xml ../cleaners/evolution.xml #: ../cleaners/tremulous.xml ../cleaners/libreoffice.xml ../cleaners/xine.xml #: ../cleaners/nexuiz.xml ../cleaners/exaile.xml ../cleaners/opera.xml #: ../cleaners/amsn.xml ../cleaners/gftp.xml ../cleaners/miro.xml #: ../cleaners/beagle.xml ../cleaners/kde.xml ../cleaners/epiphany.xml #: ../cleaners/flash.xml ../cleaners/secondlife_viewer.xml ../cleaners/java.xml #: ../cleaners/chromium.xml ../cleaners/audacious.xml ../cleaners/rhythmbox.xml #: ../cleaners/google_chrome.xml ../cleaners/thunderbird.xml #: ../bleachbit/Cleaner.py:194 ../bleachbit/Cleaner.py:372 #: ../bleachbit/Cleaner.py:457 msgid "Cache" msgstr "Cache" #: ../cleaners/gpodder.xml ../cleaners/yum.xml #: ../cleaners/hippo_opensim_viewer.xml ../cleaners/thumbnails.xml #: ../cleaners/windows_explorer.xml ../cleaners/liferea.xml #: ../cleaners/vuze.xml ../cleaners/yahoo_messenger.xml ../cleaners/pidgin.xml #: ../cleaners/adobe_reader.xml ../cleaners/evolution.xml #: ../cleaners/libreoffice.xml ../cleaners/apt.xml ../cleaners/xine.xml #: ../cleaners/nexuiz.xml ../cleaners/exaile.xml ../cleaners/amsn.xml #: ../cleaners/gftp.xml ../cleaners/miro.xml ../cleaners/beagle.xml #: ../cleaners/kde.xml ../cleaners/flash.xml ../cleaners/secondlife_viewer.xml #: ../cleaners/java.xml ../cleaners/audacious.xml ../cleaners/rhythmbox.xml #: ../bleachbit/Cleaner.py:372 ../bleachbit/Cleaner.py:457 #: ../bleachbit/Cleaner.py:491 ../bleachbit/Cleaner.py:493 msgid "Delete the cache" msgstr "Padam cache" #. TRANSLATORS: Vacuum is a verb. The term is jargon #. from the SQLite database. Microsoft Access uses #. the term 'Compact Database' (which you may translate #. instead). Another synonym is 'defragment.' #: ../cleaners/gpodder.xml ../cleaners/yum.xml ../cleaners/safari.xml #: ../cleaners/liferea.xml ../cleaners/chromium.xml #: ../cleaners/google_chrome.xml ../cleaners/thunderbird.xml #: ../bleachbit/Cleaner.py:216 ../bleachbit/Cleaner.py:362 #: ../bleachbit/Action.py:419 msgid "Vacuum" msgstr "Vakum" #: ../cleaners/gpodder.xml ../cleaners/yum.xml ../cleaners/safari.xml #: ../cleaners/liferea.xml ../cleaners/chromium.xml #: ../cleaners/google_chrome.xml ../cleaners/thunderbird.xml #: ../bleachbit/Cleaner.py:217 msgid "" "Clean database fragmentation to reduce space and improve speed without " "removing any data" msgstr "" "Bersihkan serpihan pengkalan data untuk kurangkan ruang dan menambah " "kelajuan tanpa membuang sebarang data" #: ../cleaners/yum.xml ../cleaners/apt.xml msgid "Package manager" msgstr "Pengurus pakej" #: ../cleaners/warzone2100.xml ../cleaners/hippo_opensim_viewer.xml #: ../cleaners/gl-117.xml ../cleaners/tremulous.xml ../cleaners/nexuiz.xml #: ../cleaners/secondlife_viewer.xml msgid "Game" msgstr "Permainan" #: ../cleaners/warzone2100.xml ../cleaners/hippo_opensim_viewer.xml #: ../cleaners/teamviewer.xml ../cleaners/realplayer.xml ../cleaners/vuze.xml #: ../cleaners/yahoo_messenger.xml ../cleaners/amule.xml #: ../cleaners/easytag.xml ../cleaners/exaile.xml ../cleaners/screenlets.xml #: ../cleaners/gftp.xml ../cleaners/miro.xml ../cleaners/audacious.xml #: ../bleachbit/Cleaner.py:488 msgid "Logs" msgstr "Log" #: ../cleaners/warzone2100.xml ../cleaners/hippo_opensim_viewer.xml #: ../cleaners/teamviewer.xml ../cleaners/realplayer.xml ../cleaners/vuze.xml #: ../cleaners/yahoo_messenger.xml ../cleaners/amule.xml ../cleaners/exaile.xml #: ../cleaners/screenlets.xml ../cleaners/gftp.xml ../cleaners/miro.xml #: ../cleaners/audacious.xml ../bleachbit/Cleaner.py:488 msgid "Delete the logs" msgstr "Padam log" #: ../cleaners/thumbnails.xml ../cleaners/windows_explorer.xml msgid "Thumbnails" msgstr "Thumbnail" #: ../cleaners/thumbnails.xml msgid "Icons for files on the system" msgstr "Ikon untuk fail di dalam sistem" #: ../cleaners/vim.xml ../cleaners/gedit.xml msgid "Editor" msgstr "Penyunting" #: ../cleaners/vim.xml msgid "" "Delete ~/.viminfo which includes file history, command history, and buffers" msgstr "" "Padam ~/.viminfo termasuk sejarah fail, sejarah perintah dan penimbal" #: ../cleaners/filezilla.xml ../cleaners/transmission.xml ../cleaners/vuze.xml #: ../cleaners/amule.xml ../cleaners/gftp.xml msgid "File transfer client" msgstr "Klien pemindahan fail" #: ../cleaners/filezilla.xml ../cleaners/paint.xml #: ../cleaners/windows_media_player.xml ../cleaners/windows_explorer.xml #: ../cleaners/teamviewer.xml ../cleaners/microsoft_office.xml #: ../cleaners/vlc.xml ../cleaners/adobe_reader.xml ../cleaners/winamp.xml #: ../cleaners/winzip.xml ../cleaners/winrar.xml ../cleaners/audacious.xml #: ../cleaners/wordpad.xml ../bleachbit/Cleaner.py:373 msgid "Most recently used" msgstr "Paling digunakan baru-baru ini" #: ../cleaners/filezilla.xml ../cleaners/windows_explorer.xml #: ../cleaners/gwenview.xml ../cleaners/adobe_reader.xml ../cleaners/gedit.xml #: ../cleaners/kde.xml ../cleaners/audacious.xml ../bleachbit/Cleaner.py:374 #: ../bleachbit/Cleaner.py:471 msgid "Delete the list of recently used documents" msgstr "Padam senarai dokumen yang digunakan baru-baru ini" #: ../cleaners/skype.xml ../cleaners/xchat.xml ../cleaners/emesene.xml #: ../cleaners/yahoo_messenger.xml ../cleaners/pidgin.xml ../cleaners/amsn.xml msgid "Chat client" msgstr "Klien sembang" #: ../cleaners/skype.xml ../cleaners/xchat.xml ../cleaners/emesene.xml #: ../cleaners/seamonkey.xml ../cleaners/yahoo_messenger.xml #: ../cleaners/pidgin.xml ../cleaners/amsn.xml msgid "Chat logs" msgstr "Log sembang" #: ../cleaners/skype.xml ../cleaners/xchat.xml ../cleaners/emesene.xml #: ../cleaners/seamonkey.xml ../cleaners/yahoo_messenger.xml #: ../cleaners/pidgin.xml ../cleaners/amsn.xml msgid "Delete the chat logs" msgstr "Padam log sembang" #: ../cleaners/skype.xml msgid "Installers" msgstr "Pemasang" #: ../cleaners/skype.xml msgid "Delete cached patches and installers" msgstr "Padam tampalan dan pemasang bercache" #: ../cleaners/safari.xml ../cleaners/links2.xml ../cleaners/seamonkey.xml #: ../cleaners/konqueror.xml ../cleaners/internet_explorer.xml #: ../cleaners/opera.xml ../cleaners/epiphany.xml ../cleaners/elinks.xml #: ../cleaners/chromium.xml ../cleaners/google_chrome.xml #: ../bleachbit/Cleaner.py:228 msgid "Web browser" msgstr "Pelayar Sesawang" #: ../cleaners/safari.xml ../cleaners/seamonkey.xml ../cleaners/opera.xml #: ../cleaners/epiphany.xml ../cleaners/chromium.xml #: ../cleaners/google_chrome.xml ../cleaners/thunderbird.xml #: ../bleachbit/Cleaner.py:195 msgid "Delete the web cache, which reduces time to display revisited pages" msgstr "" "Padam cache sesawang, yang mengurangkan masa pemaparan halaman yang telah " "dilawati" #: ../cleaners/safari.xml ../cleaners/liferea.xml ../cleaners/seamonkey.xml #: ../cleaners/realplayer.xml ../cleaners/konqueror.xml #: ../cleaners/internet_explorer.xml ../cleaners/opera.xml #: ../cleaners/epiphany.xml ../cleaners/flash.xml ../cleaners/silverlight.xml #: ../cleaners/chromium.xml ../cleaners/google_chrome.xml #: ../cleaners/thunderbird.xml ../bleachbit/Cleaner.py:196 msgid "Cookies" msgstr "Kuki" #: ../cleaners/safari.xml ../cleaners/liferea.xml ../cleaners/seamonkey.xml #: ../cleaners/realplayer.xml ../cleaners/konqueror.xml #: ../cleaners/internet_explorer.xml ../cleaners/opera.xml #: ../cleaners/epiphany.xml ../cleaners/flash.xml ../cleaners/silverlight.xml #: ../cleaners/chromium.xml ../cleaners/google_chrome.xml #: ../cleaners/thunderbird.xml ../bleachbit/Cleaner.py:197 msgid "" "Delete cookies, which contain information such as web site preferences, " "authentication, and tracking identification" msgstr "" "Padam kuki, yang mengandungi maklumat seperti keutamaan laman web, " "pengesahihan dan pengenalan jejak" #: ../cleaners/safari.xml ../cleaners/konqueror.xml #: ../cleaners/internet_explorer.xml ../cleaners/opera.xml #: ../bleachbit/Cleaner.py:215 msgid "List of visited web pages" msgstr "Senarai laman dilawati" #. Torrent software can block a list of IP addresses, such as those that may belong to malware or anti-piracy organizations #: ../cleaners/transmission.xml msgid "Blocklists" msgstr "Senarai sekat" #: ../cleaners/transmission.xml ../cleaners/windows_defender.xml #: ../cleaners/beagle.xml ../cleaners/thunderbird.xml ../cleaners/deepscan.xml #: ../bleachbit/Cleaner.py:199 msgid "Delete the files" msgstr "Padam fail ini" #: ../cleaners/transmission.xml msgid "Blocklists will need update to work." msgstr "Senarai sekat perlu dikemaskin untuk berfungsi dengan baik." #: ../cleaners/transmission.xml msgid "Torrents" msgstr "Torrent" #: ../cleaners/transmission.xml msgid "Delete the torrents (just the metadata but not the files described)" msgstr "Padam torent (hanya data meta bukannya fail yang diterangkan)" #: ../cleaners/transmission.xml msgid "Statistics" msgstr "Statistik" #: ../cleaners/transmission.xml msgid "Delete the file" msgstr "Padam fail" #: ../cleaners/paint.xml ../cleaners/windows_media_player.xml #: ../cleaners/windows_explorer.xml ../cleaners/teamviewer.xml #: ../cleaners/microsoft_office.xml ../cleaners/vlc.xml ../cleaners/winamp.xml #: ../cleaners/winzip.xml ../cleaners/winrar.xml ../cleaners/wordpad.xml msgid "Delete the most recently used list" msgstr "Padam senarai guna terbaru" #: ../cleaners/emesene.xml msgid "Delete the avatars and emoticons cache" msgstr "Padam cache avatar dan emotikon" #: ../cleaners/windows_media_player.xml ../cleaners/realplayer.xml #: ../cleaners/vlc.xml ../cleaners/winamp.xml msgid "Media player" msgstr "Pemain media" #: ../cleaners/windows_explorer.xml ../cleaners/nautilus.xml msgid "File manager" msgstr "Pengurus Fail" #: ../cleaners/windows_explorer.xml ../cleaners/gwenview.xml #: ../cleaners/gedit.xml ../cleaners/kde.xml ../bleachbit/Cleaner.py:470 msgid "Recent documents list" msgstr "Senarai dokumen baru-baru ini" #. In Windows 'Run' is the dialog in the Start menu #. In GNOME 'Run' is the dialog shown when typing ALT+F2' #: ../cleaners/windows_explorer.xml ../cleaners/gnome.xml msgid "Run" msgstr "Jalan" #: ../cleaners/windows_explorer.xml ../cleaners/opera.xml ../cleaners/gnome.xml #: ../cleaners/google_toolbar.xml msgid "Search history" msgstr "Sejarah gelintar" #: ../cleaners/windows_explorer.xml ../cleaners/opera.xml ../cleaners/gnome.xml #: ../cleaners/google_toolbar.xml msgid "Delete the search history" msgstr "Padam sejarah gelintar" #: ../cleaners/windows_explorer.xml msgid "This will restart Windows Explorer." msgstr "Tindakan ini akan memulakan semula Windows Explorer." #: ../cleaners/gl-117.xml ../cleaners/microsoft_office.xml #: ../cleaners/beagle.xml ../cleaners/secondlife_viewer.xml ../cleaners/x11.xml msgid "Debug logs" msgstr "Log nyahpepijat" #: ../cleaners/gl-117.xml ../cleaners/microsoft_office.xml #: ../cleaners/easytag.xml ../cleaners/beagle.xml #: ../cleaners/secondlife_viewer.xml ../cleaners/x11.xml msgid "Delete the debug logs" msgstr "Padam log nyahpepijat" #: ../cleaners/google_earth.xml ../cleaners/winetricks.xml ../cleaners/vuze.xml #: ../cleaners/adobe_reader.xml ../cleaners/amule.xml ../cleaners/wine.xml #: ../cleaners/internet_explorer.xml ../cleaners/gimp.xml ../cleaners/kde.xml #: ../cleaners/deepscan.xml ../bleachbit/Cleaner.py:522 msgid "Temporary files" msgstr "Fail sementara" #: ../cleaners/google_earth.xml ../cleaners/winetricks.xml ../cleaners/vuze.xml #: ../cleaners/adobe_reader.xml ../cleaners/amule.xml ../cleaners/wine.xml #: ../cleaners/internet_explorer.xml ../cleaners/gimp.xml ../cleaners/kde.xml #: ../cleaners/deepscan.xml ../bleachbit/Cleaner.py:522 msgid "Delete the temporary files" msgstr "Padam fail sementara" #: ../cleaners/seamonkey.xml ../cleaners/opera.xml ../bleachbit/Cleaner.py:203 msgid "Download history" msgstr "Sejarah muat turun" #: ../cleaners/seamonkey.xml ../cleaners/opera.xml ../bleachbit/Cleaner.py:203 msgid "List of files downloaded" msgstr "Senarai fail dimuat turun" #: ../cleaners/seamonkey.xml msgid "Delete the list of visited web pages" msgstr "Padam senarai laman dilawati" #: ../cleaners/vuze.xml ../cleaners/deepscan.xml ../bleachbit/Cleaner.py:192 msgid "Backup files" msgstr "Fail sandar" #: ../cleaners/vuze.xml ../cleaners/deepscan.xml ../bleachbit/Cleaner.py:193 msgid "Delete the backup files" msgstr "Padam fail sandar" #: ../cleaners/konqueror.xml ../cleaners/opera.xml ../cleaners/chromium.xml msgid "Current session" msgstr "Sesi semasa" #: ../cleaners/konqueror.xml ../cleaners/opera.xml ../cleaners/chromium.xml msgid "Delete the current session" msgstr "Padam sesi semasa" #: ../cleaners/konqueror.xml ../cleaners/opera.xml ../bleachbit/Cleaner.py:215 msgid "URL history" msgstr "Sejarah URL" #: ../cleaners/microsoft_office.xml ../cleaners/libreoffice.xml #: ../bleachbit/Cleaner.py:377 msgid "Office suite" msgstr "Suit pejabat" #: ../cleaners/windows_defender.xml msgid "Anti-virus" msgstr "Anti-virus" #: ../cleaners/adobe_reader.xml msgid "Document viewer" msgstr "Pelihat dokumen" #: ../cleaners/evolution.xml ../cleaners/thunderbird.xml msgid "Email client" msgstr "Klien emel" #: ../cleaners/tremulous.xml msgid "Delete the list of game servers" msgstr "Padam senarai pelayan permainan" #: ../cleaners/sqlite3.xml ../cleaners/bash.xml ../cleaners/octave.xml msgid "Delete the command history" msgstr "Padam sejarah perintah" #: ../cleaners/wine.xml msgid "Compatibility layer for Windows software" msgstr "Lapisan keserasian untuk perisian Windows" #: ../cleaners/internet_explorer.xml ../cleaners/chromium.xml #: ../cleaners/google_chrome.xml ../bleachbit/Cleaner.py:204 msgid "Form history" msgstr "Sejarah borang" #: ../cleaners/internet_explorer.xml ../bleachbit/Cleaner.py:205 msgid "A history of forms entered in web sites and in the Search bar" msgstr "" "Sejarah borang yang dimasukkan dalam laman sesawang dan Palang Gelintar" #. This software edits metadata tags, such as title and artist, in audio files #: ../cleaners/easytag.xml msgid "Audio files tagger" msgstr "Penanda fail audio" #: ../cleaners/apt.xml msgid "Delete obsolete files" msgstr "Padam fail lapuk" #: ../cleaners/apt.xml msgid "Package lists" msgstr "Senarai pakej" #: ../cleaners/xine.xml ../cleaners/miro.xml ../cleaners/flash.xml msgid "Multimedia viewer" msgstr "Pemapar multimedia" #: ../cleaners/recoll.xml ../cleaners/beagle.xml msgid "Search tool" msgstr "Alat gelintar" #: ../cleaners/recoll.xml ../cleaners/beagle.xml ../cleaners/thunderbird.xml msgid "Index" msgstr "Indeks" #: ../cleaners/recoll.xml msgid "" "Delete the search index, a database of words and the files they contain" msgstr "" "Padam indeks gelintar,pengkalan data bagi perkataan dan fail yang " "dikandungnya" #: ../cleaners/gimp.xml msgid "Graphics editor" msgstr "Penyunting grafik" #: ../cleaners/exaile.xml msgid "Downloaded podcasts" msgstr "Podcast yang dimuat turun" #: ../cleaners/exaile.xml msgid "Delete downloaded podcasts" msgstr "Padam podcast yang telah dimuat turun" #: ../cleaners/bash.xml msgid "Shell" msgstr "Shell" #. TRANSLATORS: DOM = Document Object Model. #: ../cleaners/opera.xml ../cleaners/epiphany.xml ../cleaners/chromium.xml #: ../cleaners/google_chrome.xml ../bleachbit/Cleaner.py:201 msgid "DOM Storage" msgstr "Simpanan DOM" #: ../cleaners/opera.xml ../cleaners/epiphany.xml ../cleaners/chromium.xml #: ../cleaners/google_chrome.xml ../bleachbit/Cleaner.py:201 msgid "Delete HTML5 cookies" msgstr "Padam kuki HTML5" #: ../cleaners/opera.xml ../cleaners/epiphany.xml ../cleaners/chromium.xml #: ../cleaners/google_chrome.xml ../cleaners/thunderbird.xml #: ../bleachbit/Cleaner.py:210 msgid "Passwords" msgstr "Kata Laluan" #: ../cleaners/opera.xml ../cleaners/epiphany.xml ../cleaners/chromium.xml #: ../cleaners/google_chrome.xml ../cleaners/thunderbird.xml #: ../bleachbit/Cleaner.py:211 msgid "" "A database of usernames and passwords as well as a list of sites that should " "not store passwords" msgstr "" "Pengkalan nama pengguna dan kata laluan serta senarai laman yang tidak " "dibenarkan simpan kata laluan" #: ../cleaners/opera.xml ../cleaners/epiphany.xml ../cleaners/chromium.xml #: ../cleaners/google_chrome.xml ../cleaners/thunderbird.xml #: ../bleachbit/Cleaner.py:213 msgid "This option will delete your saved passwords." msgstr "Pilihan ini akan memadam kata laluan tersimpan anda." #: ../cleaners/nautilus.xml msgid "Custom folders will be reset." msgstr "Folder suai akan di tetapkan semula." #: ../cleaners/gnome.xml ../cleaners/kde.xml msgid "Desktop environment" msgstr "Persekitaran desktop" #: ../cleaners/screenlets.xml msgid "Widgets for the desktop" msgstr "Widget untuk desktop" #: ../cleaners/epiphany.xml msgid "Places" msgstr "Tempat" #: ../cleaners/epiphany.xml msgid "" "A database of URLs including bookmarks, favicons, and a history of visited " "web sites" msgstr "" "Pengkalan data URL termasuk tanda buku, ikon kegemaran dan sejarah laman " "sesawang yang dilawati" #: ../cleaners/epiphany.xml msgid "This option deletes all bookmarks." msgstr "Pilihan ini akan memadam semua tanda buku." #: ../cleaners/winrar.xml msgid "File archiver" msgstr "Pengarkib fail" #: ../cleaners/elinks.xml msgid "Delete the cookies, visited URLs, and search history" msgstr "Padam kuki, URL yang dilawati dan sejarah gelintar" #: ../cleaners/chromium.xml ../cleaners/google_chrome.xml msgid "A history of forms entered in web sites" msgstr "Sejarah borang yang dimasukkan didalam laman sesawang" #: ../cleaners/chromium.xml ../cleaners/google_chrome.xml msgid "" "Delete the history which includes visited sites, downloads, and thumbnails" msgstr "Padam sejarah laman dilawati, sejarah muat turun dan thumbnail" #: ../cleaners/chromium.xml ../cleaners/google_chrome.xml msgid "Search engines" msgstr "Enjin gelintar" #. 'Factory' means a search engine that is installed by default 'from the factory,' but this is different than a 'default search engine' https://lists.launchpad.net/launchpad-translators/msg00283.html #: ../cleaners/chromium.xml ../cleaners/google_chrome.xml msgid "" "Reset the search engine usage history and delete non-factory search engines, " "some of which are added automatically" msgstr "" "Tetap semula sejarah penggunaan enjin dan padam enjin gelintar bukan-kilang, " "yang mana sebahagiannya ditambah secara automatik" #: ../cleaners/audacious.xml msgid "Audio player" msgstr "Pemain audio" #: ../cleaners/rhythmbox.xml msgid "Database" msgstr "Pangkalan Data" #: ../cleaners/rhythmbox.xml msgid "" "Delete the database, which contain information such as play count and last " "played" msgstr "" "Padam pangkalan data, yang mengandungi maklumat seperti kiraan main dan " "terakhir dimainkan." #: ../cleaners/google_chrome.xml msgid "Session" msgstr "Sesi" #: ../cleaners/google_chrome.xml msgid "Delete the current and last sessions" msgstr "Padam sesi semasa dan terakhir" #: ../cleaners/x11.xml msgid "Windowing system" msgstr "Sistem Windows" #: ../cleaners/wordpad.xml msgid "Word processor" msgstr "Pemproses perkataan" #: ../cleaners/deepscan.xml msgid "Deep scan" msgstr "Imbas mendalam" #: ../cleaners/deepscan.xml msgid "Clean files widely scattered across the disk" msgstr "Bersihkan fail yang bertaburan di dalam cakera anda" #: ../cleaners/deepscan.xml msgid "Inspect the preview for any files you want to keep." msgstr "Periksa pratonton sebarang fail yang anda mahu simpan." #: ../cleaners/deepscan.xml msgid "This option is slow." msgstr "Pilihan ini adalah perlahan" #: ../bleachbit.desktop msgid "Unnecessary file cleaner" msgstr "Pembersih fail yang tak perlu" #: ../bleachbit.desktop msgid "Free space and maintain privacy" msgstr "Kosongkan ruang dan kekalkan kerahsiaan" #. TRANSLATORS: This is the label in the log indicating was #. skipped because it matches the whitelist #: ../bleachbit/Command.py:44 msgid "Skip" msgstr "Langkau" #. TRANSLATORS: This is the label in the log indicating will be #. deleted (for previews) or was actually deleted #: ../bleachbit/Command.py:74 msgid "Delete" msgstr "Padam" #. TRANSLATORS: The file will be deleted when the #. system reboots #: ../bleachbit/Command.py:95 msgid "Mark for deletion" msgstr "Tanda untuk pemadaman" #. TRANSLATORS: Parts of this file will be deleted #: ../bleachbit/Command.py:192 ../bleachbit/Command.py:226 #: ../bleachbit/Action.py:256 ../bleachbit/Action.py:269 #: ../bleachbit/Action.py:282 ../bleachbit/Action.py:295 #: ../bleachbit/Action.py:308 msgid "Clean file" msgstr "Kosongkan fail" #. TRANSLATORS: The file will be truncated to 0 bytes in length #: ../bleachbit/Command.py:268 msgid "Truncate" msgstr "Pangkaskan" #: ../bleachbit/Command.py:311 msgid "Delete registry key" msgstr "Padam kunci daftar" #: ../bleachbit/Unix.py:340 ../bleachbit/Unix.py:370 ../bleachbit/Unix.py:574 #, python-format msgid "Executable not found: %s" msgstr "boleh laku tidak ditemui: %s" #. TRANSLATORS: %s expands to a name such as 'Firefox' or 'System'. #: ../bleachbit/Unix.py:571 ../bleachbit/Worker.py:141 #, python-format msgid "" "%s cannot be cleaned because it is currently running. Close it, and try " "again." msgstr "" "%s tidak boleh dibersihkan kerana sedang dijalankan. Tutup dan cuba lagi." #: ../bleachbit/GuiBasic.py:112 msgid "Delete confirmation" msgstr "Pengesahan padam" #: ../bleachbit/GuiBasic.py:122 msgid "" "Are you sure you want to permanently delete files according to the selected " "operations? The actual files that will be deleted may have changed since " "you ran the preview." msgstr "" "Adakah anda pasti hendak memadam fail menurut operasi dipilih? Fail sebenar " "yang akan dipadam mungkin telah berubah semenjak anda jalankan pratonton." #: ../bleachbit/GuiBasic.py:125 msgid "Are you sure you want to permanently delete these files?" msgstr "Adakah anda pasti untuk memadam fail ini?" #: ../bleachbit/GuiBasic.py:162 #, python-format msgid "" "Because you are running as root, please manually open this link in a web " "browser:\n" "%s" msgstr "" "Oleh kerana anda berada dalam mod root, sila buka pautan ini secara manual " "di pelayar sesawang:\n" "%s" #. TRANSLATORS: %s expands to www.bleachbit.org or similar #: ../bleachbit/GuiBasic.py:174 #, python-format msgid "Open web browser to %s?" msgstr "Buka pelayar sesawang ke %s?" #. TRANSLATORS: This is cleaner name for cleaners imported from winapp2.ini #: ../bleachbit/Winapp.py:44 msgid "Applications" msgstr "Aplikasi" #. TRANSLATORS: This is cleaner name for cleaners imported #. from winapp2.ini #: ../bleachbit/Winapp.py:47 msgid "Internet" msgstr "Internet" #. TRANSLATORS: This is cleaner name for cleaners imported #. from winapp2.ini #: ../bleachbit/Winapp.py:50 msgid "Multimedia" msgstr "Multimedia" #. TRANSLATORS: This is cleaner name for cleaners imported #. from winapp2.ini #: ../bleachbit/Winapp.py:53 msgid "Utilities" msgstr "Utiliti" #: ../bleachbit/Winapp.py:64 msgid "Games" msgstr "Permainan" #: ../bleachbit/Winapp.py:165 msgid "Imported from winapp2.ini" msgstr "Import dari winapp2.ini" #: ../bleachbit/Cleaner.py:199 msgid "Crash reports" msgstr "Laporan kerosakan" #: ../bleachbit/Cleaner.py:206 msgid "Session restore" msgstr "Pemulihan sesi" #: ../bleachbit/Cleaner.py:207 msgid "Loads the initial session after the browser closes or crashes" msgstr "Muat sesi awalan setelah pelayar ditutup atau rosak" #: ../bleachbit/Cleaner.py:209 msgid "Site preferences" msgstr "Keutamaan Tapak" #: ../bleachbit/Cleaner.py:209 msgid "Settings for individual sites" msgstr "Tetapan untuk tapak individu" #. TRANSLATORS: desktop entries are .desktop files in Linux that #. make up the application menu (the menu that shows BleachBit, #. Firefox, and others. The .desktop files also associate file #. types, so clicking on an .html file in Nautilus brings up #. Firefox. #. More information: #. http://standards.freedesktop.org/menu-spec/latest/index.html#introduction #: ../bleachbit/Cleaner.py:455 msgid "Broken desktop files" msgstr "Fail desktop rosak" #: ../bleachbit/Cleaner.py:456 msgid "Delete broken application menu entries and file associations" msgstr "Padam masukan menu aplikasi yang rosak dan fail yang berkaitan" #. TRANSLATORS: Localizations are files supporting specific #. languages, so applications appear in Spanish, etc. #: ../bleachbit/Cleaner.py:460 msgid "Localizations" msgstr "Lokalisasi" #: ../bleachbit/Cleaner.py:461 msgid "Delete files for unwanted languages" msgstr "Padam fail bahasa yang tidak dikehendaki" #: ../bleachbit/Cleaner.py:463 msgid "Configure this option in the preferences." msgstr "Konfigur pilihan ini didalam keutamaan." #: ../bleachbit/Cleaner.py:469 msgid "Rotated logs" msgstr "Log terkitar" #: ../bleachbit/Cleaner.py:469 msgid "Delete old system logs" msgstr "Padam log sistem lama" #: ../bleachbit/Cleaner.py:472 msgid "Trash" msgstr "Tong Sampah" #: ../bleachbit/Cleaner.py:472 msgid "Empty the trash" msgstr "Kosongkan tong sampah" #: ../bleachbit/Cleaner.py:478 ../bleachbit/Cleaner.py:629 #: ../bleachbit/Worker.py:189 msgid "Memory" msgstr "Ingatan" #. TRANSLATORS: 'free' means 'unallocated' #: ../bleachbit/Cleaner.py:480 msgid "Wipe the swap and free memory" msgstr "Sapu silih dan kosongkan ingatan" #: ../bleachbit/Cleaner.py:482 msgid "This option is experimental and may cause system problems." msgstr "" "Pilihan ini adalah dalam percubaan dan mungkin akan menyebabkan masalah " "sistem." #: ../bleachbit/Cleaner.py:490 msgid "Memory dump" msgstr "Longgokan ingatan" #: ../bleachbit/Cleaner.py:490 msgid "Delete the file memory.dmp" msgstr "Padam fail memory.dmp" #. TRANSLATORS: Prefetch is Microsoft Windows jargon. #: ../bleachbit/Cleaner.py:493 msgid "Prefetch" msgstr "Prefetch" #: ../bleachbit/Cleaner.py:495 msgid "Recycle bin" msgstr "Tong sampah" #: ../bleachbit/Cleaner.py:495 msgid "Empty the recycle bin" msgstr "Kosongkan tong sampah" #. TRANSLATORS: 'Update' is a noun, and 'Update uninstallers' is an option to delete #. the uninstallers for software updates. #: ../bleachbit/Cleaner.py:498 msgid "Update uninstallers" msgstr "Kemaskini penyahpasang" #: ../bleachbit/Cleaner.py:499 msgid "" "Delete uninstallers for Microsoft updates including hotfixes, service packs, " "and Internet Explorer updates" msgstr "" "Padam penyahpasang untuk kemaskini Microsoft termasuklah hotfixes, pek " "perkhidmatan, dan kemaskini Internet Explorer" #: ../bleachbit/Cleaner.py:506 ../bleachbit/Cleaner.py:722 msgid "Clipboard" msgstr "Papan keratan" #: ../bleachbit/Cleaner.py:507 msgid "" "The desktop environment's clipboard used for copy and paste operations" msgstr "" "Papan keratan persekitaran desktop digunakan untuk operasi salin dan tampal" #. TRANSLATORS: "Custom" is an option allowing the user to specify which #. files and folders will be erased. #: ../bleachbit/Cleaner.py:514 ../bleachbit/GuiPreferences.py:63 msgid "Custom" msgstr "Suai" #: ../bleachbit/Cleaner.py:515 msgid "Delete user-specified files and folders" msgstr "Padam fail dan folder khusus-pengguna" #. TRANSLATORS: 'free' means 'unallocated' #: ../bleachbit/Cleaner.py:517 msgid "Free disk space" msgstr "Ruang cakera bebas" #. TRANSLATORS: 'free' means 'unallocated' #: ../bleachbit/Cleaner.py:519 msgid "Overwrite free disk space to hide deleted files" msgstr "" "Tulis-ganti ruang cakera kosong untuk sembunyi fail yang telah dipadamkan" #: ../bleachbit/Cleaner.py:520 msgid "This option is very slow." msgstr "Pilihan ini sangat pelahan" #: ../bleachbit/Cleaner.py:524 msgid "The system in general" msgstr "Umum sistem" #: ../bleachbit/Cleaner.py:526 ../bleachbit/Cleaner.py:846 msgid "System" msgstr "Sistem" #. TRANSLATORS: 'Free' means 'unallocated.' #. %s expands to a path such as C:\ or /tmp/ #: ../bleachbit/Cleaner.py:730 ../bleachbit/Cleaner.py:879 #, python-format msgid "Overwrite free disk space %s" msgstr "Tulis-ganti ruang cakera bebas %s" #: ../bleachbit/GuiPreferences.py:55 ../bleachbit/GUI.py:706 msgid "Preferences" msgstr "Keutamaan" #: ../bleachbit/GuiPreferences.py:61 msgid "General" msgstr "Am" #: ../bleachbit/GuiPreferences.py:64 msgid "Drives" msgstr "Peranti" #: ../bleachbit/GuiPreferences.py:67 msgid "Languages" msgstr "Bahasa" #: ../bleachbit/GuiPreferences.py:69 msgid "Whitelist" msgstr "Senarai putih" #: ../bleachbit/GuiPreferences.py:114 msgid "Check periodically for software updates via the Internet" msgstr "Periksa secara berkala bagi kemaskini perisian melalui internet" #: ../bleachbit/GuiPreferences.py:119 msgid "" "If an update is found, you will be given the option to view information " "about it. Then, you may manually download and install the update." msgstr "" "Sekiranya kemaskini ditemui, anda akan diberi plihan untuk melihat maklumat " "mengenainya. Kemudian anda boleh muat turun secara manual dan pasang " "kemaskini tersebut." #: ../bleachbit/GuiPreferences.py:125 msgid "Check for new beta releases" msgstr "Semak pelepasan beta yang baru" #: ../bleachbit/GuiPreferences.py:134 msgid "Download and update cleaners from community (winapp2.ini)" msgstr "Muat turun dan kemaskini pembersih dari komuniti (winapp2.ini)" #. TRANSLATORS: This means to hide cleaners which would do #. nothing. For example, if Firefox were never used on #. this system, this option would hide Firefox to simplify #. the list of cleaners. #: ../bleachbit/GuiPreferences.py:148 msgid "Hide irrelevant cleaners" msgstr "Sembunyi pembersih yang tidak berkenaan" #. TRANSLATORS: Overwriting is the same as shredding. It is a way #. to prevent recovery of the data. You could also translate #. 'Shred files to prevent recovery.' #: ../bleachbit/GuiPreferences.py:156 msgid "Overwrite files to hide contents" msgstr "Tulis-ganti fail untuk sembunyi kandungan" #: ../bleachbit/GuiPreferences.py:160 msgid "" "Overwriting is ineffective on some file systems and with certain BleachBit " "operations. Overwriting is significantly slower." msgstr "" "Penulis-gantian tidak efektif bagi sesetengah operasi sistem fail dan " "BleachBit yang tertentu. Penulis-gantian adalah sangat lambat." #: ../bleachbit/GuiPreferences.py:163 msgid "Start BleachBit with computer" msgstr "Mula BleachBit dengan komputer" #: ../bleachbit/GuiPreferences.py:169 msgid "Exit after cleaning" msgstr "Keluar selepas pembersihan" #: ../bleachbit/GuiPreferences.py:175 msgid "Confirm before delete" msgstr "Sahkan sebelum padam" #: ../bleachbit/GuiPreferences.py:183 msgid "Use IEC sizes (1 KiB = 1024 bytes) instead of SI (1 kB = 1000 bytes)" msgstr "Guna saiz IEC (1 KiB = 1024 bait) selain dariSI (1 kB = 1000 bait)" #: ../bleachbit/GuiPreferences.py:194 ../bleachbit/GuiPreferences.py:323 #: ../bleachbit/GuiPreferences.py:364 ../bleachbit/GUI.py:592 msgid "Choose a folder" msgstr "Pilih satu folder" #: ../bleachbit/GuiPreferences.py:218 msgid "" "Choose a writable folder for each drive for which to overwrite free space." msgstr "" "Pilih folder boleh tulis untuk setiap pemacu yang mana ruang bebas akan " "ditulis ganti." #. TRANSLATORS: In the preferences dialog, this button adds a path to #. the list of paths #: ../bleachbit/GuiPreferences.py:240 msgctxt "button" msgid "Add" msgstr "Tambah" #. TRANSLATORS: In the preferences dialog, this button removes a path #. from the list of paths #: ../bleachbit/GuiPreferences.py:244 ../bleachbit/GuiPreferences.py:455 msgctxt "button" msgid "Remove" msgstr "Buangkan" #: ../bleachbit/GuiPreferences.py:269 msgid "All languages will be deleted except those checked." msgstr "Semua bahasa akan dipadam kecuali yang ditandakan." #: ../bleachbit/GuiPreferences.py:285 msgid "Preserve" msgstr "Kekal" #: ../bleachbit/GuiPreferences.py:289 msgid "Code" msgstr "Kod" #: ../bleachbit/GuiPreferences.py:293 ../bleachbit/GUI.py:135 msgid "Name" msgstr "Nama" #: ../bleachbit/GuiPreferences.py:310 ../bleachbit/GuiPreferences.py:351 msgid "Choose a file" msgstr "Pilih fail" #: ../bleachbit/GuiPreferences.py:317 ../bleachbit/GuiPreferences.py:358 #: ../bleachbit/GuiPreferences.py:402 msgid "File" msgstr "Fail" #: ../bleachbit/GuiPreferences.py:331 ../bleachbit/GuiPreferences.py:372 #: ../bleachbit/GuiPreferences.py:404 msgid "Folder" msgstr "Folder" #: ../bleachbit/GuiPreferences.py:414 msgid "Theses paths will not be deleted or modified." msgstr "Laluan ini tidak akan dipadam atau diubahsuai." #: ../bleachbit/GuiPreferences.py:417 msgid "These locations can be selected for deletion." msgstr "Lokasi ini boleh dipilih untuk pemadaman" #: ../bleachbit/GuiPreferences.py:425 msgid "Type" msgstr "Jenis" #. TRANSLATORS: In the tree view "Path" is used generically to refer to a #. file, a folder, or a pattern describing either #: ../bleachbit/GuiPreferences.py:431 msgid "Path" msgstr "Laluan" #: ../bleachbit/GuiPreferences.py:443 msgctxt "button" msgid "Add file" msgstr "Tambah fail" #: ../bleachbit/GuiPreferences.py:449 msgctxt "button" msgid "Add folder" msgstr "Tambah folder" #: ../bleachbit/RecognizeCleanerML.py:57 msgid "Security warning" msgstr "Amaran keselamatan" #: ../bleachbit/RecognizeCleanerML.py:70 msgid "" "These cleaner definitions are new or have changed. Malicious definitions can " "damage your system. If you do not trust these changes, delete the files or " "quit." msgstr "" "Definisi pembersih adalah yang baru atau telah ditukar. Definisi hasad boleh " "menyebabkan kerosakan kepada sistem anda. Sekiranya anda tidak meyakini " "perubahan ini, sila padam fail tersebut atau keluar." #: ../bleachbit/RecognizeCleanerML.py:85 msgctxt "column_label" msgid "Delete" msgstr "Padam" #: ../bleachbit/RecognizeCleanerML.py:90 msgctxt "column_label" msgid "Filename" msgstr "Nama Fail" #. TRANSLATORS: This indicates an error. The special keyword #. %(operation)s will be replaced by 'firefox' or 'opera' or #. some other cleaner ID. The special keyword %(msg)s will be #. replaced by a message such as 'Permission denied.' #: ../bleachbit/Worker.py:74 #, python-format msgid "Exception while running operation '%(operation)s': '%(msg)s'" msgstr "Pengecualian ketika menjalankan operasi '%(operation)s': '%(msg)s'" #. TRANSLATORS: 'free' means 'unallocated' #: ../bleachbit/Worker.py:187 msgid "Please wait. Wiping free disk space." msgstr "Tunggu sebentar. Membersihkan ruang cakera bebas." #. TRANSLATORS: %s is replaced with Firefox, System, etc. #: ../bleachbit/Worker.py:189 ../bleachbit/Worker.py:329 #, python-format msgid "Please wait. Cleaning %s." msgstr "Sila tunggu. Membersih %s." #: ../bleachbit/Worker.py:204 msgid "Please wait. Wiping file system metadata." msgstr "Tunggu sebentar. Mengosongkan data meta sistem fail." #: ../bleachbit/Worker.py:207 msgid "Please wait. Cleaning up after wiping file system metadata." msgstr "" "Tunggu sebentar. Membersihkan selepas data meta sistem fail dikosongkan." #: ../bleachbit/Worker.py:210 #, python-format msgid "About %d minute remaining." msgid_plural "About %d minutes remaining." msgstr[0] "Kira-kira %d minit berbaki." msgstr[1] "Kira-kira %d minit berbaki." #. TRANSLATORS: This refers to disk space that was #. really recovered (in other words, not a preview) #: ../bleachbit/Worker.py:268 #, python-format msgid "Disk space recovered: %s" msgstr "Ruang cakera dipulih: %s" #. TRANSLATORS: This refers to a preview (no real #. changes were made yet) #: ../bleachbit/Worker.py:272 #, python-format msgid "Disk space to be recovered: %s" msgstr "Ruang cakera untuk dipulih: %s" #. TRANSLATORS: This refers to the number of files really #. deleted (in other words, not a preview). #: ../bleachbit/Worker.py:277 #, python-format msgid "Files deleted: %d" msgstr "Fail dipadamkan: %d" #. TRANSLATORS: This refers to the number of files that #. would be deleted (in other words, simply a preview). #: ../bleachbit/Worker.py:281 #, python-format msgid "Files to be deleted: %d" msgstr "Fail akan dipadamkan: %d" #: ../bleachbit/Worker.py:284 #, python-format msgid "Special operations: %d" msgstr "Operasi khas: %d" #: ../bleachbit/Worker.py:287 #, python-format msgid "Errors: %d" msgstr "Ralat: %d" #. TRANSLATORS: The "deep scan" feature searches over broad #. areas of the file system such as the user's whole home directory #. or all the system executables. #: ../bleachbit/Worker.py:303 msgid "Please wait. Running deep scan." msgstr "Tunggu sebentar. Menjalankan pengimbasan mendalam" #. TRANSLATORS: %s is replaced with Firefox, System, etc. #: ../bleachbit/Worker.py:332 #, python-format msgid "Please wait. Previewing %s." msgstr "Sila tunggu. Melakukan pratonton %s." #: ../bleachbit/Update.py:77 msgid "New winapp2.ini was downloaded." msgstr "Winapp2.ini yang baru telah dimuat turun." #: ../bleachbit/Update.py:123 msgid "Update BleachBit" msgstr "Kemaskini BleachBit" #: ../bleachbit/Update.py:128 msgid "A new version is available." msgstr "Versi baru sudah ada." #. TRANSLATORS: %s expands to version such as '0.8.4' or '0.8.5beta' or #. similar #: ../bleachbit/Update.py:137 #, python-format msgid "Update to version %s" msgstr "Kemaskini ke versi %s" #: ../bleachbit/Update.py:163 #, python-format msgid "" "Error when opening a network connection to %s to check for updates. Please " "verify the network is working." msgstr "" "Ralat bila membuka sambungan rangkaian ke %s ketika memeriksa kemaskini. " "Sila sahkan rangkaian sama ada berfungsi atau sebaliknya." #: ../bleachbit/CLI.py:106 #, python-format msgid "not a valid cleaner: %s" msgstr "bukan pembersih yang sah: %s" #. TRANSLATORS: This is the command line usage. Don't translate #. %prog, but do translate usage, options, cleaner, and option. #. More information about the command line is here #. http://www.bleachbit.org/documentation/command-line #: ../bleachbit/CLI.py:133 msgid "usage: %prog [options] cleaner.option1 cleaner.option2" msgstr "pengunaan: %prog [options] cleaner.option1 cleaner.option2" #: ../bleachbit/CLI.py:136 msgid "list cleaners" msgstr "senarai pembersih" #. TRANSLATORS: predefined cleaners are for applications, such as Firefox and Flash. #. This is different than cleaning an arbitrary file, such as a #. spreadsheet on the desktop. #: ../bleachbit/CLI.py:141 msgid "run cleaners to delete files and make other permanent changes" msgstr "" "jalankan pencuci untuk memadam fail dan buat perubahan kekal yang lain" #: ../bleachbit/CLI.py:144 msgid "shred specific files or folders" msgstr "carik fail dan folder tertentu" #: ../bleachbit/CLI.py:146 msgid "show system information" msgstr "papar maklumat sistem" #: ../bleachbit/CLI.py:148 msgid "launch the graphical interface" msgstr "lancarkan antaramuka bergrafik" #: ../bleachbit/CLI.py:150 msgid "do not prompt for administrator privileges" msgstr "jangan maklumkan untuk keistimewaan pentadbir" #: ../bleachbit/CLI.py:155 msgid "preview files to be deleted and other changes" msgstr "Pratonton fail yang akan dipadam dan lain-lain perubahan" #: ../bleachbit/CLI.py:157 msgid "use options set in the graphical interface" msgstr "Guna set pilihan didalam antaramuka bergrafik" #: ../bleachbit/CLI.py:160 msgid "update winapp2.ini, if a new version is available" msgstr "kemaskini winapp2.ini, jika versi baru tersedia" #: ../bleachbit/CLI.py:162 msgid "output version information and exit" msgstr "Output maklumat versi dan keluar" #: ../bleachbit/CLI.py:164 msgid "overwrite files to hide contents" msgstr "Tulis-ganti fail untuk sembunyi kandungan" #. TRANSLATORS: this is the context menu #: ../bleachbit/Action.py:372 ../bleachbit/GUI.py:630 msgid "Clean" msgstr "Bersihkan" #: ../bleachbit/Action.py:392 #, python-format msgid "Run external command: %s" msgstr "Jalankan perintah luar: %s" #: ../bleachbit/GUI.py:143 msgid "Active" msgstr "Aktif" #. TRANSLATORS: Size is the label for the column that shows how #. much space an option would clean or did clean #: ../bleachbit/GUI.py:155 msgid "Size" msgstr "Saiz" #. TRANSLATORS: %(cleaner) may be Firefox, System, etc. #. %(option) may be cache, logs, cookies, etc. #. %(warning) may be 'This option is really slow' #: ../bleachbit/GUI.py:186 #, python-format msgid "" "Warning regarding %(cleaner)s - %(option)s:\n" "\n" "%(warning)s" msgstr "" "Amaran mengenai %(cleaner)s - %(option)s:\n" "\n" "%(warning)s" #: ../bleachbit/GUI.py:372 msgid "You must select an operation" msgstr "Anda mesti pilih satu operasi" #: ../bleachbit/GUI.py:392 ../bleachbit/GUI.py:415 msgid "Done." msgstr "Selesai." #: ../bleachbit/GUI.py:428 msgid "Program to clean unnecessary files" msgstr "Program untuk bersih fail yang tidak dikehendaki" #: ../bleachbit/GUI.py:434 msgid "" "GNU General Public License version 3 or later.\n" "See http://www.gnu.org/licenses/gpl-3.0.txt" msgstr "" "Lesen Awam Am GNU versi 3 atau terkini.\n" "Lihat http://www.gnu.org/licenses/gpl-3.0.txt" #. TRANSLATORS: Maintain the names of translators here. #. Launchpad does this automatically for translations #. typed in Launchpad. This is a special string shown #. in the 'About' box. #: ../bleachbit/GUI.py:440 msgid "translator-credits" msgstr "" "Launchpad Contributions:\n" " Ibrahim Elias https://launchpad.net/~imen802003-netscape\n" " abuyop https://launchpad.net/~abuyop" #: ../bleachbit/GUI.py:452 msgid "System information" msgstr "Maklumat Sistem" #: ../bleachbit/GUI.py:525 msgid "Choose files to shred" msgstr "Pilih fail untuk dicarik" #: ../bleachbit/GUI.py:528 msgid "Choose folder to shred" msgstr "Pilih folder untuk dicarik" #. TRANSLATORS: this is the context menu #: ../bleachbit/GUI.py:625 msgid "Preview" msgstr "Pratonton" #: ../bleachbit/GUI.py:694 msgid "_Shred Files" msgstr "_Carik Fail" #: ../bleachbit/GUI.py:696 msgid "Sh_red Folders" msgstr "_Carik Folder" #: ../bleachbit/GUI.py:698 msgid "_Wipe Free Space" msgstr "_Bersihkan Ruang Bebas" #: ../bleachbit/GUI.py:700 msgid "S_hred Settings and Quit" msgstr "_Carik Tetapan dan Keluar" #: ../bleachbit/GUI.py:702 msgid "_Quit" msgstr "_Keluar" #: ../bleachbit/GUI.py:704 msgid "_File" msgstr "_Fail" #: ../bleachbit/GUI.py:707 msgid "_Edit" msgstr "_Sunting" #: ../bleachbit/GUI.py:708 msgid "Help Contents" msgstr "Kandungan Bantuan" #: ../bleachbit/GUI.py:711 msgid "_Release Notes" msgstr "_Catatan Versi Pelepasan" #: ../bleachbit/GUI.py:714 msgid "_System Information" msgstr "_Maklumat Sistem" #: ../bleachbit/GUI.py:717 msgid "_About" msgstr "_Perihal" #: ../bleachbit/GUI.py:718 msgid "_Help" msgstr "_Bantuan" #: ../bleachbit/GUI.py:743 msgctxt "button" msgid "Preview" msgstr "Pratonton" #: ../bleachbit/GUI.py:748 msgid "Preview files in the selected operations (without deleting any files)" msgstr "" "Pratonton fail dalam operasi yang dipilih (tanpa memadam sebarang fail)" #: ../bleachbit/GUI.py:758 msgctxt "button" msgid "Clean" msgstr "Bersihkan" #: ../bleachbit/GUI.py:762 msgid "Clean files in the selected operations" msgstr "Bersihkan fail didalam operasi pilihan" #: ../bleachbit/GUI.py:851 msgid "Error when checking for updates: " msgstr "Ralat semasa memeriksa untuk kemaskini: " #: ../bleachbit/GUI.py:891 msgid "" "Error loading the SQLite module: the antivirus software may be blocking it." msgstr "" "Ralat memuatkan modul SQLite: perisian antivirus mungkin menghalangnya." #: ../bleachbit/GUI.py:894 msgid "" "You are running BleachBit with administrative privileges for cleaning shared " "parts of the system, and references to the user profile folder will clean " "only the root account." msgstr "" "Anda menjalankan BleachBit dengan kelayakan pentadbir untuk membersih " "bahagian terkongsi sistem, dan rujukan ke folder profil pengguna akan hanya " "membersihkan akaun root." bleachbit-2.0/po/fo.po0000644000175000017500000006527313245436307013000 0ustar hlehle# Faroese translation for bleachbit # Copyright (c) 2010 Rosetta Contributors and Canonical Ltd 2010 # This file is distributed under the same license as the bleachbit package. # FIRST AUTHOR , 2010. # msgid "" msgstr "" "Project-Id-Version: bleachbit\n" "Report-Msgid-Bugs-To: FULL NAME \n" "POT-Creation-Date: 2010-03-28 14:43-0600\n" "PO-Revision-Date: 2010-05-12 22:09+0000\n" "Last-Translator: Gunleif Joensen \n" "Language-Team: Faroese \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-Launchpad-Export-Date: 2010-05-13 02:56+0000\n" "X-Generator: Launchpad (build Unknown)\n" #: ../cleaners/tremulous.xml ../cleaners/gl-117.xml ../cleaners/nexuiz.xml #: ../cleaners/hippo_opensim_viewer.xml ../cleaners/secondlife_viewer.xml msgid "Game" msgstr "Spæl" #: ../cleaners/tremulous.xml ../cleaners/chromium.xml ../cleaners/miro.xml #: ../cleaners/audacious.xml ../cleaners/xine.xml ../cleaners/kde.xml #: ../cleaners/pidgin.xml ../cleaners/seamonkey.xml ../cleaners/liferea.xml #: ../cleaners/beagle.xml ../cleaners/opera.xml ../cleaners/rhythmbox.xml #: ../cleaners/epiphany.xml ../cleaners/transmission.xml #: ../cleaners/nexuiz.xml ../cleaners/hippo_opensim_viewer.xml #: ../cleaners/vuze.xml ../cleaners/evolution.xml ../cleaners/exaile.xml #: ../cleaners/google_chrome.xml ../cleaners/emesene.xml ../cleaners/amsn.xml #: ../cleaners/yahoo_messenger.xml ../cleaners/thumbnails.xml #: ../cleaners/safari.xml ../cleaners/java.xml ../cleaners/flash.xml #: ../cleaners/thunderbird.xml ../cleaners/adobe_reader.xml #: ../cleaners/gftp.xml ../cleaners/gpodder.xml #: ../cleaners/secondlife_viewer.xml ../bleachbit/Cleaner.py:188 #: ../bleachbit/Cleaner.py:295 ../bleachbit/Cleaner.py:355 #: ../bleachbit/Cleaner.py:398 msgid "Cache" msgstr "Kovi" #: ../cleaners/tremulous.xml msgid "Delete the list of game servers" msgstr "Strika listan við spæliambætarum" #: ../cleaners/yum.xml ../cleaners/miro.xml ../cleaners/audacious.xml #: ../cleaners/xine.xml ../cleaners/kde.xml ../cleaners/pidgin.xml #: ../cleaners/liferea.xml ../cleaners/beagle.xml ../cleaners/rhythmbox.xml #: ../cleaners/transmission.xml ../cleaners/nexuiz.xml ../cleaners/apt.xml #: ../cleaners/hippo_opensim_viewer.xml ../cleaners/vuze.xml #: ../cleaners/evolution.xml ../cleaners/exaile.xml ../cleaners/amsn.xml #: ../cleaners/yahoo_messenger.xml ../cleaners/thumbnails.xml #: ../cleaners/java.xml ../cleaners/windows_explorer.xml ../cleaners/flash.xml #: ../cleaners/adobe_reader.xml ../cleaners/gftp.xml ../cleaners/gpodder.xml #: ../cleaners/secondlife_viewer.xml ../bleachbit/Cleaner.py:295 #: ../bleachbit/Cleaner.py:355 ../bleachbit/Cleaner.py:398 #: ../bleachbit/Cleaner.py:416 ../bleachbit/Cleaner.py:418 msgid "Delete the cache" msgstr "Strika kovan" #. TRANSLATORS: Vacuum is a verb. The term is jargon #. from the SQLite database. Microsoft Access uses #. the term 'Compact Database' (which you may translate #. instead). Another synonym is 'defragment.' #: ../cleaners/yum.xml ../cleaners/chromium.xml ../cleaners/liferea.xml #: ../cleaners/google_chrome.xml ../cleaners/thunderbird.xml #: ../cleaners/gpodder.xml ../bleachbit/Action.py:225 #: ../bleachbit/Cleaner.py:197 ../bleachbit/Cleaner.py:285 msgid "Vacuum" msgstr "" #: ../cleaners/yum.xml ../cleaners/chromium.xml ../cleaners/liferea.xml #: ../cleaners/google_chrome.xml ../cleaners/thunderbird.xml #: ../cleaners/gpodder.xml ../bleachbit/Cleaner.py:197 msgid "" "Clean database fragmentation to reduce space and improve speed without " "removing any data" msgstr "" #: ../cleaners/chromium.xml ../cleaners/internet_explorer.xml #: ../cleaners/seamonkey.xml ../cleaners/opera.xml ../cleaners/epiphany.xml #: ../cleaners/google_chrome.xml ../cleaners/safari.xml ../cleaners/links2.xml #: ../cleaners/elinks.xml ../cleaners/konqueror.xml #: ../bleachbit/Cleaner.py:210 msgid "Web browser" msgstr "Vevkagi" #: ../cleaners/chromium.xml ../cleaners/seamonkey.xml ../cleaners/opera.xml #: ../cleaners/epiphany.xml ../cleaners/google_chrome.xml #: ../cleaners/safari.xml ../cleaners/thunderbird.xml #: ../bleachbit/Cleaner.py:188 msgid "Delete the web cache, which reduces time to display revisited pages" msgstr "" #: ../cleaners/chromium.xml ../cleaners/internet_explorer.xml #: ../cleaners/seamonkey.xml ../cleaners/liferea.xml ../cleaners/opera.xml #: ../cleaners/epiphany.xml ../cleaners/google_chrome.xml #: ../cleaners/safari.xml ../cleaners/flash.xml ../cleaners/thunderbird.xml #: ../cleaners/konqueror.xml ../cleaners/realplayer.xml #: ../bleachbit/Cleaner.py:189 msgid "Cookies" msgstr "" #: ../cleaners/chromium.xml ../cleaners/internet_explorer.xml #: ../cleaners/seamonkey.xml ../cleaners/liferea.xml ../cleaners/opera.xml #: ../cleaners/epiphany.xml ../cleaners/google_chrome.xml #: ../cleaners/safari.xml ../cleaners/flash.xml ../cleaners/thunderbird.xml #: ../cleaners/konqueror.xml ../cleaners/realplayer.xml #: ../bleachbit/Cleaner.py:189 msgid "" "Delete cookies, which contain information such as web site preferences, " "authentication, and tracking identification" msgstr "" #: ../cleaners/chromium.xml ../cleaners/d4x.xml ../cleaners/vim.xml #: ../cleaners/internet_explorer.xml ../cleaners/mc.xml #: ../cleaners/seamonkey.xml ../cleaners/windows_defender.xml #: ../cleaners/google_chrome.xml ../cleaners/nautilus.xml #: ../cleaners/safari.xml ../cleaners/bash.xml ../cleaners/links2.xml #: ../cleaners/elinks.xml ../cleaners/realplayer.xml msgid "History" msgstr "Søga" #: ../cleaners/chromium.xml ../cleaners/google_chrome.xml msgid "" "Delete the history which includes visited sites, downloads, and thumbnails" msgstr "Strika søguna við vitjaðum síðum, niðurtøkum og ímyndum" #: ../cleaners/chromium.xml ../cleaners/opera.xml ../cleaners/konqueror.xml msgid "Current session" msgstr "Núverandi seta" #: ../cleaners/chromium.xml ../cleaners/opera.xml ../cleaners/konqueror.xml msgid "Delete the current session" msgstr "Strika núverandi setu" #: ../cleaners/d4x.xml ../cleaners/mc.xml ../cleaners/nautilus.xml #: ../cleaners/gnome.xml ../cleaners/links2.xml ../cleaners/realplayer.xml #: ../bleachbit/Cleaner.py:275 ../bleachbit/Cleaner.py:346 msgid "Delete the usage history" msgstr "Strika nýtslusøguna" #: ../cleaners/vim.xml ../cleaners/gedit.xml msgid "Editor" msgstr "Ritil" #: ../cleaners/vim.xml msgid "" "Delete ~/.viminfo which includes file history, command history, and buffers" msgstr "" #: ../cleaners/miro.xml ../cleaners/xine.xml ../cleaners/flash.xml msgid "Multimedia viewer" msgstr "Miðlasýnari" #: ../cleaners/miro.xml ../cleaners/audacious.xml ../cleaners/screenlets.xml #: ../cleaners/hippo_opensim_viewer.xml ../cleaners/vuze.xml #: ../cleaners/exaile.xml ../cleaners/easytag.xml #: ../cleaners/yahoo_messenger.xml ../cleaners/teamviewer.xml #: ../cleaners/gftp.xml ../cleaners/amule.xml ../cleaners/realplayer.xml #: ../bleachbit/Cleaner.py:415 msgid "Logs" msgstr "Gerðalistar" #: ../cleaners/miro.xml ../cleaners/audacious.xml ../cleaners/screenlets.xml #: ../cleaners/hippo_opensim_viewer.xml ../cleaners/vuze.xml #: ../cleaners/exaile.xml ../cleaners/yahoo_messenger.xml #: ../cleaners/teamviewer.xml ../cleaners/gftp.xml ../cleaners/amule.xml #: ../cleaners/realplayer.xml ../bleachbit/Cleaner.py:415 msgid "Delete the logs" msgstr "Strika gerðalistarnar" #: ../cleaners/gl-117.xml ../cleaners/beagle.xml ../cleaners/x11.xml #: ../cleaners/microsoft_office.xml ../cleaners/secondlife_viewer.xml msgid "Debug logs" msgstr "Kemba gerðalistar" #: ../cleaners/gl-117.xml ../cleaners/beagle.xml ../cleaners/x11.xml #: ../cleaners/microsoft_office.xml ../cleaners/easytag.xml #: ../cleaners/secondlife_viewer.xml msgid "Delete the debug logs" msgstr "Strika kembingagerðalistarnar" #: ../cleaners/internet_explorer.xml ../cleaners/kde.xml ../cleaners/vuze.xml #: ../cleaners/deepscan.xml ../cleaners/gimp.xml ../cleaners/google_earth.xml #: ../cleaners/adobe_reader.xml ../cleaners/amule.xml #: ../cleaners/winetricks.xml ../cleaners/wine.xml ../bleachbit/Cleaner.py:424 msgid "Temporary files" msgstr "Fyribils fílur" #: ../cleaners/internet_explorer.xml ../cleaners/kde.xml ../cleaners/vuze.xml #: ../cleaners/deepscan.xml ../cleaners/gimp.xml ../cleaners/google_earth.xml #: ../cleaners/adobe_reader.xml ../cleaners/amule.xml #: ../cleaners/winetricks.xml ../cleaners/wine.xml ../bleachbit/Cleaner.py:424 msgid "Delete the temporary files" msgstr "Strika fyribilsfílur" #: ../cleaners/internet_explorer.xml ../cleaners/opera.xml #: ../cleaners/safari.xml ../cleaners/konqueror.xml #: ../bleachbit/Cleaner.py:196 msgid "List of visited web pages" msgstr "List við vitjaðum síðum" #: ../cleaners/audacious.xml ../cleaners/filezilla.xml ../cleaners/winrar.xml #: ../cleaners/wordpad.xml ../cleaners/winamp.xml #: ../cleaners/windows_media_player.xml ../cleaners/microsoft_office.xml #: ../cleaners/windows_explorer.xml ../cleaners/teamviewer.xml #: ../cleaners/adobe_reader.xml ../cleaners/paint.xml #: ../bleachbit/Cleaner.py:296 msgid "Most recently used" msgstr "Mest nýligani nýtt" #: ../cleaners/audacious.xml ../cleaners/kde.xml ../cleaners/filezilla.xml #: ../cleaners/gwenview.xml ../cleaners/gedit.xml #: ../cleaners/windows_explorer.xml ../cleaners/adobe_reader.xml #: ../bleachbit/Cleaner.py:296 ../bleachbit/Cleaner.py:407 msgid "Delete the list of recently used documents" msgstr "Strika listan við nýligani nýttum skjølum" #: ../cleaners/kde.xml ../cleaners/gwenview.xml ../cleaners/gedit.xml #: ../cleaners/windows_explorer.xml ../bleachbit/Cleaner.py:407 msgid "Recent documents list" msgstr "" #: ../cleaners/pidgin.xml ../cleaners/xchat.xml ../cleaners/emesene.xml #: ../cleaners/amsn.xml ../cleaners/yahoo_messenger.xml msgid "Chat client" msgstr "Kjatt viðskiftari" #: ../cleaners/pidgin.xml ../cleaners/seamonkey.xml ../cleaners/xchat.xml #: ../cleaners/emesene.xml ../cleaners/amsn.xml #: ../cleaners/yahoo_messenger.xml ../cleaners/skype.xml msgid "Chat logs" msgstr "Kjatt gerðalistar" #: ../cleaners/pidgin.xml ../cleaners/seamonkey.xml ../cleaners/xchat.xml #: ../cleaners/emesene.xml ../cleaners/amsn.xml #: ../cleaners/yahoo_messenger.xml ../cleaners/skype.xml msgid "Delete the chat logs" msgstr "Strika kjatt gerðalistarnar" #: ../cleaners/seamonkey.xml msgid "Delete the list of visited web pages" msgstr "Strika listan við vitjaðum síðum" #: ../cleaners/screenlets.xml msgid "Widgets for the desktop" msgstr "" #: ../cleaners/beagle.xml ../cleaners/recoll.xml msgid "Search tool" msgstr "Leiti amboð" #: ../cleaners/beagle.xml msgid "Search indexes" msgstr "Leitivísitalva" #: ../cleaners/beagle.xml msgid "Delete the search indexes" msgstr "Strika leitivísitalvurnar" #: ../cleaners/filezilla.xml ../cleaners/transmission.xml ../cleaners/vuze.xml #: ../cleaners/gftp.xml ../cleaners/amule.xml msgid "File transfer client" msgstr "" #: ../cleaners/windows_defender.xml ../cleaners/deepscan.xml msgid "Delete the files" msgstr "Strika hesar fílur" #: ../cleaners/opera.xml ../bleachbit/Cleaner.py:190 msgid "Download history" msgstr "Niðurtøkusøga" #: ../cleaners/opera.xml ../bleachbit/Cleaner.py:190 msgid "List of files downloaded" msgstr "Listi yvir niðurtiknum fílum" #: ../cleaners/opera.xml ../cleaners/konqueror.xml ../bleachbit/Cleaner.py:196 msgid "URL history" msgstr "URL søga" #: ../cleaners/winrar.xml ../cleaners/wordpad.xml ../cleaners/winamp.xml #: ../cleaners/windows_media_player.xml ../cleaners/microsoft_office.xml #: ../cleaners/windows_explorer.xml ../cleaners/teamviewer.xml #: ../cleaners/paint.xml msgid "Delete the most recently used list" msgstr "" #: ../cleaners/epiphany.xml ../cleaners/thunderbird.xml #: ../bleachbit/Cleaner.py:193 msgid "Passwords" msgstr "Atlát" #: ../cleaners/epiphany.xml ../cleaners/thunderbird.xml #: ../bleachbit/Cleaner.py:193 msgid "" "A database of usernames and passwords as well as a list of sites that should " "not store passwords" msgstr "" #: ../cleaners/epiphany.xml ../bleachbit/Cleaner.py:194 msgid "Places" msgstr "Støð" #: ../cleaners/epiphany.xml ../bleachbit/Cleaner.py:194 msgid "" "A database of URLs including bookmarks, favicons, and a history of visited " "web sites" msgstr "" #: ../cleaners/epiphany.xml ../bleachbit/Cleaner.py:195 msgid "This option deletes all bookmarks." msgstr "Hesin kosturin strikar øll bókamerki." #: ../cleaners/microsoft_office.xml ../bleachbit/Cleaner.py:306 msgid "Office suite" msgstr "" #: ../cleaners/apt.xml msgid "Delete obsolete files" msgstr "" #: ../cleaners/google_toolbar.xml ../cleaners/gnome.xml #: ../cleaners/windows_explorer.xml msgid "Search history" msgstr "Leitisøga" #: ../cleaners/google_toolbar.xml ../cleaners/gnome.xml #: ../cleaners/windows_explorer.xml msgid "Delete the search history" msgstr "Strika leitisøgu" #: ../cleaners/vuze.xml ../cleaners/deepscan.xml msgid "Backup files" msgstr "Trygdarritaðar fílur" #: ../cleaners/vuze.xml ../cleaners/deepscan.xml msgid "Delete the backup files" msgstr "Strika trygdarritaðu fílurnar" #: ../cleaners/exaile.xml msgid "Downloaded podcasts" msgstr "" #: ../cleaners/exaile.xml msgid "Delete downloaded podcasts" msgstr "" #: ../cleaners/google_chrome.xml msgid "Session" msgstr "Seta" #: ../cleaners/google_chrome.xml msgid "Delete the current and last sessions" msgstr "Strika hesa, og fyrru setunar" #: ../cleaners/emesene.xml msgid "Delete the avatars and emoticons cache" msgstr "" #: ../cleaners/deepscan.xml msgid "Deep scan" msgstr "" #: ../cleaners/deepscan.xml msgid "Inspect the preview for any files you want to keep." msgstr "" #: ../cleaners/deepscan.xml ../bleachbit/Cleaner.py:423 msgid "This option is slow." msgstr "Hesin kosturin er seinur" #: ../cleaners/nautilus.xml msgid "Custom folders will be reset." msgstr "" #: ../cleaners/thumbnails.xml ../cleaners/windows_explorer.xml msgid "Thumbnails" msgstr "Smámyndir" #: ../cleaners/bash.xml msgid "Delete the command history" msgstr "" #. In GNOME 'Run' is the dialog shown when typing ALT+F2' #. In Windows 'Run' is the dialog in the Start menu #: ../cleaners/gnome.xml ../cleaners/windows_explorer.xml msgid "Run" msgstr "Koyr" #: ../cleaners/elinks.xml msgid "Delete the cookies, visited URLs, and search history" msgstr "" #: ../cleaners/recoll.xml msgid "Index" msgstr "Gerðalisti" #: ../cleaners/recoll.xml msgid "" "Delete the search index, a database of words and the files they contain" msgstr "" #: ../bleachbit.desktop msgid "Unnecessary file cleaner" msgstr "" #: ../bleachbit.desktop msgid "Free space and maintain privacy" msgstr "" #: ../bleachbit/Cleaner.py:191 msgid "Form history" msgstr "" #: ../bleachbit/Cleaner.py:191 msgid "A history of forms entered in web sites and in the Search bar" msgstr "" #: ../bleachbit/Cleaner.py:192 msgid "Session restore" msgstr "Endurstovna setu" #: ../bleachbit/Cleaner.py:192 msgid "Loads the initial session after the browser closes or crashes" msgstr "" #: ../bleachbit/Cleaner.py:358 msgid "Delete the files in the rpmbuild build directory" msgstr "" #. TRANSLATORS: desktop entries are .desktop files in Linux tha #. make up the application menu (the menu that shows BleachBit, #. Firefox, and others. The .desktop files also associate file #. types, so clicking on an .html file in Nautilus brings up #. Firefox. #. More information: http://standards.freedesktop.org/menu-spec/latest/index.html#introduction #: ../bleachbit/Cleaner.py:397 msgid "Broken desktop files" msgstr "" #: ../bleachbit/Cleaner.py:397 msgid "Delete broken application menu entries and file associations" msgstr "" #. TRANSLATORS: Localizations are files supporting specific #. languages, so applications appear in Spanish, etc. #: ../bleachbit/Cleaner.py:401 msgid "Localizations" msgstr "" #: ../bleachbit/Cleaner.py:401 msgid "Delete files for unwanted languages" msgstr "" #. TRANSLATORS: 'Rotated logs' refers to old system log files. #. Linux systems often have a scheduled job to rotate the logs #. which means compress all except the newest log and then delete #. the oldest log. You could translate this 'old logs.' #: ../bleachbit/Cleaner.py:406 msgid "Rotated logs" msgstr "" #: ../bleachbit/Cleaner.py:406 msgid "Delete old system logs" msgstr "" #: ../bleachbit/Cleaner.py:408 msgid "Trash" msgstr "Ruskspann" #: ../bleachbit/Cleaner.py:408 msgid "Empty the trash" msgstr "Tøm ruskapannina" #. TRANSLATORS: 'Free' is an adjective and could be translated #. 'unallocated.' #: ../bleachbit/Cleaner.py:412 ../bleachbit/Cleaner.py:506 msgid "Memory" msgstr "Minni" #: ../bleachbit/Cleaner.py:412 msgid "Wipe the swap and free memory" msgstr "" #: ../bleachbit/Cleaner.py:413 msgid "This option is experimental and may cause system problems." msgstr "" #. TRANSLATORS: Prefetch is Microsoft Windows jargon. #: ../bleachbit/Cleaner.py:418 msgid "Prefetch" msgstr "Forheinta" #: ../bleachbit/Cleaner.py:419 msgid "Recycle bin" msgstr "Ruskspann" #: ../bleachbit/Cleaner.py:419 msgid "Empty the recycle bin" msgstr "Tøm ruskspannina" #: ../bleachbit/Cleaner.py:421 ../bleachbit/Cleaner.py:578 msgid "Clipboard" msgstr "Setiborð" #: ../bleachbit/Cleaner.py:421 msgid "" "The desktop environment's clipboard used for copy and paste operations" msgstr "" #: ../bleachbit/Cleaner.py:422 msgid "Free disk space" msgstr "" #: ../bleachbit/Cleaner.py:422 msgid "Overwrite free disk space to hide deleted files" msgstr "" #: ../bleachbit/Cleaner.py:427 msgid "The system in general" msgstr "" #: ../bleachbit/Cleaner.py:433 msgid "System" msgstr "Kervi" #. TRANSLATORS: 'Free' could also be translated 'unallocated.' #. %s expands to a path such as C:\ or /tmp/ #: ../bleachbit/Cleaner.py:600 #, python-format msgid "Overwrite free disk space %s" msgstr "" #. TRANSLATORS: %s expands to a drive letter such as C:\ or D:\ #: ../bleachbit/Cleaner.py:628 #, python-format msgid "Recycle bin %s" msgstr "Ruskspann %s" #: ../bleachbit/CLI.py:116 #, python-format msgid "not a valid cleaner: %s" msgstr "" #. TRANSLATORS: This is the command line usage. Don't translate #. %prog, but do translate usage, options, cleaner, and option. #. More information about the command line is here #. http://bleachbit.sourceforge.net/documentation/command-line #: ../bleachbit/CLI.py:144 msgid "usage: %prog [options] cleaner.option1 cleaner.option2" msgstr "" #: ../bleachbit/CLI.py:147 msgid "list cleaners" msgstr "" #: ../bleachbit/CLI.py:149 msgid "delete files and make other permanent changes" msgstr "" #: ../bleachbit/CLI.py:151 msgid "show system information" msgstr "" #: ../bleachbit/CLI.py:153 msgid "preview files to be deleted and other changes" msgstr "" #: ../bleachbit/CLI.py:155 msgid "output version information and exit" msgstr "" #: ../bleachbit/CLI.py:157 msgid "overwrite files to hide contents" msgstr "" #. TRANSLATORS: This is the label in the log indicating will be #. deleted (for previews) or was actually deleted #: ../bleachbit/Command.py:57 msgid "Delete" msgstr "" #. TRANSLATORS: The file will be deleted when the #. system reboots #: ../bleachbit/Command.py:77 msgid "Mark for deletion" msgstr "" #. TRANSLATORS: The file will be truncated to 0 bytes in length #: ../bleachbit/Command.py:152 msgid "Truncate" msgstr "" #: ../bleachbit/Command.py:191 msgid "Delete registry key" msgstr "" #: ../bleachbit/FileUtilities.py:199 msgid "Cannot import Python module sqlite3: Python 2.5 or later is required." msgstr "" #: ../bleachbit/GuiBasic.py:86 msgid "Delete confirmation" msgstr "" #: ../bleachbit/GuiBasic.py:94 msgid "" "Are you sure you want to permanently delete files according to the selected " "operations? The actual files that will be deleted may have changed since " "you ran the preview." msgstr "" #: ../bleachbit/GuiBasic.py:96 msgid "Are you sure you want to permanently delete these files?" msgstr "" #: ../bleachbit/GuiPreferences.py:54 ../bleachbit/GUI.py:562 msgid "Preferences" msgstr "" #: ../bleachbit/GuiPreferences.py:60 msgid "General" msgstr "" #: ../bleachbit/GuiPreferences.py:61 msgid "Drives" msgstr "" #: ../bleachbit/GuiPreferences.py:63 msgid "Languages" msgstr "" #: ../bleachbit/GuiPreferences.py:105 msgid "Check periodically for software updates via the Internet" msgstr "" #: ../bleachbit/GuiPreferences.py:108 msgid "" "If an update is found, you will be given the option to view information " "about it. Then, you may manually download and install the update." msgstr "" #. TRANSLATORS: This means to hide cleaners which would do #. nothing. For example, if Firefox were never used on #. this system, this option would hide Firefox to simplify #. the list of cleaners. #: ../bleachbit/GuiPreferences.py:115 msgid "Hide irrelevant cleaners" msgstr "" #. TRANSLATORS: Overwriting is the same as shredding. It is a way #. to prevent recovery of the data. You could also translate #. 'Shred files to prevent recovery.' #: ../bleachbit/GuiPreferences.py:123 msgid "Overwrite files to hide contents" msgstr "" #: ../bleachbit/GuiPreferences.py:126 msgid "" "Overwriting is ineffective on some file systems and with certain BleachBit " "operations. Overwriting is significantly slower." msgstr "" #: ../bleachbit/GuiPreferences.py:129 msgid "Start BleachBit with computer" msgstr "" #: ../bleachbit/GuiPreferences.py:140 msgid "Choose a folder" msgstr "" #: ../bleachbit/GuiPreferences.py:163 msgid "" "Choose a writable directory for each drive for which to overwrite free space." msgstr "" #. TRANSLATORS: In the preferences dialog, this button adds a path to the list of paths #: ../bleachbit/GuiPreferences.py:184 msgctxt "button" msgid "Add" msgstr "" #. TRANSLATORS: In the preferences dialog, this button removes a path from the list of paths #: ../bleachbit/GuiPreferences.py:187 msgctxt "button" msgid "Remove" msgstr "" #: ../bleachbit/GuiPreferences.py:212 msgid "All languages will be deleted except those checked." msgstr "" #: ../bleachbit/GuiPreferences.py:230 msgid "Preserve" msgstr "" #: ../bleachbit/GuiPreferences.py:234 msgid "Code" msgstr "" #: ../bleachbit/GuiPreferences.py:238 ../bleachbit/GUI.py:147 msgid "Name" msgstr "" #: ../bleachbit/GUI.py:155 msgid "Active" msgstr "" #: ../bleachbit/GUI.py:348 msgid "You must select an operation" msgstr "" #: ../bleachbit/GUI.py:371 ../bleachbit/GUI.py:386 msgid "Done." msgstr "" #: ../bleachbit/GUI.py:397 msgid "Program to clean unnecessary files" msgstr "" #: ../bleachbit/GUI.py:402 msgid "" "GNU General Public License version 3 or later.\n" "See http://www.gnu.org/licenses/gpl-3.0.txt" msgstr "" #. TRANSLATORS: Maintain the names of translators here. #. Launchpad does this automatically for translations #. typed in Launchpad. This is a special string shown #. in the 'About' box. #: ../bleachbit/GUI.py:408 msgid "translator-credits" msgstr "" "Launchpad Contributions:\n" " Gunleif Joensen https://launchpad.net/~gunleif" #: ../bleachbit/GUI.py:421 msgid "System information" msgstr "" #: ../bleachbit/GUI.py:475 msgid "Choose files to shred" msgstr "" #: ../bleachbit/GUI.py:558 msgid "_Shred Files" msgstr "" #: ../bleachbit/GUI.py:559 msgid "S_hred Settings and Quit" msgstr "" #: ../bleachbit/GUI.py:560 msgid "_Quit" msgstr "" #: ../bleachbit/GUI.py:561 msgid "_File" msgstr "" #: ../bleachbit/GUI.py:563 msgid "_Edit" msgstr "" #: ../bleachbit/GUI.py:564 msgid "Help Contents" msgstr "" #: ../bleachbit/GUI.py:565 msgid "_Release Notes" msgstr "" #: ../bleachbit/GUI.py:566 msgid "_System Information" msgstr "" #: ../bleachbit/GUI.py:567 msgid "_About" msgstr "" #: ../bleachbit/GUI.py:568 msgid "_Help" msgstr "" #. TRANSLATORS: This is the preview button on the main window. It previews changes. #: ../bleachbit/GUI.py:592 msgctxt "button" msgid "Preview" msgstr "" #: ../bleachbit/GUI.py:595 msgid "Preview files in the selected operations (without deleting any files)" msgstr "" #. TRANSLATORS: This is the delete button on the main window. #. It makes permanent changes: usually deleting files, sometimes altering them. #: ../bleachbit/GUI.py:603 msgctxt "button" msgid "Delete" msgstr "" #: ../bleachbit/GUI.py:606 msgid "Delete files in the selected operations" msgstr "" #: ../bleachbit/GUI.py:687 msgctxt "button" msgid "Update BleachBit" msgstr "" #: ../bleachbit/GUI.py:692 msgid "BleachBit update is available" msgstr "" #: ../bleachbit/GUI.py:700 msgid "Click 'Update BleachBit' for more information" msgstr "" #: ../bleachbit/GUI.py:716 msgid "Error when checking for updates: " msgstr "" #: ../bleachbit/RecognizeCleanerML.py:83 msgid "Security warning" msgstr "" #. TRANSLATORS: Cleaner definitions are XML data files that define #. which files will be cleaned. #: ../bleachbit/RecognizeCleanerML.py:95 msgid "" "These cleaner definitions are new or have changed. Malicious definitions can " "damage your system. If you do not trust these changes, delete the files or " "quit." msgstr "" #. TRANSLATORS: This is the column label (header) in the tree view for the security dialog #: ../bleachbit/RecognizeCleanerML.py:108 msgctxt "column_label" msgid "Delete" msgstr "" #. TRANSLATORS: This is the column label (header) in the tree view for the security dialog #: ../bleachbit/RecognizeCleanerML.py:111 msgctxt "column_label" msgid "Filename" msgstr "" #: ../bleachbit/Unix.py:362 ../bleachbit/Unix.py:392 ../bleachbit/Unix.py:572 #, python-format msgid "Executable not found: %s" msgstr "" #. TRANSLATORS: %s expands to a name such as 'Firefox' or 'System'. #: ../bleachbit/Unix.py:569 ../bleachbit/Worker.py:129 #, python-format msgid "" "%s cannot be cleaned because it is currently running. Close it, and try " "again." msgstr "" #. TRANSLATORS: This indicates an error. The special keyword #. %(operation)s will be replaced by 'firefox' or 'opera' or #. some other cleaner ID. The special keyword %(msg)s will be #. replaced by a message such as 'Permission denied.' #: ../bleachbit/Worker.py:76 #, python-format msgid "Exception while running operation '%(operation)s': '%(msg)s'" msgstr "" #. TRANSLATORS: %s is replaced with Firefox, System, etc. #: ../bleachbit/Worker.py:175 #, python-format msgid "Please wait. Cleaning %s." msgstr "" #. TRANSLATORS: %s is replaced with Firefox, System, etc. #: ../bleachbit/Worker.py:178 #, python-format msgid "Please wait. Previewing %s." msgstr "" #. TRANSLATORS: This refers to disk space that was #. really recovered (in other words, not a preview) #: ../bleachbit/Worker.py:218 #, python-format msgid "Disk space recovered: %s" msgstr "" #. TRANSLATORS: This refers to a preview (no real #. changes were made yet) #: ../bleachbit/Worker.py:222 #, python-format msgid "Disk space to be recovered: %s" msgstr "" #. TRANSLATORS: This refers to the number of files really #. deleted (in other words, not a preview). #: ../bleachbit/Worker.py:227 #, python-format msgid "Files deleted: %d" msgstr "" #. TRANSLATORS: This refers to the number of files that #. would be deleted (in other words, simply a preview). #: ../bleachbit/Worker.py:231 #, python-format msgid "Files to be deleted: %d" msgstr "" #: ../bleachbit/Worker.py:234 #, python-format msgid "Special operations: %d" msgstr "" #: ../bleachbit/Worker.py:237 #, python-format msgid "Errors: %d" msgstr "" bleachbit-2.0/po/gl.po0000644000175000017500000013606613245436307012775 0ustar hlehle# Galician translation for bleachbit # Copyright (c) 2009 Rosetta Contributors and Canonical Ltd 2009 # This file is distributed under the same license as the bleachbit package. # FIRST AUTHOR , 2009. # msgid "" msgstr "" "Project-Id-Version: bleachbit\n" "Report-Msgid-Bugs-To: FULL NAME \n" "POT-Creation-Date: 2017-02-11 11:12-0700\n" "PO-Revision-Date: 2017-05-20 03:58+0000\n" "Last-Translator: Marcos Lans \n" "Language-Team: Galician \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n != 1;\n" "X-Launchpad-Export-Date: 2017-05-21 20:04+0000\n" "X-Generator: Launchpad (build 18386)\n" #: ../cleaners/mc.xml ../cleaners/tortoisesvn.xml ../cleaners/vim.xml #: ../cleaners/safari.xml ../cleaners/links2.xml ../cleaners/seamonkey.xml #: ../cleaners/realplayer.xml ../cleaners/windows_defender.xml #: ../cleaners/d4x.xml ../cleaners/sqlite3.xml #: ../cleaners/internet_explorer.xml ../cleaners/libreoffice.xml #: ../cleaners/easytag.xml ../cleaners/bash.xml ../cleaners/nautilus.xml #: ../cleaners/octave.xml ../cleaners/elinks.xml ../cleaners/chromium.xml #: ../cleaners/google_chrome.xml msgid "History" msgstr "Historial" #: ../cleaners/mc.xml ../cleaners/tortoisesvn.xml ../cleaners/links2.xml #: ../cleaners/realplayer.xml ../cleaners/d4x.xml ../cleaners/libreoffice.xml #: ../cleaners/easytag.xml ../cleaners/nautilus.xml ../cleaners/gnome.xml #: ../bleachbit/Cleaner.py:349 ../bleachbit/Cleaner.py:423 #: ../bleachbit/Cleaner.py:432 msgid "Delete the usage history" msgstr "Eliminar o historial de uso" #: ../cleaners/gpodder.xml ../cleaners/hippo_opensim_viewer.xml #: ../cleaners/thumbnails.xml ../cleaners/safari.xml ../cleaners/emesene.xml #: ../cleaners/liferea.xml ../cleaners/seamonkey.xml ../cleaners/vuze.xml #: ../cleaners/yahoo_messenger.xml ../cleaners/pidgin.xml #: ../cleaners/adobe_reader.xml ../cleaners/evolution.xml #: ../cleaners/tremulous.xml ../cleaners/libreoffice.xml ../cleaners/xine.xml #: ../cleaners/nexuiz.xml ../cleaners/exaile.xml ../cleaners/opera.xml #: ../cleaners/amsn.xml ../cleaners/gftp.xml ../cleaners/miro.xml #: ../cleaners/beagle.xml ../cleaners/kde.xml ../cleaners/epiphany.xml #: ../cleaners/flash.xml ../cleaners/secondlife_viewer.xml ../cleaners/java.xml #: ../cleaners/chromium.xml ../cleaners/audacious.xml ../cleaners/rhythmbox.xml #: ../cleaners/google_chrome.xml ../cleaners/thunderbird.xml #: ../bleachbit/Cleaner.py:192 ../bleachbit/Cleaner.py:370 #: ../bleachbit/Cleaner.py:455 msgid "Cache" msgstr "Caché" #: ../cleaners/gpodder.xml ../cleaners/yum.xml #: ../cleaners/hippo_opensim_viewer.xml ../cleaners/thumbnails.xml #: ../cleaners/windows_explorer.xml ../cleaners/liferea.xml #: ../cleaners/vuze.xml ../cleaners/yahoo_messenger.xml ../cleaners/pidgin.xml #: ../cleaners/adobe_reader.xml ../cleaners/evolution.xml #: ../cleaners/libreoffice.xml ../cleaners/apt.xml ../cleaners/xine.xml #: ../cleaners/nexuiz.xml ../cleaners/exaile.xml ../cleaners/amsn.xml #: ../cleaners/gftp.xml ../cleaners/miro.xml ../cleaners/beagle.xml #: ../cleaners/kde.xml ../cleaners/flash.xml ../cleaners/secondlife_viewer.xml #: ../cleaners/java.xml ../cleaners/audacious.xml ../cleaners/rhythmbox.xml #: ../bleachbit/Cleaner.py:370 ../bleachbit/Cleaner.py:455 #: ../bleachbit/Cleaner.py:489 ../bleachbit/Cleaner.py:491 msgid "Delete the cache" msgstr "Eliminar a caché" #. TRANSLATORS: Vacuum is a verb. The term is jargon #. from the SQLite database. Microsoft Access uses #. the term 'Compact Database' (which you may translate #. instead). Another synonym is 'defragment.' #: ../cleaners/gpodder.xml ../cleaners/yum.xml ../cleaners/safari.xml #: ../cleaners/liferea.xml ../cleaners/chromium.xml #: ../cleaners/google_chrome.xml ../cleaners/thunderbird.xml #: ../bleachbit/Cleaner.py:214 ../bleachbit/Cleaner.py:360 #: ../bleachbit/Action.py:445 msgid "Vacuum" msgstr "Optimizar" #: ../cleaners/gpodder.xml ../cleaners/yum.xml ../cleaners/safari.xml #: ../cleaners/liferea.xml ../cleaners/chromium.xml #: ../cleaners/google_chrome.xml ../cleaners/thunderbird.xml #: ../bleachbit/Cleaner.py:215 msgid "" "Clean database fragmentation to reduce space and improve speed without " "removing any data" msgstr "" "Limpar a fragmentación da base de datos para reducir espazo e mellorar a " "velocidade sen retirar ningún dato" #: ../cleaners/yum.xml ../cleaners/apt.xml msgid "Package manager" msgstr "Xestor de paquetes" #: ../cleaners/warzone2100.xml ../cleaners/hippo_opensim_viewer.xml #: ../cleaners/gl-117.xml ../cleaners/tremulous.xml ../cleaners/nexuiz.xml #: ../cleaners/secondlife_viewer.xml msgid "Game" msgstr "Xogo" #: ../cleaners/warzone2100.xml ../cleaners/hippo_opensim_viewer.xml #: ../cleaners/teamviewer.xml ../cleaners/realplayer.xml ../cleaners/vuze.xml #: ../cleaners/yahoo_messenger.xml ../cleaners/amule.xml #: ../cleaners/easytag.xml ../cleaners/exaile.xml ../cleaners/screenlets.xml #: ../cleaners/gftp.xml ../cleaners/miro.xml ../cleaners/audacious.xml #: ../bleachbit/Cleaner.py:486 msgid "Logs" msgstr "Rexistros" #: ../cleaners/warzone2100.xml ../cleaners/hippo_opensim_viewer.xml #: ../cleaners/teamviewer.xml ../cleaners/realplayer.xml ../cleaners/vuze.xml #: ../cleaners/yahoo_messenger.xml ../cleaners/amule.xml ../cleaners/exaile.xml #: ../cleaners/screenlets.xml ../cleaners/gftp.xml ../cleaners/miro.xml #: ../cleaners/audacious.xml ../bleachbit/Cleaner.py:486 msgid "Delete the logs" msgstr "Eliminar os rexistros" #: ../cleaners/thumbnails.xml ../cleaners/windows_explorer.xml msgid "Thumbnails" msgstr "Miniaturas" #: ../cleaners/thumbnails.xml msgid "Icons for files on the system" msgstr "Iconas dos ficheiros do sistema" #: ../cleaners/vim.xml ../cleaners/gedit.xml msgid "Editor" msgstr "Editor" #: ../cleaners/vim.xml msgid "" "Delete ~/.viminfo which includes file history, command history, and buffers" msgstr "" "Eliminar ~/.viminfo que inclúe historial de ficheiros, historial de ordes e " "búferes" #: ../cleaners/filezilla.xml ../cleaners/transmission.xml ../cleaners/vuze.xml #: ../cleaners/amule.xml ../cleaners/gftp.xml msgid "File transfer client" msgstr "Cliente de transferencia de ficheiros" #: ../cleaners/filezilla.xml ../cleaners/paint.xml #: ../cleaners/windows_media_player.xml ../cleaners/windows_explorer.xml #: ../cleaners/teamviewer.xml ../cleaners/microsoft_office.xml #: ../cleaners/vlc.xml ../cleaners/adobe_reader.xml ../cleaners/winamp.xml #: ../cleaners/winzip.xml ../cleaners/winrar.xml ../cleaners/audacious.xml #: ../cleaners/wordpad.xml ../bleachbit/Cleaner.py:371 msgid "Most recently used" msgstr "Usado recentemente" #: ../cleaners/filezilla.xml ../cleaners/windows_explorer.xml #: ../cleaners/gwenview.xml ../cleaners/adobe_reader.xml ../cleaners/gedit.xml #: ../cleaners/kde.xml ../cleaners/audacious.xml ../bleachbit/Cleaner.py:372 #: ../bleachbit/Cleaner.py:469 msgid "Delete the list of recently used documents" msgstr "Eliminar a lista de documentos usados recentemente" #: ../cleaners/skype.xml ../cleaners/emesene.xml #: ../cleaners/yahoo_messenger.xml ../cleaners/pidgin.xml ../cleaners/amsn.xml msgid "Chat client" msgstr "Cliente de conversas" #: ../cleaners/skype.xml ../cleaners/hexchat.xml ../cleaners/emesene.xml #: ../cleaners/seamonkey.xml ../cleaners/yahoo_messenger.xml #: ../cleaners/pidgin.xml ../cleaners/amsn.xml msgid "Chat logs" msgstr "Rexistro de conversas" #: ../cleaners/skype.xml ../cleaners/hexchat.xml ../cleaners/emesene.xml #: ../cleaners/seamonkey.xml ../cleaners/yahoo_messenger.xml #: ../cleaners/pidgin.xml ../cleaners/amsn.xml msgid "Delete the chat logs" msgstr "Eliminar o rexistro de conversas" #: ../cleaners/skype.xml msgid "Installers" msgstr "Instaladores" #: ../cleaners/skype.xml msgid "Delete cached patches and installers" msgstr "Eliminar instaladores e parches da caché" #: ../cleaners/hexchat.xml msgid "IRC client formerly known as XChat" msgstr "Cliente IRC anteriormente coñecido como XChat" #: ../cleaners/safari.xml ../cleaners/links2.xml ../cleaners/seamonkey.xml #: ../cleaners/konqueror.xml ../cleaners/internet_explorer.xml #: ../cleaners/opera.xml ../cleaners/epiphany.xml ../cleaners/elinks.xml #: ../cleaners/chromium.xml ../cleaners/google_chrome.xml #: ../bleachbit/Cleaner.py:226 msgid "Web browser" msgstr "Navegador web" #: ../cleaners/safari.xml ../cleaners/seamonkey.xml ../cleaners/opera.xml #: ../cleaners/epiphany.xml ../cleaners/chromium.xml #: ../cleaners/google_chrome.xml ../cleaners/thunderbird.xml #: ../bleachbit/Cleaner.py:193 msgid "Delete the web cache, which reduces time to display revisited pages" msgstr "" "Eliminar a caché web, que reduce o tempo de carga das páxinas xa visitadas" #: ../cleaners/safari.xml ../cleaners/liferea.xml ../cleaners/seamonkey.xml #: ../cleaners/realplayer.xml ../cleaners/konqueror.xml #: ../cleaners/internet_explorer.xml ../cleaners/opera.xml #: ../cleaners/epiphany.xml ../cleaners/flash.xml ../cleaners/silverlight.xml #: ../cleaners/chromium.xml ../cleaners/google_chrome.xml #: ../cleaners/thunderbird.xml ../bleachbit/Cleaner.py:194 msgid "Cookies" msgstr "Cookies" #: ../cleaners/safari.xml ../cleaners/liferea.xml ../cleaners/seamonkey.xml #: ../cleaners/realplayer.xml ../cleaners/konqueror.xml #: ../cleaners/internet_explorer.xml ../cleaners/opera.xml #: ../cleaners/epiphany.xml ../cleaners/flash.xml ../cleaners/silverlight.xml #: ../cleaners/chromium.xml ../cleaners/google_chrome.xml #: ../cleaners/thunderbird.xml ../bleachbit/Cleaner.py:195 msgid "" "Delete cookies, which contain information such as web site preferences, " "authentication, and tracking identification" msgstr "" "Eliminar as cookies, que conteñen informacións tales como as preferencias " "dos sitios web, autenticación e control de identificación" #: ../cleaners/safari.xml ../cleaners/konqueror.xml #: ../cleaners/internet_explorer.xml ../cleaners/opera.xml #: ../bleachbit/Cleaner.py:213 msgid "List of visited web pages" msgstr "Listado de páxinas web visitadas" #. Torrent software can block a list of IP addresses, such as those that may belong to malware or anti-piracy organizations #: ../cleaners/transmission.xml msgid "Blocklists" msgstr "Listas de bloqueo" #: ../cleaners/transmission.xml ../cleaners/windows_defender.xml #: ../cleaners/beagle.xml ../cleaners/thunderbird.xml ../cleaners/deepscan.xml #: ../bleachbit/Cleaner.py:197 msgid "Delete the files" msgstr "Eliminar os ficheiros" #: ../cleaners/transmission.xml msgid "Blocklists will need update to work." msgstr "As listas de bloqueo precisan actualizarse para funcionar." #: ../cleaners/transmission.xml msgid "Torrents" msgstr "Torrents" #: ../cleaners/transmission.xml msgid "Delete the torrents (just the metadata but not the files described)" msgstr "Eliminar os torrents (só os metadatos pero non os ficheiros)" #: ../cleaners/transmission.xml msgid "Statistics" msgstr "Estatísticas" #: ../cleaners/transmission.xml msgid "Delete the file" msgstr "Eliminar este ficheiro" #: ../cleaners/paint.xml ../cleaners/windows_media_player.xml #: ../cleaners/windows_explorer.xml ../cleaners/teamviewer.xml #: ../cleaners/microsoft_office.xml ../cleaners/vlc.xml ../cleaners/winamp.xml #: ../cleaners/winzip.xml ../cleaners/winrar.xml ../cleaners/wordpad.xml msgid "Delete the most recently used list" msgstr "Eliminar a lista usada máis recentemente" #: ../cleaners/emesene.xml msgid "Delete the avatars and emoticons cache" msgstr "Eliminar a caché de avatares e emoticonas" #: ../cleaners/windows_media_player.xml ../cleaners/realplayer.xml #: ../cleaners/vlc.xml ../cleaners/winamp.xml msgid "Media player" msgstr "Reprodutor multimedia" #: ../cleaners/windows_explorer.xml ../cleaners/nautilus.xml msgid "File manager" msgstr "Xestor de ficheiros" #: ../cleaners/windows_explorer.xml ../cleaners/gwenview.xml #: ../cleaners/gedit.xml ../cleaners/kde.xml ../bleachbit/Cleaner.py:468 #: ../bleachbit/Cleaner.py:663 msgid "Recent documents list" msgstr "Lista de documentos usados recentemente" #: ../cleaners/windows_explorer.xml msgid "" "This option will reset pinned locations in Quick Access to their defaults." msgstr "" "Esta opción restabelecerá as predeterminacións das localizacións fixadas " "como accesos rápidos." #. In Windows 'Run' is the dialog in the Start menu #. In GNOME 'Run' is the dialog shown when typing ALT+F2' #: ../cleaners/windows_explorer.xml ../cleaners/gnome.xml msgid "Run" msgstr "Executar" #: ../cleaners/windows_explorer.xml ../cleaners/opera.xml ../cleaners/gnome.xml #: ../cleaners/google_toolbar.xml msgid "Search history" msgstr "Historial de buscas" #: ../cleaners/windows_explorer.xml ../cleaners/opera.xml ../cleaners/gnome.xml #: ../cleaners/google_toolbar.xml msgid "Delete the search history" msgstr "Eliminar o historial de buscas" #: ../cleaners/windows_explorer.xml msgid "This will restart Windows Explorer." msgstr "Isto reiniciará Windows Explorer." #: ../cleaners/gl-117.xml ../cleaners/microsoft_office.xml #: ../cleaners/beagle.xml ../cleaners/secondlife_viewer.xml ../cleaners/x11.xml msgid "Debug logs" msgstr "Rexistros de depuración" #: ../cleaners/gl-117.xml ../cleaners/microsoft_office.xml #: ../cleaners/easytag.xml ../cleaners/beagle.xml #: ../cleaners/secondlife_viewer.xml ../cleaners/x11.xml msgid "Delete the debug logs" msgstr "Eliminar os rexistros de depuración" #: ../cleaners/google_earth.xml ../cleaners/winetricks.xml ../cleaners/vuze.xml #: ../cleaners/adobe_reader.xml ../cleaners/amule.xml ../cleaners/wine.xml #: ../cleaners/internet_explorer.xml ../cleaners/gimp.xml ../cleaners/kde.xml #: ../cleaners/deepscan.xml ../bleachbit/Cleaner.py:520 msgid "Temporary files" msgstr "Ficheiros temporais" #: ../cleaners/google_earth.xml ../cleaners/winetricks.xml ../cleaners/vuze.xml #: ../cleaners/adobe_reader.xml ../cleaners/amule.xml ../cleaners/wine.xml #: ../cleaners/internet_explorer.xml ../cleaners/gimp.xml ../cleaners/kde.xml #: ../cleaners/deepscan.xml ../bleachbit/Cleaner.py:520 msgid "Delete the temporary files" msgstr "Eliminar os ficheiros temporais" #: ../cleaners/seamonkey.xml ../cleaners/opera.xml ../bleachbit/Cleaner.py:201 msgid "Download history" msgstr "Historial de descargas" #: ../cleaners/seamonkey.xml ../cleaners/opera.xml ../bleachbit/Cleaner.py:201 msgid "List of files downloaded" msgstr "Lista de ficheiros descargados" #: ../cleaners/seamonkey.xml msgid "Delete the list of visited web pages" msgstr "Eliminar a lista de páxinas web visitadas" #: ../cleaners/vuze.xml ../cleaners/deepscan.xml ../bleachbit/Cleaner.py:190 msgid "Backup files" msgstr "Copias de seguranza" #: ../cleaners/vuze.xml ../cleaners/deepscan.xml ../bleachbit/Cleaner.py:191 msgid "Delete the backup files" msgstr "Eliminar as copias de seguranza" #: ../cleaners/konqueror.xml ../cleaners/opera.xml ../cleaners/chromium.xml msgid "Current session" msgstr "Sesión actual" #: ../cleaners/konqueror.xml ../cleaners/opera.xml ../cleaners/chromium.xml msgid "Delete the current session" msgstr "Eliminar a sesión actual" #: ../cleaners/konqueror.xml ../cleaners/opera.xml ../bleachbit/Cleaner.py:213 msgid "URL history" msgstr "Historial de URL" #: ../cleaners/microsoft_office.xml ../cleaners/libreoffice.xml #: ../bleachbit/Cleaner.py:375 msgid "Office suite" msgstr "Suite ofimática" #: ../cleaners/windows_defender.xml msgid "Anti-virus" msgstr "Antivirus" #: ../cleaners/journald.xml msgid "System journals" msgstr "Rexistros do sistema" #: ../cleaners/journald.xml msgid "Clean old system journals" msgstr "Limpar rexistros vellos do sistema" #: ../cleaners/adobe_reader.xml msgid "Document viewer" msgstr "Visor de documentos" #: ../cleaners/evolution.xml ../cleaners/thunderbird.xml msgid "Email client" msgstr "Cliente de correo electrónico" #: ../cleaners/tremulous.xml msgid "Delete the list of game servers" msgstr "Eliminar a lista de servidores de xogo" #: ../cleaners/sqlite3.xml ../cleaners/bash.xml ../cleaners/octave.xml msgid "Delete the command history" msgstr "Eliminar o historial de ordes" #: ../cleaners/wine.xml msgid "Compatibility layer for Windows software" msgstr "Capa de compatibilidade para software de Windows" #: ../cleaners/internet_explorer.xml ../cleaners/chromium.xml #: ../cleaners/google_chrome.xml ../bleachbit/Cleaner.py:202 msgid "Form history" msgstr "Historial de formularios" #: ../cleaners/internet_explorer.xml ../bleachbit/Cleaner.py:203 msgid "A history of forms entered in web sites and in the Search bar" msgstr "" "Un historial de formularios introducidos en sitios web e na barra de busca" #. This software edits metadata tags, such as title and artist, in audio files #: ../cleaners/easytag.xml msgid "Audio files tagger" msgstr "Etiquetador de son" #: ../cleaners/apt.xml msgid "Delete obsolete files" msgstr "Eliminar ficheiros obsoletos" #: ../cleaners/apt.xml msgid "Package lists" msgstr "Listas de paquetes" #: ../cleaners/xine.xml ../cleaners/miro.xml ../cleaners/flash.xml msgid "Multimedia viewer" msgstr "Visor multimedia" #: ../cleaners/recoll.xml ../cleaners/beagle.xml msgid "Search tool" msgstr "Ferramenta de busca" #: ../cleaners/recoll.xml ../cleaners/beagle.xml ../cleaners/thunderbird.xml msgid "Index" msgstr "Índice" #: ../cleaners/recoll.xml msgid "" "Delete the search index, a database of words and the files they contain" msgstr "" "Eliminar o índice de buscas, a base de datos de palabras e os ficheiros que " "conteñen" #: ../cleaners/gimp.xml msgid "Graphics editor" msgstr "Editor de gráficos" #: ../cleaners/exaile.xml msgid "Downloaded podcasts" msgstr "Poscast descargados" #: ../cleaners/exaile.xml msgid "Delete downloaded podcasts" msgstr "Eliminar os podcast descargados" #: ../cleaners/bash.xml msgid "Shell" msgstr "Intérprete de ordes" #. TRANSLATORS: DOM = Document Object Model. #: ../cleaners/opera.xml ../cleaners/epiphany.xml ../cleaners/chromium.xml #: ../cleaners/google_chrome.xml ../bleachbit/Cleaner.py:199 msgid "DOM Storage" msgstr "Almacenamento DOM" #: ../cleaners/opera.xml ../cleaners/epiphany.xml ../cleaners/chromium.xml #: ../cleaners/google_chrome.xml ../bleachbit/Cleaner.py:199 msgid "Delete HTML5 cookies" msgstr "Eliminar cookies HTML5" #: ../cleaners/opera.xml ../cleaners/epiphany.xml ../cleaners/chromium.xml #: ../cleaners/google_chrome.xml ../cleaners/thunderbird.xml #: ../bleachbit/Cleaner.py:208 msgid "Passwords" msgstr "Contrasinais" #: ../cleaners/opera.xml ../cleaners/epiphany.xml ../cleaners/chromium.xml #: ../cleaners/google_chrome.xml ../cleaners/thunderbird.xml #: ../bleachbit/Cleaner.py:209 msgid "" "A database of usernames and passwords as well as a list of sites that should " "not store passwords" msgstr "" "Unha base de datos dos nomes de usuario e contrasinais así como unha lista " "de sitios nos que non se debe lembrar o contrasinal" #: ../cleaners/opera.xml ../cleaners/epiphany.xml ../cleaners/chromium.xml #: ../cleaners/google_chrome.xml ../cleaners/thunderbird.xml #: ../bleachbit/Cleaner.py:211 msgid "This option will delete your saved passwords." msgstr "Esta opción eliminará os contrasinais gardados." #: ../cleaners/nautilus.xml msgid "Custom folders will be reset." msgstr "Os cartafoles personalizados han ser reiniciados." #: ../cleaners/gnome.xml ../cleaners/kde.xml msgid "Desktop environment" msgstr "Ambiente de escritorio" #: ../cleaners/screenlets.xml msgid "Widgets for the desktop" msgstr "Trebellos para o escritorio" #: ../cleaners/epiphany.xml msgid "Places" msgstr "Lugares" #: ../cleaners/epiphany.xml msgid "" "A database of URLs including bookmarks, favicons, and a history of visited " "web sites" msgstr "" "Unha base de datos dos URL incluíndo marcadores, faviconas e un historial de " "sitios web visitados" #: ../cleaners/epiphany.xml msgid "This option deletes all bookmarks." msgstr "Esta opción elimina todos os marcadores" #: ../cleaners/winrar.xml msgid "File archiver" msgstr "Arquivador de ficheiros" #: ../cleaners/elinks.xml msgid "Delete the cookies, visited URLs, and search history" msgstr "Eliminar as cookies, URL visitados e historial de busca" #: ../cleaners/chromium.xml ../cleaners/google_chrome.xml msgid "A history of forms entered in web sites" msgstr "O hisorial dos formularios introducidos en sitios web" #: ../cleaners/chromium.xml ../cleaners/google_chrome.xml msgid "" "Delete the history which includes visited sites, downloads, and thumbnails" msgstr "" "Eliminar o historial, que inclúe sitios visitados, descargas e miniaturas" #: ../cleaners/chromium.xml ../cleaners/google_chrome.xml msgid "Search engines" msgstr "Motores de busca" #. 'Factory' means a search engine that is installed by default 'from the factory,' but this is different than a 'default search engine' https://lists.launchpad.net/launchpad-translators/msg00283.html #: ../cleaners/chromium.xml ../cleaners/google_chrome.xml msgid "" "Reset the search engine usage history and delete non-factory search engines, " "some of which are added automatically" msgstr "" "Restabeleza o historial do motor de buscas e elimine os motores de busca non " "preestabelecidos de fábrica, algúns deles serán engadidos automaticamente" #: ../cleaners/audacious.xml msgid "Audio player" msgstr "Reprodutor de son" #: ../cleaners/rhythmbox.xml msgid "Database" msgstr "Base de datos" #: ../cleaners/rhythmbox.xml msgid "" "Delete the database, which contain information such as play count and last " "played" msgstr "" "Eliminar a base de datos. Esta contén o contador de reproducións e a última " "reprodución" #: ../cleaners/google_chrome.xml msgid "Session" msgstr "Sesión" #: ../cleaners/google_chrome.xml msgid "Delete the current and last sessions" msgstr "Eliminar a actual e últimas sesións" #: ../cleaners/x11.xml msgid "Windowing system" msgstr "Sistema con interface por xanelas" #: ../cleaners/wordpad.xml msgid "Word processor" msgstr "Procesador de texto" #: ../cleaners/deepscan.xml msgid "Deep scan" msgstr "Analizar en profundidade" #: ../cleaners/deepscan.xml msgid "Clean files widely scattered across the disk" msgstr "Limpar os ficheiros moi espallados polo disco" #: ../cleaners/deepscan.xml msgid "Inspect the preview for any files you want to keep." msgstr "Comprobe a previsualización dos ficheiros que queira manter." #: ../cleaners/deepscan.xml msgid "This option is slow." msgstr "Esta opción é lenta." #: ../bleachbit.desktop msgid "Unnecessary file cleaner" msgstr "Limpador de ficheiros innecesarios" #: ../bleachbit.desktop msgid "Free space and maintain privacy" msgstr "Liberar espazo e manter a intimidade" #: ../bleachbit/FileUtilities.py:668 msgid "" "There was at least one file on a file system that does not support advanced " "overwriting." msgstr "" "Hai polo menos un ficheiro do sistema de ficheiros que non acepta " "sobrescritura avanzada." #: ../bleachbit/Unix.py:574 #, python-format msgid "Executable not found: %s" msgstr "Executábel non atopado: %s" #. TRANSLATORS: %s expands to a name such as 'Firefox' or 'System'. #: ../bleachbit/Unix.py:623 ../bleachbit/Worker.py:136 #, python-format msgid "" "%s cannot be cleaned because it is currently running. Close it, and try " "again." msgstr "" "%s non pode ser limpado porque está a ser usado neste momento. Pécheo e " "tente de novo." #: ../bleachbit/GuiBasic.py:112 msgid "Delete confirmation" msgstr "Confirmar eliminación" #: ../bleachbit/GuiBasic.py:122 msgid "" "Are you sure you want to permanently delete files according to the selected " "operations? The actual files that will be deleted may have changed since " "you ran the preview." msgstr "" "Ten certeza de querer eliminar os ficheiros de xeito permanente consonte as " "operacións seleccionadas? Os ficheiros actuais que serán eliminados poden " "ter cambiado desde a previsualización." #: ../bleachbit/GuiBasic.py:125 msgid "Are you sure you want to permanently delete these files?" msgstr "Ten certeza de querer eliminar estes ficheiros de xeito permanente?" #: ../bleachbit/GuiBasic.py:162 #, python-format msgid "" "Because you are running as root, please manually open this link in a web " "browser:\n" "%s" msgstr "" "Está executando como root, abra manualmente esta ligazón nun navegador web\n" "%s" #. TRANSLATORS: %s expands to www.bleachbit.org or similar #: ../bleachbit/GuiBasic.py:174 #, python-format msgid "Open web browser to %s?" msgstr "Abrir o navegador a %s?" #. TRANSLATORS: This is the label in the log indicating was #. skipped because it matches the whitelist #: ../bleachbit/Command.py:47 msgid "Skip" msgstr "Omitir" #. TRANSLATORS: This is the label in the log indicating will be #. deleted (for previews) or was actually deleted #: ../bleachbit/Command.py:77 msgid "Delete" msgstr "Eliminar" #: ../bleachbit/Command.py:99 msgid "" "At least one file was locked by another process, so its contents could not " "be overwritten. It will be marked for deletion upon system reboot." msgstr "" "Outro proceso bloqueou cando menos un ficheiro e non foi posíbel " "sobrescribilo. Eliminarase cando reinicie o sistema." #. TRANSLATORS: The file will be deleted when the #. system reboots #: ../bleachbit/Command.py:102 msgid "Mark for deletion" msgstr "Marcar para eliminar" #. TRANSLATORS: Parts of this file will be deleted #: ../bleachbit/Command.py:199 ../bleachbit/Command.py:233 #: ../bleachbit/Action.py:254 ../bleachbit/Action.py:267 #: ../bleachbit/Action.py:280 ../bleachbit/Action.py:293 #: ../bleachbit/Action.py:306 msgid "Clean file" msgstr "Limpar ficheiro" #. TRANSLATORS: The file will be truncated to 0 bytes in length #: ../bleachbit/Command.py:275 msgid "Truncate" msgstr "Truncar" #: ../bleachbit/Command.py:317 msgid "Delete registry key" msgstr "Eliminar chave do rexistro" #. TRANSLATORS: This is cleaner name for cleaners imported from winapp2.ini #: ../bleachbit/Winapp.py:44 msgid "Applications" msgstr "Aplicativos" #. TRANSLATORS: This is cleaner name for cleaners imported #. from winapp2.ini #: ../bleachbit/Winapp.py:47 msgid "Internet" msgstr "Internet" #. TRANSLATORS: This is cleaner name for cleaners imported #. from winapp2.ini #: ../bleachbit/Winapp.py:50 msgid "Multimedia" msgstr "Multimedia" #. TRANSLATORS: This is cleaner name for cleaners imported #. from winapp2.ini #: ../bleachbit/Winapp.py:53 msgid "Utilities" msgstr "Ferramentas" #: ../bleachbit/Winapp.py:64 msgid "Games" msgstr "Xogos" #: ../bleachbit/Winapp.py:162 msgid "Imported from winapp2.ini" msgstr "Importado de winapp2.ini" #: ../bleachbit/Cleaner.py:197 msgid "Crash reports" msgstr "Informes de quebras" #: ../bleachbit/Cleaner.py:204 msgid "Session restore" msgstr "Restaurar sesión" #: ../bleachbit/Cleaner.py:205 msgid "Loads the initial session after the browser closes or crashes" msgstr "" "Cargar a sesión inicial despois de que o navegador se peche ou se estrague" #: ../bleachbit/Cleaner.py:207 msgid "Site preferences" msgstr "Preferencias do sitio" #: ../bleachbit/Cleaner.py:207 msgid "Settings for individual sites" msgstr "Opcións para sitios individuais" #. TRANSLATORS: desktop entries are .desktop files in Linux that #. make up the application menu (the menu that shows BleachBit, #. Firefox, and others. The .desktop files also associate file #. types, so clicking on an .html file in Nautilus brings up #. Firefox. #. More information: #. http://standards.freedesktop.org/menu-spec/latest/index.html#introduction #: ../bleachbit/Cleaner.py:453 msgid "Broken desktop files" msgstr "Ficheiros do escritorio estragados" #: ../bleachbit/Cleaner.py:454 msgid "Delete broken application menu entries and file associations" msgstr "" "Eliminar as entradas estragadas do menú da aplicativos e os ficheiros " "asociados" #. TRANSLATORS: Localizations are files supporting specific #. languages, so applications appear in Spanish, etc. #: ../bleachbit/Cleaner.py:458 msgid "Localizations" msgstr "Traducións" #: ../bleachbit/Cleaner.py:459 msgid "Delete files for unwanted languages" msgstr "Eliminar ficheiros dos idiomas non escollidos" #: ../bleachbit/Cleaner.py:461 msgid "Configure this option in the preferences." msgstr "Configurar esta opción nas preferencias." #: ../bleachbit/Cleaner.py:467 msgid "Rotated logs" msgstr "Rexistros antigos" #: ../bleachbit/Cleaner.py:467 msgid "Delete old system logs" msgstr "Eliminar os rexistros antigos do sistema" #: ../bleachbit/Cleaner.py:470 msgid "Trash" msgstr "Lixo" #: ../bleachbit/Cleaner.py:470 msgid "Empty the trash" msgstr "Baleirar o lixo" #: ../bleachbit/Cleaner.py:476 ../bleachbit/Cleaner.py:627 #: ../bleachbit/Worker.py:184 msgid "Memory" msgstr "Memoria" #. TRANSLATORS: 'free' means 'unallocated' #: ../bleachbit/Cleaner.py:478 msgid "Wipe the swap and free memory" msgstr "Limpar a memoria de intercambio e a memoria libre" #: ../bleachbit/Cleaner.py:480 msgid "This option is experimental and may cause system problems." msgstr "Esta opción está en probas e pode causar problemas no sistema" #: ../bleachbit/Cleaner.py:488 msgid "Memory dump" msgstr "Envorcado de memoria" #: ../bleachbit/Cleaner.py:488 msgid "Delete the file memory.dmp" msgstr "Eliminar o ficheiro memory.dmp" #. TRANSLATORS: Prefetch is Microsoft Windows jargon. #: ../bleachbit/Cleaner.py:491 msgid "Prefetch" msgstr "Obter previamente" #: ../bleachbit/Cleaner.py:493 msgid "Recycle bin" msgstr "Papeleira de reciclaxe" #: ../bleachbit/Cleaner.py:493 ../bleachbit/Cleaner.py:787 msgid "Empty the recycle bin" msgstr "Baleirar a papeleira de reciclaxe" #. TRANSLATORS: 'Update' is a noun, and 'Update uninstallers' is an option to delete #. the uninstallers for software updates. #: ../bleachbit/Cleaner.py:496 msgid "Update uninstallers" msgstr "Eliminar desinstaladores" #: ../bleachbit/Cleaner.py:497 msgid "" "Delete uninstallers for Microsoft updates including hotfixes, service packs, " "and Internet Explorer updates" msgstr "" "Elimina os desinstaladores das actualizacións de Microsoft, incluindo " "revisións, service packs e actualizacións de Internet Explorer" #: ../bleachbit/Cleaner.py:504 ../bleachbit/Cleaner.py:727 msgid "Clipboard" msgstr "Portapapeis" #: ../bleachbit/Cleaner.py:505 msgid "" "The desktop environment's clipboard used for copy and paste operations" msgstr "" "Portapapeis do contorno de escritorio usado para operacións de copiar e pegar" #. TRANSLATORS: "Custom" is an option allowing the user to specify which #. files and folders will be erased. #: ../bleachbit/Cleaner.py:512 ../bleachbit/GuiPreferences.py:66 msgid "Custom" msgstr "Personalizado" #: ../bleachbit/Cleaner.py:513 msgid "Delete user-specified files and folders" msgstr "Eliminar os ficheiros e cartafoles especificados polo usuario" #. TRANSLATORS: 'free' means 'unallocated' #: ../bleachbit/Cleaner.py:515 msgid "Free disk space" msgstr "Espazo libre no disco" #. TRANSLATORS: 'free' means 'unallocated' #: ../bleachbit/Cleaner.py:517 msgid "Overwrite free disk space to hide deleted files" msgstr "" "Sobrescribir o espazo libre do disco para agochar os ficheiros eliminados" #: ../bleachbit/Cleaner.py:518 msgid "This option is very slow." msgstr "Esta opción é moi lenta." #: ../bleachbit/Cleaner.py:522 msgid "The system in general" msgstr "O sistema en xeral" #: ../bleachbit/Cleaner.py:524 ../bleachbit/Cleaner.py:857 msgid "System" msgstr "Sistema" #. TRANSLATORS: 'Free' means 'unallocated.' #. %s expands to a path such as C:\ or /tmp/ #: ../bleachbit/Cleaner.py:735 ../bleachbit/Cleaner.py:890 #, python-format msgid "Overwrite free disk space %s" msgstr "Sobrescribir o espazo libre do disco %s" #: ../bleachbit/RecognizeCleanerML.py:59 msgid "Security warning" msgstr "Advertencia de seguranza" #: ../bleachbit/RecognizeCleanerML.py:72 msgid "" "These cleaner definitions are new or have changed. Malicious definitions can " "damage your system. If you do not trust these changes, delete the files or " "quit." msgstr "" "Estas definicións de limpador son novas ou sufriron modificacións. As " "definicións maliciosas poden danar o seu sistema. Se non confía nesas " "modificacións elimine os ficheiros ou saia." #: ../bleachbit/RecognizeCleanerML.py:88 msgctxt "column_label" msgid "Delete" msgstr "Eliminar" #: ../bleachbit/RecognizeCleanerML.py:93 msgctxt "column_label" msgid "Filename" msgstr "Nome do ficheiro" #. TRANSLATORS: This indicates an error. The special keyword #. %(operation)s will be replaced by 'firefox' or 'opera' or #. some other cleaner ID. The special keyword %(msg)s will be #. replaced by a message such as 'Permission denied.' #: ../bleachbit/Worker.py:74 #, python-format msgid "Exception while running operation '%(operation)s': '%(msg)s'" msgstr "" "Produciuse un erro ao executar a operación «%(operation)s»: «%(msg)s»" #. TRANSLATORS: 'free' means 'unallocated' #: ../bleachbit/Worker.py:182 msgid "Please wait. Wiping free disk space." msgstr "Agarde. Limpando o espazo libre no disco" #. TRANSLATORS: %s is replaced with Firefox, System, etc. #: ../bleachbit/Worker.py:184 ../bleachbit/Worker.py:332 #, python-format msgid "Please wait. Cleaning %s." msgstr "Agarde. Limpando %s." #: ../bleachbit/Worker.py:199 msgid "Please wait. Wiping file system metadata." msgstr "Agarde. Estanse borrando os metadatos do sistema de ficheiros." #: ../bleachbit/Worker.py:202 msgid "Please wait. Cleaning up after wiping file system metadata." msgstr "" "Agarde. Estase limpando tras o borrado dos metadatos do sistema de ficheiros." #: ../bleachbit/Worker.py:205 #, python-format msgid "About %d minute remaining." msgid_plural "About %d minutes remaining." msgstr[0] "Resta arredor de %d minuto" msgstr[1] "Resta arredor de %d minutos" #. TRANSLATORS: This refers to disk space that was #. really recovered (in other words, not a preview) #: ../bleachbit/Worker.py:272 #, python-format msgid "Disk space recovered: %s" msgstr "Espazo en disco recuperado: %s" #. TRANSLATORS: This refers to a preview (no real #. changes were made yet) #: ../bleachbit/Worker.py:276 #, python-format msgid "Disk space to be recovered: %s" msgstr "Espazo en disco que ha ser recuperado: %s" #. TRANSLATORS: This refers to the number of files really #. deleted (in other words, not a preview). #: ../bleachbit/Worker.py:281 #, python-format msgid "Files deleted: %d" msgstr "Ficheiros eliminados: %d" #. TRANSLATORS: This refers to the number of files that #. would be deleted (in other words, simply a preview). #: ../bleachbit/Worker.py:285 #, python-format msgid "Files to be deleted: %d" msgstr "Ficheiros que han ser eliminados: %d" #: ../bleachbit/Worker.py:288 #, python-format msgid "Special operations: %d" msgstr "Operacións especiais: %d" #: ../bleachbit/Worker.py:291 #, python-format msgid "Errors: %d" msgstr "Erros: %d" #. TRANSLATORS: The "deep scan" feature searches over broad #. areas of the file system such as the user's whole home directory #. or all the system executables. #: ../bleachbit/Worker.py:306 msgid "Please wait. Running deep scan." msgstr "Agarde. Executando unha busca en profundidade." #. TRANSLATORS: %s is replaced with Firefox, System, etc. #: ../bleachbit/Worker.py:335 #, python-format msgid "Please wait. Previewing %s." msgstr "Agarde. Previsualizando %s." #: ../bleachbit/Update.py:80 msgid "New winapp2.ini was downloaded." msgstr "Descargouse un winapp2.ini novo." #: ../bleachbit/Update.py:125 msgid "Update BleachBit" msgstr "Actualizar BleachBit" #: ../bleachbit/Update.py:130 msgid "A new version is available." msgstr "Hai dispoñíbel unha nova versión" #. TRANSLATORS: %s expands to version such as '0.8.4' or '0.8.5beta' or #. similar #: ../bleachbit/Update.py:139 #, python-format msgid "Update to version %s" msgstr "Actualizar á versión %s" #: ../bleachbit/Update.py:164 #, python-format msgid "" "Error when opening a network connection to %s to check for updates. Please " "verify the network is working." msgstr "" "Produciuse un erro na apertura dunha conexión de rede a %s para buscar " "actualizacións. Comprobe se a rede funciona." #: ../bleachbit/CLI.py:106 #, python-format msgid "not a valid cleaner: %s" msgstr "non é unha ferramente de limpeza válida: %s" #. TRANSLATORS: This is the command line usage. Don't translate #. %prog, but do translate usage, options, cleaner, and option. #. More information about the command line is here #. https://www.bleachbit.org/documentation/command-line #: ../bleachbit/CLI.py:133 msgid "usage: %prog [options] cleaner.option1 cleaner.option2" msgstr "" "utilización: %prog [opcións] ferramentadelimpeza.opción1 " "ferramentadelimpeza.opción2" #: ../bleachbit/CLI.py:136 msgid "list cleaners" msgstr "Lista de limpadores" #. TRANSLATORS: predefined cleaners are for applications, such as Firefox and Flash. #. This is different than cleaning an arbitrary file, such as a #. spreadsheet on the desktop. #: ../bleachbit/CLI.py:141 msgid "run cleaners to delete files and make other permanent changes" msgstr "" "executar limpadores para eliminar os ficheiros e facer outros cambios " "permanentes" #: ../bleachbit/CLI.py:144 msgid "shred specific files or folders" msgstr "destruír ficheiros ou cartafoles específicos" #: ../bleachbit/CLI.py:146 msgid "show system information" msgstr "mostrar información do sistema" #: ../bleachbit/CLI.py:148 msgid "launch the graphical interface" msgstr "iniciar a interface gráfica" #: ../bleachbit/CLI.py:152 msgid "do not prompt for administrator privileges" msgstr "non solicitar privilexios de administrador" #: ../bleachbit/CLI.py:157 msgid "preview files to be deleted and other changes" msgstr "" "Previsualizar os ficheiros que serán eliminados, así como outras " "modificacións" #: ../bleachbit/CLI.py:161 msgid "use options set in the graphical interface" msgstr "usar as opcións estabelecidas na interface gráfica" #: ../bleachbit/CLI.py:164 msgid "update winapp2.ini, if a new version is available" msgstr "actualice winapp2.ini, se hai unha nova versión dispoñíbel" #: ../bleachbit/CLI.py:166 msgid "output version information and exit" msgstr "mostrar información da versión e saír" #: ../bleachbit/CLI.py:168 msgid "overwrite files to hide contents" msgstr "Sobrescribir os ficheiros para agochar o contido" #. TRANSLATORS: this is the context menu #: ../bleachbit/Action.py:382 ../bleachbit/GUI.py:632 msgid "Clean" msgstr "Limpar" #: ../bleachbit/Action.py:418 #, python-format msgid "Run external command: %s" msgstr "Executar unha orde externa: %s" #: ../bleachbit/GUI.py:135 ../bleachbit/GuiPreferences.py:296 msgid "Name" msgstr "Nome" #: ../bleachbit/GUI.py:143 msgid "Active" msgstr "Activo" #. TRANSLATORS: Size is the label for the column that shows how #. much space an option would clean or did clean #: ../bleachbit/GUI.py:155 msgid "Size" msgstr "Tamaño" #. TRANSLATORS: %(cleaner) may be Firefox, System, etc. #. %(option) may be cache, logs, cookies, etc. #. %(warning) may be 'This option is really slow' #: ../bleachbit/GUI.py:186 #, python-format msgid "" "Warning regarding %(cleaner)s - %(option)s:\n" "\n" "%(warning)s" msgstr "" "Aviso sobre %(cleaner)s - %(option)s:\n" "\n" "%(warning)s" #: ../bleachbit/GUI.py:372 msgid "You must select an operation" msgstr "Debe seleccionar unha operación" #: ../bleachbit/GUI.py:391 ../bleachbit/GUI.py:413 msgid "Done." msgstr "Feito." #: ../bleachbit/GUI.py:426 msgid "Program to clean unnecessary files" msgstr "Programa para limpar os ficheiros innecesarios" #: ../bleachbit/GUI.py:436 msgid "" "GNU General Public License version 3 or later.\n" "See http://www.gnu.org/licenses/gpl-3.0.txt" msgstr "" "Licenza Pública Xeral GNU versión 3 ou posterior.\n" "Ver http://www.gnu.org/licenses/gpl-3.0.txt" #. TRANSLATORS: Maintain the names of translators here. #. Launchpad does this automatically for translations #. typed in Launchpad. This is a special string shown #. in the 'About' box. #: ../bleachbit/GUI.py:442 msgid "translator-credits" msgstr "" "Launchpad Contributions:\n" " Jon Amil https://launchpad.net/~amilgz\n" " Manuel Xosé Lemos https://launchpad.net/~mxlemos\n" " Marcos Lans https://launchpad.net/~markooss\n" " Miguel Anxo Bouzada https://launchpad.net/~mbouzada" #: ../bleachbit/GUI.py:454 msgid "System information" msgstr "Información do sistema" #: ../bleachbit/GUI.py:527 msgid "Choose files to shred" msgstr "Escolla os ficheiros para destruír" #: ../bleachbit/GUI.py:530 msgid "Choose folder to shred" msgstr "Escolla o cartafol para destruír" #: ../bleachbit/GUI.py:594 ../bleachbit/GuiPreferences.py:197 #: ../bleachbit/GuiPreferences.py:326 ../bleachbit/GuiPreferences.py:367 msgid "Choose a folder" msgstr "Escolla un cartafol" #. TRANSLATORS: this is the context menu #: ../bleachbit/GUI.py:627 msgid "Preview" msgstr "Previsualizar" #: ../bleachbit/GUI.py:734 msgid "_Shred Files" msgstr "_Destruír ficheiros" #: ../bleachbit/GUI.py:736 msgid "Sh_red Folders" msgstr "D_estruir cartafoles" #: ../bleachbit/GUI.py:738 msgid "_Wipe Free Space" msgstr "_Limpar espazo libre" #: ../bleachbit/GUI.py:740 msgid "S_hred Settings and Quit" msgstr "Des_truír preferencias e saír" #: ../bleachbit/GUI.py:742 msgid "_Quit" msgstr "_Saír" #: ../bleachbit/GUI.py:744 msgid "_File" msgstr "_Ficheiro" #: ../bleachbit/GUI.py:746 ../bleachbit/GuiPreferences.py:58 msgid "Preferences" msgstr "Preferencias" #: ../bleachbit/GUI.py:747 msgid "_Edit" msgstr "_Editar" #: ../bleachbit/GUI.py:748 msgid "Help Contents" msgstr "Contidos da axuda" #: ../bleachbit/GUI.py:751 msgid "_Release Notes" msgstr "_Notas da versión" #: ../bleachbit/GUI.py:754 msgid "_System Information" msgstr "I_nformación do sistema" #: ../bleachbit/GUI.py:757 msgid "_About" msgstr "_Sobre" #: ../bleachbit/GUI.py:758 msgid "_Help" msgstr "_Axuda" #: ../bleachbit/GUI.py:783 msgctxt "button" msgid "Preview" msgstr "Previsualizar" #: ../bleachbit/GUI.py:788 msgid "Preview files in the selected operations (without deleting any files)" msgstr "" "Previsualizar ficheiros nas operacións seleccionadas (sen eliminar ficheiro " "ningún)" #: ../bleachbit/GUI.py:798 msgctxt "button" msgid "Clean" msgstr "Limpar" #: ../bleachbit/GUI.py:802 msgid "Clean files in the selected operations" msgstr "Limpar os ficheiros nas operacións seleccionadas" #: ../bleachbit/GUI.py:893 msgid "Error when checking for updates: " msgstr "Produciuse un erro ao comprobar as actualizacións: " #: ../bleachbit/GUI.py:932 msgid "" "Error loading the SQLite module: the antivirus software may be blocking it." msgstr "" "Produciuse un erro ao cargar o módulo SQLite, o software antivirus " "bloqueouno." #: ../bleachbit/GUI.py:935 msgid "" "You are running BleachBit with administrative privileges for cleaning shared " "parts of the system, and references to the user profile folder will clean " "only the root account." msgstr "" "Está executando o BleachBit con privilexios de administrador para limpar " "partes compartidas do sistema.As referencias ao cartafol do perfil do " "usuario limparán unicamente a conta root." #: ../bleachbit/GUI.py:940 msgid "" "Run BleachBit with administrator privileges to improve the accuracy of " "overwriting the contents of files." msgstr "" "Execute BleachBit con permisos de administrador para mellorar a exactitude " "da sobrescritura de ficheiros." #: ../bleachbit/GuiPreferences.py:64 msgid "General" msgstr "Xeral" #: ../bleachbit/GuiPreferences.py:67 msgid "Drives" msgstr "Unidades" #: ../bleachbit/GuiPreferences.py:70 msgid "Languages" msgstr "Idiomas" #: ../bleachbit/GuiPreferences.py:72 msgid "Whitelist" msgstr "Lista branca" #: ../bleachbit/GuiPreferences.py:117 msgid "Check periodically for software updates via the Internet" msgstr "Buscar periodicamente actualizacións por Internet" #: ../bleachbit/GuiPreferences.py:122 msgid "" "If an update is found, you will be given the option to view information " "about it. Then, you may manually download and install the update." msgstr "" "De atopar unha actualización terá a opción de ver a información sobre ela, " "así poderá descargala e instalala manualmente." #: ../bleachbit/GuiPreferences.py:128 msgid "Check for new beta releases" msgstr "Comprobar se hai novas edicións beta" #: ../bleachbit/GuiPreferences.py:137 msgid "Download and update cleaners from community (winapp2.ini)" msgstr "Descargar e actualizar limpadores da comunidade (winapp2.ini)" #. TRANSLATORS: This means to hide cleaners which would do #. nothing. For example, if Firefox were never used on #. this system, this option would hide Firefox to simplify #. the list of cleaners. #: ../bleachbit/GuiPreferences.py:151 msgid "Hide irrelevant cleaners" msgstr "Ocultar os limpadores innecesarios" #. TRANSLATORS: Overwriting is the same as shredding. It is a way #. to prevent recovery of the data. You could also translate #. 'Shred files to prevent recovery.' #: ../bleachbit/GuiPreferences.py:159 msgid "Overwrite contents of files to prevent recovery" msgstr "Triturar contidos de ficheiros para evitar a súa recuperación" #: ../bleachbit/GuiPreferences.py:163 msgid "" "Overwriting is ineffective on some file systems and with certain BleachBit " "operations. Overwriting is significantly slower." msgstr "" "Sobrescribir non é fectivo nalgúns sistemas de ficheiros e con certas " "operacións do BleachBit. Sobrescribir é significativamente máis lento." #: ../bleachbit/GuiPreferences.py:166 msgid "Start BleachBit with computer" msgstr "Iniciar o BleachBit ao iniciar o computador" #: ../bleachbit/GuiPreferences.py:172 msgid "Exit after cleaning" msgstr "Saír despois de limpar" #: ../bleachbit/GuiPreferences.py:178 msgid "Confirm before delete" msgstr "Confirmar antes de eliminar" #: ../bleachbit/GuiPreferences.py:186 msgid "Use IEC sizes (1 KiB = 1024 bytes) instead of SI (1 kB = 1000 bytes)" msgstr "" "Usar tamaños IEC (1 KiB = 1024 bytes) no canto de SI (1 kB = 1000 bytes)" #: ../bleachbit/GuiPreferences.py:221 msgid "" "Choose a writable folder for each drive for which to overwrite free space." msgstr "" "Escolla un cartafol escribíbel para cada unidade para a que queira " "sobrescribir o espazo libre." #. TRANSLATORS: In the preferences dialog, this button adds a path to #. the list of paths #: ../bleachbit/GuiPreferences.py:243 msgctxt "button" msgid "Add" msgstr "Engadir" #. TRANSLATORS: In the preferences dialog, this button removes a path #. from the list of paths #: ../bleachbit/GuiPreferences.py:247 ../bleachbit/GuiPreferences.py:458 msgctxt "button" msgid "Remove" msgstr "Retirar" #: ../bleachbit/GuiPreferences.py:272 msgid "All languages will be deleted except those checked." msgstr "Eliminaranse todos os idiomas agás aqueles marcados." #: ../bleachbit/GuiPreferences.py:288 msgid "Preserve" msgstr "Conservar" #: ../bleachbit/GuiPreferences.py:292 msgid "Code" msgstr "Código" #: ../bleachbit/GuiPreferences.py:313 ../bleachbit/GuiPreferences.py:354 msgid "Choose a file" msgstr "Escolla un ficheiro" #: ../bleachbit/GuiPreferences.py:320 ../bleachbit/GuiPreferences.py:361 #: ../bleachbit/GuiPreferences.py:405 msgid "File" msgstr "Ficheiro" #: ../bleachbit/GuiPreferences.py:334 ../bleachbit/GuiPreferences.py:375 #: ../bleachbit/GuiPreferences.py:407 msgid "Folder" msgstr "Cartafol" #: ../bleachbit/GuiPreferences.py:417 msgid "Theses paths will not be deleted or modified." msgstr "Os contidos destas rutas non serán eliminados ou modificados." #: ../bleachbit/GuiPreferences.py:420 msgid "These locations can be selected for deletion." msgstr "Estas localizacións poden ser seleccionadas para a súa eliminación." #: ../bleachbit/GuiPreferences.py:428 msgid "Type" msgstr "Tipo" #. TRANSLATORS: In the tree view "Path" is used generically to refer to a #. file, a folder, or a pattern describing either #: ../bleachbit/GuiPreferences.py:434 msgid "Path" msgstr "Ruta" #: ../bleachbit/GuiPreferences.py:446 msgctxt "button" msgid "Add file" msgstr "Engadir ficheiro" #: ../bleachbit/GuiPreferences.py:452 msgctxt "button" msgid "Add folder" msgstr "Engadir cartafol" bleachbit-2.0/po/my.po0000644000175000017500000012227113245436307013011 0ustar hlehle# Burmese translation for bleachbit # Copyright (c) 2012 Rosetta Contributors and Canonical Ltd 2012 # This file is distributed under the same license as the bleachbit package. # FIRST AUTHOR , 2012. # msgid "" msgstr "" "Project-Id-Version: bleachbit\n" "Report-Msgid-Bugs-To: FULL NAME \n" "POT-Creation-Date: 2012-11-15 21:07-0700\n" "PO-Revision-Date: 2012-11-20 11:43+0000\n" "Last-Translator: Pyae Sone \n" "Language-Team: Burmese \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=1; plural=0;\n" "X-Launchpad-Export-Date: 2012-11-25 22:08+0000\n" "X-Generator: Launchpad (build 16293)\n" #: ../cleaners/tremulous.xml ../cleaners/gl-117.xml ../cleaners/nexuiz.xml #: ../cleaners/hippo_opensim_viewer.xml ../cleaners/secondlife_viewer.xml msgid "Game" msgstr "ဂိမ်း" #: ../cleaners/tremulous.xml ../cleaners/chromium.xml ../cleaners/miro.xml #: ../cleaners/audacious.xml ../cleaners/xine.xml ../cleaners/kde.xml #: ../cleaners/pidgin.xml ../cleaners/seamonkey.xml ../cleaners/liferea.xml #: ../cleaners/beagle.xml ../cleaners/opera.xml ../cleaners/rhythmbox.xml #: ../cleaners/epiphany.xml ../cleaners/transmission.xml #: ../cleaners/nexuiz.xml ../cleaners/hippo_opensim_viewer.xml #: ../cleaners/vuze.xml ../cleaners/evolution.xml ../cleaners/exaile.xml #: ../cleaners/google_chrome.xml ../cleaners/emesene.xml ../cleaners/amsn.xml #: ../cleaners/yahoo_messenger.xml ../cleaners/thumbnails.xml #: ../cleaners/safari.xml ../cleaners/java.xml ../cleaners/flash.xml #: ../cleaners/thunderbird.xml ../cleaners/adobe_reader.xml #: ../cleaners/libreoffice.xml ../cleaners/gftp.xml ../cleaners/gpodder.xml #: ../cleaners/secondlife_viewer.xml ../bleachbit/Cleaner.py:186 #: ../bleachbit/Cleaner.py:304 ../bleachbit/Cleaner.py:371 msgid "Cache" msgstr "ခဏသိမ်းထားရာနေရာ" #: ../cleaners/tremulous.xml msgid "Delete the list of game servers" msgstr "ဂိမ်းဆာဗာများစာရင်းကိုဖျက်မည်" #: ../cleaners/yum.xml ../cleaners/miro.xml ../cleaners/audacious.xml #: ../cleaners/xine.xml ../cleaners/kde.xml ../cleaners/pidgin.xml #: ../cleaners/liferea.xml ../cleaners/beagle.xml ../cleaners/rhythmbox.xml #: ../cleaners/transmission.xml ../cleaners/nexuiz.xml ../cleaners/apt.xml #: ../cleaners/hippo_opensim_viewer.xml ../cleaners/vuze.xml #: ../cleaners/evolution.xml ../cleaners/exaile.xml ../cleaners/amsn.xml #: ../cleaners/yahoo_messenger.xml ../cleaners/thumbnails.xml #: ../cleaners/java.xml ../cleaners/windows_explorer.xml ../cleaners/flash.xml #: ../cleaners/adobe_reader.xml ../cleaners/libreoffice.xml #: ../cleaners/gftp.xml ../cleaners/gpodder.xml #: ../cleaners/secondlife_viewer.xml ../bleachbit/Cleaner.py:304 #: ../bleachbit/Cleaner.py:371 ../bleachbit/Cleaner.py:393 #: ../bleachbit/Cleaner.py:395 msgid "Delete the cache" msgstr "cache ကိုဖျက်မည်" #. TRANSLATORS: Vacuum is a verb. The term is jargon #. from the SQLite database. Microsoft Access uses #. the term 'Compact Database' (which you may translate #. instead). Another synonym is 'defragment.' #: ../cleaners/yum.xml ../cleaners/chromium.xml ../cleaners/liferea.xml #: ../cleaners/google_chrome.xml ../cleaners/safari.xml #: ../cleaners/thunderbird.xml ../cleaners/gpodder.xml #: ../bleachbit/Action.py:334 ../bleachbit/Cleaner.py:197 #: ../bleachbit/Cleaner.py:294 msgid "Vacuum" msgstr "" #: ../cleaners/yum.xml ../cleaners/chromium.xml ../cleaners/liferea.xml #: ../cleaners/google_chrome.xml ../cleaners/safari.xml #: ../cleaners/thunderbird.xml ../cleaners/gpodder.xml #: ../bleachbit/Cleaner.py:197 msgid "" "Clean database fragmentation to reduce space and improve speed without " "removing any data" msgstr "" #: ../cleaners/chromium.xml ../cleaners/internet_explorer.xml #: ../cleaners/seamonkey.xml ../cleaners/opera.xml ../cleaners/epiphany.xml #: ../cleaners/google_chrome.xml ../cleaners/safari.xml ../cleaners/links2.xml #: ../cleaners/elinks.xml ../cleaners/konqueror.xml #: ../bleachbit/Cleaner.py:209 msgid "Web browser" msgstr "အင်တာနက်ကြည့်ရှု့ရန်" #: ../cleaners/chromium.xml ../cleaners/seamonkey.xml ../cleaners/opera.xml #: ../cleaners/epiphany.xml ../cleaners/google_chrome.xml #: ../cleaners/safari.xml ../cleaners/thunderbird.xml #: ../bleachbit/Cleaner.py:186 msgid "Delete the web cache, which reduces time to display revisited pages" msgstr "" #: ../cleaners/chromium.xml ../cleaners/internet_explorer.xml #: ../cleaners/seamonkey.xml ../cleaners/liferea.xml ../cleaners/opera.xml #: ../cleaners/epiphany.xml ../cleaners/google_chrome.xml #: ../cleaners/safari.xml ../cleaners/flash.xml ../cleaners/thunderbird.xml #: ../cleaners/konqueror.xml ../cleaners/realplayer.xml #: ../cleaners/silverlight.xml ../bleachbit/Cleaner.py:187 msgid "Cookies" msgstr "Cookies" #: ../cleaners/chromium.xml ../cleaners/internet_explorer.xml #: ../cleaners/seamonkey.xml ../cleaners/liferea.xml ../cleaners/opera.xml #: ../cleaners/epiphany.xml ../cleaners/google_chrome.xml #: ../cleaners/safari.xml ../cleaners/flash.xml ../cleaners/thunderbird.xml #: ../cleaners/konqueror.xml ../cleaners/realplayer.xml #: ../cleaners/silverlight.xml ../bleachbit/Cleaner.py:187 msgid "" "Delete cookies, which contain information such as web site preferences, " "authentication, and tracking identification" msgstr "" #. TRANSLATORS: DOM = Document Object Model. #: ../cleaners/chromium.xml ../cleaners/opera.xml #: ../cleaners/google_chrome.xml ../bleachbit/Cleaner.py:190 msgid "DOM Storage" msgstr "DOM သိမ်းဆည်းရေး" #: ../cleaners/chromium.xml ../cleaners/opera.xml #: ../cleaners/google_chrome.xml ../bleachbit/Cleaner.py:190 msgid "Delete HTML5 cookies" msgstr "HTML5 cookie များကိုဖျက်မည်" #: ../cleaners/chromium.xml ../cleaners/internet_explorer.xml #: ../cleaners/google_chrome.xml ../bleachbit/Cleaner.py:192 msgid "Form history" msgstr "Form ရာဇဝင်" #: ../cleaners/chromium.xml ../cleaners/google_chrome.xml msgid "A history of forms entered in web sites" msgstr "Websites များတွင်ရိုက်ဖြည့်ခဲ့သော ပုံစံ(form) ၏ရာဇဝင်" #: ../cleaners/chromium.xml ../cleaners/d4x.xml ../cleaners/vim.xml #: ../cleaners/internet_explorer.xml ../cleaners/mc.xml #: ../cleaners/seamonkey.xml ../cleaners/windows_defender.xml #: ../cleaners/google_chrome.xml ../cleaners/nautilus.xml #: ../cleaners/safari.xml ../cleaners/bash.xml ../cleaners/links2.xml #: ../cleaners/elinks.xml ../cleaners/tortoisesvn.xml #: ../cleaners/libreoffice.xml ../cleaners/realplayer.xml msgid "History" msgstr "ရာဇဝင်" #: ../cleaners/chromium.xml ../cleaners/google_chrome.xml msgid "" "Delete the history which includes visited sites, downloads, and thumbnails" msgstr "" #: ../cleaners/chromium.xml ../cleaners/google_chrome.xml msgid "Search engines" msgstr "ရှာဖွေရေးအင်ဂျင်များ" #. 'Factory' means a search engine that is installed by default 'from the factory,' but this is different than a 'default search engine' https://lists.launchpad.net/launchpad-translators/msg00283.html #: ../cleaners/chromium.xml ../cleaners/google_chrome.xml msgid "" "Reset the search engine usage history and delete non-factory search engines, " "some of which are added automatically" msgstr "" #: ../cleaners/chromium.xml ../cleaners/opera.xml ../cleaners/konqueror.xml msgid "Current session" msgstr "" #: ../cleaners/chromium.xml ../cleaners/opera.xml ../cleaners/konqueror.xml msgid "Delete the current session" msgstr "" #: ../cleaners/d4x.xml ../cleaners/mc.xml ../cleaners/nautilus.xml #: ../cleaners/gnome.xml ../cleaners/links2.xml ../cleaners/tortoisesvn.xml #: ../cleaners/libreoffice.xml ../cleaners/realplayer.xml #: ../bleachbit/Cleaner.py:284 ../bleachbit/Cleaner.py:355 msgid "Delete the usage history" msgstr "အသုံးပြုခြင်းရာဇဝင်ကိုဖျက်မည်" #: ../cleaners/vim.xml ../cleaners/gedit.xml msgid "Editor" msgstr "အယ်ဒီတာ" #: ../cleaners/vim.xml msgid "" "Delete ~/.viminfo which includes file history, command history, and buffers" msgstr "" "ဖိုင်ရာဇဝင်၊ command ရာဇဝင်၊ နှင့် buffer များပါဝင်သည့်ဖိုင် ~/.viminfo " "ကိုဖျက်မည်။" #: ../cleaners/miro.xml ../cleaners/xine.xml ../cleaners/flash.xml msgid "Multimedia viewer" msgstr "" #: ../cleaners/miro.xml ../cleaners/audacious.xml ../cleaners/screenlets.xml #: ../cleaners/hippo_opensim_viewer.xml ../cleaners/vuze.xml #: ../cleaners/exaile.xml ../cleaners/easytag.xml #: ../cleaners/yahoo_messenger.xml ../cleaners/teamviewer.xml #: ../cleaners/gftp.xml ../cleaners/amule.xml ../cleaners/realplayer.xml #: ../bleachbit/Cleaner.py:391 msgid "Logs" msgstr "" #: ../cleaners/miro.xml ../cleaners/audacious.xml ../cleaners/screenlets.xml #: ../cleaners/hippo_opensim_viewer.xml ../cleaners/vuze.xml #: ../cleaners/exaile.xml ../cleaners/yahoo_messenger.xml #: ../cleaners/teamviewer.xml ../cleaners/gftp.xml ../cleaners/amule.xml #: ../cleaners/realplayer.xml ../bleachbit/Cleaner.py:391 msgid "Delete the logs" msgstr "log များကိုဖျက်မည်" #: ../cleaners/gl-117.xml ../cleaners/beagle.xml ../cleaners/x11.xml #: ../cleaners/microsoft_office.xml ../cleaners/secondlife_viewer.xml msgid "Debug logs" msgstr "" #: ../cleaners/gl-117.xml ../cleaners/beagle.xml ../cleaners/x11.xml #: ../cleaners/microsoft_office.xml ../cleaners/easytag.xml #: ../cleaners/secondlife_viewer.xml msgid "Delete the debug logs" msgstr "" #: ../cleaners/internet_explorer.xml ../bleachbit/Cleaner.py:192 msgid "A history of forms entered in web sites and in the Search bar" msgstr "" #: ../cleaners/internet_explorer.xml ../cleaners/opera.xml #: ../cleaners/safari.xml ../cleaners/konqueror.xml #: ../bleachbit/Cleaner.py:196 msgid "List of visited web pages" msgstr "အလည်အပတ်သွားခဲ့သော web စာမျက်နှာများစာရင်း" #: ../cleaners/internet_explorer.xml ../cleaners/kde.xml ../cleaners/vuze.xml #: ../cleaners/deepscan.xml ../cleaners/gimp.xml ../cleaners/google_earth.xml #: ../cleaners/adobe_reader.xml ../cleaners/amule.xml #: ../cleaners/winetricks.xml ../cleaners/wine.xml ../bleachbit/Cleaner.py:407 msgid "Temporary files" msgstr "ယာယီဖိုင်" #: ../cleaners/internet_explorer.xml ../cleaners/kde.xml ../cleaners/vuze.xml #: ../cleaners/deepscan.xml ../cleaners/gimp.xml ../cleaners/google_earth.xml #: ../cleaners/adobe_reader.xml ../cleaners/amule.xml #: ../cleaners/winetricks.xml ../cleaners/wine.xml ../bleachbit/Cleaner.py:407 msgid "Delete the temporary files" msgstr "ယာယီဖိုင်များကိုဖျက်မည်" #: ../cleaners/audacious.xml ../cleaners/filezilla.xml ../cleaners/winrar.xml #: ../cleaners/wordpad.xml ../cleaners/winamp.xml #: ../cleaners/windows_media_player.xml ../cleaners/microsoft_office.xml #: ../cleaners/winzip.xml ../cleaners/vlc.xml ../cleaners/windows_explorer.xml #: ../cleaners/teamviewer.xml ../cleaners/adobe_reader.xml #: ../cleaners/paint.xml ../bleachbit/Cleaner.py:305 msgid "Most recently used" msgstr "မကြာသေးခင်ကဖွင့်ခဲ့သော" #: ../cleaners/audacious.xml ../cleaners/kde.xml ../cleaners/filezilla.xml #: ../cleaners/gwenview.xml ../cleaners/gedit.xml #: ../cleaners/windows_explorer.xml ../cleaners/adobe_reader.xml #: ../bleachbit/Cleaner.py:305 ../bleachbit/Cleaner.py:383 msgid "Delete the list of recently used documents" msgstr "မကြာသေးခင်ကဖွင့်ခဲ့သော စာရင်းကိုဖျက်မည်" #: ../cleaners/kde.xml ../cleaners/gwenview.xml ../cleaners/gedit.xml #: ../cleaners/windows_explorer.xml ../bleachbit/Cleaner.py:383 msgid "Recent documents list" msgstr "မကြားသေးခင်က စာရွက်စာတမ်းစာရင်း" #: ../cleaners/pidgin.xml ../cleaners/xchat.xml ../cleaners/emesene.xml #: ../cleaners/amsn.xml ../cleaners/yahoo_messenger.xml msgid "Chat client" msgstr "" #: ../cleaners/pidgin.xml ../cleaners/seamonkey.xml ../cleaners/xchat.xml #: ../cleaners/emesene.xml ../cleaners/amsn.xml #: ../cleaners/yahoo_messenger.xml ../cleaners/skype.xml msgid "Chat logs" msgstr "Chat သိမ်းထားချက်များ" #: ../cleaners/pidgin.xml ../cleaners/seamonkey.xml ../cleaners/xchat.xml #: ../cleaners/emesene.xml ../cleaners/amsn.xml #: ../cleaners/yahoo_messenger.xml ../cleaners/skype.xml msgid "Delete the chat logs" msgstr "Chat သိမ်းထားမှု့များကိုဖျက်မည်" #: ../cleaners/seamonkey.xml ../cleaners/opera.xml ../bleachbit/Cleaner.py:191 msgid "Download history" msgstr "ဒေါင်းလုတ်ရာဇဝင်" #: ../cleaners/seamonkey.xml ../cleaners/opera.xml ../bleachbit/Cleaner.py:191 msgid "List of files downloaded" msgstr "ဒေါင်းလုတ်ဆွဲပြီးခဲ့သောစာရင်းများ" #: ../cleaners/seamonkey.xml msgid "Delete the list of visited web pages" msgstr "အလည်အပတ်သွားခဲ့သော Web စာမျက်နှာများ စာရင်းကိုဖျက်မည်" #: ../cleaners/screenlets.xml msgid "Widgets for the desktop" msgstr "desktop အတွက် widgets" #: ../cleaners/beagle.xml ../cleaners/recoll.xml msgid "Search tool" msgstr "" #: ../cleaners/beagle.xml msgid "Search indexes" msgstr "" #: ../cleaners/beagle.xml msgid "Delete the search indexes" msgstr "" #: ../cleaners/filezilla.xml ../cleaners/transmission.xml ../cleaners/vuze.xml #: ../cleaners/gftp.xml ../cleaners/amule.xml msgid "File transfer client" msgstr "" #: ../cleaners/windows_defender.xml ../cleaners/deepscan.xml #: ../bleachbit/Cleaner.py:188 msgid "Delete the files" msgstr "ဖိုင်များကိုဖျက်မည်" #: ../cleaners/opera.xml ../cleaners/google_toolbar.xml ../cleaners/gnome.xml #: ../cleaners/windows_explorer.xml msgid "Search history" msgstr "ရာဇဝင်ကိုရှာမည်" #: ../cleaners/opera.xml ../cleaners/google_toolbar.xml ../cleaners/gnome.xml #: ../cleaners/windows_explorer.xml msgid "Delete the search history" msgstr "ရှာဖွေထားသည့်ရာဇဝင်ကိုဖျက်မည်" #: ../cleaners/opera.xml ../cleaners/konqueror.xml ../bleachbit/Cleaner.py:196 msgid "URL history" msgstr "URL ရာဇဝင်" #: ../cleaners/winrar.xml ../cleaners/wordpad.xml ../cleaners/winamp.xml #: ../cleaners/windows_media_player.xml ../cleaners/microsoft_office.xml #: ../cleaners/winzip.xml ../cleaners/vlc.xml ../cleaners/windows_explorer.xml #: ../cleaners/teamviewer.xml ../cleaners/paint.xml msgid "Delete the most recently used list" msgstr "သိပ်မကြာသေးခင်က သုံးခဲ့သောစာရင်းများကိုဖျက်မည်" #: ../cleaners/epiphany.xml ../cleaners/thunderbird.xml #: ../bleachbit/Cleaner.py:195 msgid "Passwords" msgstr "စကားဝှက်များ" #: ../cleaners/epiphany.xml ../cleaners/thunderbird.xml #: ../bleachbit/Cleaner.py:195 msgid "" "A database of usernames and passwords as well as a list of sites that should " "not store passwords" msgstr "" #: ../cleaners/epiphany.xml msgid "Places" msgstr "နေရာများ" #: ../cleaners/epiphany.xml msgid "" "A database of URLs including bookmarks, favicons, and a history of visited " "web sites" msgstr "" #: ../cleaners/epiphany.xml msgid "This option deletes all bookmarks." msgstr "ဒီ option သည် မှတ်တမ်းများအားလုံးကိုဖျက်သွားပါလိမ့်မည်။" #: ../cleaners/microsoft_office.xml ../cleaners/libreoffice.xml #: ../bleachbit/Cleaner.py:315 msgid "Office suite" msgstr "" #: ../cleaners/apt.xml msgid "Delete obsolete files" msgstr "" #: ../cleaners/vuze.xml ../cleaners/deepscan.xml msgid "Backup files" msgstr "နောက်ပြန်သုံးရန်သိမ်းထားသည့်ဖိုင်များ" #: ../cleaners/vuze.xml ../cleaners/deepscan.xml msgid "Delete the backup files" msgstr "နောက်ပြန်သုံးရန်သိမ်းထားသည့်ဖိုင်များ ဖျက်မည်" #: ../cleaners/exaile.xml msgid "Downloaded podcasts" msgstr "" #: ../cleaners/exaile.xml msgid "Delete downloaded podcasts" msgstr "downloaded podcasts များကိုဖျက်မည်" #: ../cleaners/google_chrome.xml msgid "Session" msgstr "ကဏ္ဍ" #: ../cleaners/google_chrome.xml msgid "Delete the current and last sessions" msgstr "ယခုနှင့် မကြာသေးခင်က ကဏ္ဍ ကိုဖျက်မည်" #: ../cleaners/emesene.xml msgid "Delete the avatars and emoticons cache" msgstr "" #: ../cleaners/deepscan.xml msgid "Deep scan" msgstr "နက်နက်နဲနဲစစ်မည်" #: ../cleaners/deepscan.xml msgid "Inspect the preview for any files you want to keep." msgstr "" #: ../cleaners/deepscan.xml msgid "This option is slow." msgstr "ဒီ option သည် နှေးကွေးသည်။" #: ../cleaners/nautilus.xml msgid "Custom folders will be reset." msgstr "" #: ../cleaners/thumbnails.xml ../cleaners/windows_explorer.xml msgid "Thumbnails" msgstr "" #: ../cleaners/bash.xml msgid "Delete the command history" msgstr "command history ကိုဖျက်မည်" #. In GNOME 'Run' is the dialog shown when typing ALT+F2' #. In Windows 'Run' is the dialog in the Start menu #: ../cleaners/gnome.xml ../cleaners/windows_explorer.xml msgid "Run" msgstr "" #: ../cleaners/elinks.xml msgid "Delete the cookies, visited URLs, and search history" msgstr "" "cookie များ၊ အလည်အပတ်သွားခဲ့သော URL များနှင့် ရှာဖွေထားသည့် " "ရာဇဝင်များကိုဖျက်မည်" #: ../cleaners/recoll.xml msgid "Index" msgstr "Index" #: ../cleaners/recoll.xml msgid "" "Delete the search index, a database of words and the files they contain" msgstr "" #: ../bleachbit.desktop msgid "Unnecessary file cleaner" msgstr "" #: ../bleachbit.desktop msgid "Free space and maintain privacy" msgstr "" #. TRANSLATORS: This is the label in the log indicating was #. skipped because it matches the whitelist #: ../bleachbit/Command.py:46 msgid "Skip" msgstr "ကျော်မည်" #. TRANSLATORS: This is the label in the log indicating will be #. deleted (for previews) or was actually deleted #: ../bleachbit/Command.py:73 msgid "Delete" msgstr "ဖျက်ရန်" #. TRANSLATORS: The file will be deleted when the #. system reboots #: ../bleachbit/Command.py:93 msgid "Mark for deletion" msgstr "ဖျက်ရန်အတွက်မှတ်ထားမည်" #. TRANSLATORS: Parts of this file will be deleted #: ../bleachbit/Command.py:183 ../bleachbit/Command.py:213 #: ../bleachbit/Action.py:203 ../bleachbit/Action.py:216 #: ../bleachbit/Action.py:228 ../bleachbit/Action.py:241 #: ../bleachbit/Action.py:253 msgid "Clean file" msgstr "ဖိုင်များကိုရှင်းမည်" #. TRANSLATORS: The file will be truncated to 0 bytes in length #: ../bleachbit/Command.py:250 msgid "Truncate" msgstr "" #: ../bleachbit/Command.py:289 msgid "Delete registry key" msgstr "registry key များကိုဖျက်မည်" #: ../bleachbit/Unix.py:366 ../bleachbit/Unix.py:396 ../bleachbit/Unix.py:576 #, python-format msgid "Executable not found: %s" msgstr "" #. TRANSLATORS: %s expands to a name such as 'Firefox' or 'System'. #: ../bleachbit/Unix.py:573 ../bleachbit/Worker.py:136 #, python-format msgid "" "%s cannot be cleaned because it is currently running. Close it, and try " "again." msgstr "" "%s ကိုမရှင်းနိုင်ပါ။ ထိုဖိုင်ကိုယခုဖွင့်ထားသည်။ ပိတ်ပြီး ပြန်ကြိုးစားကြည့်ပါ" #. TRANSLATORS: this is the context menu #: ../bleachbit/Action.py:307 ../bleachbit/GUI.py:585 msgid "Clean" msgstr "သန့်ရှင်း" #. TRANSLATORS: This is cleaner name for cleaners imported from winapp2.ini #: ../bleachbit/Winapp.py:45 msgid "Applications" msgstr "Applications" #. TRANSLATORS: This is cleaner name for cleaners imported from winapp2.ini #: ../bleachbit/Winapp.py:47 ../bleachbit/Winapp.py:55 #: ../bleachbit/Winapp.py:57 ../bleachbit/Winapp.py:59 #: ../bleachbit/Winapp.py:61 ../bleachbit/Winapp.py:63 msgid "Internet" msgstr "အင်တာနက်" #. TRANSLATORS: This is cleaner name for cleaners imported from winapp2.ini #: ../bleachbit/Winapp.py:49 msgid "Multimedia" msgstr "ရုပ်သံကဏ္ဍ" #. TRANSLATORS: This is cleaner name for cleaners imported from winapp2.ini #: ../bleachbit/Winapp.py:51 msgid "Utilities" msgstr "Utilities" #. TRANSLATORS: This is cleaner name for cleaners imported from winapp2.ini. #: ../bleachbit/Winapp.py:53 msgid "Microsoft Windows" msgstr "Microsoft Windows" #: ../bleachbit/Winapp.py:94 msgid "Imported from winapp2.ini" msgstr "winapp2.ini မှသွင်းပြီးပါပြီ။" #: ../bleachbit/Cleaner.py:188 msgid "Crash reports" msgstr "Crash သတင်းပို့ခြင်း" #: ../bleachbit/Cleaner.py:193 msgid "Session restore" msgstr "" #: ../bleachbit/Cleaner.py:193 msgid "Loads the initial session after the browser closes or crashes" msgstr "" #: ../bleachbit/Cleaner.py:194 msgid "Site preferences" msgstr "" #: ../bleachbit/Cleaner.py:194 msgid "Settings for individual sites" msgstr "" #. TRANSLATORS: desktop entries are .desktop files in Linux tha #. make up the application menu (the menu that shows BleachBit, #. Firefox, and others. The .desktop files also associate file #. types, so clicking on an .html file in Nautilus brings up #. Firefox. #. More information: http://standards.freedesktop.org/menu-spec/latest/index.html#introduction #: ../bleachbit/Cleaner.py:370 msgid "Broken desktop files" msgstr "ပျက်စီးနေသော desktop ဖိုင်များ" #: ../bleachbit/Cleaner.py:370 msgid "Delete broken application menu entries and file associations" msgstr "" #. TRANSLATORS: "Custom" is an option allowing the user to specify which files and folders will be erased. #: ../bleachbit/Cleaner.py:373 ../bleachbit/GuiPreferences.py:62 msgid "Custom" msgstr "စိတ်ကြိုက်" #: ../bleachbit/Cleaner.py:373 msgid "Delete user-specified files and folders" msgstr "" #. TRANSLATORS: Localizations are files supporting specific #. languages, so applications appear in Spanish, etc. #: ../bleachbit/Cleaner.py:376 msgid "Localizations" msgstr "" #: ../bleachbit/Cleaner.py:376 msgid "Delete files for unwanted languages" msgstr "မလိုအပ်သောဘာသာစကားများအတွက်ဖိုင်များကိုဖျက်မည်" #: ../bleachbit/Cleaner.py:377 msgid "Configure this option in the preferences." msgstr "" #. TRANSLATORS: 'Rotated logs' refers to old system log files. #. Linux systems often have a scheduled job to rotate the logs #. which means compress all except the newest log and then delete #. the oldest log. You could translate this 'old logs.' #: ../bleachbit/Cleaner.py:382 msgid "Rotated logs" msgstr "" #: ../bleachbit/Cleaner.py:382 msgid "Delete old system logs" msgstr "အဟောင်း system log များကိုဖျက်မည်" #: ../bleachbit/Cleaner.py:384 msgid "Trash" msgstr "အမှိုက်ပုံး" #: ../bleachbit/Cleaner.py:384 msgid "Empty the trash" msgstr "အမှိုက်ပုံးကိုရှင်းမည်" #: ../bleachbit/Cleaner.py:386 ../bleachbit/Cleaner.py:508 #: ../bleachbit/Worker.py:212 msgid "Memory" msgstr "မှတ်ဉာဏ်" #. TRANSLATORS: 'free' means 'unallocated' #: ../bleachbit/Cleaner.py:388 msgid "Wipe the swap and free memory" msgstr "" #: ../bleachbit/Cleaner.py:389 msgid "This option is experimental and may cause system problems." msgstr "" #: ../bleachbit/Cleaner.py:392 msgid "Memory dump" msgstr "" #: ../bleachbit/Cleaner.py:392 msgid "Delete the file memory.dmp" msgstr "" #. TRANSLATORS: Prefetch is Microsoft Windows jargon. #: ../bleachbit/Cleaner.py:395 msgid "Prefetch" msgstr "" #: ../bleachbit/Cleaner.py:396 msgid "Recycle bin" msgstr "အမှိုက်ပုံး" #: ../bleachbit/Cleaner.py:396 msgid "Empty the recycle bin" msgstr "အမှိုက်ပုံး ကိုရှင်းမည်" #. TRANSLATORS: 'Update' is a noun, and 'Update uninstallers' is an option to delete #. the uninstallers for software updates. #: ../bleachbit/Cleaner.py:399 msgid "Update uninstallers" msgstr "" #: ../bleachbit/Cleaner.py:399 msgid "" "Delete uninstallers for Microsoft updates including hotfixes, service packs, " "and Internet Explorer updates" msgstr "" #: ../bleachbit/Cleaner.py:401 ../bleachbit/Cleaner.py:603 msgid "Clipboard" msgstr "" #: ../bleachbit/Cleaner.py:401 msgid "" "The desktop environment's clipboard used for copy and paste operations" msgstr "" #. TRANSLATORS: 'free' means 'unallocated' #: ../bleachbit/Cleaner.py:403 msgid "Free disk space" msgstr "နေရာလွတ်" #. TRANSLATORS: 'free' means 'unallocated' #: ../bleachbit/Cleaner.py:405 msgid "Overwrite free disk space to hide deleted files" msgstr "" #: ../bleachbit/Cleaner.py:406 msgid "This option is very slow." msgstr "ဒီ option သည်အရမ်းနှေးပါသည်။" #: ../bleachbit/Cleaner.py:410 msgid "The system in general" msgstr "စနစ်သည်ယေဘုယျဖြစ်သည်" #: ../bleachbit/Cleaner.py:416 ../bleachbit/Cleaner.py:688 msgid "System" msgstr "ကွန်ပြူတာစနစ်ပိုင်းဆိုင်ရာ" #. TRANSLATORS: 'Free' means 'unallocated.' #. %s expands to a path such as C:\ or /tmp/ #: ../bleachbit/Cleaner.py:612 ../bleachbit/Cleaner.py:715 #, python-format msgid "Overwrite free disk space %s" msgstr "" #. TRANSLATORS: %s expands to a drive letter such as C:\ or D:\ #: ../bleachbit/Cleaner.py:640 #, python-format msgid "Recycle bin %s" msgstr "အမှိုက်ပုံး %s" #: ../bleachbit/GuiPreferences.py:55 ../bleachbit/GUI.py:637 msgid "Preferences" msgstr "" #: ../bleachbit/GuiPreferences.py:61 msgid "General" msgstr "အထွေထွေ" #: ../bleachbit/GuiPreferences.py:63 msgid "Drives" msgstr "" #: ../bleachbit/GuiPreferences.py:65 msgid "Languages" msgstr "ဘာသာစကားများ" #: ../bleachbit/GuiPreferences.py:66 msgid "Whitelist" msgstr "" #: ../bleachbit/GuiPreferences.py:111 msgid "Check periodically for software updates via the Internet" msgstr "" #: ../bleachbit/GuiPreferences.py:114 msgid "" "If an update is found, you will be given the option to view information " "about it. Then, you may manually download and install the update." msgstr "" #: ../bleachbit/GuiPreferences.py:120 msgid "Check for new beta releases" msgstr "beta အသစ်ထွက်ရှိမှု့များကိုစစ်မည်" #: ../bleachbit/GuiPreferences.py:127 msgid "Download and update cleaners from community (winapp2.ini)" msgstr "" #. TRANSLATORS: This means to hide cleaners which would do #. nothing. For example, if Firefox were never used on #. this system, this option would hide Firefox to simplify #. the list of cleaners. #: ../bleachbit/GuiPreferences.py:139 msgid "Hide irrelevant cleaners" msgstr "" #. TRANSLATORS: Overwriting is the same as shredding. It is a way #. to prevent recovery of the data. You could also translate #. 'Shred files to prevent recovery.' #: ../bleachbit/GuiPreferences.py:147 msgid "Overwrite files to hide contents" msgstr "" #: ../bleachbit/GuiPreferences.py:150 msgid "" "Overwriting is ineffective on some file systems and with certain BleachBit " "operations. Overwriting is significantly slower." msgstr "" #: ../bleachbit/GuiPreferences.py:153 msgid "Start BleachBit with computer" msgstr "ကွန်ပြူတာနှင့်အတူ BleachBit ကိုစမည်" #: ../bleachbit/GuiPreferences.py:164 ../bleachbit/GuiPreferences.py:295 #: ../bleachbit/GuiPreferences.py:341 ../bleachbit/GUI.py:545 msgid "Choose a folder" msgstr "ဖိုလ်ဒါ တစ်ခုရွေးချယ်ပါ" #. TRANSLATORS: 'free' means 'unallocated' #: ../bleachbit/GuiPreferences.py:189 msgid "" "Choose a writable folder for each drive for which to overwrite free space." msgstr "" #. TRANSLATORS: In the preferences dialog, this button adds a path to the list of paths #: ../bleachbit/GuiPreferences.py:210 msgctxt "button" msgid "Add" msgstr "ပေါင်းထည့်" #. TRANSLATORS: In the preferences dialog, this button removes a path from the list of paths #: ../bleachbit/GuiPreferences.py:213 ../bleachbit/GuiPreferences.py:433 msgctxt "button" msgid "Remove" msgstr "ဖယ်ရှား" #: ../bleachbit/GuiPreferences.py:238 msgid "All languages will be deleted except those checked." msgstr "ခြစ်ထားသည့်အရာများကလွဲလို့ ဘာသာစကားအားလုံးကိုဖျက်သွားပါလိမ့်မည်" #: ../bleachbit/GuiPreferences.py:255 msgid "Preserve" msgstr "" #: ../bleachbit/GuiPreferences.py:259 msgid "Code" msgstr "ကုဒ်" #: ../bleachbit/GuiPreferences.py:263 ../bleachbit/GUI.py:136 msgid "Name" msgstr "အမည်" #: ../bleachbit/GuiPreferences.py:281 ../bleachbit/GuiPreferences.py:327 msgid "Choose a file" msgstr "ဖိုင်ရွေးရန်။" #: ../bleachbit/GuiPreferences.py:288 ../bleachbit/GuiPreferences.py:334 #: ../bleachbit/GuiPreferences.py:381 msgid "File" msgstr "ဖိုင်" #: ../bleachbit/GuiPreferences.py:303 ../bleachbit/GuiPreferences.py:349 #: ../bleachbit/GuiPreferences.py:383 msgid "Folder" msgstr "ဖိုင်တွဲ" #. TRANSLATORS: "Paths" is used generically to refer to both files and folders #: ../bleachbit/GuiPreferences.py:391 msgid "Theses paths will not be deleted or modified." msgstr "" #: ../bleachbit/GuiPreferences.py:393 msgid "These locations can be selected for deletion." msgstr "ဖျက်ရန်အတွက် ဒီတည်နေရာကိုရွေးချယ်နိုင်သည်။" #: ../bleachbit/GuiPreferences.py:401 msgid "Type" msgstr "အမျိုးအစား" #. TRANSLATORS: In the tree view "Path" is used generically to refer to a #. file, a folder, or a pattern describing either #: ../bleachbit/GuiPreferences.py:407 msgid "Path" msgstr "လမ်းကြောင်း" #: ../bleachbit/GuiPreferences.py:419 msgctxt "button" msgid "Add file" msgstr "ဖိုင်ကိုထည့်မည်" #: ../bleachbit/GuiPreferences.py:426 msgctxt "button" msgid "Add folder" msgstr "" #: ../bleachbit/RecognizeCleanerML.py:63 msgid "Security warning" msgstr "လုံခြုံရေးသတိပေးချက်" #. TRANSLATORS: Cleaner definitions are XML data files that define #. which files will be cleaned. #: ../bleachbit/RecognizeCleanerML.py:75 msgid "" "These cleaner definitions are new or have changed. Malicious definitions can " "damage your system. If you do not trust these changes, delete the files or " "quit." msgstr "" #. TRANSLATORS: This is the column label (header) in the tree view for the security dialog #: ../bleachbit/RecognizeCleanerML.py:88 msgctxt "column_label" msgid "Delete" msgstr "ဖျက်ရန်" #. TRANSLATORS: This is the column label (header) in the tree view for the security dialog #: ../bleachbit/RecognizeCleanerML.py:91 msgctxt "column_label" msgid "Filename" msgstr "ဖိုင်အမည်" #. TRANSLATORS: This indicates an error. The special keyword #. %(operation)s will be replaced by 'firefox' or 'opera' or #. some other cleaner ID. The special keyword %(msg)s will be #. replaced by a message such as 'Permission denied.' #: ../bleachbit/Worker.py:76 #, python-format msgid "Exception while running operation '%(operation)s': '%(msg)s'" msgstr "" #. TRANSLATORS: 'free' means 'unallocated' #: ../bleachbit/Worker.py:210 msgid "Please wait. Wiping free disk space." msgstr "ခဏစောင့်ပါ။ နေရာလွတ်များကိုဖျက်နေပါသည်။" #. TRANSLATORS: %s is replaced with Firefox, System, etc. #: ../bleachbit/Worker.py:212 ../bleachbit/Worker.py:299 #, python-format msgid "Please wait. Cleaning %s." msgstr "ခဏစောင့်ပါ။ %s ကိုရှင်းနေပါသည်" #: ../bleachbit/Worker.py:222 #, python-format msgid "About %d minute remaining." msgid_plural "About %d minutes remaining." msgstr[0] "%d မိနစ်ခန့်ကျန်ပါသေးသည်" #. TRANSLATORS: This refers to disk space that was #. really recovered (in other words, not a preview) #: ../bleachbit/Worker.py:237 #, python-format msgid "Disk space recovered: %s" msgstr "" #. TRANSLATORS: This refers to a preview (no real #. changes were made yet) #: ../bleachbit/Worker.py:241 #, python-format msgid "Disk space to be recovered: %s" msgstr "" #. TRANSLATORS: This refers to the number of files really #. deleted (in other words, not a preview). #: ../bleachbit/Worker.py:246 #, python-format msgid "Files deleted: %d" msgstr "ဖျက်လိုက်သောဖိုင်များ- %d" #. TRANSLATORS: This refers to the number of files that #. would be deleted (in other words, simply a preview). #: ../bleachbit/Worker.py:250 #, python-format msgid "Files to be deleted: %d" msgstr "ဖျက်ရန်ဖိုင်များ - %d" #: ../bleachbit/Worker.py:253 #, python-format msgid "Special operations: %d" msgstr "" #: ../bleachbit/Worker.py:256 #, python-format msgid "Errors: %d" msgstr "ချို့ယွင်းချက် - %d" #. TRANSLATORS: The "deep scan" feature searches over broad #. areas of the file system such as the user's whole home directory #. or all the system executables. #: ../bleachbit/Worker.py:272 msgid "Please wait. Running deep scan." msgstr "ခဏစောင့်ပါ၊ နက်နက်ရှိုင်းရှိုင်းစစ်နေပါသည်။" #. TRANSLATORS: %s is replaced with Firefox, System, etc. #: ../bleachbit/Worker.py:302 #, python-format msgid "Please wait. Previewing %s." msgstr "ခဏစောင့်ပါ၊ %s ကိုကြိုတင်ကြည့်ရှု့နေပါသည်။" #: ../bleachbit/Update.py:75 msgid "New winapp2.ini was downloaded." msgstr "အသစ် winapp2.ini ကိုဒေါင်းလုတ်ချပြီးပါပြီ။" #: ../bleachbit/Update.py:111 msgid "Update BleachBit" msgstr "BleachBit အသစ်သို့မြင့်တင်မည်" #: ../bleachbit/Update.py:116 msgid "A new version is available." msgstr "ဗားရှင်းအသစ်ရရှိနိုင်ပါပြီ။" #. TRANSLATORS: %s expands to version such as '0.8.4' or '0.8.5beta' or similar #: ../bleachbit/Update.py:124 #, python-format msgid "Update to version %s" msgstr "ဗားရှင်း %s သို့မြင့်တင်မည်" #: ../bleachbit/CLI.py:123 #, python-format msgid "not a valid cleaner: %s" msgstr "" #. TRANSLATORS: This is the command line usage. Don't translate #. %prog, but do translate usage, options, cleaner, and option. #. More information about the command line is here #. http://bleachbit.sourceforge.net/documentation/command-line #: ../bleachbit/CLI.py:150 msgid "usage: %prog [options] cleaner.option1 cleaner.option2" msgstr "usage: %prog [options] cleaner.option1 cleaner.option2" #: ../bleachbit/CLI.py:153 msgid "list cleaners" msgstr "" #: ../bleachbit/CLI.py:155 msgid "delete files and make other permanent changes" msgstr "" #. TRANSLATORS: this is a warning for using --delete which will go away one day #: ../bleachbit/CLI.py:158 msgid "depreciated alias for --clean" msgstr "" #: ../bleachbit/CLI.py:160 msgid "show system information" msgstr "စက်၏အချက်အလက်များကိုပြမည်" #: ../bleachbit/CLI.py:161 msgid "launch the graphical interface" msgstr "graphical interface ကိုဖွင့်မည်" #: ../bleachbit/CLI.py:163 msgid "do not prompt for administrator privileges" msgstr "" #: ../bleachbit/CLI.py:168 msgid "preview files to be deleted and other changes" msgstr "" #: ../bleachbit/CLI.py:170 msgid "use options set in the graphical interface" msgstr "" #: ../bleachbit/CLI.py:172 msgid "output version information and exit" msgstr "" #: ../bleachbit/CLI.py:174 msgid "overwrite files to hide contents" msgstr "" #: ../bleachbit/GuiBasic.py:113 msgid "Delete confirmation" msgstr "ဖျက်ရန်အတည်ပြုချက်ရယူခြင်း" #: ../bleachbit/GuiBasic.py:121 msgid "" "Are you sure you want to permanently delete files according to the selected " "operations? The actual files that will be deleted may have changed since " "you ran the preview." msgstr "" #: ../bleachbit/GuiBasic.py:123 msgid "Are you sure you want to permanently delete these files?" msgstr "ဒီဖိုင်များအားလုံးကို လုံး၀ဖျက်လိုက်မည်ဆိုတာသေချာလား" #: ../bleachbit/GuiBasic.py:159 #, python-format msgid "" "Because you are running as root, please manually open this link in a web " "browser:\n" "%s" msgstr "" #. TRANSLATORS: %s expands to bleachbit.sourceforge.net or similar #: ../bleachbit/GuiBasic.py:171 #, python-format msgid "Open web browser to %s?" msgstr "" #: ../bleachbit/GUI.py:144 msgid "Active" msgstr "Active" #. TRANSLATORS: %(cleaner) may be Firefox, System, etc. #. %(option) may be cache, logs, cookies, etc. #. %(warning) may be 'This option is really slow' #: ../bleachbit/GUI.py:176 #, python-format msgid "" "Warning regarding %(cleaner)s - %(option)s:\n" "\n" "%(warning)s" msgstr "" #: ../bleachbit/GUI.py:346 msgid "You must select an operation" msgstr "လုပ်ဆောင်ချက်တစ်ခုခုကိုရွေးရမည်" #: ../bleachbit/GUI.py:369 ../bleachbit/GUI.py:384 msgid "Done." msgstr "လုပ်ဆောင်ပြီးပါပြီ" #: ../bleachbit/GUI.py:398 msgid "Program to clean unnecessary files" msgstr "မလိုအပ်သောဖိုင်များကို ရှင်းမည့်ပရိုဂရမ်" #: ../bleachbit/GUI.py:403 msgid "" "GNU General Public License version 3 or later.\n" "See http://www.gnu.org/licenses/gpl-3.0.txt" msgstr "" "GNU General Public License version 3 or later.\n" "http://www.gnu.org/licenses/gpl-3.0.txt ကိုကြည့်ပါ" #. TRANSLATORS: Maintain the names of translators here. #. Launchpad does this automatically for translations #. typed in Launchpad. This is a special string shown #. in the 'About' box. #: ../bleachbit/GUI.py:409 msgid "translator-credits" msgstr "" "Launchpad Contributions:\n" " Pyae Sone https://launchpad.net/~gipsyhnh" #: ../bleachbit/GUI.py:422 msgid "System information" msgstr "စနစ်အချက်အလက်များ" #: ../bleachbit/GUI.py:492 msgid "Choose files to shred" msgstr "" #: ../bleachbit/GUI.py:495 msgid "Choose folder to shred" msgstr "" #. TRANSLATORS: this is the context menu #: ../bleachbit/GUI.py:580 msgid "Preview" msgstr "ကြိုတင်ကြည့်ရှုရန်" #: ../bleachbit/GUI.py:631 msgid "_Shred Files" msgstr "_S ဝေမျှထားသောဖိုင်များ" #: ../bleachbit/GUI.py:632 msgid "Sh_red Folders" msgstr "_rဝေမျှထားသောဖိုင်များ" #: ../bleachbit/GUI.py:633 msgid "_Wipe Free Space" msgstr "_W နေရာလွတ်များဖျက်မည်" #: ../bleachbit/GUI.py:634 msgid "S_hred Settings and Quit" msgstr "" #: ../bleachbit/GUI.py:635 msgid "_Quit" msgstr "_Q ထွက်" #: ../bleachbit/GUI.py:636 msgid "_File" msgstr "_F ဖိုင်" #: ../bleachbit/GUI.py:638 msgid "_Edit" msgstr "_E ပြင်ဆင်ရန်" #: ../bleachbit/GUI.py:639 msgid "Help Contents" msgstr "အကူအညီမာတိကာ" #: ../bleachbit/GUI.py:641 msgid "_Release Notes" msgstr "" #: ../bleachbit/GUI.py:643 msgid "_System Information" msgstr "_S စနစ်အချက်အလက်များ" #: ../bleachbit/GUI.py:644 msgid "_About" msgstr "_Aအကြောင်း" #: ../bleachbit/GUI.py:645 msgid "_Help" msgstr "_H အကူအညီ" #. TRANSLATORS: This is the preview button on the main window. It previews changes. #: ../bleachbit/GUI.py:669 msgctxt "button" msgid "Preview" msgstr "ကြိုတင်ကြည့်ရှုရန်" #: ../bleachbit/GUI.py:672 msgid "Preview files in the selected operations (without deleting any files)" msgstr "" #. TRANSLATORS: This is the clean button on the main window. #. It makes permanent changes: usually deleting files, sometimes altering them. #: ../bleachbit/GUI.py:680 msgctxt "button" msgid "Clean" msgstr "သန့်ရှင်း" #: ../bleachbit/GUI.py:683 msgid "Clean files in the selected operations" msgstr "ရွေးချယ်ထားသောလုပ်ဆောင်ချက်များတွင် ဖိုင်များကိုရှင်းမည်" #: ../bleachbit/GUI.py:769 msgid "Error when checking for updates: " msgstr "" #: ../bleachbit/GUI.py:800 msgid "" "Error loading the SQLite module: the antivirus software may be blocking it." msgstr "" bleachbit-2.0/po/ru.po0000644000175000017500000015333313245436307013015 0ustar hlehle# Russian translation for bleachbit # Copyright (c) 2009 Rosetta Contributors and Canonical Ltd 2009 # This file is distributed under the same license as the bleachbit package. # FIRST AUTHOR , 2009. # msgid "" msgstr "" "Project-Id-Version: bleachbit\n" "Report-Msgid-Bugs-To: FULL NAME \n" "POT-Creation-Date: 2017-02-11 11:12-0700\n" "PO-Revision-Date: 2018-01-12 12:16+0000\n" "Last-Translator: Aleksey Kabanov \n" "Language-Team: Russian \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=3; plural=n%10==1 && n%100!=11 ? 0 : n%10>=2 && " "n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2;\n" "X-Launchpad-Export-Date: 2018-01-12 22:52+0000\n" "X-Generator: Launchpad (build 18532)\n" #: ../cleaners/mc.xml ../cleaners/tortoisesvn.xml ../cleaners/vim.xml #: ../cleaners/safari.xml ../cleaners/links2.xml ../cleaners/seamonkey.xml #: ../cleaners/realplayer.xml ../cleaners/windows_defender.xml #: ../cleaners/d4x.xml ../cleaners/sqlite3.xml #: ../cleaners/internet_explorer.xml ../cleaners/libreoffice.xml #: ../cleaners/easytag.xml ../cleaners/bash.xml ../cleaners/nautilus.xml #: ../cleaners/octave.xml ../cleaners/elinks.xml ../cleaners/chromium.xml #: ../cleaners/google_chrome.xml msgid "History" msgstr "Журнал" #: ../cleaners/mc.xml ../cleaners/tortoisesvn.xml ../cleaners/links2.xml #: ../cleaners/realplayer.xml ../cleaners/d4x.xml ../cleaners/libreoffice.xml #: ../cleaners/easytag.xml ../cleaners/nautilus.xml ../cleaners/gnome.xml #: ../bleachbit/Cleaner.py:349 ../bleachbit/Cleaner.py:423 #: ../bleachbit/Cleaner.py:432 msgid "Delete the usage history" msgstr "Удалить журнал использования" #: ../cleaners/gpodder.xml ../cleaners/hippo_opensim_viewer.xml #: ../cleaners/thumbnails.xml ../cleaners/safari.xml ../cleaners/emesene.xml #: ../cleaners/liferea.xml ../cleaners/seamonkey.xml ../cleaners/vuze.xml #: ../cleaners/yahoo_messenger.xml ../cleaners/pidgin.xml #: ../cleaners/adobe_reader.xml ../cleaners/evolution.xml #: ../cleaners/tremulous.xml ../cleaners/libreoffice.xml ../cleaners/xine.xml #: ../cleaners/nexuiz.xml ../cleaners/exaile.xml ../cleaners/opera.xml #: ../cleaners/amsn.xml ../cleaners/gftp.xml ../cleaners/miro.xml #: ../cleaners/beagle.xml ../cleaners/kde.xml ../cleaners/epiphany.xml #: ../cleaners/flash.xml ../cleaners/secondlife_viewer.xml ../cleaners/java.xml #: ../cleaners/chromium.xml ../cleaners/audacious.xml ../cleaners/rhythmbox.xml #: ../cleaners/google_chrome.xml ../cleaners/thunderbird.xml #: ../bleachbit/Cleaner.py:192 ../bleachbit/Cleaner.py:370 #: ../bleachbit/Cleaner.py:455 msgid "Cache" msgstr "Временные файлы" #: ../cleaners/gpodder.xml ../cleaners/yum.xml #: ../cleaners/hippo_opensim_viewer.xml ../cleaners/thumbnails.xml #: ../cleaners/windows_explorer.xml ../cleaners/liferea.xml #: ../cleaners/vuze.xml ../cleaners/yahoo_messenger.xml ../cleaners/pidgin.xml #: ../cleaners/adobe_reader.xml ../cleaners/evolution.xml #: ../cleaners/libreoffice.xml ../cleaners/apt.xml ../cleaners/xine.xml #: ../cleaners/nexuiz.xml ../cleaners/exaile.xml ../cleaners/amsn.xml #: ../cleaners/gftp.xml ../cleaners/miro.xml ../cleaners/beagle.xml #: ../cleaners/kde.xml ../cleaners/flash.xml ../cleaners/secondlife_viewer.xml #: ../cleaners/java.xml ../cleaners/audacious.xml ../cleaners/rhythmbox.xml #: ../bleachbit/Cleaner.py:370 ../bleachbit/Cleaner.py:455 #: ../bleachbit/Cleaner.py:489 ../bleachbit/Cleaner.py:491 msgid "Delete the cache" msgstr "Удалить временные файлы" #. TRANSLATORS: Vacuum is a verb. The term is jargon #. from the SQLite database. Microsoft Access uses #. the term 'Compact Database' (which you may translate #. instead). Another synonym is 'defragment.' #: ../cleaners/gpodder.xml ../cleaners/yum.xml ../cleaners/safari.xml #: ../cleaners/liferea.xml ../cleaners/chromium.xml #: ../cleaners/google_chrome.xml ../cleaners/thunderbird.xml #: ../bleachbit/Cleaner.py:214 ../bleachbit/Cleaner.py:360 #: ../bleachbit/Action.py:445 msgid "Vacuum" msgstr "Сжать базу данных" #: ../cleaners/gpodder.xml ../cleaners/yum.xml ../cleaners/safari.xml #: ../cleaners/liferea.xml ../cleaners/chromium.xml #: ../cleaners/google_chrome.xml ../cleaners/thunderbird.xml #: ../bleachbit/Cleaner.py:215 msgid "" "Clean database fragmentation to reduce space and improve speed without " "removing any data" msgstr "" "Дефрагментировать базу данных для высвобождения места и увеличения скорости, " "без удаления данных" #: ../cleaners/yum.xml ../cleaners/apt.xml msgid "Package manager" msgstr "Менеджер пакетов" #: ../cleaners/warzone2100.xml ../cleaners/hippo_opensim_viewer.xml #: ../cleaners/gl-117.xml ../cleaners/tremulous.xml ../cleaners/nexuiz.xml #: ../cleaners/secondlife_viewer.xml msgid "Game" msgstr "Игра" #: ../cleaners/warzone2100.xml ../cleaners/hippo_opensim_viewer.xml #: ../cleaners/teamviewer.xml ../cleaners/realplayer.xml ../cleaners/vuze.xml #: ../cleaners/yahoo_messenger.xml ../cleaners/amule.xml #: ../cleaners/easytag.xml ../cleaners/exaile.xml ../cleaners/screenlets.xml #: ../cleaners/gftp.xml ../cleaners/miro.xml ../cleaners/audacious.xml #: ../bleachbit/Cleaner.py:486 msgid "Logs" msgstr "Журналы событий" #: ../cleaners/warzone2100.xml ../cleaners/hippo_opensim_viewer.xml #: ../cleaners/teamviewer.xml ../cleaners/realplayer.xml ../cleaners/vuze.xml #: ../cleaners/yahoo_messenger.xml ../cleaners/amule.xml ../cleaners/exaile.xml #: ../cleaners/screenlets.xml ../cleaners/gftp.xml ../cleaners/miro.xml #: ../cleaners/audacious.xml ../bleachbit/Cleaner.py:486 msgid "Delete the logs" msgstr "Удалить журналы" #: ../cleaners/thumbnails.xml ../cleaners/windows_explorer.xml msgid "Thumbnails" msgstr "Миниатюры" #: ../cleaners/thumbnails.xml msgid "Icons for files on the system" msgstr "Значки для файлов в системе" #: ../cleaners/vim.xml ../cleaners/gedit.xml msgid "Editor" msgstr "Редактор" #: ../cleaners/vim.xml msgid "" "Delete ~/.viminfo which includes file history, command history, and buffers" msgstr "" "Удалить файл ~/.viminfo, содержащий журнал использования файлов, команд и " "буферов" #: ../cleaners/filezilla.xml ../cleaners/transmission.xml ../cleaners/vuze.xml #: ../cleaners/amule.xml ../cleaners/gftp.xml msgid "File transfer client" msgstr "Клиент для передачи файлов" #: ../cleaners/filezilla.xml ../cleaners/paint.xml #: ../cleaners/windows_media_player.xml ../cleaners/windows_explorer.xml #: ../cleaners/teamviewer.xml ../cleaners/microsoft_office.xml #: ../cleaners/vlc.xml ../cleaners/adobe_reader.xml ../cleaners/winamp.xml #: ../cleaners/winzip.xml ../cleaners/winrar.xml ../cleaners/audacious.xml #: ../cleaners/wordpad.xml ../bleachbit/Cleaner.py:371 msgid "Most recently used" msgstr "Недавние" #: ../cleaners/filezilla.xml ../cleaners/windows_explorer.xml #: ../cleaners/gwenview.xml ../cleaners/adobe_reader.xml ../cleaners/gedit.xml #: ../cleaners/kde.xml ../cleaners/audacious.xml ../bleachbit/Cleaner.py:372 #: ../bleachbit/Cleaner.py:469 msgid "Delete the list of recently used documents" msgstr "Удалить список недавно использованных документов" #: ../cleaners/skype.xml ../cleaners/emesene.xml #: ../cleaners/yahoo_messenger.xml ../cleaners/pidgin.xml ../cleaners/amsn.xml msgid "Chat client" msgstr "Клиент для общения" #: ../cleaners/skype.xml ../cleaners/hexchat.xml ../cleaners/emesene.xml #: ../cleaners/seamonkey.xml ../cleaners/yahoo_messenger.xml #: ../cleaners/pidgin.xml ../cleaners/amsn.xml msgid "Chat logs" msgstr "Журналы разговоров" #: ../cleaners/skype.xml ../cleaners/hexchat.xml ../cleaners/emesene.xml #: ../cleaners/seamonkey.xml ../cleaners/yahoo_messenger.xml #: ../cleaners/pidgin.xml ../cleaners/amsn.xml msgid "Delete the chat logs" msgstr "Удалить журналы разговоров" #: ../cleaners/skype.xml msgid "Installers" msgstr "Установщики" #: ../cleaners/skype.xml msgid "Delete cached patches and installers" msgstr "Удалить кэшированные обновления и установщики" #: ../cleaners/hexchat.xml msgid "IRC client formerly known as XChat" msgstr "IRC-клиент, ранее известный как XChat" #: ../cleaners/safari.xml ../cleaners/links2.xml ../cleaners/seamonkey.xml #: ../cleaners/konqueror.xml ../cleaners/internet_explorer.xml #: ../cleaners/opera.xml ../cleaners/epiphany.xml ../cleaners/elinks.xml #: ../cleaners/chromium.xml ../cleaners/google_chrome.xml #: ../bleachbit/Cleaner.py:226 msgid "Web browser" msgstr "Веб-обозреватель" #: ../cleaners/safari.xml ../cleaners/seamonkey.xml ../cleaners/opera.xml #: ../cleaners/epiphany.xml ../cleaners/chromium.xml #: ../cleaners/google_chrome.xml ../cleaners/thunderbird.xml #: ../bleachbit/Cleaner.py:193 msgid "Delete the web cache, which reduces time to display revisited pages" msgstr "" "Удалить временные файлы интернета, которые уменьшают время загрузки ранее " "посещённых страниц" #: ../cleaners/safari.xml ../cleaners/liferea.xml ../cleaners/seamonkey.xml #: ../cleaners/realplayer.xml ../cleaners/konqueror.xml #: ../cleaners/internet_explorer.xml ../cleaners/opera.xml #: ../cleaners/epiphany.xml ../cleaners/flash.xml ../cleaners/silverlight.xml #: ../cleaners/chromium.xml ../cleaners/google_chrome.xml #: ../cleaners/thunderbird.xml ../bleachbit/Cleaner.py:194 msgid "Cookies" msgstr "Cookies" #: ../cleaners/safari.xml ../cleaners/liferea.xml ../cleaners/seamonkey.xml #: ../cleaners/realplayer.xml ../cleaners/konqueror.xml #: ../cleaners/internet_explorer.xml ../cleaners/opera.xml #: ../cleaners/epiphany.xml ../cleaners/flash.xml ../cleaners/silverlight.xml #: ../cleaners/chromium.xml ../cleaners/google_chrome.xml #: ../cleaners/thunderbird.xml ../bleachbit/Cleaner.py:195 msgid "" "Delete cookies, which contain information such as web site preferences, " "authentication, and tracking identification" msgstr "" "Удалить cookies, содержащие информацию о настройках веб-сайта, " "аутентификации и отслеживании" #: ../cleaners/safari.xml ../cleaners/konqueror.xml #: ../cleaners/internet_explorer.xml ../cleaners/opera.xml #: ../bleachbit/Cleaner.py:213 msgid "List of visited web pages" msgstr "Список посещённых веб-страниц" #. Torrent software can block a list of IP addresses, such as those that may belong to malware or anti-piracy organizations #: ../cleaners/transmission.xml msgid "Blocklists" msgstr "Списки блокировки" #: ../cleaners/transmission.xml ../cleaners/windows_defender.xml #: ../cleaners/beagle.xml ../cleaners/thunderbird.xml ../cleaners/deepscan.xml #: ../bleachbit/Cleaner.py:197 msgid "Delete the files" msgstr "Удалить эти файлы" #: ../cleaners/transmission.xml msgid "Blocklists will need update to work." msgstr "Для работы необходимо обновление списков блокировки." #: ../cleaners/transmission.xml msgid "Torrents" msgstr "Торренты" #: ../cleaners/transmission.xml msgid "Delete the torrents (just the metadata but not the files described)" msgstr "Удалить торренты (только метаданные, не файлы)" #: ../cleaners/transmission.xml msgid "Statistics" msgstr "Статистика" #: ../cleaners/transmission.xml msgid "Delete the file" msgstr "Удалить файл" #: ../cleaners/paint.xml ../cleaners/windows_media_player.xml #: ../cleaners/windows_explorer.xml ../cleaners/teamviewer.xml #: ../cleaners/microsoft_office.xml ../cleaners/vlc.xml ../cleaners/winamp.xml #: ../cleaners/winzip.xml ../cleaners/winrar.xml ../cleaners/wordpad.xml msgid "Delete the most recently used list" msgstr "Удалить список недавно использовавшихся" #: ../cleaners/emesene.xml msgid "Delete the avatars and emoticons cache" msgstr "Удалить временные файлы значков и эмотиконов" #: ../cleaners/windows_media_player.xml ../cleaners/realplayer.xml #: ../cleaners/vlc.xml ../cleaners/winamp.xml msgid "Media player" msgstr "Медиаплеер" #: ../cleaners/windows_explorer.xml ../cleaners/nautilus.xml msgid "File manager" msgstr "Менеджер файлов" #: ../cleaners/windows_explorer.xml ../cleaners/gwenview.xml #: ../cleaners/gedit.xml ../cleaners/kde.xml ../bleachbit/Cleaner.py:468 #: ../bleachbit/Cleaner.py:663 msgid "Recent documents list" msgstr "Список недавно использованных документов" #: ../cleaners/windows_explorer.xml msgid "" "This option will reset pinned locations in Quick Access to their defaults." msgstr "" #. In Windows 'Run' is the dialog in the Start menu #. In GNOME 'Run' is the dialog shown when typing ALT+F2' #: ../cleaners/windows_explorer.xml ../cleaners/gnome.xml msgid "Run" msgstr "Выполнить (Alt+F2)" #: ../cleaners/windows_explorer.xml ../cleaners/opera.xml ../cleaners/gnome.xml #: ../cleaners/google_toolbar.xml msgid "Search history" msgstr "Журнал результатов поиска" #: ../cleaners/windows_explorer.xml ../cleaners/opera.xml ../cleaners/gnome.xml #: ../cleaners/google_toolbar.xml msgid "Delete the search history" msgstr "Удалить журнал поиска" #: ../cleaners/windows_explorer.xml msgid "This will restart Windows Explorer." msgstr "Это приведёт к перезапуску Проводника Windows." #: ../cleaners/gl-117.xml ../cleaners/microsoft_office.xml #: ../cleaners/beagle.xml ../cleaners/secondlife_viewer.xml ../cleaners/x11.xml msgid "Debug logs" msgstr "Журналы отладки" #: ../cleaners/gl-117.xml ../cleaners/microsoft_office.xml #: ../cleaners/easytag.xml ../cleaners/beagle.xml #: ../cleaners/secondlife_viewer.xml ../cleaners/x11.xml msgid "Delete the debug logs" msgstr "Удалить журналы отладки" #: ../cleaners/google_earth.xml ../cleaners/winetricks.xml ../cleaners/vuze.xml #: ../cleaners/adobe_reader.xml ../cleaners/amule.xml ../cleaners/wine.xml #: ../cleaners/internet_explorer.xml ../cleaners/gimp.xml ../cleaners/kde.xml #: ../cleaners/deepscan.xml ../bleachbit/Cleaner.py:520 msgid "Temporary files" msgstr "Временные файлы" #: ../cleaners/google_earth.xml ../cleaners/winetricks.xml ../cleaners/vuze.xml #: ../cleaners/adobe_reader.xml ../cleaners/amule.xml ../cleaners/wine.xml #: ../cleaners/internet_explorer.xml ../cleaners/gimp.xml ../cleaners/kde.xml #: ../cleaners/deepscan.xml ../bleachbit/Cleaner.py:520 msgid "Delete the temporary files" msgstr "Удалить временные файлы" #: ../cleaners/seamonkey.xml ../cleaners/opera.xml ../bleachbit/Cleaner.py:201 msgid "Download history" msgstr "Журнал загрузок" #: ../cleaners/seamonkey.xml ../cleaners/opera.xml ../bleachbit/Cleaner.py:201 msgid "List of files downloaded" msgstr "Список загруженных файлов" #: ../cleaners/seamonkey.xml msgid "Delete the list of visited web pages" msgstr "Удалить список посещённых веб-страниц" #: ../cleaners/vuze.xml ../cleaners/deepscan.xml ../bleachbit/Cleaner.py:190 msgid "Backup files" msgstr "Файлы резервных копий" #: ../cleaners/vuze.xml ../cleaners/deepscan.xml ../bleachbit/Cleaner.py:191 msgid "Delete the backup files" msgstr "Удалить файлы резервных копий" #: ../cleaners/konqueror.xml ../cleaners/opera.xml ../cleaners/chromium.xml msgid "Current session" msgstr "Текущий сеанс" #: ../cleaners/konqueror.xml ../cleaners/opera.xml ../cleaners/chromium.xml msgid "Delete the current session" msgstr "Удалить текущий сеанс" #: ../cleaners/konqueror.xml ../cleaners/opera.xml ../bleachbit/Cleaner.py:213 msgid "URL history" msgstr "Журнал веб-ссылок" #: ../cleaners/microsoft_office.xml ../cleaners/libreoffice.xml #: ../bleachbit/Cleaner.py:375 msgid "Office suite" msgstr "Офисный пакет" #: ../cleaners/windows_defender.xml msgid "Anti-virus" msgstr "Антивирус" #: ../cleaners/journald.xml msgid "System journals" msgstr "Системные журналы" #: ../cleaners/journald.xml msgid "Clean old system journals" msgstr "Очистить старые системные журналы" #: ../cleaners/adobe_reader.xml msgid "Document viewer" msgstr "Просмотрщик документов" #: ../cleaners/evolution.xml ../cleaners/thunderbird.xml msgid "Email client" msgstr "Почтовый клиент" #: ../cleaners/tremulous.xml msgid "Delete the list of game servers" msgstr "Удалить список игровых серверов" #: ../cleaners/sqlite3.xml ../cleaners/bash.xml ../cleaners/octave.xml msgid "Delete the command history" msgstr "Удалить журнал команд" #: ../cleaners/wine.xml msgid "Compatibility layer for Windows software" msgstr "Уровень совместимости для ПО Windows" #: ../cleaners/internet_explorer.xml ../cleaners/chromium.xml #: ../cleaners/google_chrome.xml ../bleachbit/Cleaner.py:202 msgid "Form history" msgstr "ЖУрнал форм ввода" #: ../cleaners/internet_explorer.xml ../bleachbit/Cleaner.py:203 msgid "A history of forms entered in web sites and in the Search bar" msgstr "ЖУрнал форм, заполненных на веб-сайтах и в поисковой панели" #. This software edits metadata tags, such as title and artist, in audio files #: ../cleaners/easytag.xml msgid "Audio files tagger" msgstr "Маркировщик аудиофайлов" #: ../cleaners/apt.xml msgid "Delete obsolete files" msgstr "Удалить устаревшие файлы" #: ../cleaners/apt.xml msgid "Package lists" msgstr "Списки пакетов" #: ../cleaners/xine.xml ../cleaners/miro.xml ../cleaners/flash.xml msgid "Multimedia viewer" msgstr "Мультимедийный обозреватель" #: ../cleaners/recoll.xml ../cleaners/beagle.xml msgid "Search tool" msgstr "Инструмент поиска" #: ../cleaners/recoll.xml ../cleaners/beagle.xml ../cleaners/thunderbird.xml msgid "Index" msgstr "Индекс" #: ../cleaners/recoll.xml msgid "" "Delete the search index, a database of words and the files they contain" msgstr "" "Удалить поисковый индекс, базу данных слов и файлы, которые они содержат" #: ../cleaners/gimp.xml msgid "Graphics editor" msgstr "Графический редактор" #: ../cleaners/exaile.xml msgid "Downloaded podcasts" msgstr "Загруженные подкасты" #: ../cleaners/exaile.xml msgid "Delete downloaded podcasts" msgstr "Удалить загруженные подкасты" #: ../cleaners/bash.xml msgid "Shell" msgstr "Командный интерпретатор" #. TRANSLATORS: DOM = Document Object Model. #: ../cleaners/opera.xml ../cleaners/epiphany.xml ../cleaners/chromium.xml #: ../cleaners/google_chrome.xml ../bleachbit/Cleaner.py:199 msgid "DOM Storage" msgstr "Хранилище DOM" #: ../cleaners/opera.xml ../cleaners/epiphany.xml ../cleaners/chromium.xml #: ../cleaners/google_chrome.xml ../bleachbit/Cleaner.py:199 msgid "Delete HTML5 cookies" msgstr "Удалить cookie HTML5" #: ../cleaners/opera.xml ../cleaners/epiphany.xml ../cleaners/chromium.xml #: ../cleaners/google_chrome.xml ../cleaners/thunderbird.xml #: ../bleachbit/Cleaner.py:208 msgid "Passwords" msgstr "Пароли" #: ../cleaners/opera.xml ../cleaners/epiphany.xml ../cleaners/chromium.xml #: ../cleaners/google_chrome.xml ../cleaners/thunderbird.xml #: ../bleachbit/Cleaner.py:209 msgid "" "A database of usernames and passwords as well as a list of sites that should " "not store passwords" msgstr "" "База данных имён пользователей и паролей, а также список сайтов, для которых " "не нужно сохранять пароли" #: ../cleaners/opera.xml ../cleaners/epiphany.xml ../cleaners/chromium.xml #: ../cleaners/google_chrome.xml ../cleaners/thunderbird.xml #: ../bleachbit/Cleaner.py:211 msgid "This option will delete your saved passwords." msgstr "Этот параметр удалит все сохранённые пароли." #: ../cleaners/nautilus.xml msgid "Custom folders will be reset." msgstr "Выбранные папки будут сброшены." #: ../cleaners/gnome.xml ../cleaners/kde.xml msgid "Desktop environment" msgstr "Среда рабочего стола" #: ../cleaners/screenlets.xml msgid "Widgets for the desktop" msgstr "Виджеты для рабочего стола" #: ../cleaners/epiphany.xml msgid "Places" msgstr "Места" #: ../cleaners/epiphany.xml msgid "" "A database of URLs including bookmarks, favicons, and a history of visited " "web sites" msgstr "" "База данных веб-ссылок, включая закладки, значки и журнал посещения веб-" "сайтов" #: ../cleaners/epiphany.xml msgid "This option deletes all bookmarks." msgstr "Этот параметр удаляет все закладки." #: ../cleaners/winrar.xml msgid "File archiver" msgstr "Архиватор файлов" #: ../cleaners/elinks.xml msgid "Delete the cookies, visited URLs, and search history" msgstr "Удалить cookie, посещённые веб-ссылки и журнал поиска" #: ../cleaners/chromium.xml ../cleaners/google_chrome.xml msgid "A history of forms entered in web sites" msgstr "Журнал форм ввода на веб-сайтах" #: ../cleaners/chromium.xml ../cleaners/google_chrome.xml msgid "" "Delete the history which includes visited sites, downloads, and thumbnails" msgstr "Удалить журнал, включая посещённые веб-сайты, загрузки и миниатюры." #: ../cleaners/chromium.xml ../cleaners/google_chrome.xml msgid "Search engines" msgstr "Поисковые системы" #. 'Factory' means a search engine that is installed by default 'from the factory,' but this is different than a 'default search engine' https://lists.launchpad.net/launchpad-translators/msg00283.html #: ../cleaners/chromium.xml ../cleaners/google_chrome.xml msgid "" "Reset the search engine usage history and delete non-factory search engines, " "some of which are added automatically" msgstr "" "Очистить журнал использования поисковых систем и удалить поисковые системы, " "которые были добавлены автоматически или самостоятельно" #: ../cleaners/audacious.xml msgid "Audio player" msgstr "Аудиоплеер" #: ../cleaners/rhythmbox.xml msgid "Database" msgstr "База данных" #: ../cleaners/rhythmbox.xml msgid "" "Delete the database, which contain information such as play count and last " "played" msgstr "" "Удалить базу данных, содержащую такую информацию, как число воспроизведений " "и последняя воспроизведённая композиция" #: ../cleaners/google_chrome.xml msgid "Session" msgstr "Сеанс" #: ../cleaners/google_chrome.xml msgid "Delete the current and last sessions" msgstr "Удалить текущий и последние сеансы" #: ../cleaners/x11.xml msgid "Windowing system" msgstr "Система управления окнами" #: ../cleaners/wordpad.xml msgid "Word processor" msgstr "Текстовый редактор" #: ../cleaners/deepscan.xml msgid "Deep scan" msgstr "Подробное сканирование" #: ../cleaners/deepscan.xml msgid "Clean files widely scattered across the disk" msgstr "Очистить файлы, разбросанные по диску" #: ../cleaners/deepscan.xml msgid "Inspect the preview for any files you want to keep." msgstr "" "Проверить предпросмотр на файлы, которые вы, возможно, хотите сохранить." #: ../cleaners/deepscan.xml msgid "This option is slow." msgstr "Скорость работы этого параметра медленная." #: ../bleachbit.desktop msgid "Unnecessary file cleaner" msgstr "Очистка от ненужных файлов" #: ../bleachbit.desktop msgid "Free space and maintain privacy" msgstr "" "Освобождение дискового пространства и обслуживание конфиденциальности" #: ../bleachbit/FileUtilities.py:668 msgid "" "There was at least one file on a file system that does not support advanced " "overwriting." msgstr "" #: ../bleachbit/Unix.py:574 #, python-format msgid "Executable not found: %s" msgstr "Исполнимый файл не найден: %s" #. TRANSLATORS: %s expands to a name such as 'Firefox' or 'System'. #: ../bleachbit/Unix.py:623 ../bleachbit/Worker.py:136 #, python-format msgid "" "%s cannot be cleaned because it is currently running. Close it, and try " "again." msgstr "" "%s нельзя очистить, так как он сейчас запущен. Закройте его и попробуйте " "снова." #: ../bleachbit/GuiBasic.py:112 msgid "Delete confirmation" msgstr "Подтверждение удаления" #: ../bleachbit/GuiBasic.py:122 msgid "" "Are you sure you want to permanently delete files according to the selected " "operations? The actual files that will be deleted may have changed since " "you ran the preview." msgstr "" "Вы уверены, что хотите навсегда удалить файлы, соответствующие выбранным " "операциям? Файлы, которые будут удалены, могли быть изменены после вашего " "последнего просмотра." #: ../bleachbit/GuiBasic.py:125 msgid "Are you sure you want to permanently delete these files?" msgstr "Вы уверены, что хотите навсегда удалить эти файлы?" #: ../bleachbit/GuiBasic.py:162 #, python-format msgid "" "Because you are running as root, please manually open this link in a web " "browser:\n" "%s" msgstr "" "Поскольку вы запустили программу от суперпользователя, пожалуйста, откройте " "эту ссылку в браузере вручную:\n" "%s" #. TRANSLATORS: %s expands to www.bleachbit.org or similar #: ../bleachbit/GuiBasic.py:174 #, python-format msgid "Open web browser to %s?" msgstr "Открыть страницу %s в браузере?" #. TRANSLATORS: This is the label in the log indicating was #. skipped because it matches the whitelist #: ../bleachbit/Command.py:47 msgid "Skip" msgstr "Пропустить" #. TRANSLATORS: This is the label in the log indicating will be #. deleted (for previews) or was actually deleted #: ../bleachbit/Command.py:77 msgid "Delete" msgstr "Удалить" #: ../bleachbit/Command.py:99 msgid "" "At least one file was locked by another process, so its contents could not " "be overwritten. It will be marked for deletion upon system reboot." msgstr "" #. TRANSLATORS: The file will be deleted when the #. system reboots #: ../bleachbit/Command.py:102 msgid "Mark for deletion" msgstr "Пометить для удаления после перезагрузки" #. TRANSLATORS: Parts of this file will be deleted #: ../bleachbit/Command.py:199 ../bleachbit/Command.py:233 #: ../bleachbit/Action.py:254 ../bleachbit/Action.py:267 #: ../bleachbit/Action.py:280 ../bleachbit/Action.py:293 #: ../bleachbit/Action.py:306 msgid "Clean file" msgstr "Очистить файл" #. TRANSLATORS: The file will be truncated to 0 bytes in length #: ../bleachbit/Command.py:275 msgid "Truncate" msgstr "Усечь до нулевого размера" #: ../bleachbit/Command.py:317 msgid "Delete registry key" msgstr "Удалить ключ реестра" #. TRANSLATORS: This is cleaner name for cleaners imported from winapp2.ini #: ../bleachbit/Winapp.py:44 msgid "Applications" msgstr "Приложения" #. TRANSLATORS: This is cleaner name for cleaners imported #. from winapp2.ini #: ../bleachbit/Winapp.py:47 msgid "Internet" msgstr "Интернет" #. TRANSLATORS: This is cleaner name for cleaners imported #. from winapp2.ini #: ../bleachbit/Winapp.py:50 msgid "Multimedia" msgstr "Мультимедиа" #. TRANSLATORS: This is cleaner name for cleaners imported #. from winapp2.ini #: ../bleachbit/Winapp.py:53 msgid "Utilities" msgstr "Утилиты" #: ../bleachbit/Winapp.py:64 msgid "Games" msgstr "Игры" #: ../bleachbit/Winapp.py:162 msgid "Imported from winapp2.ini" msgstr "Импортировано из winapp2.ini" #: ../bleachbit/Cleaner.py:197 msgid "Crash reports" msgstr "Отчёты об ошибках" #: ../bleachbit/Cleaner.py:204 msgid "Session restore" msgstr "Восстановление сеанса" #: ../bleachbit/Cleaner.py:205 msgid "Loads the initial session after the browser closes or crashes" msgstr "" "Загружает исходный сеанс после закрытия или аварийного закрытия веб-" "обозревателя" #: ../bleachbit/Cleaner.py:207 msgid "Site preferences" msgstr "Параметры сайта" #: ../bleachbit/Cleaner.py:207 msgid "Settings for individual sites" msgstr "Параметры для отдельных сайтов" #. TRANSLATORS: desktop entries are .desktop files in Linux that #. make up the application menu (the menu that shows BleachBit, #. Firefox, and others. The .desktop files also associate file #. types, so clicking on an .html file in Nautilus brings up #. Firefox. #. More information: #. http://standards.freedesktop.org/menu-spec/latest/index.html#introduction #: ../bleachbit/Cleaner.py:453 msgid "Broken desktop files" msgstr "Неисправные файлы рабочего стола" #: ../bleachbit/Cleaner.py:454 msgid "Delete broken application menu entries and file associations" msgstr "Удалить неисправные элементы меню приложений и сопоставления файлов" #. TRANSLATORS: Localizations are files supporting specific #. languages, so applications appear in Spanish, etc. #: ../bleachbit/Cleaner.py:458 msgid "Localizations" msgstr "Локализации" #: ../bleachbit/Cleaner.py:459 msgid "Delete files for unwanted languages" msgstr "Удалить файлы для ненужных языков" #: ../bleachbit/Cleaner.py:461 msgid "Configure this option in the preferences." msgstr "Настроить этот параметр в настройках." #: ../bleachbit/Cleaner.py:467 msgid "Rotated logs" msgstr "Старые журналы" #: ../bleachbit/Cleaner.py:467 msgid "Delete old system logs" msgstr "Удалить старые системные журналы" #: ../bleachbit/Cleaner.py:470 msgid "Trash" msgstr "Корзина" #: ../bleachbit/Cleaner.py:470 msgid "Empty the trash" msgstr "Очистить корзину" #: ../bleachbit/Cleaner.py:476 ../bleachbit/Cleaner.py:627 #: ../bleachbit/Worker.py:184 msgid "Memory" msgstr "Память" #. TRANSLATORS: 'free' means 'unallocated' #: ../bleachbit/Cleaner.py:478 msgid "Wipe the swap and free memory" msgstr "Очистить файл подкачки и высвободить память" #: ../bleachbit/Cleaner.py:480 msgid "This option is experimental and may cause system problems." msgstr "Это экспериментальный параметр и может вызвать неполадки в системе." #: ../bleachbit/Cleaner.py:488 msgid "Memory dump" msgstr "Дамп памяти" #: ../bleachbit/Cleaner.py:488 msgid "Delete the file memory.dmp" msgstr "Удалить файл memory.dmp" #. TRANSLATORS: Prefetch is Microsoft Windows jargon. #: ../bleachbit/Cleaner.py:491 msgid "Prefetch" msgstr "Упреждающая выборка из памяти (Prefetch)" #: ../bleachbit/Cleaner.py:493 msgid "Recycle bin" msgstr "Корзина" #: ../bleachbit/Cleaner.py:493 ../bleachbit/Cleaner.py:787 msgid "Empty the recycle bin" msgstr "Очистить корзину" #. TRANSLATORS: 'Update' is a noun, and 'Update uninstallers' is an option to delete #. the uninstallers for software updates. #: ../bleachbit/Cleaner.py:496 msgid "Update uninstallers" msgstr "Обновить программы удаления" #: ../bleachbit/Cleaner.py:497 msgid "" "Delete uninstallers for Microsoft updates including hotfixes, service packs, " "and Internet Explorer updates" msgstr "" "Удалить программы удаления обновлений Microsoft, включая исправления, пакеты " "обновлений, и обновления Internet Explorer" #: ../bleachbit/Cleaner.py:504 ../bleachbit/Cleaner.py:727 msgid "Clipboard" msgstr "Буфер обмена" #: ../bleachbit/Cleaner.py:505 msgid "" "The desktop environment's clipboard used for copy and paste operations" msgstr "" "Буфер обмена окружения рабочего стола, используемый для операций копирования " "и вставки" #. TRANSLATORS: "Custom" is an option allowing the user to specify which #. files and folders will be erased. #: ../bleachbit/Cleaner.py:512 ../bleachbit/GuiPreferences.py:66 msgid "Custom" msgstr "По выбору" #: ../bleachbit/Cleaner.py:513 msgid "Delete user-specified files and folders" msgstr "Удаление выбранных пользователем папок и файлов" #. TRANSLATORS: 'free' means 'unallocated' #: ../bleachbit/Cleaner.py:515 msgid "Free disk space" msgstr "Свободное место" #. TRANSLATORS: 'free' means 'unallocated' #: ../bleachbit/Cleaner.py:517 msgid "Overwrite free disk space to hide deleted files" msgstr "" "Перезаписать свободное дисковое пространство чтобы удалённые файлы " "невозможно было восстановить" #: ../bleachbit/Cleaner.py:518 msgid "This option is very slow." msgstr "Выполнение с этим параметром очень медленное." #: ../bleachbit/Cleaner.py:522 msgid "The system in general" msgstr "Система в целом" #: ../bleachbit/Cleaner.py:524 ../bleachbit/Cleaner.py:857 msgid "System" msgstr "Система" #. TRANSLATORS: 'Free' means 'unallocated.' #. %s expands to a path such as C:\ or /tmp/ #: ../bleachbit/Cleaner.py:735 ../bleachbit/Cleaner.py:890 #, python-format msgid "Overwrite free disk space %s" msgstr "Перезаписать свободное дисковое пространство в %s" #: ../bleachbit/RecognizeCleanerML.py:59 msgid "Security warning" msgstr "Предупреждение безопасности" #: ../bleachbit/RecognizeCleanerML.py:72 msgid "" "These cleaner definitions are new or have changed. Malicious definitions can " "damage your system. If you do not trust these changes, delete the files or " "quit." msgstr "" "Эти настройки уборщика новые или содержат изменения. Злонамеренные настройки " "могут повредить вашу систему. Если вы не доверяете этим изменениям, удалите " "файлы или выйдите." #: ../bleachbit/RecognizeCleanerML.py:88 msgctxt "column_label" msgid "Delete" msgstr "Удалить" #: ../bleachbit/RecognizeCleanerML.py:93 msgctxt "column_label" msgid "Filename" msgstr "Имя файла" #. TRANSLATORS: This indicates an error. The special keyword #. %(operation)s will be replaced by 'firefox' or 'opera' or #. some other cleaner ID. The special keyword %(msg)s will be #. replaced by a message such as 'Permission denied.' #: ../bleachbit/Worker.py:74 #, python-format msgid "Exception while running operation '%(operation)s': '%(msg)s'" msgstr "Ошибка во время выполнения операции '%(operation)s': '%(msg)s'" #. TRANSLATORS: 'free' means 'unallocated' #: ../bleachbit/Worker.py:182 msgid "Please wait. Wiping free disk space." msgstr "Подождите. Выполняется очистка свободного дискового пространства." #. TRANSLATORS: %s is replaced with Firefox, System, etc. #: ../bleachbit/Worker.py:184 ../bleachbit/Worker.py:332 #, python-format msgid "Please wait. Cleaning %s." msgstr "Пожалуйста, подождите. Очистка %s." #: ../bleachbit/Worker.py:199 msgid "Please wait. Wiping file system metadata." msgstr "Подождите. Выполняется удаление метаданных файловой системы." #: ../bleachbit/Worker.py:202 msgid "Please wait. Cleaning up after wiping file system metadata." msgstr "" "Подождите. Выполняется чистка после удаления метаданных файловой системы." #: ../bleachbit/Worker.py:205 #, python-format msgid "About %d minute remaining." msgid_plural "About %d minutes remaining." msgstr[0] "До окончания осталась %d минута." msgstr[1] "До окончания осталось %d минуты." msgstr[2] "До окончания осталось %d минут." #. TRANSLATORS: This refers to disk space that was #. really recovered (in other words, not a preview) #: ../bleachbit/Worker.py:272 #, python-format msgid "Disk space recovered: %s" msgstr "Освобожденное дисковое пространство: %s" #. TRANSLATORS: This refers to a preview (no real #. changes were made yet) #: ../bleachbit/Worker.py:276 #, python-format msgid "Disk space to be recovered: %s" msgstr "Дисковое пространство для освобождения: %s" #. TRANSLATORS: This refers to the number of files really #. deleted (in other words, not a preview). #: ../bleachbit/Worker.py:281 #, python-format msgid "Files deleted: %d" msgstr "Файлов удалено: %d" #. TRANSLATORS: This refers to the number of files that #. would be deleted (in other words, simply a preview). #: ../bleachbit/Worker.py:285 #, python-format msgid "Files to be deleted: %d" msgstr "Файлов для удаления: %d" #: ../bleachbit/Worker.py:288 #, python-format msgid "Special operations: %d" msgstr "Специальных операций: %d" #: ../bleachbit/Worker.py:291 #, python-format msgid "Errors: %d" msgstr "Ошибок: %d" #. TRANSLATORS: The "deep scan" feature searches over broad #. areas of the file system such as the user's whole home directory #. or all the system executables. #: ../bleachbit/Worker.py:306 msgid "Please wait. Running deep scan." msgstr "Пожалуйста, подождите. Идёт глубокое сканирование." #. TRANSLATORS: %s is replaced with Firefox, System, etc. #: ../bleachbit/Worker.py:335 #, python-format msgid "Please wait. Previewing %s." msgstr "Пожалуйста, подождите. Предпросмотр %s." #: ../bleachbit/Update.py:80 msgid "New winapp2.ini was downloaded." msgstr "Новый winapp2.ini был загружен." #: ../bleachbit/Update.py:125 msgid "Update BleachBit" msgstr "Обновить BleachBit" #: ../bleachbit/Update.py:130 msgid "A new version is available." msgstr "Доступна новая версия." #. TRANSLATORS: %s expands to version such as '0.8.4' or '0.8.5beta' or #. similar #: ../bleachbit/Update.py:139 #, python-format msgid "Update to version %s" msgstr "Обновить до версии %s" #: ../bleachbit/Update.py:164 #, python-format msgid "" "Error when opening a network connection to %s to check for updates. Please " "verify the network is working." msgstr "" "Ошибка при подключении к %s для проверки обновлений. Проверьте работу " "сетевого подключения." #: ../bleachbit/CLI.py:106 #, python-format msgid "not a valid cleaner: %s" msgstr "неверный шаблон очистки: %s" #. TRANSLATORS: This is the command line usage. Don't translate #. %prog, but do translate usage, options, cleaner, and option. #. More information about the command line is here #. https://www.bleachbit.org/documentation/command-line #: ../bleachbit/CLI.py:133 msgid "usage: %prog [options] cleaner.option1 cleaner.option2" msgstr "использование: %prog [options] cleaner.option1 cleaner.option2" #: ../bleachbit/CLI.py:136 msgid "list cleaners" msgstr "список шаблонов очистки" #. TRANSLATORS: predefined cleaners are for applications, such as Firefox and Flash. #. This is different than cleaning an arbitrary file, such as a #. spreadsheet on the desktop. #: ../bleachbit/CLI.py:141 msgid "run cleaners to delete files and make other permanent changes" msgstr "выполнение программы очистки файлов и внесение необратимых изменений" #: ../bleachbit/CLI.py:144 msgid "shred specific files or folders" msgstr "удаление отдельных файлов или папок" #: ../bleachbit/CLI.py:146 msgid "show system information" msgstr "показать информацию о системе" #: ../bleachbit/CLI.py:148 msgid "launch the graphical interface" msgstr "запустить графический интерфейс" #: ../bleachbit/CLI.py:152 msgid "do not prompt for administrator privileges" msgstr "не запрашивать привилегии администратора" #: ../bleachbit/CLI.py:157 msgid "preview files to be deleted and other changes" msgstr "просмотреть файлы на удаление и остальные изменения" #: ../bleachbit/CLI.py:161 msgid "use options set in the graphical interface" msgstr "использовать набор опций в графическом интерфейсе" #: ../bleachbit/CLI.py:164 msgid "update winapp2.ini, if a new version is available" msgstr "обновить winapp2.ini, если доступна новая версия" #: ../bleachbit/CLI.py:166 msgid "output version information and exit" msgstr "вывести информацию о версии и выйти" #: ../bleachbit/CLI.py:168 msgid "overwrite files to hide contents" msgstr "перезаписать файлы чтобы скрыть содержимое" #. TRANSLATORS: this is the context menu #: ../bleachbit/Action.py:382 ../bleachbit/GUI.py:632 msgid "Clean" msgstr "Очистка" #: ../bleachbit/Action.py:418 #, python-format msgid "Run external command: %s" msgstr "Выполнить внешнюю команду: %s" #: ../bleachbit/GUI.py:135 ../bleachbit/GuiPreferences.py:296 msgid "Name" msgstr "Название" #: ../bleachbit/GUI.py:143 msgid "Active" msgstr "Активировать" #. TRANSLATORS: Size is the label for the column that shows how #. much space an option would clean or did clean #: ../bleachbit/GUI.py:155 msgid "Size" msgstr "Размер" #. TRANSLATORS: %(cleaner) may be Firefox, System, etc. #. %(option) may be cache, logs, cookies, etc. #. %(warning) may be 'This option is really slow' #: ../bleachbit/GUI.py:186 #, python-format msgid "" "Warning regarding %(cleaner)s - %(option)s:\n" "\n" "%(warning)s" msgstr "" "Обратите внимание на %(cleaner)s - %(option)s:\n" "\n" "%(warning)s" #: ../bleachbit/GUI.py:372 msgid "You must select an operation" msgstr "Вы должны выбрать операцию" #: ../bleachbit/GUI.py:391 ../bleachbit/GUI.py:413 msgid "Done." msgstr "Выполнено." #: ../bleachbit/GUI.py:426 msgid "Program to clean unnecessary files" msgstr "Программа для удаления ненужных файлов" #: ../bleachbit/GUI.py:436 msgid "" "GNU General Public License version 3 or later.\n" "See http://www.gnu.org/licenses/gpl-3.0.txt" msgstr "" "GNU General Public License версии 3 или выше.\n" "Прочтите http://www.gnu.org/licenses/gpl-3.0.txt" #. TRANSLATORS: Maintain the names of translators here. #. Launchpad does this automatically for translations #. typed in Launchpad. This is a special string shown #. in the 'About' box. #: ../bleachbit/GUI.py:442 msgid "translator-credits" msgstr "" "Launchpad Contributions:\n" " Aleksey Kabanov https://launchpad.net/~ak099\n" " Alexander 'FONTER' Zinin https://launchpad.net/~spore-09\n" " Alexey Ivanov https://launchpad.net/~alexey-ivanov\n" " Andrey Olykainen https://launchpad.net/~andrey.olykainen\n" " Eugene Marshal https://launchpad.net/~lowrider\n" " Hromin https://launchpad.net/~hromin\n" " Ilia Lilov https://launchpad.net/~lilovil-gmail\n" " Iryna Nikanchuk https://launchpad.net/~unetriste-deactivatedaccount\n" " Oleg Koptev https://launchpad.net/~koptev-oleg\n" " Sergey Sedov https://launchpad.net/~serg-sedov\n" " Sergiy Matrunchyk https://launchpad.net/~sergiy.matrunchyk\n" " Vadim Peretokin https://launchpad.net/~vperetokin\n" " Wladimir Rossinski https://launchpad.net/~wrossin\n" " ashed https://launchpad.net/~craysy\n" " skybon https://launchpad.net/~skybon-deactivatedaccount-" "deactivatedaccount\n" " ☠Jay ZDLin☠ https://launchpad.net/~black-buddha666" #: ../bleachbit/GUI.py:454 msgid "System information" msgstr "Информация о системе" #: ../bleachbit/GUI.py:527 msgid "Choose files to shred" msgstr "Выберите файлы для удаления" #: ../bleachbit/GUI.py:530 msgid "Choose folder to shred" msgstr "Выберите папку для удаления" #: ../bleachbit/GUI.py:594 ../bleachbit/GuiPreferences.py:197 #: ../bleachbit/GuiPreferences.py:326 ../bleachbit/GuiPreferences.py:367 msgid "Choose a folder" msgstr "Выберите папку" #. TRANSLATORS: this is the context menu #: ../bleachbit/GUI.py:627 msgid "Preview" msgstr "Предпросмотр" #: ../bleachbit/GUI.py:734 msgid "_Shred Files" msgstr "Удаление файлов (безвозвратно)" #: ../bleachbit/GUI.py:736 msgid "Sh_red Folders" msgstr "Удаление каталогов (безвозвратно)" #: ../bleachbit/GUI.py:738 msgid "_Wipe Free Space" msgstr "_Очистить свободное место" #: ../bleachbit/GUI.py:740 msgid "S_hred Settings and Quit" msgstr "Обнулить настройки и выйти" #: ../bleachbit/GUI.py:742 msgid "_Quit" msgstr "В_ыйти" #: ../bleachbit/GUI.py:744 msgid "_File" msgstr "_Файл" #: ../bleachbit/GUI.py:746 ../bleachbit/GuiPreferences.py:58 msgid "Preferences" msgstr "Настройки" #: ../bleachbit/GUI.py:747 msgid "_Edit" msgstr "_Правка" #: ../bleachbit/GUI.py:748 msgid "Help Contents" msgstr "Содержание Справки" #: ../bleachbit/GUI.py:751 msgid "_Release Notes" msgstr "_Примечания к выпуску" #: ../bleachbit/GUI.py:754 msgid "_System Information" msgstr "Информация о системе" #: ../bleachbit/GUI.py:757 msgid "_About" msgstr "_О программе" #: ../bleachbit/GUI.py:758 msgid "_Help" msgstr "_Помощь" #: ../bleachbit/GUI.py:783 msgctxt "button" msgid "Preview" msgstr "Предпросмотр" #: ../bleachbit/GUI.py:788 msgid "Preview files in the selected operations (without deleting any files)" msgstr "Просмотреть файлы в выбранных операциях (без удаления файлов)" #: ../bleachbit/GUI.py:798 msgctxt "button" msgid "Clean" msgstr "Очистка" #: ../bleachbit/GUI.py:802 msgid "Clean files in the selected operations" msgstr "Очистить файлы для выбранных операций" #: ../bleachbit/GUI.py:893 msgid "Error when checking for updates: " msgstr "Ошибка при проверке обновлений: " #: ../bleachbit/GUI.py:932 msgid "" "Error loading the SQLite module: the antivirus software may be blocking it." msgstr "Ошибка загрузки модуля SQLite: возможно, его блокирует антивирус." #: ../bleachbit/GUI.py:935 msgid "" "You are running BleachBit with administrative privileges for cleaning shared " "parts of the system, and references to the user profile folder will clean " "only the root account." msgstr "" "Вы запустили BleachBit с административными правами на очистку совместно " "используемых разделов системы; ссылки, относящиеся к профилю пользователя, " "будут очищены только для учётной записи суперпользователя." #: ../bleachbit/GUI.py:940 msgid "" "Run BleachBit with administrator privileges to improve the accuracy of " "overwriting the contents of files." msgstr "" #: ../bleachbit/GuiPreferences.py:64 msgid "General" msgstr "Основные" #: ../bleachbit/GuiPreferences.py:67 msgid "Drives" msgstr "Диски" #: ../bleachbit/GuiPreferences.py:70 msgid "Languages" msgstr "Языки" #: ../bleachbit/GuiPreferences.py:72 msgid "Whitelist" msgstr "Белый список" #: ../bleachbit/GuiPreferences.py:117 msgid "Check periodically for software updates via the Internet" msgstr "Периодически проверять наличие обновлений через Интернет" #: ../bleachbit/GuiPreferences.py:122 msgid "" "If an update is found, you will be given the option to view information " "about it. Then, you may manually download and install the update." msgstr "" "Когда будет обнаружено обновление, вы получите об этом уведомление. Затем вы " "сможете самостоятельно скачать его и установить." #: ../bleachbit/GuiPreferences.py:128 msgid "Check for new beta releases" msgstr "Проверять наличие новых бета версий" #: ../bleachbit/GuiPreferences.py:137 msgid "Download and update cleaners from community (winapp2.ini)" msgstr "Загружать и обновлять шаблоны очистки от сообщества (winapp2.ini)" #. TRANSLATORS: This means to hide cleaners which would do #. nothing. For example, if Firefox were never used on #. this system, this option would hide Firefox to simplify #. the list of cleaners. #: ../bleachbit/GuiPreferences.py:151 msgid "Hide irrelevant cleaners" msgstr "Скрыть неиспользуемые уборщики" #. TRANSLATORS: Overwriting is the same as shredding. It is a way #. to prevent recovery of the data. You could also translate #. 'Shred files to prevent recovery.' #: ../bleachbit/GuiPreferences.py:159 msgid "Overwrite contents of files to prevent recovery" msgstr "" #: ../bleachbit/GuiPreferences.py:163 msgid "" "Overwriting is ineffective on some file systems and with certain BleachBit " "operations. Overwriting is significantly slower." msgstr "" "Перезапись неэффективна на некоторых файловых системах и для некоторых " "операций BleachBit. Перезапись значительно медленнее." #: ../bleachbit/GuiPreferences.py:166 msgid "Start BleachBit with computer" msgstr "Запускать BleachBit вместе с компьютером" #: ../bleachbit/GuiPreferences.py:172 msgid "Exit after cleaning" msgstr "Выйти после очистки" #: ../bleachbit/GuiPreferences.py:178 msgid "Confirm before delete" msgstr "Подтвердить перед удалением" #: ../bleachbit/GuiPreferences.py:186 msgid "Use IEC sizes (1 KiB = 1024 bytes) instead of SI (1 kB = 1000 bytes)" msgstr "" "Использовать ед. измерения МЭК (1 КиБ = 1024 байт) вместо СИ (1 кБ = 1000 " "байт)" #: ../bleachbit/GuiPreferences.py:221 msgid "" "Choose a writable folder for each drive for which to overwrite free space." msgstr "Выберите каталог на каждом диске для перезаписи свободного места." #. TRANSLATORS: In the preferences dialog, this button adds a path to #. the list of paths #: ../bleachbit/GuiPreferences.py:243 msgctxt "button" msgid "Add" msgstr "Добавить" #. TRANSLATORS: In the preferences dialog, this button removes a path #. from the list of paths #: ../bleachbit/GuiPreferences.py:247 ../bleachbit/GuiPreferences.py:458 msgctxt "button" msgid "Remove" msgstr "Удалить" #: ../bleachbit/GuiPreferences.py:272 msgid "All languages will be deleted except those checked." msgstr "Все языки будут удалены кроме отмеченных здесь." #: ../bleachbit/GuiPreferences.py:288 msgid "Preserve" msgstr "Сохранить" #: ../bleachbit/GuiPreferences.py:292 msgid "Code" msgstr "Код" #: ../bleachbit/GuiPreferences.py:313 ../bleachbit/GuiPreferences.py:354 msgid "Choose a file" msgstr "Выберите файл" #: ../bleachbit/GuiPreferences.py:320 ../bleachbit/GuiPreferences.py:361 #: ../bleachbit/GuiPreferences.py:405 msgid "File" msgstr "Файл" #: ../bleachbit/GuiPreferences.py:334 ../bleachbit/GuiPreferences.py:375 #: ../bleachbit/GuiPreferences.py:407 msgid "Folder" msgstr "Каталог" #: ../bleachbit/GuiPreferences.py:417 msgid "Theses paths will not be deleted or modified." msgstr "Указанные объекты не будут изменены или удалены" #: ../bleachbit/GuiPreferences.py:420 msgid "These locations can be selected for deletion." msgstr "Эти расположения могут быть выбраны для удаления" #: ../bleachbit/GuiPreferences.py:428 msgid "Type" msgstr "Тип" #. TRANSLATORS: In the tree view "Path" is used generically to refer to a #. file, a folder, or a pattern describing either #: ../bleachbit/GuiPreferences.py:434 msgid "Path" msgstr "Путь" #: ../bleachbit/GuiPreferences.py:446 msgctxt "button" msgid "Add file" msgstr "Добавить файл" #: ../bleachbit/GuiPreferences.py:452 msgctxt "button" msgid "Add folder" msgstr "Добавить каталог" bleachbit-2.0/po/te.po0000644000175000017500000011253213245436307012773 0ustar hlehle# Telugu translation for bleachbit # Copyright (c) 2011 Rosetta Contributors and Canonical Ltd 2011 # This file is distributed under the same license as the bleachbit package. # FIRST AUTHOR , 2011. # msgid "" msgstr "" "Project-Id-Version: bleachbit\n" "Report-Msgid-Bugs-To: FULL NAME \n" "POT-Creation-Date: 2011-08-17 20:52-0600\n" "PO-Revision-Date: 2011-11-01 03:31+0000\n" "Last-Translator: Praveen Illa \n" "Language-Team: Telugu \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n != 1;\n" "X-Launchpad-Export-Date: 2011-11-04 03:52+0000\n" "X-Generator: Launchpad (build 14231)\n" #: ../cleaners/tremulous.xml ../cleaners/gl-117.xml ../cleaners/nexuiz.xml #: ../cleaners/hippo_opensim_viewer.xml ../cleaners/secondlife_viewer.xml msgid "Game" msgstr "ఆట" #: ../cleaners/tremulous.xml ../cleaners/chromium.xml ../cleaners/miro.xml #: ../cleaners/audacious.xml ../cleaners/xine.xml ../cleaners/kde.xml #: ../cleaners/pidgin.xml ../cleaners/seamonkey.xml ../cleaners/liferea.xml #: ../cleaners/beagle.xml ../cleaners/opera.xml ../cleaners/rhythmbox.xml #: ../cleaners/epiphany.xml ../cleaners/transmission.xml #: ../cleaners/nexuiz.xml ../cleaners/hippo_opensim_viewer.xml #: ../cleaners/vuze.xml ../cleaners/evolution.xml ../cleaners/exaile.xml #: ../cleaners/google_chrome.xml ../cleaners/emesene.xml ../cleaners/amsn.xml #: ../cleaners/yahoo_messenger.xml ../cleaners/thumbnails.xml #: ../cleaners/safari.xml ../cleaners/java.xml ../cleaners/flash.xml #: ../cleaners/thunderbird.xml ../cleaners/adobe_reader.xml #: ../cleaners/gftp.xml ../cleaners/gpodder.xml #: ../cleaners/secondlife_viewer.xml ../bleachbit/Cleaner.py:186 #: ../bleachbit/Cleaner.py:296 ../bleachbit/Cleaner.py:363 msgid "Cache" msgstr "క్యాచీ" #: ../cleaners/tremulous.xml msgid "Delete the list of game servers" msgstr "ఆట సేవకాల యొక్క జాబితాను తొలగించు" #: ../cleaners/yum.xml ../cleaners/miro.xml ../cleaners/audacious.xml #: ../cleaners/xine.xml ../cleaners/kde.xml ../cleaners/pidgin.xml #: ../cleaners/liferea.xml ../cleaners/beagle.xml ../cleaners/rhythmbox.xml #: ../cleaners/transmission.xml ../cleaners/nexuiz.xml ../cleaners/apt.xml #: ../cleaners/hippo_opensim_viewer.xml ../cleaners/vuze.xml #: ../cleaners/evolution.xml ../cleaners/exaile.xml ../cleaners/amsn.xml #: ../cleaners/yahoo_messenger.xml ../cleaners/thumbnails.xml #: ../cleaners/java.xml ../cleaners/windows_explorer.xml ../cleaners/flash.xml #: ../cleaners/adobe_reader.xml ../cleaners/gftp.xml ../cleaners/gpodder.xml #: ../cleaners/secondlife_viewer.xml ../bleachbit/Cleaner.py:296 #: ../bleachbit/Cleaner.py:363 ../bleachbit/Cleaner.py:383 #: ../bleachbit/Cleaner.py:385 msgid "Delete the cache" msgstr "క్యాచీని తొలగించు" #. TRANSLATORS: Vacuum is a verb. The term is jargon #. from the SQLite database. Microsoft Access uses #. the term 'Compact Database' (which you may translate #. instead). Another synonym is 'defragment.' #: ../cleaners/yum.xml ../cleaners/chromium.xml ../cleaners/liferea.xml #: ../cleaners/google_chrome.xml ../cleaners/safari.xml #: ../cleaners/thunderbird.xml ../cleaners/gpodder.xml #: ../bleachbit/Cleaner.py:196 ../bleachbit/Cleaner.py:286 #: ../bleachbit/Action.py:323 msgid "Vacuum" msgstr "" #: ../cleaners/yum.xml ../cleaners/chromium.xml ../cleaners/liferea.xml #: ../cleaners/google_chrome.xml ../cleaners/safari.xml #: ../cleaners/thunderbird.xml ../cleaners/gpodder.xml #: ../bleachbit/Cleaner.py:196 msgid "" "Clean database fragmentation to reduce space and improve speed without " "removing any data" msgstr "" #: ../cleaners/chromium.xml ../cleaners/internet_explorer.xml #: ../cleaners/seamonkey.xml ../cleaners/opera.xml ../cleaners/epiphany.xml #: ../cleaners/google_chrome.xml ../cleaners/safari.xml ../cleaners/links2.xml #: ../cleaners/elinks.xml ../cleaners/konqueror.xml #: ../bleachbit/Cleaner.py:209 msgid "Web browser" msgstr "వెబ్ విహారిణి" #: ../cleaners/chromium.xml ../cleaners/seamonkey.xml ../cleaners/opera.xml #: ../cleaners/epiphany.xml ../cleaners/google_chrome.xml #: ../cleaners/safari.xml ../cleaners/thunderbird.xml #: ../bleachbit/Cleaner.py:186 msgid "Delete the web cache, which reduces time to display revisited pages" msgstr "" #: ../cleaners/chromium.xml ../cleaners/internet_explorer.xml #: ../cleaners/seamonkey.xml ../cleaners/liferea.xml ../cleaners/opera.xml #: ../cleaners/epiphany.xml ../cleaners/google_chrome.xml #: ../cleaners/safari.xml ../cleaners/flash.xml ../cleaners/thunderbird.xml #: ../cleaners/konqueror.xml ../cleaners/realplayer.xml #: ../cleaners/silverlight.xml ../bleachbit/Cleaner.py:187 msgid "Cookies" msgstr "" #: ../cleaners/chromium.xml ../cleaners/internet_explorer.xml #: ../cleaners/seamonkey.xml ../cleaners/liferea.xml ../cleaners/opera.xml #: ../cleaners/epiphany.xml ../cleaners/google_chrome.xml #: ../cleaners/safari.xml ../cleaners/flash.xml ../cleaners/thunderbird.xml #: ../cleaners/konqueror.xml ../cleaners/realplayer.xml #: ../cleaners/silverlight.xml ../bleachbit/Cleaner.py:187 msgid "" "Delete cookies, which contain information such as web site preferences, " "authentication, and tracking identification" msgstr "" #. TRANSLATORS: DOM = Document Object Model. #: ../cleaners/chromium.xml ../cleaners/opera.xml #: ../cleaners/google_chrome.xml ../bleachbit/Cleaner.py:189 msgid "DOM Storage" msgstr "DOM నిల్వ" #: ../cleaners/chromium.xml ../cleaners/opera.xml #: ../cleaners/google_chrome.xml ../bleachbit/Cleaner.py:189 msgid "Delete HTML5 cookies" msgstr "" #: ../cleaners/chromium.xml ../cleaners/internet_explorer.xml #: ../cleaners/google_chrome.xml ../bleachbit/Cleaner.py:191 msgid "Form history" msgstr "" #: ../cleaners/chromium.xml ../cleaners/google_chrome.xml msgid "A history of forms entered in web sites" msgstr "" #: ../cleaners/chromium.xml ../cleaners/d4x.xml ../cleaners/vim.xml #: ../cleaners/internet_explorer.xml ../cleaners/mc.xml #: ../cleaners/seamonkey.xml ../cleaners/windows_defender.xml #: ../cleaners/google_chrome.xml ../cleaners/nautilus.xml #: ../cleaners/safari.xml ../cleaners/bash.xml ../cleaners/links2.xml #: ../cleaners/elinks.xml ../cleaners/tortoisesvn.xml #: ../cleaners/realplayer.xml msgid "History" msgstr "చరిత్ర" #: ../cleaners/chromium.xml ../cleaners/google_chrome.xml msgid "" "Delete the history which includes visited sites, downloads, and thumbnails" msgstr "" #: ../cleaners/chromium.xml ../cleaners/google_chrome.xml msgid "Search engines" msgstr "శోధన యంత్రాలు" #. 'Factory' means a search engine that is installed by default 'from the factory,' but this is different than a 'default search engine' https://lists.launchpad.net/launchpad-translators/msg00283.html #: ../cleaners/chromium.xml ../cleaners/google_chrome.xml msgid "" "Reset the search engine usage history and delete non-factory search engines, " "some of which are added automatically" msgstr "" #: ../cleaners/chromium.xml ../cleaners/opera.xml ../cleaners/konqueror.xml msgid "Current session" msgstr "ప్రస్తుత చర్యాకాలం" #: ../cleaners/chromium.xml ../cleaners/opera.xml ../cleaners/konqueror.xml msgid "Delete the current session" msgstr "ప్రస్తుత చర్యాకాలాన్ని తొలగించు" #: ../cleaners/d4x.xml ../cleaners/mc.xml ../cleaners/nautilus.xml #: ../cleaners/gnome.xml ../cleaners/links2.xml ../cleaners/tortoisesvn.xml #: ../cleaners/realplayer.xml ../bleachbit/Cleaner.py:276 #: ../bleachbit/Cleaner.py:347 msgid "Delete the usage history" msgstr "వాడుక చరిత్రను తొలగించు" #: ../cleaners/vim.xml ../cleaners/gedit.xml msgid "Editor" msgstr "కూర్పకము" #: ../cleaners/vim.xml msgid "" "Delete ~/.viminfo which includes file history, command history, and buffers" msgstr "" #: ../cleaners/miro.xml ../cleaners/xine.xml ../cleaners/flash.xml msgid "Multimedia viewer" msgstr "బహుళమాధ్యమ వీక్షకం" #: ../cleaners/miro.xml ../cleaners/audacious.xml ../cleaners/screenlets.xml #: ../cleaners/hippo_opensim_viewer.xml ../cleaners/vuze.xml #: ../cleaners/exaile.xml ../cleaners/easytag.xml #: ../cleaners/yahoo_messenger.xml ../cleaners/teamviewer.xml #: ../cleaners/gftp.xml ../cleaners/amule.xml ../cleaners/realplayer.xml #: ../bleachbit/Cleaner.py:381 msgid "Logs" msgstr "చిట్టాలు" #: ../cleaners/miro.xml ../cleaners/audacious.xml ../cleaners/screenlets.xml #: ../cleaners/hippo_opensim_viewer.xml ../cleaners/vuze.xml #: ../cleaners/exaile.xml ../cleaners/yahoo_messenger.xml #: ../cleaners/teamviewer.xml ../cleaners/gftp.xml ../cleaners/amule.xml #: ../cleaners/realplayer.xml ../bleachbit/Cleaner.py:381 msgid "Delete the logs" msgstr "చిట్టాలను తొలగించు" #: ../cleaners/gl-117.xml ../cleaners/beagle.xml ../cleaners/x11.xml #: ../cleaners/microsoft_office.xml ../cleaners/secondlife_viewer.xml msgid "Debug logs" msgstr "దోషశుద్ధి చిట్టాలు" #: ../cleaners/gl-117.xml ../cleaners/beagle.xml ../cleaners/x11.xml #: ../cleaners/microsoft_office.xml ../cleaners/easytag.xml #: ../cleaners/secondlife_viewer.xml msgid "Delete the debug logs" msgstr "దోషశుద్ధి చిట్టాలను తొలగించు" #: ../cleaners/internet_explorer.xml ../bleachbit/Cleaner.py:191 msgid "A history of forms entered in web sites and in the Search bar" msgstr "" #: ../cleaners/internet_explorer.xml ../cleaners/opera.xml #: ../cleaners/safari.xml ../cleaners/konqueror.xml #: ../bleachbit/Cleaner.py:195 msgid "List of visited web pages" msgstr "సందర్శించిన వెబ్ పేజీల యొక్క జాబితా" #: ../cleaners/internet_explorer.xml ../cleaners/kde.xml ../cleaners/vuze.xml #: ../cleaners/deepscan.xml ../cleaners/gimp.xml ../cleaners/google_earth.xml #: ../cleaners/adobe_reader.xml ../cleaners/amule.xml #: ../cleaners/winetricks.xml ../cleaners/wine.xml ../bleachbit/Cleaner.py:397 msgid "Temporary files" msgstr "తాత్కాలిక ఫైళ్ళు" #: ../cleaners/internet_explorer.xml ../cleaners/kde.xml ../cleaners/vuze.xml #: ../cleaners/deepscan.xml ../cleaners/gimp.xml ../cleaners/google_earth.xml #: ../cleaners/adobe_reader.xml ../cleaners/amule.xml #: ../cleaners/winetricks.xml ../cleaners/wine.xml ../bleachbit/Cleaner.py:397 msgid "Delete the temporary files" msgstr "తాత్కాలిక ఫైళ్ళు" #: ../cleaners/audacious.xml ../cleaners/filezilla.xml ../cleaners/winrar.xml #: ../cleaners/wordpad.xml ../cleaners/winamp.xml #: ../cleaners/windows_media_player.xml ../cleaners/microsoft_office.xml #: ../cleaners/winzip.xml ../cleaners/vlc.xml ../cleaners/windows_explorer.xml #: ../cleaners/teamviewer.xml ../cleaners/adobe_reader.xml #: ../cleaners/paint.xml ../bleachbit/Cleaner.py:297 msgid "Most recently used" msgstr "ఇటీవలి ఎక్కువగా వాడినవి" #: ../cleaners/audacious.xml ../cleaners/kde.xml ../cleaners/filezilla.xml #: ../cleaners/gwenview.xml ../cleaners/gedit.xml #: ../cleaners/windows_explorer.xml ../cleaners/adobe_reader.xml #: ../bleachbit/Cleaner.py:297 ../bleachbit/Cleaner.py:373 msgid "Delete the list of recently used documents" msgstr "ఇటీవలి వాడిన పత్రాల యొక్క జాబితాను తొలగించు" #: ../cleaners/kde.xml ../cleaners/gwenview.xml ../cleaners/gedit.xml #: ../cleaners/windows_explorer.xml ../bleachbit/Cleaner.py:373 msgid "Recent documents list" msgstr "ఇటీవలి పత్రాల జాబితా" #: ../cleaners/pidgin.xml ../cleaners/xchat.xml ../cleaners/emesene.xml #: ../cleaners/amsn.xml ../cleaners/yahoo_messenger.xml msgid "Chat client" msgstr "చాట్ క్లయింటు" #: ../cleaners/pidgin.xml ../cleaners/seamonkey.xml ../cleaners/xchat.xml #: ../cleaners/emesene.xml ../cleaners/amsn.xml #: ../cleaners/yahoo_messenger.xml ../cleaners/skype.xml msgid "Chat logs" msgstr "చాట్ చిట్టాలు" #: ../cleaners/pidgin.xml ../cleaners/seamonkey.xml ../cleaners/xchat.xml #: ../cleaners/emesene.xml ../cleaners/amsn.xml #: ../cleaners/yahoo_messenger.xml ../cleaners/skype.xml msgid "Delete the chat logs" msgstr "చాట్ చిట్టాలను తొలగించు" #: ../cleaners/seamonkey.xml ../cleaners/opera.xml ../bleachbit/Cleaner.py:190 msgid "Download history" msgstr "డౌనులోడు చరిత్ర" #: ../cleaners/seamonkey.xml ../cleaners/opera.xml ../bleachbit/Cleaner.py:190 msgid "List of files downloaded" msgstr "డౌనులోడు చేయబడిన ఫైళ్ళ యొక్క జాబితా" #: ../cleaners/seamonkey.xml msgid "Delete the list of visited web pages" msgstr "సందర్శించిన వెబ్ పేజీల యొక్క జాబితాను తొలగించు" #: ../cleaners/screenlets.xml msgid "Widgets for the desktop" msgstr "" #: ../cleaners/beagle.xml ../cleaners/recoll.xml msgid "Search tool" msgstr "శోధన సాధనం" #: ../cleaners/beagle.xml msgid "Search indexes" msgstr "శోధన సూచీలు" #: ../cleaners/beagle.xml msgid "Delete the search indexes" msgstr "శోధన సూచీలను తొలగించు" #: ../cleaners/filezilla.xml ../cleaners/transmission.xml ../cleaners/vuze.xml #: ../cleaners/gftp.xml ../cleaners/amule.xml msgid "File transfer client" msgstr "ఫైల్ బదిలీ క్లయింటు" #: ../cleaners/windows_defender.xml ../cleaners/deepscan.xml msgid "Delete the files" msgstr "ఫైళ్ళను తొలగించు" #: ../cleaners/opera.xml ../cleaners/google_toolbar.xml ../cleaners/gnome.xml #: ../cleaners/windows_explorer.xml msgid "Search history" msgstr "శోధన చరిత్ర" #: ../cleaners/opera.xml ../cleaners/google_toolbar.xml ../cleaners/gnome.xml #: ../cleaners/windows_explorer.xml msgid "Delete the search history" msgstr "శోధన చరిత్రను తొలగించు" #: ../cleaners/opera.xml ../cleaners/konqueror.xml ../bleachbit/Cleaner.py:195 msgid "URL history" msgstr "URL చరిత్ర" #: ../cleaners/winrar.xml ../cleaners/wordpad.xml ../cleaners/winamp.xml #: ../cleaners/windows_media_player.xml ../cleaners/microsoft_office.xml #: ../cleaners/winzip.xml ../cleaners/vlc.xml ../cleaners/windows_explorer.xml #: ../cleaners/teamviewer.xml ../cleaners/paint.xml msgid "Delete the most recently used list" msgstr "" #: ../cleaners/epiphany.xml ../cleaners/thunderbird.xml #: ../bleachbit/Cleaner.py:194 msgid "Passwords" msgstr "సంకేతపదములు" #: ../cleaners/epiphany.xml ../cleaners/thunderbird.xml #: ../bleachbit/Cleaner.py:194 msgid "" "A database of usernames and passwords as well as a list of sites that should " "not store passwords" msgstr "" #: ../cleaners/epiphany.xml msgid "Places" msgstr "స్థలములు" #: ../cleaners/epiphany.xml msgid "" "A database of URLs including bookmarks, favicons, and a history of visited " "web sites" msgstr "" #: ../cleaners/epiphany.xml msgid "This option deletes all bookmarks." msgstr "ఈ ఐచ్ఛికం అన్ని ఇష్టాంశాలను తొలగిస్తుంది." #: ../cleaners/microsoft_office.xml ../bleachbit/Cleaner.py:307 msgid "Office suite" msgstr "" #: ../cleaners/apt.xml msgid "Delete obsolete files" msgstr "" #: ../cleaners/vuze.xml ../cleaners/deepscan.xml msgid "Backup files" msgstr "బ్యాక్అప్ ఫైళ్ళు" #: ../cleaners/vuze.xml ../cleaners/deepscan.xml msgid "Delete the backup files" msgstr "బ్యాక్అప్ ఫైళ్ళను తొలగించు" #: ../cleaners/exaile.xml msgid "Downloaded podcasts" msgstr "" #: ../cleaners/exaile.xml msgid "Delete downloaded podcasts" msgstr "" #: ../cleaners/google_chrome.xml msgid "Session" msgstr "చర్యాకాలం" #: ../cleaners/google_chrome.xml msgid "Delete the current and last sessions" msgstr "" #: ../cleaners/emesene.xml msgid "Delete the avatars and emoticons cache" msgstr "" #: ../cleaners/deepscan.xml msgid "Deep scan" msgstr "" #: ../cleaners/deepscan.xml msgid "Inspect the preview for any files you want to keep." msgstr "" #: ../cleaners/deepscan.xml msgid "This option is slow." msgstr "" #: ../cleaners/nautilus.xml msgid "Custom folders will be reset." msgstr "" #: ../cleaners/thumbnails.xml ../cleaners/windows_explorer.xml msgid "Thumbnails" msgstr "చిరుచిత్రాలు" #: ../cleaners/bash.xml msgid "Delete the command history" msgstr "ఆదేశ చరిత్రను తొలగించు" #. In GNOME 'Run' is the dialog shown when typing ALT+F2' #. In Windows 'Run' is the dialog in the Start menu #: ../cleaners/gnome.xml ../cleaners/windows_explorer.xml msgid "Run" msgstr "నడుపు" #: ../cleaners/elinks.xml msgid "Delete the cookies, visited URLs, and search history" msgstr "" #: ../cleaners/recoll.xml msgid "Index" msgstr "విషయసూచిక" #: ../cleaners/recoll.xml msgid "" "Delete the search index, a database of words and the files they contain" msgstr "" #: ../bleachbit.desktop msgid "Unnecessary file cleaner" msgstr "" #: ../bleachbit.desktop msgid "Free space and maintain privacy" msgstr "" #. TRANSLATORS: This is the label in the log indicating was #. skipped because it matches the whitelist #: ../bleachbit/Command.py:46 msgid "Skip" msgstr "దాటవేయి" #. TRANSLATORS: This is the label in the log indicating will be #. deleted (for previews) or was actually deleted #: ../bleachbit/Command.py:73 msgid "Delete" msgstr "తొలగించు" #. TRANSLATORS: The file will be deleted when the #. system reboots #: ../bleachbit/Command.py:93 msgid "Mark for deletion" msgstr "" #. TRANSLATORS: Parts of this file will be deleted #: ../bleachbit/Command.py:182 ../bleachbit/Command.py:212 #: ../bleachbit/Action.py:203 ../bleachbit/Action.py:216 #: ../bleachbit/Action.py:228 ../bleachbit/Action.py:241 #: ../bleachbit/Action.py:253 msgid "Clean file" msgstr "" #. TRANSLATORS: The file will be truncated to 0 bytes in length #: ../bleachbit/Command.py:249 msgid "Truncate" msgstr "" #: ../bleachbit/Command.py:288 msgid "Delete registry key" msgstr "" #: ../bleachbit/Unix.py:365 ../bleachbit/Unix.py:395 ../bleachbit/Unix.py:575 #, python-format msgid "Executable not found: %s" msgstr "" #. TRANSLATORS: %s expands to a name such as 'Firefox' or 'System'. #: ../bleachbit/Unix.py:572 ../bleachbit/Worker.py:135 #, python-format msgid "" "%s cannot be cleaned because it is currently running. Close it, and try " "again." msgstr "" #. TRANSLATORS: This is cleaner name for cleaners imported from winapp2.ini #: ../bleachbit/Winapp.py:45 msgid "Applications" msgstr "అనువర్తనాలు" #. TRANSLATORS: This is cleaner name for cleaners imported from winapp2.ini #: ../bleachbit/Winapp.py:47 ../bleachbit/Winapp.py:54 #: ../bleachbit/Winapp.py:55 ../bleachbit/Winapp.py:56 msgid "Internet" msgstr "అంతర్జాలం" #. TRANSLATORS: This is cleaner name for cleaners imported from winapp2.ini #: ../bleachbit/Winapp.py:49 msgid "Multimedia" msgstr "మల్టీమీడియా" #. TRANSLATORS: This is cleaner name for cleaners imported from winapp2.ini #: ../bleachbit/Winapp.py:51 msgid "Utilities" msgstr "వినియోగాలు" #. TRANSLATORS: This is cleaner name for cleaners imported from winapp2.ini. #: ../bleachbit/Winapp.py:53 msgid "Microsoft Windows" msgstr "మైక్రోసాఫ్ట్ విండోస్" #: ../bleachbit/Winapp.py:87 msgid "Imported from winapp2.ini" msgstr "" #: ../bleachbit/Cleaner.py:192 msgid "Session restore" msgstr "" #: ../bleachbit/Cleaner.py:192 msgid "Loads the initial session after the browser closes or crashes" msgstr "" #: ../bleachbit/Cleaner.py:193 msgid "Site preferences" msgstr "సైట్ ప్రాధాన్యతలు" #: ../bleachbit/Cleaner.py:193 msgid "Settings for individual sites" msgstr "వ్యక్తిగత సైటుల కొరకు అమరికలు" #. TRANSLATORS: desktop entries are .desktop files in Linux tha #. make up the application menu (the menu that shows BleachBit, #. Firefox, and others. The .desktop files also associate file #. types, so clicking on an .html file in Nautilus brings up #. Firefox. #. More information: http://standards.freedesktop.org/menu-spec/latest/index.html#introduction #: ../bleachbit/Cleaner.py:362 msgid "Broken desktop files" msgstr "" #: ../bleachbit/Cleaner.py:362 msgid "Delete broken application menu entries and file associations" msgstr "" #. TRANSLATORS: Localizations are files supporting specific #. languages, so applications appear in Spanish, etc. #: ../bleachbit/Cleaner.py:366 msgid "Localizations" msgstr "స్థానీకరణలు" #: ../bleachbit/Cleaner.py:366 msgid "Delete files for unwanted languages" msgstr "అవాంచిత భాషలను తొలగించు" #: ../bleachbit/Cleaner.py:367 msgid "Configure this option in the preferences." msgstr "" #. TRANSLATORS: 'Rotated logs' refers to old system log files. #. Linux systems often have a scheduled job to rotate the logs #. which means compress all except the newest log and then delete #. the oldest log. You could translate this 'old logs.' #: ../bleachbit/Cleaner.py:372 msgid "Rotated logs" msgstr "" #: ../bleachbit/Cleaner.py:372 msgid "Delete old system logs" msgstr "పాత వ్యవస్థ చిట్టాలను తొలగించు" #: ../bleachbit/Cleaner.py:374 msgid "Trash" msgstr "చెత్తబుట్ట" #: ../bleachbit/Cleaner.py:374 msgid "Empty the trash" msgstr "చెత్తబుట్టను ఖాళీచేయి" #: ../bleachbit/Cleaner.py:376 ../bleachbit/Cleaner.py:482 #: ../bleachbit/Worker.py:211 msgid "Memory" msgstr "మెమొరీ" #. TRANSLATORS: 'free' means 'unallocated' #: ../bleachbit/Cleaner.py:378 msgid "Wipe the swap and free memory" msgstr "" #: ../bleachbit/Cleaner.py:379 msgid "This option is experimental and may cause system problems." msgstr "" #: ../bleachbit/Cleaner.py:382 msgid "Memory dump" msgstr "" #: ../bleachbit/Cleaner.py:382 msgid "Delete the file memory.dmp" msgstr "" #. TRANSLATORS: Prefetch is Microsoft Windows jargon. #: ../bleachbit/Cleaner.py:385 msgid "Prefetch" msgstr "" #: ../bleachbit/Cleaner.py:386 msgid "Recycle bin" msgstr "చెత్తకుండీ" #: ../bleachbit/Cleaner.py:386 msgid "Empty the recycle bin" msgstr "చెత్తకుండీని ఖాళీచేయి" #. TRANSLATORS: 'Update' is a noun, and 'Update uninstallers' is an option to delete #. the uninstallers for software updates. #: ../bleachbit/Cleaner.py:389 msgid "Update uninstallers" msgstr "" #: ../bleachbit/Cleaner.py:389 msgid "" "Delete uninstallers for Microsoft updates including hotfixes, service packs, " "and Internet Explorer updates" msgstr "" #: ../bleachbit/Cleaner.py:391 ../bleachbit/Cleaner.py:564 msgid "Clipboard" msgstr "క్లిప్‌బోర్డు" #: ../bleachbit/Cleaner.py:391 msgid "" "The desktop environment's clipboard used for copy and paste operations" msgstr "" #. TRANSLATORS: 'free' means 'unallocated' #: ../bleachbit/Cleaner.py:393 msgid "Free disk space" msgstr "డిస్కు ఖాళీ స్థలం" #. TRANSLATORS: 'free' means 'unallocated' #: ../bleachbit/Cleaner.py:395 msgid "Overwrite free disk space to hide deleted files" msgstr "" #: ../bleachbit/Cleaner.py:396 msgid "This option is very slow." msgstr "" #: ../bleachbit/Cleaner.py:400 msgid "The system in general" msgstr "" #: ../bleachbit/Cleaner.py:406 ../bleachbit/Cleaner.py:659 msgid "System" msgstr "వ్యవస్థ" #. TRANSLATORS: 'Free' means 'unallocated.' #. %s expands to a path such as C:\ or /tmp/ #: ../bleachbit/Cleaner.py:590 ../bleachbit/Cleaner.py:686 #, python-format msgid "Overwrite free disk space %s" msgstr "" #. TRANSLATORS: %s expands to a drive letter such as C:\ or D:\ #: ../bleachbit/Cleaner.py:618 #, python-format msgid "Recycle bin %s" msgstr "" #: ../bleachbit/GuiPreferences.py:52 ../bleachbit/GUI.py:637 msgid "Preferences" msgstr "ప్రాధాన్యతలు" #: ../bleachbit/GuiPreferences.py:58 msgid "General" msgstr "సాధారణ" #: ../bleachbit/GuiPreferences.py:59 msgid "Drives" msgstr "డ్రైవులు" #: ../bleachbit/GuiPreferences.py:61 msgid "Languages" msgstr "భాషలు" #: ../bleachbit/GuiPreferences.py:62 msgid "Whitelist" msgstr "" #: ../bleachbit/GuiPreferences.py:107 msgid "Check periodically for software updates via the Internet" msgstr "" #: ../bleachbit/GuiPreferences.py:110 msgid "" "If an update is found, you will be given the option to view information " "about it. Then, you may manually download and install the update." msgstr "" #: ../bleachbit/GuiPreferences.py:116 msgid "Check for new beta releases" msgstr "కొత్త బీటా విడుదల కొరకు పరిశీలించు" #: ../bleachbit/GuiPreferences.py:123 msgid "Download and update cleaners from community (winapp2.ini)" msgstr "" #. TRANSLATORS: This means to hide cleaners which would do #. nothing. For example, if Firefox were never used on #. this system, this option would hide Firefox to simplify #. the list of cleaners. #: ../bleachbit/GuiPreferences.py:135 msgid "Hide irrelevant cleaners" msgstr "" #. TRANSLATORS: Overwriting is the same as shredding. It is a way #. to prevent recovery of the data. You could also translate #. 'Shred files to prevent recovery.' #: ../bleachbit/GuiPreferences.py:143 msgid "Overwrite files to hide contents" msgstr "" #: ../bleachbit/GuiPreferences.py:146 msgid "" "Overwriting is ineffective on some file systems and with certain BleachBit " "operations. Overwriting is significantly slower." msgstr "" #: ../bleachbit/GuiPreferences.py:149 msgid "Start BleachBit with computer" msgstr "కంప్యూటరుతో పాటుగా బ్లీచ్‌బిట్ ప్రారంభించు" #: ../bleachbit/GuiPreferences.py:160 ../bleachbit/GuiPreferences.py:291 #: ../bleachbit/GUI.py:545 msgid "Choose a folder" msgstr "ఒక సంచయమును ఎన్నుకొను" #. TRANSLATORS: 'free' means 'unallocated' #: ../bleachbit/GuiPreferences.py:185 msgid "" "Choose a writable folder for each drive for which to overwrite free space." msgstr "" #. TRANSLATORS: In the preferences dialog, this button adds a path to the list of paths #: ../bleachbit/GuiPreferences.py:206 msgctxt "button" msgid "Add" msgstr "జతచేయి" #. TRANSLATORS: In the preferences dialog, this button removes a path from the list of paths #: ../bleachbit/GuiPreferences.py:209 ../bleachbit/GuiPreferences.py:369 msgctxt "button" msgid "Remove" msgstr "తీసివేయి" #: ../bleachbit/GuiPreferences.py:234 msgid "All languages will be deleted except those checked." msgstr "గుర్తించబడినవి తప్ప మిగిలిన అన్ని భాషలు తొలగించబడతాయి." #: ../bleachbit/GuiPreferences.py:251 msgid "Preserve" msgstr "" #: ../bleachbit/GuiPreferences.py:255 msgid "Code" msgstr "కోడ్" #: ../bleachbit/GuiPreferences.py:259 ../bleachbit/GUI.py:136 msgid "Name" msgstr "పేరు" #: ../bleachbit/GuiPreferences.py:277 msgid "Choose a file" msgstr "ఒక ఫైల్‌ని ఎంచుకోండి" #: ../bleachbit/GuiPreferences.py:284 ../bleachbit/GuiPreferences.py:328 msgid "File" msgstr "ఫైల్" #: ../bleachbit/GuiPreferences.py:299 ../bleachbit/GuiPreferences.py:330 msgid "Folder" msgstr "సంచయం" #. TRANSLATORS: "Paths" is used generically to refer to both files and folders #: ../bleachbit/GuiPreferences.py:337 msgid "Theses paths will not be deleted or modified." msgstr "" #: ../bleachbit/GuiPreferences.py:345 msgid "Type" msgstr "రకము" #. TRANSLATORS: In the tree view "Path" is used generically to refer to a #. file, a folder, or a pattern describing either #: ../bleachbit/GuiPreferences.py:351 msgid "Path" msgstr "త్రోవ" #: ../bleachbit/GuiPreferences.py:363 msgctxt "button" msgid "Add file" msgstr "ఫైల్ జతచేయి" #: ../bleachbit/GuiPreferences.py:366 msgctxt "button" msgid "Add folder" msgstr "సంచయాన్ని జతచేయి" #: ../bleachbit/RecognizeCleanerML.py:63 msgid "Security warning" msgstr "భద్రత హెచ్చరిక" #. TRANSLATORS: Cleaner definitions are XML data files that define #. which files will be cleaned. #: ../bleachbit/RecognizeCleanerML.py:75 msgid "" "These cleaner definitions are new or have changed. Malicious definitions can " "damage your system. If you do not trust these changes, delete the files or " "quit." msgstr "" #. TRANSLATORS: This is the column label (header) in the tree view for the security dialog #: ../bleachbit/RecognizeCleanerML.py:88 msgctxt "column_label" msgid "Delete" msgstr "తొలగించు" #. TRANSLATORS: This is the column label (header) in the tree view for the security dialog #: ../bleachbit/RecognizeCleanerML.py:91 msgctxt "column_label" msgid "Filename" msgstr "ఫైల్ పేరు" #. TRANSLATORS: This indicates an error. The special keyword #. %(operation)s will be replaced by 'firefox' or 'opera' or #. some other cleaner ID. The special keyword %(msg)s will be #. replaced by a message such as 'Permission denied.' #: ../bleachbit/Worker.py:76 #, python-format msgid "Exception while running operation '%(operation)s': '%(msg)s'" msgstr "" #. TRANSLATORS: 'free' means 'unallocated' #: ../bleachbit/Worker.py:209 msgid "Please wait. Wiping free disk space." msgstr "" #. TRANSLATORS: %s is replaced with Firefox, System, etc. #: ../bleachbit/Worker.py:211 ../bleachbit/Worker.py:298 #, python-format msgid "Please wait. Cleaning %s." msgstr "" #: ../bleachbit/Worker.py:221 #, python-format msgid "About %d minute remaining." msgid_plural "About %d minutes remaining." msgstr[0] "" msgstr[1] "" #. TRANSLATORS: This refers to disk space that was #. really recovered (in other words, not a preview) #: ../bleachbit/Worker.py:236 #, python-format msgid "Disk space recovered: %s" msgstr "" #. TRANSLATORS: This refers to a preview (no real #. changes were made yet) #: ../bleachbit/Worker.py:240 #, python-format msgid "Disk space to be recovered: %s" msgstr "" #. TRANSLATORS: This refers to the number of files really #. deleted (in other words, not a preview). #: ../bleachbit/Worker.py:245 #, python-format msgid "Files deleted: %d" msgstr "" #. TRANSLATORS: This refers to the number of files that #. would be deleted (in other words, simply a preview). #: ../bleachbit/Worker.py:249 #, python-format msgid "Files to be deleted: %d" msgstr "" #: ../bleachbit/Worker.py:252 #, python-format msgid "Special operations: %d" msgstr "" #: ../bleachbit/Worker.py:255 #, python-format msgid "Errors: %d" msgstr "దోషాలు: %d" #. TRANSLATORS: The "deep scan" feature searches over broad #. areas of the file system such as the user's whole home directory #. or all the system executables. #: ../bleachbit/Worker.py:271 msgid "Please wait. Running deep scan." msgstr "" #. TRANSLATORS: %s is replaced with Firefox, System, etc. #: ../bleachbit/Worker.py:301 #, python-format msgid "Please wait. Previewing %s." msgstr "దయచేసి వేచివుండండి, %s మునుజూస్తుంది." #: ../bleachbit/Update.py:75 msgid "New winapp2.ini was downloaded." msgstr "" #: ../bleachbit/Update.py:111 msgid "Update BleachBit" msgstr "బ్లీచ్‌బిట్‌ని నవీకరించు" #: ../bleachbit/Update.py:116 msgid "A new version is available." msgstr "ఒక కొత్త రూపాంతరం లభ్యతలో ఉంది." #. TRANSLATORS: %s expands to version such as '0.8.4' or '0.8.5beta' or similar #: ../bleachbit/Update.py:124 #, python-format msgid "Update to version %s" msgstr "రూపాంతరం %sకు నవీకరించు" #: ../bleachbit/CLI.py:123 #, python-format msgid "not a valid cleaner: %s" msgstr "" #. TRANSLATORS: This is the command line usage. Don't translate #. %prog, but do translate usage, options, cleaner, and option. #. More information about the command line is here #. http://bleachbit.sourceforge.net/documentation/command-line #: ../bleachbit/CLI.py:150 msgid "usage: %prog [options] cleaner.option1 cleaner.option2" msgstr "" #: ../bleachbit/CLI.py:153 msgid "list cleaners" msgstr "" #: ../bleachbit/CLI.py:155 msgid "delete files and make other permanent changes" msgstr "" #. TRANSLATORS: this is a warning for using --delete which will go away one day #: ../bleachbit/CLI.py:158 msgid "depreciated alias for --clean" msgstr "" #: ../bleachbit/CLI.py:160 msgid "show system information" msgstr "వ్యవస్థ సమాచారాన్ని చూపించు" #: ../bleachbit/CLI.py:161 msgid "launch the graphical interface" msgstr "" #: ../bleachbit/CLI.py:163 msgid "do not prompt for administrator privileges" msgstr "" #: ../bleachbit/CLI.py:168 msgid "preview files to be deleted and other changes" msgstr "" #: ../bleachbit/CLI.py:170 msgid "use options set in the graphical interface" msgstr "" #: ../bleachbit/CLI.py:172 msgid "output version information and exit" msgstr "" #: ../bleachbit/CLI.py:174 msgid "overwrite files to hide contents" msgstr "" #: ../bleachbit/GuiBasic.py:113 msgid "Delete confirmation" msgstr "" #: ../bleachbit/GuiBasic.py:121 msgid "" "Are you sure you want to permanently delete files according to the selected " "operations? The actual files that will be deleted may have changed since " "you ran the preview." msgstr "" #: ../bleachbit/GuiBasic.py:123 msgid "Are you sure you want to permanently delete these files?" msgstr "" #: ../bleachbit/GuiBasic.py:159 #, python-format msgid "" "Because you are running as root, please manually open this link in a web " "browser:\n" "%s" msgstr "" #. TRANSLATORS: %s expands to bleachbit.sourceforge.net or similar #: ../bleachbit/GuiBasic.py:171 #, python-format msgid "Open web browser to %s?" msgstr "" #: ../bleachbit/GUI.py:144 msgid "Active" msgstr "క్రియాశీల" #. TRANSLATORS: %(cleaner) may be Firefox, System, etc. #. %(option) may be cache, logs, cookies, etc. #. %(warning) may be 'This option is really slow' #: ../bleachbit/GUI.py:176 #, python-format msgid "" "Warning regarding %(cleaner)s - %(option)s:\n" "\n" "%(warning)s" msgstr "" #: ../bleachbit/GUI.py:346 msgid "You must select an operation" msgstr "" #: ../bleachbit/GUI.py:369 ../bleachbit/GUI.py:384 msgid "Done." msgstr "అయినది." #: ../bleachbit/GUI.py:398 msgid "Program to clean unnecessary files" msgstr "" #: ../bleachbit/GUI.py:403 msgid "" "GNU General Public License version 3 or later.\n" "See http://www.gnu.org/licenses/gpl-3.0.txt" msgstr "" #. TRANSLATORS: Maintain the names of translators here. #. Launchpad does this automatically for translations #. typed in Launchpad. This is a special string shown #. in the 'About' box. #: ../bleachbit/GUI.py:409 msgid "translator-credits" msgstr "" "Launchpad Contributions:\n" " Praveen Illa https://launchpad.net/~telugulinux" #: ../bleachbit/GUI.py:422 msgid "System information" msgstr "వ్యవస్థ సమాచారం" #: ../bleachbit/GUI.py:492 msgid "Choose files to shred" msgstr "" #: ../bleachbit/GUI.py:495 msgid "Choose folder to shred" msgstr "" #. TRANSLATORS: this is the context menu #: ../bleachbit/GUI.py:580 msgid "Preview" msgstr "మునుజూపు" #. TRANSLATORS: this is the context menu #: ../bleachbit/GUI.py:585 msgid "Clean" msgstr "" #: ../bleachbit/GUI.py:631 msgid "_Shred Files" msgstr "భాగస్వామ్య ఫైళ్ళు (_S)" #: ../bleachbit/GUI.py:632 msgid "Sh_red Folders" msgstr "భాగస్వామ్య సంచయాలు (_r)" #: ../bleachbit/GUI.py:633 msgid "_Wipe Free Space" msgstr "" #: ../bleachbit/GUI.py:634 msgid "S_hred Settings and Quit" msgstr "భాగస్వామ్య అమరికలు మరియు నిష్క్రమించు (_h)" #: ../bleachbit/GUI.py:635 msgid "_Quit" msgstr "నిష్క్రమించు (_Q)" #: ../bleachbit/GUI.py:636 msgid "_File" msgstr "ఫైల్ (_F)" #: ../bleachbit/GUI.py:638 msgid "_Edit" msgstr "సవరణ (_E)" #: ../bleachbit/GUI.py:639 msgid "Help Contents" msgstr "సహాయ విషయములు" #: ../bleachbit/GUI.py:641 msgid "_Release Notes" msgstr "విడుదల వివరణ (_R)" #: ../bleachbit/GUI.py:643 msgid "_System Information" msgstr "వ్యవస్థ సమాచారం (_S)" #: ../bleachbit/GUI.py:644 msgid "_About" msgstr "గురించి (_A)" #: ../bleachbit/GUI.py:645 msgid "_Help" msgstr "సహాయం (_H)" #. TRANSLATORS: This is the preview button on the main window. It previews changes. #: ../bleachbit/GUI.py:669 msgctxt "button" msgid "Preview" msgstr "మునుజూపు" #: ../bleachbit/GUI.py:672 msgid "Preview files in the selected operations (without deleting any files)" msgstr "" #. TRANSLATORS: This is the clean button on the main window. #. It makes permanent changes: usually deleting files, sometimes altering them. #: ../bleachbit/GUI.py:680 msgctxt "button" msgid "Clean" msgstr "" #: ../bleachbit/GUI.py:683 msgid "Clean files in the selected operations" msgstr "" #: ../bleachbit/GUI.py:769 msgid "Error when checking for updates: " msgstr "" #: ../bleachbit/GUI.py:800 msgid "" "Error loading the SQLite module: the antivirus software may be blocking it." msgstr "" bleachbit-2.0/po/sk.po0000644000175000017500000013146213245436307013003 0ustar hlehle# Slovak translation for bleachbit # Copyright (c) 2009 Rosetta Contributors and Canonical Ltd 2009 # This file is distributed under the same license as the bleachbit package. # FIRST AUTHOR , 2009. # msgid "" msgstr "" "Project-Id-Version: bleachbit\n" "Report-Msgid-Bugs-To: FULL NAME \n" "POT-Creation-Date: 2015-12-15 17:12-0700\n" "PO-Revision-Date: 2016-01-29 21:32+0000\n" "Last-Translator: Miro Janosik \n" "Language-Team: Slovak \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=3; plural=(n==1) ? 1 : (n>=2 && n<=4) ? 2 : 0;\n" "X-Launchpad-Export-Date: 2016-01-30 21:36+0000\n" "X-Generator: Launchpad (build 17908)\n" #: ../cleaners/mc.xml ../cleaners/tortoisesvn.xml ../cleaners/vim.xml #: ../cleaners/safari.xml ../cleaners/links2.xml ../cleaners/seamonkey.xml #: ../cleaners/realplayer.xml ../cleaners/windows_defender.xml #: ../cleaners/d4x.xml ../cleaners/sqlite3.xml #: ../cleaners/internet_explorer.xml ../cleaners/libreoffice.xml #: ../cleaners/easytag.xml ../cleaners/bash.xml ../cleaners/nautilus.xml #: ../cleaners/octave.xml ../cleaners/elinks.xml ../cleaners/chromium.xml #: ../cleaners/google_chrome.xml msgid "History" msgstr "História" #: ../cleaners/mc.xml ../cleaners/tortoisesvn.xml ../cleaners/links2.xml #: ../cleaners/realplayer.xml ../cleaners/d4x.xml ../cleaners/libreoffice.xml #: ../cleaners/easytag.xml ../cleaners/nautilus.xml ../cleaners/gnome.xml #: ../bleachbit/Cleaner.py:351 ../bleachbit/Cleaner.py:425 #: ../bleachbit/Cleaner.py:434 msgid "Delete the usage history" msgstr "Zmazať históriu používania" #: ../cleaners/gpodder.xml ../cleaners/hippo_opensim_viewer.xml #: ../cleaners/thumbnails.xml ../cleaners/safari.xml ../cleaners/emesene.xml #: ../cleaners/liferea.xml ../cleaners/seamonkey.xml ../cleaners/vuze.xml #: ../cleaners/yahoo_messenger.xml ../cleaners/pidgin.xml #: ../cleaners/adobe_reader.xml ../cleaners/evolution.xml #: ../cleaners/tremulous.xml ../cleaners/libreoffice.xml ../cleaners/xine.xml #: ../cleaners/nexuiz.xml ../cleaners/exaile.xml ../cleaners/opera.xml #: ../cleaners/amsn.xml ../cleaners/gftp.xml ../cleaners/miro.xml #: ../cleaners/beagle.xml ../cleaners/kde.xml ../cleaners/epiphany.xml #: ../cleaners/flash.xml ../cleaners/secondlife_viewer.xml #: ../cleaners/java.xml ../cleaners/chromium.xml ../cleaners/audacious.xml #: ../cleaners/rhythmbox.xml ../cleaners/google_chrome.xml #: ../cleaners/thunderbird.xml ../bleachbit/Cleaner.py:194 #: ../bleachbit/Cleaner.py:372 ../bleachbit/Cleaner.py:457 msgid "Cache" msgstr "Cache" #: ../cleaners/gpodder.xml ../cleaners/yum.xml #: ../cleaners/hippo_opensim_viewer.xml ../cleaners/thumbnails.xml #: ../cleaners/windows_explorer.xml ../cleaners/liferea.xml #: ../cleaners/vuze.xml ../cleaners/yahoo_messenger.xml ../cleaners/pidgin.xml #: ../cleaners/adobe_reader.xml ../cleaners/evolution.xml #: ../cleaners/libreoffice.xml ../cleaners/apt.xml ../cleaners/xine.xml #: ../cleaners/nexuiz.xml ../cleaners/exaile.xml ../cleaners/amsn.xml #: ../cleaners/gftp.xml ../cleaners/miro.xml ../cleaners/beagle.xml #: ../cleaners/kde.xml ../cleaners/flash.xml ../cleaners/secondlife_viewer.xml #: ../cleaners/java.xml ../cleaners/audacious.xml ../cleaners/rhythmbox.xml #: ../bleachbit/Cleaner.py:372 ../bleachbit/Cleaner.py:457 #: ../bleachbit/Cleaner.py:491 ../bleachbit/Cleaner.py:493 msgid "Delete the cache" msgstr "Vymazať cache" #. TRANSLATORS: Vacuum is a verb. The term is jargon #. from the SQLite database. Microsoft Access uses #. the term 'Compact Database' (which you may translate #. instead). Another synonym is 'defragment.' #: ../cleaners/gpodder.xml ../cleaners/yum.xml ../cleaners/safari.xml #: ../cleaners/liferea.xml ../cleaners/chromium.xml #: ../cleaners/google_chrome.xml ../cleaners/thunderbird.xml #: ../bleachbit/Cleaner.py:216 ../bleachbit/Cleaner.py:362 #: ../bleachbit/Action.py:365 msgid "Vacuum" msgstr "Defragmentovať databázu" #: ../cleaners/gpodder.xml ../cleaners/yum.xml ../cleaners/safari.xml #: ../cleaners/liferea.xml ../cleaners/chromium.xml #: ../cleaners/google_chrome.xml ../cleaners/thunderbird.xml #: ../bleachbit/Cleaner.py:217 msgid "" "Clean database fragmentation to reduce space and improve speed without " "removing any data" msgstr "" "Čistenie databázy defragmentovaním čo redukuje miesto a zvyšuje rýchlosť bez " "odstránenia dát" #: ../cleaners/yum.xml ../cleaners/apt.xml msgid "Package manager" msgstr "Správca balíčkov" #: ../cleaners/warzone2100.xml ../cleaners/hippo_opensim_viewer.xml #: ../cleaners/gl-117.xml ../cleaners/tremulous.xml ../cleaners/nexuiz.xml #: ../cleaners/secondlife_viewer.xml msgid "Game" msgstr "Hra" #: ../cleaners/warzone2100.xml ../cleaners/hippo_opensim_viewer.xml #: ../cleaners/teamviewer.xml ../cleaners/realplayer.xml ../cleaners/vuze.xml #: ../cleaners/yahoo_messenger.xml ../cleaners/amule.xml #: ../cleaners/easytag.xml ../cleaners/exaile.xml ../cleaners/screenlets.xml #: ../cleaners/gftp.xml ../cleaners/miro.xml ../cleaners/audacious.xml #: ../bleachbit/Cleaner.py:488 msgid "Logs" msgstr "Záznamy" #: ../cleaners/warzone2100.xml ../cleaners/hippo_opensim_viewer.xml #: ../cleaners/teamviewer.xml ../cleaners/realplayer.xml ../cleaners/vuze.xml #: ../cleaners/yahoo_messenger.xml ../cleaners/amule.xml #: ../cleaners/exaile.xml ../cleaners/screenlets.xml ../cleaners/gftp.xml #: ../cleaners/miro.xml ../cleaners/audacious.xml ../bleachbit/Cleaner.py:488 msgid "Delete the logs" msgstr "Odstrániť poznámky programu" #: ../cleaners/thumbnails.xml ../cleaners/windows_explorer.xml msgid "Thumbnails" msgstr "Náhľady" #: ../cleaners/thumbnails.xml msgid "Icons for files on the system" msgstr "Ikony systémových súborov" #: ../cleaners/vim.xml ../cleaners/gedit.xml msgid "Editor" msgstr "Editor" #: ../cleaners/vim.xml msgid "" "Delete ~/.viminfo which includes file history, command history, and buffers" msgstr "" "Odstrániť ~/.viminfo ktorý obsahuje históriu, históriu príkazov a buffery" #: ../cleaners/filezilla.xml ../cleaners/transmission.xml ../cleaners/vuze.xml #: ../cleaners/amule.xml ../cleaners/gftp.xml msgid "File transfer client" msgstr "Klient pre prenos súborov" #: ../cleaners/filezilla.xml ../cleaners/paint.xml #: ../cleaners/windows_media_player.xml ../cleaners/windows_explorer.xml #: ../cleaners/teamviewer.xml ../cleaners/microsoft_office.xml #: ../cleaners/vlc.xml ../cleaners/adobe_reader.xml ../cleaners/winamp.xml #: ../cleaners/winzip.xml ../cleaners/winrar.xml ../cleaners/audacious.xml #: ../cleaners/wordpad.xml ../bleachbit/Cleaner.py:373 msgid "Most recently used" msgstr "Najčastejšie používané" #: ../cleaners/filezilla.xml ../cleaners/windows_explorer.xml #: ../cleaners/gwenview.xml ../cleaners/adobe_reader.xml ../cleaners/gedit.xml #: ../cleaners/kde.xml ../cleaners/audacious.xml ../bleachbit/Cleaner.py:374 #: ../bleachbit/Cleaner.py:471 msgid "Delete the list of recently used documents" msgstr "Zmazať zoznam nedávno použitých dokumentov" #: ../cleaners/skype.xml ../cleaners/xchat.xml ../cleaners/emesene.xml #: ../cleaners/yahoo_messenger.xml ../cleaners/pidgin.xml ../cleaners/amsn.xml msgid "Chat client" msgstr "Chatový klient" #: ../cleaners/skype.xml ../cleaners/xchat.xml ../cleaners/emesene.xml #: ../cleaners/seamonkey.xml ../cleaners/yahoo_messenger.xml #: ../cleaners/pidgin.xml ../cleaners/amsn.xml msgid "Chat logs" msgstr "Chatové záznamy" #: ../cleaners/skype.xml ../cleaners/xchat.xml ../cleaners/emesene.xml #: ../cleaners/seamonkey.xml ../cleaners/yahoo_messenger.xml #: ../cleaners/pidgin.xml ../cleaners/amsn.xml msgid "Delete the chat logs" msgstr "Zmazať záznamy z chatu" #: ../cleaners/skype.xml msgid "Installers" msgstr "Inštalátory" #: ../cleaners/skype.xml msgid "Delete cached patches and installers" msgstr "Odstrániť cache záplat a inštalátorov" #: ../cleaners/safari.xml ../cleaners/links2.xml ../cleaners/seamonkey.xml #: ../cleaners/konqueror.xml ../cleaners/internet_explorer.xml #: ../cleaners/opera.xml ../cleaners/epiphany.xml ../cleaners/elinks.xml #: ../cleaners/chromium.xml ../cleaners/google_chrome.xml #: ../bleachbit/Cleaner.py:228 msgid "Web browser" msgstr "Webový prehliadač" #: ../cleaners/safari.xml ../cleaners/seamonkey.xml ../cleaners/opera.xml #: ../cleaners/epiphany.xml ../cleaners/chromium.xml #: ../cleaners/google_chrome.xml ../cleaners/thunderbird.xml #: ../bleachbit/Cleaner.py:195 msgid "Delete the web cache, which reduces time to display revisited pages" msgstr "" "Zmazať webovú cache, ktorá urýchľuje načítanie už navštívených stránok" #: ../cleaners/safari.xml ../cleaners/liferea.xml ../cleaners/seamonkey.xml #: ../cleaners/realplayer.xml ../cleaners/konqueror.xml #: ../cleaners/internet_explorer.xml ../cleaners/opera.xml #: ../cleaners/epiphany.xml ../cleaners/flash.xml ../cleaners/silverlight.xml #: ../cleaners/chromium.xml ../cleaners/google_chrome.xml #: ../cleaners/thunderbird.xml ../bleachbit/Cleaner.py:196 msgid "Cookies" msgstr "Cookies" #: ../cleaners/safari.xml ../cleaners/liferea.xml ../cleaners/seamonkey.xml #: ../cleaners/realplayer.xml ../cleaners/konqueror.xml #: ../cleaners/internet_explorer.xml ../cleaners/opera.xml #: ../cleaners/epiphany.xml ../cleaners/flash.xml ../cleaners/silverlight.xml #: ../cleaners/chromium.xml ../cleaners/google_chrome.xml #: ../cleaners/thunderbird.xml ../bleachbit/Cleaner.py:197 msgid "" "Delete cookies, which contain information such as web site preferences, " "authentication, and tracking identification" msgstr "" "Zmazať cookies, ktoré obsahujú informácie ako nastavenie webových stránok, " "autentifikácie a identifikácie pre trackery" #: ../cleaners/safari.xml ../cleaners/konqueror.xml #: ../cleaners/internet_explorer.xml ../cleaners/opera.xml #: ../bleachbit/Cleaner.py:215 msgid "List of visited web pages" msgstr "Zoznam navštívených webových stránok" #. Torrent software can block a list of IP addresses, such as those that may belong to malware or anti-piracy organizations #: ../cleaners/transmission.xml msgid "Blocklists" msgstr "Zoznam blokovaných IP adries" #: ../cleaners/transmission.xml ../cleaners/windows_defender.xml #: ../cleaners/beagle.xml ../cleaners/thunderbird.xml ../cleaners/deepscan.xml #: ../bleachbit/Cleaner.py:199 msgid "Delete the files" msgstr "Zmazať súbory" #: ../cleaners/transmission.xml msgid "Blocklists will need update to work." msgstr "" "Aby zoznam blokovaných IP adries fungoval je potrebné ho aktualizovať." #: ../cleaners/transmission.xml msgid "Torrents" msgstr "Torrenty" #: ../cleaners/transmission.xml msgid "Delete the torrents (just the metadata but not the files described)" msgstr "Odstrániť torrenty (len metadáta, nie sťahované súbory)" #: ../cleaners/paint.xml ../cleaners/windows_media_player.xml #: ../cleaners/windows_explorer.xml ../cleaners/teamviewer.xml #: ../cleaners/microsoft_office.xml ../cleaners/vlc.xml ../cleaners/winamp.xml #: ../cleaners/winzip.xml ../cleaners/winrar.xml ../cleaners/wordpad.xml msgid "Delete the most recently used list" msgstr "Zmazať zoznam naposledy použitých" #: ../cleaners/emesene.xml msgid "Delete the avatars and emoticons cache" msgstr "Zmazať cache s avatary a smajlíky" #: ../cleaners/windows_media_player.xml ../cleaners/realplayer.xml #: ../cleaners/vlc.xml ../cleaners/winamp.xml msgid "Media player" msgstr "Prehrávač multimédií" #: ../cleaners/windows_explorer.xml ../cleaners/nautilus.xml msgid "File manager" msgstr "Správca súborov" #: ../cleaners/windows_explorer.xml ../cleaners/gwenview.xml #: ../cleaners/gedit.xml ../cleaners/kde.xml ../bleachbit/Cleaner.py:470 msgid "Recent documents list" msgstr "Zoznam nedávnych dokumentov" #. In Windows 'Run' is the dialog in the Start menu #. In GNOME 'Run' is the dialog shown when typing ALT+F2' #: ../cleaners/windows_explorer.xml ../cleaners/gnome.xml msgid "Run" msgstr "Spustiť" #: ../cleaners/windows_explorer.xml ../cleaners/opera.xml #: ../cleaners/gnome.xml ../cleaners/google_toolbar.xml msgid "Search history" msgstr "História hľadania" #: ../cleaners/windows_explorer.xml ../cleaners/opera.xml #: ../cleaners/gnome.xml ../cleaners/google_toolbar.xml msgid "Delete the search history" msgstr "Zmazať históriu hľadania" #: ../cleaners/gl-117.xml ../cleaners/microsoft_office.xml #: ../cleaners/beagle.xml ../cleaners/secondlife_viewer.xml #: ../cleaners/x11.xml msgid "Debug logs" msgstr "Ladiace záznamy" #: ../cleaners/gl-117.xml ../cleaners/microsoft_office.xml #: ../cleaners/easytag.xml ../cleaners/beagle.xml #: ../cleaners/secondlife_viewer.xml ../cleaners/x11.xml msgid "Delete the debug logs" msgstr "Odstrániť ladiace záznamy" #: ../cleaners/google_earth.xml ../cleaners/winetricks.xml #: ../cleaners/vuze.xml ../cleaners/adobe_reader.xml ../cleaners/amule.xml #: ../cleaners/wine.xml ../cleaners/internet_explorer.xml ../cleaners/gimp.xml #: ../cleaners/kde.xml ../cleaners/deepscan.xml ../bleachbit/Cleaner.py:522 msgid "Temporary files" msgstr "Dočasné súbory" #: ../cleaners/google_earth.xml ../cleaners/winetricks.xml #: ../cleaners/vuze.xml ../cleaners/adobe_reader.xml ../cleaners/amule.xml #: ../cleaners/wine.xml ../cleaners/internet_explorer.xml ../cleaners/gimp.xml #: ../cleaners/kde.xml ../cleaners/deepscan.xml ../bleachbit/Cleaner.py:522 msgid "Delete the temporary files" msgstr "Odstrániť dočasné súbory" #: ../cleaners/seamonkey.xml ../cleaners/opera.xml ../bleachbit/Cleaner.py:203 msgid "Download history" msgstr "História sťahovania" #: ../cleaners/seamonkey.xml ../cleaners/opera.xml ../bleachbit/Cleaner.py:203 msgid "List of files downloaded" msgstr "Zoznam stiahnutých súborov" #: ../cleaners/seamonkey.xml msgid "Delete the list of visited web pages" msgstr "Zmazať zoznam navštívených webových stránok" #: ../cleaners/vuze.xml ../cleaners/deepscan.xml ../bleachbit/Cleaner.py:192 msgid "Backup files" msgstr "Záloha súborov" #: ../cleaners/vuze.xml ../cleaners/deepscan.xml ../bleachbit/Cleaner.py:193 msgid "Delete the backup files" msgstr "Odstrániť zálohu súborov" #: ../cleaners/konqueror.xml ../cleaners/opera.xml ../cleaners/chromium.xml msgid "Current session" msgstr "Aktuálna relácie" #: ../cleaners/konqueror.xml ../cleaners/opera.xml ../cleaners/chromium.xml msgid "Delete the current session" msgstr "Zmazať aktuálne sedenie" #: ../cleaners/konqueror.xml ../cleaners/opera.xml ../bleachbit/Cleaner.py:215 msgid "URL history" msgstr "URL história" #: ../cleaners/microsoft_office.xml ../cleaners/libreoffice.xml #: ../bleachbit/Cleaner.py:377 msgid "Office suite" msgstr "Kancelárske programy" #: ../cleaners/windows_defender.xml msgid "Anti-virus" msgstr "Anti-vírus" #: ../cleaners/adobe_reader.xml msgid "Document viewer" msgstr "Prehliadač dokumentov" #: ../cleaners/evolution.xml ../cleaners/thunderbird.xml msgid "Email client" msgstr "Poštový klient" #: ../cleaners/tremulous.xml msgid "Delete the list of game servers" msgstr "Odstrániť zoznam herných serverov" #: ../cleaners/sqlite3.xml ../cleaners/bash.xml ../cleaners/octave.xml msgid "Delete the command history" msgstr "Zmazať históriu príkazov" #: ../cleaners/wine.xml msgid "Compatibility layer for Windows software" msgstr "Vrstva kompatibility pre Windows programy" #: ../cleaners/internet_explorer.xml ../cleaners/chromium.xml #: ../cleaners/google_chrome.xml ../bleachbit/Cleaner.py:204 msgid "Form history" msgstr "História formulárov" #: ../cleaners/internet_explorer.xml ../bleachbit/Cleaner.py:205 msgid "A history of forms entered in web sites and in the Search bar" msgstr "" "História formulárov zapísaná vo webových stránkach a v políčku vyhľadávania" #. This software edits metadata tags, such as title and artist, in audio files #: ../cleaners/easytag.xml msgid "Audio files tagger" msgstr "Editor značiek (tagov) zvukových súborov" #: ../cleaners/apt.xml msgid "Delete obsolete files" msgstr "Odstrániť staré súbory" #: ../cleaners/apt.xml msgid "Package lists" msgstr "Zoznamy balíkov" #: ../cleaners/xine.xml ../cleaners/miro.xml ../cleaners/flash.xml msgid "Multimedia viewer" msgstr "Multimedialny prehliadač" #: ../cleaners/recoll.xml ../cleaners/beagle.xml msgid "Search tool" msgstr "Vyhľadávacie nástroje" #: ../cleaners/recoll.xml ../cleaners/beagle.xml ../cleaners/thunderbird.xml msgid "Index" msgstr "Index" #: ../cleaners/recoll.xml msgid "" "Delete the search index, a database of words and the files they contain" msgstr "Zmazať vyhľadávací register, databázu slov a obsahujúce súbory" #: ../cleaners/gimp.xml msgid "Graphics editor" msgstr "Grafický editor" #: ../cleaners/exaile.xml msgid "Downloaded podcasts" msgstr "Stiahnuté podcasty" #: ../cleaners/exaile.xml msgid "Delete downloaded podcasts" msgstr "Zmazať stiahnuté podcasty" #: ../cleaners/bash.xml msgid "Shell" msgstr "Terminál" #. TRANSLATORS: DOM = Document Object Model. #: ../cleaners/opera.xml ../cleaners/chromium.xml #: ../cleaners/google_chrome.xml ../bleachbit/Cleaner.py:201 msgid "DOM Storage" msgstr "Úložisko DOM" #: ../cleaners/opera.xml ../cleaners/chromium.xml #: ../cleaners/google_chrome.xml ../bleachbit/Cleaner.py:201 msgid "Delete HTML5 cookies" msgstr "Zmazať HTML5 cookies" #: ../cleaners/opera.xml ../cleaners/epiphany.xml ../cleaners/chromium.xml #: ../cleaners/google_chrome.xml ../cleaners/thunderbird.xml #: ../bleachbit/Cleaner.py:210 msgid "Passwords" msgstr "Heslá" #: ../cleaners/opera.xml ../cleaners/epiphany.xml ../cleaners/chromium.xml #: ../cleaners/google_chrome.xml ../cleaners/thunderbird.xml #: ../bleachbit/Cleaner.py:211 msgid "" "A database of usernames and passwords as well as a list of sites that should " "not store passwords" msgstr "" "Databáza užívateľských mien a hesiel rovnako ako zoznam stránok, ktoré by " "nemali ukladať heslá" #: ../cleaners/opera.xml ../cleaners/epiphany.xml ../cleaners/chromium.xml #: ../cleaners/google_chrome.xml ../cleaners/thunderbird.xml #: ../bleachbit/Cleaner.py:213 msgid "This option will delete your saved passwords." msgstr "Táto voľba zmaže vaše uložené heslá." #: ../cleaners/nautilus.xml msgid "Custom folders will be reset." msgstr "Vlastné priečinky budú resetované." #: ../cleaners/gnome.xml ../cleaners/kde.xml msgid "Desktop environment" msgstr "Pracovné prostredie" #: ../cleaners/screenlets.xml msgid "Widgets for the desktop" msgstr "Widgety na plochu" #: ../cleaners/epiphany.xml msgid "Places" msgstr "Miesta" #: ../cleaners/epiphany.xml msgid "" "A database of URLs including bookmarks, favicons, and a history of visited " "web sites" msgstr "" "Databáza URL vrátane záložiek, ikoniek a histórie navštívených webových " "stránok" #: ../cleaners/epiphany.xml msgid "This option deletes all bookmarks." msgstr "Táto voľba zmaže všetky záložky" #: ../cleaners/winrar.xml msgid "File archiver" msgstr "Prehliadač archívov" #: ../cleaners/elinks.xml msgid "Delete the cookies, visited URLs, and search history" msgstr "Zmazať cookies, navštívené stránky a históriu hľadanie" #: ../cleaners/chromium.xml ../cleaners/google_chrome.xml msgid "A history of forms entered in web sites" msgstr "História formulárov zapísaná vo webových stránkach" #: ../cleaners/chromium.xml ../cleaners/google_chrome.xml msgid "" "Delete the history which includes visited sites, downloads, and thumbnails" msgstr "Zmazať históriu obsahujúci navštívené stránky, sťahovanie a náhľady" #: ../cleaners/chromium.xml ../cleaners/google_chrome.xml msgid "Search engines" msgstr "Prehliadače" #. 'Factory' means a search engine that is installed by default 'from the factory,' but this is different than a 'default search engine' https://lists.launchpad.net/launchpad-translators/msg00283.html #: ../cleaners/chromium.xml ../cleaners/google_chrome.xml msgid "" "Reset the search engine usage history and delete non-factory search engines, " "some of which are added automatically" msgstr "" "Nastavenie vyhladávania využitím histórie a odstránenie nevlastných " "vyhladávani, ktoré sú pridané automaticky" #: ../cleaners/audacious.xml msgid "Audio player" msgstr "Prehrávač hudby" #: ../cleaners/google_chrome.xml msgid "Session" msgstr "Sedenie" #: ../cleaners/google_chrome.xml msgid "Delete the current and last sessions" msgstr "Zmazať aktuálne a posledné sedenie" #: ../cleaners/x11.xml msgid "Windowing system" msgstr "Správca okien" #: ../cleaners/wordpad.xml msgid "Word processor" msgstr "Textový editor" #: ../cleaners/deepscan.xml msgid "Deep scan" msgstr "Hĺbkové prehľadávanie" #: ../cleaners/deepscan.xml msgid "Clean files widely scattered across the disk" msgstr "Vyčistiť súbory ktoré sú rozosiate po disku" #: ../cleaners/deepscan.xml msgid "Inspect the preview for any files you want to keep." msgstr "Prezrite si v náhľadu súbory, ktoré si chcete ponechať" #: ../cleaners/deepscan.xml msgid "This option is slow." msgstr "Táto možnosť je pomalá" #: ../bleachbit.desktop msgid "Unnecessary file cleaner" msgstr "Čistenie nepotrebných súborov" #: ../bleachbit.desktop msgid "Free space and maintain privacy" msgstr "Voľné miesto a zachovanie súkromia" #. TRANSLATORS: This is the label in the log indicating was #. skipped because it matches the whitelist #: ../bleachbit/Command.py:44 msgid "Skip" msgstr "Preskočiť" #. TRANSLATORS: This is the label in the log indicating will be #. deleted (for previews) or was actually deleted #: ../bleachbit/Command.py:74 msgid "Delete" msgstr "Odstrániť" #. TRANSLATORS: The file will be deleted when the #. system reboots #: ../bleachbit/Command.py:95 msgid "Mark for deletion" msgstr "Označiť pre zmazanie" #. TRANSLATORS: Parts of this file will be deleted #: ../bleachbit/Command.py:189 ../bleachbit/Command.py:223 #: ../bleachbit/Action.py:222 ../bleachbit/Action.py:235 #: ../bleachbit/Action.py:248 ../bleachbit/Action.py:261 #: ../bleachbit/Action.py:274 msgid "Clean file" msgstr "Vyčistiť súbor" #. TRANSLATORS: The file will be truncated to 0 bytes in length #: ../bleachbit/Command.py:265 msgid "Truncate" msgstr "Vyprázdniť" #: ../bleachbit/Command.py:308 msgid "Delete registry key" msgstr "Zmazať kľúče registrov" #: ../bleachbit/Unix.py:348 ../bleachbit/Unix.py:378 ../bleachbit/Unix.py:568 #, python-format msgid "Executable not found: %s" msgstr "Spustiteľný súbor nenájdený: %s" #. TRANSLATORS: %s expands to a name such as 'Firefox' or 'System'. #: ../bleachbit/Unix.py:565 ../bleachbit/Worker.py:141 #, python-format msgid "" "%s cannot be cleaned because it is currently running. Close it, and try " "again." msgstr "" "Nemožno spustiť čistič pre %s, pretože táto aplikácia práve beží. Zatvorte " "ju a skúste to znova." #: ../bleachbit/GuiBasic.py:112 msgid "Delete confirmation" msgstr "Potvrdiť odstránenie" #: ../bleachbit/GuiBasic.py:122 msgid "" "Are you sure you want to permanently delete files according to the selected " "operations? The actual files that will be deleted may have changed since " "you ran the preview." msgstr "" "Ste si istý že chcete navžy odstrániť vami označené súbory? Zmazané súbory " "sa nedajú obnoviť. Ak chcete vidieť o aké súbory sa jedná, pozrite si náhľad." #: ../bleachbit/GuiBasic.py:125 msgid "Are you sure you want to permanently delete these files?" msgstr "Ste si istý, že chcete navždy odstrániť tieto súbory?" #: ../bleachbit/GuiBasic.py:162 #, python-format msgid "" "Because you are running as root, please manually open this link in a web " "browser:\n" "%s" msgstr "" "Pretože ste program spustili ako root, manuálne skopírujte nižšie uvedený " "odkaz do adresného riadku vášho prehliadača:\n" "%s" #. TRANSLATORS: %s expands to bleachbit.sourceforge.net or similar #: ../bleachbit/GuiBasic.py:174 #, python-format msgid "Open web browser to %s?" msgstr "Otvoriť webovú stránku %s?" #. TRANSLATORS: This is cleaner name for cleaners imported from winapp2.ini #: ../bleachbit/Winapp.py:43 msgid "Applications" msgstr "Aplikácie" #. TRANSLATORS: This is cleaner name for cleaners imported #. from winapp2.ini #: ../bleachbit/Winapp.py:46 msgid "Internet" msgstr "Internet" #. TRANSLATORS: This is cleaner name for cleaners imported #. from winapp2.ini #: ../bleachbit/Winapp.py:49 msgid "Multimedia" msgstr "Multimédia" #. TRANSLATORS: This is cleaner name for cleaners imported #. from winapp2.ini #: ../bleachbit/Winapp.py:52 msgid "Utilities" msgstr "Nástroje" #: ../bleachbit/Winapp.py:63 msgid "Games" msgstr "Hry" #: ../bleachbit/Winapp.py:153 msgid "Imported from winapp2.ini" msgstr "Prenesené z winapp2.ini" #: ../bleachbit/Cleaner.py:199 msgid "Crash reports" msgstr "Správy zlyhania" #: ../bleachbit/Cleaner.py:206 msgid "Session restore" msgstr "Obnova sedenia" #: ../bleachbit/Cleaner.py:207 msgid "Loads the initial session after the browser closes or crashes" msgstr "Obnoviť predchádzajúcu reláciu po ukončení alebo páde prehliadača" #: ../bleachbit/Cleaner.py:209 msgid "Site preferences" msgstr "Doporučené stránky" #: ../bleachbit/Cleaner.py:209 msgid "Settings for individual sites" msgstr "Nastavenia individuálnych stránok" #. TRANSLATORS: desktop entries are .desktop files in Linux tha #. make up the application menu (the menu that shows BleachBit, #. Firefox, and others. The .desktop files also associate file #. types, so clicking on an .html file in Nautilus brings up #. Firefox. #. More information: #. http://standards.freedesktop.org/menu-spec/latest/index.html#introduction #: ../bleachbit/Cleaner.py:455 msgid "Broken desktop files" msgstr "Poškodené súbory plochy" #: ../bleachbit/Cleaner.py:456 msgid "Delete broken application menu entries and file associations" msgstr "Odstrániť poškodené položky menu a pridružené súbory" #. TRANSLATORS: Localizations are files supporting specific #. languages, so applications appear in Spanish, etc. #: ../bleachbit/Cleaner.py:460 msgid "Localizations" msgstr "Lokalizácia" #: ../bleachbit/Cleaner.py:461 msgid "Delete files for unwanted languages" msgstr "Zmazať súbory nežiaducich jazykov" #: ../bleachbit/Cleaner.py:463 msgid "Configure this option in the preferences." msgstr "Odporúčané nastevenie a výber." #: ../bleachbit/Cleaner.py:469 msgid "Rotated logs" msgstr "Otočené záznamy" #: ../bleachbit/Cleaner.py:469 msgid "Delete old system logs" msgstr "Zmazať staré systémové záznamy" #: ../bleachbit/Cleaner.py:472 msgid "Trash" msgstr "Kôš" #: ../bleachbit/Cleaner.py:472 msgid "Empty the trash" msgstr "Vysypať kôš" #: ../bleachbit/Cleaner.py:478 ../bleachbit/Cleaner.py:629 #: ../bleachbit/Worker.py:189 msgid "Memory" msgstr "Pamäť" #. TRANSLATORS: 'free' means 'unallocated' #: ../bleachbit/Cleaner.py:480 msgid "Wipe the swap and free memory" msgstr "Vyprázdniť odkladací priestor (Swap) a uvoľniť nejaké miesto v RAM" #: ../bleachbit/Cleaner.py:482 msgid "This option is experimental and may cause system problems." msgstr "Táto voľba je len experimentálna, môže spôsobiť problémy v systéme!" #: ../bleachbit/Cleaner.py:490 msgid "Memory dump" msgstr "Výpis pamäti" #: ../bleachbit/Cleaner.py:490 msgid "Delete the file memory.dmp" msgstr "Zmazať súbor memory.dmp" #. TRANSLATORS: Prefetch is Microsoft Windows jargon. #: ../bleachbit/Cleaner.py:493 msgid "Prefetch" msgstr "Prefetch" #: ../bleachbit/Cleaner.py:495 msgid "Recycle bin" msgstr "Kôš" #: ../bleachbit/Cleaner.py:495 msgid "Empty the recycle bin" msgstr "Vyprázdniť kôš" #. TRANSLATORS: 'Update' is a noun, and 'Update uninstallers' is an option to delete #. the uninstallers for software updates. #: ../bleachbit/Cleaner.py:498 msgid "Update uninstallers" msgstr "Odinštalátory aktualizácií" #: ../bleachbit/Cleaner.py:499 msgid "" "Delete uninstallers for Microsoft updates including hotfixes, service packs, " "and Internet Explorer updates" msgstr "" "Zmazanie odinštalátorov Microsoft aktualizácií vrátane rýchlych opráv, " "servisných balíkov, a aktualizácií Internet Explorer" #: ../bleachbit/Cleaner.py:506 ../bleachbit/Cleaner.py:722 msgid "Clipboard" msgstr "Schránka" #: ../bleachbit/Cleaner.py:507 msgid "" "The desktop environment's clipboard used for copy and paste operations" msgstr "" "Schránka desktopových prostredí používaná pre operácie kopírovať a vložiť" #. TRANSLATORS: "Custom" is an option allowing the user to specify which #. files and folders will be erased. #: ../bleachbit/Cleaner.py:514 ../bleachbit/GuiPreferences.py:63 msgid "Custom" msgstr "Vlastné" #: ../bleachbit/Cleaner.py:515 msgid "Delete user-specified files and folders" msgstr "Odstránenie užívateľom-špecifikované súbory a priečinky" #. TRANSLATORS: 'free' means 'unallocated' #: ../bleachbit/Cleaner.py:517 msgid "Free disk space" msgstr "Uvoľniť miesto na disku" #. TRANSLATORS: 'free' means 'unallocated' #: ../bleachbit/Cleaner.py:519 msgid "Overwrite free disk space to hide deleted files" msgstr "Skryť zmazané súbory prepísaním voľného miesta na disku" #: ../bleachbit/Cleaner.py:520 msgid "This option is very slow." msgstr "Táto voľba je veľmi pomalá." #: ../bleachbit/Cleaner.py:524 msgid "The system in general" msgstr "Systém všeobecne" #: ../bleachbit/Cleaner.py:526 ../bleachbit/Cleaner.py:841 msgid "System" msgstr "Systém" #. TRANSLATORS: 'Free' means 'unallocated.' #. %s expands to a path such as C:\ or /tmp/ #: ../bleachbit/Cleaner.py:730 ../bleachbit/Cleaner.py:874 #, python-format msgid "Overwrite free disk space %s" msgstr "Prepísať voľné miesto na disku %s" #: ../bleachbit/GuiPreferences.py:55 ../bleachbit/GUI.py:702 msgid "Preferences" msgstr "Nastavenia" #: ../bleachbit/GuiPreferences.py:61 msgid "General" msgstr "Hlavné" #: ../bleachbit/GuiPreferences.py:64 msgid "Drives" msgstr "Disky / oddiely" #: ../bleachbit/GuiPreferences.py:67 msgid "Languages" msgstr "Jazyky" #: ../bleachbit/GuiPreferences.py:69 msgid "Whitelist" msgstr "Whitelist" #: ../bleachbit/GuiPreferences.py:114 msgid "Check periodically for software updates via the Internet" msgstr "Pravidelne overovať aktualizácie prostredníctvom internetu" #: ../bleachbit/GuiPreferences.py:119 msgid "" "If an update is found, you will be given the option to view information " "about it. Then, you may manually download and install the update." msgstr "" "Ak je aktualizácia nájdená, budete mať možnosť zobraziť o nej informácie. " "Potom môzete aktualizácie ručne stiahnuť a nainštalovať ." #: ../bleachbit/GuiPreferences.py:125 msgid "Check for new beta releases" msgstr "Skúška nových beta odporúčaní" #: ../bleachbit/GuiPreferences.py:134 msgid "Download and update cleaners from community (winapp2.ini)" msgstr "Stiahnutie a odoslanie vyčistení pre komunitu (winapp2.ini)" #. TRANSLATORS: This means to hide cleaners which would do #. nothing. For example, if Firefox were never used on #. this system, this option would hide Firefox to simplify #. the list of cleaners. #: ../bleachbit/GuiPreferences.py:148 msgid "Hide irrelevant cleaners" msgstr "Skryť nepodstatné čističe" #. TRANSLATORS: Overwriting is the same as shredding. It is a way #. to prevent recovery of the data. You could also translate #. 'Shred files to prevent recovery.' #: ../bleachbit/GuiPreferences.py:156 msgid "Overwrite files to hide contents" msgstr "Prepísať súbory na skrytie obsahu" #: ../bleachbit/GuiPreferences.py:160 msgid "" "Overwriting is ineffective on some file systems and with certain BleachBit " "operations. Overwriting is significantly slower." msgstr "" "Prepisovanie je na niekterých súborových systémoch a s niekterými BleachBit " "operáciami neúčinné. Prepisovanie je naviac výrazne pomalejšie." #: ../bleachbit/GuiPreferences.py:163 msgid "Start BleachBit with computer" msgstr "Spustiť BleachBit pri štarte systému" #: ../bleachbit/GuiPreferences.py:169 msgid "Exit after cleaning" msgstr "Ukončiť po vyčistení" #: ../bleachbit/GuiPreferences.py:175 msgid "Confirm before delete" msgstr "Potvrdenie pred zmazaním" #: ../bleachbit/GuiPreferences.py:182 msgid "Use IEC sizes (1 KiB = 1024 bytes) instead of SI (1 kB = 1000 bytes)" msgstr "" "Zobrazuj veľkosti podľa IEC (1 KiB = 1024 bajtov) namiesto SI (1 kB = 1000 " "bajtov)" #: ../bleachbit/GuiPreferences.py:193 ../bleachbit/GuiPreferences.py:322 #: ../bleachbit/GuiPreferences.py:363 ../bleachbit/GUI.py:588 msgid "Choose a folder" msgstr "Vybrať priečinok" #: ../bleachbit/GuiPreferences.py:217 msgid "" "Choose a writable folder for each drive for which to overwrite free space." msgstr "" "Vyberte zapisovateľný priečinok pre každú jednotku, pre ktorú prepíše voľné " "miesto." #. TRANSLATORS: In the preferences dialog, this button adds a path to #. the list of paths #: ../bleachbit/GuiPreferences.py:239 msgctxt "button" msgid "Add" msgstr "Pridať" #. TRANSLATORS: In the preferences dialog, this button removes a path #. from the list of paths #: ../bleachbit/GuiPreferences.py:243 ../bleachbit/GuiPreferences.py:454 msgctxt "button" msgid "Remove" msgstr "Odstrániť" #: ../bleachbit/GuiPreferences.py:268 msgid "All languages will be deleted except those checked." msgstr "Všetky jazykové balíčky okrem označených budú zmazané." #: ../bleachbit/GuiPreferences.py:284 msgid "Preserve" msgstr "Zachovanie" #: ../bleachbit/GuiPreferences.py:288 msgid "Code" msgstr "Kód" #: ../bleachbit/GuiPreferences.py:292 ../bleachbit/GUI.py:131 msgid "Name" msgstr "Názov" #: ../bleachbit/GuiPreferences.py:309 ../bleachbit/GuiPreferences.py:350 msgid "Choose a file" msgstr "Vyberte súbor" #: ../bleachbit/GuiPreferences.py:316 ../bleachbit/GuiPreferences.py:357 #: ../bleachbit/GuiPreferences.py:401 msgid "File" msgstr "Súbor" #: ../bleachbit/GuiPreferences.py:330 ../bleachbit/GuiPreferences.py:371 #: ../bleachbit/GuiPreferences.py:403 msgid "Folder" msgstr "Priečinok" #: ../bleachbit/GuiPreferences.py:413 msgid "Theses paths will not be deleted or modified." msgstr "Tieto cesty nebudú zmazané alebo modifikované." #: ../bleachbit/GuiPreferences.py:416 msgid "These locations can be selected for deletion." msgstr "Tieto lokalizácie sú vybraté pre odstránenie." #: ../bleachbit/GuiPreferences.py:424 msgid "Type" msgstr "Typ" #. TRANSLATORS: In the tree view "Path" is used generically to refer to a #. file, a folder, or a pattern describing either #: ../bleachbit/GuiPreferences.py:430 msgid "Path" msgstr "Cesta" #: ../bleachbit/GuiPreferences.py:442 msgctxt "button" msgid "Add file" msgstr "Pridať súbor" #: ../bleachbit/GuiPreferences.py:448 msgctxt "button" msgid "Add folder" msgstr "Pridať priečinok" #: ../bleachbit/RecognizeCleanerML.py:57 msgid "Security warning" msgstr "Bezpečnostné upozornenie" #: ../bleachbit/RecognizeCleanerML.py:70 msgid "" "These cleaner definitions are new or have changed. Malicious definitions can " "damage your system. If you do not trust these changes, delete the files or " "quit." msgstr "" "Tieto definície čističov sú buď nové, alebo boli zmenené. Škodlivé definície " "môžu poškodiť váš systém. Ak im neveríte, môžete ich zmazať alebo ukončiť " "program." #: ../bleachbit/RecognizeCleanerML.py:85 msgctxt "column_label" msgid "Delete" msgstr "Zmazať" #: ../bleachbit/RecognizeCleanerML.py:90 msgctxt "column_label" msgid "Filename" msgstr "Názov súboru" #. TRANSLATORS: This indicates an error. The special keyword #. %(operation)s will be replaced by 'firefox' or 'opera' or #. some other cleaner ID. The special keyword %(msg)s will be #. replaced by a message such as 'Permission denied.' #: ../bleachbit/Worker.py:74 #, python-format msgid "Exception while running operation '%(operation)s': '%(msg)s'" msgstr "Výnimka pri spustení operácie '%(operation)s': '%(msg)s'" #. TRANSLATORS: 'free' means 'unallocated' #: ../bleachbit/Worker.py:187 msgid "Please wait. Wiping free disk space." msgstr "Čakajte prosím. Vymazávam voľné miesto na disku." #. TRANSLATORS: %s is replaced with Firefox, System, etc. #: ../bleachbit/Worker.py:189 ../bleachbit/Worker.py:329 #, python-format msgid "Please wait. Cleaning %s." msgstr "Čakajte prosím, čistím %s." #: ../bleachbit/Worker.py:204 msgid "Please wait. Wiping file system metadata." msgstr "Prosím čakajte. Prebieha čistenie metadát súborového systému." #: ../bleachbit/Worker.py:207 msgid "Please wait. Cleaning up after wiping file system metadata." msgstr "" "Prosím čakajte. Prebieha dodatočné čistenie metadát súborového systému." #: ../bleachbit/Worker.py:210 #, python-format msgid "About %d minute remaining." msgid_plural "About %d minutes remaining." msgstr[0] "Zostávajúci čas: %d minúta." msgstr[1] "Zostávajúci čas: %d minúty." msgstr[2] "Zostávajúci čas: %d minút." #. TRANSLATORS: This refers to disk space that was #. really recovered (in other words, not a preview) #: ../bleachbit/Worker.py:268 #, python-format msgid "Disk space recovered: %s" msgstr "Na disku bolo uvoľnených: %s" #. TRANSLATORS: This refers to a preview (no real #. changes were made yet) #: ../bleachbit/Worker.py:272 #, python-format msgid "Disk space to be recovered: %s" msgstr "Na disku sa približne uvoľní: %s" #. TRANSLATORS: This refers to the number of files really #. deleted (in other words, not a preview). #: ../bleachbit/Worker.py:277 #, python-format msgid "Files deleted: %d" msgstr "Odstránené súbory: %d" #. TRANSLATORS: This refers to the number of files that #. would be deleted (in other words, simply a preview). #: ../bleachbit/Worker.py:281 #, python-format msgid "Files to be deleted: %d" msgstr "Počet súborov, ktoré budú zmazané: %d" #: ../bleachbit/Worker.py:284 #, python-format msgid "Special operations: %d" msgstr "Špeciálnych operácií: %d" #: ../bleachbit/Worker.py:287 #, python-format msgid "Errors: %d" msgstr "Chýb: %d" #. TRANSLATORS: The "deep scan" feature searches over broad #. areas of the file system such as the user's whole home directory #. or all the system executables. #: ../bleachbit/Worker.py:303 msgid "Please wait. Running deep scan." msgstr "Čakajte, prosím. Prebieha detailné prehľadávanie." #. TRANSLATORS: %s is replaced with Firefox, System, etc. #: ../bleachbit/Worker.py:332 #, python-format msgid "Please wait. Previewing %s." msgstr "Čakajte prosím, vytváram náhľad pre %s." #: ../bleachbit/Update.py:77 msgid "New winapp2.ini was downloaded." msgstr "Nové winapp2.ini boli odoslané." #: ../bleachbit/Update.py:123 msgid "Update BleachBit" msgstr "Aktualizovať BleachBit" #: ../bleachbit/Update.py:128 msgid "A new version is available." msgstr "Je dostupná nová verzia." #. TRANSLATORS: %s expands to version such as '0.8.4' or '0.8.5beta' or #. similar #: ../bleachbit/Update.py:137 #, python-format msgid "Update to version %s" msgstr "Aktualizovať na verziu %s" #: ../bleachbit/Update.py:163 #, python-format msgid "" "Error when opening a network connection to %s to check for updates. Please " "verify the network is working." msgstr "" "Chyba pri spojení so sieťovým umiestnením %s kvôli získaniu aktualizácií. " "Prosím skontrolujte pripojenie k sieti." #: ../bleachbit/CLI.py:106 #, python-format msgid "not a valid cleaner: %s" msgstr "neplatný čistič: %s" #. TRANSLATORS: This is the command line usage. Don't translate #. %prog, but do translate usage, options, cleaner, and option. #. More information about the command line is here #. http://bleachbit.sourceforge.net/documentation/command-line #: ../bleachbit/CLI.py:133 msgid "usage: %prog [options] cleaner.option1 cleaner.option2" msgstr "použitie: %prog [volby] cistic.volba1 cistic.volba2" #: ../bleachbit/CLI.py:136 msgid "list cleaners" msgstr "zoznam čističov" #. TRANSLATORS: predefined cleaners are for applications, such as Firefox and Flash. #. This is different than cleaning an arbitrary file, such as a #. spreadsheet on the desktop. #: ../bleachbit/CLI.py:141 msgid "run cleaners to delete files and make other permanent changes" msgstr "" "spusti čističe na zmazanie súborov a vykonanie ďalších permanentných zmien." #: ../bleachbit/CLI.py:144 msgid "shred specific files or folders" msgstr "skartovať konkrétne súbory a adresáre" #: ../bleachbit/CLI.py:146 msgid "show system information" msgstr "zobraziť informácie o systéme" #: ../bleachbit/CLI.py:148 msgid "launch the graphical interface" msgstr "spustiť grafické rozhranie" #: ../bleachbit/CLI.py:150 msgid "do not prompt for administrator privileges" msgstr "bez povolenia správcu" #: ../bleachbit/CLI.py:155 msgid "preview files to be deleted and other changes" msgstr "zobraziť súbory, ktoré budú zmazané alebo inak pozmenené" #: ../bleachbit/CLI.py:157 msgid "use options set in the graphical interface" msgstr "použitie možnosti grafického rozhrania" #: ../bleachbit/CLI.py:160 msgid "update winapp2.ini, if a new version is available" msgstr "aktualizovať winapp2.ini, ak je dostupná nová verzia" #: ../bleachbit/CLI.py:162 msgid "output version information and exit" msgstr "vypísať informáciu o verzii a skončiť" #: ../bleachbit/CLI.py:164 msgid "overwrite files to hide contents" msgstr "prepísaním súborov skryť obsah" #. TRANSLATORS: this is the context menu #: ../bleachbit/Action.py:338 ../bleachbit/GUI.py:626 msgid "Clean" msgstr "Čistý" #: ../bleachbit/GUI.py:139 msgid "Active" msgstr "Aktívny" #. TRANSLATORS: Size is the label for the column that shows how #. much space an option would clean or did clean #: ../bleachbit/GUI.py:151 msgid "Size" msgstr "Veľkosť" #. TRANSLATORS: %(cleaner) may be Firefox, System, etc. #. %(option) may be cache, logs, cookies, etc. #. %(warning) may be 'This option is really slow' #: ../bleachbit/GUI.py:182 #, python-format msgid "" "Warning regarding %(cleaner)s - %(option)s:\n" "\n" "%(warning)s" msgstr "" "Upozornenie ohľadne %(cleaner)s - %(option)s:\n" "\n" "%(warning)s" #: ../bleachbit/GUI.py:368 msgid "You must select an operation" msgstr "Musíte vybrať operáciu" #: ../bleachbit/GUI.py:388 ../bleachbit/GUI.py:411 msgid "Done." msgstr "Hotovo." #: ../bleachbit/GUI.py:424 msgid "Program to clean unnecessary files" msgstr "Program na mazanie nepotrebných súborov" #: ../bleachbit/GUI.py:430 msgid "" "GNU General Public License version 3 or later.\n" "See http://www.gnu.org/licenses/gpl-3.0.txt" msgstr "" "GNU General Public License version 3 alebo vyšší.\n" "Pozri http://www.gnu.org/licenses/gpl-3.0.txt" #. TRANSLATORS: Maintain the names of translators here. #. Launchpad does this automatically for translations #. typed in Launchpad. This is a special string shown #. in the 'About' box. #: ../bleachbit/GUI.py:436 msgid "translator-credits" msgstr "" "Launchpad Contributions:\n" " Dreamy https://launchpad.net/~dreamy\n" " Eduard Hummel https://launchpad.net/~eduardhummel\n" " Milan Slovák https://launchpad.net/~milboys\n" " Miro Janosik https://launchpad.net/~miro-janosik-geo\n" " Roman Horník https://launchpad.net/~roman.hornik\n" " fanox https://launchpad.net/~any1" #: ../bleachbit/GUI.py:448 msgid "System information" msgstr "Systémové informácie" #: ../bleachbit/GUI.py:521 msgid "Choose files to shred" msgstr "Vyberte súbory, ktoré majú byť rozdrvené" #: ../bleachbit/GUI.py:524 msgid "Choose folder to shred" msgstr "Vyberte kúsok priečinku" #. TRANSLATORS: this is the context menu #: ../bleachbit/GUI.py:621 msgid "Preview" msgstr "Náhľad" #: ../bleachbit/GUI.py:690 msgid "_Shred Files" msgstr "_Rozdrvené súbory" #: ../bleachbit/GUI.py:692 msgid "Sh_red Folders" msgstr "Rozkúskovať súbory" #: ../bleachbit/GUI.py:694 msgid "_Wipe Free Space" msgstr "_Odstrániť voľné miesto" #: ../bleachbit/GUI.py:696 msgid "S_hred Settings and Quit" msgstr "_Skartovať Nastavenia a Ukončiť" #: ../bleachbit/GUI.py:698 msgid "_Quit" msgstr "_Koniec" #: ../bleachbit/GUI.py:700 msgid "_File" msgstr "_Súbor" #: ../bleachbit/GUI.py:703 msgid "_Edit" msgstr "_Úpravy" #: ../bleachbit/GUI.py:704 msgid "Help Contents" msgstr "Obsah Pomocníka" #: ../bleachbit/GUI.py:707 msgid "_Release Notes" msgstr "_Poznámky k vydaniu" #: ../bleachbit/GUI.py:710 msgid "_System Information" msgstr "_Systémové informácie" #: ../bleachbit/GUI.py:713 msgid "_About" msgstr "_O programe" #: ../bleachbit/GUI.py:714 msgid "_Help" msgstr "_Pomocník" #: ../bleachbit/GUI.py:739 msgctxt "button" msgid "Preview" msgstr "Náhľad" #: ../bleachbit/GUI.py:744 msgid "Preview files in the selected operations (without deleting any files)" msgstr "" "Náhľad súborov vo vybraných operáciach (bez odstránenia nejakých súborov)" #: ../bleachbit/GUI.py:754 msgctxt "button" msgid "Clean" msgstr "Vyčistiť" #: ../bleachbit/GUI.py:758 msgid "Clean files in the selected operations" msgstr "Vyčistiť vybrané súbory" #: ../bleachbit/GUI.py:847 msgid "Error when checking for updates: " msgstr "Chyba pri kontrole aktualizácií: " #: ../bleachbit/GUI.py:887 msgid "" "Error loading the SQLite module: the antivirus software may be blocking it." msgstr "" "Chyba pri načítaní modulu SQLite: môže byť blokovaný antivírusovým softvérom." #: ../bleachbit/GUI.py:890 msgid "" "You are running BleachBit with administrative privileges for cleaning shared " "parts of the system, and references to the user profile folder will clean " "only the root account." msgstr "" "BleachBit beží s administrátorskými právami. Vyčistiť sa dajú systémové " "časti zdieľané medzi užívateľmi, a adresár profilu užívateľa root." bleachbit-2.0/po/el.po0000644000175000017500000015551013245436307012766 0ustar hlehle# Greek translation for bleachbit # Copyright (c) 2010 Rosetta Contributors and Canonical Ltd 2010 # This file is distributed under the same license as the bleachbit package. # FIRST AUTHOR , 2010. # msgid "" msgstr "" "Project-Id-Version: bleachbit\n" "Report-Msgid-Bugs-To: FULL NAME \n" "POT-Creation-Date: 2016-06-24 19:52-0600\n" "PO-Revision-Date: 2016-09-30 21:21+0000\n" "Last-Translator: Christos X \n" "Language-Team: Greek \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n != 1;\n" "X-Launchpad-Export-Date: 2016-10-01 21:56+0000\n" "X-Generator: Launchpad (build 18204)\n" #: ../cleaners/mc.xml ../cleaners/tortoisesvn.xml ../cleaners/vim.xml #: ../cleaners/safari.xml ../cleaners/links2.xml ../cleaners/seamonkey.xml #: ../cleaners/realplayer.xml ../cleaners/windows_defender.xml #: ../cleaners/d4x.xml ../cleaners/sqlite3.xml #: ../cleaners/internet_explorer.xml ../cleaners/libreoffice.xml #: ../cleaners/easytag.xml ../cleaners/bash.xml ../cleaners/nautilus.xml #: ../cleaners/octave.xml ../cleaners/elinks.xml ../cleaners/chromium.xml #: ../cleaners/google_chrome.xml msgid "History" msgstr "Ιστορικό" #: ../cleaners/mc.xml ../cleaners/tortoisesvn.xml ../cleaners/links2.xml #: ../cleaners/realplayer.xml ../cleaners/d4x.xml ../cleaners/libreoffice.xml #: ../cleaners/easytag.xml ../cleaners/nautilus.xml ../cleaners/gnome.xml #: ../bleachbit/Cleaner.py:351 ../bleachbit/Cleaner.py:425 #: ../bleachbit/Cleaner.py:434 msgid "Delete the usage history" msgstr "Διαγραφή ιστορικού χρήσης" #: ../cleaners/gpodder.xml ../cleaners/hippo_opensim_viewer.xml #: ../cleaners/thumbnails.xml ../cleaners/safari.xml ../cleaners/emesene.xml #: ../cleaners/liferea.xml ../cleaners/seamonkey.xml ../cleaners/vuze.xml #: ../cleaners/yahoo_messenger.xml ../cleaners/pidgin.xml #: ../cleaners/adobe_reader.xml ../cleaners/evolution.xml #: ../cleaners/tremulous.xml ../cleaners/libreoffice.xml ../cleaners/xine.xml #: ../cleaners/nexuiz.xml ../cleaners/exaile.xml ../cleaners/opera.xml #: ../cleaners/amsn.xml ../cleaners/gftp.xml ../cleaners/miro.xml #: ../cleaners/beagle.xml ../cleaners/kde.xml ../cleaners/epiphany.xml #: ../cleaners/flash.xml ../cleaners/secondlife_viewer.xml ../cleaners/java.xml #: ../cleaners/chromium.xml ../cleaners/audacious.xml ../cleaners/rhythmbox.xml #: ../cleaners/google_chrome.xml ../cleaners/thunderbird.xml #: ../bleachbit/Cleaner.py:194 ../bleachbit/Cleaner.py:372 #: ../bleachbit/Cleaner.py:457 msgid "Cache" msgstr "Προσωρινή μνήμη" #: ../cleaners/gpodder.xml ../cleaners/yum.xml #: ../cleaners/hippo_opensim_viewer.xml ../cleaners/thumbnails.xml #: ../cleaners/windows_explorer.xml ../cleaners/liferea.xml #: ../cleaners/vuze.xml ../cleaners/yahoo_messenger.xml ../cleaners/pidgin.xml #: ../cleaners/adobe_reader.xml ../cleaners/evolution.xml #: ../cleaners/libreoffice.xml ../cleaners/apt.xml ../cleaners/xine.xml #: ../cleaners/nexuiz.xml ../cleaners/exaile.xml ../cleaners/amsn.xml #: ../cleaners/gftp.xml ../cleaners/miro.xml ../cleaners/beagle.xml #: ../cleaners/kde.xml ../cleaners/flash.xml ../cleaners/secondlife_viewer.xml #: ../cleaners/java.xml ../cleaners/audacious.xml ../cleaners/rhythmbox.xml #: ../bleachbit/Cleaner.py:372 ../bleachbit/Cleaner.py:457 #: ../bleachbit/Cleaner.py:491 ../bleachbit/Cleaner.py:493 msgid "Delete the cache" msgstr "Διαγραφή προσωρινής μνήμης" #. TRANSLATORS: Vacuum is a verb. The term is jargon #. from the SQLite database. Microsoft Access uses #. the term 'Compact Database' (which you may translate #. instead). Another synonym is 'defragment.' #: ../cleaners/gpodder.xml ../cleaners/yum.xml ../cleaners/safari.xml #: ../cleaners/liferea.xml ../cleaners/chromium.xml #: ../cleaners/google_chrome.xml ../cleaners/thunderbird.xml #: ../bleachbit/Cleaner.py:216 ../bleachbit/Cleaner.py:362 #: ../bleachbit/Action.py:419 msgid "Vacuum" msgstr "Καθαρισμός βάσης δεδομένων" #: ../cleaners/gpodder.xml ../cleaners/yum.xml ../cleaners/safari.xml #: ../cleaners/liferea.xml ../cleaners/chromium.xml #: ../cleaners/google_chrome.xml ../cleaners/thunderbird.xml #: ../bleachbit/Cleaner.py:217 msgid "" "Clean database fragmentation to reduce space and improve speed without " "removing any data" msgstr "" "Καθαρισμός κατακερματισμένων κομματιών βάσης δεδομένων για απελευθέρωση " "χώρου και βελτίωση ταχύτητας χωρίς την αφαίρεση δεδομένων" #: ../cleaners/yum.xml ../cleaners/apt.xml msgid "Package manager" msgstr "Διαχειριστής πακέτων" #: ../cleaners/warzone2100.xml ../cleaners/hippo_opensim_viewer.xml #: ../cleaners/gl-117.xml ../cleaners/tremulous.xml ../cleaners/nexuiz.xml #: ../cleaners/secondlife_viewer.xml msgid "Game" msgstr "Παιχνίδι" #: ../cleaners/warzone2100.xml ../cleaners/hippo_opensim_viewer.xml #: ../cleaners/teamviewer.xml ../cleaners/realplayer.xml ../cleaners/vuze.xml #: ../cleaners/yahoo_messenger.xml ../cleaners/amule.xml #: ../cleaners/easytag.xml ../cleaners/exaile.xml ../cleaners/screenlets.xml #: ../cleaners/gftp.xml ../cleaners/miro.xml ../cleaners/audacious.xml #: ../bleachbit/Cleaner.py:488 msgid "Logs" msgstr "Αρχεία καταγραφής" #: ../cleaners/warzone2100.xml ../cleaners/hippo_opensim_viewer.xml #: ../cleaners/teamviewer.xml ../cleaners/realplayer.xml ../cleaners/vuze.xml #: ../cleaners/yahoo_messenger.xml ../cleaners/amule.xml ../cleaners/exaile.xml #: ../cleaners/screenlets.xml ../cleaners/gftp.xml ../cleaners/miro.xml #: ../cleaners/audacious.xml ../bleachbit/Cleaner.py:488 msgid "Delete the logs" msgstr "Διαγραφή αρχείων καταγραφής" #: ../cleaners/thumbnails.xml ../cleaners/windows_explorer.xml msgid "Thumbnails" msgstr "Εικόνες επισκόπησης" #: ../cleaners/thumbnails.xml msgid "Icons for files on the system" msgstr "Εικονίδια για αρχεία σχετικά με το σύστημα" #: ../cleaners/vim.xml ../cleaners/gedit.xml msgid "Editor" msgstr "Επεξεργαστής" #: ../cleaners/vim.xml msgid "" "Delete ~/.viminfo which includes file history, command history, and buffers" msgstr "" "Διαγραφή ~/.viminfo που περιλαμβάνει ιστορικό αρχείων, ιστορικό εντολών, και " "buffers" #: ../cleaners/filezilla.xml ../cleaners/transmission.xml ../cleaners/vuze.xml #: ../cleaners/amule.xml ../cleaners/gftp.xml msgid "File transfer client" msgstr "Μεταφορα αρχείων χρήστη" #: ../cleaners/filezilla.xml ../cleaners/paint.xml #: ../cleaners/windows_media_player.xml ../cleaners/windows_explorer.xml #: ../cleaners/teamviewer.xml ../cleaners/microsoft_office.xml #: ../cleaners/vlc.xml ../cleaners/adobe_reader.xml ../cleaners/winamp.xml #: ../cleaners/winzip.xml ../cleaners/winrar.xml ../cleaners/audacious.xml #: ../cleaners/wordpad.xml ../bleachbit/Cleaner.py:373 msgid "Most recently used" msgstr "Τα πιο πρόσφατα χρησιμοποιημένα" #: ../cleaners/filezilla.xml ../cleaners/windows_explorer.xml #: ../cleaners/gwenview.xml ../cleaners/adobe_reader.xml ../cleaners/gedit.xml #: ../cleaners/kde.xml ../cleaners/audacious.xml ../bleachbit/Cleaner.py:374 #: ../bleachbit/Cleaner.py:471 msgid "Delete the list of recently used documents" msgstr "Διαγραφή λίστας των πρόσφατα χρησιμοποιημένων εγγράφων" #: ../cleaners/skype.xml ../cleaners/xchat.xml ../cleaners/emesene.xml #: ../cleaners/yahoo_messenger.xml ../cleaners/pidgin.xml ../cleaners/amsn.xml msgid "Chat client" msgstr "Εφαρμογή συνομιλίας (chat client)" #: ../cleaners/skype.xml ../cleaners/xchat.xml ../cleaners/emesene.xml #: ../cleaners/seamonkey.xml ../cleaners/yahoo_messenger.xml #: ../cleaners/pidgin.xml ../cleaners/amsn.xml msgid "Chat logs" msgstr "Αρχεία καταγραφής συνομιλίας" #: ../cleaners/skype.xml ../cleaners/xchat.xml ../cleaners/emesene.xml #: ../cleaners/seamonkey.xml ../cleaners/yahoo_messenger.xml #: ../cleaners/pidgin.xml ../cleaners/amsn.xml msgid "Delete the chat logs" msgstr "Διαγραφή αρχείων καταγραφής συνομιλιών" #: ../cleaners/skype.xml msgid "Installers" msgstr "Εγκαταστάτες" #: ../cleaners/skype.xml msgid "Delete cached patches and installers" msgstr "Διαγραφή προσωρινών ενημερώσεων και εγκαταστατών" #: ../cleaners/safari.xml ../cleaners/links2.xml ../cleaners/seamonkey.xml #: ../cleaners/konqueror.xml ../cleaners/internet_explorer.xml #: ../cleaners/opera.xml ../cleaners/epiphany.xml ../cleaners/elinks.xml #: ../cleaners/chromium.xml ../cleaners/google_chrome.xml #: ../bleachbit/Cleaner.py:228 msgid "Web browser" msgstr "Περιηγητής διαδικτύου" #: ../cleaners/safari.xml ../cleaners/seamonkey.xml ../cleaners/opera.xml #: ../cleaners/epiphany.xml ../cleaners/chromium.xml #: ../cleaners/google_chrome.xml ../cleaners/thunderbird.xml #: ../bleachbit/Cleaner.py:195 msgid "Delete the web cache, which reduces time to display revisited pages" msgstr "" "Διαγραφή της προσωρινής μνήμης του ιστού, η οποία μειώνει τον χρόνο " "εμφάνισης ήδη προβεβλημένων σελίδων" #: ../cleaners/safari.xml ../cleaners/liferea.xml ../cleaners/seamonkey.xml #: ../cleaners/realplayer.xml ../cleaners/konqueror.xml #: ../cleaners/internet_explorer.xml ../cleaners/opera.xml #: ../cleaners/epiphany.xml ../cleaners/flash.xml ../cleaners/silverlight.xml #: ../cleaners/chromium.xml ../cleaners/google_chrome.xml #: ../cleaners/thunderbird.xml ../bleachbit/Cleaner.py:196 msgid "Cookies" msgstr "Cookies" #: ../cleaners/safari.xml ../cleaners/liferea.xml ../cleaners/seamonkey.xml #: ../cleaners/realplayer.xml ../cleaners/konqueror.xml #: ../cleaners/internet_explorer.xml ../cleaners/opera.xml #: ../cleaners/epiphany.xml ../cleaners/flash.xml ../cleaners/silverlight.xml #: ../cleaners/chromium.xml ../cleaners/google_chrome.xml #: ../cleaners/thunderbird.xml ../bleachbit/Cleaner.py:197 msgid "" "Delete cookies, which contain information such as web site preferences, " "authentication, and tracking identification" msgstr "" "Διαγραφή των cookies, που περιέχουν πληροφορίες όπως προτιμήσεις " "ιστοσελίδων, πιστοποίηση και καταγραφή αναγνώρισης" #: ../cleaners/safari.xml ../cleaners/konqueror.xml #: ../cleaners/internet_explorer.xml ../cleaners/opera.xml #: ../bleachbit/Cleaner.py:215 msgid "List of visited web pages" msgstr "Λίστα ανοιγμένων ιστοσελίδων" #. Torrent software can block a list of IP addresses, such as those that may belong to malware or anti-piracy organizations #: ../cleaners/transmission.xml msgid "Blocklists" msgstr "Λίστα μπλοκαρισμένων" #: ../cleaners/transmission.xml ../cleaners/windows_defender.xml #: ../cleaners/beagle.xml ../cleaners/thunderbird.xml ../cleaners/deepscan.xml #: ../bleachbit/Cleaner.py:199 msgid "Delete the files" msgstr "Διαγραφή αρχείων" #: ../cleaners/transmission.xml msgid "Blocklists will need update to work." msgstr "Η λίστα μπλοκαρισμένων θα χρειαστεί αναβάθμιση για να λειτουργήσει" #: ../cleaners/transmission.xml msgid "Torrents" msgstr "Torrents" #: ../cleaners/transmission.xml msgid "Delete the torrents (just the metadata but not the files described)" msgstr "" "Διαγράψτε τα torrents (μόνο τα μεταδεδομένα, αλλά όχι τα αρχεία που " "περιγράφονται)" #: ../cleaners/transmission.xml msgid "Statistics" msgstr "Στατιστικά" #: ../cleaners/transmission.xml msgid "Delete the file" msgstr "Διαγράψτε το αρχείο" #: ../cleaners/paint.xml ../cleaners/windows_media_player.xml #: ../cleaners/windows_explorer.xml ../cleaners/teamviewer.xml #: ../cleaners/microsoft_office.xml ../cleaners/vlc.xml ../cleaners/winamp.xml #: ../cleaners/winzip.xml ../cleaners/winrar.xml ../cleaners/wordpad.xml msgid "Delete the most recently used list" msgstr "Διαγραφή της πιο πρόσφατης χρησιμοποιημένης λίστας" #: ../cleaners/emesene.xml msgid "Delete the avatars and emoticons cache" msgstr "Διαγραφή της προσωρινής μνήμης για τα avatar και τα emoticon" #: ../cleaners/windows_media_player.xml ../cleaners/realplayer.xml #: ../cleaners/vlc.xml ../cleaners/winamp.xml msgid "Media player" msgstr "Αναπαραγωγέας πολυμέσων" #: ../cleaners/windows_explorer.xml ../cleaners/nautilus.xml msgid "File manager" msgstr "Διαχειριστής αρχείων" #: ../cleaners/windows_explorer.xml ../cleaners/gwenview.xml #: ../cleaners/gedit.xml ../cleaners/kde.xml ../bleachbit/Cleaner.py:470 msgid "Recent documents list" msgstr "Λίστα πρόσφατων εγγράφων" #. In Windows 'Run' is the dialog in the Start menu #. In GNOME 'Run' is the dialog shown when typing ALT+F2' #: ../cleaners/windows_explorer.xml ../cleaners/gnome.xml msgid "Run" msgstr "Εκτέλεση" #: ../cleaners/windows_explorer.xml ../cleaners/opera.xml ../cleaners/gnome.xml #: ../cleaners/google_toolbar.xml msgid "Search history" msgstr "Ιστορικό αναζήτησης" #: ../cleaners/windows_explorer.xml ../cleaners/opera.xml ../cleaners/gnome.xml #: ../cleaners/google_toolbar.xml msgid "Delete the search history" msgstr "Διαγραφή ιστορικού αναζήτησης" #: ../cleaners/windows_explorer.xml msgid "This will restart Windows Explorer." msgstr "Αυτο θα επανεκκινήσει τον εξερευνητή των Windows." #: ../cleaners/gl-117.xml ../cleaners/microsoft_office.xml #: ../cleaners/beagle.xml ../cleaners/secondlife_viewer.xml ../cleaners/x11.xml msgid "Debug logs" msgstr "Αρχεία καταγραφής αποσφαλματώσεων" #: ../cleaners/gl-117.xml ../cleaners/microsoft_office.xml #: ../cleaners/easytag.xml ../cleaners/beagle.xml #: ../cleaners/secondlife_viewer.xml ../cleaners/x11.xml msgid "Delete the debug logs" msgstr "Διαγραφή αρχείων καταγραφής αποσφαλματώσεων" #: ../cleaners/google_earth.xml ../cleaners/winetricks.xml ../cleaners/vuze.xml #: ../cleaners/adobe_reader.xml ../cleaners/amule.xml ../cleaners/wine.xml #: ../cleaners/internet_explorer.xml ../cleaners/gimp.xml ../cleaners/kde.xml #: ../cleaners/deepscan.xml ../bleachbit/Cleaner.py:522 msgid "Temporary files" msgstr "Προσωρινά αρχεία" #: ../cleaners/google_earth.xml ../cleaners/winetricks.xml ../cleaners/vuze.xml #: ../cleaners/adobe_reader.xml ../cleaners/amule.xml ../cleaners/wine.xml #: ../cleaners/internet_explorer.xml ../cleaners/gimp.xml ../cleaners/kde.xml #: ../cleaners/deepscan.xml ../bleachbit/Cleaner.py:522 msgid "Delete the temporary files" msgstr "Διαγραφή προσωρινών αρχείων" #: ../cleaners/seamonkey.xml ../cleaners/opera.xml ../bleachbit/Cleaner.py:203 msgid "Download history" msgstr "Ιστορικό λήψεων" #: ../cleaners/seamonkey.xml ../cleaners/opera.xml ../bleachbit/Cleaner.py:203 msgid "List of files downloaded" msgstr "Λίστα ληφθέντων αρχείων" #: ../cleaners/seamonkey.xml msgid "Delete the list of visited web pages" msgstr "Διαγραφής λίστας ανοιγμένων ιστοσελίδων" #: ../cleaners/vuze.xml ../cleaners/deepscan.xml ../bleachbit/Cleaner.py:192 msgid "Backup files" msgstr "Αντίγραφα ασφαλείας" #: ../cleaners/vuze.xml ../cleaners/deepscan.xml ../bleachbit/Cleaner.py:193 msgid "Delete the backup files" msgstr "Διαγραφή των αντιγράφων ασφαλείας" #: ../cleaners/konqueror.xml ../cleaners/opera.xml ../cleaners/chromium.xml msgid "Current session" msgstr "Τρέχουσα συνεδρία" #: ../cleaners/konqueror.xml ../cleaners/opera.xml ../cleaners/chromium.xml msgid "Delete the current session" msgstr "Διαγραφή τρέχουσας συνεδρίας" #: ../cleaners/konqueror.xml ../cleaners/opera.xml ../bleachbit/Cleaner.py:215 msgid "URL history" msgstr "Ιστορικό URL" #: ../cleaners/microsoft_office.xml ../cleaners/libreoffice.xml #: ../bleachbit/Cleaner.py:377 msgid "Office suite" msgstr "Σουίτα γραφείου (Office)" #: ../cleaners/windows_defender.xml msgid "Anti-virus" msgstr "Αντιικό" #: ../cleaners/adobe_reader.xml msgid "Document viewer" msgstr "Προβολέας εγγράφων" #: ../cleaners/evolution.xml ../cleaners/thunderbird.xml msgid "Email client" msgstr "Ηλεκτρονικό ταχυδρομείο" #: ../cleaners/tremulous.xml msgid "Delete the list of game servers" msgstr "Διαγραφή της λίστας εξυπηρετητών των παιχνιδιών" #: ../cleaners/sqlite3.xml ../cleaners/bash.xml ../cleaners/octave.xml msgid "Delete the command history" msgstr "Διαγραφή ιστορικού εντολών" #: ../cleaners/wine.xml msgid "Compatibility layer for Windows software" msgstr "Στρώμα συμβατότητας για λογισμικό των Windows" #: ../cleaners/internet_explorer.xml ../cleaners/chromium.xml #: ../cleaners/google_chrome.xml ../bleachbit/Cleaner.py:204 msgid "Form history" msgstr "Ιστορικό Φορμών" #: ../cleaners/internet_explorer.xml ../bleachbit/Cleaner.py:205 msgid "A history of forms entered in web sites and in the Search bar" msgstr "" "Ιστορικό φορμών που καταχωρήθηκαν σε ιστοσελίδες και στη μπάρα Αναζήτησης" #. This software edits metadata tags, such as title and artist, in audio files #: ../cleaners/easytag.xml msgid "Audio files tagger" msgstr "Εφαρμογή προσθήκης ετικετών σε μουσικά αρχεία" #: ../cleaners/apt.xml msgid "Delete obsolete files" msgstr "Διαγραφή παλαιών αρχείων" #: ../cleaners/apt.xml msgid "Package lists" msgstr "Λίστες πακέτων" #: ../cleaners/xine.xml ../cleaners/miro.xml ../cleaners/flash.xml msgid "Multimedia viewer" msgstr "Προβολέας πολυμέσων" #: ../cleaners/recoll.xml ../cleaners/beagle.xml msgid "Search tool" msgstr "Εργαλείο αναζήτησης" #: ../cleaners/recoll.xml ../cleaners/beagle.xml ../cleaners/thunderbird.xml msgid "Index" msgstr "Ευρετήριο" #: ../cleaners/recoll.xml msgid "" "Delete the search index, a database of words and the files they contain" msgstr "" "Διαγραφή ευρετηρίου αναζήτησης, μιας βάσης δεδομένων λέξεων και των αρχείων " "που περιέχουν" #: ../cleaners/gimp.xml msgid "Graphics editor" msgstr "Επεξεργαστής γραφικών" #: ../cleaners/exaile.xml msgid "Downloaded podcasts" msgstr "Κατεβασμένα αρχεία ψηφιακού ραδιοφώνου (podcast)" #: ../cleaners/exaile.xml msgid "Delete downloaded podcasts" msgstr "Διαγραφή κατεβασμένων αρχείων ψηφιακού ραδιοφώνου (podcast)" #: ../cleaners/bash.xml msgid "Shell" msgstr "Κέλυφος" #. TRANSLATORS: DOM = Document Object Model. #: ../cleaners/opera.xml ../cleaners/epiphany.xml ../cleaners/chromium.xml #: ../cleaners/google_chrome.xml ../bleachbit/Cleaner.py:201 msgid "DOM Storage" msgstr "Αποθήκη δεδομένων DOM" #: ../cleaners/opera.xml ../cleaners/epiphany.xml ../cleaners/chromium.xml #: ../cleaners/google_chrome.xml ../bleachbit/Cleaner.py:201 msgid "Delete HTML5 cookies" msgstr "Διαγραφή HTML5 cookies" #: ../cleaners/opera.xml ../cleaners/epiphany.xml ../cleaners/chromium.xml #: ../cleaners/google_chrome.xml ../cleaners/thunderbird.xml #: ../bleachbit/Cleaner.py:210 msgid "Passwords" msgstr "Κωδικοί πρόσβασης" #: ../cleaners/opera.xml ../cleaners/epiphany.xml ../cleaners/chromium.xml #: ../cleaners/google_chrome.xml ../cleaners/thunderbird.xml #: ../bleachbit/Cleaner.py:211 msgid "" "A database of usernames and passwords as well as a list of sites that should " "not store passwords" msgstr "" "Μια βάση δεδομένων με ονόματα χρηστών και κωδικών πρόσβασης όπως και μια " "λίστα με τις ιστοσελίδες που δεν θα έπρεπε να αποθηκεύουν κωδικούς" #: ../cleaners/opera.xml ../cleaners/epiphany.xml ../cleaners/chromium.xml #: ../cleaners/google_chrome.xml ../cleaners/thunderbird.xml #: ../bleachbit/Cleaner.py:213 msgid "This option will delete your saved passwords." msgstr "Αυτή η επιλογή θα διαγράψει τους αποθηκευμένους κωδικούς πρόσβασης." #: ../cleaners/nautilus.xml msgid "Custom folders will be reset." msgstr "Οι τροποποιημένοι φάκελοι θα επαναφερθούν στην αρχική τους μορφή." #: ../cleaners/gnome.xml ../cleaners/kde.xml msgid "Desktop environment" msgstr "Περιβάλλον επιφάνειας εργασίας" #: ../cleaners/screenlets.xml msgid "Widgets for the desktop" msgstr "Widgets για την επιφάνεια εργασίας" #: ../cleaners/epiphany.xml msgid "Places" msgstr "Τοποθεσίες" #: ../cleaners/epiphany.xml msgid "" "A database of URLs including bookmarks, favicons, and a history of visited " "web sites" msgstr "" "Μια βάση δεδομένων των URLs που περιλαμβάνουν σελιδοδείκτες, αγαπημένα " "εικονίδια και το ιστορικό ήδη ανοιγμένων ιστοσελίδων" #: ../cleaners/epiphany.xml msgid "This option deletes all bookmarks." msgstr "Αυτή η επιλογή διαγράφει όλους τους σελιδοδείκτες." #: ../cleaners/winrar.xml msgid "File archiver" msgstr "Aρχειοθήκη" #: ../cleaners/elinks.xml msgid "Delete the cookies, visited URLs, and search history" msgstr "Διαγραφή cookies, ήδη ανοιγμένων URLs και ιστορικού αναζήτησης" #: ../cleaners/chromium.xml ../cleaners/google_chrome.xml msgid "A history of forms entered in web sites" msgstr "Ιστορικό φορμών που καταχωρήθηκαν σε ιστοσελίδες" #: ../cleaners/chromium.xml ../cleaners/google_chrome.xml msgid "" "Delete the history which includes visited sites, downloads, and thumbnails" msgstr "" "Διαγραφή του ιστορικού που περιλαμβάνει τις τοποθεσίες που επισκεφθήκατε, " "λήψεις και μικρογραφίες" #: ../cleaners/chromium.xml ../cleaners/google_chrome.xml msgid "Search engines" msgstr "Μηχανές αναζήτησης" #. 'Factory' means a search engine that is installed by default 'from the factory,' but this is different than a 'default search engine' https://lists.launchpad.net/launchpad-translators/msg00283.html #: ../cleaners/chromium.xml ../cleaners/google_chrome.xml msgid "" "Reset the search engine usage history and delete non-factory search engines, " "some of which are added automatically" msgstr "" "Επαναφορά ιστορικού χρήσης των μηχανών αναζήτησης και διαγραφή μη " "προεπιλεγμένων (non-factory) μηχανών αναζήτησης, κάποιες από τις οποίες " "προστίθενται αυτόματα" #: ../cleaners/audacious.xml msgid "Audio player" msgstr "Αναπαραγωγέας ήχου" #: ../cleaners/rhythmbox.xml msgid "Database" msgstr "Βάση δεδομένων" #: ../cleaners/rhythmbox.xml msgid "" "Delete the database, which contain information such as play count and last " "played" msgstr "" "Διαγραφή της βάσης δεδομένων, που περιέχει πληροφορίες όπως αριθμό " "αναπαραγωγών και τελευταίας αναπαραγωγής" #: ../cleaners/google_chrome.xml msgid "Session" msgstr "Συνεδρία" #: ../cleaners/google_chrome.xml msgid "Delete the current and last sessions" msgstr "Διαγραφή της παρούσας και των τελευταίων συνεδριών" #: ../cleaners/x11.xml msgid "Windowing system" msgstr "Σύστημα παραθύρων" #: ../cleaners/wordpad.xml msgid "Word processor" msgstr "Eπεξεργαστής κειμένου" #: ../cleaners/deepscan.xml msgid "Deep scan" msgstr "Βαθύ σκανάρισμα" #: ../cleaners/deepscan.xml msgid "Clean files widely scattered across the disk" msgstr "Διαγραφή αρχείων που βρίσκονται διάσπαρτα στο δίσκο" #: ../cleaners/deepscan.xml msgid "Inspect the preview for any files you want to keep." msgstr "Ελέγξτε την προεπισκόπηση για τυχόν αρχεία που θέλετε να κρατήσετε." #: ../cleaners/deepscan.xml msgid "This option is slow." msgstr "Αυτή η επιλογή είναι αργή." #: ../bleachbit.desktop msgid "Unnecessary file cleaner" msgstr "Καθαριστής περιττών αρχείων" #: ../bleachbit.desktop msgid "Free space and maintain privacy" msgstr "Ελευθερώστε χώρο και διατηρήστε το ιδιωτικό σας απόρρητο" #. TRANSLATORS: This is the label in the log indicating was #. skipped because it matches the whitelist #: ../bleachbit/Command.py:44 msgid "Skip" msgstr "Παράκαμψη" #. TRANSLATORS: This is the label in the log indicating will be #. deleted (for previews) or was actually deleted #: ../bleachbit/Command.py:74 msgid "Delete" msgstr "Διαγραφή" #. TRANSLATORS: The file will be deleted when the #. system reboots #: ../bleachbit/Command.py:95 msgid "Mark for deletion" msgstr "Μαρκάρισμα για διαγραφή" #. TRANSLATORS: Parts of this file will be deleted #: ../bleachbit/Command.py:192 ../bleachbit/Command.py:226 #: ../bleachbit/Action.py:256 ../bleachbit/Action.py:269 #: ../bleachbit/Action.py:282 ../bleachbit/Action.py:295 #: ../bleachbit/Action.py:308 msgid "Clean file" msgstr "Καθαρισμός αρχείου" #. TRANSLATORS: The file will be truncated to 0 bytes in length #: ../bleachbit/Command.py:268 msgid "Truncate" msgstr "Αποκοπή" #: ../bleachbit/Command.py:311 msgid "Delete registry key" msgstr "Διαγραφή κλειδιού μητρώου (registry key)" #: ../bleachbit/Unix.py:340 ../bleachbit/Unix.py:370 ../bleachbit/Unix.py:574 #, python-format msgid "Executable not found: %s" msgstr "Το εκτελέσιμο δεν βρέθηκε: %s" #. TRANSLATORS: %s expands to a name such as 'Firefox' or 'System'. #: ../bleachbit/Unix.py:571 ../bleachbit/Worker.py:141 #, python-format msgid "" "%s cannot be cleaned because it is currently running. Close it, and try " "again." msgstr "" "Το %s δεν μπόρεσε να καθαριστεί διότι ήδη τρέχει. Κλείστε το και δοκιμάστε " "ξανά." #: ../bleachbit/GuiBasic.py:112 msgid "Delete confirmation" msgstr "Επιβεβαίωση διαγραφής" #: ../bleachbit/GuiBasic.py:122 msgid "" "Are you sure you want to permanently delete files according to the selected " "operations? The actual files that will be deleted may have changed since " "you ran the preview." msgstr "" "Είστε βέβαιοι ότι θέλετε να διαγράψετε οριστικά τα αρχεία σύμφωνα με τις " "επιλεγμένες ενέργειες; Τα συγκεκριμένα αρχεία μπορεί να έχουν τροποποιηθεί " "από την τελευταία φορά που εκτελέσατε την προεπισκόπηση." #: ../bleachbit/GuiBasic.py:125 msgid "Are you sure you want to permanently delete these files?" msgstr "Είστε βέβαιοι ότι θέλετε να διαγράψετε οριστικά αυτά τα αρχεία;" #: ../bleachbit/GuiBasic.py:162 #, python-format msgid "" "Because you are running as root, please manually open this link in a web " "browser:\n" "%s" msgstr "" "Επειδή η εκτέλεση γίνεται με δικαιώματα υπερχρήστη (root), παρακαλούμε " "ανοίξτε χειροκίνητα τον ακόλουθο σύνδεσμο σε έναν περιηγητή ιστού:\n" "%s" #. TRANSLATORS: %s expands to www.bleachbit.org or similar #: ../bleachbit/GuiBasic.py:174 #, python-format msgid "Open web browser to %s?" msgstr "Άνοιγμα περιηγητή ιστού στο %s;" #. TRANSLATORS: This is cleaner name for cleaners imported from winapp2.ini #: ../bleachbit/Winapp.py:44 msgid "Applications" msgstr "Εφαρμογές" #. TRANSLATORS: This is cleaner name for cleaners imported #. from winapp2.ini #: ../bleachbit/Winapp.py:47 msgid "Internet" msgstr "Διαδίκτυο" #. TRANSLATORS: This is cleaner name for cleaners imported #. from winapp2.ini #: ../bleachbit/Winapp.py:50 msgid "Multimedia" msgstr "Πολυμέσα" #. TRANSLATORS: This is cleaner name for cleaners imported #. from winapp2.ini #: ../bleachbit/Winapp.py:53 msgid "Utilities" msgstr "Εργαλεία" #: ../bleachbit/Winapp.py:64 msgid "Games" msgstr "Παιχνίδια" #: ../bleachbit/Winapp.py:165 msgid "Imported from winapp2.ini" msgstr "Εισήχθει από το winapp2.ini" #: ../bleachbit/Cleaner.py:199 msgid "Crash reports" msgstr "Αναφορές κατάρρευσης" #: ../bleachbit/Cleaner.py:206 msgid "Session restore" msgstr "Επαναφορά συνεδρίας" #: ../bleachbit/Cleaner.py:207 msgid "Loads the initial session after the browser closes or crashes" msgstr "" "Φορτώνει την αρχική συνεδρία μετά από κλείσιμο ή κόλλημα του προγράμματος " "περιήγησης" #: ../bleachbit/Cleaner.py:209 msgid "Site preferences" msgstr "Προτιμήσεις ιστοσελίδων" #: ../bleachbit/Cleaner.py:209 msgid "Settings for individual sites" msgstr "Ρυθμίσεις για μεμονωμένες ιστοσελίδες" #. TRANSLATORS: desktop entries are .desktop files in Linux that #. make up the application menu (the menu that shows BleachBit, #. Firefox, and others. The .desktop files also associate file #. types, so clicking on an .html file in Nautilus brings up #. Firefox. #. More information: #. http://standards.freedesktop.org/menu-spec/latest/index.html#introduction #: ../bleachbit/Cleaner.py:455 msgid "Broken desktop files" msgstr "Κατεστραμμένα αρχεία επιφάνειας εργασίας" #: ../bleachbit/Cleaner.py:456 msgid "Delete broken application menu entries and file associations" msgstr "" "Διαγραφή κατεστραμένων καταχωρήσεων μενού εφαρμογών και συσχετίσεων αρχείων" #. TRANSLATORS: Localizations are files supporting specific #. languages, so applications appear in Spanish, etc. #: ../bleachbit/Cleaner.py:460 msgid "Localizations" msgstr "Αρχεία γλωσσικής υποστήριξης (localizations)" #: ../bleachbit/Cleaner.py:461 msgid "Delete files for unwanted languages" msgstr "Διαγραφή αρχείων για ανεπιθύμητες γλώσσες" #: ../bleachbit/Cleaner.py:463 msgid "Configure this option in the preferences." msgstr "Επεξεργαστείτε αυτή την επιλογή στις προτιμήσεις." #: ../bleachbit/Cleaner.py:469 msgid "Rotated logs" msgstr "Παλαιά αρχεία καταγραφής" #: ../bleachbit/Cleaner.py:469 msgid "Delete old system logs" msgstr "Διαγραφή παλαιών αρχείων καταγραφής συστήματος" #: ../bleachbit/Cleaner.py:472 msgid "Trash" msgstr "Κάδος απορριμάτων" #: ../bleachbit/Cleaner.py:472 msgid "Empty the trash" msgstr "Άδειασμα κάδου απορριμάτων" #: ../bleachbit/Cleaner.py:478 ../bleachbit/Cleaner.py:629 #: ../bleachbit/Worker.py:189 msgid "Memory" msgstr "Μνήμη" #. TRANSLATORS: 'free' means 'unallocated' #: ../bleachbit/Cleaner.py:480 msgid "Wipe the swap and free memory" msgstr "Καθαρισμός swap και απελευθέρωση μνήμης" #: ../bleachbit/Cleaner.py:482 msgid "This option is experimental and may cause system problems." msgstr "" "Αυτή η επιλογή είναι πειραματική και μπορεί να δημιουργήσει προβλήματα στο " "σύστημα." #: ../bleachbit/Cleaner.py:490 msgid "Memory dump" msgstr "Αποτύπωση μνήμης" #: ../bleachbit/Cleaner.py:490 msgid "Delete the file memory.dmp" msgstr "Διαγραφή του αρχείου memory.dmp" #. TRANSLATORS: Prefetch is Microsoft Windows jargon. #: ../bleachbit/Cleaner.py:493 msgid "Prefetch" msgstr "Προανάκτηση" #: ../bleachbit/Cleaner.py:495 msgid "Recycle bin" msgstr "Κάδος ανακύκλωσης" #: ../bleachbit/Cleaner.py:495 msgid "Empty the recycle bin" msgstr "Άδειασμα του κάδου ανακύκλωσης" #. TRANSLATORS: 'Update' is a noun, and 'Update uninstallers' is an option to delete #. the uninstallers for software updates. #: ../bleachbit/Cleaner.py:498 msgid "Update uninstallers" msgstr "Εφαρμογές απεγκατάστασης ενημερώσεων" #: ../bleachbit/Cleaner.py:499 msgid "" "Delete uninstallers for Microsoft updates including hotfixes, service packs, " "and Internet Explorer updates" msgstr "" "Διαγραφή των εφαρμογών απεγκατάστασης για ενημερώσεις της Microsoft που " "περιλαμβάνουν αναγκαίες επιδιορθώσεις, service packs και ενημερώσεις του " "Internet Explorer" #: ../bleachbit/Cleaner.py:506 ../bleachbit/Cleaner.py:722 msgid "Clipboard" msgstr "Πρόχειρο" #: ../bleachbit/Cleaner.py:507 msgid "" "The desktop environment's clipboard used for copy and paste operations" msgstr "" "Το πρόχειρο της επιφάνειας εργασίας που χρησιμοποιείται για ενέργειες " "αντιγραφής και επικόλλησης" #. TRANSLATORS: "Custom" is an option allowing the user to specify which #. files and folders will be erased. #: ../bleachbit/Cleaner.py:514 ../bleachbit/GuiPreferences.py:63 msgid "Custom" msgstr "Προσαρμοσμένο" #: ../bleachbit/Cleaner.py:515 msgid "Delete user-specified files and folders" msgstr "Διαγραφή αρχείων και φακέλων που έχουν καθοριστεί από τον χρήστη" #. TRANSLATORS: 'free' means 'unallocated' #: ../bleachbit/Cleaner.py:517 msgid "Free disk space" msgstr "Ελεύθερος χώρος δίσκου" #. TRANSLATORS: 'free' means 'unallocated' #: ../bleachbit/Cleaner.py:519 msgid "Overwrite free disk space to hide deleted files" msgstr "Διαγραφή ελεύθερου χώρου για απόκρυψη διαγραμμένων αρχείων" #: ../bleachbit/Cleaner.py:520 msgid "This option is very slow." msgstr "Αυτή η επιλογή είναι πολύ αργή." #: ../bleachbit/Cleaner.py:524 msgid "The system in general" msgstr "Το σύστημα γενικά" #: ../bleachbit/Cleaner.py:526 ../bleachbit/Cleaner.py:846 msgid "System" msgstr "Σύστημα" #. TRANSLATORS: 'Free' means 'unallocated.' #. %s expands to a path such as C:\ or /tmp/ #: ../bleachbit/Cleaner.py:730 ../bleachbit/Cleaner.py:879 #, python-format msgid "Overwrite free disk space %s" msgstr "Διαγραφή ελεύθερου χώρου στο %s" #: ../bleachbit/GuiPreferences.py:55 ../bleachbit/GUI.py:706 msgid "Preferences" msgstr "Προτιμήσεις" #: ../bleachbit/GuiPreferences.py:61 msgid "General" msgstr "Γενικά" #: ../bleachbit/GuiPreferences.py:64 msgid "Drives" msgstr "Δίσκοι" #: ../bleachbit/GuiPreferences.py:67 msgid "Languages" msgstr "Γλώσσες" #: ../bleachbit/GuiPreferences.py:69 msgid "Whitelist" msgstr "Λίστα ασφαλών τοποθεσιών (Whitelist)" #: ../bleachbit/GuiPreferences.py:114 msgid "Check periodically for software updates via the Internet" msgstr "Περιοδικός έλεγχος στο διαδίκτυο για ενημερώσεις λογισμικού" #: ../bleachbit/GuiPreferences.py:119 msgid "" "If an update is found, you will be given the option to view information " "about it. Then, you may manually download and install the update." msgstr "" "Αν βρεθεί κάποια ενημέρωση, θα σας δωθεί η επιλογή να δείτε περαιτέρω " "πληροφορίες γι' αυτήν. Έπειτα, μπορείτε χειροκίνητα να την κατεβάσετε και " "εγκαταστήσετε." #: ../bleachbit/GuiPreferences.py:125 msgid "Check for new beta releases" msgstr "Έλεγχος για νέες δοκιμαστικές κυκλοφορίες" #: ../bleachbit/GuiPreferences.py:134 msgid "Download and update cleaners from community (winapp2.ini)" msgstr "" "Κατεβάστε και ενημερώστε τους καθαριστές από την κοινότητα (winapp2.ini)" #. TRANSLATORS: This means to hide cleaners which would do #. nothing. For example, if Firefox were never used on #. this system, this option would hide Firefox to simplify #. the list of cleaners. #: ../bleachbit/GuiPreferences.py:148 msgid "Hide irrelevant cleaners" msgstr "Απόκρυψη μη χρηστικών καθαριστών" #. TRANSLATORS: Overwriting is the same as shredding. It is a way #. to prevent recovery of the data. You could also translate #. 'Shred files to prevent recovery.' #: ../bleachbit/GuiPreferences.py:156 msgid "Overwrite files to hide contents" msgstr "Αντικαταστήστε αρχεία για να αποτρέψετε μελλοντική ανάκτησή τους" #: ../bleachbit/GuiPreferences.py:160 msgid "" "Overwriting is ineffective on some file systems and with certain BleachBit " "operations. Overwriting is significantly slower." msgstr "" "Η αντικατάσταση είναι ανούσια σε μερικά συστήματα αρχείων και με " "συγκεκριμένες ενέργειες του BleachBit. Είναι επίσης ιδιαίτερα χρονοβόρα " "διαδικασία." #: ../bleachbit/GuiPreferences.py:163 msgid "Start BleachBit with computer" msgstr "Εκκίνηση του BleachBit με το άνοιγμα του υπολογιστή" #: ../bleachbit/GuiPreferences.py:169 msgid "Exit after cleaning" msgstr "Έξοδος μετά τον καθαρισμό" #: ../bleachbit/GuiPreferences.py:175 msgid "Confirm before delete" msgstr "Επιβεβαίωση πριν τη διαγραφή" #: ../bleachbit/GuiPreferences.py:183 msgid "Use IEC sizes (1 KiB = 1024 bytes) instead of SI (1 kB = 1000 bytes)" msgstr "" "Χρησιμοποιήστε τα μεγέθη IEC (1 KiB = 1024 bytes) αντί της SI (1 kB = 1000 " "bytes)" #: ../bleachbit/GuiPreferences.py:194 ../bleachbit/GuiPreferences.py:323 #: ../bleachbit/GuiPreferences.py:364 ../bleachbit/GUI.py:592 msgid "Choose a folder" msgstr "Επιλογή φακέλου" #: ../bleachbit/GuiPreferences.py:218 msgid "" "Choose a writable folder for each drive for which to overwrite free space." msgstr "" "Επιλέξτε έναν εγγράψιμο φάκελο για κάθε δίσκο ώστε να αντικαταστήσετε τον " "ελεύθερο χώρο." #. TRANSLATORS: In the preferences dialog, this button adds a path to #. the list of paths #: ../bleachbit/GuiPreferences.py:240 msgctxt "button" msgid "Add" msgstr "Προσθήκη" #. TRANSLATORS: In the preferences dialog, this button removes a path #. from the list of paths #: ../bleachbit/GuiPreferences.py:244 ../bleachbit/GuiPreferences.py:455 msgctxt "button" msgid "Remove" msgstr "Αφαίρεση" #: ../bleachbit/GuiPreferences.py:269 msgid "All languages will be deleted except those checked." msgstr "Όλες οι γλώσσες θα διαγραφούν εκτός από αυτές που έχουν επιλεγεί." #: ../bleachbit/GuiPreferences.py:285 msgid "Preserve" msgstr "Διατήρηση" #: ../bleachbit/GuiPreferences.py:289 msgid "Code" msgstr "Κώδικας" #: ../bleachbit/GuiPreferences.py:293 ../bleachbit/GUI.py:135 msgid "Name" msgstr "Όνομα" #: ../bleachbit/GuiPreferences.py:310 ../bleachbit/GuiPreferences.py:351 msgid "Choose a file" msgstr "Επιλογή αρχείου" #: ../bleachbit/GuiPreferences.py:317 ../bleachbit/GuiPreferences.py:358 #: ../bleachbit/GuiPreferences.py:402 msgid "File" msgstr "Αρχείο" #: ../bleachbit/GuiPreferences.py:331 ../bleachbit/GuiPreferences.py:372 #: ../bleachbit/GuiPreferences.py:404 msgid "Folder" msgstr "Φάκελος" #: ../bleachbit/GuiPreferences.py:414 msgid "Theses paths will not be deleted or modified." msgstr "Αυτές οι τοποθεσίες δε θα διαγραφούν ούτε θα τροποποιηθούν." #: ../bleachbit/GuiPreferences.py:417 msgid "These locations can be selected for deletion." msgstr "Αυτές οι τοποθεσίες μπορούν να επιλεγούν για διαγραφή." #: ../bleachbit/GuiPreferences.py:425 msgid "Type" msgstr "Τύπος" #. TRANSLATORS: In the tree view "Path" is used generically to refer to a #. file, a folder, or a pattern describing either #: ../bleachbit/GuiPreferences.py:431 msgid "Path" msgstr "Τοποθεσία" #: ../bleachbit/GuiPreferences.py:443 msgctxt "button" msgid "Add file" msgstr "Προσθήκη αρχείου" #: ../bleachbit/GuiPreferences.py:449 msgctxt "button" msgid "Add folder" msgstr "Προσθήκη φακέλου" #: ../bleachbit/RecognizeCleanerML.py:57 msgid "Security warning" msgstr "Προειδοποίηση ασφαλείας" #: ../bleachbit/RecognizeCleanerML.py:70 msgid "" "These cleaner definitions are new or have changed. Malicious definitions can " "damage your system. If you do not trust these changes, delete the files or " "quit." msgstr "" "Αυτοί οι ορισμοί για τους καθαριστές είναι καινούριοι ή έχουν τροποποιηθεί. " "Λάθος ορισμοί μπορούν να βλάψουν το σύστημά σας. Αν δεν εμπιστεύεστε αυτές " "τις αλλαγές, διαγράψτε τα αρχεία ή κλείστε το πρόγραμμα." #: ../bleachbit/RecognizeCleanerML.py:85 msgctxt "column_label" msgid "Delete" msgstr "Διαγραφή" #: ../bleachbit/RecognizeCleanerML.py:90 msgctxt "column_label" msgid "Filename" msgstr "Όνομα αρχείου" #. TRANSLATORS: This indicates an error. The special keyword #. %(operation)s will be replaced by 'firefox' or 'opera' or #. some other cleaner ID. The special keyword %(msg)s will be #. replaced by a message such as 'Permission denied.' #: ../bleachbit/Worker.py:74 #, python-format msgid "Exception while running operation '%(operation)s': '%(msg)s'" msgstr "Σφάλμα κατά την εκτέλεση της ενέργειας '%(operation)s': '%(msg)s'" #. TRANSLATORS: 'free' means 'unallocated' #: ../bleachbit/Worker.py:187 msgid "Please wait. Wiping free disk space." msgstr "Παρακαλώ περιμένετε. Καθαρισμός ελεύθερου χώρου στο δίσκο." #. TRANSLATORS: %s is replaced with Firefox, System, etc. #: ../bleachbit/Worker.py:189 ../bleachbit/Worker.py:329 #, python-format msgid "Please wait. Cleaning %s." msgstr "Παρακαλώ περιμένετε. Γίνεται καθαρισμός από %s." #: ../bleachbit/Worker.py:204 msgid "Please wait. Wiping file system metadata." msgstr "Παρακαλώ περιμένετε. Διαγραφή μεταδεδομένων του συστήματος αρχείων." #: ../bleachbit/Worker.py:207 msgid "Please wait. Cleaning up after wiping file system metadata." msgstr "" "Παρακαλώ περιμένετε. Καθαρισμός έπειτα από τη διαγραφή μεταδεδομένων του " "συστήματος αρχείων." #: ../bleachbit/Worker.py:210 #, python-format msgid "About %d minute remaining." msgid_plural "About %d minutes remaining." msgstr[0] "Απομένει περίπου %d λεπτό." msgstr[1] "Απομένουν περίπου %d λεπτά." #. TRANSLATORS: This refers to disk space that was #. really recovered (in other words, not a preview) #: ../bleachbit/Worker.py:268 #, python-format msgid "Disk space recovered: %s" msgstr "Χώρος που ανακτήθηκε στο δίσκο: %s" #. TRANSLATORS: This refers to a preview (no real #. changes were made yet) #: ../bleachbit/Worker.py:272 #, python-format msgid "Disk space to be recovered: %s" msgstr "Χώρος στο δίσκο που θα ανακτηθεί: %s" #. TRANSLATORS: This refers to the number of files really #. deleted (in other words, not a preview). #: ../bleachbit/Worker.py:277 #, python-format msgid "Files deleted: %d" msgstr "Αρχεία που διαγράφηκαν: %d" #. TRANSLATORS: This refers to the number of files that #. would be deleted (in other words, simply a preview). #: ../bleachbit/Worker.py:281 #, python-format msgid "Files to be deleted: %d" msgstr "Αρχεία που θα διαγραφούν: %d" #: ../bleachbit/Worker.py:284 #, python-format msgid "Special operations: %d" msgstr "Ειδικές ενέργειες: %d" #: ../bleachbit/Worker.py:287 #, python-format msgid "Errors: %d" msgstr "Σφάλματα: %d" #. TRANSLATORS: The "deep scan" feature searches over broad #. areas of the file system such as the user's whole home directory #. or all the system executables. #: ../bleachbit/Worker.py:303 msgid "Please wait. Running deep scan." msgstr "Παρακαλώ περιμένετε. Εκτελείται βαθιά σάρωση." #. TRANSLATORS: %s is replaced with Firefox, System, etc. #: ../bleachbit/Worker.py:332 #, python-format msgid "Please wait. Previewing %s." msgstr "Παρακαλώ περιμένετε. Προεπισκόπηση %s." #: ../bleachbit/Update.py:77 msgid "New winapp2.ini was downloaded." msgstr "Κατέβηκε νέο winapp2.ini" #: ../bleachbit/Update.py:123 msgid "Update BleachBit" msgstr "Ενημέρωση του BleachBit" #: ../bleachbit/Update.py:128 msgid "A new version is available." msgstr "Μια νέα έκδοση είναι διαθέσιμη." #. TRANSLATORS: %s expands to version such as '0.8.4' or '0.8.5beta' or #. similar #: ../bleachbit/Update.py:137 #, python-format msgid "Update to version %s" msgstr "Αναβάθμιση στην έκδοση %s" #: ../bleachbit/Update.py:163 #, python-format msgid "" "Error when opening a network connection to %s to check for updates. Please " "verify the network is working." msgstr "" "Σφάλμα κατά το άνοιγμα μιας σύνδεσης δικτύου για το %s για να ελέγξετε για " "ενημερώσεις. Παρακαλώ βεβαιωθείτε ότι το δίκτυο λειτουργεί." #: ../bleachbit/CLI.py:106 #, python-format msgid "not a valid cleaner: %s" msgstr "μη έγκυρος καθαριστής: %s" #. TRANSLATORS: This is the command line usage. Don't translate #. %prog, but do translate usage, options, cleaner, and option. #. More information about the command line is here #. http://www.bleachbit.org/documentation/command-line #: ../bleachbit/CLI.py:133 msgid "usage: %prog [options] cleaner.option1 cleaner.option2" msgstr "χρήση: %prog [επιλογές] καθαριστής.επιλογή1 καθαριστής.επιλογή2" #: ../bleachbit/CLI.py:136 msgid "list cleaners" msgstr "Εμφάνιση καθαριστών" #. TRANSLATORS: predefined cleaners are for applications, such as Firefox and Flash. #. This is different than cleaning an arbitrary file, such as a #. spreadsheet on the desktop. #: ../bleachbit/CLI.py:141 msgid "run cleaners to delete files and make other permanent changes" msgstr "" "εκτέλεση των καθαριστών για διαγραφή αρχείων και πραγματοποίηση άλλων " "μόνιμων αλλαγών" #: ../bleachbit/CLI.py:144 msgid "shred specific files or folders" msgstr "τεμαχισμός συγκεκριμένων αρχείων ή φακέλων" #: ../bleachbit/CLI.py:146 msgid "show system information" msgstr "εμφάνιση πληροφοριών συστήματος" #: ../bleachbit/CLI.py:148 msgid "launch the graphical interface" msgstr "εκτέλεση του γραφικού περιβάλλοντος" #: ../bleachbit/CLI.py:150 msgid "do not prompt for administrator privileges" msgstr "να μη γίνεται ερώτηση για δικαιώματα διαχειριστή" #: ../bleachbit/CLI.py:155 msgid "preview files to be deleted and other changes" msgstr "προεπισκόπηση αρχείων που θα διαγραφούν και άλλων αλλαγών" #: ../bleachbit/CLI.py:157 msgid "use options set in the graphical interface" msgstr "χρήση των επιλογών που ρυθμίστηκαν από το γραφικό περιβάλλον" #: ../bleachbit/CLI.py:160 msgid "update winapp2.ini, if a new version is available" msgstr "ενημέρωση του winapp2.ini, αν υπάρχει νέα έκδοση διαθέσιμη" #: ../bleachbit/CLI.py:162 msgid "output version information and exit" msgstr "προβολή πληροφοριών έκδοσης και έξοδος" #: ../bleachbit/CLI.py:164 msgid "overwrite files to hide contents" msgstr "αντικατάσταση αρχείων για απόκρυψη των περιεχομένων τους" #. TRANSLATORS: this is the context menu #: ../bleachbit/Action.py:372 ../bleachbit/GUI.py:630 msgid "Clean" msgstr "Εκκαθάριση" #: ../bleachbit/Action.py:392 #, python-format msgid "Run external command: %s" msgstr "Εκτελέστε εξωτερική εντολή: %s" #: ../bleachbit/GUI.py:143 msgid "Active" msgstr "Ενεργό" #. TRANSLATORS: Size is the label for the column that shows how #. much space an option would clean or did clean #: ../bleachbit/GUI.py:155 msgid "Size" msgstr "Μέγεθος" #. TRANSLATORS: %(cleaner) may be Firefox, System, etc. #. %(option) may be cache, logs, cookies, etc. #. %(warning) may be 'This option is really slow' #: ../bleachbit/GUI.py:186 #, python-format msgid "" "Warning regarding %(cleaner)s - %(option)s:\n" "\n" "%(warning)s" msgstr "" "Προειδοποίηση σχετικά με %(cleaner)s - %(option)s:\n" "\n" "%(warning)s" #: ../bleachbit/GUI.py:372 msgid "You must select an operation" msgstr "Πρέπει να επιλέξετε μια ενέργεια" #: ../bleachbit/GUI.py:392 ../bleachbit/GUI.py:415 msgid "Done." msgstr "Ολοκληρώθηκε." #: ../bleachbit/GUI.py:428 msgid "Program to clean unnecessary files" msgstr "Πρόγραμμα για τον καθαρισμό των άχρηστων αρχείων" #: ../bleachbit/GUI.py:434 msgid "" "GNU General Public License version 3 or later.\n" "See http://www.gnu.org/licenses/gpl-3.0.txt" msgstr "" "GNU General Public License έκδοση 3 ή πιο πρόσφατη.\n" "Δείτε http://www.gnu.org/licenses/gpl-3.0.txt" #. TRANSLATORS: Maintain the names of translators here. #. Launchpad does this automatically for translations #. typed in Launchpad. This is a special string shown #. in the 'About' box. #: ../bleachbit/GUI.py:440 msgid "translator-credits" msgstr "" "Launchpad Contributions:\n" " Christos X https://launchpad.net/~cronogr\n" " Dimitris Mytilinaios https://launchpad.net/~webdev-hotmail\n" " DimitrisT https://launchpad.net/~dimitris.t\n" " Stefanos Kariotidis https://launchpad.net/~iccode\n" " Valantis Kamayiannis https://launchpad.net/~kamayiannis\n" " mara sdr https://launchpad.net/~paren8esis\n" " nask00s https://launchpad.net/~nask00s\n" " sarantis https://launchpad.net/~ubu-roi\n" " tzem https://launchpad.net/~athmakrigiannis" #: ../bleachbit/GUI.py:452 msgid "System information" msgstr "Πληροφορίες συστήματος" #: ../bleachbit/GUI.py:525 msgid "Choose files to shred" msgstr "Επιλογή αρχείων για τεμαχισμό" #: ../bleachbit/GUI.py:528 msgid "Choose folder to shred" msgstr "Επιλογή φακέλου για τεμαχισμό" #. TRANSLATORS: this is the context menu #: ../bleachbit/GUI.py:625 msgid "Preview" msgstr "Προεπισκόπηση" #: ../bleachbit/GUI.py:694 msgid "_Shred Files" msgstr "_Τεμαχισμός αρχείων" #: ../bleachbit/GUI.py:696 msgid "Sh_red Folders" msgstr "Τε_μαχισμός φακέλων" #: ../bleachbit/GUI.py:698 msgid "_Wipe Free Space" msgstr "Ε_κκαθάριση ελεύθερου χώρου" #: ../bleachbit/GUI.py:700 msgid "S_hred Settings and Quit" msgstr "Επιλογές τεμα_χισμού και Έξοδος" #: ../bleachbit/GUI.py:702 msgid "_Quit" msgstr "_Έξοδος" #: ../bleachbit/GUI.py:704 msgid "_File" msgstr "_Αρχείο" #: ../bleachbit/GUI.py:707 msgid "_Edit" msgstr "Ε_πεξεργασία" #: ../bleachbit/GUI.py:708 msgid "Help Contents" msgstr "Περιεχόμενα Βοήθειας" #: ../bleachbit/GUI.py:711 msgid "_Release Notes" msgstr "_Σημειώσεις Έκδοσης" #: ../bleachbit/GUI.py:714 msgid "_System Information" msgstr "Π_ληροφορίες Συστήματος" #: ../bleachbit/GUI.py:717 msgid "_About" msgstr "Πε_ρί" #: ../bleachbit/GUI.py:718 msgid "_Help" msgstr "_Βοήθεια" #: ../bleachbit/GUI.py:743 msgctxt "button" msgid "Preview" msgstr "Προεπισκόπηση" #: ../bleachbit/GUI.py:748 msgid "Preview files in the selected operations (without deleting any files)" msgstr "" "Προεπισκόπηση αρχείων στις επιλεγμένες ενέργειες (χωρίς τη διαγραφή τους)" #: ../bleachbit/GUI.py:758 msgctxt "button" msgid "Clean" msgstr "Εκκαθάριση" #: ../bleachbit/GUI.py:762 msgid "Clean files in the selected operations" msgstr "Εκκαθάριση αρχείων στις επιλεγμένες ενέργειες" #: ../bleachbit/GUI.py:851 msgid "Error when checking for updates: " msgstr "Σφάλμα κατά τον έλεγχο ενημερώσεων: " #: ../bleachbit/GUI.py:891 msgid "" "Error loading the SQLite module: the antivirus software may be blocking it." msgstr "" "Σφάλμα κατά τη φόρτωση του SQLite module: το αντιικό πρόγραμμα (antivirus) " "μπορεί να το μπλοκάρει." #: ../bleachbit/GUI.py:894 msgid "" "You are running BleachBit with administrative privileges for cleaning shared " "parts of the system, and references to the user profile folder will clean " "only the root account." msgstr "" "Αυτή τη στιγμή εκτελείτε το BleachBit με δικαιώματα διαχειριστή για την " "εκκαθάριση διαμοιραζόμενων τμημάτων του συστήματος, άρα οι αναφορές σε " "φάκελο του προφίλ χρήστη θα καθαρίσουν μόνο το λογαριασμό υπερχρήστη (root)." bleachbit-2.0/po/hi.po0000644000175000017500000013657013245436307012773 0ustar hlehle# Hindi translation for bleachbit # Copyright (c) 2009 Rosetta Contributors and Canonical Ltd 2009 # This file is distributed under the same license as the bleachbit package. # FIRST AUTHOR , 2009. # msgid "" msgstr "" "Project-Id-Version: bleachbit\n" "Report-Msgid-Bugs-To: FULL NAME \n" "POT-Creation-Date: 2017-02-11 11:12-0700\n" "PO-Revision-Date: 2017-10-26 05:14+0000\n" "Last-Translator: Jaswant Singh \n" "Language-Team: Hindi \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n != 1;\n" "X-Launchpad-Export-Date: 2017-10-27 00:40+0000\n" "X-Generator: Launchpad (build 18493)\n" #: ../cleaners/mc.xml ../cleaners/tortoisesvn.xml ../cleaners/vim.xml #: ../cleaners/safari.xml ../cleaners/links2.xml ../cleaners/seamonkey.xml #: ../cleaners/realplayer.xml ../cleaners/windows_defender.xml #: ../cleaners/d4x.xml ../cleaners/sqlite3.xml #: ../cleaners/internet_explorer.xml ../cleaners/libreoffice.xml #: ../cleaners/easytag.xml ../cleaners/bash.xml ../cleaners/nautilus.xml #: ../cleaners/octave.xml ../cleaners/elinks.xml ../cleaners/chromium.xml #: ../cleaners/google_chrome.xml msgid "History" msgstr "इतिहास" #: ../cleaners/mc.xml ../cleaners/tortoisesvn.xml ../cleaners/links2.xml #: ../cleaners/realplayer.xml ../cleaners/d4x.xml ../cleaners/libreoffice.xml #: ../cleaners/easytag.xml ../cleaners/nautilus.xml ../cleaners/gnome.xml #: ../bleachbit/Cleaner.py:349 ../bleachbit/Cleaner.py:423 #: ../bleachbit/Cleaner.py:432 msgid "Delete the usage history" msgstr "इतिहास को हटाएँ" #: ../cleaners/gpodder.xml ../cleaners/hippo_opensim_viewer.xml #: ../cleaners/thumbnails.xml ../cleaners/safari.xml ../cleaners/emesene.xml #: ../cleaners/liferea.xml ../cleaners/seamonkey.xml ../cleaners/vuze.xml #: ../cleaners/yahoo_messenger.xml ../cleaners/pidgin.xml #: ../cleaners/adobe_reader.xml ../cleaners/evolution.xml #: ../cleaners/tremulous.xml ../cleaners/libreoffice.xml ../cleaners/xine.xml #: ../cleaners/nexuiz.xml ../cleaners/exaile.xml ../cleaners/opera.xml #: ../cleaners/amsn.xml ../cleaners/gftp.xml ../cleaners/miro.xml #: ../cleaners/beagle.xml ../cleaners/kde.xml ../cleaners/epiphany.xml #: ../cleaners/flash.xml ../cleaners/secondlife_viewer.xml ../cleaners/java.xml #: ../cleaners/chromium.xml ../cleaners/audacious.xml ../cleaners/rhythmbox.xml #: ../cleaners/google_chrome.xml ../cleaners/thunderbird.xml #: ../bleachbit/Cleaner.py:192 ../bleachbit/Cleaner.py:370 #: ../bleachbit/Cleaner.py:455 msgid "Cache" msgstr "सुझाव" #: ../cleaners/gpodder.xml ../cleaners/yum.xml #: ../cleaners/hippo_opensim_viewer.xml ../cleaners/thumbnails.xml #: ../cleaners/windows_explorer.xml ../cleaners/liferea.xml #: ../cleaners/vuze.xml ../cleaners/yahoo_messenger.xml ../cleaners/pidgin.xml #: ../cleaners/adobe_reader.xml ../cleaners/evolution.xml #: ../cleaners/libreoffice.xml ../cleaners/apt.xml ../cleaners/xine.xml #: ../cleaners/nexuiz.xml ../cleaners/exaile.xml ../cleaners/amsn.xml #: ../cleaners/gftp.xml ../cleaners/miro.xml ../cleaners/beagle.xml #: ../cleaners/kde.xml ../cleaners/flash.xml ../cleaners/secondlife_viewer.xml #: ../cleaners/java.xml ../cleaners/audacious.xml ../cleaners/rhythmbox.xml #: ../bleachbit/Cleaner.py:370 ../bleachbit/Cleaner.py:455 #: ../bleachbit/Cleaner.py:489 ../bleachbit/Cleaner.py:491 msgid "Delete the cache" msgstr "कैश हटाएँ" #. TRANSLATORS: Vacuum is a verb. The term is jargon #. from the SQLite database. Microsoft Access uses #. the term 'Compact Database' (which you may translate #. instead). Another synonym is 'defragment.' #: ../cleaners/gpodder.xml ../cleaners/yum.xml ../cleaners/safari.xml #: ../cleaners/liferea.xml ../cleaners/chromium.xml #: ../cleaners/google_chrome.xml ../cleaners/thunderbird.xml #: ../bleachbit/Cleaner.py:214 ../bleachbit/Cleaner.py:360 #: ../bleachbit/Action.py:445 msgid "Vacuum" msgstr "निर्वात" #: ../cleaners/gpodder.xml ../cleaners/yum.xml ../cleaners/safari.xml #: ../cleaners/liferea.xml ../cleaners/chromium.xml #: ../cleaners/google_chrome.xml ../cleaners/thunderbird.xml #: ../bleachbit/Cleaner.py:215 msgid "" "Clean database fragmentation to reduce space and improve speed without " "removing any data" msgstr "" "जगह को कम करने के लिए डेटाबेस को हटाएँ और किसी भी डेटा को हटाने के बिना गति " "में सुधार" #: ../cleaners/yum.xml ../cleaners/apt.xml msgid "Package manager" msgstr "पैकेज प्रबंधक" #: ../cleaners/warzone2100.xml ../cleaners/hippo_opensim_viewer.xml #: ../cleaners/gl-117.xml ../cleaners/tremulous.xml ../cleaners/nexuiz.xml #: ../cleaners/secondlife_viewer.xml msgid "Game" msgstr "खेल" #: ../cleaners/warzone2100.xml ../cleaners/hippo_opensim_viewer.xml #: ../cleaners/teamviewer.xml ../cleaners/realplayer.xml ../cleaners/vuze.xml #: ../cleaners/yahoo_messenger.xml ../cleaners/amule.xml #: ../cleaners/easytag.xml ../cleaners/exaile.xml ../cleaners/screenlets.xml #: ../cleaners/gftp.xml ../cleaners/miro.xml ../cleaners/audacious.xml #: ../bleachbit/Cleaner.py:486 msgid "Logs" msgstr "लॉग" #: ../cleaners/warzone2100.xml ../cleaners/hippo_opensim_viewer.xml #: ../cleaners/teamviewer.xml ../cleaners/realplayer.xml ../cleaners/vuze.xml #: ../cleaners/yahoo_messenger.xml ../cleaners/amule.xml ../cleaners/exaile.xml #: ../cleaners/screenlets.xml ../cleaners/gftp.xml ../cleaners/miro.xml #: ../cleaners/audacious.xml ../bleachbit/Cleaner.py:486 msgid "Delete the logs" msgstr "लॉग हटाएँ" #: ../cleaners/thumbnails.xml ../cleaners/windows_explorer.xml msgid "Thumbnails" msgstr "थंबनेल" #: ../cleaners/thumbnails.xml msgid "Icons for files on the system" msgstr "" #: ../cleaners/vim.xml ../cleaners/gedit.xml msgid "Editor" msgstr "एडीटर" #: ../cleaners/vim.xml msgid "" "Delete ~/.viminfo which includes file history, command history, and buffers" msgstr "हटाए जो फ़ाइल इतिहास, कमांड का इतिहास और बफर शामिल है." #: ../cleaners/filezilla.xml ../cleaners/transmission.xml ../cleaners/vuze.xml #: ../cleaners/amule.xml ../cleaners/gftp.xml msgid "File transfer client" msgstr "फ़ाइल स्थानांतरण ग्राहक" #: ../cleaners/filezilla.xml ../cleaners/paint.xml #: ../cleaners/windows_media_player.xml ../cleaners/windows_explorer.xml #: ../cleaners/teamviewer.xml ../cleaners/microsoft_office.xml #: ../cleaners/vlc.xml ../cleaners/adobe_reader.xml ../cleaners/winamp.xml #: ../cleaners/winzip.xml ../cleaners/winrar.xml ../cleaners/audacious.xml #: ../cleaners/wordpad.xml ../bleachbit/Cleaner.py:371 msgid "Most recently used" msgstr "सबसे हाल ही में उपयोग किया" #: ../cleaners/filezilla.xml ../cleaners/windows_explorer.xml #: ../cleaners/gwenview.xml ../cleaners/adobe_reader.xml ../cleaners/gedit.xml #: ../cleaners/kde.xml ../cleaners/audacious.xml ../bleachbit/Cleaner.py:372 #: ../bleachbit/Cleaner.py:469 msgid "Delete the list of recently used documents" msgstr "हाल ही में उपयोग किया दस्तावेजों के नष्ट सूची" #: ../cleaners/skype.xml ../cleaners/emesene.xml #: ../cleaners/yahoo_messenger.xml ../cleaners/pidgin.xml ../cleaners/amsn.xml msgid "Chat client" msgstr "चैट क्लाइंट" #: ../cleaners/skype.xml ../cleaners/hexchat.xml ../cleaners/emesene.xml #: ../cleaners/seamonkey.xml ../cleaners/yahoo_messenger.xml #: ../cleaners/pidgin.xml ../cleaners/amsn.xml msgid "Chat logs" msgstr "चैट लॉग" #: ../cleaners/skype.xml ../cleaners/hexchat.xml ../cleaners/emesene.xml #: ../cleaners/seamonkey.xml ../cleaners/yahoo_messenger.xml #: ../cleaners/pidgin.xml ../cleaners/amsn.xml msgid "Delete the chat logs" msgstr "लॉग चैट को हटाएँ" #: ../cleaners/skype.xml msgid "Installers" msgstr "" #: ../cleaners/skype.xml msgid "Delete cached patches and installers" msgstr "" #: ../cleaners/hexchat.xml msgid "IRC client formerly known as XChat" msgstr "" #: ../cleaners/safari.xml ../cleaners/links2.xml ../cleaners/seamonkey.xml #: ../cleaners/konqueror.xml ../cleaners/internet_explorer.xml #: ../cleaners/opera.xml ../cleaners/epiphany.xml ../cleaners/elinks.xml #: ../cleaners/chromium.xml ../cleaners/google_chrome.xml #: ../bleachbit/Cleaner.py:226 msgid "Web browser" msgstr "वेब ब्राउज़र" #: ../cleaners/safari.xml ../cleaners/seamonkey.xml ../cleaners/opera.xml #: ../cleaners/epiphany.xml ../cleaners/chromium.xml #: ../cleaners/google_chrome.xml ../cleaners/thunderbird.xml #: ../bleachbit/Cleaner.py:193 msgid "Delete the web cache, which reduces time to display revisited pages" msgstr "" "वेब कैश हटाएँ , जो फिर से पृष्ठों को प्रदर्शित करने के लिए समय कम कर देता है" #: ../cleaners/safari.xml ../cleaners/liferea.xml ../cleaners/seamonkey.xml #: ../cleaners/realplayer.xml ../cleaners/konqueror.xml #: ../cleaners/internet_explorer.xml ../cleaners/opera.xml #: ../cleaners/epiphany.xml ../cleaners/flash.xml ../cleaners/silverlight.xml #: ../cleaners/chromium.xml ../cleaners/google_chrome.xml #: ../cleaners/thunderbird.xml ../bleachbit/Cleaner.py:194 msgid "Cookies" msgstr "कुकीज़" #: ../cleaners/safari.xml ../cleaners/liferea.xml ../cleaners/seamonkey.xml #: ../cleaners/realplayer.xml ../cleaners/konqueror.xml #: ../cleaners/internet_explorer.xml ../cleaners/opera.xml #: ../cleaners/epiphany.xml ../cleaners/flash.xml ../cleaners/silverlight.xml #: ../cleaners/chromium.xml ../cleaners/google_chrome.xml #: ../cleaners/thunderbird.xml ../bleachbit/Cleaner.py:195 msgid "" "Delete cookies, which contain information such as web site preferences, " "authentication, and tracking identification" msgstr "" "जो वेबसाइट प्राथमिकताएँ, प्रमाणीकरण, और ट्रैकिंग पहचान जैसे जानकारी शामिल " "है, उन कुकीज़को मिटाएँ" #: ../cleaners/safari.xml ../cleaners/konqueror.xml #: ../cleaners/internet_explorer.xml ../cleaners/opera.xml #: ../bleachbit/Cleaner.py:213 msgid "List of visited web pages" msgstr "दौरा किया वेब पृष्ठों की सूची" #. Torrent software can block a list of IP addresses, such as those that may belong to malware or anti-piracy organizations #: ../cleaners/transmission.xml msgid "Blocklists" msgstr "" #: ../cleaners/transmission.xml ../cleaners/windows_defender.xml #: ../cleaners/beagle.xml ../cleaners/thunderbird.xml ../cleaners/deepscan.xml #: ../bleachbit/Cleaner.py:197 msgid "Delete the files" msgstr "फ़ाइलें हटाएँ" #: ../cleaners/transmission.xml msgid "Blocklists will need update to work." msgstr "" #: ../cleaners/transmission.xml msgid "Torrents" msgstr "" #: ../cleaners/transmission.xml msgid "Delete the torrents (just the metadata but not the files described)" msgstr "" #: ../cleaners/transmission.xml msgid "Statistics" msgstr "" #: ../cleaners/transmission.xml msgid "Delete the file" msgstr "" #: ../cleaners/paint.xml ../cleaners/windows_media_player.xml #: ../cleaners/windows_explorer.xml ../cleaners/teamviewer.xml #: ../cleaners/microsoft_office.xml ../cleaners/vlc.xml ../cleaners/winamp.xml #: ../cleaners/winzip.xml ../cleaners/winrar.xml ../cleaners/wordpad.xml msgid "Delete the most recently used list" msgstr "सबसे हाल ही में उपयोग सूची को हटाएँ" #: ../cleaners/emesene.xml msgid "Delete the avatars and emoticons cache" msgstr "बदलते रूपों और इमोटिकॉन्स हटाएँ" #: ../cleaners/windows_media_player.xml ../cleaners/realplayer.xml #: ../cleaners/vlc.xml ../cleaners/winamp.xml msgid "Media player" msgstr "" #: ../cleaners/windows_explorer.xml ../cleaners/nautilus.xml msgid "File manager" msgstr "" #: ../cleaners/windows_explorer.xml ../cleaners/gwenview.xml #: ../cleaners/gedit.xml ../cleaners/kde.xml ../bleachbit/Cleaner.py:468 #: ../bleachbit/Cleaner.py:663 msgid "Recent documents list" msgstr "हाल के दस्तावेजों की सूची" #: ../cleaners/windows_explorer.xml msgid "" "This option will reset pinned locations in Quick Access to their defaults." msgstr "" #. In Windows 'Run' is the dialog in the Start menu #. In GNOME 'Run' is the dialog shown when typing ALT+F2' #: ../cleaners/windows_explorer.xml ../cleaners/gnome.xml msgid "Run" msgstr "चलाएं" #: ../cleaners/windows_explorer.xml ../cleaners/opera.xml ../cleaners/gnome.xml #: ../cleaners/google_toolbar.xml msgid "Search history" msgstr "खोज इतिहास" #: ../cleaners/windows_explorer.xml ../cleaners/opera.xml ../cleaners/gnome.xml #: ../cleaners/google_toolbar.xml msgid "Delete the search history" msgstr "खोज इतिहास हटाएँ" #: ../cleaners/windows_explorer.xml msgid "This will restart Windows Explorer." msgstr "" #: ../cleaners/gl-117.xml ../cleaners/microsoft_office.xml #: ../cleaners/beagle.xml ../cleaners/secondlife_viewer.xml ../cleaners/x11.xml msgid "Debug logs" msgstr "डीबग लॉग" #: ../cleaners/gl-117.xml ../cleaners/microsoft_office.xml #: ../cleaners/easytag.xml ../cleaners/beagle.xml #: ../cleaners/secondlife_viewer.xml ../cleaners/x11.xml msgid "Delete the debug logs" msgstr "डिबग लॉग्स हटाएँ" #: ../cleaners/google_earth.xml ../cleaners/winetricks.xml ../cleaners/vuze.xml #: ../cleaners/adobe_reader.xml ../cleaners/amule.xml ../cleaners/wine.xml #: ../cleaners/internet_explorer.xml ../cleaners/gimp.xml ../cleaners/kde.xml #: ../cleaners/deepscan.xml ../bleachbit/Cleaner.py:520 msgid "Temporary files" msgstr "अस्थायी फ़ाइल" #: ../cleaners/google_earth.xml ../cleaners/winetricks.xml ../cleaners/vuze.xml #: ../cleaners/adobe_reader.xml ../cleaners/amule.xml ../cleaners/wine.xml #: ../cleaners/internet_explorer.xml ../cleaners/gimp.xml ../cleaners/kde.xml #: ../cleaners/deepscan.xml ../bleachbit/Cleaner.py:520 msgid "Delete the temporary files" msgstr "अस्थायी फ़ाइलें हटाएँ" #: ../cleaners/seamonkey.xml ../cleaners/opera.xml ../bleachbit/Cleaner.py:201 msgid "Download history" msgstr "डाउनलोड का इतिहास" #: ../cleaners/seamonkey.xml ../cleaners/opera.xml ../bleachbit/Cleaner.py:201 msgid "List of files downloaded" msgstr "फाइलों की सूची डाउनलोड" #: ../cleaners/seamonkey.xml msgid "Delete the list of visited web pages" msgstr "दौरा किया वेब पृष्ठों की सूची हटाएँ" #: ../cleaners/vuze.xml ../cleaners/deepscan.xml ../bleachbit/Cleaner.py:190 msgid "Backup files" msgstr "बैकअप फ़ाइलें" #: ../cleaners/vuze.xml ../cleaners/deepscan.xml ../bleachbit/Cleaner.py:191 msgid "Delete the backup files" msgstr "बैकअप फाइल के हटाएँ" #: ../cleaners/konqueror.xml ../cleaners/opera.xml ../cleaners/chromium.xml msgid "Current session" msgstr "मौजूदा सत्र" #: ../cleaners/konqueror.xml ../cleaners/opera.xml ../cleaners/chromium.xml msgid "Delete the current session" msgstr "वर्तमान सत्र हटाएँ" #: ../cleaners/konqueror.xml ../cleaners/opera.xml ../bleachbit/Cleaner.py:213 msgid "URL history" msgstr "यूआरएल इतिहास" #: ../cleaners/microsoft_office.xml ../cleaners/libreoffice.xml #: ../bleachbit/Cleaner.py:375 msgid "Office suite" msgstr "ऑफ़िस सूट" #: ../cleaners/windows_defender.xml msgid "Anti-virus" msgstr "" #: ../cleaners/journald.xml msgid "System journals" msgstr "" #: ../cleaners/journald.xml msgid "Clean old system journals" msgstr "" #: ../cleaners/adobe_reader.xml msgid "Document viewer" msgstr "" #: ../cleaners/evolution.xml ../cleaners/thunderbird.xml msgid "Email client" msgstr "" #: ../cleaners/tremulous.xml msgid "Delete the list of game servers" msgstr "खेल(गेम) सर्वर से सूची हटाएँ" #: ../cleaners/sqlite3.xml ../cleaners/bash.xml ../cleaners/octave.xml msgid "Delete the command history" msgstr "कमांड इतिहास हटाएँ" #: ../cleaners/wine.xml msgid "Compatibility layer for Windows software" msgstr "" #: ../cleaners/internet_explorer.xml ../cleaners/chromium.xml #: ../cleaners/google_chrome.xml ../bleachbit/Cleaner.py:202 msgid "Form history" msgstr "फार्म इतिहास" #: ../cleaners/internet_explorer.xml ../bleachbit/Cleaner.py:203 msgid "A history of forms entered in web sites and in the Search bar" msgstr "रूपों वेब साइट में प्रवेश का एक इतिहास और खोज पट्टी में" #. This software edits metadata tags, such as title and artist, in audio files #: ../cleaners/easytag.xml msgid "Audio files tagger" msgstr "" #: ../cleaners/apt.xml msgid "Delete obsolete files" msgstr "अप्रचलित फ़ाइलें हटाएँ" #: ../cleaners/apt.xml msgid "Package lists" msgstr "" #: ../cleaners/xine.xml ../cleaners/miro.xml ../cleaners/flash.xml msgid "Multimedia viewer" msgstr "मल्टीमीडिया दर्शक" #: ../cleaners/recoll.xml ../cleaners/beagle.xml msgid "Search tool" msgstr "खोज उपकरण" #: ../cleaners/recoll.xml ../cleaners/beagle.xml ../cleaners/thunderbird.xml msgid "Index" msgstr "सूची" #: ../cleaners/recoll.xml msgid "" "Delete the search index, a database of words and the files they contain" msgstr "खोज सूचकांक, शब्दों का एक डाटाबेस और वे शामिल फाइल हटाएँ" #: ../cleaners/gimp.xml msgid "Graphics editor" msgstr "" #: ../cleaners/exaile.xml msgid "Downloaded podcasts" msgstr "डाउनलोड podcasts" #: ../cleaners/exaile.xml msgid "Delete downloaded podcasts" msgstr "डाउनलोड podcasts हटाएँ" #: ../cleaners/bash.xml msgid "Shell" msgstr "" #. TRANSLATORS: DOM = Document Object Model. #: ../cleaners/opera.xml ../cleaners/epiphany.xml ../cleaners/chromium.xml #: ../cleaners/google_chrome.xml ../bleachbit/Cleaner.py:199 msgid "DOM Storage" msgstr "" #: ../cleaners/opera.xml ../cleaners/epiphany.xml ../cleaners/chromium.xml #: ../cleaners/google_chrome.xml ../bleachbit/Cleaner.py:199 msgid "Delete HTML5 cookies" msgstr "" #: ../cleaners/opera.xml ../cleaners/epiphany.xml ../cleaners/chromium.xml #: ../cleaners/google_chrome.xml ../cleaners/thunderbird.xml #: ../bleachbit/Cleaner.py:208 msgid "Passwords" msgstr "पासवर्ड" #: ../cleaners/opera.xml ../cleaners/epiphany.xml ../cleaners/chromium.xml #: ../cleaners/google_chrome.xml ../cleaners/thunderbird.xml #: ../bleachbit/Cleaner.py:209 msgid "" "A database of usernames and passwords as well as a list of sites that should " "not store passwords" msgstr "" "उपयोगकर्ता नाम और पासवर्ड का एक डाटाबेस साथ ही एक सूची जिसमें साइटों की है " "कि पासवर्ड स्टोर नहीं करना चाहिए" #: ../cleaners/opera.xml ../cleaners/epiphany.xml ../cleaners/chromium.xml #: ../cleaners/google_chrome.xml ../cleaners/thunderbird.xml #: ../bleachbit/Cleaner.py:211 msgid "This option will delete your saved passwords." msgstr "" #: ../cleaners/nautilus.xml msgid "Custom folders will be reset." msgstr "" #: ../cleaners/gnome.xml ../cleaners/kde.xml msgid "Desktop environment" msgstr "" #: ../cleaners/screenlets.xml msgid "Widgets for the desktop" msgstr "" #: ../cleaners/epiphany.xml msgid "Places" msgstr "स्थान" #: ../cleaners/epiphany.xml msgid "" "A database of URLs including bookmarks, favicons, and a history of visited " "web sites" msgstr "" "एक डाटाबेस सहित यूआरएल बुकमार्क्स,favicon और दौरा वेब साइटों की एक इतिहास" #: ../cleaners/epiphany.xml msgid "This option deletes all bookmarks." msgstr "यह विकल्प सभी बुकमार्क्स का नष्टकरण करता हैं" #: ../cleaners/winrar.xml msgid "File archiver" msgstr "" #: ../cleaners/elinks.xml msgid "Delete the cookies, visited URLs, and search history" msgstr "कुकीज़,खोज इतिहास और यूआरएलों का दौरा को हटाएँ" #: ../cleaners/chromium.xml ../cleaners/google_chrome.xml msgid "A history of forms entered in web sites" msgstr "" #: ../cleaners/chromium.xml ../cleaners/google_chrome.xml msgid "" "Delete the history which includes visited sites, downloads, and thumbnails" msgstr "" "इतिहास हटाएँ, जिसमें दौरा कि हुई साइटों, डाउनलोड, और थंबनेल शामिल हो" #: ../cleaners/chromium.xml ../cleaners/google_chrome.xml msgid "Search engines" msgstr "" #. 'Factory' means a search engine that is installed by default 'from the factory,' but this is different than a 'default search engine' https://lists.launchpad.net/launchpad-translators/msg00283.html #: ../cleaners/chromium.xml ../cleaners/google_chrome.xml msgid "" "Reset the search engine usage history and delete non-factory search engines, " "some of which are added automatically" msgstr "" #: ../cleaners/audacious.xml msgid "Audio player" msgstr "" #: ../cleaners/rhythmbox.xml msgid "Database" msgstr "" #: ../cleaners/rhythmbox.xml msgid "" "Delete the database, which contain information such as play count and last " "played" msgstr "" #: ../cleaners/google_chrome.xml msgid "Session" msgstr "सत्र" #: ../cleaners/google_chrome.xml msgid "Delete the current and last sessions" msgstr "चालू और आखिरी सत्र हटाएँ" #: ../cleaners/x11.xml msgid "Windowing system" msgstr "" #: ../cleaners/wordpad.xml msgid "Word processor" msgstr "" #: ../cleaners/deepscan.xml msgid "Deep scan" msgstr "गहरी स्कैन" #: ../cleaners/deepscan.xml msgid "Clean files widely scattered across the disk" msgstr "" #: ../cleaners/deepscan.xml msgid "Inspect the preview for any files you want to keep." msgstr "" #: ../cleaners/deepscan.xml msgid "This option is slow." msgstr "यह विकल्प धीमा है" #: ../bleachbit.desktop msgid "Unnecessary file cleaner" msgstr "अनावश्यक क्लीनर फ़ाइल" #: ../bleachbit.desktop msgid "Free space and maintain privacy" msgstr "मुक्त स्थान और गोपनीयता बनाए रखने" #: ../bleachbit/FileUtilities.py:668 msgid "" "There was at least one file on a file system that does not support advanced " "overwriting." msgstr "" #: ../bleachbit/Unix.py:574 #, python-format msgid "Executable not found: %s" msgstr "निष्पादन योग्य नहीं पाया है:% s" #. TRANSLATORS: %s expands to a name such as 'Firefox' or 'System'. #: ../bleachbit/Unix.py:623 ../bleachbit/Worker.py:136 #, python-format msgid "" "%s cannot be cleaned because it is currently running. Close it, and try " "again." msgstr "" #: ../bleachbit/GuiBasic.py:112 msgid "Delete confirmation" msgstr "हटाएँ पुष्टि" #: ../bleachbit/GuiBasic.py:122 msgid "" "Are you sure you want to permanently delete files according to the selected " "operations? The actual files that will be deleted may have changed since " "you ran the preview." msgstr "" "क्या आप स्थायी रूप से चयनित आपरेशन के अनुसार फाइल को नष्ट करना चाहते हैं?जब " "से तुम इस पूर्वावलोकन दौड़ा कि नष्ट हो जाएगा वास्तविक फाइल परिवर्तित हो सकता " "है." #: ../bleachbit/GuiBasic.py:125 msgid "Are you sure you want to permanently delete these files?" msgstr "क्या आप इन फ़ाइलों को स्थायी रूप से हटाना चाहते हैं?" #: ../bleachbit/GuiBasic.py:162 #, python-format msgid "" "Because you are running as root, please manually open this link in a web " "browser:\n" "%s" msgstr "" #. TRANSLATORS: %s expands to www.bleachbit.org or similar #: ../bleachbit/GuiBasic.py:174 #, python-format msgid "Open web browser to %s?" msgstr "" #. TRANSLATORS: This is the label in the log indicating was #. skipped because it matches the whitelist #: ../bleachbit/Command.py:47 msgid "Skip" msgstr "" #. TRANSLATORS: This is the label in the log indicating will be #. deleted (for previews) or was actually deleted #: ../bleachbit/Command.py:77 msgid "Delete" msgstr "मिटाएँ" #: ../bleachbit/Command.py:99 msgid "" "At least one file was locked by another process, so its contents could not " "be overwritten. It will be marked for deletion upon system reboot." msgstr "" #. TRANSLATORS: The file will be deleted when the #. system reboots #: ../bleachbit/Command.py:102 msgid "Mark for deletion" msgstr "हटाने के लिए चिह्नित" #. TRANSLATORS: Parts of this file will be deleted #: ../bleachbit/Command.py:199 ../bleachbit/Command.py:233 #: ../bleachbit/Action.py:254 ../bleachbit/Action.py:267 #: ../bleachbit/Action.py:280 ../bleachbit/Action.py:293 #: ../bleachbit/Action.py:306 msgid "Clean file" msgstr "" #. TRANSLATORS: The file will be truncated to 0 bytes in length #: ../bleachbit/Command.py:275 msgid "Truncate" msgstr "छोटा करें" #: ../bleachbit/Command.py:317 msgid "Delete registry key" msgstr "हटाएँ रजिस्ट्री कुंजी" #. TRANSLATORS: This is cleaner name for cleaners imported from winapp2.ini #: ../bleachbit/Winapp.py:44 msgid "Applications" msgstr "" #. TRANSLATORS: This is cleaner name for cleaners imported #. from winapp2.ini #: ../bleachbit/Winapp.py:47 msgid "Internet" msgstr "" #. TRANSLATORS: This is cleaner name for cleaners imported #. from winapp2.ini #: ../bleachbit/Winapp.py:50 msgid "Multimedia" msgstr "" #. TRANSLATORS: This is cleaner name for cleaners imported #. from winapp2.ini #: ../bleachbit/Winapp.py:53 msgid "Utilities" msgstr "" #: ../bleachbit/Winapp.py:64 msgid "Games" msgstr "" #: ../bleachbit/Winapp.py:162 msgid "Imported from winapp2.ini" msgstr "" #: ../bleachbit/Cleaner.py:197 msgid "Crash reports" msgstr "" #: ../bleachbit/Cleaner.py:204 msgid "Session restore" msgstr "सत्र बहाल" #: ../bleachbit/Cleaner.py:205 msgid "Loads the initial session after the browser closes or crashes" msgstr "लोड प्रारंभिक सत्र यदि बाद ब्राउज़र बंद या दुर्घटना होना" #: ../bleachbit/Cleaner.py:207 msgid "Site preferences" msgstr "" #: ../bleachbit/Cleaner.py:207 msgid "Settings for individual sites" msgstr "" #. TRANSLATORS: desktop entries are .desktop files in Linux that #. make up the application menu (the menu that shows BleachBit, #. Firefox, and others. The .desktop files also associate file #. types, so clicking on an .html file in Nautilus brings up #. Firefox. #. More information: #. http://standards.freedesktop.org/menu-spec/latest/index.html#introduction #: ../bleachbit/Cleaner.py:453 msgid "Broken desktop files" msgstr "टूटी डेस्कटॉप फ़ाइलें" #: ../bleachbit/Cleaner.py:454 msgid "Delete broken application menu entries and file associations" msgstr "हटाएँ टूट आवेदन मेनू प्रविष्टियों और फ़ाइल संघों" #. TRANSLATORS: Localizations are files supporting specific #. languages, so applications appear in Spanish, etc. #: ../bleachbit/Cleaner.py:458 msgid "Localizations" msgstr "स्थानीयकरन" #: ../bleachbit/Cleaner.py:459 msgid "Delete files for unwanted languages" msgstr "अवांछित भाषाओं के लिए फ़ाइलें हटाएँ" #: ../bleachbit/Cleaner.py:461 msgid "Configure this option in the preferences." msgstr "" #: ../bleachbit/Cleaner.py:467 msgid "Rotated logs" msgstr "घुमाया लॉग" #: ../bleachbit/Cleaner.py:467 msgid "Delete old system logs" msgstr "पुरानी प्रणाली लॉग \t हटाएँ" #: ../bleachbit/Cleaner.py:470 msgid "Trash" msgstr "कूडे मे डाले" #: ../bleachbit/Cleaner.py:470 msgid "Empty the trash" msgstr "रद्दी खाली करना" #: ../bleachbit/Cleaner.py:476 ../bleachbit/Cleaner.py:627 #: ../bleachbit/Worker.py:184 msgid "Memory" msgstr "स्मृति" #. TRANSLATORS: 'free' means 'unallocated' #: ../bleachbit/Cleaner.py:478 msgid "Wipe the swap and free memory" msgstr "स्वैप स्मृति को पोछो और मुक्त करों" #: ../bleachbit/Cleaner.py:480 msgid "This option is experimental and may cause system problems." msgstr "" "ये विकल्प प्रयोगात्मक है और प्रणाली मे समस्याएं पैदा कर सकता है ." #: ../bleachbit/Cleaner.py:488 msgid "Memory dump" msgstr "" #: ../bleachbit/Cleaner.py:488 msgid "Delete the file memory.dmp" msgstr "" #. TRANSLATORS: Prefetch is Microsoft Windows jargon. #: ../bleachbit/Cleaner.py:491 msgid "Prefetch" msgstr "प्री-फेच" #: ../bleachbit/Cleaner.py:493 msgid "Recycle bin" msgstr "रिसाइकिल बिन" #: ../bleachbit/Cleaner.py:493 ../bleachbit/Cleaner.py:787 msgid "Empty the recycle bin" msgstr "रिसाइकिल बिन खाली करना" #. TRANSLATORS: 'Update' is a noun, and 'Update uninstallers' is an option to delete #. the uninstallers for software updates. #: ../bleachbit/Cleaner.py:496 msgid "Update uninstallers" msgstr "" #: ../bleachbit/Cleaner.py:497 msgid "" "Delete uninstallers for Microsoft updates including hotfixes, service packs, " "and Internet Explorer updates" msgstr "" #: ../bleachbit/Cleaner.py:504 ../bleachbit/Cleaner.py:727 msgid "Clipboard" msgstr "क्लिपबोर्ड" #: ../bleachbit/Cleaner.py:505 msgid "" "The desktop environment's clipboard used for copy and paste operations" msgstr "" "डेस्कटॉप वातावरण है क्लिपबोर्ड कॉपी और पेस्ट करने के लिए इस्तेमाल किया आपरेशन" #. TRANSLATORS: "Custom" is an option allowing the user to specify which #. files and folders will be erased. #: ../bleachbit/Cleaner.py:512 ../bleachbit/GuiPreferences.py:66 msgid "Custom" msgstr "" #: ../bleachbit/Cleaner.py:513 msgid "Delete user-specified files and folders" msgstr "" #. TRANSLATORS: 'free' means 'unallocated' #: ../bleachbit/Cleaner.py:515 msgid "Free disk space" msgstr "मुक्त डिस्क स्थान" #. TRANSLATORS: 'free' means 'unallocated' #: ../bleachbit/Cleaner.py:517 msgid "Overwrite free disk space to hide deleted files" msgstr "फ़ाइलों को मिटाने के लिए मुक्त डिस्क स्थान को अधिलेखित कर दो" #: ../bleachbit/Cleaner.py:518 msgid "This option is very slow." msgstr "" #: ../bleachbit/Cleaner.py:522 msgid "The system in general" msgstr "सामान्य रूप से इस प्रणाली" #: ../bleachbit/Cleaner.py:524 ../bleachbit/Cleaner.py:857 msgid "System" msgstr "सिस्टम" #. TRANSLATORS: 'Free' means 'unallocated.' #. %s expands to a path such as C:\ or /tmp/ #: ../bleachbit/Cleaner.py:735 ../bleachbit/Cleaner.py:890 #, python-format msgid "Overwrite free disk space %s" msgstr "मुक्त डिस्क स्थान को अधिलेखित करे % s" #: ../bleachbit/RecognizeCleanerML.py:59 msgid "Security warning" msgstr "" #: ../bleachbit/RecognizeCleanerML.py:72 msgid "" "These cleaner definitions are new or have changed. Malicious definitions can " "damage your system. If you do not trust these changes, delete the files or " "quit." msgstr "" #: ../bleachbit/RecognizeCleanerML.py:88 msgctxt "column_label" msgid "Delete" msgstr "" #: ../bleachbit/RecognizeCleanerML.py:93 msgctxt "column_label" msgid "Filename" msgstr "" #. TRANSLATORS: This indicates an error. The special keyword #. %(operation)s will be replaced by 'firefox' or 'opera' or #. some other cleaner ID. The special keyword %(msg)s will be #. replaced by a message such as 'Permission denied.' #: ../bleachbit/Worker.py:74 #, python-format msgid "Exception while running operation '%(operation)s': '%(msg)s'" msgstr "अपवाद जब तक चल रहे आपरेशन '%(operation)s': '%(msg)s'" #. TRANSLATORS: 'free' means 'unallocated' #: ../bleachbit/Worker.py:182 msgid "Please wait. Wiping free disk space." msgstr "" #. TRANSLATORS: %s is replaced with Firefox, System, etc. #: ../bleachbit/Worker.py:184 ../bleachbit/Worker.py:332 #, python-format msgid "Please wait. Cleaning %s." msgstr "कृपया प्रतीक्षा करें. %s क्लीनिंग" #: ../bleachbit/Worker.py:199 msgid "Please wait. Wiping file system metadata." msgstr "" #: ../bleachbit/Worker.py:202 msgid "Please wait. Cleaning up after wiping file system metadata." msgstr "" #: ../bleachbit/Worker.py:205 #, python-format msgid "About %d minute remaining." msgid_plural "About %d minutes remaining." msgstr[0] "" msgstr[1] "" #. TRANSLATORS: This refers to disk space that was #. really recovered (in other words, not a preview) #: ../bleachbit/Worker.py:272 #, python-format msgid "Disk space recovered: %s" msgstr "डिस्क स्थान बरामद:% s" #. TRANSLATORS: This refers to a preview (no real #. changes were made yet) #: ../bleachbit/Worker.py:276 #, python-format msgid "Disk space to be recovered: %s" msgstr "डिस्क स्थान बरामद हो: %s" #. TRANSLATORS: This refers to the number of files really #. deleted (in other words, not a preview). #: ../bleachbit/Worker.py:281 #, python-format msgid "Files deleted: %d" msgstr "फ़ाइलों को नष्ट कर दिया:% d" #. TRANSLATORS: This refers to the number of files that #. would be deleted (in other words, simply a preview). #: ../bleachbit/Worker.py:285 #, python-format msgid "Files to be deleted: %d" msgstr "इतनी फ़ाइलों को नष्ट कर दिया जाएगा: %d" #: ../bleachbit/Worker.py:288 #, python-format msgid "Special operations: %d" msgstr "विशेष अभियान: %d" #: ../bleachbit/Worker.py:291 #, python-format msgid "Errors: %d" msgstr "त्रुटियाँ: %d" #. TRANSLATORS: The "deep scan" feature searches over broad #. areas of the file system such as the user's whole home directory #. or all the system executables. #: ../bleachbit/Worker.py:306 msgid "Please wait. Running deep scan." msgstr "" #. TRANSLATORS: %s is replaced with Firefox, System, etc. #: ../bleachbit/Worker.py:335 #, python-format msgid "Please wait. Previewing %s." msgstr "कृपया प्रतीक्षा करें.पूर्वावलोकन %s" #: ../bleachbit/Update.py:80 msgid "New winapp2.ini was downloaded." msgstr "" #: ../bleachbit/Update.py:125 msgid "Update BleachBit" msgstr "अद्यतन BleachBit" #: ../bleachbit/Update.py:130 msgid "A new version is available." msgstr "" #. TRANSLATORS: %s expands to version such as '0.8.4' or '0.8.5beta' or #. similar #: ../bleachbit/Update.py:139 #, python-format msgid "Update to version %s" msgstr "" #: ../bleachbit/Update.py:164 #, python-format msgid "" "Error when opening a network connection to %s to check for updates. Please " "verify the network is working." msgstr "" #: ../bleachbit/CLI.py:106 #, python-format msgid "not a valid cleaner: %s" msgstr "नहीं एक वैध क्लीनर:% s" #. TRANSLATORS: This is the command line usage. Don't translate #. %prog, but do translate usage, options, cleaner, and option. #. More information about the command line is here #. https://www.bleachbit.org/documentation/command-line #: ../bleachbit/CLI.py:133 msgid "usage: %prog [options] cleaner.option1 cleaner.option2" msgstr "उपयोग:%prog [विकल्प] क्लीनर.विकल्प१ क्लीनर.विकल्प२" #: ../bleachbit/CLI.py:136 msgid "list cleaners" msgstr "सूची क्लीनर" #. TRANSLATORS: predefined cleaners are for applications, such as Firefox and Flash. #. This is different than cleaning an arbitrary file, such as a #. spreadsheet on the desktop. #: ../bleachbit/CLI.py:141 msgid "run cleaners to delete files and make other permanent changes" msgstr "" #: ../bleachbit/CLI.py:144 msgid "shred specific files or folders" msgstr "" #: ../bleachbit/CLI.py:146 msgid "show system information" msgstr "" #: ../bleachbit/CLI.py:148 msgid "launch the graphical interface" msgstr "" #: ../bleachbit/CLI.py:152 msgid "do not prompt for administrator privileges" msgstr "" #: ../bleachbit/CLI.py:157 msgid "preview files to be deleted and other changes" msgstr "नष्ट करने वाली फ़ाइलो और अन्य परिवर्तनो का पूर्वावलोकन करे" #: ../bleachbit/CLI.py:161 msgid "use options set in the graphical interface" msgstr "" #: ../bleachbit/CLI.py:164 msgid "update winapp2.ini, if a new version is available" msgstr "" #: ../bleachbit/CLI.py:166 msgid "output version information and exit" msgstr "आउटपुट संस्करण सूचना और निकास" #: ../bleachbit/CLI.py:168 msgid "overwrite files to hide contents" msgstr "फाइलो की सामग्री को छिपाने के लिए उन्हें अधिलेखित करे" #. TRANSLATORS: this is the context menu #: ../bleachbit/Action.py:382 ../bleachbit/GUI.py:632 msgid "Clean" msgstr "" #: ../bleachbit/Action.py:418 #, python-format msgid "Run external command: %s" msgstr "" #: ../bleachbit/GUI.py:135 ../bleachbit/GuiPreferences.py:296 msgid "Name" msgstr "नाम" #: ../bleachbit/GUI.py:143 msgid "Active" msgstr "सक्रिय" #. TRANSLATORS: Size is the label for the column that shows how #. much space an option would clean or did clean #: ../bleachbit/GUI.py:155 msgid "Size" msgstr "" #. TRANSLATORS: %(cleaner) may be Firefox, System, etc. #. %(option) may be cache, logs, cookies, etc. #. %(warning) may be 'This option is really slow' #: ../bleachbit/GUI.py:186 #, python-format msgid "" "Warning regarding %(cleaner)s - %(option)s:\n" "\n" "%(warning)s" msgstr "" #: ../bleachbit/GUI.py:372 msgid "You must select an operation" msgstr "तुम एक आपरेशन चुनना होगा" #: ../bleachbit/GUI.py:391 ../bleachbit/GUI.py:413 msgid "Done." msgstr "सम्पन्न." #: ../bleachbit/GUI.py:426 msgid "Program to clean unnecessary files" msgstr "कार्यक्रम अनावश्यक फ़ाइलों को साफ करने के लिए" #: ../bleachbit/GUI.py:436 msgid "" "GNU General Public License version 3 or later.\n" "See http://www.gnu.org/licenses/gpl-3.0.txt" msgstr "" "GNU जनरल पब्लिक लाइसेंस संस्करण 3 या बाद में.\n" " Http://www.gnu.org/licenses/gpl-3.0.txt देखें" #. TRANSLATORS: Maintain the names of translators here. #. Launchpad does this automatically for translations #. typed in Launchpad. This is a special string shown #. in the 'About' box. #: ../bleachbit/GUI.py:442 msgid "translator-credits" msgstr "" "Launchpad Contributions:\n" " Asutosh https://launchpad.net/~dash-asutosh\n" " Jaswant Singh https://launchpad.net/~jaswant0605\n" " Mukunda Panchal https://launchpad.net/~mukunda\n" " nipunreddevil https://launchpad.net/~nipunreddevil\n" " sumeet https://launchpad.net/~sumeetdceian2007" #: ../bleachbit/GUI.py:454 msgid "System information" msgstr "" #: ../bleachbit/GUI.py:527 msgid "Choose files to shred" msgstr "शेयर करने के लिए फ़ाइलें चुनें" #: ../bleachbit/GUI.py:530 msgid "Choose folder to shred" msgstr "" #: ../bleachbit/GUI.py:594 ../bleachbit/GuiPreferences.py:197 #: ../bleachbit/GuiPreferences.py:326 ../bleachbit/GuiPreferences.py:367 msgid "Choose a folder" msgstr "एक फ़ोल्डर चुनें" #. TRANSLATORS: this is the context menu #: ../bleachbit/GUI.py:627 msgid "Preview" msgstr "पूर्वावलोकन" #: ../bleachbit/GUI.py:734 msgid "_Shred Files" msgstr "फ़ाइलें" #: ../bleachbit/GUI.py:736 msgid "Sh_red Folders" msgstr "" #: ../bleachbit/GUI.py:738 msgid "_Wipe Free Space" msgstr "" #: ../bleachbit/GUI.py:740 msgid "S_hred Settings and Quit" msgstr "" #: ../bleachbit/GUI.py:742 msgid "_Quit" msgstr "_बाहर" #: ../bleachbit/GUI.py:744 msgid "_File" msgstr "_फ़ाइल" #: ../bleachbit/GUI.py:746 ../bleachbit/GuiPreferences.py:58 msgid "Preferences" msgstr "वरीयताएँ" #: ../bleachbit/GUI.py:747 msgid "_Edit" msgstr "संपादित करें" #: ../bleachbit/GUI.py:748 msgid "Help Contents" msgstr "सहायता सामग्री" #: ../bleachbit/GUI.py:751 msgid "_Release Notes" msgstr "_रिलीज नोट्स" #: ../bleachbit/GUI.py:754 msgid "_System Information" msgstr "" #: ../bleachbit/GUI.py:757 msgid "_About" msgstr "_के बारे में" #: ../bleachbit/GUI.py:758 msgid "_Help" msgstr "_सहायता" #: ../bleachbit/GUI.py:783 msgctxt "button" msgid "Preview" msgstr "" #: ../bleachbit/GUI.py:788 msgid "Preview files in the selected operations (without deleting any files)" msgstr "" "चयनित आपरेशनों में पूर्वावलोकन फ़ाइलें (किसी भी फाइल को हटाने के बिना)" #: ../bleachbit/GUI.py:798 msgctxt "button" msgid "Clean" msgstr "" #: ../bleachbit/GUI.py:802 msgid "Clean files in the selected operations" msgstr "" #: ../bleachbit/GUI.py:893 msgid "Error when checking for updates: " msgstr "त्रुटि जब अद्यतनों के लिए जाँच " #: ../bleachbit/GUI.py:932 msgid "" "Error loading the SQLite module: the antivirus software may be blocking it." msgstr "" #: ../bleachbit/GUI.py:935 msgid "" "You are running BleachBit with administrative privileges for cleaning shared " "parts of the system, and references to the user profile folder will clean " "only the root account." msgstr "" #: ../bleachbit/GUI.py:940 msgid "" "Run BleachBit with administrator privileges to improve the accuracy of " "overwriting the contents of files." msgstr "" #: ../bleachbit/GuiPreferences.py:64 msgid "General" msgstr "साधारण" #: ../bleachbit/GuiPreferences.py:67 msgid "Drives" msgstr "ड्राइव" #: ../bleachbit/GuiPreferences.py:70 msgid "Languages" msgstr "भाषाएँ" #: ../bleachbit/GuiPreferences.py:72 msgid "Whitelist" msgstr "" #: ../bleachbit/GuiPreferences.py:117 msgid "Check periodically for software updates via the Internet" msgstr "समय समय सॉफ़्टवेयर अद्यतनों के लिए इंटरनेट के माध्यम से चेक" #: ../bleachbit/GuiPreferences.py:122 msgid "" "If an update is found, you will be given the option to view information " "about it. Then, you may manually download and install the update." msgstr "" "यदि एक अद्यतन पाया जाता है, तो आप इस विकल्प को इसके बारे में जानकारी देखने " "के लिए दिया जाएगा.तो फिर, आप मैन्युअल रूप से डाउनलोड कर सकते हैं और अद्यतन " "स्थापित." #: ../bleachbit/GuiPreferences.py:128 msgid "Check for new beta releases" msgstr "" #: ../bleachbit/GuiPreferences.py:137 msgid "Download and update cleaners from community (winapp2.ini)" msgstr "" #. TRANSLATORS: This means to hide cleaners which would do #. nothing. For example, if Firefox were never used on #. this system, this option would hide Firefox to simplify #. the list of cleaners. #: ../bleachbit/GuiPreferences.py:151 msgid "Hide irrelevant cleaners" msgstr "" #. TRANSLATORS: Overwriting is the same as shredding. It is a way #. to prevent recovery of the data. You could also translate #. 'Shred files to prevent recovery.' #: ../bleachbit/GuiPreferences.py:159 msgid "Overwrite contents of files to prevent recovery" msgstr "" #: ../bleachbit/GuiPreferences.py:163 msgid "" "Overwriting is ineffective on some file systems and with certain BleachBit " "operations. Overwriting is significantly slower." msgstr "" "अधिलेखित फाइल सिस्टम पर कुछ बेअसर है और कुछ BleachBit कार्यों के साथ. " "अधिलेखित काफी धीमी है." #: ../bleachbit/GuiPreferences.py:166 msgid "Start BleachBit with computer" msgstr "" #: ../bleachbit/GuiPreferences.py:172 msgid "Exit after cleaning" msgstr "" #: ../bleachbit/GuiPreferences.py:178 msgid "Confirm before delete" msgstr "" #: ../bleachbit/GuiPreferences.py:186 msgid "Use IEC sizes (1 KiB = 1024 bytes) instead of SI (1 kB = 1000 bytes)" msgstr "" #: ../bleachbit/GuiPreferences.py:221 msgid "" "Choose a writable folder for each drive for which to overwrite free space." msgstr "" #. TRANSLATORS: In the preferences dialog, this button adds a path to #. the list of paths #: ../bleachbit/GuiPreferences.py:243 msgctxt "button" msgid "Add" msgstr "" #. TRANSLATORS: In the preferences dialog, this button removes a path #. from the list of paths #: ../bleachbit/GuiPreferences.py:247 ../bleachbit/GuiPreferences.py:458 msgctxt "button" msgid "Remove" msgstr "" #: ../bleachbit/GuiPreferences.py:272 msgid "All languages will be deleted except those checked." msgstr "सभी भाषाओं उन की जाँच के अलावा हटा दिया जाएगा" #: ../bleachbit/GuiPreferences.py:288 msgid "Preserve" msgstr "संरक्षित करें" #: ../bleachbit/GuiPreferences.py:292 msgid "Code" msgstr "कोड" #: ../bleachbit/GuiPreferences.py:313 ../bleachbit/GuiPreferences.py:354 msgid "Choose a file" msgstr "" #: ../bleachbit/GuiPreferences.py:320 ../bleachbit/GuiPreferences.py:361 #: ../bleachbit/GuiPreferences.py:405 msgid "File" msgstr "" #: ../bleachbit/GuiPreferences.py:334 ../bleachbit/GuiPreferences.py:375 #: ../bleachbit/GuiPreferences.py:407 msgid "Folder" msgstr "" #: ../bleachbit/GuiPreferences.py:417 msgid "Theses paths will not be deleted or modified." msgstr "" #: ../bleachbit/GuiPreferences.py:420 msgid "These locations can be selected for deletion." msgstr "" #: ../bleachbit/GuiPreferences.py:428 msgid "Type" msgstr "" #. TRANSLATORS: In the tree view "Path" is used generically to refer to a #. file, a folder, or a pattern describing either #: ../bleachbit/GuiPreferences.py:434 msgid "Path" msgstr "" #: ../bleachbit/GuiPreferences.py:446 msgctxt "button" msgid "Add file" msgstr "" #: ../bleachbit/GuiPreferences.py:452 msgctxt "button" msgid "Add folder" msgstr "" bleachbit-2.0/po/zh_CN.po0000644000175000017500000012731713245436307013373 0ustar hlehle# Simplified Chinese translation for bleachbit # Copyright (c) 2009 Rosetta Contributors and Canonical Ltd 2009 # This file is distributed under the same license as the bleachbit package. # FIRST AUTHOR , 2009. # msgid "" msgstr "" "Project-Id-Version: bleachbit\n" "Report-Msgid-Bugs-To: FULL NAME \n" "POT-Creation-Date: 2017-01-01 20:28-0700\n" "PO-Revision-Date: 2017-01-04 07:00+0000\n" "Last-Translator: sunshan \n" "Language-Team: Simplified Chinese \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=1; plural=0;\n" "X-Launchpad-Export-Date: 2017-01-05 03:28+0000\n" "X-Generator: Launchpad (build 18298)\n" #: ../cleaners/mc.xml ../cleaners/tortoisesvn.xml ../cleaners/vim.xml #: ../cleaners/safari.xml ../cleaners/links2.xml ../cleaners/seamonkey.xml #: ../cleaners/realplayer.xml ../cleaners/windows_defender.xml #: ../cleaners/d4x.xml ../cleaners/sqlite3.xml #: ../cleaners/internet_explorer.xml ../cleaners/libreoffice.xml #: ../cleaners/easytag.xml ../cleaners/bash.xml ../cleaners/nautilus.xml #: ../cleaners/octave.xml ../cleaners/elinks.xml ../cleaners/chromium.xml #: ../cleaners/google_chrome.xml msgid "History" msgstr "历史记录" #: ../cleaners/mc.xml ../cleaners/tortoisesvn.xml ../cleaners/links2.xml #: ../cleaners/realplayer.xml ../cleaners/d4x.xml ../cleaners/libreoffice.xml #: ../cleaners/easytag.xml ../cleaners/nautilus.xml ../cleaners/gnome.xml #: ../bleachbit/Cleaner.py:352 ../bleachbit/Cleaner.py:426 #: ../bleachbit/Cleaner.py:435 msgid "Delete the usage history" msgstr "删除使用记录" #: ../cleaners/gpodder.xml ../cleaners/hippo_opensim_viewer.xml #: ../cleaners/thumbnails.xml ../cleaners/safari.xml ../cleaners/emesene.xml #: ../cleaners/liferea.xml ../cleaners/seamonkey.xml ../cleaners/vuze.xml #: ../cleaners/yahoo_messenger.xml ../cleaners/pidgin.xml #: ../cleaners/adobe_reader.xml ../cleaners/evolution.xml #: ../cleaners/tremulous.xml ../cleaners/libreoffice.xml ../cleaners/xine.xml #: ../cleaners/nexuiz.xml ../cleaners/exaile.xml ../cleaners/opera.xml #: ../cleaners/amsn.xml ../cleaners/gftp.xml ../cleaners/miro.xml #: ../cleaners/beagle.xml ../cleaners/kde.xml ../cleaners/epiphany.xml #: ../cleaners/flash.xml ../cleaners/secondlife_viewer.xml ../cleaners/java.xml #: ../cleaners/chromium.xml ../cleaners/audacious.xml ../cleaners/rhythmbox.xml #: ../cleaners/google_chrome.xml ../cleaners/thunderbird.xml #: ../bleachbit/Cleaner.py:195 ../bleachbit/Cleaner.py:373 #: ../bleachbit/Cleaner.py:458 msgid "Cache" msgstr "缓存" #: ../cleaners/gpodder.xml ../cleaners/yum.xml #: ../cleaners/hippo_opensim_viewer.xml ../cleaners/thumbnails.xml #: ../cleaners/windows_explorer.xml ../cleaners/liferea.xml #: ../cleaners/vuze.xml ../cleaners/yahoo_messenger.xml ../cleaners/pidgin.xml #: ../cleaners/adobe_reader.xml ../cleaners/evolution.xml #: ../cleaners/libreoffice.xml ../cleaners/apt.xml ../cleaners/xine.xml #: ../cleaners/nexuiz.xml ../cleaners/exaile.xml ../cleaners/amsn.xml #: ../cleaners/gftp.xml ../cleaners/miro.xml ../cleaners/beagle.xml #: ../cleaners/kde.xml ../cleaners/flash.xml ../cleaners/secondlife_viewer.xml #: ../cleaners/java.xml ../cleaners/audacious.xml ../cleaners/rhythmbox.xml #: ../bleachbit/Cleaner.py:373 ../bleachbit/Cleaner.py:458 #: ../bleachbit/Cleaner.py:492 ../bleachbit/Cleaner.py:494 msgid "Delete the cache" msgstr "删除缓存文件" #. TRANSLATORS: Vacuum is a verb. The term is jargon #. from the SQLite database. Microsoft Access uses #. the term 'Compact Database' (which you may translate #. instead). Another synonym is 'defragment.' #: ../cleaners/gpodder.xml ../cleaners/yum.xml ../cleaners/safari.xml #: ../cleaners/liferea.xml ../cleaners/chromium.xml #: ../cleaners/google_chrome.xml ../cleaners/thunderbird.xml #: ../bleachbit/Action.py:447 ../bleachbit/Cleaner.py:217 #: ../bleachbit/Cleaner.py:363 msgid "Vacuum" msgstr "整理数据库" #: ../cleaners/gpodder.xml ../cleaners/yum.xml ../cleaners/safari.xml #: ../cleaners/liferea.xml ../cleaners/chromium.xml #: ../cleaners/google_chrome.xml ../cleaners/thunderbird.xml #: ../bleachbit/Cleaner.py:218 msgid "" "Clean database fragmentation to reduce space and improve speed without " "removing any data" msgstr "清理数据库碎片以减少空间并提高速度(无需删除任何数据)" #: ../cleaners/yum.xml ../cleaners/apt.xml msgid "Package manager" msgstr "包管理器" #: ../cleaners/warzone2100.xml ../cleaners/hippo_opensim_viewer.xml #: ../cleaners/gl-117.xml ../cleaners/tremulous.xml ../cleaners/nexuiz.xml #: ../cleaners/secondlife_viewer.xml msgid "Game" msgstr "游戏" #: ../cleaners/warzone2100.xml ../cleaners/hippo_opensim_viewer.xml #: ../cleaners/teamviewer.xml ../cleaners/realplayer.xml ../cleaners/vuze.xml #: ../cleaners/yahoo_messenger.xml ../cleaners/amule.xml #: ../cleaners/easytag.xml ../cleaners/exaile.xml ../cleaners/screenlets.xml #: ../cleaners/gftp.xml ../cleaners/miro.xml ../cleaners/audacious.xml #: ../bleachbit/Cleaner.py:489 msgid "Logs" msgstr "日志" #: ../cleaners/warzone2100.xml ../cleaners/hippo_opensim_viewer.xml #: ../cleaners/teamviewer.xml ../cleaners/realplayer.xml ../cleaners/vuze.xml #: ../cleaners/yahoo_messenger.xml ../cleaners/amule.xml ../cleaners/exaile.xml #: ../cleaners/screenlets.xml ../cleaners/gftp.xml ../cleaners/miro.xml #: ../cleaners/audacious.xml ../bleachbit/Cleaner.py:489 msgid "Delete the logs" msgstr "删除日志" #: ../cleaners/thumbnails.xml ../cleaners/windows_explorer.xml msgid "Thumbnails" msgstr "缩略图" #: ../cleaners/thumbnails.xml msgid "Icons for files on the system" msgstr "系统中文件的缩略图" #: ../cleaners/vim.xml ../cleaners/gedit.xml msgid "Editor" msgstr "编辑器" #: ../cleaners/vim.xml msgid "" "Delete ~/.viminfo which includes file history, command history, and buffers" msgstr "删除 ~/.viminfo 目录,该目录下包含文件历史记录、命令历史记录和缓冲区" #: ../cleaners/filezilla.xml ../cleaners/transmission.xml ../cleaners/vuze.xml #: ../cleaners/amule.xml ../cleaners/gftp.xml msgid "File transfer client" msgstr "文件传输客户端" #: ../cleaners/filezilla.xml ../cleaners/paint.xml #: ../cleaners/windows_media_player.xml ../cleaners/windows_explorer.xml #: ../cleaners/teamviewer.xml ../cleaners/microsoft_office.xml #: ../cleaners/vlc.xml ../cleaners/adobe_reader.xml ../cleaners/winamp.xml #: ../cleaners/winzip.xml ../cleaners/winrar.xml ../cleaners/audacious.xml #: ../cleaners/wordpad.xml ../bleachbit/Cleaner.py:374 msgid "Most recently used" msgstr "最近使用的" #: ../cleaners/filezilla.xml ../cleaners/windows_explorer.xml #: ../cleaners/gwenview.xml ../cleaners/adobe_reader.xml ../cleaners/gedit.xml #: ../cleaners/kde.xml ../cleaners/audacious.xml ../bleachbit/Cleaner.py:375 #: ../bleachbit/Cleaner.py:472 msgid "Delete the list of recently used documents" msgstr "删除最近使用文档列表" #: ../cleaners/skype.xml ../cleaners/emesene.xml #: ../cleaners/yahoo_messenger.xml ../cleaners/pidgin.xml ../cleaners/amsn.xml msgid "Chat client" msgstr "聊天客户端" #: ../cleaners/skype.xml ../cleaners/hexchat.xml ../cleaners/emesene.xml #: ../cleaners/seamonkey.xml ../cleaners/yahoo_messenger.xml #: ../cleaners/pidgin.xml ../cleaners/amsn.xml msgid "Chat logs" msgstr "聊天记录" #: ../cleaners/skype.xml ../cleaners/hexchat.xml ../cleaners/emesene.xml #: ../cleaners/seamonkey.xml ../cleaners/yahoo_messenger.xml #: ../cleaners/pidgin.xml ../cleaners/amsn.xml msgid "Delete the chat logs" msgstr "删除聊天记录" #: ../cleaners/skype.xml msgid "Installers" msgstr "安装包" #: ../cleaners/skype.xml msgid "Delete cached patches and installers" msgstr "删除已下载的补丁和安装包" #: ../cleaners/hexchat.xml msgid "IRC chat client formerly known as XChat" msgstr "旧称 XChat 的 IRC 客户端" #: ../cleaners/safari.xml ../cleaners/links2.xml ../cleaners/seamonkey.xml #: ../cleaners/konqueror.xml ../cleaners/internet_explorer.xml #: ../cleaners/opera.xml ../cleaners/epiphany.xml ../cleaners/elinks.xml #: ../cleaners/chromium.xml ../cleaners/google_chrome.xml #: ../bleachbit/Cleaner.py:229 msgid "Web browser" msgstr "网页浏览器" #: ../cleaners/safari.xml ../cleaners/seamonkey.xml ../cleaners/opera.xml #: ../cleaners/epiphany.xml ../cleaners/chromium.xml #: ../cleaners/google_chrome.xml ../cleaners/thunderbird.xml #: ../bleachbit/Cleaner.py:196 msgid "Delete the web cache, which reduces time to display revisited pages" msgstr "删除那些网页缓冲文件(这些缓冲文件可以减少下次访问该网页的时间)" #: ../cleaners/safari.xml ../cleaners/liferea.xml ../cleaners/seamonkey.xml #: ../cleaners/realplayer.xml ../cleaners/konqueror.xml #: ../cleaners/internet_explorer.xml ../cleaners/opera.xml #: ../cleaners/epiphany.xml ../cleaners/flash.xml ../cleaners/silverlight.xml #: ../cleaners/chromium.xml ../cleaners/google_chrome.xml #: ../cleaners/thunderbird.xml ../bleachbit/Cleaner.py:197 msgid "Cookies" msgstr "Cookies" #: ../cleaners/safari.xml ../cleaners/liferea.xml ../cleaners/seamonkey.xml #: ../cleaners/realplayer.xml ../cleaners/konqueror.xml #: ../cleaners/internet_explorer.xml ../cleaners/opera.xml #: ../cleaners/epiphany.xml ../cleaners/flash.xml ../cleaners/silverlight.xml #: ../cleaners/chromium.xml ../cleaners/google_chrome.xml #: ../cleaners/thunderbird.xml ../bleachbit/Cleaner.py:198 msgid "" "Delete cookies, which contain information such as web site preferences, " "authentication, and tracking identification" msgstr "删除 cookies 文件,它们保存网站首选项、认证和身份等信息" #: ../cleaners/safari.xml ../cleaners/konqueror.xml #: ../cleaners/internet_explorer.xml ../cleaners/opera.xml #: ../bleachbit/Cleaner.py:216 msgid "List of visited web pages" msgstr "已访问网页列表" #. Torrent software can block a list of IP addresses, such as those that may belong to malware or anti-piracy organizations #: ../cleaners/transmission.xml msgid "Blocklists" msgstr "阻挡列表" #: ../cleaners/transmission.xml ../cleaners/windows_defender.xml #: ../cleaners/beagle.xml ../cleaners/thunderbird.xml ../cleaners/deepscan.xml #: ../bleachbit/Cleaner.py:200 msgid "Delete the files" msgstr "删除文件" #: ../cleaners/transmission.xml msgid "Blocklists will need update to work." msgstr "阻挡列表需要更新才能工作" #: ../cleaners/transmission.xml msgid "Torrents" msgstr "种子" #: ../cleaners/transmission.xml msgid "Delete the torrents (just the metadata but not the files described)" msgstr "删除 BT 种子(不删下载文件)" #: ../cleaners/transmission.xml msgid "Statistics" msgstr "统计信息" #: ../cleaners/transmission.xml msgid "Delete the file" msgstr "删除文件" #: ../cleaners/paint.xml ../cleaners/windows_media_player.xml #: ../cleaners/windows_explorer.xml ../cleaners/teamviewer.xml #: ../cleaners/microsoft_office.xml ../cleaners/vlc.xml ../cleaners/winamp.xml #: ../cleaners/winzip.xml ../cleaners/winrar.xml ../cleaners/wordpad.xml msgid "Delete the most recently used list" msgstr "删除最近使用项" #: ../cleaners/emesene.xml msgid "Delete the avatars and emoticons cache" msgstr "删除头像和表情缓存" #: ../cleaners/windows_media_player.xml ../cleaners/realplayer.xml #: ../cleaners/vlc.xml ../cleaners/winamp.xml msgid "Media player" msgstr "媒体播放器" #: ../cleaners/windows_explorer.xml ../cleaners/nautilus.xml msgid "File manager" msgstr "文件管理器" #: ../cleaners/windows_explorer.xml ../cleaners/gwenview.xml #: ../cleaners/gedit.xml ../cleaners/kde.xml ../bleachbit/Cleaner.py:471 msgid "Recent documents list" msgstr "最近使用文档列表" #: ../cleaners/windows_explorer.xml msgid "" "This option will reset pinned locations in Quick Access to their defaults." msgstr "" #. In Windows 'Run' is the dialog in the Start menu #. In GNOME 'Run' is the dialog shown when typing ALT+F2' #: ../cleaners/windows_explorer.xml ../cleaners/gnome.xml msgid "Run" msgstr "运行" #: ../cleaners/windows_explorer.xml ../cleaners/opera.xml ../cleaners/gnome.xml #: ../cleaners/google_toolbar.xml msgid "Search history" msgstr "搜索历史" #: ../cleaners/windows_explorer.xml ../cleaners/opera.xml ../cleaners/gnome.xml #: ../cleaners/google_toolbar.xml msgid "Delete the search history" msgstr "删除搜索历史" #: ../cleaners/windows_explorer.xml msgid "This will restart Windows Explorer." msgstr "这将重启 Windows 资源管理器" #: ../cleaners/gl-117.xml ../cleaners/microsoft_office.xml #: ../cleaners/beagle.xml ../cleaners/secondlife_viewer.xml ../cleaners/x11.xml msgid "Debug logs" msgstr "调试日志" #: ../cleaners/gl-117.xml ../cleaners/microsoft_office.xml #: ../cleaners/easytag.xml ../cleaners/beagle.xml #: ../cleaners/secondlife_viewer.xml ../cleaners/x11.xml msgid "Delete the debug logs" msgstr "删除调试日志" #: ../cleaners/google_earth.xml ../cleaners/winetricks.xml ../cleaners/vuze.xml #: ../cleaners/adobe_reader.xml ../cleaners/amule.xml ../cleaners/wine.xml #: ../cleaners/internet_explorer.xml ../cleaners/gimp.xml ../cleaners/kde.xml #: ../cleaners/deepscan.xml ../bleachbit/Cleaner.py:523 msgid "Temporary files" msgstr "临时文件" #: ../cleaners/google_earth.xml ../cleaners/winetricks.xml ../cleaners/vuze.xml #: ../cleaners/adobe_reader.xml ../cleaners/amule.xml ../cleaners/wine.xml #: ../cleaners/internet_explorer.xml ../cleaners/gimp.xml ../cleaners/kde.xml #: ../cleaners/deepscan.xml ../bleachbit/Cleaner.py:523 msgid "Delete the temporary files" msgstr "删除临时文件" #: ../cleaners/seamonkey.xml ../cleaners/opera.xml ../bleachbit/Cleaner.py:204 msgid "Download history" msgstr "下载历史" #: ../cleaners/seamonkey.xml ../cleaners/opera.xml ../bleachbit/Cleaner.py:204 msgid "List of files downloaded" msgstr "下载历史列表" #: ../cleaners/seamonkey.xml msgid "Delete the list of visited web pages" msgstr "删除已访问网页列表" #: ../cleaners/vuze.xml ../cleaners/deepscan.xml ../bleachbit/Cleaner.py:193 msgid "Backup files" msgstr "备份文件" #: ../cleaners/vuze.xml ../cleaners/deepscan.xml ../bleachbit/Cleaner.py:194 msgid "Delete the backup files" msgstr "删除备份文件" #: ../cleaners/konqueror.xml ../cleaners/opera.xml ../cleaners/chromium.xml msgid "Current session" msgstr "当前会话" #: ../cleaners/konqueror.xml ../cleaners/opera.xml ../cleaners/chromium.xml msgid "Delete the current session" msgstr "删除当前会话" #: ../cleaners/konqueror.xml ../cleaners/opera.xml ../bleachbit/Cleaner.py:216 msgid "URL history" msgstr "URL 历史" #: ../cleaners/microsoft_office.xml ../cleaners/libreoffice.xml #: ../bleachbit/Cleaner.py:378 msgid "Office suite" msgstr "办公套件" #: ../cleaners/windows_defender.xml msgid "Anti-virus" msgstr "杀毒软件" #: ../cleaners/journald.xml msgid "System journals" msgstr "系统日志" #: ../cleaners/journald.xml msgid "Clean old system journals" msgstr "清理旧的系统日志" #: ../cleaners/adobe_reader.xml msgid "Document viewer" msgstr "文档查看器" #: ../cleaners/evolution.xml ../cleaners/thunderbird.xml msgid "Email client" msgstr "邮件客户端" #: ../cleaners/tremulous.xml msgid "Delete the list of game servers" msgstr "删除游戏服务器列表" #: ../cleaners/sqlite3.xml ../cleaners/bash.xml ../cleaners/octave.xml msgid "Delete the command history" msgstr "删除命令历史" #: ../cleaners/wine.xml msgid "Compatibility layer for Windows software" msgstr "Windows 软件运行兼容层" #: ../cleaners/internet_explorer.xml ../cleaners/chromium.xml #: ../cleaners/google_chrome.xml ../bleachbit/Cleaner.py:205 msgid "Form history" msgstr "表单历史" #: ../cleaners/internet_explorer.xml ../bleachbit/Cleaner.py:206 msgid "A history of forms entered in web sites and in the Search bar" msgstr "网页表单和搜索栏的历史" #. This software edits metadata tags, such as title and artist, in audio files #: ../cleaners/easytag.xml msgid "Audio files tagger" msgstr "音频文件标签处理工具" #: ../cleaners/apt.xml msgid "Delete obsolete files" msgstr "删除废弃的文件" #: ../cleaners/apt.xml msgid "Package lists" msgstr "软件包列表" #: ../cleaners/xine.xml ../cleaners/miro.xml ../cleaners/flash.xml msgid "Multimedia viewer" msgstr "多媒体浏览器" #: ../cleaners/recoll.xml ../cleaners/beagle.xml msgid "Search tool" msgstr "搜索工具" #: ../cleaners/recoll.xml ../cleaners/beagle.xml ../cleaners/thunderbird.xml msgid "Index" msgstr "索引" #: ../cleaners/recoll.xml msgid "" "Delete the search index, a database of words and the files they contain" msgstr "删除搜索索引,一个包含文字和文件的数据库" #: ../cleaners/gimp.xml msgid "Graphics editor" msgstr "图像编辑器" #: ../cleaners/exaile.xml msgid "Downloaded podcasts" msgstr "已下载的播客" #: ../cleaners/exaile.xml msgid "Delete downloaded podcasts" msgstr "删除下载的播客" #: ../cleaners/bash.xml msgid "Shell" msgstr "Shell 终端" #. TRANSLATORS: DOM = Document Object Model. #: ../cleaners/opera.xml ../cleaners/epiphany.xml ../cleaners/chromium.xml #: ../cleaners/google_chrome.xml ../bleachbit/Cleaner.py:202 msgid "DOM Storage" msgstr "DOM(文档对象模型) 存储" #: ../cleaners/opera.xml ../cleaners/epiphany.xml ../cleaners/chromium.xml #: ../cleaners/google_chrome.xml ../bleachbit/Cleaner.py:202 msgid "Delete HTML5 cookies" msgstr "删除 HTML5 cookies" #: ../cleaners/opera.xml ../cleaners/epiphany.xml ../cleaners/chromium.xml #: ../cleaners/google_chrome.xml ../cleaners/thunderbird.xml #: ../bleachbit/Cleaner.py:211 msgid "Passwords" msgstr "密码" #: ../cleaners/opera.xml ../cleaners/epiphany.xml ../cleaners/chromium.xml #: ../cleaners/google_chrome.xml ../cleaners/thunderbird.xml #: ../bleachbit/Cleaner.py:212 msgid "" "A database of usernames and passwords as well as a list of sites that should " "not store passwords" msgstr "一个储存了用户名、密码和一些不再储存密码的站点的数据库" #: ../cleaners/opera.xml ../cleaners/epiphany.xml ../cleaners/chromium.xml #: ../cleaners/google_chrome.xml ../cleaners/thunderbird.xml #: ../bleachbit/Cleaner.py:214 msgid "This option will delete your saved passwords." msgstr "这个选项将会删除您已保存的密码" #: ../cleaners/nautilus.xml msgid "Custom folders will be reset." msgstr "自定义文件夹将被重置。" #: ../cleaners/gnome.xml ../cleaners/kde.xml msgid "Desktop environment" msgstr "桌面环境" #: ../cleaners/screenlets.xml msgid "Widgets for the desktop" msgstr "桌面部件" #: ../cleaners/epiphany.xml msgid "Places" msgstr "位置" #: ../cleaners/epiphany.xml msgid "" "A database of URLs including bookmarks, favicons, and a history of visited " "web sites" msgstr "一个包含书签、网站图标和已访问网站的历史记录的 URL 的数据库" #: ../cleaners/epiphany.xml msgid "This option deletes all bookmarks." msgstr "此选项删除所有书签" #: ../cleaners/winrar.xml msgid "File archiver" msgstr "压缩软件" #: ../cleaners/elinks.xml msgid "Delete the cookies, visited URLs, and search history" msgstr "删除 cookies,已访问 URL 和搜索历史" #: ../cleaners/chromium.xml ../cleaners/google_chrome.xml msgid "A history of forms entered in web sites" msgstr "网站表单输入历史" #: ../cleaners/chromium.xml ../cleaners/google_chrome.xml msgid "" "Delete the history which includes visited sites, downloads, and thumbnails" msgstr "删除已浏览网站、下载及缩略图的历史记录" #: ../cleaners/chromium.xml ../cleaners/google_chrome.xml msgid "Search engines" msgstr "搜索引擎" #. 'Factory' means a search engine that is installed by default 'from the factory,' but this is different than a 'default search engine' https://lists.launchpad.net/launchpad-translators/msg00283.html #: ../cleaners/chromium.xml ../cleaners/google_chrome.xml msgid "" "Reset the search engine usage history and delete non-factory search engines, " "some of which are added automatically" msgstr "重置搜索引擎使用历史并删除非内置搜索引擎,其中一些引擎为自动添加" #: ../cleaners/audacious.xml msgid "Audio player" msgstr "音频播放器" #: ../cleaners/rhythmbox.xml msgid "Database" msgstr "数据库" #: ../cleaners/rhythmbox.xml msgid "" "Delete the database, which contain information such as play count and last " "played" msgstr "清理数据库:包括播放次数、最近播放等信息" #: ../cleaners/google_chrome.xml msgid "Session" msgstr "会话" #: ../cleaners/google_chrome.xml msgid "Delete the current and last sessions" msgstr "删除当前及上一次的会话" #: ../cleaners/x11.xml msgid "Windowing system" msgstr "窗口系统" #: ../cleaners/wordpad.xml msgid "Word processor" msgstr "文档处理器" #: ../cleaners/deepscan.xml msgid "Deep scan" msgstr "深度搜索" #: ../cleaners/deepscan.xml msgid "Clean files widely scattered across the disk" msgstr "" #: ../cleaners/deepscan.xml msgid "Inspect the preview for any files you want to keep." msgstr "查看您想保存的任何文件的预览。" #: ../cleaners/deepscan.xml msgid "This option is slow." msgstr "此选项很耗时。" #: ../bleachbit.desktop msgid "Unnecessary file cleaner" msgstr "不必要文件清理器" #: ../bleachbit.desktop msgid "Free space and maintain privacy" msgstr "释放空间并保护隐私" #: ../bleachbit/GuiBasic.py:112 msgid "Delete confirmation" msgstr "删除确认" #: ../bleachbit/GuiBasic.py:122 msgid "" "Are you sure you want to permanently delete files according to the selected " "operations? The actual files that will be deleted may have changed since " "you ran the preview." msgstr "你确定想要根据所选择的操作永久删除那些文件吗?实际被删除的文件可能会因为你使用预览而改变。" #: ../bleachbit/GuiBasic.py:125 msgid "Are you sure you want to permanently delete these files?" msgstr "你确认要永久删除这些文件吗?" #: ../bleachbit/GuiBasic.py:162 #, python-format msgid "" "Because you are running as root, please manually open this link in a web " "browser:\n" "%s" msgstr "" "由于您正以 root 身份运行此程序,请在浏览器中手动打开此链接:\n" "%s" #. TRANSLATORS: %s expands to www.bleachbit.org or similar #: ../bleachbit/GuiBasic.py:174 #, python-format msgid "Open web browser to %s?" msgstr "在浏览器中打开 %s 吗?" #. TRANSLATORS: This is the label in the log indicating was #. skipped because it matches the whitelist #: ../bleachbit/Command.py:46 msgid "Skip" msgstr "跳过" #. TRANSLATORS: This is the label in the log indicating will be #. deleted (for previews) or was actually deleted #: ../bleachbit/Command.py:76 msgid "Delete" msgstr "删除" #. TRANSLATORS: The file will be deleted when the #. system reboots #: ../bleachbit/Command.py:97 msgid "Mark for deletion" msgstr "标记为删除" #. TRANSLATORS: Parts of this file will be deleted #: ../bleachbit/Command.py:194 ../bleachbit/Command.py:228 #: ../bleachbit/Action.py:256 ../bleachbit/Action.py:269 #: ../bleachbit/Action.py:282 ../bleachbit/Action.py:295 #: ../bleachbit/Action.py:308 msgid "Clean file" msgstr "清理文件" #. TRANSLATORS: The file will be truncated to 0 bytes in length #: ../bleachbit/Command.py:270 msgid "Truncate" msgstr "截断" #: ../bleachbit/Command.py:312 msgid "Delete registry key" msgstr "删除注册表键" #: ../bleachbit/Unix.py:573 #, python-format msgid "Executable not found: %s" msgstr "未发现可执行文件: %s" #. TRANSLATORS: %s expands to a name such as 'Firefox' or 'System'. #: ../bleachbit/Unix.py:622 ../bleachbit/Worker.py:137 #, python-format msgid "" "%s cannot be cleaned because it is currently running. Close it, and try " "again." msgstr "无法清理 %s,因为它正在运行。 关闭程序后重试。" #: ../bleachbit/RecognizeCleanerML.py:59 msgid "Security warning" msgstr "安全警告" #: ../bleachbit/RecognizeCleanerML.py:72 msgid "" "These cleaner definitions are new or have changed. Malicious definitions can " "damage your system. If you do not trust these changes, delete the files or " "quit." msgstr "这些清理器定义文件是新的或被改过。恶意的定义可能损坏您的系统。如果您不相信这些更改,删除这些文件或退出。" #: ../bleachbit/RecognizeCleanerML.py:87 msgctxt "column_label" msgid "Delete" msgstr "删除" #: ../bleachbit/RecognizeCleanerML.py:92 msgctxt "column_label" msgid "Filename" msgstr "文件名" #: ../bleachbit/GUI.py:137 ../bleachbit/GuiPreferences.py:296 msgid "Name" msgstr "名称" #: ../bleachbit/GUI.py:145 msgid "Active" msgstr "激活" #. TRANSLATORS: Size is the label for the column that shows how #. much space an option would clean or did clean #: ../bleachbit/GUI.py:157 msgid "Size" msgstr "大小" #. TRANSLATORS: %(cleaner) may be Firefox, System, etc. #. %(option) may be cache, logs, cookies, etc. #. %(warning) may be 'This option is really slow' #: ../bleachbit/GUI.py:188 #, python-format msgid "" "Warning regarding %(cleaner)s - %(option)s:\n" "\n" "%(warning)s" msgstr "" "关于 %(cleaner)s 的警告 - %(option)s:\n" "\n" "%(warning)s" #: ../bleachbit/GUI.py:374 msgid "You must select an operation" msgstr "你必须选择一项操作" #: ../bleachbit/GUI.py:393 ../bleachbit/GUI.py:415 msgid "Done." msgstr "完成。" #: ../bleachbit/GUI.py:428 msgid "Program to clean unnecessary files" msgstr "删除不必要文件程序" #: ../bleachbit/GUI.py:434 msgid "" "GNU General Public License version 3 or later.\n" "See http://www.gnu.org/licenses/gpl-3.0.txt" msgstr "" "GNU General Public License 版本3或更高。\n" "See http://www.gnu.org/licenses/gpl-3.0.txt" #. TRANSLATORS: Maintain the names of translators here. #. Launchpad does this automatically for translations #. typed in Launchpad. This is a special string shown #. in the 'About' box. #: ../bleachbit/GUI.py:440 msgid "translator-credits" msgstr "" "Launchpad Contributions:\n" " Christopher Meng https://launchpad.net/~cicku\n" " Feng Chao https://launchpad.net/~chaofeng\n" " Jackychan https://launchpad.net/~chenyonghui1028\n" " Tao Wei https://launchpad.net/~weitao1979\n" " Wang Dianjin https://launchpad.net/~tuhaihe\n" " Wylmer Wang https://launchpad.net/~wantinghard\n" " ZhangCheng https://launchpad.net/~xxzc\n" " lhquark https://launchpad.net/~lhquark\n" " mao_king https://launchpad.net/~mao-king\n" " sunshan https://launchpad.net/~sunshan\n" " yuane https://launchpad.net/~yuane\n" " zhanshime https://launchpad.net/~zhanshime" #: ../bleachbit/GUI.py:452 msgid "System information" msgstr "系统信息" #: ../bleachbit/GUI.py:525 msgid "Choose files to shred" msgstr "选择要粉碎的文件" #: ../bleachbit/GUI.py:528 msgid "Choose folder to shred" msgstr "选择要粉碎的文件夹" #: ../bleachbit/GUI.py:591 ../bleachbit/GuiPreferences.py:197 #: ../bleachbit/GuiPreferences.py:326 ../bleachbit/GuiPreferences.py:367 msgid "Choose a folder" msgstr "选择一个文件夹" #. TRANSLATORS: this is the context menu #: ../bleachbit/GUI.py:624 msgid "Preview" msgstr "预览" #. TRANSLATORS: this is the context menu #: ../bleachbit/GUI.py:629 ../bleachbit/Action.py:384 msgid "Clean" msgstr "清空" #: ../bleachbit/GUI.py:731 msgid "_Shred Files" msgstr "粉碎文件(_S)" #: ../bleachbit/GUI.py:733 msgid "Sh_red Folders" msgstr "粉碎文件夹(_R)" #: ../bleachbit/GUI.py:735 msgid "_Wipe Free Space" msgstr "擦除空闲空间(_W)" #: ../bleachbit/GUI.py:737 msgid "S_hred Settings and Quit" msgstr "放弃设置并退出(_H)" #: ../bleachbit/GUI.py:739 msgid "_Quit" msgstr "退出(_Q)" #: ../bleachbit/GUI.py:741 msgid "_File" msgstr "文件(_F)" #: ../bleachbit/GUI.py:743 ../bleachbit/GuiPreferences.py:58 msgid "Preferences" msgstr "首选项" #: ../bleachbit/GUI.py:744 msgid "_Edit" msgstr "编辑(_E)" #: ../bleachbit/GUI.py:745 msgid "Help Contents" msgstr "帮助目录" #: ../bleachbit/GUI.py:748 msgid "_Release Notes" msgstr "发行信息(_R)" #: ../bleachbit/GUI.py:751 msgid "_System Information" msgstr "系统信息(_S)" #: ../bleachbit/GUI.py:754 msgid "_About" msgstr "关于(_A)" #: ../bleachbit/GUI.py:755 msgid "_Help" msgstr "帮助(_H)" #: ../bleachbit/GUI.py:780 msgctxt "button" msgid "Preview" msgstr "预览" #: ../bleachbit/GUI.py:785 msgid "Preview files in the selected operations (without deleting any files)" msgstr "预览设置操作中的文件(不删除任何文件)" #: ../bleachbit/GUI.py:795 msgctxt "button" msgid "Clean" msgstr "清理" #: ../bleachbit/GUI.py:799 msgid "Clean files in the selected operations" msgstr "在选中的操作中清理文件" #: ../bleachbit/GUI.py:890 msgid "Error when checking for updates: " msgstr "检查更新时出错: " #: ../bleachbit/GUI.py:929 msgid "" "Error loading the SQLite module: the antivirus software may be blocking it." msgstr "启动 SQLite 模块错误:可能是杀毒软件把它拦截了。" #: ../bleachbit/GUI.py:932 msgid "" "You are running BleachBit with administrative privileges for cleaning shared " "parts of the system, and references to the user profile folder will clean " "only the root account." msgstr "" #: ../bleachbit/CLI.py:110 #, python-format msgid "not a valid cleaner: %s" msgstr "不是一个有效的清理器:%s" #. TRANSLATORS: This is the command line usage. Don't translate #. %prog, but do translate usage, options, cleaner, and option. #. More information about the command line is here #. https://www.bleachbit.org/documentation/command-line #: ../bleachbit/CLI.py:137 msgid "usage: %prog [options] cleaner.option1 cleaner.option2" msgstr "用法: %prog [选项] 清理器选项1 清理器选项2" #: ../bleachbit/CLI.py:140 msgid "list cleaners" msgstr "列出清理器" #. TRANSLATORS: predefined cleaners are for applications, such as Firefox and Flash. #. This is different than cleaning an arbitrary file, such as a #. spreadsheet on the desktop. #: ../bleachbit/CLI.py:145 msgid "run cleaners to delete files and make other permanent changes" msgstr "" #: ../bleachbit/CLI.py:148 msgid "shred specific files or folders" msgstr "粉碎指定的文件或文件夹" #: ../bleachbit/CLI.py:150 msgid "show system information" msgstr "显示系统信息" #: ../bleachbit/CLI.py:152 msgid "launch the graphical interface" msgstr "运行图形界面" #: ../bleachbit/CLI.py:156 msgid "do not prompt for administrator privileges" msgstr "不要弹出要求管理员权限的对话框" #: ../bleachbit/CLI.py:161 msgid "preview files to be deleted and other changes" msgstr "预览要删除的文件和进行的修改" #: ../bleachbit/CLI.py:163 msgid "use options set in the graphical interface" msgstr "在图形界面中使用选项组" #: ../bleachbit/CLI.py:166 msgid "update winapp2.ini, if a new version is available" msgstr "如果有新版本,则更新 winapp2.ini" #: ../bleachbit/CLI.py:168 msgid "output version information and exit" msgstr "显示版本信息并退出" #: ../bleachbit/CLI.py:170 msgid "overwrite files to hide contents" msgstr "覆盖文件来隐藏内容" #: ../bleachbit/Update.py:83 msgid "New winapp2.ini was downloaded." msgstr "新的 winapp2.ini 已经下载。" #: ../bleachbit/Update.py:128 msgid "Update BleachBit" msgstr "更新 BleachBit" #: ../bleachbit/Update.py:133 msgid "A new version is available." msgstr "有新版本可用。" #. TRANSLATORS: %s expands to version such as '0.8.4' or '0.8.5beta' or #. similar #: ../bleachbit/Update.py:142 #, python-format msgid "Update to version %s" msgstr "更新到版本 %s" #: ../bleachbit/Update.py:167 #, python-format msgid "" "Error when opening a network connection to %s to check for updates. Please " "verify the network is working." msgstr "" #. TRANSLATORS: This indicates an error. The special keyword #. %(operation)s will be replaced by 'firefox' or 'opera' or #. some other cleaner ID. The special keyword %(msg)s will be #. replaced by a message such as 'Permission denied.' #: ../bleachbit/Worker.py:75 #, python-format msgid "Exception while running operation '%(operation)s': '%(msg)s'" msgstr "执行操作'%(operation)s'时出现异常:'%(msg)s'" #. TRANSLATORS: 'free' means 'unallocated' #: ../bleachbit/Worker.py:183 msgid "Please wait. Wiping free disk space." msgstr "请稍等。正在擦除空闲磁盘空间。" #. TRANSLATORS: %s is replaced with Firefox, System, etc. #: ../bleachbit/Worker.py:185 ../bleachbit/Worker.py:324 #, python-format msgid "Please wait. Cleaning %s." msgstr "请稍等,清理 %s." #: ../bleachbit/Worker.py:185 ../bleachbit/Cleaner.py:479 #: ../bleachbit/Cleaner.py:630 msgid "Memory" msgstr "内存" #: ../bleachbit/Worker.py:200 msgid "Please wait. Wiping file system metadata." msgstr "请稍等。正在擦除文件系统元数据。" #: ../bleachbit/Worker.py:203 msgid "Please wait. Cleaning up after wiping file system metadata." msgstr "请稍等。正在处理文件系统元数据擦除的收尾工作。" #: ../bleachbit/Worker.py:206 #, python-format msgid "About %d minute remaining." msgid_plural "About %d minutes remaining." msgstr[0] "还剩约 %d 分钟。" #. TRANSLATORS: This refers to disk space that was #. really recovered (in other words, not a preview) #: ../bleachbit/Worker.py:264 #, python-format msgid "Disk space recovered: %s" msgstr "恢复的磁盘空间: %s" #. TRANSLATORS: This refers to a preview (no real #. changes were made yet) #: ../bleachbit/Worker.py:268 #, python-format msgid "Disk space to be recovered: %s" msgstr "将恢复磁盘空间: %s" #. TRANSLATORS: This refers to the number of files really #. deleted (in other words, not a preview). #: ../bleachbit/Worker.py:273 #, python-format msgid "Files deleted: %d" msgstr "已删除文件: %d" #. TRANSLATORS: This refers to the number of files that #. would be deleted (in other words, simply a preview). #: ../bleachbit/Worker.py:277 #, python-format msgid "Files to be deleted: %d" msgstr "要删除的文件:%d" #: ../bleachbit/Worker.py:280 #, python-format msgid "Special operations: %d" msgstr "特殊操作:%d" #: ../bleachbit/Worker.py:283 #, python-format msgid "Errors: %d" msgstr "错误:%d" #. TRANSLATORS: The "deep scan" feature searches over broad #. areas of the file system such as the user's whole home directory #. or all the system executables. #: ../bleachbit/Worker.py:298 msgid "Please wait. Running deep scan." msgstr "请稍候。正在进行深度扫描。" #. TRANSLATORS: %s is replaced with Firefox, System, etc. #: ../bleachbit/Worker.py:327 #, python-format msgid "Please wait. Previewing %s." msgstr "请稍等。正在使用%s预览。" #: ../bleachbit/Action.py:420 #, python-format msgid "Run external command: %s" msgstr "运行其他程序:%s" #. TRANSLATORS: This is cleaner name for cleaners imported from winapp2.ini #: ../bleachbit/Winapp.py:45 msgid "Applications" msgstr "应用程序" #. TRANSLATORS: This is cleaner name for cleaners imported #. from winapp2.ini #: ../bleachbit/Winapp.py:48 msgid "Internet" msgstr "互联网" #. TRANSLATORS: This is cleaner name for cleaners imported #. from winapp2.ini #: ../bleachbit/Winapp.py:51 msgid "Multimedia" msgstr "多媒体" #. TRANSLATORS: This is cleaner name for cleaners imported #. from winapp2.ini #: ../bleachbit/Winapp.py:54 msgid "Utilities" msgstr "实用工具" #: ../bleachbit/Winapp.py:65 msgid "Games" msgstr "游戏" #: ../bleachbit/Winapp.py:165 msgid "Imported from winapp2.ini" msgstr "已从 winapp2.ini 导入" #: ../bleachbit/Cleaner.py:200 msgid "Crash reports" msgstr "崩溃报告" #: ../bleachbit/Cleaner.py:207 msgid "Session restore" msgstr "会话恢复" #: ../bleachbit/Cleaner.py:208 msgid "Loads the initial session after the browser closes or crashes" msgstr "在浏览器关闭或崩溃后加载最初的会话" #: ../bleachbit/Cleaner.py:210 msgid "Site preferences" msgstr "站点首选项" #: ../bleachbit/Cleaner.py:210 msgid "Settings for individual sites" msgstr "独立站点设置" #. TRANSLATORS: desktop entries are .desktop files in Linux that #. make up the application menu (the menu that shows BleachBit, #. Firefox, and others. The .desktop files also associate file #. types, so clicking on an .html file in Nautilus brings up #. Firefox. #. More information: #. http://standards.freedesktop.org/menu-spec/latest/index.html#introduction #: ../bleachbit/Cleaner.py:456 msgid "Broken desktop files" msgstr "损坏的桌面文件" #: ../bleachbit/Cleaner.py:457 msgid "Delete broken application menu entries and file associations" msgstr "删除损坏的应用程序菜单按钮和文件关联" #. TRANSLATORS: Localizations are files supporting specific #. languages, so applications appear in Spanish, etc. #: ../bleachbit/Cleaner.py:461 msgid "Localizations" msgstr "本地化" #: ../bleachbit/Cleaner.py:462 msgid "Delete files for unwanted languages" msgstr "删除不需要的语言" #: ../bleachbit/Cleaner.py:464 msgid "Configure this option in the preferences." msgstr "在首选项中配置此选项。" #: ../bleachbit/Cleaner.py:470 msgid "Rotated logs" msgstr "循环的日志" #: ../bleachbit/Cleaner.py:470 msgid "Delete old system logs" msgstr "删除陈旧的系统日志" #: ../bleachbit/Cleaner.py:473 msgid "Trash" msgstr "回收站" #: ../bleachbit/Cleaner.py:473 msgid "Empty the trash" msgstr "清空回收站" #. TRANSLATORS: 'free' means 'unallocated' #: ../bleachbit/Cleaner.py:481 msgid "Wipe the swap and free memory" msgstr "擦除页面文件内存并释放内存" #: ../bleachbit/Cleaner.py:483 msgid "This option is experimental and may cause system problems." msgstr "此选项是实验性的,可能造成系统故障。" #: ../bleachbit/Cleaner.py:491 msgid "Memory dump" msgstr "内存转储" #: ../bleachbit/Cleaner.py:491 msgid "Delete the file memory.dmp" msgstr "删除 memory.dmp 文件" #. TRANSLATORS: Prefetch is Microsoft Windows jargon. #: ../bleachbit/Cleaner.py:494 msgid "Prefetch" msgstr "预读" #: ../bleachbit/Cleaner.py:496 msgid "Recycle bin" msgstr "回收站" #: ../bleachbit/Cleaner.py:496 ../bleachbit/Cleaner.py:780 msgid "Empty the recycle bin" msgstr "清空回收站" #. TRANSLATORS: 'Update' is a noun, and 'Update uninstallers' is an option to delete #. the uninstallers for software updates. #: ../bleachbit/Cleaner.py:499 msgid "Update uninstallers" msgstr "更新卸载程序" #: ../bleachbit/Cleaner.py:500 msgid "" "Delete uninstallers for Microsoft updates including hotfixes, service packs, " "and Internet Explorer updates" msgstr "删除 Microsoft 更新(修复补丁、服务包和 IE 更新)的卸载程序" #: ../bleachbit/Cleaner.py:507 ../bleachbit/Cleaner.py:723 msgid "Clipboard" msgstr "剪贴板" #: ../bleachbit/Cleaner.py:508 msgid "" "The desktop environment's clipboard used for copy and paste operations" msgstr "桌面环境的剪切板应用于复制粘贴工作" #. TRANSLATORS: "Custom" is an option allowing the user to specify which #. files and folders will be erased. #: ../bleachbit/Cleaner.py:515 ../bleachbit/GuiPreferences.py:66 msgid "Custom" msgstr "自定义" #: ../bleachbit/Cleaner.py:516 msgid "Delete user-specified files and folders" msgstr "删除用户指定的文件和文件夹" #. TRANSLATORS: 'free' means 'unallocated' #: ../bleachbit/Cleaner.py:518 msgid "Free disk space" msgstr "释放磁盘空间" #. TRANSLATORS: 'free' means 'unallocated' #: ../bleachbit/Cleaner.py:520 msgid "Overwrite free disk space to hide deleted files" msgstr "覆盖空闲的磁盘空间以隐藏已删除的文件" #: ../bleachbit/Cleaner.py:521 msgid "This option is very slow." msgstr "使用这一选项后会很慢。" #: ../bleachbit/Cleaner.py:525 msgid "The system in general" msgstr "系统通用" #: ../bleachbit/Cleaner.py:527 ../bleachbit/Cleaner.py:850 msgid "System" msgstr "系统" #. TRANSLATORS: 'Free' means 'unallocated.' #. %s expands to a path such as C:\ or /tmp/ #: ../bleachbit/Cleaner.py:731 ../bleachbit/Cleaner.py:883 #, python-format msgid "Overwrite free disk space %s" msgstr "在%s处覆盖空闲的磁盘" #: ../bleachbit/GuiPreferences.py:64 msgid "General" msgstr "常规" #: ../bleachbit/GuiPreferences.py:67 msgid "Drives" msgstr "驱动" #: ../bleachbit/GuiPreferences.py:70 msgid "Languages" msgstr "语言" #: ../bleachbit/GuiPreferences.py:72 msgid "Whitelist" msgstr "白名单" #: ../bleachbit/GuiPreferences.py:117 msgid "Check periodically for software updates via the Internet" msgstr "通过因特网周期性检查软件更新" #: ../bleachbit/GuiPreferences.py:122 msgid "" "If an update is found, you will be given the option to view information " "about it. Then, you may manually download and install the update." msgstr "如果找到更新,你会得到观看详情的选项。然后你可以手动地下载和安装更新。" #: ../bleachbit/GuiPreferences.py:128 msgid "Check for new beta releases" msgstr "检查新的测试版" #: ../bleachbit/GuiPreferences.py:137 msgid "Download and update cleaners from community (winapp2.ini)" msgstr "下载和更新来自社区的清理器 (winapp2.ini)" #. TRANSLATORS: This means to hide cleaners which would do #. nothing. For example, if Firefox were never used on #. this system, this option would hide Firefox to simplify #. the list of cleaners. #: ../bleachbit/GuiPreferences.py:151 msgid "Hide irrelevant cleaners" msgstr "隐藏不适合当前系统的清理规则" #. TRANSLATORS: Overwriting is the same as shredding. It is a way #. to prevent recovery of the data. You could also translate #. 'Shred files to prevent recovery.' #: ../bleachbit/GuiPreferences.py:159 msgid "Overwrite contents of files to prevent recovery" msgstr "覆盖文件内容以防被恢复" #: ../bleachbit/GuiPreferences.py:163 msgid "" "Overwriting is ineffective on some file systems and with certain BleachBit " "operations. Overwriting is significantly slower." msgstr "在某些文件系统和 BleachBit 操作中,覆盖文件并不有效。覆盖操作很慢。" #: ../bleachbit/GuiPreferences.py:166 msgid "Start BleachBit with computer" msgstr "开机启动 BleachBit" #: ../bleachbit/GuiPreferences.py:172 msgid "Exit after cleaning" msgstr "清理完成后退出" #: ../bleachbit/GuiPreferences.py:178 msgid "Confirm before delete" msgstr "删除前确认" #: ../bleachbit/GuiPreferences.py:186 msgid "Use IEC sizes (1 KiB = 1024 bytes) instead of SI (1 kB = 1000 bytes)" msgstr "文件大小使用 IEC 单位(1 KiB = 1024 B)而非 SI 单位(1 kB = 1000 B)" #: ../bleachbit/GuiPreferences.py:221 msgid "" "Choose a writable folder for each drive for which to overwrite free space." msgstr "为每个驱动器选择一个可写的文件夹用来重写可用空间。" #. TRANSLATORS: In the preferences dialog, this button adds a path to #. the list of paths #: ../bleachbit/GuiPreferences.py:243 msgctxt "button" msgid "Add" msgstr "添加" #. TRANSLATORS: In the preferences dialog, this button removes a path #. from the list of paths #: ../bleachbit/GuiPreferences.py:247 ../bleachbit/GuiPreferences.py:458 msgctxt "button" msgid "Remove" msgstr "移除" #: ../bleachbit/GuiPreferences.py:272 msgid "All languages will be deleted except those checked." msgstr "除了那些被检查的所有语言将被删除。" #: ../bleachbit/GuiPreferences.py:288 msgid "Preserve" msgstr "预留" #: ../bleachbit/GuiPreferences.py:292 msgid "Code" msgstr "代码" #: ../bleachbit/GuiPreferences.py:313 ../bleachbit/GuiPreferences.py:354 msgid "Choose a file" msgstr "选择一个文件" #: ../bleachbit/GuiPreferences.py:320 ../bleachbit/GuiPreferences.py:361 #: ../bleachbit/GuiPreferences.py:405 msgid "File" msgstr "文件" #: ../bleachbit/GuiPreferences.py:334 ../bleachbit/GuiPreferences.py:375 #: ../bleachbit/GuiPreferences.py:407 msgid "Folder" msgstr "文件夹" #: ../bleachbit/GuiPreferences.py:417 msgid "Theses paths will not be deleted or modified." msgstr "将不会删除或修改这些位置" #: ../bleachbit/GuiPreferences.py:420 msgid "These locations can be selected for deletion." msgstr "这些被选中的位置将会被删除。" #: ../bleachbit/GuiPreferences.py:428 msgid "Type" msgstr "类型" #. TRANSLATORS: In the tree view "Path" is used generically to refer to a #. file, a folder, or a pattern describing either #: ../bleachbit/GuiPreferences.py:434 msgid "Path" msgstr "路径" #: ../bleachbit/GuiPreferences.py:446 msgctxt "button" msgid "Add file" msgstr "添加文件" #: ../bleachbit/GuiPreferences.py:452 msgctxt "button" msgid "Add folder" msgstr "添加文件夹" bleachbit-2.0/po/si.po0000644000175000017500000010137013245436307012774 0ustar hlehle# Sinhalese translation for bleachbit # Copyright (c) 2011 Rosetta Contributors and Canonical Ltd 2011 # This file is distributed under the same license as the bleachbit package. # FIRST AUTHOR , 2011. # msgid "" msgstr "" "Project-Id-Version: bleachbit\n" "Report-Msgid-Bugs-To: FULL NAME \n" "POT-Creation-Date: 2011-05-23 12:10-0600\n" "PO-Revision-Date: 2011-06-06 00:35+0000\n" "Last-Translator: Manoj Prasanna Handapangoda \n" "Language-Team: Sinhalese \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n != 1;\n" "X-Launchpad-Export-Date: 2011-06-11 03:00+0000\n" "X-Generator: Launchpad (build 13175)\n" #: ../cleaners/tremulous.xml ../cleaners/gl-117.xml ../cleaners/nexuiz.xml #: ../cleaners/hippo_opensim_viewer.xml ../cleaners/secondlife_viewer.xml msgid "Game" msgstr "ක්‍රීඩා" #: ../cleaners/tremulous.xml ../cleaners/chromium.xml ../cleaners/miro.xml #: ../cleaners/audacious.xml ../cleaners/xine.xml ../cleaners/kde.xml #: ../cleaners/pidgin.xml ../cleaners/seamonkey.xml ../cleaners/liferea.xml #: ../cleaners/beagle.xml ../cleaners/opera.xml ../cleaners/rhythmbox.xml #: ../cleaners/epiphany.xml ../cleaners/transmission.xml #: ../cleaners/nexuiz.xml ../cleaners/hippo_opensim_viewer.xml #: ../cleaners/vuze.xml ../cleaners/evolution.xml ../cleaners/exaile.xml #: ../cleaners/google_chrome.xml ../cleaners/emesene.xml ../cleaners/amsn.xml #: ../cleaners/yahoo_messenger.xml ../cleaners/thumbnails.xml #: ../cleaners/safari.xml ../cleaners/java.xml ../cleaners/flash.xml #: ../cleaners/thunderbird.xml ../cleaners/adobe_reader.xml #: ../cleaners/gftp.xml ../cleaners/gpodder.xml #: ../cleaners/secondlife_viewer.xml ../bleachbit/Cleaner.py:187 #: ../bleachbit/Cleaner.py:297 ../bleachbit/Cleaner.py:364 msgid "Cache" msgstr "" #: ../cleaners/tremulous.xml msgid "Delete the list of game servers" msgstr "" #: ../cleaners/yum.xml ../cleaners/miro.xml ../cleaners/audacious.xml #: ../cleaners/xine.xml ../cleaners/kde.xml ../cleaners/pidgin.xml #: ../cleaners/liferea.xml ../cleaners/beagle.xml ../cleaners/rhythmbox.xml #: ../cleaners/transmission.xml ../cleaners/nexuiz.xml ../cleaners/apt.xml #: ../cleaners/hippo_opensim_viewer.xml ../cleaners/vuze.xml #: ../cleaners/evolution.xml ../cleaners/exaile.xml ../cleaners/amsn.xml #: ../cleaners/yahoo_messenger.xml ../cleaners/thumbnails.xml #: ../cleaners/java.xml ../cleaners/windows_explorer.xml ../cleaners/flash.xml #: ../cleaners/adobe_reader.xml ../cleaners/gftp.xml ../cleaners/gpodder.xml #: ../cleaners/secondlife_viewer.xml ../bleachbit/Cleaner.py:297 #: ../bleachbit/Cleaner.py:364 ../bleachbit/Cleaner.py:384 #: ../bleachbit/Cleaner.py:386 msgid "Delete the cache" msgstr "" #. TRANSLATORS: Vacuum is a verb. The term is jargon #. from the SQLite database. Microsoft Access uses #. the term 'Compact Database' (which you may translate #. instead). Another synonym is 'defragment.' #: ../cleaners/yum.xml ../cleaners/chromium.xml ../cleaners/liferea.xml #: ../cleaners/firefox_vacuum.xml ../cleaners/google_chrome.xml #: ../cleaners/safari.xml ../cleaners/thunderbird.xml ../cleaners/gpodder.xml #: ../bleachbit/Cleaner.py:197 ../bleachbit/Cleaner.py:287 #: ../bleachbit/Action.py:285 msgid "Vacuum" msgstr "" #: ../cleaners/yum.xml ../cleaners/chromium.xml ../cleaners/liferea.xml #: ../cleaners/firefox_vacuum.xml ../cleaners/google_chrome.xml #: ../cleaners/safari.xml ../cleaners/thunderbird.xml ../cleaners/gpodder.xml #: ../bleachbit/Cleaner.py:197 msgid "" "Clean database fragmentation to reduce space and improve speed without " "removing any data" msgstr "" #: ../cleaners/chromium.xml ../cleaners/internet_explorer.xml #: ../cleaners/seamonkey.xml ../cleaners/opera.xml ../cleaners/epiphany.xml #: ../cleaners/firefox_vacuum.xml ../cleaners/google_chrome.xml #: ../cleaners/safari.xml ../cleaners/links2.xml ../cleaners/elinks.xml #: ../cleaners/konqueror.xml ../bleachbit/Cleaner.py:210 msgid "Web browser" msgstr "" #: ../cleaners/chromium.xml ../cleaners/seamonkey.xml ../cleaners/opera.xml #: ../cleaners/epiphany.xml ../cleaners/google_chrome.xml #: ../cleaners/safari.xml ../cleaners/thunderbird.xml #: ../bleachbit/Cleaner.py:187 msgid "Delete the web cache, which reduces time to display revisited pages" msgstr "" #: ../cleaners/chromium.xml ../cleaners/internet_explorer.xml #: ../cleaners/seamonkey.xml ../cleaners/liferea.xml ../cleaners/opera.xml #: ../cleaners/epiphany.xml ../cleaners/google_chrome.xml #: ../cleaners/safari.xml ../cleaners/flash.xml ../cleaners/thunderbird.xml #: ../cleaners/konqueror.xml ../cleaners/realplayer.xml #: ../cleaners/silverlight.xml ../bleachbit/Cleaner.py:188 msgid "Cookies" msgstr "" #: ../cleaners/chromium.xml ../cleaners/internet_explorer.xml #: ../cleaners/seamonkey.xml ../cleaners/liferea.xml ../cleaners/opera.xml #: ../cleaners/epiphany.xml ../cleaners/google_chrome.xml #: ../cleaners/safari.xml ../cleaners/flash.xml ../cleaners/thunderbird.xml #: ../cleaners/konqueror.xml ../cleaners/realplayer.xml #: ../cleaners/silverlight.xml ../bleachbit/Cleaner.py:188 msgid "" "Delete cookies, which contain information such as web site preferences, " "authentication, and tracking identification" msgstr "" #. TRANSLATORS: DOM = Document Object Model. #: ../cleaners/chromium.xml ../cleaners/opera.xml #: ../cleaners/google_chrome.xml ../bleachbit/Cleaner.py:190 msgid "DOM Storage" msgstr "" #: ../cleaners/chromium.xml ../cleaners/opera.xml #: ../cleaners/google_chrome.xml ../bleachbit/Cleaner.py:190 msgid "Delete HTML5 cookies" msgstr "" #: ../cleaners/chromium.xml ../cleaners/internet_explorer.xml #: ../cleaners/google_chrome.xml ../bleachbit/Cleaner.py:192 msgid "Form history" msgstr "" #: ../cleaners/chromium.xml ../cleaners/google_chrome.xml msgid "A history of forms entered in web sites" msgstr "" #: ../cleaners/chromium.xml ../cleaners/d4x.xml ../cleaners/vim.xml #: ../cleaners/internet_explorer.xml ../cleaners/mc.xml #: ../cleaners/seamonkey.xml ../cleaners/windows_defender.xml #: ../cleaners/google_chrome.xml ../cleaners/nautilus.xml #: ../cleaners/safari.xml ../cleaners/bash.xml ../cleaners/links2.xml #: ../cleaners/elinks.xml ../cleaners/tortoisesvn.xml #: ../cleaners/realplayer.xml msgid "History" msgstr "" #: ../cleaners/chromium.xml ../cleaners/google_chrome.xml msgid "" "Delete the history which includes visited sites, downloads, and thumbnails" msgstr "" #: ../cleaners/chromium.xml ../cleaners/google_chrome.xml msgid "Search engines" msgstr "" #. 'Factory' means a search engine that is installed by default 'from the factory,' but this is different than a 'default search engine' https://lists.launchpad.net/launchpad-translators/msg00283.html #: ../cleaners/chromium.xml ../cleaners/google_chrome.xml msgid "" "Reset the search engine usage history and delete non-factory search engines, " "some of which are added automatically" msgstr "" #: ../cleaners/chromium.xml ../cleaners/opera.xml ../cleaners/konqueror.xml msgid "Current session" msgstr "" #: ../cleaners/chromium.xml ../cleaners/opera.xml ../cleaners/konqueror.xml msgid "Delete the current session" msgstr "" #: ../cleaners/d4x.xml ../cleaners/mc.xml ../cleaners/nautilus.xml #: ../cleaners/gnome.xml ../cleaners/links2.xml ../cleaners/tortoisesvn.xml #: ../cleaners/realplayer.xml ../bleachbit/Cleaner.py:277 #: ../bleachbit/Cleaner.py:348 msgid "Delete the usage history" msgstr "" #: ../cleaners/vim.xml ../cleaners/gedit.xml msgid "Editor" msgstr "" #: ../cleaners/vim.xml msgid "" "Delete ~/.viminfo which includes file history, command history, and buffers" msgstr "" #: ../cleaners/miro.xml ../cleaners/xine.xml ../cleaners/flash.xml msgid "Multimedia viewer" msgstr "" #: ../cleaners/miro.xml ../cleaners/audacious.xml ../cleaners/screenlets.xml #: ../cleaners/hippo_opensim_viewer.xml ../cleaners/vuze.xml #: ../cleaners/exaile.xml ../cleaners/easytag.xml #: ../cleaners/yahoo_messenger.xml ../cleaners/teamviewer.xml #: ../cleaners/gftp.xml ../cleaners/amule.xml ../cleaners/realplayer.xml #: ../bleachbit/Cleaner.py:382 msgid "Logs" msgstr "" #: ../cleaners/miro.xml ../cleaners/audacious.xml ../cleaners/screenlets.xml #: ../cleaners/hippo_opensim_viewer.xml ../cleaners/vuze.xml #: ../cleaners/exaile.xml ../cleaners/yahoo_messenger.xml #: ../cleaners/teamviewer.xml ../cleaners/gftp.xml ../cleaners/amule.xml #: ../cleaners/realplayer.xml ../bleachbit/Cleaner.py:382 msgid "Delete the logs" msgstr "" #: ../cleaners/gl-117.xml ../cleaners/beagle.xml ../cleaners/x11.xml #: ../cleaners/microsoft_office.xml ../cleaners/secondlife_viewer.xml msgid "Debug logs" msgstr "" #: ../cleaners/gl-117.xml ../cleaners/beagle.xml ../cleaners/x11.xml #: ../cleaners/microsoft_office.xml ../cleaners/easytag.xml #: ../cleaners/secondlife_viewer.xml msgid "Delete the debug logs" msgstr "" #: ../cleaners/internet_explorer.xml ../bleachbit/Cleaner.py:192 msgid "A history of forms entered in web sites and in the Search bar" msgstr "" #: ../cleaners/internet_explorer.xml ../cleaners/opera.xml #: ../cleaners/safari.xml ../cleaners/konqueror.xml #: ../bleachbit/Cleaner.py:196 msgid "List of visited web pages" msgstr "" #: ../cleaners/internet_explorer.xml ../cleaners/kde.xml ../cleaners/vuze.xml #: ../cleaners/deepscan.xml ../cleaners/gimp.xml ../cleaners/google_earth.xml #: ../cleaners/adobe_reader.xml ../cleaners/amule.xml #: ../cleaners/winetricks.xml ../cleaners/wine.xml ../bleachbit/Cleaner.py:398 msgid "Temporary files" msgstr "" #: ../cleaners/internet_explorer.xml ../cleaners/kde.xml ../cleaners/vuze.xml #: ../cleaners/deepscan.xml ../cleaners/gimp.xml ../cleaners/google_earth.xml #: ../cleaners/adobe_reader.xml ../cleaners/amule.xml #: ../cleaners/winetricks.xml ../cleaners/wine.xml ../bleachbit/Cleaner.py:398 msgid "Delete the temporary files" msgstr "" #: ../cleaners/audacious.xml ../cleaners/filezilla.xml ../cleaners/winrar.xml #: ../cleaners/wordpad.xml ../cleaners/winamp.xml #: ../cleaners/windows_media_player.xml ../cleaners/microsoft_office.xml #: ../cleaners/winzip.xml ../cleaners/vlc.xml ../cleaners/windows_explorer.xml #: ../cleaners/teamviewer.xml ../cleaners/adobe_reader.xml #: ../cleaners/paint.xml ../bleachbit/Cleaner.py:298 msgid "Most recently used" msgstr "" #: ../cleaners/audacious.xml ../cleaners/kde.xml ../cleaners/filezilla.xml #: ../cleaners/gwenview.xml ../cleaners/gedit.xml #: ../cleaners/windows_explorer.xml ../cleaners/adobe_reader.xml #: ../bleachbit/Cleaner.py:298 ../bleachbit/Cleaner.py:374 msgid "Delete the list of recently used documents" msgstr "" #: ../cleaners/kde.xml ../cleaners/gwenview.xml ../cleaners/gedit.xml #: ../cleaners/windows_explorer.xml ../bleachbit/Cleaner.py:374 msgid "Recent documents list" msgstr "" #: ../cleaners/pidgin.xml ../cleaners/xchat.xml ../cleaners/emesene.xml #: ../cleaners/amsn.xml ../cleaners/yahoo_messenger.xml msgid "Chat client" msgstr "" #: ../cleaners/pidgin.xml ../cleaners/seamonkey.xml ../cleaners/xchat.xml #: ../cleaners/emesene.xml ../cleaners/amsn.xml #: ../cleaners/yahoo_messenger.xml ../cleaners/skype.xml msgid "Chat logs" msgstr "" #: ../cleaners/pidgin.xml ../cleaners/seamonkey.xml ../cleaners/xchat.xml #: ../cleaners/emesene.xml ../cleaners/amsn.xml #: ../cleaners/yahoo_messenger.xml ../cleaners/skype.xml msgid "Delete the chat logs" msgstr "" #: ../cleaners/seamonkey.xml msgid "Delete the list of visited web pages" msgstr "" #: ../cleaners/screenlets.xml msgid "Widgets for the desktop" msgstr "" #: ../cleaners/beagle.xml ../cleaners/recoll.xml msgid "Search tool" msgstr "" #: ../cleaners/beagle.xml msgid "Search indexes" msgstr "" #: ../cleaners/beagle.xml msgid "Delete the search indexes" msgstr "" #: ../cleaners/filezilla.xml ../cleaners/transmission.xml ../cleaners/vuze.xml #: ../cleaners/gftp.xml ../cleaners/amule.xml msgid "File transfer client" msgstr "" #: ../cleaners/windows_defender.xml ../cleaners/deepscan.xml msgid "Delete the files" msgstr "" #: ../cleaners/opera.xml ../bleachbit/Cleaner.py:191 msgid "Download history" msgstr "" #: ../cleaners/opera.xml ../bleachbit/Cleaner.py:191 msgid "List of files downloaded" msgstr "" #: ../cleaners/opera.xml ../cleaners/google_toolbar.xml ../cleaners/gnome.xml #: ../cleaners/windows_explorer.xml msgid "Search history" msgstr "" #: ../cleaners/opera.xml ../cleaners/google_toolbar.xml ../cleaners/gnome.xml #: ../cleaners/windows_explorer.xml msgid "Delete the search history" msgstr "" #: ../cleaners/opera.xml ../cleaners/konqueror.xml ../bleachbit/Cleaner.py:196 msgid "URL history" msgstr "" #: ../cleaners/winrar.xml ../cleaners/wordpad.xml ../cleaners/winamp.xml #: ../cleaners/windows_media_player.xml ../cleaners/microsoft_office.xml #: ../cleaners/winzip.xml ../cleaners/vlc.xml ../cleaners/windows_explorer.xml #: ../cleaners/teamviewer.xml ../cleaners/paint.xml msgid "Delete the most recently used list" msgstr "" #: ../cleaners/epiphany.xml ../cleaners/thunderbird.xml #: ../bleachbit/Cleaner.py:195 msgid "Passwords" msgstr "" #: ../cleaners/epiphany.xml ../cleaners/thunderbird.xml #: ../bleachbit/Cleaner.py:195 msgid "" "A database of usernames and passwords as well as a list of sites that should " "not store passwords" msgstr "" #: ../cleaners/epiphany.xml msgid "Places" msgstr "ස්ථාන" #: ../cleaners/epiphany.xml msgid "" "A database of URLs including bookmarks, favicons, and a history of visited " "web sites" msgstr "" #: ../cleaners/epiphany.xml msgid "This option deletes all bookmarks." msgstr "" #: ../cleaners/microsoft_office.xml ../bleachbit/Cleaner.py:308 msgid "Office suite" msgstr "" #: ../cleaners/apt.xml msgid "Delete obsolete files" msgstr "" #: ../cleaners/vuze.xml ../cleaners/deepscan.xml msgid "Backup files" msgstr "ලිපි ගොනු උපස්ථකිරීම" #: ../cleaners/vuze.xml ../cleaners/deepscan.xml msgid "Delete the backup files" msgstr "" #: ../cleaners/exaile.xml msgid "Downloaded podcasts" msgstr "" #: ../cleaners/exaile.xml msgid "Delete downloaded podcasts" msgstr "" #: ../cleaners/google_chrome.xml msgid "Session" msgstr "සැසිය" #: ../cleaners/google_chrome.xml msgid "Delete the current and last sessions" msgstr "" #: ../cleaners/emesene.xml msgid "Delete the avatars and emoticons cache" msgstr "" #: ../cleaners/deepscan.xml msgid "Deep scan" msgstr "" #: ../cleaners/deepscan.xml msgid "Inspect the preview for any files you want to keep." msgstr "" #: ../cleaners/deepscan.xml msgid "This option is slow." msgstr "" #: ../cleaners/nautilus.xml msgid "Custom folders will be reset." msgstr "" #: ../cleaners/thumbnails.xml ../cleaners/windows_explorer.xml msgid "Thumbnails" msgstr "" #: ../cleaners/bash.xml msgid "Delete the command history" msgstr "" #. In GNOME 'Run' is the dialog shown when typing ALT+F2' #. In Windows 'Run' is the dialog in the Start menu #: ../cleaners/gnome.xml ../cleaners/windows_explorer.xml msgid "Run" msgstr "" #: ../cleaners/elinks.xml msgid "Delete the cookies, visited URLs, and search history" msgstr "" #: ../cleaners/recoll.xml msgid "Index" msgstr "පටුන" #: ../cleaners/recoll.xml msgid "" "Delete the search index, a database of words and the files they contain" msgstr "" #: ../bleachbit.desktop msgid "Unnecessary file cleaner" msgstr "" #: ../bleachbit.desktop msgid "Free space and maintain privacy" msgstr "" #. TRANSLATORS: This is the label in the log indicating was #. skipped because it matches the whitelist #: ../bleachbit/Command.py:46 msgid "Skip" msgstr "මගහරින්න" #. TRANSLATORS: This is the label in the log indicating will be #. deleted (for previews) or was actually deleted #: ../bleachbit/Command.py:73 ../bleachbit/GUI.py:585 msgid "Delete" msgstr "ඉවත් කරන්න" #. TRANSLATORS: The file will be deleted when the #. system reboots #: ../bleachbit/Command.py:93 msgid "Mark for deletion" msgstr "" #. TRANSLATORS: Parts of this file will be deleted #: ../bleachbit/Command.py:182 ../bleachbit/Command.py:212 #: ../bleachbit/Action.py:203 ../bleachbit/Action.py:215 msgid "Clean file" msgstr "" #. TRANSLATORS: The file will be truncated to 0 bytes in length #: ../bleachbit/Command.py:249 msgid "Truncate" msgstr "හිස් කිරීම" #: ../bleachbit/Command.py:288 msgid "Delete registry key" msgstr "" #: ../bleachbit/Unix.py:364 ../bleachbit/Unix.py:394 ../bleachbit/Unix.py:574 #, python-format msgid "Executable not found: %s" msgstr "" #. TRANSLATORS: %s expands to a name such as 'Firefox' or 'System'. #: ../bleachbit/Unix.py:571 ../bleachbit/Worker.py:131 #, python-format msgid "" "%s cannot be cleaned because it is currently running. Close it, and try " "again." msgstr "" #: ../bleachbit/GuiBasic.py:113 msgid "Delete confirmation" msgstr "" #: ../bleachbit/GuiBasic.py:121 msgid "" "Are you sure you want to permanently delete files according to the selected " "operations? The actual files that will be deleted may have changed since " "you ran the preview." msgstr "" #: ../bleachbit/GuiBasic.py:123 msgid "Are you sure you want to permanently delete these files?" msgstr "" #: ../bleachbit/GuiBasic.py:159 #, python-format msgid "" "Because you are running as root, please manually open this link in a web " "browser:\n" "%s" msgstr "" #. TRANSLATORS: %s expands to bleachbit.sourceforge.net or similar #: ../bleachbit/GuiBasic.py:171 #, python-format msgid "Open web browser to %s?" msgstr "" #. TRANSLATORS: This is cleaner name for cleaners imported from winapp2.ini #: ../bleachbit/Winapp.py:45 msgid "Applications" msgstr "මෘදුකාංග" #. TRANSLATORS: This is cleaner name for cleaners imported from winapp2.ini #: ../bleachbit/Winapp.py:47 ../bleachbit/Winapp.py:54 #: ../bleachbit/Winapp.py:55 ../bleachbit/Winapp.py:56 msgid "Internet" msgstr "අන්තර්ජාලය" #. TRANSLATORS: This is cleaner name for cleaners imported from winapp2.ini #: ../bleachbit/Winapp.py:49 msgid "Multimedia" msgstr "බහුමාධ්‍යය" #. TRANSLATORS: This is cleaner name for cleaners imported from winapp2.ini #: ../bleachbit/Winapp.py:51 msgid "Utilities" msgstr "උපයෝග" #. TRANSLATORS: This is cleaner name for cleaners imported from winapp2.ini. #: ../bleachbit/Winapp.py:53 msgid "Microsoft Windows" msgstr "" #: ../bleachbit/Winapp.py:87 msgid "Imported from winapp2.ini" msgstr "" #: ../bleachbit/Cleaner.py:193 msgid "Session restore" msgstr "" #: ../bleachbit/Cleaner.py:193 msgid "Loads the initial session after the browser closes or crashes" msgstr "" #: ../bleachbit/Cleaner.py:194 msgid "Site preferences" msgstr "" #: ../bleachbit/Cleaner.py:194 msgid "Settings for individual sites" msgstr "" #. TRANSLATORS: desktop entries are .desktop files in Linux tha #. make up the application menu (the menu that shows BleachBit, #. Firefox, and others. The .desktop files also associate file #. types, so clicking on an .html file in Nautilus brings up #. Firefox. #. More information: http://standards.freedesktop.org/menu-spec/latest/index.html#introduction #: ../bleachbit/Cleaner.py:363 msgid "Broken desktop files" msgstr "" #: ../bleachbit/Cleaner.py:363 msgid "Delete broken application menu entries and file associations" msgstr "" #. TRANSLATORS: Localizations are files supporting specific #. languages, so applications appear in Spanish, etc. #: ../bleachbit/Cleaner.py:367 msgid "Localizations" msgstr "" #: ../bleachbit/Cleaner.py:367 msgid "Delete files for unwanted languages" msgstr "" #: ../bleachbit/Cleaner.py:368 msgid "Configure this option in the preferences." msgstr "" #. TRANSLATORS: 'Rotated logs' refers to old system log files. #. Linux systems often have a scheduled job to rotate the logs #. which means compress all except the newest log and then delete #. the oldest log. You could translate this 'old logs.' #: ../bleachbit/Cleaner.py:373 msgid "Rotated logs" msgstr "" #: ../bleachbit/Cleaner.py:373 msgid "Delete old system logs" msgstr "" #: ../bleachbit/Cleaner.py:375 msgid "Trash" msgstr "ඉවතලන බහලුම" #: ../bleachbit/Cleaner.py:375 msgid "Empty the trash" msgstr "" #: ../bleachbit/Cleaner.py:377 ../bleachbit/Cleaner.py:483 #: ../bleachbit/Worker.py:210 msgid "Memory" msgstr "මතකය" #. TRANSLATORS: 'free' means 'unallocated' #: ../bleachbit/Cleaner.py:379 msgid "Wipe the swap and free memory" msgstr "" #: ../bleachbit/Cleaner.py:380 msgid "This option is experimental and may cause system problems." msgstr "" #: ../bleachbit/Cleaner.py:383 msgid "Memory dump" msgstr "" #: ../bleachbit/Cleaner.py:383 msgid "Delete the file memory.dmp" msgstr "" #. TRANSLATORS: Prefetch is Microsoft Windows jargon. #: ../bleachbit/Cleaner.py:386 msgid "Prefetch" msgstr "" #: ../bleachbit/Cleaner.py:387 msgid "Recycle bin" msgstr "" #: ../bleachbit/Cleaner.py:387 msgid "Empty the recycle bin" msgstr "" #. TRANSLATORS: 'Update' is a noun, and 'Update uninstallers' is an option to delete #. the uninstallers for software updates. #: ../bleachbit/Cleaner.py:390 msgid "Update uninstallers" msgstr "" #: ../bleachbit/Cleaner.py:390 msgid "" "Delete uninstallers for Microsoft updates including hotfixes, service packs, " "and Internet Explorer updates" msgstr "" #: ../bleachbit/Cleaner.py:392 ../bleachbit/Cleaner.py:565 msgid "Clipboard" msgstr "" #: ../bleachbit/Cleaner.py:392 msgid "" "The desktop environment's clipboard used for copy and paste operations" msgstr "" #. TRANSLATORS: 'free' means 'unallocated' #: ../bleachbit/Cleaner.py:394 msgid "Free disk space" msgstr "" #. TRANSLATORS: 'free' means 'unallocated' #: ../bleachbit/Cleaner.py:396 msgid "Overwrite free disk space to hide deleted files" msgstr "" #: ../bleachbit/Cleaner.py:397 msgid "This option is very slow." msgstr "" #: ../bleachbit/Cleaner.py:401 msgid "The system in general" msgstr "" #: ../bleachbit/Cleaner.py:407 ../bleachbit/Cleaner.py:659 msgid "System" msgstr "පද්ධතිය" #. TRANSLATORS: 'Free' means 'unallocated.' #. %s expands to a path such as C:\ or /tmp/ #: ../bleachbit/Cleaner.py:591 ../bleachbit/Cleaner.py:684 #, python-format msgid "Overwrite free disk space %s" msgstr "" #. TRANSLATORS: %s expands to a drive letter such as C:\ or D:\ #: ../bleachbit/Cleaner.py:619 #, python-format msgid "Recycle bin %s" msgstr "" #: ../bleachbit/GuiPreferences.py:52 ../bleachbit/GUI.py:637 msgid "Preferences" msgstr "අභිරුචි" #: ../bleachbit/GuiPreferences.py:58 msgid "General" msgstr "සාමාන්‍ය" #: ../bleachbit/GuiPreferences.py:59 msgid "Drives" msgstr "" #: ../bleachbit/GuiPreferences.py:61 msgid "Languages" msgstr "භාෂා" #: ../bleachbit/GuiPreferences.py:62 msgid "Whitelist" msgstr "" #: ../bleachbit/GuiPreferences.py:105 msgid "Check periodically for software updates via the Internet" msgstr "" #: ../bleachbit/GuiPreferences.py:108 msgid "" "If an update is found, you will be given the option to view information " "about it. Then, you may manually download and install the update." msgstr "" #: ../bleachbit/GuiPreferences.py:114 msgid "Check for new beta releases" msgstr "" #: ../bleachbit/GuiPreferences.py:121 msgid "Download and update cleaners from community (winapp2.ini)" msgstr "" #. TRANSLATORS: This means to hide cleaners which would do #. nothing. For example, if Firefox were never used on #. this system, this option would hide Firefox to simplify #. the list of cleaners. #: ../bleachbit/GuiPreferences.py:133 msgid "Hide irrelevant cleaners" msgstr "" #. TRANSLATORS: Overwriting is the same as shredding. It is a way #. to prevent recovery of the data. You could also translate #. 'Shred files to prevent recovery.' #: ../bleachbit/GuiPreferences.py:141 msgid "Overwrite files to hide contents" msgstr "" #: ../bleachbit/GuiPreferences.py:144 msgid "" "Overwriting is ineffective on some file systems and with certain BleachBit " "operations. Overwriting is significantly slower." msgstr "" #: ../bleachbit/GuiPreferences.py:147 msgid "Start BleachBit with computer" msgstr "" #: ../bleachbit/GuiPreferences.py:158 ../bleachbit/GuiPreferences.py:289 #: ../bleachbit/GUI.py:547 msgid "Choose a folder" msgstr "බහලුමක් තෝරන්න" #. TRANSLATORS: 'free' means 'unallocated' #: ../bleachbit/GuiPreferences.py:183 msgid "" "Choose a writable folder for each drive for which to overwrite free space." msgstr "" #. TRANSLATORS: In the preferences dialog, this button adds a path to the list of paths #: ../bleachbit/GuiPreferences.py:204 msgctxt "button" msgid "Add" msgstr "එකතු කරන්න" #. TRANSLATORS: In the preferences dialog, this button removes a path from the list of paths #: ../bleachbit/GuiPreferences.py:207 ../bleachbit/GuiPreferences.py:367 msgctxt "button" msgid "Remove" msgstr "" #: ../bleachbit/GuiPreferences.py:232 msgid "All languages will be deleted except those checked." msgstr "" #: ../bleachbit/GuiPreferences.py:249 msgid "Preserve" msgstr "" #: ../bleachbit/GuiPreferences.py:253 msgid "Code" msgstr "" #: ../bleachbit/GuiPreferences.py:257 ../bleachbit/GUI.py:136 msgid "Name" msgstr "නම" #: ../bleachbit/GuiPreferences.py:275 msgid "Choose a file" msgstr "" #: ../bleachbit/GuiPreferences.py:282 ../bleachbit/GuiPreferences.py:326 msgid "File" msgstr "ගොනුව" #: ../bleachbit/GuiPreferences.py:297 ../bleachbit/GuiPreferences.py:328 msgid "Folder" msgstr "බහලුම" #. TRANSLATORS: "Paths" is used generically to refer to both files and folders #: ../bleachbit/GuiPreferences.py:335 msgid "Theses paths will not be deleted or modified." msgstr "" #: ../bleachbit/GuiPreferences.py:343 msgid "Type" msgstr "වර්ගය" #. TRANSLATORS: In the tree view "Path" is used generically to refer to a #. file, a folder, or a pattern describing either #: ../bleachbit/GuiPreferences.py:349 msgid "Path" msgstr "මාර්ගය" #: ../bleachbit/GuiPreferences.py:361 msgctxt "button" msgid "Add file" msgstr "" #: ../bleachbit/GuiPreferences.py:364 msgctxt "button" msgid "Add folder" msgstr "" #: ../bleachbit/RecognizeCleanerML.py:63 msgid "Security warning" msgstr "" #. TRANSLATORS: Cleaner definitions are XML data files that define #. which files will be cleaned. #: ../bleachbit/RecognizeCleanerML.py:75 msgid "" "These cleaner definitions are new or have changed. Malicious definitions can " "damage your system. If you do not trust these changes, delete the files or " "quit." msgstr "" #. TRANSLATORS: This is the column label (header) in the tree view for the security dialog #: ../bleachbit/RecognizeCleanerML.py:88 msgctxt "column_label" msgid "Delete" msgstr "ඉවත් කරන්න" #. TRANSLATORS: This is the column label (header) in the tree view for the security dialog #: ../bleachbit/RecognizeCleanerML.py:91 msgctxt "column_label" msgid "Filename" msgstr "ගොනු නම" #. TRANSLATORS: This indicates an error. The special keyword #. %(operation)s will be replaced by 'firefox' or 'opera' or #. some other cleaner ID. The special keyword %(msg)s will be #. replaced by a message such as 'Permission denied.' #: ../bleachbit/Worker.py:76 #, python-format msgid "Exception while running operation '%(operation)s': '%(msg)s'" msgstr "" #. TRANSLATORS: 'free' means 'unallocated' #: ../bleachbit/Worker.py:208 msgid "Please wait. Wiping free disk space." msgstr "" #. TRANSLATORS: %s is replaced with Firefox, System, etc. #: ../bleachbit/Worker.py:210 ../bleachbit/Worker.py:297 #, python-format msgid "Please wait. Cleaning %s." msgstr "" #: ../bleachbit/Worker.py:220 #, python-format msgid "About %d minute remaining." msgid_plural "About %d minutes remaining." msgstr[0] "" msgstr[1] "" #. TRANSLATORS: This refers to disk space that was #. really recovered (in other words, not a preview) #: ../bleachbit/Worker.py:235 #, python-format msgid "Disk space recovered: %s" msgstr "" #. TRANSLATORS: This refers to a preview (no real #. changes were made yet) #: ../bleachbit/Worker.py:239 #, python-format msgid "Disk space to be recovered: %s" msgstr "" #. TRANSLATORS: This refers to the number of files really #. deleted (in other words, not a preview). #: ../bleachbit/Worker.py:244 #, python-format msgid "Files deleted: %d" msgstr "" #. TRANSLATORS: This refers to the number of files that #. would be deleted (in other words, simply a preview). #: ../bleachbit/Worker.py:248 #, python-format msgid "Files to be deleted: %d" msgstr "" #: ../bleachbit/Worker.py:251 #, python-format msgid "Special operations: %d" msgstr "" #: ../bleachbit/Worker.py:254 #, python-format msgid "Errors: %d" msgstr "" #. TRANSLATORS: The "deep scan" feature searches over broad #. areas of the file system such as the user's whole home directory #. or all the system executables. #: ../bleachbit/Worker.py:270 msgid "Please wait. Running deep scan." msgstr "" #. TRANSLATORS: %s is replaced with Firefox, System, etc. #: ../bleachbit/Worker.py:300 #, python-format msgid "Please wait. Previewing %s." msgstr "" #: ../bleachbit/Update.py:75 msgid "New winapp2.ini was downloaded." msgstr "" #: ../bleachbit/Update.py:111 msgid "Update BleachBit" msgstr "" #: ../bleachbit/Update.py:116 msgid "A new version is available." msgstr "" #. TRANSLATORS: %s expands to version such as '0.8.4' or '0.8.5beta' or similar #: ../bleachbit/Update.py:124 #, python-format msgid "Update to version %s" msgstr "" #: ../bleachbit/CLI.py:123 #, python-format msgid "not a valid cleaner: %s" msgstr "" #. TRANSLATORS: This is the command line usage. Don't translate #. %prog, but do translate usage, options, cleaner, and option. #. More information about the command line is here #. http://bleachbit.sourceforge.net/documentation/command-line #: ../bleachbit/CLI.py:150 msgid "usage: %prog [options] cleaner.option1 cleaner.option2" msgstr "" #: ../bleachbit/CLI.py:153 msgid "list cleaners" msgstr "" #: ../bleachbit/CLI.py:155 msgid "delete files and make other permanent changes" msgstr "" #: ../bleachbit/CLI.py:157 msgid "show system information" msgstr "" #: ../bleachbit/CLI.py:159 msgid "preview files to be deleted and other changes" msgstr "" #: ../bleachbit/CLI.py:161 msgid "use options set in the graphical interface" msgstr "" #: ../bleachbit/CLI.py:163 msgid "output version information and exit" msgstr "" #: ../bleachbit/CLI.py:165 msgid "overwrite files to hide contents" msgstr "" #: ../bleachbit/GUI.py:144 msgid "Active" msgstr "සක්‍රීය" #. TRANSLATORS: %(cleaner) may be Firefox, System, etc. #. %(option) may be cache, logs, cookies, etc. #. %(warning) may be 'This option is really slow' #: ../bleachbit/GUI.py:176 #, python-format msgid "" "Warning regarding %(cleaner)s - %(option)s:\n" "\n" "%(warning)s" msgstr "" #: ../bleachbit/GUI.py:346 msgid "You must select an operation" msgstr "" #: ../bleachbit/GUI.py:369 ../bleachbit/GUI.py:384 msgid "Done." msgstr "නිම කළා." #: ../bleachbit/GUI.py:396 msgid "Program to clean unnecessary files" msgstr "" #: ../bleachbit/GUI.py:401 msgid "" "GNU General Public License version 3 or later.\n" "See http://www.gnu.org/licenses/gpl-3.0.txt" msgstr "" #. TRANSLATORS: Maintain the names of translators here. #. Launchpad does this automatically for translations #. typed in Launchpad. This is a special string shown #. in the 'About' box. #: ../bleachbit/GUI.py:407 msgid "translator-credits" msgstr "" "Launchpad Contributions:\n" " Manoj Prasanna Handapangoda https://launchpad.net/~hmdmph" #: ../bleachbit/GUI.py:420 msgid "System information" msgstr "" #: ../bleachbit/GUI.py:490 msgid "Choose files to shred" msgstr "" #: ../bleachbit/GUI.py:493 msgid "Choose folder to shred" msgstr "" #: ../bleachbit/GUI.py:581 msgid "Preview" msgstr "පුර්ව දර්ශනය" #: ../bleachbit/GUI.py:631 msgid "_Shred Files" msgstr "" #: ../bleachbit/GUI.py:632 msgid "Sh_red Folders" msgstr "" #: ../bleachbit/GUI.py:633 msgid "_Wipe Free Space" msgstr "" #: ../bleachbit/GUI.py:634 msgid "S_hred Settings and Quit" msgstr "" #: ../bleachbit/GUI.py:635 msgid "_Quit" msgstr "ඉවත් වන්න (_Q)" #: ../bleachbit/GUI.py:636 msgid "_File" msgstr "ගොනු (_F)" #: ../bleachbit/GUI.py:638 msgid "_Edit" msgstr "සැකසුම් (_E)" #: ../bleachbit/GUI.py:639 msgid "Help Contents" msgstr "" #: ../bleachbit/GUI.py:641 msgid "_Release Notes" msgstr "" #: ../bleachbit/GUI.py:643 msgid "_System Information" msgstr "" #: ../bleachbit/GUI.py:644 msgid "_About" msgstr "පිළිබඳව (_A)" #: ../bleachbit/GUI.py:645 msgid "_Help" msgstr "උදව් (_H)" #. TRANSLATORS: This is the preview button on the main window. It previews changes. #: ../bleachbit/GUI.py:669 msgctxt "button" msgid "Preview" msgstr "පූර්වදර්ශණය" #: ../bleachbit/GUI.py:672 msgid "Preview files in the selected operations (without deleting any files)" msgstr "" #. TRANSLATORS: This is the delete button on the main window. #. It makes permanent changes: usually deleting files, sometimes altering them. #: ../bleachbit/GUI.py:680 msgctxt "button" msgid "Delete" msgstr "ඉවත් කරන්න" #: ../bleachbit/GUI.py:683 msgid "Delete files in the selected operations" msgstr "" #: ../bleachbit/GUI.py:769 msgid "Error when checking for updates: " msgstr "" #: ../bleachbit/GUI.py:800 msgid "" "Error loading the SQLite module: the antivirus software may be blocking it." msgstr "" bleachbit-2.0/po/cs.po0000644000175000017500000013660713245436307013001 0ustar hlehle# Czech translation for bleachbit # Copyright (c) 2009 Rosetta Contributors and Canonical Ltd 2009 # This file is distributed under the same license as the bleachbit package. # FIRST AUTHOR , 2009. # msgid "" msgstr "" "Project-Id-Version: bleachbit\n" "Report-Msgid-Bugs-To: FULL NAME \n" "POT-Creation-Date: 2017-02-11 11:12-0700\n" "PO-Revision-Date: 2017-09-10 16:24+0000\n" "Last-Translator: Pavel Borecki \n" "Language-Team: Czech \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n" "X-Launchpad-Export-Date: 2017-09-10 22:00+0000\n" "X-Generator: Launchpad (build 18449)\n" #: ../cleaners/mc.xml ../cleaners/tortoisesvn.xml ../cleaners/vim.xml #: ../cleaners/safari.xml ../cleaners/links2.xml ../cleaners/seamonkey.xml #: ../cleaners/realplayer.xml ../cleaners/windows_defender.xml #: ../cleaners/d4x.xml ../cleaners/sqlite3.xml #: ../cleaners/internet_explorer.xml ../cleaners/libreoffice.xml #: ../cleaners/easytag.xml ../cleaners/bash.xml ../cleaners/nautilus.xml #: ../cleaners/octave.xml ../cleaners/elinks.xml ../cleaners/chromium.xml #: ../cleaners/google_chrome.xml msgid "History" msgstr "Historie" #: ../cleaners/mc.xml ../cleaners/tortoisesvn.xml ../cleaners/links2.xml #: ../cleaners/realplayer.xml ../cleaners/d4x.xml ../cleaners/libreoffice.xml #: ../cleaners/easytag.xml ../cleaners/nautilus.xml ../cleaners/gnome.xml #: ../bleachbit/Cleaner.py:349 ../bleachbit/Cleaner.py:423 #: ../bleachbit/Cleaner.py:432 msgid "Delete the usage history" msgstr "Smazat historii používání" #: ../cleaners/gpodder.xml ../cleaners/hippo_opensim_viewer.xml #: ../cleaners/thumbnails.xml ../cleaners/safari.xml ../cleaners/emesene.xml #: ../cleaners/liferea.xml ../cleaners/seamonkey.xml ../cleaners/vuze.xml #: ../cleaners/yahoo_messenger.xml ../cleaners/pidgin.xml #: ../cleaners/adobe_reader.xml ../cleaners/evolution.xml #: ../cleaners/tremulous.xml ../cleaners/libreoffice.xml ../cleaners/xine.xml #: ../cleaners/nexuiz.xml ../cleaners/exaile.xml ../cleaners/opera.xml #: ../cleaners/amsn.xml ../cleaners/gftp.xml ../cleaners/miro.xml #: ../cleaners/beagle.xml ../cleaners/kde.xml ../cleaners/epiphany.xml #: ../cleaners/flash.xml ../cleaners/secondlife_viewer.xml ../cleaners/java.xml #: ../cleaners/chromium.xml ../cleaners/audacious.xml ../cleaners/rhythmbox.xml #: ../cleaners/google_chrome.xml ../cleaners/thunderbird.xml #: ../bleachbit/Cleaner.py:192 ../bleachbit/Cleaner.py:370 #: ../bleachbit/Cleaner.py:455 msgid "Cache" msgstr "Mezipaměť" #: ../cleaners/gpodder.xml ../cleaners/yum.xml #: ../cleaners/hippo_opensim_viewer.xml ../cleaners/thumbnails.xml #: ../cleaners/windows_explorer.xml ../cleaners/liferea.xml #: ../cleaners/vuze.xml ../cleaners/yahoo_messenger.xml ../cleaners/pidgin.xml #: ../cleaners/adobe_reader.xml ../cleaners/evolution.xml #: ../cleaners/libreoffice.xml ../cleaners/apt.xml ../cleaners/xine.xml #: ../cleaners/nexuiz.xml ../cleaners/exaile.xml ../cleaners/amsn.xml #: ../cleaners/gftp.xml ../cleaners/miro.xml ../cleaners/beagle.xml #: ../cleaners/kde.xml ../cleaners/flash.xml ../cleaners/secondlife_viewer.xml #: ../cleaners/java.xml ../cleaners/audacious.xml ../cleaners/rhythmbox.xml #: ../bleachbit/Cleaner.py:370 ../bleachbit/Cleaner.py:455 #: ../bleachbit/Cleaner.py:489 ../bleachbit/Cleaner.py:491 msgid "Delete the cache" msgstr "Vymazat mezipaměť" #. TRANSLATORS: Vacuum is a verb. The term is jargon #. from the SQLite database. Microsoft Access uses #. the term 'Compact Database' (which you may translate #. instead). Another synonym is 'defragment.' #: ../cleaners/gpodder.xml ../cleaners/yum.xml ../cleaners/safari.xml #: ../cleaners/liferea.xml ../cleaners/chromium.xml #: ../cleaners/google_chrome.xml ../cleaners/thunderbird.xml #: ../bleachbit/Cleaner.py:214 ../bleachbit/Cleaner.py:360 #: ../bleachbit/Action.py:445 msgid "Vacuum" msgstr "Pročistit a optimalizovat databázi" #: ../cleaners/gpodder.xml ../cleaners/yum.xml ../cleaners/safari.xml #: ../cleaners/liferea.xml ../cleaners/chromium.xml #: ../cleaners/google_chrome.xml ../cleaners/thunderbird.xml #: ../bleachbit/Cleaner.py:215 msgid "" "Clean database fragmentation to reduce space and improve speed without " "removing any data" msgstr "" "Defragmentací databáze se zmenší její velikost a zvýší její rychlost, aniž " "by došlo k odstranění jakýchkoli v ní obsažených dat." #: ../cleaners/yum.xml ../cleaners/apt.xml msgid "Package manager" msgstr "Správce balíčků" #: ../cleaners/warzone2100.xml ../cleaners/hippo_opensim_viewer.xml #: ../cleaners/gl-117.xml ../cleaners/tremulous.xml ../cleaners/nexuiz.xml #: ../cleaners/secondlife_viewer.xml msgid "Game" msgstr "Hra" #: ../cleaners/warzone2100.xml ../cleaners/hippo_opensim_viewer.xml #: ../cleaners/teamviewer.xml ../cleaners/realplayer.xml ../cleaners/vuze.xml #: ../cleaners/yahoo_messenger.xml ../cleaners/amule.xml #: ../cleaners/easytag.xml ../cleaners/exaile.xml ../cleaners/screenlets.xml #: ../cleaners/gftp.xml ../cleaners/miro.xml ../cleaners/audacious.xml #: ../bleachbit/Cleaner.py:486 msgid "Logs" msgstr "Záznamy událostí (log)" #: ../cleaners/warzone2100.xml ../cleaners/hippo_opensim_viewer.xml #: ../cleaners/teamviewer.xml ../cleaners/realplayer.xml ../cleaners/vuze.xml #: ../cleaners/yahoo_messenger.xml ../cleaners/amule.xml ../cleaners/exaile.xml #: ../cleaners/screenlets.xml ../cleaners/gftp.xml ../cleaners/miro.xml #: ../cleaners/audacious.xml ../bleachbit/Cleaner.py:486 msgid "Delete the logs" msgstr "Smazat záznamy událostí" #: ../cleaners/thumbnails.xml ../cleaners/windows_explorer.xml msgid "Thumbnails" msgstr "Náhledy souborů" #: ../cleaners/thumbnails.xml msgid "Icons for files on the system" msgstr "Ikony souborů na systému" #: ../cleaners/vim.xml ../cleaners/gedit.xml msgid "Editor" msgstr "Editor" #: ../cleaners/vim.xml msgid "" "Delete ~/.viminfo which includes file history, command history, and buffers" msgstr "" "Smazat soubor ~/.viminfo, obsahující historii souborů, historii příkazů a " "vyrovnávací paměti" #: ../cleaners/filezilla.xml ../cleaners/transmission.xml ../cleaners/vuze.xml #: ../cleaners/amule.xml ../cleaners/gftp.xml msgid "File transfer client" msgstr "Klient přenosu souborů" #: ../cleaners/filezilla.xml ../cleaners/paint.xml #: ../cleaners/windows_media_player.xml ../cleaners/windows_explorer.xml #: ../cleaners/teamviewer.xml ../cleaners/microsoft_office.xml #: ../cleaners/vlc.xml ../cleaners/adobe_reader.xml ../cleaners/winamp.xml #: ../cleaners/winzip.xml ../cleaners/winrar.xml ../cleaners/audacious.xml #: ../cleaners/wordpad.xml ../bleachbit/Cleaner.py:371 msgid "Most recently used" msgstr "Nedávno použité" #: ../cleaners/filezilla.xml ../cleaners/windows_explorer.xml #: ../cleaners/gwenview.xml ../cleaners/adobe_reader.xml ../cleaners/gedit.xml #: ../cleaners/kde.xml ../cleaners/audacious.xml ../bleachbit/Cleaner.py:372 #: ../bleachbit/Cleaner.py:469 msgid "Delete the list of recently used documents" msgstr "Smazat seznam nedávno otevřených souborů" #: ../cleaners/skype.xml ../cleaners/emesene.xml #: ../cleaners/yahoo_messenger.xml ../cleaners/pidgin.xml ../cleaners/amsn.xml msgid "Chat client" msgstr "Chatovací klient" #: ../cleaners/skype.xml ../cleaners/hexchat.xml ../cleaners/emesene.xml #: ../cleaners/seamonkey.xml ../cleaners/yahoo_messenger.xml #: ../cleaners/pidgin.xml ../cleaners/amsn.xml msgid "Chat logs" msgstr "Záznamy chatu" #: ../cleaners/skype.xml ../cleaners/hexchat.xml ../cleaners/emesene.xml #: ../cleaners/seamonkey.xml ../cleaners/yahoo_messenger.xml #: ../cleaners/pidgin.xml ../cleaners/amsn.xml msgid "Delete the chat logs" msgstr "Smazat záznamy chatu" #: ../cleaners/skype.xml msgid "Installers" msgstr "Instalátory" #: ../cleaners/skype.xml msgid "Delete cached patches and installers" msgstr "Smazat dočasné soubory záplat a instalátorů" #: ../cleaners/hexchat.xml msgid "IRC client formerly known as XChat" msgstr "IRC klient dříve známý jako XChat" #: ../cleaners/safari.xml ../cleaners/links2.xml ../cleaners/seamonkey.xml #: ../cleaners/konqueror.xml ../cleaners/internet_explorer.xml #: ../cleaners/opera.xml ../cleaners/epiphany.xml ../cleaners/elinks.xml #: ../cleaners/chromium.xml ../cleaners/google_chrome.xml #: ../bleachbit/Cleaner.py:226 msgid "Web browser" msgstr "Webový prohlížeč" #: ../cleaners/safari.xml ../cleaners/seamonkey.xml ../cleaners/opera.xml #: ../cleaners/epiphany.xml ../cleaners/chromium.xml #: ../cleaners/google_chrome.xml ../cleaners/thunderbird.xml #: ../bleachbit/Cleaner.py:193 msgid "Delete the web cache, which reduces time to display revisited pages" msgstr "" "Smazat mezipaměť webových stránek, omezujících čas potřebný pro načítání již " "navštívených stránek" #: ../cleaners/safari.xml ../cleaners/liferea.xml ../cleaners/seamonkey.xml #: ../cleaners/realplayer.xml ../cleaners/konqueror.xml #: ../cleaners/internet_explorer.xml ../cleaners/opera.xml #: ../cleaners/epiphany.xml ../cleaners/flash.xml ../cleaners/silverlight.xml #: ../cleaners/chromium.xml ../cleaners/google_chrome.xml #: ../cleaners/thunderbird.xml ../bleachbit/Cleaner.py:194 msgid "Cookies" msgstr "Soubory cookie" #: ../cleaners/safari.xml ../cleaners/liferea.xml ../cleaners/seamonkey.xml #: ../cleaners/realplayer.xml ../cleaners/konqueror.xml #: ../cleaners/internet_explorer.xml ../cleaners/opera.xml #: ../cleaners/epiphany.xml ../cleaners/flash.xml ../cleaners/silverlight.xml #: ../cleaners/chromium.xml ../cleaners/google_chrome.xml #: ../cleaners/thunderbird.xml ../bleachbit/Cleaner.py:195 msgid "" "Delete cookies, which contain information such as web site preferences, " "authentication, and tracking identification" msgstr "" "Smazat cookies, obsahují informace jako předvolby webových stránek, ověření " "a identifikaci pro sledování" #: ../cleaners/safari.xml ../cleaners/konqueror.xml #: ../cleaners/internet_explorer.xml ../cleaners/opera.xml #: ../bleachbit/Cleaner.py:213 msgid "List of visited web pages" msgstr "Seznam navštívených webových stránek" #. Torrent software can block a list of IP addresses, such as those that may belong to malware or anti-piracy organizations #: ../cleaners/transmission.xml msgid "Blocklists" msgstr "Seznamy blokovaných IP adres" #: ../cleaners/transmission.xml ../cleaners/windows_defender.xml #: ../cleaners/beagle.xml ../cleaners/thunderbird.xml ../cleaners/deepscan.xml #: ../bleachbit/Cleaner.py:197 msgid "Delete the files" msgstr "Smazat soubory" #: ../cleaners/transmission.xml msgid "Blocklists will need update to work." msgstr "" "Aby seznam blokovaných IP adres fungoval, bude nutné ho aktualizovat." #: ../cleaners/transmission.xml msgid "Torrents" msgstr "Torrenty" #: ../cleaners/transmission.xml msgid "Delete the torrents (just the metadata but not the files described)" msgstr "Smazat torrenty (pouze metadata, nikoli soubory, které popisují)" #: ../cleaners/transmission.xml msgid "Statistics" msgstr "Statistiky" #: ../cleaners/transmission.xml msgid "Delete the file" msgstr "Smazat soubor" #: ../cleaners/paint.xml ../cleaners/windows_media_player.xml #: ../cleaners/windows_explorer.xml ../cleaners/teamviewer.xml #: ../cleaners/microsoft_office.xml ../cleaners/vlc.xml ../cleaners/winamp.xml #: ../cleaners/winzip.xml ../cleaners/winrar.xml ../cleaners/wordpad.xml msgid "Delete the most recently used list" msgstr "Smazat seznam nedávno otevřených" #: ../cleaners/emesene.xml msgid "Delete the avatars and emoticons cache" msgstr "Smazat mezipaměť avatarů a smajlíků" #: ../cleaners/windows_media_player.xml ../cleaners/realplayer.xml #: ../cleaners/vlc.xml ../cleaners/winamp.xml msgid "Media player" msgstr "Multimediální přehrávač" #: ../cleaners/windows_explorer.xml ../cleaners/nautilus.xml msgid "File manager" msgstr "Správce souborů" #: ../cleaners/windows_explorer.xml ../cleaners/gwenview.xml #: ../cleaners/gedit.xml ../cleaners/kde.xml ../bleachbit/Cleaner.py:468 #: ../bleachbit/Cleaner.py:663 msgid "Recent documents list" msgstr "Seznam nedávných dokumentů" #: ../cleaners/windows_explorer.xml msgid "" "This option will reset pinned locations in Quick Access to their defaults." msgstr "" "Tato možnost vrátí připnutá umístění v nabídce Rychlého přístupu do jejich " "základního nastavení." #. In Windows 'Run' is the dialog in the Start menu #. In GNOME 'Run' is the dialog shown when typing ALT+F2' #: ../cleaners/windows_explorer.xml ../cleaners/gnome.xml msgid "Run" msgstr "Spustit" #: ../cleaners/windows_explorer.xml ../cleaners/opera.xml ../cleaners/gnome.xml #: ../cleaners/google_toolbar.xml msgid "Search history" msgstr "Historie vyhledávání" #: ../cleaners/windows_explorer.xml ../cleaners/opera.xml ../cleaners/gnome.xml #: ../cleaners/google_toolbar.xml msgid "Delete the search history" msgstr "Smazat historii vyhledávání" #: ../cleaners/windows_explorer.xml msgid "This will restart Windows Explorer." msgstr "Tímto bude restartován Windows Explorer" #: ../cleaners/gl-117.xml ../cleaners/microsoft_office.xml #: ../cleaners/beagle.xml ../cleaners/secondlife_viewer.xml ../cleaners/x11.xml msgid "Debug logs" msgstr "Záznamy ladění" #: ../cleaners/gl-117.xml ../cleaners/microsoft_office.xml #: ../cleaners/easytag.xml ../cleaners/beagle.xml #: ../cleaners/secondlife_viewer.xml ../cleaners/x11.xml msgid "Delete the debug logs" msgstr "Smazat záznamy ladění" #: ../cleaners/google_earth.xml ../cleaners/winetricks.xml ../cleaners/vuze.xml #: ../cleaners/adobe_reader.xml ../cleaners/amule.xml ../cleaners/wine.xml #: ../cleaners/internet_explorer.xml ../cleaners/gimp.xml ../cleaners/kde.xml #: ../cleaners/deepscan.xml ../bleachbit/Cleaner.py:520 msgid "Temporary files" msgstr "Dočasné soubory" #: ../cleaners/google_earth.xml ../cleaners/winetricks.xml ../cleaners/vuze.xml #: ../cleaners/adobe_reader.xml ../cleaners/amule.xml ../cleaners/wine.xml #: ../cleaners/internet_explorer.xml ../cleaners/gimp.xml ../cleaners/kde.xml #: ../cleaners/deepscan.xml ../bleachbit/Cleaner.py:520 msgid "Delete the temporary files" msgstr "Smazat dočasné soubory" #: ../cleaners/seamonkey.xml ../cleaners/opera.xml ../bleachbit/Cleaner.py:201 msgid "Download history" msgstr "Historie stahování" #: ../cleaners/seamonkey.xml ../cleaners/opera.xml ../bleachbit/Cleaner.py:201 msgid "List of files downloaded" msgstr "Seznam stažených souborů" #: ../cleaners/seamonkey.xml msgid "Delete the list of visited web pages" msgstr "Smazat seznam navštívených webových stránek" #: ../cleaners/vuze.xml ../cleaners/deepscan.xml ../bleachbit/Cleaner.py:190 msgid "Backup files" msgstr "Záložní soubory" #: ../cleaners/vuze.xml ../cleaners/deepscan.xml ../bleachbit/Cleaner.py:191 msgid "Delete the backup files" msgstr "Smazat záložní soubory" #: ../cleaners/konqueror.xml ../cleaners/opera.xml ../cleaners/chromium.xml msgid "Current session" msgstr "Aktuální relace" #: ../cleaners/konqueror.xml ../cleaners/opera.xml ../cleaners/chromium.xml msgid "Delete the current session" msgstr "Smazat aktuální relaci" #: ../cleaners/konqueror.xml ../cleaners/opera.xml ../bleachbit/Cleaner.py:213 msgid "URL history" msgstr "Historie URL adres" #: ../cleaners/microsoft_office.xml ../cleaners/libreoffice.xml #: ../bleachbit/Cleaner.py:375 msgid "Office suite" msgstr "Kancelářský balík" #: ../cleaners/windows_defender.xml msgid "Anti-virus" msgstr "Antivirus" #: ../cleaners/journald.xml msgid "System journals" msgstr "Systémové žurnály" #: ../cleaners/journald.xml msgid "Clean old system journals" msgstr "Vyčistit staré systémové žurnály" #: ../cleaners/adobe_reader.xml msgid "Document viewer" msgstr "Prohlížeč dokumentů" #: ../cleaners/evolution.xml ../cleaners/thunderbird.xml msgid "Email client" msgstr "E-mailový klient" #: ../cleaners/tremulous.xml msgid "Delete the list of game servers" msgstr "Smazat seznam herních serverů" #: ../cleaners/sqlite3.xml ../cleaners/bash.xml ../cleaners/octave.xml msgid "Delete the command history" msgstr "Smazat historii příkazů" #: ../cleaners/wine.xml msgid "Compatibility layer for Windows software" msgstr "Kompatibilitní vrstva pro Windows software" #: ../cleaners/internet_explorer.xml ../cleaners/chromium.xml #: ../cleaners/google_chrome.xml ../bleachbit/Cleaner.py:202 msgid "Form history" msgstr "Historie formulářů" #: ../cleaners/internet_explorer.xml ../bleachbit/Cleaner.py:203 msgid "A history of forms entered in web sites and in the Search bar" msgstr "Historie formulářů na webových stránkách a ve vyhledávači" #. This software edits metadata tags, such as title and artist, in audio files #: ../cleaners/easytag.xml msgid "Audio files tagger" msgstr "Editor tagů zvukových souborů" #: ../cleaners/apt.xml msgid "Delete obsolete files" msgstr "Smazat obstarožní soubory" #: ../cleaners/apt.xml msgid "Package lists" msgstr "Seznamy balíčků" #: ../cleaners/xine.xml ../cleaners/miro.xml ../cleaners/flash.xml msgid "Multimedia viewer" msgstr "Multimediální přehrávač" #: ../cleaners/recoll.xml ../cleaners/beagle.xml msgid "Search tool" msgstr "Vyhledávací nástroj souborů" #: ../cleaners/recoll.xml ../cleaners/beagle.xml ../cleaners/thunderbird.xml msgid "Index" msgstr "Rejstřík" #: ../cleaners/recoll.xml msgid "" "Delete the search index, a database of words and the files they contain" msgstr "Smazat rejstřík hledání, databázi slov a soubory, které obsahují" #: ../cleaners/gimp.xml msgid "Graphics editor" msgstr "Grafický editor" #: ../cleaners/exaile.xml msgid "Downloaded podcasts" msgstr "Stažené podcasty" #: ../cleaners/exaile.xml msgid "Delete downloaded podcasts" msgstr "Smazat stažené podcasty" #: ../cleaners/bash.xml msgid "Shell" msgstr "Shell" #. TRANSLATORS: DOM = Document Object Model. #: ../cleaners/opera.xml ../cleaners/epiphany.xml ../cleaners/chromium.xml #: ../cleaners/google_chrome.xml ../bleachbit/Cleaner.py:199 msgid "DOM Storage" msgstr "Úložiště DOM" #: ../cleaners/opera.xml ../cleaners/epiphany.xml ../cleaners/chromium.xml #: ../cleaners/google_chrome.xml ../bleachbit/Cleaner.py:199 msgid "Delete HTML5 cookies" msgstr "Smazat HTML5 cookies" #: ../cleaners/opera.xml ../cleaners/epiphany.xml ../cleaners/chromium.xml #: ../cleaners/google_chrome.xml ../cleaners/thunderbird.xml #: ../bleachbit/Cleaner.py:208 msgid "Passwords" msgstr "Hesla" #: ../cleaners/opera.xml ../cleaners/epiphany.xml ../cleaners/chromium.xml #: ../cleaners/google_chrome.xml ../cleaners/thunderbird.xml #: ../bleachbit/Cleaner.py:209 msgid "" "A database of usernames and passwords as well as a list of sites that should " "not store passwords" msgstr "" "Databáze uživatelských jmen, hesel a také stránek, ke kterým je neukládat" #: ../cleaners/opera.xml ../cleaners/epiphany.xml ../cleaners/chromium.xml #: ../cleaners/google_chrome.xml ../cleaners/thunderbird.xml #: ../bleachbit/Cleaner.py:211 msgid "This option will delete your saved passwords." msgstr "Tato volba smaže vaše uložená hesla." #: ../cleaners/nautilus.xml msgid "Custom folders will be reset." msgstr "" "Nastavení složek bude vráceno do výchozího stavu, osobní nastavení budou " "zrušena." #: ../cleaners/gnome.xml ../cleaners/kde.xml msgid "Desktop environment" msgstr "Pracovní prostředí" #: ../cleaners/screenlets.xml msgid "Widgets for the desktop" msgstr "Prvky plochy" #: ../cleaners/epiphany.xml msgid "Places" msgstr "Místa" #: ../cleaners/epiphany.xml msgid "" "A database of URLs including bookmarks, favicons, and a history of visited " "web sites" msgstr "" "Databáze webových stránek včetně záložek, ikon a historie navštívených " "stránek" #: ../cleaners/epiphany.xml msgid "This option deletes all bookmarks." msgstr "Tato volba smaže všechny vaše záložky!" #: ../cleaners/winrar.xml msgid "File archiver" msgstr "Správce archivů" #: ../cleaners/elinks.xml msgid "Delete the cookies, visited URLs, and search history" msgstr "Smazat cookies, navštívené stránky a historii vyhledávání" #: ../cleaners/chromium.xml ../cleaners/google_chrome.xml msgid "A history of forms entered in web sites" msgstr "Historie formulářů vyplněných na webových stránkách" #: ../cleaners/chromium.xml ../cleaners/google_chrome.xml msgid "" "Delete the history which includes visited sites, downloads, and thumbnails" msgstr "" "Smazat historii obsahující navštívené stránky, historii stahování a náhledy" #: ../cleaners/chromium.xml ../cleaners/google_chrome.xml msgid "Search engines" msgstr "Vyhledávače" #. 'Factory' means a search engine that is installed by default 'from the factory,' but this is different than a 'default search engine' https://lists.launchpad.net/launchpad-translators/msg00283.html #: ../cleaners/chromium.xml ../cleaners/google_chrome.xml msgid "" "Reset the search engine usage history and delete non-factory search engines, " "some of which are added automatically" msgstr "" "Smazat historii používání vyhledávačů a smazat všechny dodatečně přidané " "vyhledávače, a to včetně těch přidaných automaticky" #: ../cleaners/audacious.xml msgid "Audio player" msgstr "Audio přehrávač" #: ../cleaners/rhythmbox.xml msgid "Database" msgstr "Databáze" #: ../cleaners/rhythmbox.xml msgid "" "Delete the database, which contain information such as play count and last " "played" msgstr "" "Smazat databázi, která obsahuje údaje o počtu přehrání a o naposledy " "přehraných skladbách" #: ../cleaners/google_chrome.xml msgid "Session" msgstr "Sezení" #: ../cleaners/google_chrome.xml msgid "Delete the current and last sessions" msgstr "Smazat stávající a minulé sezení" #: ../cleaners/x11.xml msgid "Windowing system" msgstr "Okenní systém" #: ../cleaners/wordpad.xml msgid "Word processor" msgstr "Textový editor" #: ../cleaners/deepscan.xml msgid "Deep scan" msgstr "Hloubkové prohledávání" #: ../cleaners/deepscan.xml msgid "Clean files widely scattered across the disk" msgstr "Vyčistit soubory poházené po disku" #: ../cleaners/deepscan.xml msgid "Inspect the preview for any files you want to keep." msgstr "Prohlédněte si v náhledu soubory, které si přejete zachovat" #: ../cleaners/deepscan.xml msgid "This option is slow." msgstr "Tato volba může být velice pomalá!" #: ../bleachbit.desktop msgid "Unnecessary file cleaner" msgstr "Čistič disku od nepotřebných souborů" #: ../bleachbit.desktop msgid "Free space and maintain privacy" msgstr "Uvolní místo na disku a ochrání vaše soukromí" #: ../bleachbit/FileUtilities.py:668 msgid "" "There was at least one file on a file system that does not support advanced " "overwriting." msgstr "" "Na souborovém systému se nachází přinejmenším jeden soubor který na který " "není možné použít pokročilé přepsání." #: ../bleachbit/Unix.py:574 #, python-format msgid "Executable not found: %s" msgstr "Spustitelný soubor nenalezen: %s" #. TRANSLATORS: %s expands to a name such as 'Firefox' or 'System'. #: ../bleachbit/Unix.py:623 ../bleachbit/Worker.py:136 #, python-format msgid "" "%s cannot be cleaned because it is currently running. Close it, and try " "again." msgstr "" "Nelze spustit čistič pro %s, neboť tato aplikace právě běží. Ukončete ji a " "zkuste to znovu." #: ../bleachbit/GuiBasic.py:112 msgid "Delete confirmation" msgstr "Potvrzení smazání" #: ../bleachbit/GuiBasic.py:122 msgid "" "Are you sure you want to permanently delete files according to the selected " "operations? The actual files that will be deleted may have changed since " "you ran the preview." msgstr "" "Opravdu chcete smazat vámi označené soubory? Smazané soubory již nelze nijak " "obnovit. Chcete-li vidět, o jaké soubory se jedná, nejprve klikněte na " "tlačítko \"Náhled\"" #: ../bleachbit/GuiBasic.py:125 msgid "Are you sure you want to permanently delete these files?" msgstr "Opravdu chcete tyto soubory trvale smazat?" #: ../bleachbit/GuiBasic.py:162 #, python-format msgid "" "Because you are running as root, please manually open this link in a web " "browser:\n" "%s" msgstr "" "Protože jste program spustili jako root, ručně zkopírujte níže uvedený odkaz " "do adresního řádku vašeho prohlížeče:\n" "%s" #. TRANSLATORS: %s expands to www.bleachbit.org or similar #: ../bleachbit/GuiBasic.py:174 #, python-format msgid "Open web browser to %s?" msgstr "Otevřít webovou stránku %s?" #. TRANSLATORS: This is the label in the log indicating was #. skipped because it matches the whitelist #: ../bleachbit/Command.py:47 msgid "Skip" msgstr "Přeskočit" #. TRANSLATORS: This is the label in the log indicating will be #. deleted (for previews) or was actually deleted #: ../bleachbit/Command.py:77 msgid "Delete" msgstr "Smazat" #: ../bleachbit/Command.py:99 msgid "" "At least one file was locked by another process, so its contents could not " "be overwritten. It will be marked for deletion upon system reboot." msgstr "" "Přinejmenším jeden soubor byl uzamčen jiným procesem takže jeho obsah nebylo " "možné přepsat. Bude označen pro smazání při restartu systému." #. TRANSLATORS: The file will be deleted when the #. system reboots #: ../bleachbit/Command.py:102 msgid "Mark for deletion" msgstr "Označit pro smazání" #. TRANSLATORS: Parts of this file will be deleted #: ../bleachbit/Command.py:199 ../bleachbit/Command.py:233 #: ../bleachbit/Action.py:254 ../bleachbit/Action.py:267 #: ../bleachbit/Action.py:280 ../bleachbit/Action.py:293 #: ../bleachbit/Action.py:306 msgid "Clean file" msgstr "Pročistit soubor" #. TRANSLATORS: The file will be truncated to 0 bytes in length #: ../bleachbit/Command.py:275 msgid "Truncate" msgstr "Vyprázdnit" #: ../bleachbit/Command.py:317 msgid "Delete registry key" msgstr "Smazat klíč v registrech" #. TRANSLATORS: This is cleaner name for cleaners imported from winapp2.ini #: ../bleachbit/Winapp.py:44 msgid "Applications" msgstr "Aplikace" #. TRANSLATORS: This is cleaner name for cleaners imported #. from winapp2.ini #: ../bleachbit/Winapp.py:47 msgid "Internet" msgstr "Internet" #. TRANSLATORS: This is cleaner name for cleaners imported #. from winapp2.ini #: ../bleachbit/Winapp.py:50 msgid "Multimedia" msgstr "Multimédia" #. TRANSLATORS: This is cleaner name for cleaners imported #. from winapp2.ini #: ../bleachbit/Winapp.py:53 msgid "Utilities" msgstr "Nástroje" #: ../bleachbit/Winapp.py:64 msgid "Games" msgstr "Hry" #: ../bleachbit/Winapp.py:162 msgid "Imported from winapp2.ini" msgstr "Importováno z winapp2.ini" #: ../bleachbit/Cleaner.py:197 msgid "Crash reports" msgstr "Zprávy o pádu" #: ../bleachbit/Cleaner.py:204 msgid "Session restore" msgstr "Obnova relace" #: ../bleachbit/Cleaner.py:205 msgid "Loads the initial session after the browser closes or crashes" msgstr "" "Obnovuje předchozí relaci po ukončení (je-li tak prohlížeč nastaven), nebo " "pádu prohlížeče" #: ../bleachbit/Cleaner.py:207 msgid "Site preferences" msgstr "Předvolby stránek" #: ../bleachbit/Cleaner.py:207 msgid "Settings for individual sites" msgstr "Nastavení jednotlivých stránek" #. TRANSLATORS: desktop entries are .desktop files in Linux that #. make up the application menu (the menu that shows BleachBit, #. Firefox, and others. The .desktop files also associate file #. types, so clicking on an .html file in Nautilus brings up #. Firefox. #. More information: #. http://standards.freedesktop.org/menu-spec/latest/index.html#introduction #: ../bleachbit/Cleaner.py:453 msgid "Broken desktop files" msgstr "Neplatné soubory .desktop" #: ../bleachbit/Cleaner.py:454 msgid "Delete broken application menu entries and file associations" msgstr "" "Odstranit neplatné položky nabídky a asociace mezi soubory a aplikacemi" #. TRANSLATORS: Localizations are files supporting specific #. languages, so applications appear in Spanish, etc. #: ../bleachbit/Cleaner.py:458 msgid "Localizations" msgstr "Lokalizace" #: ../bleachbit/Cleaner.py:459 msgid "Delete files for unwanted languages" msgstr "Smazat soubory nepotřebných překladů do jiných jazyků" #: ../bleachbit/Cleaner.py:461 msgid "Configure this option in the preferences." msgstr "Tuto volbu nastavte v předvolbách." #: ../bleachbit/Cleaner.py:467 msgid "Rotated logs" msgstr "Staré záznamy událostí" #: ../bleachbit/Cleaner.py:467 msgid "Delete old system logs" msgstr "Smazat staré systémové záznamy" #: ../bleachbit/Cleaner.py:470 msgid "Trash" msgstr "Koš" #: ../bleachbit/Cleaner.py:470 msgid "Empty the trash" msgstr "Vysypat koš" #: ../bleachbit/Cleaner.py:476 ../bleachbit/Cleaner.py:627 #: ../bleachbit/Worker.py:184 msgid "Memory" msgstr "Paměť" #. TRANSLATORS: 'free' means 'unallocated' #: ../bleachbit/Cleaner.py:478 msgid "Wipe the swap and free memory" msgstr "Vyprázdnit swap a uvolnit místo v RAM" #: ../bleachbit/Cleaner.py:480 msgid "This option is experimental and may cause system problems." msgstr "Tato volba je experimentální, může způsobit problémy v systému!" #: ../bleachbit/Cleaner.py:488 msgid "Memory dump" msgstr "Výpis paměti" #: ../bleachbit/Cleaner.py:488 msgid "Delete the file memory.dmp" msgstr "Smazat soubor memory.dmp" #. TRANSLATORS: Prefetch is Microsoft Windows jargon. #: ../bleachbit/Cleaner.py:491 msgid "Prefetch" msgstr "Prefetch" #: ../bleachbit/Cleaner.py:493 msgid "Recycle bin" msgstr "Koš" #: ../bleachbit/Cleaner.py:493 ../bleachbit/Cleaner.py:787 msgid "Empty the recycle bin" msgstr "Vysypat koš" #. TRANSLATORS: 'Update' is a noun, and 'Update uninstallers' is an option to delete #. the uninstallers for software updates. #: ../bleachbit/Cleaner.py:496 msgid "Update uninstallers" msgstr "Smazat odinstalátory aktualizací" #: ../bleachbit/Cleaner.py:497 msgid "" "Delete uninstallers for Microsoft updates including hotfixes, service packs, " "and Internet Explorer updates" msgstr "" "Smazat odinstalátory aktualizací Microsoft, zahrnující záplaty, servisní " "balíky a aktualizace aplikace Internet Explorer" #: ../bleachbit/Cleaner.py:504 ../bleachbit/Cleaner.py:727 msgid "Clipboard" msgstr "Schránka" #: ../bleachbit/Cleaner.py:505 msgid "" "The desktop environment's clipboard used for copy and paste operations" msgstr "Schránka desktopových prostředí pro operace kopírovat & vložit" #. TRANSLATORS: "Custom" is an option allowing the user to specify which #. files and folders will be erased. #: ../bleachbit/Cleaner.py:512 ../bleachbit/GuiPreferences.py:66 msgid "Custom" msgstr "Vlastní" #: ../bleachbit/Cleaner.py:513 msgid "Delete user-specified files and folders" msgstr "Smazat uživatelem určené soubory a složky" #. TRANSLATORS: 'free' means 'unallocated' #: ../bleachbit/Cleaner.py:515 msgid "Free disk space" msgstr "Zahladit stopy po smazaných souborech" #. TRANSLATORS: 'free' means 'unallocated' #: ../bleachbit/Cleaner.py:517 msgid "Overwrite free disk space to hide deleted files" msgstr "" "Skrýt smazané soubory přepsáním volného místa na disku logickými nulami" #: ../bleachbit/Cleaner.py:518 msgid "This option is very slow." msgstr "Tato volba je velice pomalá." #: ../bleachbit/Cleaner.py:522 msgid "The system in general" msgstr "Systém obecně" #: ../bleachbit/Cleaner.py:524 ../bleachbit/Cleaner.py:857 msgid "System" msgstr "Systém" #. TRANSLATORS: 'Free' means 'unallocated.' #. %s expands to a path such as C:\ or /tmp/ #: ../bleachbit/Cleaner.py:735 ../bleachbit/Cleaner.py:890 #, python-format msgid "Overwrite free disk space %s" msgstr "Přepsat volné místo na %s" #: ../bleachbit/RecognizeCleanerML.py:59 msgid "Security warning" msgstr "Bezpečnostní varování" #: ../bleachbit/RecognizeCleanerML.py:72 msgid "" "These cleaner definitions are new or have changed. Malicious definitions can " "damage your system. If you do not trust these changes, delete the files or " "quit." msgstr "" "Tyto definice čističů jsou buď nové, nebo byly změněny. Škodlivé definice " "mohou poškodit váš systém. Pokud jim nevěříte, můžete je smazat nebo ukončit " "program." #: ../bleachbit/RecognizeCleanerML.py:88 msgctxt "column_label" msgid "Delete" msgstr "Smazat" #: ../bleachbit/RecognizeCleanerML.py:93 msgctxt "column_label" msgid "Filename" msgstr "Název souboru" #. TRANSLATORS: This indicates an error. The special keyword #. %(operation)s will be replaced by 'firefox' or 'opera' or #. some other cleaner ID. The special keyword %(msg)s will be #. replaced by a message such as 'Permission denied.' #: ../bleachbit/Worker.py:74 #, python-format msgid "Exception while running operation '%(operation)s': '%(msg)s'" msgstr "Výjimka při spuštění operace \"%(operation)s\": %(msg)s" #. TRANSLATORS: 'free' means 'unallocated' #: ../bleachbit/Worker.py:182 msgid "Please wait. Wiping free disk space." msgstr "Čekejte prosím, probíhá čištění volného místa na disku." #. TRANSLATORS: %s is replaced with Firefox, System, etc. #: ../bleachbit/Worker.py:184 ../bleachbit/Worker.py:332 #, python-format msgid "Please wait. Cleaning %s." msgstr "Čekejte, probíhá čištění %s." #: ../bleachbit/Worker.py:199 msgid "Please wait. Wiping file system metadata." msgstr "Čekejte, probíhá čištění metadat souborového systému." #: ../bleachbit/Worker.py:202 msgid "Please wait. Cleaning up after wiping file system metadata." msgstr "" "Prosím čekejte, provádím čištění po odstraňování metadat souborového systému." #: ../bleachbit/Worker.py:205 #, python-format msgid "About %d minute remaining." msgid_plural "About %d minutes remaining." msgstr[0] "Zbýbá zhruba %d minuta." msgstr[1] "Zbýbá zhruba %d minuty." msgstr[2] "Zbýbá zhruba %d minut." #. TRANSLATORS: This refers to disk space that was #. really recovered (in other words, not a preview) #: ../bleachbit/Worker.py:272 #, python-format msgid "Disk space recovered: %s" msgstr "Na disku bylo uvolněno: %s" #. TRANSLATORS: This refers to a preview (no real #. changes were made yet) #: ../bleachbit/Worker.py:276 #, python-format msgid "Disk space to be recovered: %s" msgstr "Na disku bude přibližně uvolněno: %s" #. TRANSLATORS: This refers to the number of files really #. deleted (in other words, not a preview). #: ../bleachbit/Worker.py:281 #, python-format msgid "Files deleted: %d" msgstr "Souborů smazáno: %d" #. TRANSLATORS: This refers to the number of files that #. would be deleted (in other words, simply a preview). #: ../bleachbit/Worker.py:285 #, python-format msgid "Files to be deleted: %d" msgstr "Souborů bude přibližně smazáno: %d" #: ../bleachbit/Worker.py:288 #, python-format msgid "Special operations: %d" msgstr "Zvláštních operací: %d" #: ../bleachbit/Worker.py:291 #, python-format msgid "Errors: %d" msgstr "Chyb: %d" #. TRANSLATORS: The "deep scan" feature searches over broad #. areas of the file system such as the user's whole home directory #. or all the system executables. #: ../bleachbit/Worker.py:306 msgid "Please wait. Running deep scan." msgstr "Čekejte, probíhá podrobné prohledávání." #. TRANSLATORS: %s is replaced with Firefox, System, etc. #: ../bleachbit/Worker.py:335 #, python-format msgid "Please wait. Previewing %s." msgstr "Čekejte, probíhá vytváření náhledu %s." #: ../bleachbit/Update.py:80 msgid "New winapp2.ini was downloaded." msgstr "Bylo staženo nové winapp2.ini" #: ../bleachbit/Update.py:125 msgid "Update BleachBit" msgstr "Aktualizovat BleachBit" #: ../bleachbit/Update.py:130 msgid "A new version is available." msgstr "Je k dispozici nová verze." #. TRANSLATORS: %s expands to version such as '0.8.4' or '0.8.5beta' or #. similar #: ../bleachbit/Update.py:139 #, python-format msgid "Update to version %s" msgstr "Aktualizovat na verzi %s" #: ../bleachbit/Update.py:164 #, python-format msgid "" "Error when opening a network connection to %s to check for updates. Please " "verify the network is working." msgstr "" "Chyba při otevírání síťového připojení k %s pro ověření dostupnosti " "aktualizací. Ověřte si prosím, zda máte funkční síťové připojení." #: ../bleachbit/CLI.py:106 #, python-format msgid "not a valid cleaner: %s" msgstr "neplatný čistič: %s" #. TRANSLATORS: This is the command line usage. Don't translate #. %prog, but do translate usage, options, cleaner, and option. #. More information about the command line is here #. https://www.bleachbit.org/documentation/command-line #: ../bleachbit/CLI.py:133 msgid "usage: %prog [options] cleaner.option1 cleaner.option2" msgstr "použití: %prog [volby] cistic.volba1 cistic.volba2" #: ../bleachbit/CLI.py:136 msgid "list cleaners" msgstr "zobrazit seznam čističů" #. TRANSLATORS: predefined cleaners are for applications, such as Firefox and Flash. #. This is different than cleaning an arbitrary file, such as a #. spreadsheet on the desktop. #: ../bleachbit/CLI.py:141 msgid "run cleaners to delete files and make other permanent changes" msgstr "" "spustit čistič pro smazání souborů a provedení dalších nevratných změn" #: ../bleachbit/CLI.py:144 msgid "shred specific files or folders" msgstr "skartovat konkrétní soubory nebo složky" #: ../bleachbit/CLI.py:146 msgid "show system information" msgstr "zobrazit informace o systému" #: ../bleachbit/CLI.py:148 msgid "launch the graphical interface" msgstr "spustit grafické rozhraní" #: ../bleachbit/CLI.py:152 msgid "do not prompt for administrator privileges" msgstr "nedotazovat se na oprávnění správce systému" #: ../bleachbit/CLI.py:157 msgid "preview files to be deleted and other changes" msgstr "zobrazit soubory, které budou smazány a další změny" #: ../bleachbit/CLI.py:161 msgid "use options set in the graphical interface" msgstr "použít volby nastavené v grafickém rozhraní" #: ../bleachbit/CLI.py:164 msgid "update winapp2.ini, if a new version is available" msgstr "aktualizovat winapp2.ini, jestliže je dostupná nová verze" #: ../bleachbit/CLI.py:166 msgid "output version information and exit" msgstr "zobrazit informaci o verzi a skončit" #: ../bleachbit/CLI.py:168 msgid "overwrite files to hide contents" msgstr "přepsáním souborů skrýt obsah" #. TRANSLATORS: this is the context menu #: ../bleachbit/Action.py:382 ../bleachbit/GUI.py:632 msgid "Clean" msgstr "Vyčistit" #: ../bleachbit/Action.py:418 #, python-format msgid "Run external command: %s" msgstr "Spuštěn externí příkaz: %s" #: ../bleachbit/GUI.py:135 ../bleachbit/GuiPreferences.py:296 msgid "Name" msgstr "Název" #: ../bleachbit/GUI.py:143 msgid "Active" msgstr "Aktivní" #. TRANSLATORS: Size is the label for the column that shows how #. much space an option would clean or did clean #: ../bleachbit/GUI.py:155 msgid "Size" msgstr "Velikost" #. TRANSLATORS: %(cleaner) may be Firefox, System, etc. #. %(option) may be cache, logs, cookies, etc. #. %(warning) may be 'This option is really slow' #: ../bleachbit/GUI.py:186 #, python-format msgid "" "Warning regarding %(cleaner)s - %(option)s:\n" "\n" "%(warning)s" msgstr "" "Varování týkající se %(cleaner)s - %(option)s:\n" "\n" "%(warning)s" #: ../bleachbit/GUI.py:372 msgid "You must select an operation" msgstr "Nejprve musíte zvolit operaci" #: ../bleachbit/GUI.py:391 ../bleachbit/GUI.py:413 msgid "Done." msgstr "Hotovo." #: ../bleachbit/GUI.py:426 msgid "Program to clean unnecessary files" msgstr "Aplikace pro vyčištění od zbytečných souborů" #: ../bleachbit/GUI.py:436 msgid "" "GNU General Public License version 3 or later.\n" "See http://www.gnu.org/licenses/gpl-3.0.txt" msgstr "" "GNU General Public License verze 3 nebo pozdější.\n" "Viz http://www.gnu.org/licenses/gpl-3.0.txt" #. TRANSLATORS: Maintain the names of translators here. #. Launchpad does this automatically for translations #. typed in Launchpad. This is a special string shown #. in the 'About' box. #: ../bleachbit/GUI.py:442 msgid "translator-credits" msgstr "" "Launchpad Contributions:\n" " Clon https://launchpad.net/~fillip1\n" " Kuvaly [LCT] https://launchpad.net/~kuvaly\n" " Milan Horák https://launchpad.net/~sinyaweo\n" " Milan Slovák https://launchpad.net/~milboys\n" " Pavel Borecki https://launchpad.net/~pavel-borecki\n" " Roman Horník https://launchpad.net/~roman.hornik\n" " Tadeáš Pařík https://launchpad.net/~pariktadeas\n" " arrange https://launchpad.net/~samozrejmost\n" " fanox https://launchpad.net/~any1" #: ../bleachbit/GUI.py:454 msgid "System information" msgstr "Informace o systému" #: ../bleachbit/GUI.py:527 msgid "Choose files to shred" msgstr "Vyberte soubory ke skartaci" #: ../bleachbit/GUI.py:530 msgid "Choose folder to shred" msgstr "Vyberte složku ke skartaci" #: ../bleachbit/GUI.py:594 ../bleachbit/GuiPreferences.py:197 #: ../bleachbit/GuiPreferences.py:326 ../bleachbit/GuiPreferences.py:367 msgid "Choose a folder" msgstr "Zvolte složku" #. TRANSLATORS: this is the context menu #: ../bleachbit/GUI.py:627 msgid "Preview" msgstr "Náhled" #: ../bleachbit/GUI.py:734 msgid "_Shred Files" msgstr "_Skartovat soubory" #: ../bleachbit/GUI.py:736 msgid "Sh_red Folders" msgstr "Ska_rtovat složky" #: ../bleachbit/GUI.py:738 msgid "_Wipe Free Space" msgstr "_Vyčistit volné místo na disku" #: ../bleachbit/GUI.py:740 msgid "S_hred Settings and Quit" msgstr "Skar_tovat nastavení a ukončit" #: ../bleachbit/GUI.py:742 msgid "_Quit" msgstr "U_končit" #: ../bleachbit/GUI.py:744 msgid "_File" msgstr "_Soubor" #: ../bleachbit/GUI.py:746 ../bleachbit/GuiPreferences.py:58 msgid "Preferences" msgstr "Předvolby" #: ../bleachbit/GUI.py:747 msgid "_Edit" msgstr "Úp_ravy" #: ../bleachbit/GUI.py:748 msgid "Help Contents" msgstr "Obsah nápovědy" #: ../bleachbit/GUI.py:751 msgid "_Release Notes" msgstr "Po_známky k vydání" #: ../bleachbit/GUI.py:754 msgid "_System Information" msgstr "Informace o _systému" #: ../bleachbit/GUI.py:757 msgid "_About" msgstr "O _aplikaci" #: ../bleachbit/GUI.py:758 msgid "_Help" msgstr "_Nápověda" #: ../bleachbit/GUI.py:783 msgctxt "button" msgid "Preview" msgstr "Náhled" #: ../bleachbit/GUI.py:788 msgid "Preview files in the selected operations (without deleting any files)" msgstr "Náhled souborů ve vybraných operacích (bez mazání)" #: ../bleachbit/GUI.py:798 msgctxt "button" msgid "Clean" msgstr "Vyčistit" #: ../bleachbit/GUI.py:802 msgid "Clean files in the selected operations" msgstr "Vyčistit soubory ve zvolených operacích" #: ../bleachbit/GUI.py:893 msgid "Error when checking for updates: " msgstr "Chyba při ověřování aktualizací: " #: ../bleachbit/GUI.py:932 msgid "" "Error loading the SQLite module: the antivirus software may be blocking it." msgstr "" "Chyba při načítání modulu SQLite: může být zablokován antivirovým programem." #: ../bleachbit/GUI.py:935 msgid "" "You are running BleachBit with administrative privileges for cleaning shared " "parts of the system, and references to the user profile folder will clean " "only the root account." msgstr "" "Nyní používáte BleachBit s administrátorskými právy, se kterým mohou být " "čištěny sdílené systémové části a soubory uživatele root v jeho složce." #: ../bleachbit/GUI.py:940 msgid "" "Run BleachBit with administrator privileges to improve the accuracy of " "overwriting the contents of files." msgstr "" "Přesnost přepsání obsahu souborů zvýšíte spuštěním Bleachbit s právy správce " "systému." #: ../bleachbit/GuiPreferences.py:64 msgid "General" msgstr "Obecné" #: ../bleachbit/GuiPreferences.py:67 msgid "Drives" msgstr "Disky" #: ../bleachbit/GuiPreferences.py:70 msgid "Languages" msgstr "Jazyky" #: ../bleachbit/GuiPreferences.py:72 msgid "Whitelist" msgstr "Seznam povolených" #: ../bleachbit/GuiPreferences.py:117 msgid "Check periodically for software updates via the Internet" msgstr "Pravidelně ověřovat aktualizace BleachBitu přes Internet" #: ../bleachbit/GuiPreferences.py:122 msgid "" "If an update is found, you will be given the option to view information " "about it. Then, you may manually download and install the update." msgstr "" "Je-li nová verze BleachBitu dostupná, budete mít možnost zobrazit si o ní " "informace. Poté si ji můžete ručně stáhnout a nainstalovat." #: ../bleachbit/GuiPreferences.py:128 msgid "Check for new beta releases" msgstr "Kontrolovat pro nové betaverze" #: ../bleachbit/GuiPreferences.py:137 msgid "Download and update cleaners from community (winapp2.ini)" msgstr "Stáhnout a aktualizovat komunitní čističe (winapp2.ini)" #. TRANSLATORS: This means to hide cleaners which would do #. nothing. For example, if Firefox were never used on #. this system, this option would hide Firefox to simplify #. the list of cleaners. #: ../bleachbit/GuiPreferences.py:151 msgid "Hide irrelevant cleaners" msgstr "Skrýt nepodstatné čističe" #. TRANSLATORS: Overwriting is the same as shredding. It is a way #. to prevent recovery of the data. You could also translate #. 'Shred files to prevent recovery.' #: ../bleachbit/GuiPreferences.py:159 msgid "Overwrite contents of files to prevent recovery" msgstr "Přepsat obsah tak aby ze zabránilo obnovení dat" #: ../bleachbit/GuiPreferences.py:163 msgid "" "Overwriting is ineffective on some file systems and with certain BleachBit " "operations. Overwriting is significantly slower." msgstr "" "Přepisování je na některých souborových systémech a s některými operacemi " "BleachBitu neúčinné. Přepisování je navíc výrazně pomalejší. V případě " "provozu na discích SSD volbu vypněte." #: ../bleachbit/GuiPreferences.py:166 msgid "Start BleachBit with computer" msgstr "Spouštět BleachBit při startu systému" #: ../bleachbit/GuiPreferences.py:172 msgid "Exit after cleaning" msgstr "Po čištění ukončit" #: ../bleachbit/GuiPreferences.py:178 msgid "Confirm before delete" msgstr "Potvrzení před smazáním" #: ../bleachbit/GuiPreferences.py:186 msgid "Use IEC sizes (1 KiB = 1024 bytes) instead of SI (1 kB = 1000 bytes)" msgstr "" "Použít jednotky IEC (1KiB = 1024 bajtů) namísto SI (1kB = 1000 bajtů)" #: ../bleachbit/GuiPreferences.py:221 msgid "" "Choose a writable folder for each drive for which to overwrite free space." msgstr "" "Zvolte vámi zapisovatelnou složku každého disku/oddílu, na němž má být " "přepsáno volné místo." #. TRANSLATORS: In the preferences dialog, this button adds a path to #. the list of paths #: ../bleachbit/GuiPreferences.py:243 msgctxt "button" msgid "Add" msgstr "Přidat" #. TRANSLATORS: In the preferences dialog, this button removes a path #. from the list of paths #: ../bleachbit/GuiPreferences.py:247 ../bleachbit/GuiPreferences.py:458 msgctxt "button" msgid "Remove" msgstr "Odstranit" #: ../bleachbit/GuiPreferences.py:272 msgid "All languages will be deleted except those checked." msgstr "Všechny jazykové překlady kromě označených budou smazány" #: ../bleachbit/GuiPreferences.py:288 msgid "Preserve" msgstr "Zachovat" #: ../bleachbit/GuiPreferences.py:292 msgid "Code" msgstr "Kód" #: ../bleachbit/GuiPreferences.py:313 ../bleachbit/GuiPreferences.py:354 msgid "Choose a file" msgstr "Zvolte soubor" #: ../bleachbit/GuiPreferences.py:320 ../bleachbit/GuiPreferences.py:361 #: ../bleachbit/GuiPreferences.py:405 msgid "File" msgstr "Soubor" #: ../bleachbit/GuiPreferences.py:334 ../bleachbit/GuiPreferences.py:375 #: ../bleachbit/GuiPreferences.py:407 msgid "Folder" msgstr "Složka" #: ../bleachbit/GuiPreferences.py:417 msgid "Theses paths will not be deleted or modified." msgstr "Tato umístění nemohou být smazána či upravena." #: ../bleachbit/GuiPreferences.py:420 msgid "These locations can be selected for deletion." msgstr "Tato umístění mohou být vybrána pro smazání." #: ../bleachbit/GuiPreferences.py:428 msgid "Type" msgstr "Typ" #. TRANSLATORS: In the tree view "Path" is used generically to refer to a #. file, a folder, or a pattern describing either #: ../bleachbit/GuiPreferences.py:434 msgid "Path" msgstr "Umístění" #: ../bleachbit/GuiPreferences.py:446 msgctxt "button" msgid "Add file" msgstr "Přidat soubor" #: ../bleachbit/GuiPreferences.py:452 msgctxt "button" msgid "Add folder" msgstr "Přidat složku" bleachbit-2.0/po/it.po0000644000175000017500000013673613245436307013013 0ustar hlehle# Italian translation for bleachbit # Copyright (c) 2009 Rosetta Contributors and Canonical Ltd 2009 # This file is distributed under the same license as the bleachbit package. # FIRST AUTHOR , 2009. # msgid "" msgstr "" "Project-Id-Version: bleachbit\n" "Report-Msgid-Bugs-To: FULL NAME \n" "POT-Creation-Date: 2017-02-11 11:12-0700\n" "PO-Revision-Date: 2017-02-15 08:22+0000\n" "Last-Translator: Luca Ciavatta \n" "Language-Team: Italian \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n != 1;\n" "X-Launchpad-Export-Date: 2017-02-16 05:00+0000\n" "X-Generator: Launchpad (build 18326)\n" #: ../cleaners/mc.xml ../cleaners/tortoisesvn.xml ../cleaners/vim.xml #: ../cleaners/safari.xml ../cleaners/links2.xml ../cleaners/seamonkey.xml #: ../cleaners/realplayer.xml ../cleaners/windows_defender.xml #: ../cleaners/d4x.xml ../cleaners/sqlite3.xml #: ../cleaners/internet_explorer.xml ../cleaners/libreoffice.xml #: ../cleaners/easytag.xml ../cleaners/bash.xml ../cleaners/nautilus.xml #: ../cleaners/octave.xml ../cleaners/elinks.xml ../cleaners/chromium.xml #: ../cleaners/google_chrome.xml msgid "History" msgstr "Cronologia" #: ../cleaners/mc.xml ../cleaners/tortoisesvn.xml ../cleaners/links2.xml #: ../cleaners/realplayer.xml ../cleaners/d4x.xml ../cleaners/libreoffice.xml #: ../cleaners/easytag.xml ../cleaners/nautilus.xml ../cleaners/gnome.xml #: ../bleachbit/Cleaner.py:349 ../bleachbit/Cleaner.py:423 #: ../bleachbit/Cleaner.py:432 msgid "Delete the usage history" msgstr "Elimina la cronologia d'uso" #: ../cleaners/gpodder.xml ../cleaners/hippo_opensim_viewer.xml #: ../cleaners/thumbnails.xml ../cleaners/safari.xml ../cleaners/emesene.xml #: ../cleaners/liferea.xml ../cleaners/seamonkey.xml ../cleaners/vuze.xml #: ../cleaners/yahoo_messenger.xml ../cleaners/pidgin.xml #: ../cleaners/adobe_reader.xml ../cleaners/evolution.xml #: ../cleaners/tremulous.xml ../cleaners/libreoffice.xml ../cleaners/xine.xml #: ../cleaners/nexuiz.xml ../cleaners/exaile.xml ../cleaners/opera.xml #: ../cleaners/amsn.xml ../cleaners/gftp.xml ../cleaners/miro.xml #: ../cleaners/beagle.xml ../cleaners/kde.xml ../cleaners/epiphany.xml #: ../cleaners/flash.xml ../cleaners/secondlife_viewer.xml ../cleaners/java.xml #: ../cleaners/chromium.xml ../cleaners/audacious.xml ../cleaners/rhythmbox.xml #: ../cleaners/google_chrome.xml ../cleaners/thunderbird.xml #: ../bleachbit/Cleaner.py:192 ../bleachbit/Cleaner.py:370 #: ../bleachbit/Cleaner.py:455 msgid "Cache" msgstr "Cache" #: ../cleaners/gpodder.xml ../cleaners/yum.xml #: ../cleaners/hippo_opensim_viewer.xml ../cleaners/thumbnails.xml #: ../cleaners/windows_explorer.xml ../cleaners/liferea.xml #: ../cleaners/vuze.xml ../cleaners/yahoo_messenger.xml ../cleaners/pidgin.xml #: ../cleaners/adobe_reader.xml ../cleaners/evolution.xml #: ../cleaners/libreoffice.xml ../cleaners/apt.xml ../cleaners/xine.xml #: ../cleaners/nexuiz.xml ../cleaners/exaile.xml ../cleaners/amsn.xml #: ../cleaners/gftp.xml ../cleaners/miro.xml ../cleaners/beagle.xml #: ../cleaners/kde.xml ../cleaners/flash.xml ../cleaners/secondlife_viewer.xml #: ../cleaners/java.xml ../cleaners/audacious.xml ../cleaners/rhythmbox.xml #: ../bleachbit/Cleaner.py:370 ../bleachbit/Cleaner.py:455 #: ../bleachbit/Cleaner.py:489 ../bleachbit/Cleaner.py:491 msgid "Delete the cache" msgstr "Elimina la cache" #. TRANSLATORS: Vacuum is a verb. The term is jargon #. from the SQLite database. Microsoft Access uses #. the term 'Compact Database' (which you may translate #. instead). Another synonym is 'defragment.' #: ../cleaners/gpodder.xml ../cleaners/yum.xml ../cleaners/safari.xml #: ../cleaners/liferea.xml ../cleaners/chromium.xml #: ../cleaners/google_chrome.xml ../cleaners/thunderbird.xml #: ../bleachbit/Cleaner.py:214 ../bleachbit/Cleaner.py:360 #: ../bleachbit/Action.py:445 msgid "Vacuum" msgstr "Compattazione del database" #: ../cleaners/gpodder.xml ../cleaners/yum.xml ../cleaners/safari.xml #: ../cleaners/liferea.xml ../cleaners/chromium.xml #: ../cleaners/google_chrome.xml ../cleaners/thunderbird.xml #: ../bleachbit/Cleaner.py:215 msgid "" "Clean database fragmentation to reduce space and improve speed without " "removing any data" msgstr "" "Elimina la frammentazione dei database per ottimizzare lo spazio e " "migliorare la velocità senza rimuovere alcun dato" #: ../cleaners/yum.xml ../cleaners/apt.xml msgid "Package manager" msgstr "Gestore pacchetti" #: ../cleaners/warzone2100.xml ../cleaners/hippo_opensim_viewer.xml #: ../cleaners/gl-117.xml ../cleaners/tremulous.xml ../cleaners/nexuiz.xml #: ../cleaners/secondlife_viewer.xml msgid "Game" msgstr "Gioco" #: ../cleaners/warzone2100.xml ../cleaners/hippo_opensim_viewer.xml #: ../cleaners/teamviewer.xml ../cleaners/realplayer.xml ../cleaners/vuze.xml #: ../cleaners/yahoo_messenger.xml ../cleaners/amule.xml #: ../cleaners/easytag.xml ../cleaners/exaile.xml ../cleaners/screenlets.xml #: ../cleaners/gftp.xml ../cleaners/miro.xml ../cleaners/audacious.xml #: ../bleachbit/Cleaner.py:486 msgid "Logs" msgstr "Registri" #: ../cleaners/warzone2100.xml ../cleaners/hippo_opensim_viewer.xml #: ../cleaners/teamviewer.xml ../cleaners/realplayer.xml ../cleaners/vuze.xml #: ../cleaners/yahoo_messenger.xml ../cleaners/amule.xml ../cleaners/exaile.xml #: ../cleaners/screenlets.xml ../cleaners/gftp.xml ../cleaners/miro.xml #: ../cleaners/audacious.xml ../bleachbit/Cleaner.py:486 msgid "Delete the logs" msgstr "Elimina i registri" #: ../cleaners/thumbnails.xml ../cleaners/windows_explorer.xml msgid "Thumbnails" msgstr "Miniature" #: ../cleaners/thumbnails.xml msgid "Icons for files on the system" msgstr "Icone per i file di sistema" #: ../cleaners/vim.xml ../cleaners/gedit.xml msgid "Editor" msgstr "Editor" #: ../cleaners/vim.xml msgid "" "Delete ~/.viminfo which includes file history, command history, and buffers" msgstr "" "Elimina il file ~/.viminfo che contiene la cronologia dei file, dei comandi " "e i buffer" #: ../cleaners/filezilla.xml ../cleaners/transmission.xml ../cleaners/vuze.xml #: ../cleaners/amule.xml ../cleaners/gftp.xml msgid "File transfer client" msgstr "Programma di trasferimento file" #: ../cleaners/filezilla.xml ../cleaners/paint.xml #: ../cleaners/windows_media_player.xml ../cleaners/windows_explorer.xml #: ../cleaners/teamviewer.xml ../cleaners/microsoft_office.xml #: ../cleaners/vlc.xml ../cleaners/adobe_reader.xml ../cleaners/winamp.xml #: ../cleaners/winzip.xml ../cleaners/winrar.xml ../cleaners/audacious.xml #: ../cleaners/wordpad.xml ../bleachbit/Cleaner.py:371 msgid "Most recently used" msgstr "Documenti recenti" #: ../cleaners/filezilla.xml ../cleaners/windows_explorer.xml #: ../cleaners/gwenview.xml ../cleaners/adobe_reader.xml ../cleaners/gedit.xml #: ../cleaners/kde.xml ../cleaners/audacious.xml ../bleachbit/Cleaner.py:372 #: ../bleachbit/Cleaner.py:469 msgid "Delete the list of recently used documents" msgstr "Elimina l'elenco dei documenti recenti" #: ../cleaners/skype.xml ../cleaners/emesene.xml #: ../cleaners/yahoo_messenger.xml ../cleaners/pidgin.xml ../cleaners/amsn.xml msgid "Chat client" msgstr "Client di messaggistica istantanea" #: ../cleaners/skype.xml ../cleaners/hexchat.xml ../cleaners/emesene.xml #: ../cleaners/seamonkey.xml ../cleaners/yahoo_messenger.xml #: ../cleaners/pidgin.xml ../cleaners/amsn.xml msgid "Chat logs" msgstr "Registri delle conversazioni" #: ../cleaners/skype.xml ../cleaners/hexchat.xml ../cleaners/emesene.xml #: ../cleaners/seamonkey.xml ../cleaners/yahoo_messenger.xml #: ../cleaners/pidgin.xml ../cleaners/amsn.xml msgid "Delete the chat logs" msgstr "Elimina i registri delle conversazioni" #: ../cleaners/skype.xml msgid "Installers" msgstr "Programmi di installazione" #: ../cleaners/skype.xml msgid "Delete cached patches and installers" msgstr "Elimina le patch e gli installatori nella cache" #: ../cleaners/hexchat.xml msgid "IRC client formerly known as XChat" msgstr "Client IRC precedentemente noto come XChat" #: ../cleaners/safari.xml ../cleaners/links2.xml ../cleaners/seamonkey.xml #: ../cleaners/konqueror.xml ../cleaners/internet_explorer.xml #: ../cleaners/opera.xml ../cleaners/epiphany.xml ../cleaners/elinks.xml #: ../cleaners/chromium.xml ../cleaners/google_chrome.xml #: ../bleachbit/Cleaner.py:226 msgid "Web browser" msgstr "Browser web" #: ../cleaners/safari.xml ../cleaners/seamonkey.xml ../cleaners/opera.xml #: ../cleaners/epiphany.xml ../cleaners/chromium.xml #: ../cleaners/google_chrome.xml ../cleaners/thunderbird.xml #: ../bleachbit/Cleaner.py:193 msgid "Delete the web cache, which reduces time to display revisited pages" msgstr "" "Elimina la cache web, la quale riduce il tempo di visualizzazione di pagine " "già visitate" #: ../cleaners/safari.xml ../cleaners/liferea.xml ../cleaners/seamonkey.xml #: ../cleaners/realplayer.xml ../cleaners/konqueror.xml #: ../cleaners/internet_explorer.xml ../cleaners/opera.xml #: ../cleaners/epiphany.xml ../cleaners/flash.xml ../cleaners/silverlight.xml #: ../cleaners/chromium.xml ../cleaners/google_chrome.xml #: ../cleaners/thunderbird.xml ../bleachbit/Cleaner.py:194 msgid "Cookies" msgstr "Cookie" #: ../cleaners/safari.xml ../cleaners/liferea.xml ../cleaners/seamonkey.xml #: ../cleaners/realplayer.xml ../cleaners/konqueror.xml #: ../cleaners/internet_explorer.xml ../cleaners/opera.xml #: ../cleaners/epiphany.xml ../cleaners/flash.xml ../cleaners/silverlight.xml #: ../cleaners/chromium.xml ../cleaners/google_chrome.xml #: ../cleaners/thunderbird.xml ../bleachbit/Cleaner.py:195 msgid "" "Delete cookies, which contain information such as web site preferences, " "authentication, and tracking identification" msgstr "" "Elimina i cookie che contengono informazioni come preferenze dei siti web, " "credenziali d'accesso e di identificazione" #: ../cleaners/safari.xml ../cleaners/konqueror.xml #: ../cleaners/internet_explorer.xml ../cleaners/opera.xml #: ../bleachbit/Cleaner.py:213 msgid "List of visited web pages" msgstr "Elenco dei siti web visitati" #. Torrent software can block a list of IP addresses, such as those that may belong to malware or anti-piracy organizations #: ../cleaners/transmission.xml msgid "Blocklists" msgstr "Lista di indirizzi IP da bloccare" #: ../cleaners/transmission.xml ../cleaners/windows_defender.xml #: ../cleaners/beagle.xml ../cleaners/thunderbird.xml ../cleaners/deepscan.xml #: ../bleachbit/Cleaner.py:197 msgid "Delete the files" msgstr "Elimina i file" #: ../cleaners/transmission.xml msgid "Blocklists will need update to work." msgstr "" "La lista degli indirizzi IP da bloccare deve essere aggiornata per funzionare" #: ../cleaners/transmission.xml msgid "Torrents" msgstr "Torrent" #: ../cleaners/transmission.xml msgid "Delete the torrents (just the metadata but not the files described)" msgstr "Cancella i torrent (solo i metadati ma non i file descritti)" #: ../cleaners/transmission.xml msgid "Statistics" msgstr "Statistiche" #: ../cleaners/transmission.xml msgid "Delete the file" msgstr "Cancellare il file" #: ../cleaners/paint.xml ../cleaners/windows_media_player.xml #: ../cleaners/windows_explorer.xml ../cleaners/teamviewer.xml #: ../cleaners/microsoft_office.xml ../cleaners/vlc.xml ../cleaners/winamp.xml #: ../cleaners/winzip.xml ../cleaners/winrar.xml ../cleaners/wordpad.xml msgid "Delete the most recently used list" msgstr "Elimina l'elenco dei documenti recenti" #: ../cleaners/emesene.xml msgid "Delete the avatars and emoticons cache" msgstr "Elimina la cache degli avatar e degli emoticon" #: ../cleaners/windows_media_player.xml ../cleaners/realplayer.xml #: ../cleaners/vlc.xml ../cleaners/winamp.xml msgid "Media player" msgstr "Lettore multimediale" #: ../cleaners/windows_explorer.xml ../cleaners/nautilus.xml msgid "File manager" msgstr "Gestore di file" #: ../cleaners/windows_explorer.xml ../cleaners/gwenview.xml #: ../cleaners/gedit.xml ../cleaners/kde.xml ../bleachbit/Cleaner.py:468 #: ../bleachbit/Cleaner.py:663 msgid "Recent documents list" msgstr "Elenco dei documenti recenti" #: ../cleaners/windows_explorer.xml msgid "" "This option will reset pinned locations in Quick Access to their defaults." msgstr "" "Questa opzione consente di ripristinare le posizioni segnate in Accesso " "Rapido ai valori predefiniti." #. In Windows 'Run' is the dialog in the Start menu #. In GNOME 'Run' is the dialog shown when typing ALT+F2' #: ../cleaners/windows_explorer.xml ../cleaners/gnome.xml msgid "Run" msgstr "Esegui" #: ../cleaners/windows_explorer.xml ../cleaners/opera.xml ../cleaners/gnome.xml #: ../cleaners/google_toolbar.xml msgid "Search history" msgstr "Cronologia ricerche" #: ../cleaners/windows_explorer.xml ../cleaners/opera.xml ../cleaners/gnome.xml #: ../cleaners/google_toolbar.xml msgid "Delete the search history" msgstr "Elimina la cronologia ricerche" #: ../cleaners/windows_explorer.xml msgid "This will restart Windows Explorer." msgstr "Effettua il riavvio di Windows Explorer." #: ../cleaners/gl-117.xml ../cleaners/microsoft_office.xml #: ../cleaners/beagle.xml ../cleaners/secondlife_viewer.xml ../cleaners/x11.xml msgid "Debug logs" msgstr "Registri di debug" #: ../cleaners/gl-117.xml ../cleaners/microsoft_office.xml #: ../cleaners/easytag.xml ../cleaners/beagle.xml #: ../cleaners/secondlife_viewer.xml ../cleaners/x11.xml msgid "Delete the debug logs" msgstr "Elimina i registri di debug" #: ../cleaners/google_earth.xml ../cleaners/winetricks.xml ../cleaners/vuze.xml #: ../cleaners/adobe_reader.xml ../cleaners/amule.xml ../cleaners/wine.xml #: ../cleaners/internet_explorer.xml ../cleaners/gimp.xml ../cleaners/kde.xml #: ../cleaners/deepscan.xml ../bleachbit/Cleaner.py:520 msgid "Temporary files" msgstr "File temporanei" #: ../cleaners/google_earth.xml ../cleaners/winetricks.xml ../cleaners/vuze.xml #: ../cleaners/adobe_reader.xml ../cleaners/amule.xml ../cleaners/wine.xml #: ../cleaners/internet_explorer.xml ../cleaners/gimp.xml ../cleaners/kde.xml #: ../cleaners/deepscan.xml ../bleachbit/Cleaner.py:520 msgid "Delete the temporary files" msgstr "Elimina i file temporanei" #: ../cleaners/seamonkey.xml ../cleaners/opera.xml ../bleachbit/Cleaner.py:201 msgid "Download history" msgstr "Cronologia dei download" #: ../cleaners/seamonkey.xml ../cleaners/opera.xml ../bleachbit/Cleaner.py:201 msgid "List of files downloaded" msgstr "Elenco dei file scaricati" #: ../cleaners/seamonkey.xml msgid "Delete the list of visited web pages" msgstr "Elimina l'elenco dei siti web visitati" #: ../cleaners/vuze.xml ../cleaners/deepscan.xml ../bleachbit/Cleaner.py:190 msgid "Backup files" msgstr "File di backup" #: ../cleaners/vuze.xml ../cleaners/deepscan.xml ../bleachbit/Cleaner.py:191 msgid "Delete the backup files" msgstr "Elimina i file di backup" #: ../cleaners/konqueror.xml ../cleaners/opera.xml ../cleaners/chromium.xml msgid "Current session" msgstr "Sessione corrente" #: ../cleaners/konqueror.xml ../cleaners/opera.xml ../cleaners/chromium.xml msgid "Delete the current session" msgstr "Elimina la sessione corrente" #: ../cleaners/konqueror.xml ../cleaners/opera.xml ../bleachbit/Cleaner.py:213 msgid "URL history" msgstr "Cronologia degli indirizzi web" #: ../cleaners/microsoft_office.xml ../cleaners/libreoffice.xml #: ../bleachbit/Cleaner.py:375 msgid "Office suite" msgstr "Suite per l'ufficio" #: ../cleaners/windows_defender.xml msgid "Anti-virus" msgstr "Anti-virus" #: ../cleaners/journald.xml msgid "System journals" msgstr "Diario di sistema" #: ../cleaners/journald.xml msgid "Clean old system journals" msgstr "Elimina i vecchi diari di sistema" #: ../cleaners/adobe_reader.xml msgid "Document viewer" msgstr "Visualizzatore di documenti" #: ../cleaners/evolution.xml ../cleaners/thunderbird.xml msgid "Email client" msgstr "Client Email" #: ../cleaners/tremulous.xml msgid "Delete the list of game servers" msgstr "Elimina l'elenco dei server di gioco" #: ../cleaners/sqlite3.xml ../cleaners/bash.xml ../cleaners/octave.xml msgid "Delete the command history" msgstr "Elimina la cronologia dei comandi" #: ../cleaners/wine.xml msgid "Compatibility layer for Windows software" msgstr "Strato sw di compatibilità per programmi Windows" #: ../cleaners/internet_explorer.xml ../cleaners/chromium.xml #: ../cleaners/google_chrome.xml ../bleachbit/Cleaner.py:202 msgid "Form history" msgstr "Cronologia dei moduli" #: ../cleaners/internet_explorer.xml ../bleachbit/Cleaner.py:203 msgid "A history of forms entered in web sites and in the Search bar" msgstr "" "Una cronologia dei moduli compilati nei siti web e nella barra di ricerca" #. This software edits metadata tags, such as title and artist, in audio files #: ../cleaners/easytag.xml msgid "Audio files tagger" msgstr "Editor di etichette dei file audio" #: ../cleaners/apt.xml msgid "Delete obsolete files" msgstr "Elimina i file obsoleti" #: ../cleaners/apt.xml msgid "Package lists" msgstr "Lista dei pacchetti" #: ../cleaners/xine.xml ../cleaners/miro.xml ../cleaners/flash.xml msgid "Multimedia viewer" msgstr "Lettore multimediale" #: ../cleaners/recoll.xml ../cleaners/beagle.xml msgid "Search tool" msgstr "Strumento di indicizzazione e ricerca file" #: ../cleaners/recoll.xml ../cleaners/beagle.xml ../cleaners/thunderbird.xml msgid "Index" msgstr "Indice" #: ../cleaners/recoll.xml msgid "" "Delete the search index, a database of words and the files they contain" msgstr "" "Elimina l'indice di ricerca (un database di parole e i file che le " "contengono)" #: ../cleaners/gimp.xml msgid "Graphics editor" msgstr "Programma di fotoritocco" #: ../cleaners/exaile.xml msgid "Downloaded podcasts" msgstr "Podcast scaricati" #: ../cleaners/exaile.xml msgid "Delete downloaded podcasts" msgstr "Elimina i podcast scaricati" #: ../cleaners/bash.xml msgid "Shell" msgstr "Shell" #. TRANSLATORS: DOM = Document Object Model. #: ../cleaners/opera.xml ../cleaners/epiphany.xml ../cleaners/chromium.xml #: ../cleaners/google_chrome.xml ../bleachbit/Cleaner.py:199 msgid "DOM Storage" msgstr "Archivio DOM" #: ../cleaners/opera.xml ../cleaners/epiphany.xml ../cleaners/chromium.xml #: ../cleaners/google_chrome.xml ../bleachbit/Cleaner.py:199 msgid "Delete HTML5 cookies" msgstr "Elimina i cookie di HTML5" #: ../cleaners/opera.xml ../cleaners/epiphany.xml ../cleaners/chromium.xml #: ../cleaners/google_chrome.xml ../cleaners/thunderbird.xml #: ../bleachbit/Cleaner.py:208 msgid "Passwords" msgstr "Password" #: ../cleaners/opera.xml ../cleaners/epiphany.xml ../cleaners/chromium.xml #: ../cleaners/google_chrome.xml ../cleaners/thunderbird.xml #: ../bleachbit/Cleaner.py:209 msgid "" "A database of usernames and passwords as well as a list of sites that should " "not store passwords" msgstr "" "Un database di nomi utente e password nonché un elenco di siti che non " "devono memorizzare le password" #: ../cleaners/opera.xml ../cleaners/epiphany.xml ../cleaners/chromium.xml #: ../cleaners/google_chrome.xml ../cleaners/thunderbird.xml #: ../bleachbit/Cleaner.py:211 msgid "This option will delete your saved passwords." msgstr "Questa opzione cancellerà le password salvate." #: ../cleaners/nautilus.xml msgid "Custom folders will be reset." msgstr "Le cartelle personalizzate verranno reimpostate." #: ../cleaners/gnome.xml ../cleaners/kde.xml msgid "Desktop environment" msgstr "Ambiente desktop" #: ../cleaners/screenlets.xml msgid "Widgets for the desktop" msgstr "Widget per il desktop" #: ../cleaners/epiphany.xml msgid "Places" msgstr "Risorse" #: ../cleaners/epiphany.xml msgid "" "A database of URLs including bookmarks, favicons, and a history of visited " "web sites" msgstr "" "Un database di indirizzi web compresi segnalibri, icone e una cronologia dei " "siti web visitati" #: ../cleaners/epiphany.xml msgid "This option deletes all bookmarks." msgstr "Questa opzione elimina tutti i segnalibri" #: ../cleaners/winrar.xml msgid "File archiver" msgstr "Gestore archivi" #: ../cleaners/elinks.xml msgid "Delete the cookies, visited URLs, and search history" msgstr "Elimina i cookie, gli indirizzi visitati e la cronologia ricerche" #: ../cleaners/chromium.xml ../cleaners/google_chrome.xml msgid "A history of forms entered in web sites" msgstr "Una cronologia dei moduli compilati sui siti web" #: ../cleaners/chromium.xml ../cleaners/google_chrome.xml msgid "" "Delete the history which includes visited sites, downloads, and thumbnails" msgstr "" "Elimina la cronologia che comprende i siti visitati, i file scaricati e le " "miniature" #: ../cleaners/chromium.xml ../cleaners/google_chrome.xml msgid "Search engines" msgstr "Motori di ricerca" #. 'Factory' means a search engine that is installed by default 'from the factory,' but this is different than a 'default search engine' https://lists.launchpad.net/launchpad-translators/msg00283.html #: ../cleaners/chromium.xml ../cleaners/google_chrome.xml msgid "" "Reset the search engine usage history and delete non-factory search engines, " "some of which are added automatically" msgstr "" "Reimposta la cronologia d'uso del motore di ricerca ed elimina i motori di " "ricerca non preimpostati,alcuni dei quali sono stati aggiunti automaticamente" #: ../cleaners/audacious.xml msgid "Audio player" msgstr "Player audio" #: ../cleaners/rhythmbox.xml msgid "Database" msgstr "Database" #: ../cleaners/rhythmbox.xml msgid "" "Delete the database, which contain information such as play count and last " "played" msgstr "" "Eliminare il database che contiene informazioni sul numero di partite " "giocate e sull'ultima partita" #: ../cleaners/google_chrome.xml msgid "Session" msgstr "Sessione" #: ../cleaners/google_chrome.xml msgid "Delete the current and last sessions" msgstr "Elimina la sessione corrente e la precedente" #: ../cleaners/x11.xml msgid "Windowing system" msgstr "Sistema a finestre" #: ../cleaners/wordpad.xml msgid "Word processor" msgstr "Elaboratore di testi" #: ../cleaners/deepscan.xml msgid "Deep scan" msgstr "Scansione approfondita" #: ../cleaners/deepscan.xml msgid "Clean files widely scattered across the disk" msgstr "Riduce la frammentazione del disco rigido" #: ../cleaners/deepscan.xml msgid "Inspect the preview for any files you want to keep." msgstr "Esamina l'anteprima per qualsiasi file si voglia mantenere" #: ../cleaners/deepscan.xml msgid "This option is slow." msgstr "Questa procedura è lenta." #: ../bleachbit.desktop msgid "Unnecessary file cleaner" msgstr "Ripulisce file non necessari" #: ../bleachbit.desktop msgid "Free space and maintain privacy" msgstr "Libera spazio e mantiene la privacy" #: ../bleachbit/FileUtilities.py:668 msgid "" "There was at least one file on a file system that does not support advanced " "overwriting." msgstr "" "Era presente almeno un file su di un file system che non supporta la " "sovrascrittura avanzata." #: ../bleachbit/Unix.py:574 #, python-format msgid "Executable not found: %s" msgstr "Eseguibile non trovato: %s" #. TRANSLATORS: %s expands to a name such as 'Firefox' or 'System'. #: ../bleachbit/Unix.py:623 ../bleachbit/Worker.py:136 #, python-format msgid "" "%s cannot be cleaned because it is currently running. Close it, and try " "again." msgstr "" "%s è ancora aperto e non può essere eliminato. Chiuderlo e riprovare." #: ../bleachbit/GuiBasic.py:112 msgid "Delete confirmation" msgstr "Conferma di eliminazione" #: ../bleachbit/GuiBasic.py:122 msgid "" "Are you sure you want to permanently delete files according to the selected " "operations? The actual files that will be deleted may have changed since " "you ran the preview." msgstr "" "Eliminare definitivamente i file in base alle operazioni selezionate? I file " "che verranno rimossi possono aver subito modifiche dopo l'esecuzione " "dell'anteprima." #: ../bleachbit/GuiBasic.py:125 msgid "Are you sure you want to permanently delete these files?" msgstr "Eliminare definitivamente questi file?" #: ../bleachbit/GuiBasic.py:162 #, python-format msgid "" "Because you are running as root, please manually open this link in a web " "browser:\n" "%s" msgstr "" "Poiché si sta eseguendo Bleachbit come root,aprire questo collegamento in un " "browser web:\n" "%s" #. TRANSLATORS: %s expands to www.bleachbit.org or similar #: ../bleachbit/GuiBasic.py:174 #, python-format msgid "Open web browser to %s?" msgstr "Aprire il browser alla pagina %s?" #. TRANSLATORS: This is the label in the log indicating was #. skipped because it matches the whitelist #: ../bleachbit/Command.py:47 msgid "Skip" msgstr "Ometti" #. TRANSLATORS: This is the label in the log indicating will be #. deleted (for previews) or was actually deleted #: ../bleachbit/Command.py:77 msgid "Delete" msgstr "Elimina" #: ../bleachbit/Command.py:99 msgid "" "At least one file was locked by another process, so its contents could not " "be overwritten. It will be marked for deletion upon system reboot." msgstr "" "Almeno un file è stato bloccato da un altro processo, il suo contenuto non " "può essere sovrascritto. Sarà contrassegnato per l'eliminazione al riavvio " "del sistema." #. TRANSLATORS: The file will be deleted when the #. system reboots #: ../bleachbit/Command.py:102 msgid "Mark for deletion" msgstr "Seleziona per l'eliminazione" #. TRANSLATORS: Parts of this file will be deleted #: ../bleachbit/Command.py:199 ../bleachbit/Command.py:233 #: ../bleachbit/Action.py:254 ../bleachbit/Action.py:267 #: ../bleachbit/Action.py:280 ../bleachbit/Action.py:293 #: ../bleachbit/Action.py:306 msgid "Clean file" msgstr "Pulisci il file" #. TRANSLATORS: The file will be truncated to 0 bytes in length #: ../bleachbit/Command.py:275 msgid "Truncate" msgstr "Tronca" #: ../bleachbit/Command.py:317 msgid "Delete registry key" msgstr "Elimina chiave di registro" #. TRANSLATORS: This is cleaner name for cleaners imported from winapp2.ini #: ../bleachbit/Winapp.py:44 msgid "Applications" msgstr "Applicazioni" #. TRANSLATORS: This is cleaner name for cleaners imported #. from winapp2.ini #: ../bleachbit/Winapp.py:47 msgid "Internet" msgstr "Internet" #. TRANSLATORS: This is cleaner name for cleaners imported #. from winapp2.ini #: ../bleachbit/Winapp.py:50 msgid "Multimedia" msgstr "Multimedia" #. TRANSLATORS: This is cleaner name for cleaners imported #. from winapp2.ini #: ../bleachbit/Winapp.py:53 msgid "Utilities" msgstr "Utilità" #: ../bleachbit/Winapp.py:64 msgid "Games" msgstr "Giochi" #: ../bleachbit/Winapp.py:162 msgid "Imported from winapp2.ini" msgstr "Importati da winapp2.ini" #: ../bleachbit/Cleaner.py:197 msgid "Crash reports" msgstr "Resoconti di crash" #: ../bleachbit/Cleaner.py:204 msgid "Session restore" msgstr "Ripristino sessione" #: ../bleachbit/Cleaner.py:205 msgid "Loads the initial session after the browser closes or crashes" msgstr "Carica la sessione iniziale dopo la chiusura o un crash del browser" #: ../bleachbit/Cleaner.py:207 msgid "Site preferences" msgstr "Preferenze del sito" #: ../bleachbit/Cleaner.py:207 msgid "Settings for individual sites" msgstr "Impostazioni per i singoli siti" #. TRANSLATORS: desktop entries are .desktop files in Linux that #. make up the application menu (the menu that shows BleachBit, #. Firefox, and others. The .desktop files also associate file #. types, so clicking on an .html file in Nautilus brings up #. Firefox. #. More information: #. http://standards.freedesktop.org/menu-spec/latest/index.html#introduction #: ../bleachbit/Cleaner.py:453 msgid "Broken desktop files" msgstr "File desktop danneggiati" #: ../bleachbit/Cleaner.py:454 msgid "Delete broken application menu entries and file associations" msgstr "Elimina le voci di menù e le associazioni file non valide" #. TRANSLATORS: Localizations are files supporting specific #. languages, so applications appear in Spanish, etc. #: ../bleachbit/Cleaner.py:458 msgid "Localizations" msgstr "Localizzazioni" #: ../bleachbit/Cleaner.py:459 msgid "Delete files for unwanted languages" msgstr "Elimina i file delle lingue non necessarie" #: ../bleachbit/Cleaner.py:461 msgid "Configure this option in the preferences." msgstr "Configura questa opzione nelle preferenze." #: ../bleachbit/Cleaner.py:467 msgid "Rotated logs" msgstr "Registri obsoleti" #: ../bleachbit/Cleaner.py:467 msgid "Delete old system logs" msgstr "Elimina i registri di sistema obsoleti" #: ../bleachbit/Cleaner.py:470 msgid "Trash" msgstr "Cestino" #: ../bleachbit/Cleaner.py:470 msgid "Empty the trash" msgstr "Svuota il cestino" #: ../bleachbit/Cleaner.py:476 ../bleachbit/Cleaner.py:627 #: ../bleachbit/Worker.py:184 msgid "Memory" msgstr "Memoria" #. TRANSLATORS: 'free' means 'unallocated' #: ../bleachbit/Cleaner.py:478 msgid "Wipe the swap and free memory" msgstr "Pulisce lo swap e libera memoria" #: ../bleachbit/Cleaner.py:480 msgid "This option is experimental and may cause system problems." msgstr "Questa opzione è sperimentale e potrebbe causare problemi al sistema" #: ../bleachbit/Cleaner.py:488 msgid "Memory dump" msgstr "Dump della memoria" #: ../bleachbit/Cleaner.py:488 msgid "Delete the file memory.dmp" msgstr "Elimina il file memory.dmp" #. TRANSLATORS: Prefetch is Microsoft Windows jargon. #: ../bleachbit/Cleaner.py:491 msgid "Prefetch" msgstr "Precarica" #: ../bleachbit/Cleaner.py:493 msgid "Recycle bin" msgstr "Cestino" #: ../bleachbit/Cleaner.py:493 ../bleachbit/Cleaner.py:787 msgid "Empty the recycle bin" msgstr "Svuota il cestino" #. TRANSLATORS: 'Update' is a noun, and 'Update uninstallers' is an option to delete #. the uninstallers for software updates. #: ../bleachbit/Cleaner.py:496 msgid "Update uninstallers" msgstr "Aggiorna i disinstallatori" #: ../bleachbit/Cleaner.py:497 msgid "" "Delete uninstallers for Microsoft updates including hotfixes, service packs, " "and Internet Explorer updates" msgstr "" "Elimina i disinstallatori per gli aggiornamenti Microsoft che includono " "hotfix, service pack e aggiornamenti per Internet Explorer" #: ../bleachbit/Cleaner.py:504 ../bleachbit/Cleaner.py:727 msgid "Clipboard" msgstr "Appunti" #: ../bleachbit/Cleaner.py:505 msgid "" "The desktop environment's clipboard used for copy and paste operations" msgstr "" "Gli appunti dell'ambiente desktop usati per operazioni di copia e incolla" #. TRANSLATORS: "Custom" is an option allowing the user to specify which #. files and folders will be erased. #: ../bleachbit/Cleaner.py:512 ../bleachbit/GuiPreferences.py:66 msgid "Custom" msgstr "Personalizzate" #: ../bleachbit/Cleaner.py:513 msgid "Delete user-specified files and folders" msgstr "Elimina i file e le cartelle specificati dall'utente" #. TRANSLATORS: 'free' means 'unallocated' #: ../bleachbit/Cleaner.py:515 msgid "Free disk space" msgstr "Libera spazio su disco" #. TRANSLATORS: 'free' means 'unallocated' #: ../bleachbit/Cleaner.py:517 msgid "Overwrite free disk space to hide deleted files" msgstr "" "Sovrascrive lo spazio libero su disco per impedire il recupero dei file " "eliminati" #: ../bleachbit/Cleaner.py:518 msgid "This option is very slow." msgstr "Questa opzione è molto lenta." #: ../bleachbit/Cleaner.py:522 msgid "The system in general" msgstr "Il sistema in generale" #: ../bleachbit/Cleaner.py:524 ../bleachbit/Cleaner.py:857 msgid "System" msgstr "Sistema" #. TRANSLATORS: 'Free' means 'unallocated.' #. %s expands to a path such as C:\ or /tmp/ #: ../bleachbit/Cleaner.py:735 ../bleachbit/Cleaner.py:890 #, python-format msgid "Overwrite free disk space %s" msgstr "Sovrascrittura dello spazio libero su %s" #: ../bleachbit/RecognizeCleanerML.py:59 msgid "Security warning" msgstr "Avviso di sicurezza" #: ../bleachbit/RecognizeCleanerML.py:72 msgid "" "These cleaner definitions are new or have changed. Malicious definitions can " "damage your system. If you do not trust these changes, delete the files or " "quit." msgstr "" "Queste definizioni di pulitura sono nuove o sono state modificate. " "Definizioni malevole possono danneggiare il sistema. Se non ci si fida di " "questi cambiamenti, eliminare i file o uscire dal programma." #: ../bleachbit/RecognizeCleanerML.py:88 msgctxt "column_label" msgid "Delete" msgstr "Elimina" #: ../bleachbit/RecognizeCleanerML.py:93 msgctxt "column_label" msgid "Filename" msgstr "Nome file" #. TRANSLATORS: This indicates an error. The special keyword #. %(operation)s will be replaced by 'firefox' or 'opera' or #. some other cleaner ID. The special keyword %(msg)s will be #. replaced by a message such as 'Permission denied.' #: ../bleachbit/Worker.py:74 #, python-format msgid "Exception while running operation '%(operation)s': '%(msg)s'" msgstr "Errore durante l'operazione «%(operation)s»: «%(msg)s»" #. TRANSLATORS: 'free' means 'unallocated' #: ../bleachbit/Worker.py:182 msgid "Please wait. Wiping free disk space." msgstr "Attendere. Pulizia dello spazio libero in corso." #. TRANSLATORS: %s is replaced with Firefox, System, etc. #: ../bleachbit/Worker.py:184 ../bleachbit/Worker.py:332 #, python-format msgid "Please wait. Cleaning %s." msgstr "Pulizia di %s." #: ../bleachbit/Worker.py:199 msgid "Please wait. Wiping file system metadata." msgstr "Attendere, eliminazione dei metadati del file system in corso." #: ../bleachbit/Worker.py:202 msgid "Please wait. Cleaning up after wiping file system metadata." msgstr "" "Attendere. Pulizia completa dopo la rimozione dei metadati del filesystem" #: ../bleachbit/Worker.py:205 #, python-format msgid "About %d minute remaining." msgid_plural "About %d minutes remaining." msgstr[0] "Rimane circa %d minuto." msgstr[1] "Rimangono circa %d minuti" #. TRANSLATORS: This refers to disk space that was #. really recovered (in other words, not a preview) #: ../bleachbit/Worker.py:272 #, python-format msgid "Disk space recovered: %s" msgstr "Spazio su disco recuperato: %s" #. TRANSLATORS: This refers to a preview (no real #. changes were made yet) #: ../bleachbit/Worker.py:276 #, python-format msgid "Disk space to be recovered: %s" msgstr "Spazio su disco recuperabile: %s" #. TRANSLATORS: This refers to the number of files really #. deleted (in other words, not a preview). #: ../bleachbit/Worker.py:281 #, python-format msgid "Files deleted: %d" msgstr "File eliminati: %d" #. TRANSLATORS: This refers to the number of files that #. would be deleted (in other words, simply a preview). #: ../bleachbit/Worker.py:285 #, python-format msgid "Files to be deleted: %d" msgstr "File da eliminare: %d" #: ../bleachbit/Worker.py:288 #, python-format msgid "Special operations: %d" msgstr "Operazioni speciali: %d" #: ../bleachbit/Worker.py:291 #, python-format msgid "Errors: %d" msgstr "Errori: %d" #. TRANSLATORS: The "deep scan" feature searches over broad #. areas of the file system such as the user's whole home directory #. or all the system executables. #: ../bleachbit/Worker.py:306 msgid "Please wait. Running deep scan." msgstr "Attendere. Scansione approfondita in corso" #. TRANSLATORS: %s is replaced with Firefox, System, etc. #: ../bleachbit/Worker.py:335 #, python-format msgid "Please wait. Previewing %s." msgstr "Anteprima di %s." #: ../bleachbit/Update.py:80 msgid "New winapp2.ini was downloaded." msgstr "È stato scaricato un nuovo file winapp2.ini." #: ../bleachbit/Update.py:125 msgid "Update BleachBit" msgstr "Aggiorna BleachBit" #: ../bleachbit/Update.py:130 msgid "A new version is available." msgstr "È disponibile una nuova versione." #. TRANSLATORS: %s expands to version such as '0.8.4' or '0.8.5beta' or #. similar #: ../bleachbit/Update.py:139 #, python-format msgid "Update to version %s" msgstr "Aggiorna alla versione %s" #: ../bleachbit/Update.py:164 #, python-format msgid "" "Error when opening a network connection to %s to check for updates. Please " "verify the network is working." msgstr "" "Errore durante l'apertura di una connessione di rete verso %s per " "controllare gli aggiornamenti. Verificare che la rete funzioni." #: ../bleachbit/CLI.py:106 #, python-format msgid "not a valid cleaner: %s" msgstr "non è un pulitore valido: %s" #. TRANSLATORS: This is the command line usage. Don't translate #. %prog, but do translate usage, options, cleaner, and option. #. More information about the command line is here #. https://www.bleachbit.org/documentation/command-line #: ../bleachbit/CLI.py:133 msgid "usage: %prog [options] cleaner.option1 cleaner.option2" msgstr "uso: %prog [opzioni] pulitore.opzione1 pulitore.opzione2" #: ../bleachbit/CLI.py:136 msgid "list cleaners" msgstr "elenca i pulitori" #. TRANSLATORS: predefined cleaners are for applications, such as Firefox and Flash. #. This is different than cleaning an arbitrary file, such as a #. spreadsheet on the desktop. #: ../bleachbit/CLI.py:141 msgid "run cleaners to delete files and make other permanent changes" msgstr "" "esegui i pulitori per eliminare dei file e fare altre modifiche permanenti" #: ../bleachbit/CLI.py:144 msgid "shred specific files or folders" msgstr "sovrascrivi specifici file e cartelle" #: ../bleachbit/CLI.py:146 msgid "show system information" msgstr "mostra le informazioni sul sistema" #: ../bleachbit/CLI.py:148 msgid "launch the graphical interface" msgstr "lancia l'interfaccia grafica" #: ../bleachbit/CLI.py:152 msgid "do not prompt for administrator privileges" msgstr "non richiedere i privilegi dell'amministratore" #: ../bleachbit/CLI.py:157 msgid "preview files to be deleted and other changes" msgstr "anteprima dei file da eliminare e delle altre modifiche" #: ../bleachbit/CLI.py:161 msgid "use options set in the graphical interface" msgstr "usa le opzioni impostate nell'interfaccia grafica" #: ../bleachbit/CLI.py:164 msgid "update winapp2.ini, if a new version is available" msgstr "aggiorna winapp2.ini, se è disponibile una nuova versione" #: ../bleachbit/CLI.py:166 msgid "output version information and exit" msgstr "mostra le informazioni sulla versione ed esce" #: ../bleachbit/CLI.py:168 msgid "overwrite files to hide contents" msgstr "sovrascrive i file per impedirne il recupero" #. TRANSLATORS: this is the context menu #: ../bleachbit/Action.py:382 ../bleachbit/GUI.py:632 msgid "Clean" msgstr "Pulisci" #: ../bleachbit/Action.py:418 #, python-format msgid "Run external command: %s" msgstr "Eseguire comando esterno: %s" #: ../bleachbit/GUI.py:135 ../bleachbit/GuiPreferences.py:296 msgid "Name" msgstr "Nome" #: ../bleachbit/GUI.py:143 msgid "Active" msgstr "Attivo" #. TRANSLATORS: Size is the label for the column that shows how #. much space an option would clean or did clean #: ../bleachbit/GUI.py:155 msgid "Size" msgstr "Dimensioni" #. TRANSLATORS: %(cleaner) may be Firefox, System, etc. #. %(option) may be cache, logs, cookies, etc. #. %(warning) may be 'This option is really slow' #: ../bleachbit/GUI.py:186 #, python-format msgid "" "Warning regarding %(cleaner)s - %(option)s:\n" "\n" "%(warning)s" msgstr "" "Avviso riguardo %(cleaner)s - %(option)s:\n" "\n" "%(warning)s" #: ../bleachbit/GUI.py:372 msgid "You must select an operation" msgstr "Deve essere selezionata un'operazione" #: ../bleachbit/GUI.py:391 ../bleachbit/GUI.py:413 msgid "Done." msgstr "Fatto." #: ../bleachbit/GUI.py:426 msgid "Program to clean unnecessary files" msgstr "Programma per l'eliminazione di file inutili" #: ../bleachbit/GUI.py:436 msgid "" "GNU General Public License version 3 or later.\n" "See http://www.gnu.org/licenses/gpl-3.0.txt" msgstr "" "Licenza GNU General Public License, versione 3 o superiore.\n" "Consultare http://www.gnu.org/licenses/gpl-3.0.txt" #. TRANSLATORS: Maintain the names of translators here. #. Launchpad does this automatically for translations #. typed in Launchpad. This is a special string shown #. in the 'About' box. #: ../bleachbit/GUI.py:442 msgid "translator-credits" msgstr "" "Launchpad Contributions:\n" " Carml https://launchpad.net/~cleggio\n" " Claudio Arseni https://launchpad.net/~claudio.arseni\n" " Davide Notaristefano https://launchpad.net/~mokmo\n" " Gerardo Giordano https://launchpad.net/~gergio75\n" " Jacopo Tumminello https://launchpad.net/~tummarellox\n" " Luca Ciavatta https://launchpad.net/~cialu\n" " Luca Falavigna https://launchpad.net/~dktrkranz\n" " Marco Donato Torsello https://launchpad.net/~md1512\n" " Maurizio.13 https://launchpad.net/~maurizio.13\n" " Milo Casagrande https://launchpad.net/~milo\n" " Paolo Pelloni https://launchpad.net/~briga\n" " Santiago https://launchpad.net/~keteremillpario\n" " Sergio Zanchetta https://launchpad.net/~primes2h\n" " ema.gra https://launchpad.net/~ema.gra\n" " fenzy81 https://launchpad.net/~fenzy81\n" " karm https://launchpad.net/~melo-o" #: ../bleachbit/GUI.py:454 msgid "System information" msgstr "Informazioni sul sistema" #: ../bleachbit/GUI.py:527 msgid "Choose files to shred" msgstr "Scegliere i file da eliminare con sovrascrittura" #: ../bleachbit/GUI.py:530 msgid "Choose folder to shred" msgstr "Scegli la cartella da sovrascrivere" #: ../bleachbit/GUI.py:594 ../bleachbit/GuiPreferences.py:197 #: ../bleachbit/GuiPreferences.py:326 ../bleachbit/GuiPreferences.py:367 msgid "Choose a folder" msgstr "Scegliere una cartella" #. TRANSLATORS: this is the context menu #: ../bleachbit/GUI.py:627 msgid "Preview" msgstr "Anteprima" #: ../bleachbit/GUI.py:734 msgid "_Shred Files" msgstr "_Sovrascrivi i file" #: ../bleachbit/GUI.py:736 msgid "Sh_red Folders" msgstr "Sovrascrivi le ca_rtelle" #: ../bleachbit/GUI.py:738 msgid "_Wipe Free Space" msgstr "_Pulisci lo spazio libero" #: ../bleachbit/GUI.py:740 msgid "S_hred Settings and Quit" msgstr "S_ovrascrivi le impostazioni ed esci" #: ../bleachbit/GUI.py:742 msgid "_Quit" msgstr "_Esci" #: ../bleachbit/GUI.py:744 msgid "_File" msgstr "_File" #: ../bleachbit/GUI.py:746 ../bleachbit/GuiPreferences.py:58 msgid "Preferences" msgstr "Preferenze" #: ../bleachbit/GUI.py:747 msgid "_Edit" msgstr "_Modifica" #: ../bleachbit/GUI.py:748 msgid "Help Contents" msgstr "Sommario" #: ../bleachbit/GUI.py:751 msgid "_Release Notes" msgstr "Note di _rilascio" #: ../bleachbit/GUI.py:754 msgid "_System Information" msgstr "Informazioni sul _sistema" #: ../bleachbit/GUI.py:757 msgid "_About" msgstr "_Informazioni" #: ../bleachbit/GUI.py:758 msgid "_Help" msgstr "_Aiuto" #: ../bleachbit/GUI.py:783 msgctxt "button" msgid "Preview" msgstr "Anteprima" #: ../bleachbit/GUI.py:788 msgid "Preview files in the selected operations (without deleting any files)" msgstr "" "Anteprima dei file nelle operazioni selezionate (nessun file verrà eliminato)" #: ../bleachbit/GUI.py:798 msgctxt "button" msgid "Clean" msgstr "Pulisci" #: ../bleachbit/GUI.py:802 msgid "Clean files in the selected operations" msgstr "Pulisci i file nelle operazioni selezionate" #: ../bleachbit/GUI.py:893 msgid "Error when checking for updates: " msgstr "Errore durante la ricerca di aggiornamenti: " #: ../bleachbit/GUI.py:932 msgid "" "Error loading the SQLite module: the antivirus software may be blocking it." msgstr "" "Errore nel caricare il modulo SQLite: potrebbe essere bloccato dal programma " "antivirus." #: ../bleachbit/GUI.py:935 msgid "" "You are running BleachBit with administrative privileges for cleaning shared " "parts of the system, and references to the user profile folder will clean " "only the root account." msgstr "" "Si sta eseguendo BleachBit con privilegi da amministratore per pulire parti " "condivise del sistema e riferimenti alla directory del profilo utente. In " "questo modo verrà verrà pulito solo l'account amministratore." #: ../bleachbit/GUI.py:940 msgid "" "Run BleachBit with administrator privileges to improve the accuracy of " "overwriting the contents of files." msgstr "" "Eseguire BleachBit con i privilegi di amministratore per migliorare la " "precisione nel sovrascrivere il contenuto dei file." #: ../bleachbit/GuiPreferences.py:64 msgid "General" msgstr "Generale" #: ../bleachbit/GuiPreferences.py:67 msgid "Drives" msgstr "Unità" #: ../bleachbit/GuiPreferences.py:70 msgid "Languages" msgstr "Lingue" #: ../bleachbit/GuiPreferences.py:72 msgid "Whitelist" msgstr "Da non eliminare" #: ../bleachbit/GuiPreferences.py:117 msgid "Check periodically for software updates via the Internet" msgstr "Controllare periodicamente gli aggiornamenti via Internet" #: ../bleachbit/GuiPreferences.py:122 msgid "" "If an update is found, you will be given the option to view information " "about it. Then, you may manually download and install the update." msgstr "" "Se un aggiornamento è disponibile vengono visualizzate informazioni a " "riguardo. In seguito è possibile scaricare e installare l'aggiornamento " "manualmente." #: ../bleachbit/GuiPreferences.py:128 msgid "Check for new beta releases" msgstr "Cerca dei rilasci beta" #: ../bleachbit/GuiPreferences.py:137 msgid "Download and update cleaners from community (winapp2.ini)" msgstr "Scarica e aggiorna i pulitori dalla comunità (winapp2.ini)" #. TRANSLATORS: This means to hide cleaners which would do #. nothing. For example, if Firefox were never used on #. this system, this option would hide Firefox to simplify #. the list of cleaners. #: ../bleachbit/GuiPreferences.py:151 msgid "Hide irrelevant cleaners" msgstr "Nascondi i pulitori non rilevanti" #. TRANSLATORS: Overwriting is the same as shredding. It is a way #. to prevent recovery of the data. You could also translate #. 'Shred files to prevent recovery.' #: ../bleachbit/GuiPreferences.py:159 msgid "Overwrite contents of files to prevent recovery" msgstr "Sovrascrivere il contenuto dei file per impedire il recupero" #: ../bleachbit/GuiPreferences.py:163 msgid "" "Overwriting is ineffective on some file systems and with certain BleachBit " "operations. Overwriting is significantly slower." msgstr "" "La sovrascrittura è inefficace su alcuni file system e con certe operazioni " "di BleachBit. Inoltre è decisamente più lenta." #: ../bleachbit/GuiPreferences.py:166 msgid "Start BleachBit with computer" msgstr "Lanciare BleachBit all'avvio del computer" #: ../bleachbit/GuiPreferences.py:172 msgid "Exit after cleaning" msgstr "Chiudere dopo la pulizia." #: ../bleachbit/GuiPreferences.py:178 msgid "Confirm before delete" msgstr "Confermare prima di cancellare" #: ../bleachbit/GuiPreferences.py:186 msgid "Use IEC sizes (1 KiB = 1024 bytes) instead of SI (1 kB = 1000 bytes)" msgstr "" "Usar l'unità di misura IEC (1 KiB = 1024 bytes) invece del SI (1 kB = 1000 " "bytes)" #: ../bleachbit/GuiPreferences.py:221 msgid "" "Choose a writable folder for each drive for which to overwrite free space." msgstr "" "Scegliere una cartella scrivibile per ogni unità sulla quale sovrascrivere " "lo spazio libero." #. TRANSLATORS: In the preferences dialog, this button adds a path to #. the list of paths #: ../bleachbit/GuiPreferences.py:243 msgctxt "button" msgid "Add" msgstr "Aggiungi" #. TRANSLATORS: In the preferences dialog, this button removes a path #. from the list of paths #: ../bleachbit/GuiPreferences.py:247 ../bleachbit/GuiPreferences.py:458 msgctxt "button" msgid "Remove" msgstr "Rimuovi" #: ../bleachbit/GuiPreferences.py:272 msgid "All languages will be deleted except those checked." msgstr "" "Tutte le lingue saranno eliminate ad eccezione di quelle selezionate." #: ../bleachbit/GuiPreferences.py:288 msgid "Preserve" msgstr "Mantenere" #: ../bleachbit/GuiPreferences.py:292 msgid "Code" msgstr "Codice" #: ../bleachbit/GuiPreferences.py:313 ../bleachbit/GuiPreferences.py:354 msgid "Choose a file" msgstr "Scegliere un file" #: ../bleachbit/GuiPreferences.py:320 ../bleachbit/GuiPreferences.py:361 #: ../bleachbit/GuiPreferences.py:405 msgid "File" msgstr "File" #: ../bleachbit/GuiPreferences.py:334 ../bleachbit/GuiPreferences.py:375 #: ../bleachbit/GuiPreferences.py:407 msgid "Folder" msgstr "Cartella" #: ../bleachbit/GuiPreferences.py:417 msgid "Theses paths will not be deleted or modified." msgstr "Questi percorsi non saranno eliminati o modificati." #: ../bleachbit/GuiPreferences.py:420 msgid "These locations can be selected for deletion." msgstr "È possibile selezionare queste posizioni per l'eliminazione." #: ../bleachbit/GuiPreferences.py:428 msgid "Type" msgstr "Tipo" #. TRANSLATORS: In the tree view "Path" is used generically to refer to a #. file, a folder, or a pattern describing either #: ../bleachbit/GuiPreferences.py:434 msgid "Path" msgstr "Percorso" #: ../bleachbit/GuiPreferences.py:446 msgctxt "button" msgid "Add file" msgstr "Aggiungi file" #: ../bleachbit/GuiPreferences.py:452 msgctxt "button" msgid "Add folder" msgstr "Aggiungi cartella" bleachbit-2.0/po/zh_TW.po0000644000175000017500000013131113245436307013412 0ustar hlehle# Chinese (Traditional) translation for bleachbit # Copyright (c) 2010 Rosetta Contributors and Canonical Ltd 2010 # This file is distributed under the same license as the bleachbit package. # FIRST AUTHOR , 2010. # msgid "" msgstr "" "Project-Id-Version: bleachbit\n" "Report-Msgid-Bugs-To: FULL NAME \n" "POT-Creation-Date: 2017-02-11 11:12-0700\n" "PO-Revision-Date: 2017-09-04 01:19+0000\n" "Last-Translator: Pin-hsien Li \n" "Language-Team: Chinese (Traditional) \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=1; plural=0;\n" "X-Launchpad-Export-Date: 2017-09-07 03:24+0000\n" "X-Generator: Launchpad (build 18446)\n" "Language: zh_TW\n" #: ../cleaners/mc.xml ../cleaners/tortoisesvn.xml ../cleaners/vim.xml #: ../cleaners/safari.xml ../cleaners/links2.xml ../cleaners/seamonkey.xml #: ../cleaners/realplayer.xml ../cleaners/windows_defender.xml #: ../cleaners/d4x.xml ../cleaners/sqlite3.xml #: ../cleaners/internet_explorer.xml ../cleaners/libreoffice.xml #: ../cleaners/easytag.xml ../cleaners/bash.xml ../cleaners/nautilus.xml #: ../cleaners/octave.xml ../cleaners/elinks.xml ../cleaners/chromium.xml #: ../cleaners/google_chrome.xml msgid "History" msgstr "歷史記錄" #: ../cleaners/mc.xml ../cleaners/tortoisesvn.xml ../cleaners/links2.xml #: ../cleaners/realplayer.xml ../cleaners/d4x.xml ../cleaners/libreoffice.xml #: ../cleaners/easytag.xml ../cleaners/nautilus.xml ../cleaners/gnome.xml #: ../bleachbit/Cleaner.py:349 ../bleachbit/Cleaner.py:423 #: ../bleachbit/Cleaner.py:432 msgid "Delete the usage history" msgstr "刪除使用記錄" #: ../cleaners/gpodder.xml ../cleaners/hippo_opensim_viewer.xml #: ../cleaners/thumbnails.xml ../cleaners/safari.xml ../cleaners/emesene.xml #: ../cleaners/liferea.xml ../cleaners/seamonkey.xml ../cleaners/vuze.xml #: ../cleaners/yahoo_messenger.xml ../cleaners/pidgin.xml #: ../cleaners/adobe_reader.xml ../cleaners/evolution.xml #: ../cleaners/tremulous.xml ../cleaners/libreoffice.xml ../cleaners/xine.xml #: ../cleaners/nexuiz.xml ../cleaners/exaile.xml ../cleaners/opera.xml #: ../cleaners/amsn.xml ../cleaners/gftp.xml ../cleaners/miro.xml #: ../cleaners/beagle.xml ../cleaners/kde.xml ../cleaners/epiphany.xml #: ../cleaners/flash.xml ../cleaners/secondlife_viewer.xml ../cleaners/java.xml #: ../cleaners/chromium.xml ../cleaners/audacious.xml ../cleaners/rhythmbox.xml #: ../cleaners/google_chrome.xml ../cleaners/thunderbird.xml #: ../bleachbit/Cleaner.py:192 ../bleachbit/Cleaner.py:370 #: ../bleachbit/Cleaner.py:455 msgid "Cache" msgstr "快取" #: ../cleaners/gpodder.xml ../cleaners/yum.xml #: ../cleaners/hippo_opensim_viewer.xml ../cleaners/thumbnails.xml #: ../cleaners/windows_explorer.xml ../cleaners/liferea.xml #: ../cleaners/vuze.xml ../cleaners/yahoo_messenger.xml ../cleaners/pidgin.xml #: ../cleaners/adobe_reader.xml ../cleaners/evolution.xml #: ../cleaners/libreoffice.xml ../cleaners/apt.xml ../cleaners/xine.xml #: ../cleaners/nexuiz.xml ../cleaners/exaile.xml ../cleaners/amsn.xml #: ../cleaners/gftp.xml ../cleaners/miro.xml ../cleaners/beagle.xml #: ../cleaners/kde.xml ../cleaners/flash.xml ../cleaners/secondlife_viewer.xml #: ../cleaners/java.xml ../cleaners/audacious.xml ../cleaners/rhythmbox.xml #: ../bleachbit/Cleaner.py:370 ../bleachbit/Cleaner.py:455 #: ../bleachbit/Cleaner.py:489 ../bleachbit/Cleaner.py:491 msgid "Delete the cache" msgstr "刪除快取" #. TRANSLATORS: Vacuum is a verb. The term is jargon #. from the SQLite database. Microsoft Access uses #. the term 'Compact Database' (which you may translate #. instead). Another synonym is 'defragment.' #: ../cleaners/gpodder.xml ../cleaners/yum.xml ../cleaners/safari.xml #: ../cleaners/liferea.xml ../cleaners/chromium.xml #: ../cleaners/google_chrome.xml ../cleaners/thunderbird.xml #: ../bleachbit/Cleaner.py:214 ../bleachbit/Cleaner.py:360 #: ../bleachbit/Action.py:445 msgid "Vacuum" msgstr "重整資料庫" #: ../cleaners/gpodder.xml ../cleaners/yum.xml ../cleaners/safari.xml #: ../cleaners/liferea.xml ../cleaners/chromium.xml #: ../cleaners/google_chrome.xml ../cleaners/thunderbird.xml #: ../bleachbit/Cleaner.py:215 msgid "" "Clean database fragmentation to reduce space and improve speed without " "removing any data" msgstr "清理資料庫碎片,減少使用空間並加快速度;不會移除任何資料" #: ../cleaners/yum.xml ../cleaners/apt.xml msgid "Package manager" msgstr "套件管理員" #: ../cleaners/warzone2100.xml ../cleaners/hippo_opensim_viewer.xml #: ../cleaners/gl-117.xml ../cleaners/tremulous.xml ../cleaners/nexuiz.xml #: ../cleaners/secondlife_viewer.xml msgid "Game" msgstr "遊戲" #: ../cleaners/warzone2100.xml ../cleaners/hippo_opensim_viewer.xml #: ../cleaners/teamviewer.xml ../cleaners/realplayer.xml ../cleaners/vuze.xml #: ../cleaners/yahoo_messenger.xml ../cleaners/amule.xml #: ../cleaners/easytag.xml ../cleaners/exaile.xml ../cleaners/screenlets.xml #: ../cleaners/gftp.xml ../cleaners/miro.xml ../cleaners/audacious.xml #: ../bleachbit/Cleaner.py:486 msgid "Logs" msgstr "記錄檔" #: ../cleaners/warzone2100.xml ../cleaners/hippo_opensim_viewer.xml #: ../cleaners/teamviewer.xml ../cleaners/realplayer.xml ../cleaners/vuze.xml #: ../cleaners/yahoo_messenger.xml ../cleaners/amule.xml ../cleaners/exaile.xml #: ../cleaners/screenlets.xml ../cleaners/gftp.xml ../cleaners/miro.xml #: ../cleaners/audacious.xml ../bleachbit/Cleaner.py:486 msgid "Delete the logs" msgstr "刪除記錄檔" #: ../cleaners/thumbnails.xml ../cleaners/windows_explorer.xml msgid "Thumbnails" msgstr "縮圖" #: ../cleaners/thumbnails.xml msgid "Icons for files on the system" msgstr "檔案圖示" #: ../cleaners/vim.xml ../cleaners/gedit.xml msgid "Editor" msgstr "編輯器" #: ../cleaners/vim.xml msgid "" "Delete ~/.viminfo which includes file history, command history, and buffers" msgstr "刪除 ~/.viminfo;該檔案包含檔案開啟歷史、指令歷史、緩衝區" #: ../cleaners/filezilla.xml ../cleaners/transmission.xml ../cleaners/vuze.xml #: ../cleaners/amule.xml ../cleaners/gftp.xml msgid "File transfer client" msgstr "檔案傳輸客戶端" #: ../cleaners/filezilla.xml ../cleaners/paint.xml #: ../cleaners/windows_media_player.xml ../cleaners/windows_explorer.xml #: ../cleaners/teamviewer.xml ../cleaners/microsoft_office.xml #: ../cleaners/vlc.xml ../cleaners/adobe_reader.xml ../cleaners/winamp.xml #: ../cleaners/winzip.xml ../cleaners/winrar.xml ../cleaners/audacious.xml #: ../cleaners/wordpad.xml ../bleachbit/Cleaner.py:371 msgid "Most recently used" msgstr "最近存取文件" #: ../cleaners/filezilla.xml ../cleaners/windows_explorer.xml #: ../cleaners/gwenview.xml ../cleaners/adobe_reader.xml ../cleaners/gedit.xml #: ../cleaners/kde.xml ../cleaners/audacious.xml ../bleachbit/Cleaner.py:372 #: ../bleachbit/Cleaner.py:469 msgid "Delete the list of recently used documents" msgstr "刪除最近使用過的檔案清單" #: ../cleaners/skype.xml ../cleaners/emesene.xml #: ../cleaners/yahoo_messenger.xml ../cleaners/pidgin.xml ../cleaners/amsn.xml msgid "Chat client" msgstr "聊天" #: ../cleaners/skype.xml ../cleaners/hexchat.xml ../cleaners/emesene.xml #: ../cleaners/seamonkey.xml ../cleaners/yahoo_messenger.xml #: ../cleaners/pidgin.xml ../cleaners/amsn.xml msgid "Chat logs" msgstr "聊天記錄" #: ../cleaners/skype.xml ../cleaners/hexchat.xml ../cleaners/emesene.xml #: ../cleaners/seamonkey.xml ../cleaners/yahoo_messenger.xml #: ../cleaners/pidgin.xml ../cleaners/amsn.xml msgid "Delete the chat logs" msgstr "刪除聊天記錄" #: ../cleaners/skype.xml msgid "Installers" msgstr "安裝程式" #: ../cleaners/skype.xml msgid "Delete cached patches and installers" msgstr "删除暫存的安裝與修補程式" #: ../cleaners/hexchat.xml msgid "IRC client formerly known as XChat" msgstr "IRC 用戶端;前身為 XChat" #: ../cleaners/safari.xml ../cleaners/links2.xml ../cleaners/seamonkey.xml #: ../cleaners/konqueror.xml ../cleaners/internet_explorer.xml #: ../cleaners/opera.xml ../cleaners/epiphany.xml ../cleaners/elinks.xml #: ../cleaners/chromium.xml ../cleaners/google_chrome.xml #: ../bleachbit/Cleaner.py:226 msgid "Web browser" msgstr "網頁瀏覽器" #: ../cleaners/safari.xml ../cleaners/seamonkey.xml ../cleaners/opera.xml #: ../cleaners/epiphany.xml ../cleaners/chromium.xml #: ../cleaners/google_chrome.xml ../cleaners/thunderbird.xml #: ../bleachbit/Cleaner.py:193 msgid "Delete the web cache, which reduces time to display revisited pages" msgstr "刪除網頁快取;網頁快取可減少已造訪網頁的顯示時間" #: ../cleaners/safari.xml ../cleaners/liferea.xml ../cleaners/seamonkey.xml #: ../cleaners/realplayer.xml ../cleaners/konqueror.xml #: ../cleaners/internet_explorer.xml ../cleaners/opera.xml #: ../cleaners/epiphany.xml ../cleaners/flash.xml ../cleaners/silverlight.xml #: ../cleaners/chromium.xml ../cleaners/google_chrome.xml #: ../cleaners/thunderbird.xml ../bleachbit/Cleaner.py:194 msgid "Cookies" msgstr "Cookies" #: ../cleaners/safari.xml ../cleaners/liferea.xml ../cleaners/seamonkey.xml #: ../cleaners/realplayer.xml ../cleaners/konqueror.xml #: ../cleaners/internet_explorer.xml ../cleaners/opera.xml #: ../cleaners/epiphany.xml ../cleaners/flash.xml ../cleaners/silverlight.xml #: ../cleaners/chromium.xml ../cleaners/google_chrome.xml #: ../cleaners/thunderbird.xml ../bleachbit/Cleaner.py:195 msgid "" "Delete cookies, which contain information such as web site preferences, " "authentication, and tracking identification" msgstr "刪除 Cookies;Cookies 包含網站設定、身分鑑別、追蹤識別等資訊" #: ../cleaners/safari.xml ../cleaners/konqueror.xml #: ../cleaners/internet_explorer.xml ../cleaners/opera.xml #: ../bleachbit/Cleaner.py:213 msgid "List of visited web pages" msgstr "已造訪網頁清單" #. Torrent software can block a list of IP addresses, such as those that may belong to malware or anti-piracy organizations #: ../cleaners/transmission.xml msgid "Blocklists" msgstr "黑名單" #: ../cleaners/transmission.xml ../cleaners/windows_defender.xml #: ../cleaners/beagle.xml ../cleaners/thunderbird.xml ../cleaners/deepscan.xml #: ../bleachbit/Cleaner.py:197 msgid "Delete the files" msgstr "刪除檔案" #: ../cleaners/transmission.xml msgid "Blocklists will need update to work." msgstr "黑名單必須更新才可使用。" #: ../cleaners/transmission.xml msgid "Torrents" msgstr "種子檔" #: ../cleaners/transmission.xml msgid "Delete the torrents (just the metadata but not the files described)" msgstr "刪除種子檔;不會移除種子指向的檔案" #: ../cleaners/transmission.xml msgid "Statistics" msgstr "統計資料" #: ../cleaners/transmission.xml msgid "Delete the file" msgstr "刪除檔案" #: ../cleaners/paint.xml ../cleaners/windows_media_player.xml #: ../cleaners/windows_explorer.xml ../cleaners/teamviewer.xml #: ../cleaners/microsoft_office.xml ../cleaners/vlc.xml ../cleaners/winamp.xml #: ../cleaners/winzip.xml ../cleaners/winrar.xml ../cleaners/wordpad.xml msgid "Delete the most recently used list" msgstr "刪除最近使用檔案清單" #: ../cleaners/emesene.xml msgid "Delete the avatars and emoticons cache" msgstr "刪除大頭貼與表情符號的快取" #: ../cleaners/windows_media_player.xml ../cleaners/realplayer.xml #: ../cleaners/vlc.xml ../cleaners/winamp.xml msgid "Media player" msgstr "媒體播放器" #: ../cleaners/windows_explorer.xml ../cleaners/nautilus.xml msgid "File manager" msgstr "檔案管理員" #: ../cleaners/windows_explorer.xml ../cleaners/gwenview.xml #: ../cleaners/gedit.xml ../cleaners/kde.xml ../bleachbit/Cleaner.py:468 #: ../bleachbit/Cleaner.py:663 msgid "Recent documents list" msgstr "最近存取文件清單" #: ../cleaners/windows_explorer.xml msgid "" "This option will reset pinned locations in Quick Access to their defaults." msgstr "此項目將重設「快速存取」下的釘選位置。" #. In Windows 'Run' is the dialog in the Start menu #. In GNOME 'Run' is the dialog shown when typing ALT+F2' #: ../cleaners/windows_explorer.xml ../cleaners/gnome.xml msgid "Run" msgstr "執行程式" #: ../cleaners/windows_explorer.xml ../cleaners/opera.xml ../cleaners/gnome.xml #: ../cleaners/google_toolbar.xml msgid "Search history" msgstr "搜索記錄" #: ../cleaners/windows_explorer.xml ../cleaners/opera.xml ../cleaners/gnome.xml #: ../cleaners/google_toolbar.xml msgid "Delete the search history" msgstr "刪除搜索記錄" #: ../cleaners/windows_explorer.xml msgid "This will restart Windows Explorer." msgstr "Windows 檔案總管將會重新啟動。" #: ../cleaners/gl-117.xml ../cleaners/microsoft_office.xml #: ../cleaners/beagle.xml ../cleaners/secondlife_viewer.xml ../cleaners/x11.xml msgid "Debug logs" msgstr "除錯記錄" #: ../cleaners/gl-117.xml ../cleaners/microsoft_office.xml #: ../cleaners/easytag.xml ../cleaners/beagle.xml #: ../cleaners/secondlife_viewer.xml ../cleaners/x11.xml msgid "Delete the debug logs" msgstr "刪除除錯記錄" #: ../cleaners/google_earth.xml ../cleaners/winetricks.xml ../cleaners/vuze.xml #: ../cleaners/adobe_reader.xml ../cleaners/amule.xml ../cleaners/wine.xml #: ../cleaners/internet_explorer.xml ../cleaners/gimp.xml ../cleaners/kde.xml #: ../cleaners/deepscan.xml ../bleachbit/Cleaner.py:520 msgid "Temporary files" msgstr "暫存檔案" #: ../cleaners/google_earth.xml ../cleaners/winetricks.xml ../cleaners/vuze.xml #: ../cleaners/adobe_reader.xml ../cleaners/amule.xml ../cleaners/wine.xml #: ../cleaners/internet_explorer.xml ../cleaners/gimp.xml ../cleaners/kde.xml #: ../cleaners/deepscan.xml ../bleachbit/Cleaner.py:520 msgid "Delete the temporary files" msgstr "刪除暫存檔案" #: ../cleaners/seamonkey.xml ../cleaners/opera.xml ../bleachbit/Cleaner.py:201 msgid "Download history" msgstr "下載記錄" #: ../cleaners/seamonkey.xml ../cleaners/opera.xml ../bleachbit/Cleaner.py:201 msgid "List of files downloaded" msgstr "已下載檔案清單" #: ../cleaners/seamonkey.xml msgid "Delete the list of visited web pages" msgstr "刪除已造訪網頁清單" #: ../cleaners/vuze.xml ../cleaners/deepscan.xml ../bleachbit/Cleaner.py:190 msgid "Backup files" msgstr "備份檔案" #: ../cleaners/vuze.xml ../cleaners/deepscan.xml ../bleachbit/Cleaner.py:191 msgid "Delete the backup files" msgstr "刪除備份檔案" #: ../cleaners/konqueror.xml ../cleaners/opera.xml ../cleaners/chromium.xml msgid "Current session" msgstr "本次作業階段" #: ../cleaners/konqueror.xml ../cleaners/opera.xml ../cleaners/chromium.xml msgid "Delete the current session" msgstr "刪除本次作業階段" #: ../cleaners/konqueror.xml ../cleaners/opera.xml ../bleachbit/Cleaner.py:213 msgid "URL history" msgstr "URL 記錄" #: ../cleaners/microsoft_office.xml ../cleaners/libreoffice.xml #: ../bleachbit/Cleaner.py:375 msgid "Office suite" msgstr "辦公室套件" #: ../cleaners/windows_defender.xml msgid "Anti-virus" msgstr "防毒軟體" #: ../cleaners/journald.xml msgid "System journals" msgstr "系統日誌" #: ../cleaners/journald.xml msgid "Clean old system journals" msgstr "清理過時的系統日誌" #: ../cleaners/adobe_reader.xml msgid "Document viewer" msgstr "文件檢視器" #: ../cleaners/evolution.xml ../cleaners/thunderbird.xml msgid "Email client" msgstr "郵件客戶端" #: ../cleaners/tremulous.xml msgid "Delete the list of game servers" msgstr "刪除遊戲伺服器清單" #: ../cleaners/sqlite3.xml ../cleaners/bash.xml ../cleaners/octave.xml msgid "Delete the command history" msgstr "刪除指令記錄" #: ../cleaners/wine.xml msgid "Compatibility layer for Windows software" msgstr "Windows 軟體相容層" #: ../cleaners/internet_explorer.xml ../cleaners/chromium.xml #: ../cleaners/google_chrome.xml ../bleachbit/Cleaner.py:202 msgid "Form history" msgstr "表單記錄" #: ../cleaners/internet_explorer.xml ../bleachbit/Cleaner.py:203 msgid "A history of forms entered in web sites and in the Search bar" msgstr "曾於網頁與搜索欄中輸入的表單記錄" #. This software edits metadata tags, such as title and artist, in audio files #: ../cleaners/easytag.xml msgid "Audio files tagger" msgstr "音樂標籤編輯器" #: ../cleaners/apt.xml msgid "Delete obsolete files" msgstr "刪除已過時的檔案" #: ../cleaners/apt.xml msgid "Package lists" msgstr "軟體包清單" #: ../cleaners/xine.xml ../cleaners/miro.xml ../cleaners/flash.xml msgid "Multimedia viewer" msgstr "多媒體檢視" #: ../cleaners/recoll.xml ../cleaners/beagle.xml msgid "Search tool" msgstr "搜索工具" #: ../cleaners/recoll.xml ../cleaners/beagle.xml ../cleaners/thunderbird.xml msgid "Index" msgstr "索引" #: ../cleaners/recoll.xml msgid "" "Delete the search index, a database of words and the files they contain" msgstr "刪除搜索索引;此資料庫記錄了搜索字詞和相關檔案" #: ../cleaners/gimp.xml msgid "Graphics editor" msgstr "圖形編輯器" #: ../cleaners/exaile.xml msgid "Downloaded podcasts" msgstr "已下載的 Podcast" #: ../cleaners/exaile.xml msgid "Delete downloaded podcasts" msgstr "刪除已下載的 Podcast(網路連播)" #: ../cleaners/bash.xml msgid "Shell" msgstr "命令殼 (shell)" #. TRANSLATORS: DOM = Document Object Model. #: ../cleaners/opera.xml ../cleaners/epiphany.xml ../cleaners/chromium.xml #: ../cleaners/google_chrome.xml ../bleachbit/Cleaner.py:199 msgid "DOM Storage" msgstr "DOM 存儲物件" #: ../cleaners/opera.xml ../cleaners/epiphany.xml ../cleaners/chromium.xml #: ../cleaners/google_chrome.xml ../bleachbit/Cleaner.py:199 msgid "Delete HTML5 cookies" msgstr "刪除 HTML5 Cookies" #: ../cleaners/opera.xml ../cleaners/epiphany.xml ../cleaners/chromium.xml #: ../cleaners/google_chrome.xml ../cleaners/thunderbird.xml #: ../bleachbit/Cleaner.py:208 msgid "Passwords" msgstr "密碼" #: ../cleaners/opera.xml ../cleaners/epiphany.xml ../cleaners/chromium.xml #: ../cleaners/google_chrome.xml ../cleaners/thunderbird.xml #: ../bleachbit/Cleaner.py:209 msgid "" "A database of usernames and passwords as well as a list of sites that should " "not store passwords" msgstr "此資料庫儲存使用者帳號、密碼,以及設定不預存密碼的網站清單" #: ../cleaners/opera.xml ../cleaners/epiphany.xml ../cleaners/chromium.xml #: ../cleaners/google_chrome.xml ../cleaners/thunderbird.xml #: ../bleachbit/Cleaner.py:211 msgid "This option will delete your saved passwords." msgstr "此項目將刪除您儲存的密碼。" #: ../cleaners/nautilus.xml msgid "Custom folders will be reset." msgstr "自訂的資料夾將被重設。" #: ../cleaners/gnome.xml ../cleaners/kde.xml msgid "Desktop environment" msgstr "桌面環境" #: ../cleaners/screenlets.xml msgid "Widgets for the desktop" msgstr "桌面小工具" #: ../cleaners/epiphany.xml msgid "Places" msgstr "位址" #: ../cleaners/epiphany.xml msgid "" "A database of URLs including bookmarks, favicons, and a history of visited " "web sites" msgstr "儲存書籤、網站圖標、已造訪網頁的 URL 資料庫" #: ../cleaners/epiphany.xml msgid "This option deletes all bookmarks." msgstr "此項目將刪除所有的書籤。" #: ../cleaners/winrar.xml msgid "File archiver" msgstr "檔案壓縮員" #: ../cleaners/elinks.xml msgid "Delete the cookies, visited URLs, and search history" msgstr "刪除 cookies、已造訪網站、搜索記錄" #: ../cleaners/chromium.xml ../cleaners/google_chrome.xml msgid "A history of forms entered in web sites" msgstr "曾在網站輸入過的表單記錄" #: ../cleaners/chromium.xml ../cleaners/google_chrome.xml msgid "" "Delete the history which includes visited sites, downloads, and thumbnails" msgstr "刪除歷史記錄;包含已造訪網站、下載與縮圖" #: ../cleaners/chromium.xml ../cleaners/google_chrome.xml msgid "Search engines" msgstr "搜尋引擎" #. 'Factory' means a search engine that is installed by default 'from the factory,' but this is different than a 'default search engine' https://lists.launchpad.net/launchpad-translators/msg00283.html #: ../cleaners/chromium.xml ../cleaners/google_chrome.xml msgid "" "Reset the search engine usage history and delete non-factory search engines, " "some of which are added automatically" msgstr "重設搜尋引擎的使用記錄,並刪除非原帶的搜尋引擎;某些搜尋引擎是自動加載上去的" #: ../cleaners/audacious.xml msgid "Audio player" msgstr "音樂播放器" #: ../cleaners/rhythmbox.xml msgid "Database" msgstr "資料庫" #: ../cleaners/rhythmbox.xml msgid "" "Delete the database, which contain information such as play count and last " "played" msgstr "刪除資料庫;資料庫包含播放統計與最近播放項目等資訊" #: ../cleaners/google_chrome.xml msgid "Session" msgstr "作業階段" #: ../cleaners/google_chrome.xml msgid "Delete the current and last sessions" msgstr "刪除本次與之前的作業階段" #: ../cleaners/x11.xml msgid "Windowing system" msgstr "視窗系統" #: ../cleaners/wordpad.xml msgid "Word processor" msgstr "文字處理器" #: ../cleaners/deepscan.xml msgid "Deep scan" msgstr "深層掃描" #: ../cleaners/deepscan.xml msgid "Clean files widely scattered across the disk" msgstr "清理散布於硬碟各處的檔案" #: ../cleaners/deepscan.xml msgid "Inspect the preview for any files you want to keep." msgstr "請查看預覽結果以找出您想保留的任何檔案。" #: ../cleaners/deepscan.xml msgid "This option is slow." msgstr "此項目將耗費不少時間。" #: ../bleachbit.desktop msgid "Unnecessary file cleaner" msgstr "無用檔案清理員" #: ../bleachbit.desktop msgid "Free space and maintain privacy" msgstr "釋放空間及維護隱私" #: ../bleachbit/FileUtilities.py:668 msgid "" "There was at least one file on a file system that does not support advanced " "overwriting." msgstr "至少一份檔案位於不支援進階覆寫的檔案系統中。" #: ../bleachbit/Unix.py:574 #, python-format msgid "Executable not found: %s" msgstr "未找到可執行檔:%s" #. TRANSLATORS: %s expands to a name such as 'Firefox' or 'System'. #: ../bleachbit/Unix.py:623 ../bleachbit/Worker.py:136 #, python-format msgid "" "%s cannot be cleaned because it is currently running. Close it, and try " "again." msgstr "無法清理正在使用中的 %s。請關閉相關程式後再試一遍。" #: ../bleachbit/GuiBasic.py:112 msgid "Delete confirmation" msgstr "刪除動作確認" #: ../bleachbit/GuiBasic.py:122 msgid "" "Are you sure you want to permanently delete files according to the selected " "operations? The actual files that will be deleted may have changed since " "you ran the preview." msgstr "您確定要永久刪除所選項目指定的檔案?真正刪除的檔案可能跟上次預覽結果有所差異。" #: ../bleachbit/GuiBasic.py:125 msgid "Are you sure you want to permanently delete these files?" msgstr "確定要完全刪除這些檔案?" #: ../bleachbit/GuiBasic.py:162 #, python-format msgid "" "Because you are running as root, please manually open this link in a web " "browser:\n" "%s" msgstr "" "因為您正以 root 的身份執行程式,請在網頁瀏覽器中手動開啟此連結:\n" "%s" #. TRANSLATORS: %s expands to www.bleachbit.org or similar #: ../bleachbit/GuiBasic.py:174 #, python-format msgid "Open web browser to %s?" msgstr "打開瀏覽器至 %s?" #. TRANSLATORS: This is the label in the log indicating was #. skipped because it matches the whitelist #: ../bleachbit/Command.py:47 msgid "Skip" msgstr "跳過" #. TRANSLATORS: This is the label in the log indicating will be #. deleted (for previews) or was actually deleted #: ../bleachbit/Command.py:77 msgid "Delete" msgstr "刪除" #: ../bleachbit/Command.py:99 msgid "" "At least one file was locked by another process, so its contents could not " "be overwritten. It will be marked for deletion upon system reboot." msgstr "至少一份檔案被其他程序鎖定,無法覆寫其內容。將於下次系統重啟時刪除檔案。" #. TRANSLATORS: The file will be deleted when the #. system reboots #: ../bleachbit/Command.py:102 msgid "Mark for deletion" msgstr "標記為刪除" #. TRANSLATORS: Parts of this file will be deleted #: ../bleachbit/Command.py:199 ../bleachbit/Command.py:233 #: ../bleachbit/Action.py:254 ../bleachbit/Action.py:267 #: ../bleachbit/Action.py:280 ../bleachbit/Action.py:293 #: ../bleachbit/Action.py:306 msgid "Clean file" msgstr "清理檔案" #. TRANSLATORS: The file will be truncated to 0 bytes in length #: ../bleachbit/Command.py:275 msgid "Truncate" msgstr "刪節" #: ../bleachbit/Command.py:317 msgid "Delete registry key" msgstr "刪除登錄鍵" #. TRANSLATORS: This is cleaner name for cleaners imported from winapp2.ini #: ../bleachbit/Winapp.py:44 msgid "Applications" msgstr "應用程式" #. TRANSLATORS: This is cleaner name for cleaners imported #. from winapp2.ini #: ../bleachbit/Winapp.py:47 msgid "Internet" msgstr "網際網路" #. TRANSLATORS: This is cleaner name for cleaners imported #. from winapp2.ini #: ../bleachbit/Winapp.py:50 msgid "Multimedia" msgstr "多媒體" #. TRANSLATORS: This is cleaner name for cleaners imported #. from winapp2.ini #: ../bleachbit/Winapp.py:53 msgid "Utilities" msgstr "公用程式" #: ../bleachbit/Winapp.py:64 msgid "Games" msgstr "遊戲" #: ../bleachbit/Winapp.py:162 msgid "Imported from winapp2.ini" msgstr "從 winapp2.ini 匯入" #: ../bleachbit/Cleaner.py:197 msgid "Crash reports" msgstr "程式崩潰報告" #: ../bleachbit/Cleaner.py:204 msgid "Session restore" msgstr "恢復作業階段" #: ../bleachbit/Cleaner.py:205 msgid "Loads the initial session after the browser closes or crashes" msgstr "當瀏覽器關閉或崩潰後,載入最初的作業階段" #: ../bleachbit/Cleaner.py:207 msgid "Site preferences" msgstr "網站偏好設定" #: ../bleachbit/Cleaner.py:207 msgid "Settings for individual sites" msgstr "個別網站的設定" #. TRANSLATORS: desktop entries are .desktop files in Linux that #. make up the application menu (the menu that shows BleachBit, #. Firefox, and others. The .desktop files also associate file #. types, so clicking on an .html file in Nautilus brings up #. Firefox. #. More information: #. http://standards.freedesktop.org/menu-spec/latest/index.html#introduction #: ../bleachbit/Cleaner.py:453 msgid "Broken desktop files" msgstr "損毀的 .desktop 檔" #: ../bleachbit/Cleaner.py:454 msgid "Delete broken application menu entries and file associations" msgstr "刪除損毀的程式選單內部連結與檔案關聯" #. TRANSLATORS: Localizations are files supporting specific #. languages, so applications appear in Spanish, etc. #: ../bleachbit/Cleaner.py:458 msgid "Localizations" msgstr "本地化" #: ../bleachbit/Cleaner.py:459 msgid "Delete files for unwanted languages" msgstr "刪除不需要的語系" #: ../bleachbit/Cleaner.py:461 msgid "Configure this option in the preferences." msgstr "請至偏好設定設定此項目。" #: ../bleachbit/Cleaner.py:467 msgid "Rotated logs" msgstr "循環記錄檔" #: ../bleachbit/Cleaner.py:467 msgid "Delete old system logs" msgstr "刪除過時的系統記錄檔" #: ../bleachbit/Cleaner.py:470 msgid "Trash" msgstr "資源回收桶" #: ../bleachbit/Cleaner.py:470 msgid "Empty the trash" msgstr "清空回收桶內的垃圾" #: ../bleachbit/Cleaner.py:476 ../bleachbit/Cleaner.py:627 #: ../bleachbit/Worker.py:184 msgid "Memory" msgstr "記憶體" #. TRANSLATORS: 'free' means 'unallocated' #: ../bleachbit/Cleaner.py:478 msgid "Wipe the swap and free memory" msgstr "抹除 swap 並釋放記憶體" #: ../bleachbit/Cleaner.py:480 msgid "This option is experimental and may cause system problems." msgstr "此實驗性項目有導致系統問題的風險。" #: ../bleachbit/Cleaner.py:488 msgid "Memory dump" msgstr "記憶體傾印檔" #: ../bleachbit/Cleaner.py:488 msgid "Delete the file memory.dmp" msgstr "刪除 memory.dmp 檔案" #. TRANSLATORS: Prefetch is Microsoft Windows jargon. #: ../bleachbit/Cleaner.py:491 msgid "Prefetch" msgstr "預讀" #: ../bleachbit/Cleaner.py:493 msgid "Recycle bin" msgstr "回收桶" #: ../bleachbit/Cleaner.py:493 ../bleachbit/Cleaner.py:787 msgid "Empty the recycle bin" msgstr "清空回收桶" #. TRANSLATORS: 'Update' is a noun, and 'Update uninstallers' is an option to delete #. the uninstallers for software updates. #: ../bleachbit/Cleaner.py:496 msgid "Update uninstallers" msgstr "更新解除安裝程式" #: ../bleachbit/Cleaner.py:497 msgid "" "Delete uninstallers for Microsoft updates including hotfixes, service packs, " "and Internet Explorer updates" msgstr "刪除 Microsoft 更新的解除安裝程式,包括 hotfix、service pack、Internet Explorer 更新等" #: ../bleachbit/Cleaner.py:504 ../bleachbit/Cleaner.py:727 msgid "Clipboard" msgstr "剪貼簿" #: ../bleachbit/Cleaner.py:505 msgid "" "The desktop environment's clipboard used for copy and paste operations" msgstr "桌面環境的剪貼簿;用途為複製與貼上操作" #. TRANSLATORS: "Custom" is an option allowing the user to specify which #. files and folders will be erased. #: ../bleachbit/Cleaner.py:512 ../bleachbit/GuiPreferences.py:66 msgid "Custom" msgstr "自訂" #: ../bleachbit/Cleaner.py:513 msgid "Delete user-specified files and folders" msgstr "刪除使用者自訂的檔案/資料夾" #. TRANSLATORS: 'free' means 'unallocated' #: ../bleachbit/Cleaner.py:515 msgid "Free disk space" msgstr "硬碟可用空間" #. TRANSLATORS: 'free' means 'unallocated' #: ../bleachbit/Cleaner.py:517 msgid "Overwrite free disk space to hide deleted files" msgstr "覆寫硬碟的可用空間以隱藏已刪除的檔案" #: ../bleachbit/Cleaner.py:518 msgid "This option is very slow." msgstr "此項目相當緩慢。" #: ../bleachbit/Cleaner.py:522 msgid "The system in general" msgstr "系統通用" #: ../bleachbit/Cleaner.py:524 ../bleachbit/Cleaner.py:857 msgid "System" msgstr "系統" #. TRANSLATORS: 'Free' means 'unallocated.' #. %s expands to a path such as C:\ or /tmp/ #: ../bleachbit/Cleaner.py:735 ../bleachbit/Cleaner.py:890 #, python-format msgid "Overwrite free disk space %s" msgstr "覆寫 %s 的可用空間" #: ../bleachbit/RecognizeCleanerML.py:59 msgid "Security warning" msgstr "安全性警示" #: ../bleachbit/RecognizeCleanerML.py:72 msgid "" "These cleaner definitions are new or have changed. Malicious definitions can " "damage your system. If you do not trust these changes, delete the files or " "quit." msgstr "以下是新匯入或更動過的清理定義檔。惡意定義檔有損壞系統的風險。若您不信任這些更動,請刪除這些檔案或是離開程式。" #: ../bleachbit/RecognizeCleanerML.py:88 msgctxt "column_label" msgid "Delete" msgstr "刪除" #: ../bleachbit/RecognizeCleanerML.py:93 msgctxt "column_label" msgid "Filename" msgstr "檔案名稱" #. TRANSLATORS: This indicates an error. The special keyword #. %(operation)s will be replaced by 'firefox' or 'opera' or #. some other cleaner ID. The special keyword %(msg)s will be #. replaced by a message such as 'Permission denied.' #: ../bleachbit/Worker.py:74 #, python-format msgid "Exception while running operation '%(operation)s': '%(msg)s'" msgstr "執行「%(operation)s」時發生錯誤:「%(msg)s」" #. TRANSLATORS: 'free' means 'unallocated' #: ../bleachbit/Worker.py:182 msgid "Please wait. Wiping free disk space." msgstr "請稍待。正在抹除硬碟可用空間。" #. TRANSLATORS: %s is replaced with Firefox, System, etc. #: ../bleachbit/Worker.py:184 ../bleachbit/Worker.py:332 #, python-format msgid "Please wait. Cleaning %s." msgstr "請稍待。正在清理 %s。" #: ../bleachbit/Worker.py:199 msgid "Please wait. Wiping file system metadata." msgstr "請稍待。正在抹除檔案系統中介資料。" #: ../bleachbit/Worker.py:202 msgid "Please wait. Cleaning up after wiping file system metadata." msgstr "請稍待。正在執行抹除檔案系統中介資料的後續清理。" #: ../bleachbit/Worker.py:205 #, python-format msgid "About %d minute remaining." msgid_plural "About %d minutes remaining." msgstr[0] "估計剩 %d 分鐘。" #. TRANSLATORS: This refers to disk space that was #. really recovered (in other words, not a preview) #: ../bleachbit/Worker.py:272 #, python-format msgid "Disk space recovered: %s" msgstr "%s 的硬碟空間已恢復" #. TRANSLATORS: This refers to a preview (no real #. changes were made yet) #: ../bleachbit/Worker.py:276 #, python-format msgid "Disk space to be recovered: %s" msgstr "即將恢復 %s 的硬碟空間" #. TRANSLATORS: This refers to the number of files really #. deleted (in other words, not a preview). #: ../bleachbit/Worker.py:281 #, python-format msgid "Files deleted: %d" msgstr "%d 份檔案已刪除" #. TRANSLATORS: This refers to the number of files that #. would be deleted (in other words, simply a preview). #: ../bleachbit/Worker.py:285 #, python-format msgid "Files to be deleted: %d" msgstr "即將刪除 %d 份檔案" #: ../bleachbit/Worker.py:288 #, python-format msgid "Special operations: %d" msgstr "%d 項特殊操作" #: ../bleachbit/Worker.py:291 #, python-format msgid "Errors: %d" msgstr "%d 項錯誤" #. TRANSLATORS: The "deep scan" feature searches over broad #. areas of the file system such as the user's whole home directory #. or all the system executables. #: ../bleachbit/Worker.py:306 msgid "Please wait. Running deep scan." msgstr "請稍待。正在進行深層掃描。" #. TRANSLATORS: %s is replaced with Firefox, System, etc. #: ../bleachbit/Worker.py:335 #, python-format msgid "Please wait. Previewing %s." msgstr "請稍待。正在預覽 %s。" #: ../bleachbit/Update.py:80 msgid "New winapp2.ini was downloaded." msgstr "已下載新的 winapp2.ini 。" #: ../bleachbit/Update.py:125 msgid "Update BleachBit" msgstr "更新 BleachBit" #: ../bleachbit/Update.py:130 msgid "A new version is available." msgstr "有可用的新版本。" #. TRANSLATORS: %s expands to version such as '0.8.4' or '0.8.5beta' or #. similar #: ../bleachbit/Update.py:139 #, python-format msgid "Update to version %s" msgstr "更新至 %s 版本" #: ../bleachbit/Update.py:164 #, python-format msgid "" "Error when opening a network connection to %s to check for updates. Please " "verify the network is working." msgstr "連線至 %s 檢查更新時發生錯誤。請確認網路運作是否正常。" #: ../bleachbit/CLI.py:106 #, python-format msgid "not a valid cleaner: %s" msgstr "%s 不是有效的清理項目" #. TRANSLATORS: This is the command line usage. Don't translate #. %prog, but do translate usage, options, cleaner, and option. #. More information about the command line is here #. https://www.bleachbit.org/documentation/command-line #: ../bleachbit/CLI.py:133 msgid "usage: %prog [options] cleaner.option1 cleaner.option2" msgstr "用法:%prog [選項] 清理項目1 清理項目2" #: ../bleachbit/CLI.py:136 msgid "list cleaners" msgstr "列出所有清理項目" #. TRANSLATORS: predefined cleaners are for applications, such as Firefox and Flash. #. This is different than cleaning an arbitrary file, such as a #. spreadsheet on the desktop. #: ../bleachbit/CLI.py:141 msgid "run cleaners to delete files and make other permanent changes" msgstr "執行清理器;將刪除檔案並套用其他永久變更" #: ../bleachbit/CLI.py:144 msgid "shred specific files or folders" msgstr "粉碎指定的檔案/資料夾" #: ../bleachbit/CLI.py:146 msgid "show system information" msgstr "顯示系統資訊" #: ../bleachbit/CLI.py:148 msgid "launch the graphical interface" msgstr "啟動圖形介面" #: ../bleachbit/CLI.py:152 msgid "do not prompt for administrator privileges" msgstr "不要出現要求管理員權限的視窗" #: ../bleachbit/CLI.py:157 msgid "preview files to be deleted and other changes" msgstr "預覽可被刪除的檔案與其他更動" #: ../bleachbit/CLI.py:161 msgid "use options set in the graphical interface" msgstr "採用圖形介面的選項設置" #: ../bleachbit/CLI.py:164 msgid "update winapp2.ini, if a new version is available" msgstr "更新 winapp2.ini ,如果有新版本可用" #: ../bleachbit/CLI.py:166 msgid "output version information and exit" msgstr "輸出版本資訊並離開" #: ../bleachbit/CLI.py:168 msgid "overwrite files to hide contents" msgstr "覆寫檔案以隱藏內容" #. TRANSLATORS: this is the context menu #: ../bleachbit/Action.py:382 ../bleachbit/GUI.py:632 msgid "Clean" msgstr "清理" #: ../bleachbit/Action.py:418 #, python-format msgid "Run external command: %s" msgstr "執行外部指令:%s" #: ../bleachbit/GUI.py:135 ../bleachbit/GuiPreferences.py:296 msgid "Name" msgstr "名稱" #: ../bleachbit/GUI.py:143 msgid "Active" msgstr "啟用" #. TRANSLATORS: Size is the label for the column that shows how #. much space an option would clean or did clean #: ../bleachbit/GUI.py:155 msgid "Size" msgstr "大小" #. TRANSLATORS: %(cleaner) may be Firefox, System, etc. #. %(option) may be cache, logs, cookies, etc. #. %(warning) may be 'This option is really slow' #: ../bleachbit/GUI.py:186 #, python-format msgid "" "Warning regarding %(cleaner)s - %(option)s:\n" "\n" "%(warning)s" msgstr "" "%(cleaner)s - %(option)s 的警告:\n" "\n" "%(warning)s" #: ../bleachbit/GUI.py:372 msgid "You must select an operation" msgstr "您必須選擇至少一項操作" #: ../bleachbit/GUI.py:391 ../bleachbit/GUI.py:413 msgid "Done." msgstr "完成。" #: ../bleachbit/GUI.py:426 msgid "Program to clean unnecessary files" msgstr "無用檔案的清理程式" #: ../bleachbit/GUI.py:436 msgid "" "GNU General Public License version 3 or later.\n" "See http://www.gnu.org/licenses/gpl-3.0.txt" msgstr "" "GNU 通用公共許可證第三版(或是更新版)。\n" "請參閱 http://www.gnu.org/licenses/gpl-3.0.txt" #. TRANSLATORS: Maintain the names of translators here. #. Launchpad does this automatically for translations #. typed in Launchpad. This is a special string shown #. in the 'About' box. #: ../bleachbit/GUI.py:442 msgid "translator-credits" msgstr "" "Launchpad Contributions:\n" " Cheng-Chia Tseng https://launchpad.net/~zerng07\n" " Pin-hsien Li https://launchpad.net/~plesry\n" " taijuin lee https://launchpad.net/~taijuin" #: ../bleachbit/GUI.py:454 msgid "System information" msgstr "系統資訊" #: ../bleachbit/GUI.py:527 msgid "Choose files to shred" msgstr "選擇要粉碎的檔案" #: ../bleachbit/GUI.py:530 msgid "Choose folder to shred" msgstr "選擇要粉碎的資料夾" #: ../bleachbit/GUI.py:594 ../bleachbit/GuiPreferences.py:197 #: ../bleachbit/GuiPreferences.py:326 ../bleachbit/GuiPreferences.py:367 msgid "Choose a folder" msgstr "選擇一個資料夾" #. TRANSLATORS: this is the context menu #: ../bleachbit/GUI.py:627 msgid "Preview" msgstr "預覽" #: ../bleachbit/GUI.py:734 msgid "_Shred Files" msgstr "粉碎檔案(_S)" #: ../bleachbit/GUI.py:736 msgid "Sh_red Folders" msgstr "粉碎資料夾(_R)" #: ../bleachbit/GUI.py:738 msgid "_Wipe Free Space" msgstr "抹除可用空間(_W)" #: ../bleachbit/GUI.py:740 msgid "S_hred Settings and Quit" msgstr "粉碎設定值後退出(_H)" #: ../bleachbit/GUI.py:742 msgid "_Quit" msgstr "退出(_Q)" #: ../bleachbit/GUI.py:744 msgid "_File" msgstr "檔案(_F)" #: ../bleachbit/GUI.py:746 ../bleachbit/GuiPreferences.py:58 msgid "Preferences" msgstr "偏好設定" #: ../bleachbit/GUI.py:747 msgid "_Edit" msgstr "編輯(_E)" #: ../bleachbit/GUI.py:748 msgid "Help Contents" msgstr "幫助文件" #: ../bleachbit/GUI.py:751 msgid "_Release Notes" msgstr "發行備註(_R)" #: ../bleachbit/GUI.py:754 msgid "_System Information" msgstr "系統資訊(_S)" #: ../bleachbit/GUI.py:757 msgid "_About" msgstr "關於(_A)" #: ../bleachbit/GUI.py:758 msgid "_Help" msgstr "幫助(_H)" #: ../bleachbit/GUI.py:783 msgctxt "button" msgid "Preview" msgstr "預覽" #: ../bleachbit/GUI.py:788 msgid "Preview files in the selected operations (without deleting any files)" msgstr "預覽所選操作的目標檔案;不會真正刪除檔案" #: ../bleachbit/GUI.py:798 msgctxt "button" msgid "Clean" msgstr "清理" #: ../bleachbit/GUI.py:802 msgid "Clean files in the selected operations" msgstr "根據所選操作清理檔案" #: ../bleachbit/GUI.py:893 msgid "Error when checking for updates: " msgstr "檢查更新時發生錯誤: " #: ../bleachbit/GUI.py:932 msgid "" "Error loading the SQLite module: the antivirus software may be blocking it." msgstr "載入 SQLite 模組時發生錯誤:也許有防毒軟體阻擋了連線?" #: ../bleachbit/GUI.py:935 msgid "" "You are running BleachBit with administrative privileges for cleaning shared " "parts of the system, and references to the user profile folder will clean " "only the root account." msgstr "您正以管理權限執行 BleachBit。BleachBit 將清理系統共享的部分,以及 root 帳號下存放使用者設定的資料夾。" #: ../bleachbit/GUI.py:940 msgid "" "Run BleachBit with administrator privileges to improve the accuracy of " "overwriting the contents of files." msgstr "使用管理權限執行 BleachBit 以準確覆寫檔案內容。" #: ../bleachbit/GuiPreferences.py:64 msgid "General" msgstr "一般" #: ../bleachbit/GuiPreferences.py:67 msgid "Drives" msgstr "硬碟" #: ../bleachbit/GuiPreferences.py:70 msgid "Languages" msgstr "語系" #: ../bleachbit/GuiPreferences.py:72 msgid "Whitelist" msgstr "白名單" #: ../bleachbit/GuiPreferences.py:117 msgid "Check periodically for software updates via the Internet" msgstr "定期從網路檢查軟體更新" #: ../bleachbit/GuiPreferences.py:122 msgid "" "If an update is found, you will be given the option to view information " "about it. Then, you may manually download and install the update." msgstr "若有可用的更新,將提供該更新相關資訊的選項。之後您可以手動下載並安裝該更新。" #: ../bleachbit/GuiPreferences.py:128 msgid "Check for new beta releases" msgstr "檢查是否有新的測試版本" #: ../bleachbit/GuiPreferences.py:137 msgid "Download and update cleaners from community (winapp2.ini)" msgstr "從社群下載更新清理器 (winapp2.ini)" #. TRANSLATORS: This means to hide cleaners which would do #. nothing. For example, if Firefox were never used on #. this system, this option would hide Firefox to simplify #. the list of cleaners. #: ../bleachbit/GuiPreferences.py:151 msgid "Hide irrelevant cleaners" msgstr "隱藏不相關的清理器" #. TRANSLATORS: Overwriting is the same as shredding. It is a way #. to prevent recovery of the data. You could also translate #. 'Shred files to prevent recovery.' #: ../bleachbit/GuiPreferences.py:159 msgid "Overwrite contents of files to prevent recovery" msgstr "將檔案內容覆寫以防止資料回復" #: ../bleachbit/GuiPreferences.py:163 msgid "" "Overwriting is ineffective on some file systems and with certain BleachBit " "operations. Overwriting is significantly slower." msgstr "有些檔案系統與 Bleachbit 操作將導致覆寫操作效果不佳。覆寫操作的速度非常緩慢。" #: ../bleachbit/GuiPreferences.py:166 msgid "Start BleachBit with computer" msgstr "開機時啟動 Bleachbit" #: ../bleachbit/GuiPreferences.py:172 msgid "Exit after cleaning" msgstr "清理後離開" #: ../bleachbit/GuiPreferences.py:178 msgid "Confirm before delete" msgstr "刪除前先確認" #: ../bleachbit/GuiPreferences.py:186 msgid "Use IEC sizes (1 KiB = 1024 bytes) instead of SI (1 kB = 1000 bytes)" msgstr "使用 IEC 計數 (1 KiB = 1024 位元組) 而非 SI 計數 (1 kB = 1000 位元組)" #: ../bleachbit/GuiPreferences.py:221 msgid "" "Choose a writable folder for each drive for which to overwrite free space." msgstr "為了覆寫可用空間,請為每顆硬碟選擇一個可寫入的資料夾。" #. TRANSLATORS: In the preferences dialog, this button adds a path to #. the list of paths #: ../bleachbit/GuiPreferences.py:243 msgctxt "button" msgid "Add" msgstr "新增" #. TRANSLATORS: In the preferences dialog, this button removes a path #. from the list of paths #: ../bleachbit/GuiPreferences.py:247 ../bleachbit/GuiPreferences.py:458 msgctxt "button" msgid "Remove" msgstr "移除" #: ../bleachbit/GuiPreferences.py:272 msgid "All languages will be deleted except those checked." msgstr "未勾選的語系將被刪除。" #: ../bleachbit/GuiPreferences.py:288 msgid "Preserve" msgstr "保留" #: ../bleachbit/GuiPreferences.py:292 msgid "Code" msgstr "編碼" #: ../bleachbit/GuiPreferences.py:313 ../bleachbit/GuiPreferences.py:354 msgid "Choose a file" msgstr "選擇一份檔案" #: ../bleachbit/GuiPreferences.py:320 ../bleachbit/GuiPreferences.py:361 #: ../bleachbit/GuiPreferences.py:405 msgid "File" msgstr "檔案" #: ../bleachbit/GuiPreferences.py:334 ../bleachbit/GuiPreferences.py:375 #: ../bleachbit/GuiPreferences.py:407 msgid "Folder" msgstr "資料夾" #: ../bleachbit/GuiPreferences.py:417 msgid "Theses paths will not be deleted or modified." msgstr "以下路徑將不會被刪除或更改。" #: ../bleachbit/GuiPreferences.py:420 msgid "These locations can be selected for deletion." msgstr "以下位置可以被選擇刪除。" #: ../bleachbit/GuiPreferences.py:428 msgid "Type" msgstr "類別" #. TRANSLATORS: In the tree view "Path" is used generically to refer to a #. file, a folder, or a pattern describing either #: ../bleachbit/GuiPreferences.py:434 msgid "Path" msgstr "路徑" #: ../bleachbit/GuiPreferences.py:446 msgctxt "button" msgid "Add file" msgstr "新增檔案" #: ../bleachbit/GuiPreferences.py:452 msgctxt "button" msgid "Add folder" msgstr "新增資料夾" bleachbit-2.0/po/hr.po0000644000175000017500000013466413245436307013006 0ustar hlehle# Croatian translation for bleachbit # Copyright (c) 2009 Rosetta Contributors and Canonical Ltd 2009 # This file is distributed under the same license as the bleachbit package. # FIRST AUTHOR , 2009. # msgid "" msgstr "" "Project-Id-Version: bleachbit\n" "Report-Msgid-Bugs-To: FULL NAME \n" "POT-Creation-Date: 2017-02-11 11:12-0700\n" "PO-Revision-Date: 2017-03-12 18:57+0000\n" "Last-Translator: gogo \n" "Language-Team: Croatian \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=3; plural=n%10==1 && n%100!=11 ? 0 : n%10>=2 && " "n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2;\n" "X-Launchpad-Export-Date: 2017-03-13 19:44+0000\n" "X-Generator: Launchpad (build 18331)\n" #: ../cleaners/mc.xml ../cleaners/tortoisesvn.xml ../cleaners/vim.xml #: ../cleaners/safari.xml ../cleaners/links2.xml ../cleaners/seamonkey.xml #: ../cleaners/realplayer.xml ../cleaners/windows_defender.xml #: ../cleaners/d4x.xml ../cleaners/sqlite3.xml #: ../cleaners/internet_explorer.xml ../cleaners/libreoffice.xml #: ../cleaners/easytag.xml ../cleaners/bash.xml ../cleaners/nautilus.xml #: ../cleaners/octave.xml ../cleaners/elinks.xml ../cleaners/chromium.xml #: ../cleaners/google_chrome.xml msgid "History" msgstr "Povijest" #: ../cleaners/mc.xml ../cleaners/tortoisesvn.xml ../cleaners/links2.xml #: ../cleaners/realplayer.xml ../cleaners/d4x.xml ../cleaners/libreoffice.xml #: ../cleaners/easytag.xml ../cleaners/nautilus.xml ../cleaners/gnome.xml #: ../bleachbit/Cleaner.py:349 ../bleachbit/Cleaner.py:423 #: ../bleachbit/Cleaner.py:432 msgid "Delete the usage history" msgstr "Obriši povijest korištenja" #: ../cleaners/gpodder.xml ../cleaners/hippo_opensim_viewer.xml #: ../cleaners/thumbnails.xml ../cleaners/safari.xml ../cleaners/emesene.xml #: ../cleaners/liferea.xml ../cleaners/seamonkey.xml ../cleaners/vuze.xml #: ../cleaners/yahoo_messenger.xml ../cleaners/pidgin.xml #: ../cleaners/adobe_reader.xml ../cleaners/evolution.xml #: ../cleaners/tremulous.xml ../cleaners/libreoffice.xml ../cleaners/xine.xml #: ../cleaners/nexuiz.xml ../cleaners/exaile.xml ../cleaners/opera.xml #: ../cleaners/amsn.xml ../cleaners/gftp.xml ../cleaners/miro.xml #: ../cleaners/beagle.xml ../cleaners/kde.xml ../cleaners/epiphany.xml #: ../cleaners/flash.xml ../cleaners/secondlife_viewer.xml ../cleaners/java.xml #: ../cleaners/chromium.xml ../cleaners/audacious.xml ../cleaners/rhythmbox.xml #: ../cleaners/google_chrome.xml ../cleaners/thunderbird.xml #: ../bleachbit/Cleaner.py:192 ../bleachbit/Cleaner.py:370 #: ../bleachbit/Cleaner.py:455 msgid "Cache" msgstr "Pričuvna memorija" #: ../cleaners/gpodder.xml ../cleaners/yum.xml #: ../cleaners/hippo_opensim_viewer.xml ../cleaners/thumbnails.xml #: ../cleaners/windows_explorer.xml ../cleaners/liferea.xml #: ../cleaners/vuze.xml ../cleaners/yahoo_messenger.xml ../cleaners/pidgin.xml #: ../cleaners/adobe_reader.xml ../cleaners/evolution.xml #: ../cleaners/libreoffice.xml ../cleaners/apt.xml ../cleaners/xine.xml #: ../cleaners/nexuiz.xml ../cleaners/exaile.xml ../cleaners/amsn.xml #: ../cleaners/gftp.xml ../cleaners/miro.xml ../cleaners/beagle.xml #: ../cleaners/kde.xml ../cleaners/flash.xml ../cleaners/secondlife_viewer.xml #: ../cleaners/java.xml ../cleaners/audacious.xml ../cleaners/rhythmbox.xml #: ../bleachbit/Cleaner.py:370 ../bleachbit/Cleaner.py:455 #: ../bleachbit/Cleaner.py:489 ../bleachbit/Cleaner.py:491 msgid "Delete the cache" msgstr "Obriši pričuvnu memoriju" #. TRANSLATORS: Vacuum is a verb. The term is jargon #. from the SQLite database. Microsoft Access uses #. the term 'Compact Database' (which you may translate #. instead). Another synonym is 'defragment.' #: ../cleaners/gpodder.xml ../cleaners/yum.xml ../cleaners/safari.xml #: ../cleaners/liferea.xml ../cleaners/chromium.xml #: ../cleaners/google_chrome.xml ../cleaners/thunderbird.xml #: ../bleachbit/Cleaner.py:214 ../bleachbit/Cleaner.py:360 #: ../bleachbit/Action.py:445 msgid "Vacuum" msgstr "Vakum" #: ../cleaners/gpodder.xml ../cleaners/yum.xml ../cleaners/safari.xml #: ../cleaners/liferea.xml ../cleaners/chromium.xml #: ../cleaners/google_chrome.xml ../cleaners/thunderbird.xml #: ../bleachbit/Cleaner.py:215 msgid "" "Clean database fragmentation to reduce space and improve speed without " "removing any data" msgstr "" "Očisti rascjepkanost baze podataka u svrhu smanjenja zauzetog prostora i " "poboljšanje brzine bez gubitka podataka." #: ../cleaners/yum.xml ../cleaners/apt.xml msgid "Package manager" msgstr "Upravitelj paketima" #: ../cleaners/warzone2100.xml ../cleaners/hippo_opensim_viewer.xml #: ../cleaners/gl-117.xml ../cleaners/tremulous.xml ../cleaners/nexuiz.xml #: ../cleaners/secondlife_viewer.xml msgid "Game" msgstr "Igra" #: ../cleaners/warzone2100.xml ../cleaners/hippo_opensim_viewer.xml #: ../cleaners/teamviewer.xml ../cleaners/realplayer.xml ../cleaners/vuze.xml #: ../cleaners/yahoo_messenger.xml ../cleaners/amule.xml #: ../cleaners/easytag.xml ../cleaners/exaile.xml ../cleaners/screenlets.xml #: ../cleaners/gftp.xml ../cleaners/miro.xml ../cleaners/audacious.xml #: ../bleachbit/Cleaner.py:486 msgid "Logs" msgstr "Zapisi" #: ../cleaners/warzone2100.xml ../cleaners/hippo_opensim_viewer.xml #: ../cleaners/teamviewer.xml ../cleaners/realplayer.xml ../cleaners/vuze.xml #: ../cleaners/yahoo_messenger.xml ../cleaners/amule.xml ../cleaners/exaile.xml #: ../cleaners/screenlets.xml ../cleaners/gftp.xml ../cleaners/miro.xml #: ../cleaners/audacious.xml ../bleachbit/Cleaner.py:486 msgid "Delete the logs" msgstr "Obriši zapise" #: ../cleaners/thumbnails.xml ../cleaners/windows_explorer.xml msgid "Thumbnails" msgstr "Minijature" #: ../cleaners/thumbnails.xml msgid "Icons for files on the system" msgstr "Ikone za datoteke na sustavu" #: ../cleaners/vim.xml ../cleaners/gedit.xml msgid "Editor" msgstr "Uređivač" #: ../cleaners/vim.xml msgid "" "Delete ~/.viminfo which includes file history, command history, and buffers" msgstr "" "Obriši ~/.viminfo koji sadrži povijest datoteka, povijest naredbi i " "predmemoriju" #: ../cleaners/filezilla.xml ../cleaners/transmission.xml ../cleaners/vuze.xml #: ../cleaners/amule.xml ../cleaners/gftp.xml msgid "File transfer client" msgstr "Klijent za prijenos datoteka" #: ../cleaners/filezilla.xml ../cleaners/paint.xml #: ../cleaners/windows_media_player.xml ../cleaners/windows_explorer.xml #: ../cleaners/teamviewer.xml ../cleaners/microsoft_office.xml #: ../cleaners/vlc.xml ../cleaners/adobe_reader.xml ../cleaners/winamp.xml #: ../cleaners/winzip.xml ../cleaners/winrar.xml ../cleaners/audacious.xml #: ../cleaners/wordpad.xml ../bleachbit/Cleaner.py:371 msgid "Most recently used" msgstr "Nedavno korišteno" #: ../cleaners/filezilla.xml ../cleaners/windows_explorer.xml #: ../cleaners/gwenview.xml ../cleaners/adobe_reader.xml ../cleaners/gedit.xml #: ../cleaners/kde.xml ../cleaners/audacious.xml ../bleachbit/Cleaner.py:372 #: ../bleachbit/Cleaner.py:469 msgid "Delete the list of recently used documents" msgstr "Obriši popis nedavno korištenih dokumenata" #: ../cleaners/skype.xml ../cleaners/emesene.xml #: ../cleaners/yahoo_messenger.xml ../cleaners/pidgin.xml ../cleaners/amsn.xml msgid "Chat client" msgstr "Klijent za razgovor" #: ../cleaners/skype.xml ../cleaners/hexchat.xml ../cleaners/emesene.xml #: ../cleaners/seamonkey.xml ../cleaners/yahoo_messenger.xml #: ../cleaners/pidgin.xml ../cleaners/amsn.xml msgid "Chat logs" msgstr "Zapisi razgovora" #: ../cleaners/skype.xml ../cleaners/hexchat.xml ../cleaners/emesene.xml #: ../cleaners/seamonkey.xml ../cleaners/yahoo_messenger.xml #: ../cleaners/pidgin.xml ../cleaners/amsn.xml msgid "Delete the chat logs" msgstr "Obriši zapise razgovora" #: ../cleaners/skype.xml msgid "Installers" msgstr "Instalacijski programi" #: ../cleaners/skype.xml msgid "Delete cached patches and installers" msgstr "Obriši pričuvnu memoriju zakrpa i instalacijskih programa" #: ../cleaners/hexchat.xml msgid "IRC client formerly known as XChat" msgstr "IRC klijent nekada poznat kao XChat" #: ../cleaners/safari.xml ../cleaners/links2.xml ../cleaners/seamonkey.xml #: ../cleaners/konqueror.xml ../cleaners/internet_explorer.xml #: ../cleaners/opera.xml ../cleaners/epiphany.xml ../cleaners/elinks.xml #: ../cleaners/chromium.xml ../cleaners/google_chrome.xml #: ../bleachbit/Cleaner.py:226 msgid "Web browser" msgstr "Web preglednik" #: ../cleaners/safari.xml ../cleaners/seamonkey.xml ../cleaners/opera.xml #: ../cleaners/epiphany.xml ../cleaners/chromium.xml #: ../cleaners/google_chrome.xml ../cleaners/thunderbird.xml #: ../bleachbit/Cleaner.py:193 msgid "Delete the web cache, which reduces time to display revisited pages" msgstr "" "Obriši web pričuvnu memoriju, što skraćuje vrijeme prikazivanja ponovno " "posjećenih stranica." #: ../cleaners/safari.xml ../cleaners/liferea.xml ../cleaners/seamonkey.xml #: ../cleaners/realplayer.xml ../cleaners/konqueror.xml #: ../cleaners/internet_explorer.xml ../cleaners/opera.xml #: ../cleaners/epiphany.xml ../cleaners/flash.xml ../cleaners/silverlight.xml #: ../cleaners/chromium.xml ../cleaners/google_chrome.xml #: ../cleaners/thunderbird.xml ../bleachbit/Cleaner.py:194 msgid "Cookies" msgstr "Kolačići" #: ../cleaners/safari.xml ../cleaners/liferea.xml ../cleaners/seamonkey.xml #: ../cleaners/realplayer.xml ../cleaners/konqueror.xml #: ../cleaners/internet_explorer.xml ../cleaners/opera.xml #: ../cleaners/epiphany.xml ../cleaners/flash.xml ../cleaners/silverlight.xml #: ../cleaners/chromium.xml ../cleaners/google_chrome.xml #: ../cleaners/thunderbird.xml ../bleachbit/Cleaner.py:195 msgid "" "Delete cookies, which contain information such as web site preferences, " "authentication, and tracking identification" msgstr "" "Obriši kolačiće koji sadrže informacije kao što su postavke internet " "stranica, ovjere i praćenja identiteta" #: ../cleaners/safari.xml ../cleaners/konqueror.xml #: ../cleaners/internet_explorer.xml ../cleaners/opera.xml #: ../bleachbit/Cleaner.py:213 msgid "List of visited web pages" msgstr "Popis posjećenih web stranica" #. Torrent software can block a list of IP addresses, such as those that may belong to malware or anti-piracy organizations #: ../cleaners/transmission.xml msgid "Blocklists" msgstr "Popis blokiranih" #: ../cleaners/transmission.xml ../cleaners/windows_defender.xml #: ../cleaners/beagle.xml ../cleaners/thunderbird.xml ../cleaners/deepscan.xml #: ../bleachbit/Cleaner.py:197 msgid "Delete the files" msgstr "Obriši datoteke" #: ../cleaners/transmission.xml msgid "Blocklists will need update to work." msgstr "Popis blokiranih treba nadopuniti kako bi radio." #: ../cleaners/transmission.xml msgid "Torrents" msgstr "Torrenti" #: ../cleaners/transmission.xml msgid "Delete the torrents (just the metadata but not the files described)" msgstr "Obriši torrente (samo metapodatke ali ne i opisane datoteke)" #: ../cleaners/transmission.xml msgid "Statistics" msgstr "Statistika" #: ../cleaners/transmission.xml msgid "Delete the file" msgstr "Obriši datoteku" #: ../cleaners/paint.xml ../cleaners/windows_media_player.xml #: ../cleaners/windows_explorer.xml ../cleaners/teamviewer.xml #: ../cleaners/microsoft_office.xml ../cleaners/vlc.xml ../cleaners/winamp.xml #: ../cleaners/winzip.xml ../cleaners/winrar.xml ../cleaners/wordpad.xml msgid "Delete the most recently used list" msgstr "Obriši popis nedavno korištenih medija" #: ../cleaners/emesene.xml msgid "Delete the avatars and emoticons cache" msgstr "Obriši avatare i pričuvnu memoriju smajlija" #: ../cleaners/windows_media_player.xml ../cleaners/realplayer.xml #: ../cleaners/vlc.xml ../cleaners/winamp.xml msgid "Media player" msgstr "Medijski reproduktor" #: ../cleaners/windows_explorer.xml ../cleaners/nautilus.xml msgid "File manager" msgstr "Upravitelj datoteka" #: ../cleaners/windows_explorer.xml ../cleaners/gwenview.xml #: ../cleaners/gedit.xml ../cleaners/kde.xml ../bleachbit/Cleaner.py:468 #: ../bleachbit/Cleaner.py:663 msgid "Recent documents list" msgstr "Popis nedavnih dokumenata" #: ../cleaners/windows_explorer.xml msgid "" "This option will reset pinned locations in Quick Access to their defaults." msgstr "" "Ova mogućnost će vratiti zadane pričvršćene lokacije u izborniku Brzog " "pristupa." #. In Windows 'Run' is the dialog in the Start menu #. In GNOME 'Run' is the dialog shown when typing ALT+F2' #: ../cleaners/windows_explorer.xml ../cleaners/gnome.xml msgid "Run" msgstr "Pokreni" #: ../cleaners/windows_explorer.xml ../cleaners/opera.xml ../cleaners/gnome.xml #: ../cleaners/google_toolbar.xml msgid "Search history" msgstr "Povijest pretraživanja" #: ../cleaners/windows_explorer.xml ../cleaners/opera.xml ../cleaners/gnome.xml #: ../cleaners/google_toolbar.xml msgid "Delete the search history" msgstr "Obriši povijest pretraživanja" #: ../cleaners/windows_explorer.xml msgid "This will restart Windows Explorer." msgstr "Ovo će ponovno pokrenuti Windows Explorer." #: ../cleaners/gl-117.xml ../cleaners/microsoft_office.xml #: ../cleaners/beagle.xml ../cleaners/secondlife_viewer.xml ../cleaners/x11.xml msgid "Debug logs" msgstr "Zapisi otklanjanja grešaka" #: ../cleaners/gl-117.xml ../cleaners/microsoft_office.xml #: ../cleaners/easytag.xml ../cleaners/beagle.xml #: ../cleaners/secondlife_viewer.xml ../cleaners/x11.xml msgid "Delete the debug logs" msgstr "Obriši zapise otklanjanja grešaka" #: ../cleaners/google_earth.xml ../cleaners/winetricks.xml ../cleaners/vuze.xml #: ../cleaners/adobe_reader.xml ../cleaners/amule.xml ../cleaners/wine.xml #: ../cleaners/internet_explorer.xml ../cleaners/gimp.xml ../cleaners/kde.xml #: ../cleaners/deepscan.xml ../bleachbit/Cleaner.py:520 msgid "Temporary files" msgstr "Privremene datoteke" #: ../cleaners/google_earth.xml ../cleaners/winetricks.xml ../cleaners/vuze.xml #: ../cleaners/adobe_reader.xml ../cleaners/amule.xml ../cleaners/wine.xml #: ../cleaners/internet_explorer.xml ../cleaners/gimp.xml ../cleaners/kde.xml #: ../cleaners/deepscan.xml ../bleachbit/Cleaner.py:520 msgid "Delete the temporary files" msgstr "Obriši privremene datoteke" #: ../cleaners/seamonkey.xml ../cleaners/opera.xml ../bleachbit/Cleaner.py:201 msgid "Download history" msgstr "Preuzmi povijest" #: ../cleaners/seamonkey.xml ../cleaners/opera.xml ../bleachbit/Cleaner.py:201 msgid "List of files downloaded" msgstr "Popis preuzetih datoteka" #: ../cleaners/seamonkey.xml msgid "Delete the list of visited web pages" msgstr "Obiši popis posjećenih web stranica" #: ../cleaners/vuze.xml ../cleaners/deepscan.xml ../bleachbit/Cleaner.py:190 msgid "Backup files" msgstr "Sigurnosne kopije" #: ../cleaners/vuze.xml ../cleaners/deepscan.xml ../bleachbit/Cleaner.py:191 msgid "Delete the backup files" msgstr "Obriši sigurnosne kopije" #: ../cleaners/konqueror.xml ../cleaners/opera.xml ../cleaners/chromium.xml msgid "Current session" msgstr "Trenutna sesija" #: ../cleaners/konqueror.xml ../cleaners/opera.xml ../cleaners/chromium.xml msgid "Delete the current session" msgstr "Obriši trenutnu sesiju" #: ../cleaners/konqueror.xml ../cleaners/opera.xml ../bleachbit/Cleaner.py:213 msgid "URL history" msgstr "URL povijest" #: ../cleaners/microsoft_office.xml ../cleaners/libreoffice.xml #: ../bleachbit/Cleaner.py:375 msgid "Office suite" msgstr "Office suite" #: ../cleaners/windows_defender.xml msgid "Anti-virus" msgstr "Anti-virus" #: ../cleaners/journald.xml msgid "System journals" msgstr "Dnevnici sustava" #: ../cleaners/journald.xml msgid "Clean old system journals" msgstr "Obriši stare dnevnike sustava" #: ../cleaners/adobe_reader.xml msgid "Document viewer" msgstr "Preglednik dokumenata" #: ../cleaners/evolution.xml ../cleaners/thunderbird.xml msgid "Email client" msgstr "Klijent e-pošte" #: ../cleaners/tremulous.xml msgid "Delete the list of game servers" msgstr "Obriši popis poslužitelja igara" #: ../cleaners/sqlite3.xml ../cleaners/bash.xml ../cleaners/octave.xml msgid "Delete the command history" msgstr "Obriši povijest naredbi" #: ../cleaners/wine.xml msgid "Compatibility layer for Windows software" msgstr "Sloj kompatibilnosti za Windows softver" #: ../cleaners/internet_explorer.xml ../cleaners/chromium.xml #: ../cleaners/google_chrome.xml ../bleachbit/Cleaner.py:202 msgid "Form history" msgstr "Povijest obrazaca" #: ../cleaners/internet_explorer.xml ../bleachbit/Cleaner.py:203 msgid "A history of forms entered in web sites and in the Search bar" msgstr "Povijest obrazaca upisanih u web stranice i u traku pretraživanja" #. This software edits metadata tags, such as title and artist, in audio files #: ../cleaners/easytag.xml msgid "Audio files tagger" msgstr "Uređivači oznaka glazbenih datoteka" #: ../cleaners/apt.xml msgid "Delete obsolete files" msgstr "Obriši zastarjele datoteke" #: ../cleaners/apt.xml msgid "Package lists" msgstr "Popis paketa" #: ../cleaners/xine.xml ../cleaners/miro.xml ../cleaners/flash.xml msgid "Multimedia viewer" msgstr "Multimedijski preglednik" #: ../cleaners/recoll.xml ../cleaners/beagle.xml msgid "Search tool" msgstr "Alat pretrage" #: ../cleaners/recoll.xml ../cleaners/beagle.xml ../cleaners/thunderbird.xml msgid "Index" msgstr "Sadržaj" #: ../cleaners/recoll.xml msgid "" "Delete the search index, a database of words and the files they contain" msgstr "" "Obriši sadržaj pretrage, bazu podataka riječi i datoteke koje sadrže." #: ../cleaners/gimp.xml msgid "Graphics editor" msgstr "Grafički uređivač" #: ../cleaners/exaile.xml msgid "Downloaded podcasts" msgstr "Preuzeti podcasti" #: ../cleaners/exaile.xml msgid "Delete downloaded podcasts" msgstr "Obriši preuzete podcaste" #: ../cleaners/bash.xml msgid "Shell" msgstr "Ljuska" #. TRANSLATORS: DOM = Document Object Model. #: ../cleaners/opera.xml ../cleaners/epiphany.xml ../cleaners/chromium.xml #: ../cleaners/google_chrome.xml ../bleachbit/Cleaner.py:199 msgid "DOM Storage" msgstr "DOM pohrana" #: ../cleaners/opera.xml ../cleaners/epiphany.xml ../cleaners/chromium.xml #: ../cleaners/google_chrome.xml ../bleachbit/Cleaner.py:199 msgid "Delete HTML5 cookies" msgstr "Obriši HTML5 kolačiće" #: ../cleaners/opera.xml ../cleaners/epiphany.xml ../cleaners/chromium.xml #: ../cleaners/google_chrome.xml ../cleaners/thunderbird.xml #: ../bleachbit/Cleaner.py:208 msgid "Passwords" msgstr "Lozinke" #: ../cleaners/opera.xml ../cleaners/epiphany.xml ../cleaners/chromium.xml #: ../cleaners/google_chrome.xml ../cleaners/thunderbird.xml #: ../bleachbit/Cleaner.py:209 msgid "" "A database of usernames and passwords as well as a list of sites that should " "not store passwords" msgstr "" "Baza podataka korisničkih imena i lozinki kao i popis web stranica koje ne " "trebaju spremati lozinke." #: ../cleaners/opera.xml ../cleaners/epiphany.xml ../cleaners/chromium.xml #: ../cleaners/google_chrome.xml ../cleaners/thunderbird.xml #: ../bleachbit/Cleaner.py:211 msgid "This option will delete your saved passwords." msgstr "Ova mogućnost će obrisati vaše spremljene lozinke." #: ../cleaners/nautilus.xml msgid "Custom folders will be reset." msgstr "Prilagođene mape će biti vraćene u izvorno stanje." #: ../cleaners/gnome.xml ../cleaners/kde.xml msgid "Desktop environment" msgstr "Radno okruženje" #: ../cleaners/screenlets.xml msgid "Widgets for the desktop" msgstr "Widgeti za radnu površinu" #: ../cleaners/epiphany.xml msgid "Places" msgstr "Lokacije" #: ../cleaners/epiphany.xml msgid "" "A database of URLs including bookmarks, favicons, and a history of visited " "web sites" msgstr "" "Baza podataka URL-ova uključujući zabilješke, favikone i povijest posjećenih " "web stranica" #: ../cleaners/epiphany.xml msgid "This option deletes all bookmarks." msgstr "Ova mogućnost briše sve zabilješke." #: ../cleaners/winrar.xml msgid "File archiver" msgstr "Upravitelj arhive" #: ../cleaners/elinks.xml msgid "Delete the cookies, visited URLs, and search history" msgstr "Obriši kolačiće, posjećene URL-ove i povijest pretrage" #: ../cleaners/chromium.xml ../cleaners/google_chrome.xml msgid "A history of forms entered in web sites" msgstr "Povijest obrazaca upisanih u web stranice" #: ../cleaners/chromium.xml ../cleaners/google_chrome.xml msgid "" "Delete the history which includes visited sites, downloads, and thumbnails" msgstr "" "Obriši povijest koja uključuje posjećene web lokacije, preuzimanja i " "minijature" #: ../cleaners/chromium.xml ../cleaners/google_chrome.xml msgid "Search engines" msgstr "Pretraživači" #. 'Factory' means a search engine that is installed by default 'from the factory,' but this is different than a 'default search engine' https://lists.launchpad.net/launchpad-translators/msg00283.html #: ../cleaners/chromium.xml ../cleaners/google_chrome.xml msgid "" "Reset the search engine usage history and delete non-factory search engines, " "some of which are added automatically" msgstr "" "Vrati izvornu povijest pretraživanja pretraživača i obriši pretraživače koji " "nisu zadani, neke koji su zadani automatski" #: ../cleaners/audacious.xml msgid "Audio player" msgstr "Glazbeni repoduktor" #: ../cleaners/rhythmbox.xml msgid "Database" msgstr "Baza podataka" #: ../cleaners/rhythmbox.xml msgid "" "Delete the database, which contain information such as play count and last " "played" msgstr "" "Obriši bazu podataka, koja sadrži informacije poput broja i posljednje " "reprodukcije" #: ../cleaners/google_chrome.xml msgid "Session" msgstr "Sesija" #: ../cleaners/google_chrome.xml msgid "Delete the current and last sessions" msgstr "Obriši trenutnu i posljednju sesiju" #: ../cleaners/x11.xml msgid "Windowing system" msgstr "Sustav prozora" #: ../cleaners/wordpad.xml msgid "Word processor" msgstr "Obrada teksta" #: ../cleaners/deepscan.xml msgid "Deep scan" msgstr "Duboko pretraživanje" #: ../cleaners/deepscan.xml msgid "Clean files widely scattered across the disk" msgstr "Obriši datoteke rasprostranjene diljem diska" #: ../cleaners/deepscan.xml msgid "Inspect the preview for any files you want to keep." msgstr "Pregledajte pregled za sve datoteke koje želite zadržati." #: ../cleaners/deepscan.xml msgid "This option is slow." msgstr "Ova mogućnost je spora" #: ../bleachbit.desktop msgid "Unnecessary file cleaner" msgstr "Čistač nepotrebnih datoteka" #: ../bleachbit.desktop msgid "Free space and maintain privacy" msgstr "Oslobodite prostor i očuvajte privatnost" #: ../bleachbit/FileUtilities.py:668 msgid "" "There was at least one file on a file system that does not support advanced " "overwriting." msgstr "" "Postoji bar jedna datoteka u datotečnom sustavu koja ne podržava napredno " "prebrisivanje." #: ../bleachbit/Unix.py:574 #, python-format msgid "Executable not found: %s" msgstr "Izvršna datoteka nije pronađena: %s" #. TRANSLATORS: %s expands to a name such as 'Firefox' or 'System'. #: ../bleachbit/Unix.py:623 ../bleachbit/Worker.py:136 #, python-format msgid "" "%s cannot be cleaned because it is currently running. Close it, and try " "again." msgstr "" "%s se ne može obrisati jer je trenutno pokrenut. Zatvorite ga i pokušajte " "ponovno." #: ../bleachbit/GuiBasic.py:112 msgid "Delete confirmation" msgstr "Potvrda brisanja" #: ../bleachbit/GuiBasic.py:122 msgid "" "Are you sure you want to permanently delete files according to the selected " "operations? The actual files that will be deleted may have changed since " "you ran the preview." msgstr "" "Sigurno želite trajno obrisati datoteke prema odabranim radnjama? Stvarne " "datoteke koje će biti obrisane su možda promijenjene od zadnjeg pregleda." #: ../bleachbit/GuiBasic.py:125 msgid "Are you sure you want to permanently delete these files?" msgstr "Sigurno želite trajno obrisati ove datoteke?" #: ../bleachbit/GuiBasic.py:162 #, python-format msgid "" "Because you are running as root, please manually open this link in a web " "browser:\n" "%s" msgstr "" "Zato jer ste pokrenuti kao korijenski korisnik, ručno otvorite tu poveznicu " "u web pregledniku:\n" "%s" #. TRANSLATORS: %s expands to www.bleachbit.org or similar #: ../bleachbit/GuiBasic.py:174 #, python-format msgid "Open web browser to %s?" msgstr "Otvori web preglednik prema %s?" #. TRANSLATORS: This is the label in the log indicating was #. skipped because it matches the whitelist #: ../bleachbit/Command.py:47 msgid "Skip" msgstr "Preskoči" #. TRANSLATORS: This is the label in the log indicating will be #. deleted (for previews) or was actually deleted #: ../bleachbit/Command.py:77 msgid "Delete" msgstr "Obriši" #: ../bleachbit/Command.py:99 msgid "" "At least one file was locked by another process, so its contents could not " "be overwritten. It will be marked for deletion upon system reboot." msgstr "" "Bar jedna datoteka je zaključana od strane drugog procesa, stoga njen " "sadržaj ne može biti prebrisan. Biti će označena za brisanje pri pokretanju " "sustava." #. TRANSLATORS: The file will be deleted when the #. system reboots #: ../bleachbit/Command.py:102 msgid "Mark for deletion" msgstr "Odaberi za brisanje" #. TRANSLATORS: Parts of this file will be deleted #: ../bleachbit/Command.py:199 ../bleachbit/Command.py:233 #: ../bleachbit/Action.py:254 ../bleachbit/Action.py:267 #: ../bleachbit/Action.py:280 ../bleachbit/Action.py:293 #: ../bleachbit/Action.py:306 msgid "Clean file" msgstr "Obriši datoteku" #. TRANSLATORS: The file will be truncated to 0 bytes in length #: ../bleachbit/Command.py:275 msgid "Truncate" msgstr "Smanji" #: ../bleachbit/Command.py:317 msgid "Delete registry key" msgstr "Obriši ključ registra" #. TRANSLATORS: This is cleaner name for cleaners imported from winapp2.ini #: ../bleachbit/Winapp.py:44 msgid "Applications" msgstr "Aplikacije" #. TRANSLATORS: This is cleaner name for cleaners imported #. from winapp2.ini #: ../bleachbit/Winapp.py:47 msgid "Internet" msgstr "Internet" #. TRANSLATORS: This is cleaner name for cleaners imported #. from winapp2.ini #: ../bleachbit/Winapp.py:50 msgid "Multimedia" msgstr "Multimedija" #. TRANSLATORS: This is cleaner name for cleaners imported #. from winapp2.ini #: ../bleachbit/Winapp.py:53 msgid "Utilities" msgstr "Pomagala" #: ../bleachbit/Winapp.py:64 msgid "Games" msgstr "Igre" #: ../bleachbit/Winapp.py:162 msgid "Imported from winapp2.ini" msgstr "Uvezeno iz winapp2.ini" #: ../bleachbit/Cleaner.py:197 msgid "Crash reports" msgstr "Izvješća o rušenju programa" #: ../bleachbit/Cleaner.py:204 msgid "Session restore" msgstr "Obnovi sesiju" #: ../bleachbit/Cleaner.py:205 msgid "Loads the initial session after the browser closes or crashes" msgstr "Učitava početnu sesiju nakon što se pretraživač zatvori ili sruši." #: ../bleachbit/Cleaner.py:207 msgid "Site preferences" msgstr "Osobitosti stranice" #: ../bleachbit/Cleaner.py:207 msgid "Settings for individual sites" msgstr "Postavke pojedinih stranica" #. TRANSLATORS: desktop entries are .desktop files in Linux that #. make up the application menu (the menu that shows BleachBit, #. Firefox, and others. The .desktop files also associate file #. types, so clicking on an .html file in Nautilus brings up #. Firefox. #. More information: #. http://standards.freedesktop.org/menu-spec/latest/index.html#introduction #: ../bleachbit/Cleaner.py:453 msgid "Broken desktop files" msgstr "Slomljene datoteke radne površine" #: ../bleachbit/Cleaner.py:454 msgid "Delete broken application menu entries and file associations" msgstr "Obriši slomljene upise izbornika aplikacije i pridruživanja" #. TRANSLATORS: Localizations are files supporting specific #. languages, so applications appear in Spanish, etc. #: ../bleachbit/Cleaner.py:458 msgid "Localizations" msgstr "Lokalizacija" #: ../bleachbit/Cleaner.py:459 msgid "Delete files for unwanted languages" msgstr "Obriši datoteke nepotrebnih jezika" #: ../bleachbit/Cleaner.py:461 msgid "Configure this option in the preferences." msgstr "Prilagodite ovu mogućnost u osobitostima" #: ../bleachbit/Cleaner.py:467 msgid "Rotated logs" msgstr "Rotirani zapisi" #: ../bleachbit/Cleaner.py:467 msgid "Delete old system logs" msgstr "Obriši stare zapise sustava" #: ../bleachbit/Cleaner.py:470 msgid "Trash" msgstr "Smeće" #: ../bleachbit/Cleaner.py:470 msgid "Empty the trash" msgstr "Isprazni smeće" #: ../bleachbit/Cleaner.py:476 ../bleachbit/Cleaner.py:627 #: ../bleachbit/Worker.py:184 msgid "Memory" msgstr "Memorija" #. TRANSLATORS: 'free' means 'unallocated' #: ../bleachbit/Cleaner.py:478 msgid "Wipe the swap and free memory" msgstr "Prebriši swap prostor i nekorištenu memoriju" #: ../bleachbit/Cleaner.py:480 msgid "This option is experimental and may cause system problems." msgstr "" "Ova mogućnost je eksperimentalna i može uzrokovati probleme u sustavu." #: ../bleachbit/Cleaner.py:488 msgid "Memory dump" msgstr "Ispis memorije" #: ../bleachbit/Cleaner.py:488 msgid "Delete the file memory.dmp" msgstr "Obriši datoteku memory.dmp" #. TRANSLATORS: Prefetch is Microsoft Windows jargon. #: ../bleachbit/Cleaner.py:491 msgid "Prefetch" msgstr "Prefetch" #: ../bleachbit/Cleaner.py:493 msgid "Recycle bin" msgstr "Koš za smeće" #: ../bleachbit/Cleaner.py:493 ../bleachbit/Cleaner.py:787 msgid "Empty the recycle bin" msgstr "Isprazni koš za smeće" #. TRANSLATORS: 'Update' is a noun, and 'Update uninstallers' is an option to delete #. the uninstallers for software updates. #: ../bleachbit/Cleaner.py:496 msgid "Update uninstallers" msgstr "Nadopuni programe za deinstalaciju" #: ../bleachbit/Cleaner.py:497 msgid "" "Delete uninstallers for Microsoft updates including hotfixes, service packs, " "and Internet Explorer updates" msgstr "" "Obriši programe deinstalacije Microsoft ažuriranja uključujuću zakrpe, " "servisne pakete i Internet Explorer ažuriranja" #: ../bleachbit/Cleaner.py:504 ../bleachbit/Cleaner.py:727 msgid "Clipboard" msgstr "Međuspremnik" #: ../bleachbit/Cleaner.py:505 msgid "" "The desktop environment's clipboard used for copy and paste operations" msgstr "" "Međuspremnik radne površine korišten za radnje kopiranja i lijepljenja." #. TRANSLATORS: "Custom" is an option allowing the user to specify which #. files and folders will be erased. #: ../bleachbit/Cleaner.py:512 ../bleachbit/GuiPreferences.py:66 msgid "Custom" msgstr "Prilagođeno" #: ../bleachbit/Cleaner.py:513 msgid "Delete user-specified files and folders" msgstr "Obriši datoteke i mape koje je odredio korisnik" #. TRANSLATORS: 'free' means 'unallocated' #: ../bleachbit/Cleaner.py:515 msgid "Free disk space" msgstr "Slobodan prostor na disku" #. TRANSLATORS: 'free' means 'unallocated' #: ../bleachbit/Cleaner.py:517 msgid "Overwrite free disk space to hide deleted files" msgstr "" "Prebriši slobodan prostor na disku kako bi se sakrile obrisane datoteke" #: ../bleachbit/Cleaner.py:518 msgid "This option is very slow." msgstr "Ova mogućnost je vrlo spora." #: ../bleachbit/Cleaner.py:522 msgid "The system in general" msgstr "Sustav općenito" #: ../bleachbit/Cleaner.py:524 ../bleachbit/Cleaner.py:857 msgid "System" msgstr "Sustav" #. TRANSLATORS: 'Free' means 'unallocated.' #. %s expands to a path such as C:\ or /tmp/ #: ../bleachbit/Cleaner.py:735 ../bleachbit/Cleaner.py:890 #, python-format msgid "Overwrite free disk space %s" msgstr "Prebriši slobodan prostor na disku %s" #: ../bleachbit/RecognizeCleanerML.py:59 msgid "Security warning" msgstr "Sigurnosno upozorenje" #: ../bleachbit/RecognizeCleanerML.py:72 msgid "" "These cleaner definitions are new or have changed. Malicious definitions can " "damage your system. If you do not trust these changes, delete the files or " "quit." msgstr "" "Ove definicije čišćenja su nove ili su promijenjene. Zlonamjerne definicije " "mogu oštetiti vaš sustav. Ako ne vjerujete ovim promjenama, obrišite " "datoteke ili odustanite." #: ../bleachbit/RecognizeCleanerML.py:88 msgctxt "column_label" msgid "Delete" msgstr "Obriši" #: ../bleachbit/RecognizeCleanerML.py:93 msgctxt "column_label" msgid "Filename" msgstr "Naziv datoteke" #. TRANSLATORS: This indicates an error. The special keyword #. %(operation)s will be replaced by 'firefox' or 'opera' or #. some other cleaner ID. The special keyword %(msg)s will be #. replaced by a message such as 'Permission denied.' #: ../bleachbit/Worker.py:74 #, python-format msgid "Exception while running operation '%(operation)s': '%(msg)s'" msgstr "Izuzetak pri pokretanju radnje '%(operation)s': '%(msg)s'" #. TRANSLATORS: 'free' means 'unallocated' #: ../bleachbit/Worker.py:182 msgid "Please wait. Wiping free disk space." msgstr "Pričekajte, briše se neiskorišteni diskovni prostor." #. TRANSLATORS: %s is replaced with Firefox, System, etc. #: ../bleachbit/Worker.py:184 ../bleachbit/Worker.py:332 #, python-format msgid "Please wait. Cleaning %s." msgstr "Pričekajte. Brišem %s." #: ../bleachbit/Worker.py:199 msgid "Please wait. Wiping file system metadata." msgstr "Pričekajte, brišu se metapodaci sustava." #: ../bleachbit/Worker.py:202 msgid "Please wait. Cleaning up after wiping file system metadata." msgstr "Pričekajte, brisanje nakon uklanjanja metapodataka sustava" #: ../bleachbit/Worker.py:205 #, python-format msgid "About %d minute remaining." msgid_plural "About %d minutes remaining." msgstr[0] "Otprilike %d minuta preostala." msgstr[1] "Otprilike %d minute preostale." msgstr[2] "Otprilike %d minuta preostalo." #. TRANSLATORS: This refers to disk space that was #. really recovered (in other words, not a preview) #: ../bleachbit/Worker.py:272 #, python-format msgid "Disk space recovered: %s" msgstr "Oslobođeni diskovni prostor: %s" #. TRANSLATORS: This refers to a preview (no real #. changes were made yet) #: ../bleachbit/Worker.py:276 #, python-format msgid "Disk space to be recovered: %s" msgstr "Diskovni prostor koji će biti oslobođen: %s" #. TRANSLATORS: This refers to the number of files really #. deleted (in other words, not a preview). #: ../bleachbit/Worker.py:281 #, python-format msgid "Files deleted: %d" msgstr "Obrisane datoteke: %d" #. TRANSLATORS: This refers to the number of files that #. would be deleted (in other words, simply a preview). #: ../bleachbit/Worker.py:285 #, python-format msgid "Files to be deleted: %d" msgstr "Datoteke za brisanje: %d" #: ../bleachbit/Worker.py:288 #, python-format msgid "Special operations: %d" msgstr "Posebne radnje: %d" #: ../bleachbit/Worker.py:291 #, python-format msgid "Errors: %d" msgstr "Greške: %d" #. TRANSLATORS: The "deep scan" feature searches over broad #. areas of the file system such as the user's whole home directory #. or all the system executables. #: ../bleachbit/Worker.py:306 msgid "Please wait. Running deep scan." msgstr "Pričekajte, izvodi se dubinsko pretraživanje." #. TRANSLATORS: %s is replaced with Firefox, System, etc. #: ../bleachbit/Worker.py:335 #, python-format msgid "Please wait. Previewing %s." msgstr "Pričekajte, pregledavanje %s." #: ../bleachbit/Update.py:80 msgid "New winapp2.ini was downloaded." msgstr "Novi winapp2.ini je preuzet." #: ../bleachbit/Update.py:125 msgid "Update BleachBit" msgstr "Nadopuni BleachBit" #: ../bleachbit/Update.py:130 msgid "A new version is available." msgstr "Nova inačica je dostupna." #. TRANSLATORS: %s expands to version such as '0.8.4' or '0.8.5beta' or #. similar #: ../bleachbit/Update.py:139 #, python-format msgid "Update to version %s" msgstr "Nadopuni na inačicu %s" #: ../bleachbit/Update.py:164 #, python-format msgid "" "Error when opening a network connection to %s to check for updates. Please " "verify the network is working." msgstr "" "Greška pri otvaranju mrežnog povezivanja prema %s u svrhu provjere nadopuna. " "Provjerite radi li mrežno povezivanje." #: ../bleachbit/CLI.py:106 #, python-format msgid "not a valid cleaner: %s" msgstr "nije valjan čistač: %s" #. TRANSLATORS: This is the command line usage. Don't translate #. %prog, but do translate usage, options, cleaner, and option. #. More information about the command line is here #. https://www.bleachbit.org/documentation/command-line #: ../bleachbit/CLI.py:133 msgid "usage: %prog [options] cleaner.option1 cleaner.option2" msgstr "upotreba: %prog [mogućnost] cleaner.mogućnost1 cleaner.mogućnost2" #: ../bleachbit/CLI.py:136 msgid "list cleaners" msgstr "prikaži čistače" #. TRANSLATORS: predefined cleaners are for applications, such as Firefox and Flash. #. This is different than cleaning an arbitrary file, such as a #. spreadsheet on the desktop. #: ../bleachbit/CLI.py:141 msgid "run cleaners to delete files and make other permanent changes" msgstr "pokreni čistače za brisanje datoteka i učini ostale trajne promjene" #: ../bleachbit/CLI.py:144 msgid "shred specific files or folders" msgstr "dijeli određene datoteke ili mape" #: ../bleachbit/CLI.py:146 msgid "show system information" msgstr "prikaži informacije o sustavu" #: ../bleachbit/CLI.py:148 msgid "launch the graphical interface" msgstr "pokreni grafičko sučelje" #: ../bleachbit/CLI.py:152 msgid "do not prompt for administrator privileges" msgstr "ne zahtijevaj administratorske ovlasti" #: ../bleachbit/CLI.py:157 msgid "preview files to be deleted and other changes" msgstr "pregledaj datoteke za brisanje i ostale promjene" #: ../bleachbit/CLI.py:161 msgid "use options set in the graphical interface" msgstr "koristi mogućnost postavljanja u grafičkom sučelju" #: ../bleachbit/CLI.py:164 msgid "update winapp2.ini, if a new version is available" msgstr "nadopuni winapp2.ini, ako je dostupna nova inčica" #: ../bleachbit/CLI.py:166 msgid "output version information and exit" msgstr "prikaži informacije o inačici i zatvori" #: ../bleachbit/CLI.py:168 msgid "overwrite files to hide contents" msgstr "prebriši datoteke u svrhu sakrivanja sadržaja" #. TRANSLATORS: this is the context menu #: ../bleachbit/Action.py:382 ../bleachbit/GUI.py:632 msgid "Clean" msgstr "Obriši" #: ../bleachbit/Action.py:418 #, python-format msgid "Run external command: %s" msgstr "Pokreni vanjsku naredbu: %s" #: ../bleachbit/GUI.py:135 ../bleachbit/GuiPreferences.py:296 msgid "Name" msgstr "Naziv" #: ../bleachbit/GUI.py:143 msgid "Active" msgstr "Aktivno" #. TRANSLATORS: Size is the label for the column that shows how #. much space an option would clean or did clean #: ../bleachbit/GUI.py:155 msgid "Size" msgstr "Veličina" #. TRANSLATORS: %(cleaner) may be Firefox, System, etc. #. %(option) may be cache, logs, cookies, etc. #. %(warning) may be 'This option is really slow' #: ../bleachbit/GUI.py:186 #, python-format msgid "" "Warning regarding %(cleaner)s - %(option)s:\n" "\n" "%(warning)s" msgstr "" "Upozorenje koje se odnosi na %(cleaner)s - %(option)s:\n" "\n" "%(warning)s" #: ../bleachbit/GUI.py:372 msgid "You must select an operation" msgstr "Morate odabrati radnju" #: ../bleachbit/GUI.py:391 ../bleachbit/GUI.py:413 msgid "Done." msgstr "Završeno." #: ../bleachbit/GUI.py:426 msgid "Program to clean unnecessary files" msgstr "Program za čišćenje nepotrebnih datoteka" #: ../bleachbit/GUI.py:436 msgid "" "GNU General Public License version 3 or later.\n" "See http://www.gnu.org/licenses/gpl-3.0.txt" msgstr "" "GNU Opća Javna Licenca inačice 3 ili novije.\n" "Pogledajte http://www.gnu.org/licenses/gpl-3.0.txt" #. TRANSLATORS: Maintain the names of translators here. #. Launchpad does this automatically for translations #. typed in Launchpad. This is a special string shown #. in the 'About' box. #: ../bleachbit/GUI.py:442 msgid "translator-credits" msgstr "" "Launchpad Contributions:\n" " Miro Glavić https://launchpad.net/~klek\n" " Saša Teković https://launchpad.net/~hseagle2015\n" " freedomrun https://launchpad.net/~freedomrun\n" " gogo https://launchpad.net/~trebelnik-stefina" #: ../bleachbit/GUI.py:454 msgid "System information" msgstr "Informacije sustava" #: ../bleachbit/GUI.py:527 msgid "Choose files to shred" msgstr "Odaberi datoteke za uništenje" #: ../bleachbit/GUI.py:530 msgid "Choose folder to shred" msgstr "Odaberi mapu za uništenje" #: ../bleachbit/GUI.py:594 ../bleachbit/GuiPreferences.py:197 #: ../bleachbit/GuiPreferences.py:326 ../bleachbit/GuiPreferences.py:367 msgid "Choose a folder" msgstr "Odaberi mapu" #. TRANSLATORS: this is the context menu #: ../bleachbit/GUI.py:627 msgid "Preview" msgstr "Pregled" #: ../bleachbit/GUI.py:734 msgid "_Shred Files" msgstr "_Uništi datoteke" #: ../bleachbit/GUI.py:736 msgid "Sh_red Folders" msgstr "_Uništi mape" #: ../bleachbit/GUI.py:738 msgid "_Wipe Free Space" msgstr "_Prebriši slobodan prostor" #: ../bleachbit/GUI.py:740 msgid "S_hred Settings and Quit" msgstr "_Uništi postavke i zatvori" #: ../bleachbit/GUI.py:742 msgid "_Quit" msgstr "_Zatvori" #: ../bleachbit/GUI.py:744 msgid "_File" msgstr "_Datoteka" #: ../bleachbit/GUI.py:746 ../bleachbit/GuiPreferences.py:58 msgid "Preferences" msgstr "Osobitosti" #: ../bleachbit/GUI.py:747 msgid "_Edit" msgstr "_Uredi" #: ../bleachbit/GUI.py:748 msgid "Help Contents" msgstr "Sadržaj pomoći" #: ../bleachbit/GUI.py:751 msgid "_Release Notes" msgstr "_Bilješke izdanja" #: ../bleachbit/GUI.py:754 msgid "_System Information" msgstr "_Informacije sustava" #: ../bleachbit/GUI.py:757 msgid "_About" msgstr "_O programu" #: ../bleachbit/GUI.py:758 msgid "_Help" msgstr "_Pomoć" #: ../bleachbit/GUI.py:783 msgctxt "button" msgid "Preview" msgstr "Pregled" #: ../bleachbit/GUI.py:788 msgid "Preview files in the selected operations (without deleting any files)" msgstr "Pregledajte datoteke u odabranim radnjama (bez brisanja datoteka)" #: ../bleachbit/GUI.py:798 msgctxt "button" msgid "Clean" msgstr "Obriši" #: ../bleachbit/GUI.py:802 msgid "Clean files in the selected operations" msgstr "Obriši datoteke u odabranim radnjama" #: ../bleachbit/GUI.py:893 msgid "Error when checking for updates: " msgstr "Greška pri provjeri nadopuna: " #: ../bleachbit/GUI.py:932 msgid "" "Error loading the SQLite module: the antivirus software may be blocking it." msgstr "" "Greška učitavanja SQLite modula: antivirusni softver ga možda blokira." #: ../bleachbit/GUI.py:935 msgid "" "You are running BleachBit with administrative privileges for cleaning shared " "parts of the system, and references to the user profile folder will clean " "only the root account." msgstr "" "Pokrenuli ste BleachBit s administratorskim ovlastima za čišćenje " "zajedničkih dijelova sustava, u odnosu na osobnu mapu profila korisnika " "očistiti će se samo korijenski račun." #: ../bleachbit/GUI.py:940 msgid "" "Run BleachBit with administrator privileges to improve the accuracy of " "overwriting the contents of files." msgstr "" "Pokreni BleachBit s administratorskim ovlastima kako bi poboljšali brisanje " "sadržaja datoteka." #: ../bleachbit/GuiPreferences.py:64 msgid "General" msgstr "Općenito" #: ../bleachbit/GuiPreferences.py:67 msgid "Drives" msgstr "Diskovi" #: ../bleachbit/GuiPreferences.py:70 msgid "Languages" msgstr "Jezici" #: ../bleachbit/GuiPreferences.py:72 msgid "Whitelist" msgstr "Popis dopuštenih" #: ../bleachbit/GuiPreferences.py:117 msgid "Check periodically for software updates via the Internet" msgstr "Provjerite povremeno nadopune softvera putem interneta." #: ../bleachbit/GuiPreferences.py:122 msgid "" "If an update is found, you will be given the option to view information " "about it. Then, you may manually download and install the update." msgstr "" "Ako je pronađena nadopuna, pojaviti će se mogućnost pregleda informacija. " "Zatim možete ručno preuzeti i instalirati nadopunu." #: ../bleachbit/GuiPreferences.py:128 msgid "Check for new beta releases" msgstr "Provjeri dostupnost novih beta izdanja" #: ../bleachbit/GuiPreferences.py:137 msgid "Download and update cleaners from community (winapp2.ini)" msgstr "" "Preuzmi i nadopuni čistače održavane od strane zajednice (winapp2.ini)" #. TRANSLATORS: This means to hide cleaners which would do #. nothing. For example, if Firefox were never used on #. this system, this option would hide Firefox to simplify #. the list of cleaners. #: ../bleachbit/GuiPreferences.py:151 msgid "Hide irrelevant cleaners" msgstr "Sakrij nepotrebne čistače" #. TRANSLATORS: Overwriting is the same as shredding. It is a way #. to prevent recovery of the data. You could also translate #. 'Shred files to prevent recovery.' #: ../bleachbit/GuiPreferences.py:159 msgid "Overwrite contents of files to prevent recovery" msgstr "Prebriši sadržaj datoteka kako bi spriječili moućnost obnove" #: ../bleachbit/GuiPreferences.py:163 msgid "" "Overwriting is ineffective on some file systems and with certain BleachBit " "operations. Overwriting is significantly slower." msgstr "" "Prebrisivanje je bezuspješno na nekim datotečnim sustavima i s pojedinim " "BleachBit radnjama. Prebrisivanje je značajno sporije." #: ../bleachbit/GuiPreferences.py:166 msgid "Start BleachBit with computer" msgstr "Pokreni BleachBit pri pokretanju računala" #: ../bleachbit/GuiPreferences.py:172 msgid "Exit after cleaning" msgstr "Zatvori nakon brisanja" #: ../bleachbit/GuiPreferences.py:178 msgid "Confirm before delete" msgstr "Potvrdi prije brisanja" #: ../bleachbit/GuiPreferences.py:186 msgid "Use IEC sizes (1 KiB = 1024 bytes) instead of SI (1 kB = 1000 bytes)" msgstr "" "Koristi IEC veličine (1 KiB = 1024 bajta) umjesto SI (1 kB = 1000 bajta)" #: ../bleachbit/GuiPreferences.py:221 msgid "" "Choose a writable folder for each drive for which to overwrite free space." msgstr "" "Odaberi zapisivu mapu za svaki disk na koji se prebrisuje slobodan prostor." #. TRANSLATORS: In the preferences dialog, this button adds a path to #. the list of paths #: ../bleachbit/GuiPreferences.py:243 msgctxt "button" msgid "Add" msgstr "Dodaj" #. TRANSLATORS: In the preferences dialog, this button removes a path #. from the list of paths #: ../bleachbit/GuiPreferences.py:247 ../bleachbit/GuiPreferences.py:458 msgctxt "button" msgid "Remove" msgstr "Ukloni" #: ../bleachbit/GuiPreferences.py:272 msgid "All languages will be deleted except those checked." msgstr "Svi jezici, osim odabranih biti će obrisani." #: ../bleachbit/GuiPreferences.py:288 msgid "Preserve" msgstr "Očuvaj" #: ../bleachbit/GuiPreferences.py:292 msgid "Code" msgstr "Kôd" #: ../bleachbit/GuiPreferences.py:313 ../bleachbit/GuiPreferences.py:354 msgid "Choose a file" msgstr "Odaberi datoteku" #: ../bleachbit/GuiPreferences.py:320 ../bleachbit/GuiPreferences.py:361 #: ../bleachbit/GuiPreferences.py:405 msgid "File" msgstr "Datoteka" #: ../bleachbit/GuiPreferences.py:334 ../bleachbit/GuiPreferences.py:375 #: ../bleachbit/GuiPreferences.py:407 msgid "Folder" msgstr "Mapa" #: ../bleachbit/GuiPreferences.py:417 msgid "Theses paths will not be deleted or modified." msgstr "Ove putanje neće biti obrisane ili promijenjene." #: ../bleachbit/GuiPreferences.py:420 msgid "These locations can be selected for deletion." msgstr "Ove lokacije mogu se odabrati za brisanje" #: ../bleachbit/GuiPreferences.py:428 msgid "Type" msgstr "Vrsta" #. TRANSLATORS: In the tree view "Path" is used generically to refer to a #. file, a folder, or a pattern describing either #: ../bleachbit/GuiPreferences.py:434 msgid "Path" msgstr "Putanja" #: ../bleachbit/GuiPreferences.py:446 msgctxt "button" msgid "Add file" msgstr "Dodaj datoteku" #: ../bleachbit/GuiPreferences.py:452 msgctxt "button" msgid "Add folder" msgstr "Dodaj mapu" bleachbit-2.0/po/ku.po0000644000175000017500000011426313245436307013005 0ustar hlehle# Kurdish translation for bleachbit # Copyright (c) 2009 Rosetta Contributors and Canonical Ltd 2009 # This file is distributed under the same license as the bleachbit package. # FIRST AUTHOR , 2009. # msgid "" msgstr "" "Project-Id-Version: bleachbit\n" "Report-Msgid-Bugs-To: FULL NAME \n" "POT-Creation-Date: 2011-08-17 20:52-0600\n" "PO-Revision-Date: 2011-09-06 11:37+0000\n" "Last-Translator: Erdal Ronahi \n" "Language-Team: Kurdish \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n != 1;\n" "X-Launchpad-Export-Date: 2011-10-28 03:56+0000\n" "X-Generator: Launchpad (build 14197)\n" #: ../cleaners/tremulous.xml ../cleaners/gl-117.xml ../cleaners/nexuiz.xml #: ../cleaners/hippo_opensim_viewer.xml ../cleaners/secondlife_viewer.xml msgid "Game" msgstr "Lîstik" #: ../cleaners/tremulous.xml ../cleaners/chromium.xml ../cleaners/miro.xml #: ../cleaners/audacious.xml ../cleaners/xine.xml ../cleaners/kde.xml #: ../cleaners/pidgin.xml ../cleaners/seamonkey.xml ../cleaners/liferea.xml #: ../cleaners/beagle.xml ../cleaners/opera.xml ../cleaners/rhythmbox.xml #: ../cleaners/epiphany.xml ../cleaners/transmission.xml #: ../cleaners/nexuiz.xml ../cleaners/hippo_opensim_viewer.xml #: ../cleaners/vuze.xml ../cleaners/evolution.xml ../cleaners/exaile.xml #: ../cleaners/google_chrome.xml ../cleaners/emesene.xml ../cleaners/amsn.xml #: ../cleaners/yahoo_messenger.xml ../cleaners/thumbnails.xml #: ../cleaners/safari.xml ../cleaners/java.xml ../cleaners/flash.xml #: ../cleaners/thunderbird.xml ../cleaners/adobe_reader.xml #: ../cleaners/gftp.xml ../cleaners/gpodder.xml #: ../cleaners/secondlife_viewer.xml ../bleachbit/Cleaner.py:186 #: ../bleachbit/Cleaner.py:296 ../bleachbit/Cleaner.py:363 msgid "Cache" msgstr "Pêşbîr" #: ../cleaners/tremulous.xml msgid "Delete the list of game servers" msgstr "Lîsteya pêşkêşkara lîstikan jê bibe" #: ../cleaners/yum.xml ../cleaners/miro.xml ../cleaners/audacious.xml #: ../cleaners/xine.xml ../cleaners/kde.xml ../cleaners/pidgin.xml #: ../cleaners/liferea.xml ../cleaners/beagle.xml ../cleaners/rhythmbox.xml #: ../cleaners/transmission.xml ../cleaners/nexuiz.xml ../cleaners/apt.xml #: ../cleaners/hippo_opensim_viewer.xml ../cleaners/vuze.xml #: ../cleaners/evolution.xml ../cleaners/exaile.xml ../cleaners/amsn.xml #: ../cleaners/yahoo_messenger.xml ../cleaners/thumbnails.xml #: ../cleaners/java.xml ../cleaners/windows_explorer.xml ../cleaners/flash.xml #: ../cleaners/adobe_reader.xml ../cleaners/gftp.xml ../cleaners/gpodder.xml #: ../cleaners/secondlife_viewer.xml ../bleachbit/Cleaner.py:296 #: ../bleachbit/Cleaner.py:363 ../bleachbit/Cleaner.py:383 #: ../bleachbit/Cleaner.py:385 msgid "Delete the cache" msgstr "Pêşbîrê jê bibe" #. TRANSLATORS: Vacuum is a verb. The term is jargon #. from the SQLite database. Microsoft Access uses #. the term 'Compact Database' (which you may translate #. instead). Another synonym is 'defragment.' #: ../cleaners/yum.xml ../cleaners/chromium.xml ../cleaners/liferea.xml #: ../cleaners/google_chrome.xml ../cleaners/safari.xml #: ../cleaners/thunderbird.xml ../cleaners/gpodder.xml #: ../bleachbit/Cleaner.py:196 ../bleachbit/Cleaner.py:286 #: ../bleachbit/Action.py:323 msgid "Vacuum" msgstr "Vakum" #: ../cleaners/yum.xml ../cleaners/chromium.xml ../cleaners/liferea.xml #: ../cleaners/google_chrome.xml ../cleaners/safari.xml #: ../cleaners/thunderbird.xml ../cleaners/gpodder.xml #: ../bleachbit/Cleaner.py:196 msgid "" "Clean database fragmentation to reduce space and improve speed without " "removing any data" msgstr "" "Bêyî ku tu daneyan jê bibî parçebûna danegehê serast bike û qada bikaranînê " "kêm bike an jî lezê zêde bike" #: ../cleaners/chromium.xml ../cleaners/internet_explorer.xml #: ../cleaners/seamonkey.xml ../cleaners/opera.xml ../cleaners/epiphany.xml #: ../cleaners/google_chrome.xml ../cleaners/safari.xml ../cleaners/links2.xml #: ../cleaners/elinks.xml ../cleaners/konqueror.xml #: ../bleachbit/Cleaner.py:209 msgid "Web browser" msgstr "Geroka webê" #: ../cleaners/chromium.xml ../cleaners/seamonkey.xml ../cleaners/opera.xml #: ../cleaners/epiphany.xml ../cleaners/google_chrome.xml #: ../cleaners/safari.xml ../cleaners/thunderbird.xml #: ../bleachbit/Cleaner.py:186 msgid "Delete the web cache, which reduces time to display revisited pages" msgstr "Pêşbîra webê jê bibe, bi vê yekê vekirina nû ya rûpelan dê hêdî bibe" #: ../cleaners/chromium.xml ../cleaners/internet_explorer.xml #: ../cleaners/seamonkey.xml ../cleaners/liferea.xml ../cleaners/opera.xml #: ../cleaners/epiphany.xml ../cleaners/google_chrome.xml #: ../cleaners/safari.xml ../cleaners/flash.xml ../cleaners/thunderbird.xml #: ../cleaners/konqueror.xml ../cleaners/realplayer.xml #: ../cleaners/silverlight.xml ../bleachbit/Cleaner.py:187 msgid "Cookies" msgstr "Çerez" #: ../cleaners/chromium.xml ../cleaners/internet_explorer.xml #: ../cleaners/seamonkey.xml ../cleaners/liferea.xml ../cleaners/opera.xml #: ../cleaners/epiphany.xml ../cleaners/google_chrome.xml #: ../cleaners/safari.xml ../cleaners/flash.xml ../cleaners/thunderbird.xml #: ../cleaners/konqueror.xml ../cleaners/realplayer.xml #: ../cleaners/silverlight.xml ../bleachbit/Cleaner.py:187 msgid "" "Delete cookies, which contain information such as web site preferences, " "authentication, and tracking identification" msgstr "Çerezên ku agahî, vebijêrk, û nasnameyên malperan tê de ne jê bibe" #. TRANSLATORS: DOM = Document Object Model. #: ../cleaners/chromium.xml ../cleaners/opera.xml #: ../cleaners/google_chrome.xml ../bleachbit/Cleaner.py:189 msgid "DOM Storage" msgstr "Qada DOMê" #: ../cleaners/chromium.xml ../cleaners/opera.xml #: ../cleaners/google_chrome.xml ../bleachbit/Cleaner.py:189 msgid "Delete HTML5 cookies" msgstr "Çerezên HTML5ê jê bibe" #: ../cleaners/chromium.xml ../cleaners/internet_explorer.xml #: ../cleaners/google_chrome.xml ../bleachbit/Cleaner.py:191 msgid "Form history" msgstr "Dîroka forman" #: ../cleaners/chromium.xml ../cleaners/google_chrome.xml msgid "A history of forms entered in web sites" msgstr "" #: ../cleaners/chromium.xml ../cleaners/d4x.xml ../cleaners/vim.xml #: ../cleaners/internet_explorer.xml ../cleaners/mc.xml #: ../cleaners/seamonkey.xml ../cleaners/windows_defender.xml #: ../cleaners/google_chrome.xml ../cleaners/nautilus.xml #: ../cleaners/safari.xml ../cleaners/bash.xml ../cleaners/links2.xml #: ../cleaners/elinks.xml ../cleaners/tortoisesvn.xml #: ../cleaners/realplayer.xml msgid "History" msgstr "Dîrok" #: ../cleaners/chromium.xml ../cleaners/google_chrome.xml msgid "" "Delete the history which includes visited sites, downloads, and thumbnails" msgstr "" "Vê dîroka ku malperên vebûne, daxistin û wêneyên pêşdîtinê tê de hene jê bibe" #: ../cleaners/chromium.xml ../cleaners/google_chrome.xml msgid "Search engines" msgstr "" #. 'Factory' means a search engine that is installed by default 'from the factory,' but this is different than a 'default search engine' https://lists.launchpad.net/launchpad-translators/msg00283.html #: ../cleaners/chromium.xml ../cleaners/google_chrome.xml msgid "" "Reset the search engine usage history and delete non-factory search engines, " "some of which are added automatically" msgstr "" #: ../cleaners/chromium.xml ../cleaners/opera.xml ../cleaners/konqueror.xml msgid "Current session" msgstr "Rûniştina çalak" #: ../cleaners/chromium.xml ../cleaners/opera.xml ../cleaners/konqueror.xml msgid "Delete the current session" msgstr "Rûniştina çalak jê bibe" #: ../cleaners/d4x.xml ../cleaners/mc.xml ../cleaners/nautilus.xml #: ../cleaners/gnome.xml ../cleaners/links2.xml ../cleaners/tortoisesvn.xml #: ../cleaners/realplayer.xml ../bleachbit/Cleaner.py:276 #: ../bleachbit/Cleaner.py:347 msgid "Delete the usage history" msgstr "Dîroka bikaranînê jê bibe" #: ../cleaners/vim.xml ../cleaners/gedit.xml msgid "Editor" msgstr "Edîtor" #: ../cleaners/vim.xml msgid "" "Delete ~/.viminfo which includes file history, command history, and buffers" msgstr "" "Peldanka ~/.viminfo ku tê de dîroka pelan, dîroka fermanan û pelên tampon " "hene jê bibe" #: ../cleaners/miro.xml ../cleaners/xine.xml ../cleaners/flash.xml msgid "Multimedia viewer" msgstr "Nîşandêra Multîmedyayê" #: ../cleaners/miro.xml ../cleaners/audacious.xml ../cleaners/screenlets.xml #: ../cleaners/hippo_opensim_viewer.xml ../cleaners/vuze.xml #: ../cleaners/exaile.xml ../cleaners/easytag.xml #: ../cleaners/yahoo_messenger.xml ../cleaners/teamviewer.xml #: ../cleaners/gftp.xml ../cleaners/amule.xml ../cleaners/realplayer.xml #: ../bleachbit/Cleaner.py:381 msgid "Logs" msgstr "Tomar" #: ../cleaners/miro.xml ../cleaners/audacious.xml ../cleaners/screenlets.xml #: ../cleaners/hippo_opensim_viewer.xml ../cleaners/vuze.xml #: ../cleaners/exaile.xml ../cleaners/yahoo_messenger.xml #: ../cleaners/teamviewer.xml ../cleaners/gftp.xml ../cleaners/amule.xml #: ../cleaners/realplayer.xml ../bleachbit/Cleaner.py:381 msgid "Delete the logs" msgstr "Tomaran jê bibe" #: ../cleaners/gl-117.xml ../cleaners/beagle.xml ../cleaners/x11.xml #: ../cleaners/microsoft_office.xml ../cleaners/secondlife_viewer.xml msgid "Debug logs" msgstr "Tomarên çewtiyan" #: ../cleaners/gl-117.xml ../cleaners/beagle.xml ../cleaners/x11.xml #: ../cleaners/microsoft_office.xml ../cleaners/easytag.xml #: ../cleaners/secondlife_viewer.xml msgid "Delete the debug logs" msgstr "Tomarên çewtiyan jê bibe" #: ../cleaners/internet_explorer.xml ../bleachbit/Cleaner.py:191 msgid "A history of forms entered in web sites and in the Search bar" msgstr "Dîroka formên malper darikê lêgerînê" #: ../cleaners/internet_explorer.xml ../cleaners/opera.xml #: ../cleaners/safari.xml ../cleaners/konqueror.xml #: ../bleachbit/Cleaner.py:195 msgid "List of visited web pages" msgstr "Lîsteya malperên vebûne" #: ../cleaners/internet_explorer.xml ../cleaners/kde.xml ../cleaners/vuze.xml #: ../cleaners/deepscan.xml ../cleaners/gimp.xml ../cleaners/google_earth.xml #: ../cleaners/adobe_reader.xml ../cleaners/amule.xml #: ../cleaners/winetricks.xml ../cleaners/wine.xml ../bleachbit/Cleaner.py:397 msgid "Temporary files" msgstr "Pelên demdemî" #: ../cleaners/internet_explorer.xml ../cleaners/kde.xml ../cleaners/vuze.xml #: ../cleaners/deepscan.xml ../cleaners/gimp.xml ../cleaners/google_earth.xml #: ../cleaners/adobe_reader.xml ../cleaners/amule.xml #: ../cleaners/winetricks.xml ../cleaners/wine.xml ../bleachbit/Cleaner.py:397 msgid "Delete the temporary files" msgstr "Pelên demdemî jê bibe" #: ../cleaners/audacious.xml ../cleaners/filezilla.xml ../cleaners/winrar.xml #: ../cleaners/wordpad.xml ../cleaners/winamp.xml #: ../cleaners/windows_media_player.xml ../cleaners/microsoft_office.xml #: ../cleaners/winzip.xml ../cleaners/vlc.xml ../cleaners/windows_explorer.xml #: ../cleaners/teamviewer.xml ../cleaners/adobe_reader.xml #: ../cleaners/paint.xml ../bleachbit/Cleaner.py:297 msgid "Most recently used" msgstr "Yên herî dawî hatine bikaranîn" #: ../cleaners/audacious.xml ../cleaners/kde.xml ../cleaners/filezilla.xml #: ../cleaners/gwenview.xml ../cleaners/gedit.xml #: ../cleaners/windows_explorer.xml ../cleaners/adobe_reader.xml #: ../bleachbit/Cleaner.py:297 ../bleachbit/Cleaner.py:373 msgid "Delete the list of recently used documents" msgstr "Lîsteya belgeyên herî dawî hatine bikaranîn jê bibe" #: ../cleaners/kde.xml ../cleaners/gwenview.xml ../cleaners/gedit.xml #: ../cleaners/windows_explorer.xml ../bleachbit/Cleaner.py:373 msgid "Recent documents list" msgstr "Lîsteya belgeyên dawiyê" #: ../cleaners/pidgin.xml ../cleaners/xchat.xml ../cleaners/emesene.xml #: ../cleaners/amsn.xml ../cleaners/yahoo_messenger.xml msgid "Chat client" msgstr "Navrûyê chatê" #: ../cleaners/pidgin.xml ../cleaners/seamonkey.xml ../cleaners/xchat.xml #: ../cleaners/emesene.xml ../cleaners/amsn.xml #: ../cleaners/yahoo_messenger.xml ../cleaners/skype.xml msgid "Chat logs" msgstr "Tomarên chatê" #: ../cleaners/pidgin.xml ../cleaners/seamonkey.xml ../cleaners/xchat.xml #: ../cleaners/emesene.xml ../cleaners/amsn.xml #: ../cleaners/yahoo_messenger.xml ../cleaners/skype.xml msgid "Delete the chat logs" msgstr "Tomarên chatê jê bibe" #: ../cleaners/seamonkey.xml ../cleaners/opera.xml ../bleachbit/Cleaner.py:190 msgid "Download history" msgstr "Dîroka daxistinan" #: ../cleaners/seamonkey.xml ../cleaners/opera.xml ../bleachbit/Cleaner.py:190 msgid "List of files downloaded" msgstr "Lîsteya pelên daxistî" #: ../cleaners/seamonkey.xml msgid "Delete the list of visited web pages" msgstr "Malperên vebûne jê bibe" #: ../cleaners/screenlets.xml msgid "Widgets for the desktop" msgstr "Amûrên Sermaseyê" #: ../cleaners/beagle.xml ../cleaners/recoll.xml msgid "Search tool" msgstr "Amûra lêgerînê" #: ../cleaners/beagle.xml msgid "Search indexes" msgstr "Naverokên lêgerînê" #: ../cleaners/beagle.xml msgid "Delete the search indexes" msgstr "Naverokên lêgerînê jê bibe" #: ../cleaners/filezilla.xml ../cleaners/transmission.xml ../cleaners/vuze.xml #: ../cleaners/gftp.xml ../cleaners/amule.xml msgid "File transfer client" msgstr "Navrûyê veguhestina pelan" #: ../cleaners/windows_defender.xml ../cleaners/deepscan.xml msgid "Delete the files" msgstr "Pelan jê bibe" #: ../cleaners/opera.xml ../cleaners/google_toolbar.xml ../cleaners/gnome.xml #: ../cleaners/windows_explorer.xml msgid "Search history" msgstr "Dîroka lêgerînê" #: ../cleaners/opera.xml ../cleaners/google_toolbar.xml ../cleaners/gnome.xml #: ../cleaners/windows_explorer.xml msgid "Delete the search history" msgstr "Dîroka lêgerînê jê bibe" #: ../cleaners/opera.xml ../cleaners/konqueror.xml ../bleachbit/Cleaner.py:195 msgid "URL history" msgstr "Dîroka URLê" #: ../cleaners/winrar.xml ../cleaners/wordpad.xml ../cleaners/winamp.xml #: ../cleaners/windows_media_player.xml ../cleaners/microsoft_office.xml #: ../cleaners/winzip.xml ../cleaners/vlc.xml ../cleaners/windows_explorer.xml #: ../cleaners/teamviewer.xml ../cleaners/paint.xml msgid "Delete the most recently used list" msgstr "Lîsteya yên herî zêde hatine bikaranîn jê bibe" #: ../cleaners/epiphany.xml ../cleaners/thunderbird.xml #: ../bleachbit/Cleaner.py:194 msgid "Passwords" msgstr "Şîfre" #: ../cleaners/epiphany.xml ../cleaners/thunderbird.xml #: ../bleachbit/Cleaner.py:194 msgid "" "A database of usernames and passwords as well as a list of sites that should " "not store passwords" msgstr "Danegeheke nav û şîfreyan û ya malperên ku şîfreyan depo dike" #: ../cleaners/epiphany.xml msgid "Places" msgstr "Cî" #: ../cleaners/epiphany.xml msgid "" "A database of URLs including bookmarks, favicons, and a history of visited " "web sites" msgstr "Danegeheke URLên bijare, favîkon û dîroka malperan tê de heye" #: ../cleaners/epiphany.xml msgid "This option deletes all bookmarks." msgstr "Ev vebijêrk dê hemû bijareyan jê bibe." #: ../cleaners/microsoft_office.xml ../bleachbit/Cleaner.py:307 msgid "Office suite" msgstr "Bernameya ofîsê" #: ../cleaners/apt.xml msgid "Delete obsolete files" msgstr "Pelên nayên bikaranîn jê bibe" #: ../cleaners/vuze.xml ../cleaners/deepscan.xml msgid "Backup files" msgstr "Pelên hilanînî" #: ../cleaners/vuze.xml ../cleaners/deepscan.xml msgid "Delete the backup files" msgstr "Pelên hilanînî jê bibe" #: ../cleaners/exaile.xml msgid "Downloaded podcasts" msgstr "Podkastên daxistî" #: ../cleaners/exaile.xml msgid "Delete downloaded podcasts" msgstr "Podkastên daxistî jê bibe" #: ../cleaners/google_chrome.xml msgid "Session" msgstr "Rûniştin" #: ../cleaners/google_chrome.xml msgid "Delete the current and last sessions" msgstr "Rûniştina niha û ya dawiyê jê bibe" #: ../cleaners/emesene.xml msgid "Delete the avatars and emoticons cache" msgstr "Pêşbîra hemû avatar û rûkenan jê bibe" #: ../cleaners/deepscan.xml msgid "Deep scan" msgstr "Venihêrtina kûr" #: ../cleaners/deepscan.xml msgid "Inspect the preview for any files you want to keep." msgstr "Ji bo pelên dixwazî bimînin pêşbîrê vekole." #: ../cleaners/deepscan.xml msgid "This option is slow." msgstr "Ev vebijêrk hêdî ye." #: ../cleaners/nautilus.xml msgid "Custom folders will be reset." msgstr "Peldankên taybet dê bêne resetkirin." #: ../cleaners/thumbnails.xml ../cleaners/windows_explorer.xml msgid "Thumbnails" msgstr "Wêneyên biçûk" #: ../cleaners/bash.xml msgid "Delete the command history" msgstr "Dîroka fermanan jê bibe" #. In GNOME 'Run' is the dialog shown when typing ALT+F2' #. In Windows 'Run' is the dialog in the Start menu #: ../cleaners/gnome.xml ../cleaners/windows_explorer.xml msgid "Run" msgstr "Bixebitîne" #: ../cleaners/elinks.xml msgid "Delete the cookies, visited URLs, and search history" msgstr "Çerez, URLên vebûne û dîroka lêgerînê jê bibe" #: ../cleaners/recoll.xml msgid "Index" msgstr "Naverok" #: ../cleaners/recoll.xml msgid "" "Delete the search index, a database of words and the files they contain" msgstr "Naveroka lêgerînê ku danegeha peyv û pel tê de ne ye, jê bibe" #: ../bleachbit.desktop msgid "Unnecessary file cleaner" msgstr "Paqijkirina pelên nehewce" #: ../bleachbit.desktop msgid "Free space and maintain privacy" msgstr "Ciyê vala û parastina nepeniyê" #. TRANSLATORS: This is the label in the log indicating was #. skipped because it matches the whitelist #: ../bleachbit/Command.py:46 msgid "Skip" msgstr "Derbas bibe" #. TRANSLATORS: This is the label in the log indicating will be #. deleted (for previews) or was actually deleted #: ../bleachbit/Command.py:73 msgid "Delete" msgstr "Jê bibe" #. TRANSLATORS: The file will be deleted when the #. system reboots #: ../bleachbit/Command.py:93 msgid "Mark for deletion" msgstr "Ji bo jêbirinê nîşan bike" #. TRANSLATORS: Parts of this file will be deleted #: ../bleachbit/Command.py:182 ../bleachbit/Command.py:212 #: ../bleachbit/Action.py:203 ../bleachbit/Action.py:216 #: ../bleachbit/Action.py:228 ../bleachbit/Action.py:241 #: ../bleachbit/Action.py:253 msgid "Clean file" msgstr "" #. TRANSLATORS: The file will be truncated to 0 bytes in length #: ../bleachbit/Command.py:249 msgid "Truncate" msgstr "Ji binî ve jê bibe" #: ../bleachbit/Command.py:288 msgid "Delete registry key" msgstr "Kilîla tomarê jê bibe" #: ../bleachbit/Unix.py:365 ../bleachbit/Unix.py:395 ../bleachbit/Unix.py:575 #, python-format msgid "Executable not found: %s" msgstr "Pelê xebitandinê nehate dîtin : %s" #. TRANSLATORS: %s expands to a name such as 'Firefox' or 'System'. #: ../bleachbit/Unix.py:572 ../bleachbit/Worker.py:135 #, python-format msgid "" "%s cannot be cleaned because it is currently running. Close it, and try " "again." msgstr "" "%s niha dixebite, lewre nayê jêbirin. Tika ye pelî bigire û dîsa biceribîne." #. TRANSLATORS: This is cleaner name for cleaners imported from winapp2.ini #: ../bleachbit/Winapp.py:45 msgid "Applications" msgstr "" #. TRANSLATORS: This is cleaner name for cleaners imported from winapp2.ini #: ../bleachbit/Winapp.py:47 ../bleachbit/Winapp.py:54 #: ../bleachbit/Winapp.py:55 ../bleachbit/Winapp.py:56 msgid "Internet" msgstr "" #. TRANSLATORS: This is cleaner name for cleaners imported from winapp2.ini #: ../bleachbit/Winapp.py:49 msgid "Multimedia" msgstr "" #. TRANSLATORS: This is cleaner name for cleaners imported from winapp2.ini #: ../bleachbit/Winapp.py:51 msgid "Utilities" msgstr "" #. TRANSLATORS: This is cleaner name for cleaners imported from winapp2.ini. #: ../bleachbit/Winapp.py:53 msgid "Microsoft Windows" msgstr "" #: ../bleachbit/Winapp.py:87 msgid "Imported from winapp2.ini" msgstr "" #: ../bleachbit/Cleaner.py:192 msgid "Session restore" msgstr "Rûniştinê nû bike" #: ../bleachbit/Cleaner.py:192 msgid "Loads the initial session after the browser closes or crashes" msgstr "Piştî girtin an jî têkçûna gerokê rûniştina destpêkê bar dike" #: ../bleachbit/Cleaner.py:193 msgid "Site preferences" msgstr "" #: ../bleachbit/Cleaner.py:193 msgid "Settings for individual sites" msgstr "" #. TRANSLATORS: desktop entries are .desktop files in Linux tha #. make up the application menu (the menu that shows BleachBit, #. Firefox, and others. The .desktop files also associate file #. types, so clicking on an .html file in Nautilus brings up #. Firefox. #. More information: http://standards.freedesktop.org/menu-spec/latest/index.html#introduction #: ../bleachbit/Cleaner.py:362 msgid "Broken desktop files" msgstr "Pelên Sermaseyê yên şikestî" #: ../bleachbit/Cleaner.py:362 msgid "Delete broken application menu entries and file associations" msgstr "" "Ketanên pêşeka sepandinê yên şikestî û têkiliyên wan ên bi pelan re jê bibe" #. TRANSLATORS: Localizations are files supporting specific #. languages, so applications appear in Spanish, etc. #: ../bleachbit/Cleaner.py:366 msgid "Localizations" msgstr "Herêmîkirin" #: ../bleachbit/Cleaner.py:366 msgid "Delete files for unwanted languages" msgstr "Pelên zimanên nayên xwestin jê bibe" #: ../bleachbit/Cleaner.py:367 msgid "Configure this option in the preferences." msgstr "" #. TRANSLATORS: 'Rotated logs' refers to old system log files. #. Linux systems often have a scheduled job to rotate the logs #. which means compress all except the newest log and then delete #. the oldest log. You could translate this 'old logs.' #: ../bleachbit/Cleaner.py:372 msgid "Rotated logs" msgstr "Tomarên beralîkirî" #: ../bleachbit/Cleaner.py:372 msgid "Delete old system logs" msgstr "Tomarên pergalê yên kevn jê bibe" #: ../bleachbit/Cleaner.py:374 msgid "Trash" msgstr "Çop" #: ../bleachbit/Cleaner.py:374 msgid "Empty the trash" msgstr "Çopê vala bike" #: ../bleachbit/Cleaner.py:376 ../bleachbit/Cleaner.py:482 #: ../bleachbit/Worker.py:211 msgid "Memory" msgstr "Bîr" #. TRANSLATORS: 'free' means 'unallocated' #: ../bleachbit/Cleaner.py:378 msgid "Wipe the swap and free memory" msgstr "Qada pevguherînê paqij bike û bîrê vala bike" #: ../bleachbit/Cleaner.py:379 msgid "This option is experimental and may cause system problems." msgstr "" "Ev vebijêrk di asta ceribandinê de ye, dibe ku bibe sedema pirsgirêkên " "pergalê." #: ../bleachbit/Cleaner.py:382 msgid "Memory dump" msgstr "Raxistina bîrê" #: ../bleachbit/Cleaner.py:382 msgid "Delete the file memory.dmp" msgstr "Pelê memory.dmpê jê bibe" #. TRANSLATORS: Prefetch is Microsoft Windows jargon. #: ../bleachbit/Cleaner.py:385 msgid "Prefetch" msgstr "Pêşhevgirtin" #: ../bleachbit/Cleaner.py:386 msgid "Recycle bin" msgstr "Qutîka çopê" #: ../bleachbit/Cleaner.py:386 msgid "Empty the recycle bin" msgstr "Qutîka çopê vala bike" #. TRANSLATORS: 'Update' is a noun, and 'Update uninstallers' is an option to delete #. the uninstallers for software updates. #: ../bleachbit/Cleaner.py:389 msgid "Update uninstallers" msgstr "" #: ../bleachbit/Cleaner.py:389 msgid "" "Delete uninstallers for Microsoft updates including hotfixes, service packs, " "and Internet Explorer updates" msgstr "" #: ../bleachbit/Cleaner.py:391 ../bleachbit/Cleaner.py:564 msgid "Clipboard" msgstr "Pano" #: ../bleachbit/Cleaner.py:391 msgid "" "The desktop environment's clipboard used for copy and paste operations" msgstr "Panoya Sermaseyê ya ji bo kopîkirin û pêvekirinê" #. TRANSLATORS: 'free' means 'unallocated' #: ../bleachbit/Cleaner.py:393 msgid "Free disk space" msgstr "Qada dîskê paqij bike" #. TRANSLATORS: 'free' means 'unallocated' #: ../bleachbit/Cleaner.py:395 msgid "Overwrite free disk space to hide deleted files" msgstr "Ji bo hilanîna pelên jêbirî, li ser beşa bîra vala binivîse" #: ../bleachbit/Cleaner.py:396 msgid "This option is very slow." msgstr "Ev vebijêrk hêdî dixebite" #: ../bleachbit/Cleaner.py:400 msgid "The system in general" msgstr "Pergala te bi giştî" #: ../bleachbit/Cleaner.py:406 ../bleachbit/Cleaner.py:659 msgid "System" msgstr "Pergal" #. TRANSLATORS: 'Free' means 'unallocated.' #. %s expands to a path such as C:\ or /tmp/ #: ../bleachbit/Cleaner.py:590 ../bleachbit/Cleaner.py:686 #, python-format msgid "Overwrite free disk space %s" msgstr "Li ser %s beşa bîra vala binivîse" #. TRANSLATORS: %s expands to a drive letter such as C:\ or D:\ #: ../bleachbit/Cleaner.py:618 #, python-format msgid "Recycle bin %s" msgstr "Qutîka çopê %s" #: ../bleachbit/GuiPreferences.py:52 ../bleachbit/GUI.py:637 msgid "Preferences" msgstr "Mîheng" #: ../bleachbit/GuiPreferences.py:58 msgid "General" msgstr "Giştî" #: ../bleachbit/GuiPreferences.py:59 msgid "Drives" msgstr "Ajokar" #: ../bleachbit/GuiPreferences.py:61 msgid "Languages" msgstr "Ziman" #: ../bleachbit/GuiPreferences.py:62 msgid "Whitelist" msgstr "Lîsteya Spî" #: ../bleachbit/GuiPreferences.py:107 msgid "Check periodically for software updates via the Internet" msgstr "Dem bi dem ji înternetê agahiyên derbarê bernameyên de kontrol bike" #: ../bleachbit/GuiPreferences.py:110 msgid "" "If an update is found, you will be given the option to view information " "about it. Then, you may manually download and install the update." msgstr "" "Eger rojanekirinek bê dîtin, dê agahiya wê ji te re bê ragihandin. Û tu yê " "dikaribî wê daxî û saz bikî." #: ../bleachbit/GuiPreferences.py:116 msgid "Check for new beta releases" msgstr "" #: ../bleachbit/GuiPreferences.py:123 msgid "Download and update cleaners from community (winapp2.ini)" msgstr "" #. TRANSLATORS: This means to hide cleaners which would do #. nothing. For example, if Firefox were never used on #. this system, this option would hide Firefox to simplify #. the list of cleaners. #: ../bleachbit/GuiPreferences.py:135 msgid "Hide irrelevant cleaners" msgstr "Paqijiyên netêkildar veşêre" #. TRANSLATORS: Overwriting is the same as shredding. It is a way #. to prevent recovery of the data. You could also translate #. 'Shred files to prevent recovery.' #: ../bleachbit/GuiPreferences.py:143 msgid "Overwrite files to hide contents" msgstr "Ji bo veşartina naverokê li ser pelan binivîse" #: ../bleachbit/GuiPreferences.py:146 msgid "" "Overwriting is ineffective on some file systems and with certain BleachBit " "operations. Overwriting is significantly slower." msgstr "" "Nivîsandina li ser di hin çalakiyên BleachBitê de bêbandor e. Nivîsandina li " "ser kar gelekî hêdî dike." #: ../bleachbit/GuiPreferences.py:149 msgid "Start BleachBit with computer" msgstr "Di vebûna pergalê de Bleachbitê bixebitîne" #: ../bleachbit/GuiPreferences.py:160 ../bleachbit/GuiPreferences.py:291 #: ../bleachbit/GUI.py:545 msgid "Choose a folder" msgstr "Peldankekê hilbijêre" #. TRANSLATORS: 'free' means 'unallocated' #: ../bleachbit/GuiPreferences.py:185 msgid "" "Choose a writable folder for each drive for which to overwrite free space." msgstr "Ji her ajokarê peldankeke tê nivîsandin hilbijêre." #. TRANSLATORS: In the preferences dialog, this button adds a path to the list of paths #: ../bleachbit/GuiPreferences.py:206 msgctxt "button" msgid "Add" msgstr "Têxê" #. TRANSLATORS: In the preferences dialog, this button removes a path from the list of paths #: ../bleachbit/GuiPreferences.py:209 ../bleachbit/GuiPreferences.py:369 msgctxt "button" msgid "Remove" msgstr "Rake" #: ../bleachbit/GuiPreferences.py:234 msgid "All languages will be deleted except those checked." msgstr "Ji bilî zimanê hatî hilbijartin hemû zimanên din dê bên jêbirin." #: ../bleachbit/GuiPreferences.py:251 msgid "Preserve" msgstr "Biparêze" #: ../bleachbit/GuiPreferences.py:255 msgid "Code" msgstr "Kod" #: ../bleachbit/GuiPreferences.py:259 ../bleachbit/GUI.py:136 msgid "Name" msgstr "Nav" #: ../bleachbit/GuiPreferences.py:277 msgid "Choose a file" msgstr "Pelekî hilbijêre" #: ../bleachbit/GuiPreferences.py:284 ../bleachbit/GuiPreferences.py:328 msgid "File" msgstr "Pel" #: ../bleachbit/GuiPreferences.py:299 ../bleachbit/GuiPreferences.py:330 msgid "Folder" msgstr "Pelrêç" #. TRANSLATORS: "Paths" is used generically to refer to both files and folders #: ../bleachbit/GuiPreferences.py:337 msgid "Theses paths will not be deleted or modified." msgstr "Ev cî dê neyên jêbirin û guherandin." #: ../bleachbit/GuiPreferences.py:345 msgid "Type" msgstr "Cure" #. TRANSLATORS: In the tree view "Path" is used generically to refer to a #. file, a folder, or a pattern describing either #: ../bleachbit/GuiPreferences.py:351 msgid "Path" msgstr "Pelrêç" #: ../bleachbit/GuiPreferences.py:363 msgctxt "button" msgid "Add file" msgstr "Pelî têxê" #: ../bleachbit/GuiPreferences.py:366 msgctxt "button" msgid "Add folder" msgstr "Peldankê têxê" #: ../bleachbit/RecognizeCleanerML.py:63 msgid "Security warning" msgstr "Hişyariya ewlekariyê" #. TRANSLATORS: Cleaner definitions are XML data files that define #. which files will be cleaned. #: ../bleachbit/RecognizeCleanerML.py:75 msgid "" "These cleaner definitions are new or have changed. Malicious definitions can " "damage your system. If you do not trust these changes, delete the files or " "quit." msgstr "" "Ev ravekirinên paqijkarê nû ne an jî guherîne. Pêkan e ku ravekirinên çewt " "zirarê bidin pergalê. Eger baweriya te bi vê guherînê tune be pelan jê bibe " "an jî jê derkeve." #. TRANSLATORS: This is the column label (header) in the tree view for the security dialog #: ../bleachbit/RecognizeCleanerML.py:88 msgctxt "column_label" msgid "Delete" msgstr "Jê bibe" #. TRANSLATORS: This is the column label (header) in the tree view for the security dialog #: ../bleachbit/RecognizeCleanerML.py:91 msgctxt "column_label" msgid "Filename" msgstr "Navê pelî" #. TRANSLATORS: This indicates an error. The special keyword #. %(operation)s will be replaced by 'firefox' or 'opera' or #. some other cleaner ID. The special keyword %(msg)s will be #. replaced by a message such as 'Permission denied.' #: ../bleachbit/Worker.py:76 #, python-format msgid "Exception while running operation '%(operation)s': '%(msg)s'" msgstr "" "Di xebitîna çalakiyê de zêdebariyek derket. '%(operation)s': '%(msg)s'" #. TRANSLATORS: 'free' means 'unallocated' #: ../bleachbit/Worker.py:209 msgid "Please wait. Wiping free disk space." msgstr "" #. TRANSLATORS: %s is replaced with Firefox, System, etc. #: ../bleachbit/Worker.py:211 ../bleachbit/Worker.py:298 #, python-format msgid "Please wait. Cleaning %s." msgstr "Tika ye li bendê be. %s tê paqijkirin." #: ../bleachbit/Worker.py:221 #, python-format msgid "About %d minute remaining." msgid_plural "About %d minutes remaining." msgstr[0] "" msgstr[1] "" #. TRANSLATORS: This refers to disk space that was #. really recovered (in other words, not a preview) #: ../bleachbit/Worker.py:236 #, python-format msgid "Disk space recovered: %s" msgstr "Qada dîskê ya hatî zêdekirin: %s" #. TRANSLATORS: This refers to a preview (no real #. changes were made yet) #: ../bleachbit/Worker.py:240 #, python-format msgid "Disk space to be recovered: %s" msgstr "Qada dîskê ya dê bê zêdekirin: %s" #. TRANSLATORS: This refers to the number of files really #. deleted (in other words, not a preview). #: ../bleachbit/Worker.py:245 #, python-format msgid "Files deleted: %d" msgstr "Pelên hatî jêbirin: %d" #. TRANSLATORS: This refers to the number of files that #. would be deleted (in other words, simply a preview). #: ../bleachbit/Worker.py:249 #, python-format msgid "Files to be deleted: %d" msgstr "Pelên dê bên jêbirin: %d" #: ../bleachbit/Worker.py:252 #, python-format msgid "Special operations: %d" msgstr "Karên taybet: %d" #: ../bleachbit/Worker.py:255 #, python-format msgid "Errors: %d" msgstr "Çewtî: %d" #. TRANSLATORS: The "deep scan" feature searches over broad #. areas of the file system such as the user's whole home directory #. or all the system executables. #: ../bleachbit/Worker.py:271 msgid "Please wait. Running deep scan." msgstr "Venêrîna kûr tê kirin, tika ye li bendê be." #. TRANSLATORS: %s is replaced with Firefox, System, etc. #: ../bleachbit/Worker.py:301 #, python-format msgid "Please wait. Previewing %s." msgstr "Tika ye li bendê be. %s tê pêşandan" #: ../bleachbit/Update.py:75 msgid "New winapp2.ini was downloaded." msgstr "" #: ../bleachbit/Update.py:111 msgid "Update BleachBit" msgstr "" #: ../bleachbit/Update.py:116 msgid "A new version is available." msgstr "" #. TRANSLATORS: %s expands to version such as '0.8.4' or '0.8.5beta' or similar #: ../bleachbit/Update.py:124 #, python-format msgid "Update to version %s" msgstr "" #: ../bleachbit/CLI.py:123 #, python-format msgid "not a valid cleaner: %s" msgstr "%s ne paqijkareke derebasdar e" #. TRANSLATORS: This is the command line usage. Don't translate #. %prog, but do translate usage, options, cleaner, and option. #. More information about the command line is here #. http://bleachbit.sourceforge.net/documentation/command-line #: ../bleachbit/CLI.py:150 msgid "usage: %prog [options] cleaner.option1 cleaner.option2" msgstr "bikaranîn: %prog [Vebijark] paqijkar.vebijark1 paqijkar.vebijark2" #: ../bleachbit/CLI.py:153 msgid "list cleaners" msgstr "paqijkaran lîste bike" #: ../bleachbit/CLI.py:155 msgid "delete files and make other permanent changes" msgstr "pelan jê bibe û guherînên din ên mayîn de pêk bîne" #. TRANSLATORS: this is a warning for using --delete which will go away one day #: ../bleachbit/CLI.py:158 msgid "depreciated alias for --clean" msgstr "" #: ../bleachbit/CLI.py:160 msgid "show system information" msgstr "agahiyên pergalê nîşan bide" #: ../bleachbit/CLI.py:161 msgid "launch the graphical interface" msgstr "" #: ../bleachbit/CLI.py:163 msgid "do not prompt for administrator privileges" msgstr "" #: ../bleachbit/CLI.py:168 msgid "preview files to be deleted and other changes" msgstr "pêşdêtina pelên bên jêbirin û guherînên din" #: ../bleachbit/CLI.py:170 msgid "use options set in the graphical interface" msgstr "" #: ../bleachbit/CLI.py:172 msgid "output version information and exit" msgstr "agahiya guhertoyê bibîne û derkeve" #: ../bleachbit/CLI.py:174 msgid "overwrite files to hide contents" msgstr "ji bo hilanîna naverokan li ser pelan binivîse" #: ../bleachbit/GuiBasic.py:113 msgid "Delete confirmation" msgstr "Erêkirinê jê bibe" #: ../bleachbit/GuiBasic.py:121 msgid "" "Are you sure you want to permanently delete files according to the selected " "operations? The actual files that will be deleted may have changed since " "you ran the preview." msgstr "" "Ji dil dixwazî li gorî çalakiyên hilbijartî van pelan bi temamî jê bibî? " "Pêkan e ku di dema pêşdîtinê de pelên bên jêbirin guherîbin." #: ../bleachbit/GuiBasic.py:123 msgid "Are you sure you want to permanently delete these files?" msgstr "Ji dil dixwazî van pelan bi temamî jê bibî?" #: ../bleachbit/GuiBasic.py:159 #, python-format msgid "" "Because you are running as root, please manually open this link in a web " "browser:\n" "%s" msgstr "" "Ji ber ku tu wekî root dixebitî, ji kerema xwe re vê girêdanê di geroka webê " "de veke:\n" "%s" #. TRANSLATORS: %s expands to bleachbit.sourceforge.net or similar #: ../bleachbit/GuiBasic.py:171 #, python-format msgid "Open web browser to %s?" msgstr "" #: ../bleachbit/GUI.py:144 msgid "Active" msgstr "Çalak" #. TRANSLATORS: %(cleaner) may be Firefox, System, etc. #. %(option) may be cache, logs, cookies, etc. #. %(warning) may be 'This option is really slow' #: ../bleachbit/GUI.py:176 #, python-format msgid "" "Warning regarding %(cleaner)s - %(option)s:\n" "\n" "%(warning)s" msgstr "" #: ../bleachbit/GUI.py:346 msgid "You must select an operation" msgstr "Divê çalakiyekê hilbijêrî" #: ../bleachbit/GUI.py:369 ../bleachbit/GUI.py:384 msgid "Done." msgstr "Bi dawî hat." #: ../bleachbit/GUI.py:398 msgid "Program to clean unnecessary files" msgstr "Bernameya pelên nehewce jê dibe" #: ../bleachbit/GUI.py:403 msgid "" "GNU General Public License version 3 or later.\n" "See http://www.gnu.org/licenses/gpl-3.0.txt" msgstr "" "GNU (General Public License) Lîsansa Vekirî ya Giştî guherto 3 an jî " "bilintir.\n" "Li http://www.gnu.org/licenses/gpl-3.0.txt venêre" #. TRANSLATORS: Maintain the names of translators here. #. Launchpad does this automatically for translations #. typed in Launchpad. This is a special string shown #. in the 'About' box. #: ../bleachbit/GUI.py:409 msgid "translator-credits" msgstr "" "Launchpad Contributions:\n" " Amed Çeko Jiyan https://launchpad.net/~amedcj\n" " Erdal Ronahi https://launchpad.net/~erdalronahi" #: ../bleachbit/GUI.py:422 msgid "System information" msgstr "Agahiya pergalê" #: ../bleachbit/GUI.py:492 msgid "Choose files to shred" msgstr "Pelênbên parçekirin hilbijêre" #: ../bleachbit/GUI.py:495 msgid "Choose folder to shred" msgstr "" #. TRANSLATORS: this is the context menu #: ../bleachbit/GUI.py:580 msgid "Preview" msgstr "" #. TRANSLATORS: this is the context menu #: ../bleachbit/GUI.py:585 msgid "Clean" msgstr "" #: ../bleachbit/GUI.py:631 msgid "_Shred Files" msgstr "Pelan Par_çe bike" #: ../bleachbit/GUI.py:632 msgid "Sh_red Folders" msgstr "" #: ../bleachbit/GUI.py:633 msgid "_Wipe Free Space" msgstr "" #: ../bleachbit/GUI.py:634 msgid "S_hred Settings and Quit" msgstr "Mîhengan çêke û derkeve" #: ../bleachbit/GUI.py:635 msgid "_Quit" msgstr "_Derkeve" #: ../bleachbit/GUI.py:636 msgid "_File" msgstr "_Pel" #: ../bleachbit/GUI.py:638 msgid "_Edit" msgstr "_Sererastkirin" #: ../bleachbit/GUI.py:639 msgid "Help Contents" msgstr "Naveroka alîkariyê" #: ../bleachbit/GUI.py:641 msgid "_Release Notes" msgstr "_Têbiniyên guhertoyê" #: ../bleachbit/GUI.py:643 msgid "_System Information" msgstr "_Agahiyên pergalê" #: ../bleachbit/GUI.py:644 msgid "_About" msgstr "_Der barê" #: ../bleachbit/GUI.py:645 msgid "_Help" msgstr "_Alîkarî" #. TRANSLATORS: This is the preview button on the main window. It previews changes. #: ../bleachbit/GUI.py:669 msgctxt "button" msgid "Preview" msgstr "Pêşdîtin" #: ../bleachbit/GUI.py:672 msgid "Preview files in the selected operations (without deleting any files)" msgstr "" "Pêşdîtina pelên di çalakiyên hilbijartî de bike (Pel dê neyên jêbirin)" #. TRANSLATORS: This is the clean button on the main window. #. It makes permanent changes: usually deleting files, sometimes altering them. #: ../bleachbit/GUI.py:680 msgctxt "button" msgid "Clean" msgstr "" #: ../bleachbit/GUI.py:683 msgid "Clean files in the selected operations" msgstr "" #: ../bleachbit/GUI.py:769 msgid "Error when checking for updates: " msgstr "Di venêrtina rojanekirinan de çewtiyek derket: " #: ../bleachbit/GUI.py:800 msgid "" "Error loading the SQLite module: the antivirus software may be blocking it." msgstr "" "Di barkirina yekîneya SQLiteê de çewtî: Dibe ku antîvîrus vê asteng dike." bleachbit-2.0/po/fr.po0000644000175000017500000014336713245436307013004 0ustar hlehle# Translation file for BleachBit # Copyright (C) 2010 Andrew Ziem # This file is distributed under the same license as the BleachBit package. # msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2017-02-11 11:12-0700\n" "PO-Revision-Date: 2018-01-10 06:58+0000\n" "Last-Translator: Éfrit \n" "Language-Team: French \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n > 1;\n" "X-Launchpad-Export-Date: 2018-01-11 03:24+0000\n" "X-Generator: Launchpad (build 18521)\n" #: ../cleaners/mc.xml ../cleaners/tortoisesvn.xml ../cleaners/vim.xml #: ../cleaners/safari.xml ../cleaners/links2.xml ../cleaners/seamonkey.xml #: ../cleaners/realplayer.xml ../cleaners/windows_defender.xml #: ../cleaners/d4x.xml ../cleaners/sqlite3.xml #: ../cleaners/internet_explorer.xml ../cleaners/libreoffice.xml #: ../cleaners/easytag.xml ../cleaners/bash.xml ../cleaners/nautilus.xml #: ../cleaners/octave.xml ../cleaners/elinks.xml ../cleaners/chromium.xml #: ../cleaners/google_chrome.xml msgid "History" msgstr "Historique" #: ../cleaners/mc.xml ../cleaners/tortoisesvn.xml ../cleaners/links2.xml #: ../cleaners/realplayer.xml ../cleaners/d4x.xml ../cleaners/libreoffice.xml #: ../cleaners/easytag.xml ../cleaners/nautilus.xml ../cleaners/gnome.xml #: ../bleachbit/Cleaner.py:349 ../bleachbit/Cleaner.py:423 #: ../bleachbit/Cleaner.py:432 msgid "Delete the usage history" msgstr "Supprimer l’historique d’utilisation" #: ../cleaners/gpodder.xml ../cleaners/hippo_opensim_viewer.xml #: ../cleaners/thumbnails.xml ../cleaners/safari.xml ../cleaners/emesene.xml #: ../cleaners/liferea.xml ../cleaners/seamonkey.xml ../cleaners/vuze.xml #: ../cleaners/yahoo_messenger.xml ../cleaners/pidgin.xml #: ../cleaners/adobe_reader.xml ../cleaners/evolution.xml #: ../cleaners/tremulous.xml ../cleaners/libreoffice.xml ../cleaners/xine.xml #: ../cleaners/nexuiz.xml ../cleaners/exaile.xml ../cleaners/opera.xml #: ../cleaners/amsn.xml ../cleaners/gftp.xml ../cleaners/miro.xml #: ../cleaners/beagle.xml ../cleaners/kde.xml ../cleaners/epiphany.xml #: ../cleaners/flash.xml ../cleaners/secondlife_viewer.xml ../cleaners/java.xml #: ../cleaners/chromium.xml ../cleaners/audacious.xml ../cleaners/rhythmbox.xml #: ../cleaners/google_chrome.xml ../cleaners/thunderbird.xml #: ../bleachbit/Cleaner.py:192 ../bleachbit/Cleaner.py:370 #: ../bleachbit/Cleaner.py:455 msgid "Cache" msgstr "Cache" #: ../cleaners/gpodder.xml ../cleaners/yum.xml #: ../cleaners/hippo_opensim_viewer.xml ../cleaners/thumbnails.xml #: ../cleaners/windows_explorer.xml ../cleaners/liferea.xml #: ../cleaners/vuze.xml ../cleaners/yahoo_messenger.xml ../cleaners/pidgin.xml #: ../cleaners/adobe_reader.xml ../cleaners/evolution.xml #: ../cleaners/libreoffice.xml ../cleaners/apt.xml ../cleaners/xine.xml #: ../cleaners/nexuiz.xml ../cleaners/exaile.xml ../cleaners/amsn.xml #: ../cleaners/gftp.xml ../cleaners/miro.xml ../cleaners/beagle.xml #: ../cleaners/kde.xml ../cleaners/flash.xml ../cleaners/secondlife_viewer.xml #: ../cleaners/java.xml ../cleaners/audacious.xml ../cleaners/rhythmbox.xml #: ../bleachbit/Cleaner.py:370 ../bleachbit/Cleaner.py:455 #: ../bleachbit/Cleaner.py:489 ../bleachbit/Cleaner.py:491 msgid "Delete the cache" msgstr "Vider le cache" #. TRANSLATORS: Vacuum is a verb. The term is jargon #. from the SQLite database. Microsoft Access uses #. the term 'Compact Database' (which you may translate #. instead). Another synonym is 'defragment.' #: ../cleaners/gpodder.xml ../cleaners/yum.xml ../cleaners/safari.xml #: ../cleaners/liferea.xml ../cleaners/chromium.xml #: ../cleaners/google_chrome.xml ../cleaners/thunderbird.xml #: ../bleachbit/Cleaner.py:214 ../bleachbit/Cleaner.py:360 #: ../bleachbit/Action.py:445 msgid "Vacuum" msgstr "Optimiser" #: ../cleaners/gpodder.xml ../cleaners/yum.xml ../cleaners/safari.xml #: ../cleaners/liferea.xml ../cleaners/chromium.xml #: ../cleaners/google_chrome.xml ../cleaners/thunderbird.xml #: ../bleachbit/Cleaner.py:215 msgid "" "Clean database fragmentation to reduce space and improve speed without " "removing any data" msgstr "" "Défragmenter la base de données pour réduire l’espace utilisé et améliorer " "la vitesse sans supprimer de données" #: ../cleaners/yum.xml ../cleaners/apt.xml msgid "Package manager" msgstr "Gestionnaire de paquets" #: ../cleaners/warzone2100.xml ../cleaners/hippo_opensim_viewer.xml #: ../cleaners/gl-117.xml ../cleaners/tremulous.xml ../cleaners/nexuiz.xml #: ../cleaners/secondlife_viewer.xml msgid "Game" msgstr "Jeu" #: ../cleaners/warzone2100.xml ../cleaners/hippo_opensim_viewer.xml #: ../cleaners/teamviewer.xml ../cleaners/realplayer.xml ../cleaners/vuze.xml #: ../cleaners/yahoo_messenger.xml ../cleaners/amule.xml #: ../cleaners/easytag.xml ../cleaners/exaile.xml ../cleaners/screenlets.xml #: ../cleaners/gftp.xml ../cleaners/miro.xml ../cleaners/audacious.xml #: ../bleachbit/Cleaner.py:486 msgid "Logs" msgstr "Journaux" #: ../cleaners/warzone2100.xml ../cleaners/hippo_opensim_viewer.xml #: ../cleaners/teamviewer.xml ../cleaners/realplayer.xml ../cleaners/vuze.xml #: ../cleaners/yahoo_messenger.xml ../cleaners/amule.xml ../cleaners/exaile.xml #: ../cleaners/screenlets.xml ../cleaners/gftp.xml ../cleaners/miro.xml #: ../cleaners/audacious.xml ../bleachbit/Cleaner.py:486 msgid "Delete the logs" msgstr "Supprimer les journaux" #: ../cleaners/thumbnails.xml ../cleaners/windows_explorer.xml msgid "Thumbnails" msgstr "Vignettes" #: ../cleaners/thumbnails.xml msgid "Icons for files on the system" msgstr "Icônes pour les fichiers sur le système" #: ../cleaners/vim.xml ../cleaners/gedit.xml msgid "Editor" msgstr "Éditeur" #: ../cleaners/vim.xml msgid "" "Delete ~/.viminfo which includes file history, command history, and buffers" msgstr "" "Supprimer ~/.viminfo qui inclut l’historique des fichiers et des commandes " "ainsi que les zones tampon" #: ../cleaners/filezilla.xml ../cleaners/transmission.xml ../cleaners/vuze.xml #: ../cleaners/amule.xml ../cleaners/gftp.xml msgid "File transfer client" msgstr "Client de transfert de fichiers" #: ../cleaners/filezilla.xml ../cleaners/paint.xml #: ../cleaners/windows_media_player.xml ../cleaners/windows_explorer.xml #: ../cleaners/teamviewer.xml ../cleaners/microsoft_office.xml #: ../cleaners/vlc.xml ../cleaners/adobe_reader.xml ../cleaners/winamp.xml #: ../cleaners/winzip.xml ../cleaners/winrar.xml ../cleaners/audacious.xml #: ../cleaners/wordpad.xml ../bleachbit/Cleaner.py:371 msgid "Most recently used" msgstr "Fichiers récents" #: ../cleaners/filezilla.xml ../cleaners/windows_explorer.xml #: ../cleaners/gwenview.xml ../cleaners/adobe_reader.xml ../cleaners/gedit.xml #: ../cleaners/kde.xml ../cleaners/audacious.xml ../bleachbit/Cleaner.py:372 #: ../bleachbit/Cleaner.py:469 msgid "Delete the list of recently used documents" msgstr "Supprimer la liste des documents utilisés récemment" #: ../cleaners/skype.xml ../cleaners/emesene.xml #: ../cleaners/yahoo_messenger.xml ../cleaners/pidgin.xml ../cleaners/amsn.xml msgid "Chat client" msgstr "Client de messagerie instantanée" #: ../cleaners/skype.xml ../cleaners/hexchat.xml ../cleaners/emesene.xml #: ../cleaners/seamonkey.xml ../cleaners/yahoo_messenger.xml #: ../cleaners/pidgin.xml ../cleaners/amsn.xml msgid "Chat logs" msgstr "Historique des conversations" #: ../cleaners/skype.xml ../cleaners/hexchat.xml ../cleaners/emesene.xml #: ../cleaners/seamonkey.xml ../cleaners/yahoo_messenger.xml #: ../cleaners/pidgin.xml ../cleaners/amsn.xml msgid "Delete the chat logs" msgstr "Supprimer l’historique des conversations" #: ../cleaners/skype.xml msgid "Installers" msgstr "Installateurs" #: ../cleaners/skype.xml msgid "Delete cached patches and installers" msgstr "Supprimer les correctifs et les installateurs mis en cache" #: ../cleaners/hexchat.xml msgid "IRC client formerly known as XChat" msgstr "Client IRC autrefois connu sous le nom de XChat" #: ../cleaners/safari.xml ../cleaners/links2.xml ../cleaners/seamonkey.xml #: ../cleaners/konqueror.xml ../cleaners/internet_explorer.xml #: ../cleaners/opera.xml ../cleaners/epiphany.xml ../cleaners/elinks.xml #: ../cleaners/chromium.xml ../cleaners/google_chrome.xml #: ../bleachbit/Cleaner.py:226 msgid "Web browser" msgstr "Navigateur web" #: ../cleaners/safari.xml ../cleaners/seamonkey.xml ../cleaners/opera.xml #: ../cleaners/epiphany.xml ../cleaners/chromium.xml #: ../cleaners/google_chrome.xml ../cleaners/thunderbird.xml #: ../bleachbit/Cleaner.py:193 msgid "Delete the web cache, which reduces time to display revisited pages" msgstr "" "Vider le cache web qui est utilisé afin de réduire le temps d’affichage des " "documents revisités" #: ../cleaners/safari.xml ../cleaners/liferea.xml ../cleaners/seamonkey.xml #: ../cleaners/realplayer.xml ../cleaners/konqueror.xml #: ../cleaners/internet_explorer.xml ../cleaners/opera.xml #: ../cleaners/epiphany.xml ../cleaners/flash.xml ../cleaners/silverlight.xml #: ../cleaners/chromium.xml ../cleaners/google_chrome.xml #: ../cleaners/thunderbird.xml ../bleachbit/Cleaner.py:194 msgid "Cookies" msgstr "Cookies" #: ../cleaners/safari.xml ../cleaners/liferea.xml ../cleaners/seamonkey.xml #: ../cleaners/realplayer.xml ../cleaners/konqueror.xml #: ../cleaners/internet_explorer.xml ../cleaners/opera.xml #: ../cleaners/epiphany.xml ../cleaners/flash.xml ../cleaners/silverlight.xml #: ../cleaners/chromium.xml ../cleaners/google_chrome.xml #: ../cleaners/thunderbird.xml ../bleachbit/Cleaner.py:195 msgid "" "Delete cookies, which contain information such as web site preferences, " "authentication, and tracking identification" msgstr "" "Supprimer les cookies qui contiennent des informations sur les préférences " "de sites web, l’authentification et l’identité du visiteur" #: ../cleaners/safari.xml ../cleaners/konqueror.xml #: ../cleaners/internet_explorer.xml ../cleaners/opera.xml #: ../bleachbit/Cleaner.py:213 msgid "List of visited web pages" msgstr "Liste des documents web visités" #. Torrent software can block a list of IP addresses, such as those that may belong to malware or anti-piracy organizations #: ../cleaners/transmission.xml msgid "Blocklists" msgstr "Listes de blocage" #: ../cleaners/transmission.xml ../cleaners/windows_defender.xml #: ../cleaners/beagle.xml ../cleaners/thunderbird.xml ../cleaners/deepscan.xml #: ../bleachbit/Cleaner.py:197 msgid "Delete the files" msgstr "Supprimer les fichiers" #: ../cleaners/transmission.xml msgid "Blocklists will need update to work." msgstr "Les listes de blocage devront être mises à jour afin de fonctionner." #: ../cleaners/transmission.xml msgid "Torrents" msgstr "Torrents" #: ../cleaners/transmission.xml msgid "Delete the torrents (just the metadata but not the files described)" msgstr "" "Supprimer les torrents (seulement les métadonnées, pas les fichiers eux-" "mêmes)" #: ../cleaners/transmission.xml msgid "Statistics" msgstr "Statistiques" #: ../cleaners/transmission.xml msgid "Delete the file" msgstr "Supprimer le fichier" #: ../cleaners/paint.xml ../cleaners/windows_media_player.xml #: ../cleaners/windows_explorer.xml ../cleaners/teamviewer.xml #: ../cleaners/microsoft_office.xml ../cleaners/vlc.xml ../cleaners/winamp.xml #: ../cleaners/winzip.xml ../cleaners/winrar.xml ../cleaners/wordpad.xml msgid "Delete the most recently used list" msgstr "Supprimer la liste des documents récemment utilisés" #: ../cleaners/emesene.xml msgid "Delete the avatars and emoticons cache" msgstr "Vider le cache des avatars et des frimousses" #: ../cleaners/windows_media_player.xml ../cleaners/realplayer.xml #: ../cleaners/vlc.xml ../cleaners/winamp.xml msgid "Media player" msgstr "Lecteur multimédia" #: ../cleaners/windows_explorer.xml ../cleaners/nautilus.xml msgid "File manager" msgstr "Gestionnaire de fichiers" #: ../cleaners/windows_explorer.xml ../cleaners/gwenview.xml #: ../cleaners/gedit.xml ../cleaners/kde.xml ../bleachbit/Cleaner.py:468 #: ../bleachbit/Cleaner.py:663 msgid "Recent documents list" msgstr "Liste des documents récents" #: ../cleaners/windows_explorer.xml msgid "" "This option will reset pinned locations in Quick Access to their defaults." msgstr "" "Cette option permet de réinitialiser les emplacements fixés dans Quick " "Access à leurs valeurs par défaut." #. In Windows 'Run' is the dialog in the Start menu #. In GNOME 'Run' is the dialog shown when typing ALT+F2' #: ../cleaners/windows_explorer.xml ../cleaners/gnome.xml msgid "Run" msgstr "Lancer" #: ../cleaners/windows_explorer.xml ../cleaners/opera.xml ../cleaners/gnome.xml #: ../cleaners/google_toolbar.xml msgid "Search history" msgstr "Historique des recherches" #: ../cleaners/windows_explorer.xml ../cleaners/opera.xml ../cleaners/gnome.xml #: ../cleaners/google_toolbar.xml msgid "Delete the search history" msgstr "Supprimer l’historique des recherches" #: ../cleaners/windows_explorer.xml msgid "This will restart Windows Explorer." msgstr "Ceci redémarrera Windows Explorer." #: ../cleaners/gl-117.xml ../cleaners/microsoft_office.xml #: ../cleaners/beagle.xml ../cleaners/secondlife_viewer.xml ../cleaners/x11.xml msgid "Debug logs" msgstr "Journaux de débogage" #: ../cleaners/gl-117.xml ../cleaners/microsoft_office.xml #: ../cleaners/easytag.xml ../cleaners/beagle.xml #: ../cleaners/secondlife_viewer.xml ../cleaners/x11.xml msgid "Delete the debug logs" msgstr "Supprimer les journaux de débogage" #: ../cleaners/google_earth.xml ../cleaners/winetricks.xml ../cleaners/vuze.xml #: ../cleaners/adobe_reader.xml ../cleaners/amule.xml ../cleaners/wine.xml #: ../cleaners/internet_explorer.xml ../cleaners/gimp.xml ../cleaners/kde.xml #: ../cleaners/deepscan.xml ../bleachbit/Cleaner.py:520 msgid "Temporary files" msgstr "Fichiers temporaires" #: ../cleaners/google_earth.xml ../cleaners/winetricks.xml ../cleaners/vuze.xml #: ../cleaners/adobe_reader.xml ../cleaners/amule.xml ../cleaners/wine.xml #: ../cleaners/internet_explorer.xml ../cleaners/gimp.xml ../cleaners/kde.xml #: ../cleaners/deepscan.xml ../bleachbit/Cleaner.py:520 msgid "Delete the temporary files" msgstr "Supprimer les fichiers temporaires" #: ../cleaners/seamonkey.xml ../cleaners/opera.xml ../bleachbit/Cleaner.py:201 msgid "Download history" msgstr "Historique de téléchargement" #: ../cleaners/seamonkey.xml ../cleaners/opera.xml ../bleachbit/Cleaner.py:201 msgid "List of files downloaded" msgstr "Liste des fichiers téléchargés" #: ../cleaners/seamonkey.xml msgid "Delete the list of visited web pages" msgstr "Supprimer la liste des documents web visités" #: ../cleaners/vuze.xml ../cleaners/deepscan.xml ../bleachbit/Cleaner.py:190 msgid "Backup files" msgstr "Fichiers de sauvegarde" #: ../cleaners/vuze.xml ../cleaners/deepscan.xml ../bleachbit/Cleaner.py:191 msgid "Delete the backup files" msgstr "Supprimer les fichiers de sauvegarde" #: ../cleaners/konqueror.xml ../cleaners/opera.xml ../cleaners/chromium.xml msgid "Current session" msgstr "Session actuelle" #: ../cleaners/konqueror.xml ../cleaners/opera.xml ../cleaners/chromium.xml msgid "Delete the current session" msgstr "Supprimer la session actuelle" #: ../cleaners/konqueror.xml ../cleaners/opera.xml ../bleachbit/Cleaner.py:213 msgid "URL history" msgstr "Historique des URL" #: ../cleaners/microsoft_office.xml ../cleaners/libreoffice.xml #: ../bleachbit/Cleaner.py:375 msgid "Office suite" msgstr "Suite bureautique" #: ../cleaners/windows_defender.xml msgid "Anti-virus" msgstr "Antivirus" #: ../cleaners/journald.xml msgid "System journals" msgstr "Journaux système" #: ../cleaners/journald.xml msgid "Clean old system journals" msgstr "Nettoyer les anciens journaux système" #: ../cleaners/adobe_reader.xml msgid "Document viewer" msgstr "Visionneuse de documents" #: ../cleaners/evolution.xml ../cleaners/thunderbird.xml msgid "Email client" msgstr "Client de messagerie" #: ../cleaners/tremulous.xml msgid "Delete the list of game servers" msgstr "Supprimer la liste des serveurs de jeu" #: ../cleaners/sqlite3.xml ../cleaners/bash.xml ../cleaners/octave.xml msgid "Delete the command history" msgstr "Supprimer l’historique des commandes" #: ../cleaners/wine.xml msgid "Compatibility layer for Windows software" msgstr "Couche de compatibilité pour Windows" #: ../cleaners/internet_explorer.xml ../cleaners/chromium.xml #: ../cleaners/google_chrome.xml ../bleachbit/Cleaner.py:202 msgid "Form history" msgstr "Historique des formulaires" #: ../cleaners/internet_explorer.xml ../bleachbit/Cleaner.py:203 msgid "A history of forms entered in web sites and in the Search bar" msgstr "" "Un historique des formulaires remplis sur des sites web et des saisies dans " "la barre de recherche" #. This software edits metadata tags, such as title and artist, in audio files #: ../cleaners/easytag.xml msgid "Audio files tagger" msgstr "Étiqueteur de fichiers audio" #: ../cleaners/apt.xml msgid "Delete obsolete files" msgstr "Supprimer les fichiers obsolètes" #: ../cleaners/apt.xml msgid "Package lists" msgstr "Listes des paquets" #: ../cleaners/xine.xml ../cleaners/miro.xml ../cleaners/flash.xml msgid "Multimedia viewer" msgstr "Visionneuse multimédia" #: ../cleaners/recoll.xml ../cleaners/beagle.xml msgid "Search tool" msgstr "Outil de recherche" #: ../cleaners/recoll.xml ../cleaners/beagle.xml ../cleaners/thunderbird.xml msgid "Index" msgstr "Index" #: ../cleaners/recoll.xml msgid "" "Delete the search index, a database of words and the files they contain" msgstr "" "Supprimer l’index de recherche, qui est une base de données de mots et des " "fichiers qui les contiennent" #: ../cleaners/gimp.xml msgid "Graphics editor" msgstr "Éditeur graphique" #: ../cleaners/exaile.xml msgid "Downloaded podcasts" msgstr "Podcasts téléchargés" #: ../cleaners/exaile.xml msgid "Delete downloaded podcasts" msgstr "Supprimer les podcasts téléchargés" #: ../cleaners/bash.xml msgid "Shell" msgstr "Shell" #. TRANSLATORS: DOM = Document Object Model. #: ../cleaners/opera.xml ../cleaners/epiphany.xml ../cleaners/chromium.xml #: ../cleaners/google_chrome.xml ../bleachbit/Cleaner.py:199 msgid "DOM Storage" msgstr "Stockage DOM" #: ../cleaners/opera.xml ../cleaners/epiphany.xml ../cleaners/chromium.xml #: ../cleaners/google_chrome.xml ../bleachbit/Cleaner.py:199 msgid "Delete HTML5 cookies" msgstr "Supprimer les cookies HTML5" #: ../cleaners/opera.xml ../cleaners/epiphany.xml ../cleaners/chromium.xml #: ../cleaners/google_chrome.xml ../cleaners/thunderbird.xml #: ../bleachbit/Cleaner.py:208 msgid "Passwords" msgstr "Mots de passe" #: ../cleaners/opera.xml ../cleaners/epiphany.xml ../cleaners/chromium.xml #: ../cleaners/google_chrome.xml ../cleaners/thunderbird.xml #: ../bleachbit/Cleaner.py:209 msgid "" "A database of usernames and passwords as well as a list of sites that should " "not store passwords" msgstr "" "Une base de données contenant identifiants et mots de passe ainsi qu’une " "liste de sites pour lesquels les mots de passe ne doivent pas être stockés" #: ../cleaners/opera.xml ../cleaners/epiphany.xml ../cleaners/chromium.xml #: ../cleaners/google_chrome.xml ../cleaners/thunderbird.xml #: ../bleachbit/Cleaner.py:211 msgid "This option will delete your saved passwords." msgstr "Cette option supprimera vos mots de passe enregistrés." #: ../cleaners/nautilus.xml msgid "Custom folders will be reset." msgstr "Les dossiers personnalisés vont être réinitialisés." #: ../cleaners/gnome.xml ../cleaners/kde.xml msgid "Desktop environment" msgstr "Environnement de bureau" #: ../cleaners/screenlets.xml msgid "Widgets for the desktop" msgstr "Gadgets pour le bureau" #: ../cleaners/epiphany.xml msgid "Places" msgstr "Emplacements" #: ../cleaners/epiphany.xml msgid "" "A database of URLs including bookmarks, favicons, and a history of visited " "web sites" msgstr "" "Une base de données des URL incluant marque-pages, favicons et l’historique " "des sites web visités" #: ../cleaners/epiphany.xml msgid "This option deletes all bookmarks." msgstr "Cette option efface tous les marque-pages." #: ../cleaners/winrar.xml msgid "File archiver" msgstr "Archiveur de fichiers" #: ../cleaners/elinks.xml msgid "Delete the cookies, visited URLs, and search history" msgstr "" "Supprimer les cookies, les URL visités et l’historique des recherches" #: ../cleaners/chromium.xml ../cleaners/google_chrome.xml msgid "A history of forms entered in web sites" msgstr "Un historique des formulaires entrés sur des sites web" #: ../cleaners/chromium.xml ../cleaners/google_chrome.xml msgid "" "Delete the history which includes visited sites, downloads, and thumbnails" msgstr "" "Supprimer l’historique, ce qui inclue les sites visités, les téléchargements " "et les vignettes" #: ../cleaners/chromium.xml ../cleaners/google_chrome.xml msgid "Search engines" msgstr "Moteurs de recherche" #. 'Factory' means a search engine that is installed by default 'from the factory,' but this is different than a 'default search engine' https://lists.launchpad.net/launchpad-translators/msg00283.html #: ../cleaners/chromium.xml ../cleaners/google_chrome.xml msgid "" "Reset the search engine usage history and delete non-factory search engines, " "some of which are added automatically" msgstr "" "Réinitialiser l’historique d’utilisation du moteur de recherche et revenir à " "la liste des moteurs de recherche par défaut, certains d’entre eux étant " "ajoutés automatiquement" #: ../cleaners/audacious.xml msgid "Audio player" msgstr "Lecteur audio" #: ../cleaners/rhythmbox.xml msgid "Database" msgstr "Base de données" #: ../cleaners/rhythmbox.xml msgid "" "Delete the database, which contain information such as play count and last " "played" msgstr "" "Supprimer la base de données, qui contient des informations telles qu’un " "compteur de lecture et les derniers fichiers lus" #: ../cleaners/google_chrome.xml msgid "Session" msgstr "Session" #: ../cleaners/google_chrome.xml msgid "Delete the current and last sessions" msgstr "Supprimer la session actuelle et les précédentes" #: ../cleaners/x11.xml msgid "Windowing system" msgstr "Système de fenêtrage" #: ../cleaners/wordpad.xml msgid "Word processor" msgstr "Traitement de texte" #: ../cleaners/deepscan.xml msgid "Deep scan" msgstr "Analyse approfondie" #: ../cleaners/deepscan.xml msgid "Clean files widely scattered across the disk" msgstr "Nettoyer les fichiers dispersés sur le disque" #: ../cleaners/deepscan.xml msgid "Inspect the preview for any files you want to keep." msgstr "" "Inspecter l’aperçu à la recherche de tout fichier que vous voulez conserver." #: ../cleaners/deepscan.xml msgid "This option is slow." msgstr "Cette option est lente." #: ../bleachbit.desktop msgid "Unnecessary file cleaner" msgstr "Nettoyeur de fichiers inutiles" #: ../bleachbit.desktop msgid "Free space and maintain privacy" msgstr "Libérer de l’espace et effacer ses traces" #: ../bleachbit/FileUtilities.py:668 msgid "" "There was at least one file on a file system that does not support advanced " "overwriting." msgstr "" "Il y avait au moins un fichier sur un système de fichiers qui ne prend pas " "en charge l’écrasement avancé de fichiers." #: ../bleachbit/Unix.py:574 #, python-format msgid "Executable not found: %s" msgstr "Exécutable non trouvé : %s" #. TRANSLATORS: %s expands to a name such as 'Firefox' or 'System'. #: ../bleachbit/Unix.py:623 ../bleachbit/Worker.py:136 #, python-format msgid "" "%s cannot be cleaned because it is currently running. Close it, and try " "again." msgstr "" "%s ne peut être nettoyé car il est en cours d’exécution. Fermez le programme " "et réessayez." #: ../bleachbit/GuiBasic.py:112 msgid "Delete confirmation" msgstr "Confirmation de suppression" #: ../bleachbit/GuiBasic.py:122 msgid "" "Are you sure you want to permanently delete files according to the selected " "operations? The actual files that will be deleted may have changed since " "you ran the preview." msgstr "" "Êtes-vous sûr de vouloir supprimer définitivement les fichiers correspondant " "aux opérations sélectionnées ? Les fichiers qui vont effectivement être " "supprimés peuvent avoir changé depuis le lancement de la prévisualisation." #: ../bleachbit/GuiBasic.py:125 msgid "Are you sure you want to permanently delete these files?" msgstr "Êtes-vous sûr de vouloir supprimer définitivement ces fichiers ?" #: ../bleachbit/GuiBasic.py:162 #, python-format msgid "" "Because you are running as root, please manually open this link in a web " "browser:\n" "%s" msgstr "" "Puisque vous êtes identifié en tant qu’administrateur, veuillez ouvrir " "manuellement ce lien dans un navigateur web :\n" "%s" #. TRANSLATORS: %s expands to www.bleachbit.org or similar #: ../bleachbit/GuiBasic.py:174 #, python-format msgid "Open web browser to %s?" msgstr "Aller sur le site %s ?" #. TRANSLATORS: This is the label in the log indicating was #. skipped because it matches the whitelist #: ../bleachbit/Command.py:47 msgid "Skip" msgstr "Ignorer" #. TRANSLATORS: This is the label in the log indicating will be #. deleted (for previews) or was actually deleted #: ../bleachbit/Command.py:77 msgid "Delete" msgstr "Supprimer" #: ../bleachbit/Command.py:99 msgid "" "At least one file was locked by another process, so its contents could not " "be overwritten. It will be marked for deletion upon system reboot." msgstr "" "Au moins un fichier était verrouillé par un autre processus, son contenu n’a " "en conséquence pas pu être écrasé. Il sera marqué comme étant à supprimer au " "réamorçage du système." #. TRANSLATORS: The file will be deleted when the #. system reboots #: ../bleachbit/Command.py:102 msgid "Mark for deletion" msgstr "Marquer pour suppression" #. TRANSLATORS: Parts of this file will be deleted #: ../bleachbit/Command.py:199 ../bleachbit/Command.py:233 #: ../bleachbit/Action.py:254 ../bleachbit/Action.py:267 #: ../bleachbit/Action.py:280 ../bleachbit/Action.py:293 #: ../bleachbit/Action.py:306 msgid "Clean file" msgstr "Nettoyer ce fichier" #. TRANSLATORS: The file will be truncated to 0 bytes in length #: ../bleachbit/Command.py:275 msgid "Truncate" msgstr "Tronquer" #: ../bleachbit/Command.py:317 msgid "Delete registry key" msgstr "Supprimer la clé de registre" #. TRANSLATORS: This is cleaner name for cleaners imported from winapp2.ini #: ../bleachbit/Winapp.py:44 msgid "Applications" msgstr "Applications" #. TRANSLATORS: This is cleaner name for cleaners imported #. from winapp2.ini #: ../bleachbit/Winapp.py:47 msgid "Internet" msgstr "Internet" #. TRANSLATORS: This is cleaner name for cleaners imported #. from winapp2.ini #: ../bleachbit/Winapp.py:50 msgid "Multimedia" msgstr "Multimédia" #. TRANSLATORS: This is cleaner name for cleaners imported #. from winapp2.ini #: ../bleachbit/Winapp.py:53 msgid "Utilities" msgstr "Utilitaires" #: ../bleachbit/Winapp.py:64 msgid "Games" msgstr "Jeux" #: ../bleachbit/Winapp.py:162 msgid "Imported from winapp2.ini" msgstr "Importé depuis winapp2.ini" #: ../bleachbit/Cleaner.py:197 msgid "Crash reports" msgstr "Rapports de plantages" #: ../bleachbit/Cleaner.py:204 msgid "Session restore" msgstr "Restauration de session" #: ../bleachbit/Cleaner.py:205 msgid "Loads the initial session after the browser closes or crashes" msgstr "" "Ouvre la session initiale après la fermeture ou le plantage du navigateur web" #: ../bleachbit/Cleaner.py:207 msgid "Site preferences" msgstr "Préférences du site" #: ../bleachbit/Cleaner.py:207 msgid "Settings for individual sites" msgstr "Paramètres pour les sites individuels" #. TRANSLATORS: desktop entries are .desktop files in Linux that #. make up the application menu (the menu that shows BleachBit, #. Firefox, and others. The .desktop files also associate file #. types, so clicking on an .html file in Nautilus brings up #. Firefox. #. More information: #. http://standards.freedesktop.org/menu-spec/latest/index.html#introduction #: ../bleachbit/Cleaner.py:453 msgid "Broken desktop files" msgstr "Fichiers de bureau corrompus" #: ../bleachbit/Cleaner.py:454 msgid "Delete broken application menu entries and file associations" msgstr "Effacer les liens brisés des menus et des associations de fichiers" #. TRANSLATORS: Localizations are files supporting specific #. languages, so applications appear in Spanish, etc. #: ../bleachbit/Cleaner.py:458 msgid "Localizations" msgstr "Traductions" #: ../bleachbit/Cleaner.py:459 msgid "Delete files for unwanted languages" msgstr "Supprimer les fichiers pour les langues non souhaitées" #: ../bleachbit/Cleaner.py:461 msgid "Configure this option in the preferences." msgstr "Configurez cette option dans les préférences." #: ../bleachbit/Cleaner.py:467 msgid "Rotated logs" msgstr "Anciens journaux" #: ../bleachbit/Cleaner.py:467 msgid "Delete old system logs" msgstr "Supprimer les anciens journaux système" #: ../bleachbit/Cleaner.py:470 msgid "Trash" msgstr "Corbeille" #: ../bleachbit/Cleaner.py:470 msgid "Empty the trash" msgstr "Vider la corbeille" #: ../bleachbit/Cleaner.py:476 ../bleachbit/Cleaner.py:627 #: ../bleachbit/Worker.py:184 msgid "Memory" msgstr "Mémoire" #. TRANSLATORS: 'free' means 'unallocated' #: ../bleachbit/Cleaner.py:478 msgid "Wipe the swap and free memory" msgstr "Nettoyer le swap et la mémoire disponible" #: ../bleachbit/Cleaner.py:480 msgid "This option is experimental and may cause system problems." msgstr "Cette option est expérimentale et peut poser des problèmes système." #: ../bleachbit/Cleaner.py:488 msgid "Memory dump" msgstr "Vidage mémoire" #: ../bleachbit/Cleaner.py:488 msgid "Delete the file memory.dmp" msgstr "Supprimer le fichier memory.dmp" #. TRANSLATORS: Prefetch is Microsoft Windows jargon. #: ../bleachbit/Cleaner.py:491 msgid "Prefetch" msgstr "Prefetch" #: ../bleachbit/Cleaner.py:493 msgid "Recycle bin" msgstr "Corbeille" #: ../bleachbit/Cleaner.py:493 ../bleachbit/Cleaner.py:787 msgid "Empty the recycle bin" msgstr "Vider la corbeille" #. TRANSLATORS: 'Update' is a noun, and 'Update uninstallers' is an option to delete #. the uninstallers for software updates. #: ../bleachbit/Cleaner.py:496 msgid "Update uninstallers" msgstr "Mise à jour des désinstallateurs" #: ../bleachbit/Cleaner.py:497 msgid "" "Delete uninstallers for Microsoft updates including hotfixes, service packs, " "and Internet Explorer updates" msgstr "" "Supprimer les désinstallateurs des mises à jour Microsoft telles que les " "corrections de bogues, les paquets de service et les mises à jour d’Internet " "Explorer" #: ../bleachbit/Cleaner.py:504 ../bleachbit/Cleaner.py:727 msgid "Clipboard" msgstr "Presse-papiers" #: ../bleachbit/Cleaner.py:505 msgid "" "The desktop environment's clipboard used for copy and paste operations" msgstr "" "Le presse-papiers de l’environnement de bureau utilisé pour copier-coller" #. TRANSLATORS: "Custom" is an option allowing the user to specify which #. files and folders will be erased. #: ../bleachbit/Cleaner.py:512 ../bleachbit/GuiPreferences.py:66 msgid "Custom" msgstr "Personnalisé" #: ../bleachbit/Cleaner.py:513 msgid "Delete user-specified files and folders" msgstr "Supprimer des fichiers et dossiers spécifiés par l’utilisateur" #. TRANSLATORS: 'free' means 'unallocated' #: ../bleachbit/Cleaner.py:515 msgid "Free disk space" msgstr "Espace disque disponible" #. TRANSLATORS: 'free' means 'unallocated' #: ../bleachbit/Cleaner.py:517 msgid "Overwrite free disk space to hide deleted files" msgstr "Écraser l’espace libre du disque pour cacher les fichiers supprimés" #: ../bleachbit/Cleaner.py:518 msgid "This option is very slow." msgstr "Cette option est très lente." #: ../bleachbit/Cleaner.py:522 msgid "The system in general" msgstr "Le système en général" #: ../bleachbit/Cleaner.py:524 ../bleachbit/Cleaner.py:857 msgid "System" msgstr "Système" #. TRANSLATORS: 'Free' means 'unallocated.' #. %s expands to a path such as C:\ or /tmp/ #: ../bleachbit/Cleaner.py:735 ../bleachbit/Cleaner.py:890 #, python-format msgid "Overwrite free disk space %s" msgstr "Écraser l’espace libre du disque %s" #: ../bleachbit/RecognizeCleanerML.py:59 msgid "Security warning" msgstr "Alerte de sécurité" #: ../bleachbit/RecognizeCleanerML.py:72 msgid "" "These cleaner definitions are new or have changed. Malicious definitions can " "damage your system. If you do not trust these changes, delete the files or " "quit." msgstr "" "Ces descriptions du nettoyeur sont nouvelles ou ont changé. Des descriptions " "malveillantes peuvent endommager votre système. Si vous ne vous fiez pas à " "ces modifications, supprimez les fichiers ou quittez le programme." #: ../bleachbit/RecognizeCleanerML.py:88 msgctxt "column_label" msgid "Delete" msgstr "Supprimer" #: ../bleachbit/RecognizeCleanerML.py:93 msgctxt "column_label" msgid "Filename" msgstr "Nom du fichier" #. TRANSLATORS: This indicates an error. The special keyword #. %(operation)s will be replaced by 'firefox' or 'opera' or #. some other cleaner ID. The special keyword %(msg)s will be #. replaced by a message such as 'Permission denied.' #: ../bleachbit/Worker.py:74 #, python-format msgid "Exception while running operation '%(operation)s': '%(msg)s'" msgstr "Erreur lors de l’exécution de « %(operation)s » : « %(msg)s »" #. TRANSLATORS: 'free' means 'unallocated' #: ../bleachbit/Worker.py:182 msgid "Please wait. Wiping free disk space." msgstr "Veuillez patienter. Effacement de l’espace disque libre en cours." #. TRANSLATORS: %s is replaced with Firefox, System, etc. #: ../bleachbit/Worker.py:184 ../bleachbit/Worker.py:332 #, python-format msgid "Please wait. Cleaning %s." msgstr "Veuillez patienter. Nettoyage de %s en cours." #: ../bleachbit/Worker.py:199 msgid "Please wait. Wiping file system metadata." msgstr "" "Veuillez patienter. Effacement des métadonnées du système de fichiers en " "cours." #: ../bleachbit/Worker.py:202 msgid "Please wait. Cleaning up after wiping file system metadata." msgstr "" "Veuillez patienter. Nettoyage après effacement des métadonnées du système de " "fichiers en cours." #: ../bleachbit/Worker.py:205 #, python-format msgid "About %d minute remaining." msgid_plural "About %d minutes remaining." msgstr[0] "Environ %d minute restante." msgstr[1] "Environ %d minutes restantes." #. TRANSLATORS: This refers to disk space that was #. really recovered (in other words, not a preview) #: ../bleachbit/Worker.py:272 #, python-format msgid "Disk space recovered: %s" msgstr "Espace disque effectivement récupéré : %s" #. TRANSLATORS: This refers to a preview (no real #. changes were made yet) #: ../bleachbit/Worker.py:276 #, python-format msgid "Disk space to be recovered: %s" msgstr "Espace disque potentiellement récupérable : %s" #. TRANSLATORS: This refers to the number of files really #. deleted (in other words, not a preview). #: ../bleachbit/Worker.py:281 #, python-format msgid "Files deleted: %d" msgstr "Fichiers effectivement supprimés : %d" #. TRANSLATORS: This refers to the number of files that #. would be deleted (in other words, simply a preview). #: ../bleachbit/Worker.py:285 #, python-format msgid "Files to be deleted: %d" msgstr "Fichiers potentiellement supprimables : %d" #: ../bleachbit/Worker.py:288 #, python-format msgid "Special operations: %d" msgstr "Opérations spécifiques : %d" #: ../bleachbit/Worker.py:291 #, python-format msgid "Errors: %d" msgstr "Erreurs : %d" #. TRANSLATORS: The "deep scan" feature searches over broad #. areas of the file system such as the user's whole home directory #. or all the system executables. #: ../bleachbit/Worker.py:306 msgid "Please wait. Running deep scan." msgstr "Veuillez patienter. Exécution d’une analyse approfondie en cours." #. TRANSLATORS: %s is replaced with Firefox, System, etc. #: ../bleachbit/Worker.py:335 #, python-format msgid "Please wait. Previewing %s." msgstr "Veuillez patienter. Prévisualisation de %s en cours." #: ../bleachbit/Update.py:80 msgid "New winapp2.ini was downloaded." msgstr "Un nouveau winapp2.ini a été téléchargé." #: ../bleachbit/Update.py:125 msgid "Update BleachBit" msgstr "Mettre à jour BleachBit" #: ../bleachbit/Update.py:130 msgid "A new version is available." msgstr "Une nouvelle version est disponible." #. TRANSLATORS: %s expands to version such as '0.8.4' or '0.8.5beta' or #. similar #: ../bleachbit/Update.py:139 #, python-format msgid "Update to version %s" msgstr "Mettre à jour à la version %s" #: ../bleachbit/Update.py:164 #, python-format msgid "" "Error when opening a network connection to %s to check for updates. Please " "verify the network is working." msgstr "" "Erreur lors de l’ouverture d’une connexion réseau vers %s afin de vérifier " "les mises à jour. Veuillez vérifier que le réseau fonctionne." #: ../bleachbit/CLI.py:106 #, python-format msgid "not a valid cleaner: %s" msgstr "nettoyeur invalide : %s" #. TRANSLATORS: This is the command line usage. Don't translate #. %prog, but do translate usage, options, cleaner, and option. #. More information about the command line is here #. https://www.bleachbit.org/documentation/command-line #: ../bleachbit/CLI.py:133 msgid "usage: %prog [options] cleaner.option1 cleaner.option2" msgstr "utilisation : %prog [options] nettoyeur.option1 nettoyeur.option2" #: ../bleachbit/CLI.py:136 msgid "list cleaners" msgstr "lister les nettoyeurs" #. TRANSLATORS: predefined cleaners are for applications, such as Firefox and Flash. #. This is different than cleaning an arbitrary file, such as a #. spreadsheet on the desktop. #: ../bleachbit/CLI.py:141 msgid "run cleaners to delete files and make other permanent changes" msgstr "" "exécuter les nettoyeurs pour supprimer les fichiers et réaliser d’autres " "modifications permanentes" #: ../bleachbit/CLI.py:144 msgid "shred specific files or folders" msgstr "détruire des fichiers ou des dossiers spécifiques" #: ../bleachbit/CLI.py:146 msgid "show system information" msgstr "afficher les informations système" #: ../bleachbit/CLI.py:148 msgid "launch the graphical interface" msgstr "lancer l’interface graphique" #: ../bleachbit/CLI.py:152 msgid "do not prompt for administrator privileges" msgstr "ne pas demander les privilèges administrateur" #: ../bleachbit/CLI.py:157 msgid "preview files to be deleted and other changes" msgstr "Prévisualiser les fichiers à supprimer et autres modifications" #: ../bleachbit/CLI.py:161 msgid "use options set in the graphical interface" msgstr "utiliser les options définies dans l’interface graphique" #: ../bleachbit/CLI.py:164 msgid "update winapp2.ini, if a new version is available" msgstr "mettre à jour winapp2.ini, si une nouvelle version est disponible" #: ../bleachbit/CLI.py:166 msgid "output version information and exit" msgstr "afficher les informations de version et quitter" #: ../bleachbit/CLI.py:168 msgid "overwrite files to hide contents" msgstr "écraser les fichiers pour cacher leur contenu" #. TRANSLATORS: this is the context menu #: ../bleachbit/Action.py:382 ../bleachbit/GUI.py:632 msgid "Clean" msgstr "Nettoyer" #: ../bleachbit/Action.py:418 #, python-format msgid "Run external command: %s" msgstr "Exécuter une commande externe : %s" #: ../bleachbit/GUI.py:135 ../bleachbit/GuiPreferences.py:296 msgid "Name" msgstr "Nom" #: ../bleachbit/GUI.py:143 msgid "Active" msgstr "Actif" #. TRANSLATORS: Size is the label for the column that shows how #. much space an option would clean or did clean #: ../bleachbit/GUI.py:155 msgid "Size" msgstr "Taille" #. TRANSLATORS: %(cleaner) may be Firefox, System, etc. #. %(option) may be cache, logs, cookies, etc. #. %(warning) may be 'This option is really slow' #: ../bleachbit/GUI.py:186 #, python-format msgid "" "Warning regarding %(cleaner)s - %(option)s:\n" "\n" "%(warning)s" msgstr "" "Avertissement concernant %(cleaner)s - %(option)s :\n" "\n" "%(warning)s" #: ../bleachbit/GUI.py:372 msgid "You must select an operation" msgstr "Vous devez sélectionner une opération" #: ../bleachbit/GUI.py:391 ../bleachbit/GUI.py:413 msgid "Done." msgstr "Terminé." #: ../bleachbit/GUI.py:426 msgid "Program to clean unnecessary files" msgstr "Programme pour supprimer les fichiers inutiles" #: ../bleachbit/GUI.py:436 msgid "" "GNU General Public License version 3 or later.\n" "See http://www.gnu.org/licenses/gpl-3.0.txt" msgstr "" "Licence publique générale GNU version 3 ou ultérieure. \n" "Voir http://www.gnu.org/licenses/gpl-3.0.txt" #. TRANSLATORS: Maintain the names of translators here. #. Launchpad does this automatically for translations #. typed in Launchpad. This is a special string shown #. in the 'About' box. #: ../bleachbit/GUI.py:442 msgid "translator-credits" msgstr "" "Launchpad Contributions:\n" " 65GYgzf https://launchpad.net/~65gygzf\n" " Andrew Ziem https://launchpad.net/~ahziem1\n" " Christophe CATARINA https://launchpad.net/~christophe.catarina\n" " Célestin Taramarcaz https://launchpad.net/~ctaramarcaz\n" " Edouard Marquez https://launchpad.net/~animatrix\n" " Etienne Savard https://launchpad.net/~esavard\n" " Gabriel U. https://launchpad.net/~gabriel-ull\n" " Jean-Luc Aufranc https://launchpad.net/~jean-luc-aufranc\n" " Jean-Marc https://launchpad.net/~m-balthazar\n" " Jean-Paul GERST https://launchpad.net/~jp-gerst\n" " Julien Valroff https://launchpad.net/~julienv\n" " Mathieu Pasquet https://launchpad.net/~mathieui\n" " Matthieu Martin https://launchpad.net/~matthieu-martin\n" " Nicolas DERIVE https://launchpad.net/~kalon33\n" " Nicolas Delvaux https://launchpad.net/~malizor\n" " Nizar Kerkeni https://launchpad.net/~nizarus\n" " PEIGNOT Kévin https://launchpad.net/~kpeignot\n" " Pierre Slamich https://launchpad.net/~pierre-slamich\n" " Pierre Soulat https://launchpad.net/~pierre-soulat\n" " Rodolphe BOUCHIER https://launchpad.net/~ldnpub\n" " Sergiy Matrunchyk https://launchpad.net/~sergiy.matrunchyk\n" " Steve Dodier-Lazaro https://launchpad.net/~sidi\n" " Sultan Rahi https://launchpad.net/~sultanrahi\n" " Urien Desterres https://launchpad.net/~urien-desterres\n" " computerhelp https://launchpad.net/~comp-conf\n" " gisele perreault https://launchpad.net/~gisele-perreault\n" " j0nnnnn0 https://launchpad.net/~j0nnnnn0\n" " lann https://launchpad.net/~lann\n" " licy yu https://launchpad.net/~licy-lyu\n" " tekubu https://launchpad.net/~tek-ubu\n" " upkpk https://launchpad.net/~upkpk\n" " Éfrit https://launchpad.net/~efrit" #: ../bleachbit/GUI.py:454 msgid "System information" msgstr "Informations système" #: ../bleachbit/GUI.py:527 msgid "Choose files to shred" msgstr "" #: ../bleachbit/GUI.py:530 msgid "Choose folder to shred" msgstr "Choisissez un dossier à détruire" #: ../bleachbit/GUI.py:594 ../bleachbit/GuiPreferences.py:197 #: ../bleachbit/GuiPreferences.py:326 ../bleachbit/GuiPreferences.py:367 msgid "Choose a folder" msgstr "Choisir un dossier" #. TRANSLATORS: this is the context menu #: ../bleachbit/GUI.py:627 msgid "Preview" msgstr "Prévisualiser" #: ../bleachbit/GUI.py:734 msgid "_Shred Files" msgstr "_Détruire des fichiers" #: ../bleachbit/GUI.py:736 msgid "Sh_red Folders" msgstr "Dé_truire des dossiers" #: ../bleachbit/GUI.py:738 msgid "_Wipe Free Space" msgstr "Écrasement de l’e_space libre" #: ../bleachbit/GUI.py:740 msgid "S_hred Settings and Quit" msgstr "Détruire les paramètres et quitter" #: ../bleachbit/GUI.py:742 msgid "_Quit" msgstr "_Quitter" #: ../bleachbit/GUI.py:744 msgid "_File" msgstr "_Fichier" #: ../bleachbit/GUI.py:746 ../bleachbit/GuiPreferences.py:58 msgid "Preferences" msgstr "Préférences" #: ../bleachbit/GUI.py:747 msgid "_Edit" msgstr "É_dition" #: ../bleachbit/GUI.py:748 msgid "Help Contents" msgstr "Sommaire de l’aide" #: ../bleachbit/GUI.py:751 msgid "_Release Notes" msgstr "Notes de versions" #: ../bleachbit/GUI.py:754 msgid "_System Information" msgstr "_Informations système" #: ../bleachbit/GUI.py:757 msgid "_About" msgstr "À _propos" #: ../bleachbit/GUI.py:758 msgid "_Help" msgstr "_Aide" #: ../bleachbit/GUI.py:783 msgctxt "button" msgid "Preview" msgstr "Prévisualiser" #: ../bleachbit/GUI.py:788 msgid "Preview files in the selected operations (without deleting any files)" msgstr "" "Prévisualiser les fichiers des opérations sélectionnées (sans supprimer de " "fichiers)" #: ../bleachbit/GUI.py:798 msgctxt "button" msgid "Clean" msgstr "Nettoyer" #: ../bleachbit/GUI.py:802 msgid "Clean files in the selected operations" msgstr "Nettoyer les fichiers des opérations sélectionnées" #: ../bleachbit/GUI.py:893 msgid "Error when checking for updates: " msgstr "Erreur lors de la recherche des mises à jour : " #: ../bleachbit/GUI.py:932 msgid "" "Error loading the SQLite module: the antivirus software may be blocking it." msgstr "" "Erreur lors du chargement du module SQLite : le logiciel antivirus est peut-" "être entrain de le bloquer." #: ../bleachbit/GUI.py:935 msgid "" "You are running BleachBit with administrative privileges for cleaning shared " "parts of the system, and references to the user profile folder will clean " "only the root account." msgstr "" "Vous êtes entrain d’exécuter BleachBit avec des privilèges administrateur " "afin de nettoyer des parties partagées du système, et les références dans le " "dossier du profil utilisateur ne nettoieront que le compte administrateur." #: ../bleachbit/GUI.py:940 msgid "" "Run BleachBit with administrator privileges to improve the accuracy of " "overwriting the contents of files." msgstr "" "Lancer BleachBit avec les privilèges administrateur afin d’améliorer " "l’efficacité de l’écrasement des contenus des fichiers." #: ../bleachbit/GuiPreferences.py:64 msgid "General" msgstr "Général" #: ../bleachbit/GuiPreferences.py:67 msgid "Drives" msgstr "Disques" #: ../bleachbit/GuiPreferences.py:70 msgid "Languages" msgstr "Langues" #: ../bleachbit/GuiPreferences.py:72 msgid "Whitelist" msgstr "Liste blanche" #: ../bleachbit/GuiPreferences.py:117 msgid "Check periodically for software updates via the Internet" msgstr "Vérifier régulièrement les mises à jour disponibles sur Internet" #: ../bleachbit/GuiPreferences.py:122 msgid "" "If an update is found, you will be given the option to view information " "about it. Then, you may manually download and install the update." msgstr "" "S’il y a une mise à jour, vous aurez la possibilité de voir les informations " "la concernant. Vous pourrez ensuite télécharger et installer manuellement la " "mise à jour." #: ../bleachbit/GuiPreferences.py:128 msgid "Check for new beta releases" msgstr "Rechercher une nouvelle version bêta" #: ../bleachbit/GuiPreferences.py:137 msgid "Download and update cleaners from community (winapp2.ini)" msgstr "" "Télécharger et mettre à jour les nettoyeurs communautaires (winapp2.ini)" #. TRANSLATORS: This means to hide cleaners which would do #. nothing. For example, if Firefox were never used on #. this system, this option would hide Firefox to simplify #. the list of cleaners. #: ../bleachbit/GuiPreferences.py:151 msgid "Hide irrelevant cleaners" msgstr "Masquer les nettoyeurs inadéquats" #. TRANSLATORS: Overwriting is the same as shredding. It is a way #. to prevent recovery of the data. You could also translate #. 'Shred files to prevent recovery.' #: ../bleachbit/GuiPreferences.py:159 msgid "Overwrite contents of files to prevent recovery" msgstr "Écraser le contenu des fichiers pour empêcher la récupération" #: ../bleachbit/GuiPreferences.py:163 msgid "" "Overwriting is ineffective on some file systems and with certain BleachBit " "operations. Overwriting is significantly slower." msgstr "" "L’écrasement n’est pas opérationnelle sur certains systèmes de fichiers ni " "pour certaines opérations de BleachBit. L’écrasement est significativement " "plus lent." #: ../bleachbit/GuiPreferences.py:166 msgid "Start BleachBit with computer" msgstr "Démarrer BleachBit avec l’ordinateur" #: ../bleachbit/GuiPreferences.py:172 msgid "Exit after cleaning" msgstr "Quitter après le nettoyage" #: ../bleachbit/GuiPreferences.py:178 msgid "Confirm before delete" msgstr "Confirmer avant de supprimer" #: ../bleachbit/GuiPreferences.py:186 msgid "Use IEC sizes (1 KiB = 1024 bytes) instead of SI (1 kB = 1000 bytes)" msgstr "" "Utiliser les préfixes CEI (1 Kio = 1024 octets) au lieu des préfixes SI (1 " "ko = 1000 octets)" #: ../bleachbit/GuiPreferences.py:221 msgid "" "Choose a writable folder for each drive for which to overwrite free space." msgstr "" "Choisissez un répertoire avec les droits d’écriture pour chaque disque pour " "lesquels l’espace libre doit être écrasé." #. TRANSLATORS: In the preferences dialog, this button adds a path to #. the list of paths #: ../bleachbit/GuiPreferences.py:243 msgctxt "button" msgid "Add" msgstr "Ajouter" #. TRANSLATORS: In the preferences dialog, this button removes a path #. from the list of paths #: ../bleachbit/GuiPreferences.py:247 ../bleachbit/GuiPreferences.py:458 msgctxt "button" msgid "Remove" msgstr "Retirer" #: ../bleachbit/GuiPreferences.py:272 msgid "All languages will be deleted except those checked." msgstr "" "Toutes les langues vont être supprimées, à l’exception de celles " "sélectionnées." #: ../bleachbit/GuiPreferences.py:288 msgid "Preserve" msgstr "Conserver" #: ../bleachbit/GuiPreferences.py:292 msgid "Code" msgstr "Code" #: ../bleachbit/GuiPreferences.py:313 ../bleachbit/GuiPreferences.py:354 msgid "Choose a file" msgstr "Choisir un fichier" #: ../bleachbit/GuiPreferences.py:320 ../bleachbit/GuiPreferences.py:361 #: ../bleachbit/GuiPreferences.py:405 msgid "File" msgstr "Fichier" #: ../bleachbit/GuiPreferences.py:334 ../bleachbit/GuiPreferences.py:375 #: ../bleachbit/GuiPreferences.py:407 msgid "Folder" msgstr "Dossier" #: ../bleachbit/GuiPreferences.py:417 msgid "Theses paths will not be deleted or modified." msgstr "Ces chemins d’accès ne seront ni modifiés ni supprimés." #: ../bleachbit/GuiPreferences.py:420 msgid "These locations can be selected for deletion." msgstr "Ces emplacements peuvent être sélectionnés pour suppression." #: ../bleachbit/GuiPreferences.py:428 msgid "Type" msgstr "Type" #. TRANSLATORS: In the tree view "Path" is used generically to refer to a #. file, a folder, or a pattern describing either #: ../bleachbit/GuiPreferences.py:434 msgid "Path" msgstr "Chemin d’accès" #: ../bleachbit/GuiPreferences.py:446 msgctxt "button" msgid "Add file" msgstr "Ajouter un fichier" #: ../bleachbit/GuiPreferences.py:452 msgctxt "button" msgid "Add folder" msgstr "Ajouter un dossier" bleachbit-2.0/po/ug.po0000644000175000017500000010377213245436307013004 0ustar hlehle# Uyghur translation for bleachbit # Copyright (c) 2011 Rosetta Contributors and Canonical Ltd 2011 # This file is distributed under the same license as the bleachbit package. # FIRST AUTHOR , 2011. # msgid "" msgstr "" "Project-Id-Version: bleachbit\n" "Report-Msgid-Bugs-To: FULL NAME \n" "POT-Creation-Date: 2012-12-29 17:07-0700\n" "PO-Revision-Date: 2013-01-06 09:57+0000\n" "Last-Translator: Gheyret T.Kenji \n" "Language-Team: Uyghur \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=1; plural=0;\n" "X-Launchpad-Export-Date: 2013-01-06 15:48+0000\n" "X-Generator: Launchpad (build 16393)\n" #: ../cleaners/mc.xml ../cleaners/tortoisesvn.xml ../cleaners/vim.xml #: ../cleaners/safari.xml ../cleaners/links2.xml ../cleaners/seamonkey.xml #: ../cleaners/realplayer.xml ../cleaners/windows_defender.xml #: ../cleaners/d4x.xml ../cleaners/internet_explorer.xml #: ../cleaners/libreoffice.xml ../cleaners/bash.xml ../cleaners/nautilus.xml #: ../cleaners/elinks.xml ../cleaners/chromium.xml #: ../cleaners/google_chrome.xml msgid "History" msgstr "ئىز" #: ../cleaners/mc.xml ../cleaners/tortoisesvn.xml ../cleaners/links2.xml #: ../cleaners/realplayer.xml ../cleaners/d4x.xml ../cleaners/libreoffice.xml #: ../cleaners/nautilus.xml ../cleaners/gnome.xml ../bleachbit/Cleaner.py:286 #: ../bleachbit/Cleaner.py:357 msgid "Delete the usage history" msgstr "" #: ../cleaners/gpodder.xml ../cleaners/hippo_opensim_viewer.xml #: ../cleaners/thumbnails.xml ../cleaners/safari.xml #: ../cleaners/transmission.xml ../cleaners/emesene.xml #: ../cleaners/liferea.xml ../cleaners/seamonkey.xml ../cleaners/vuze.xml #: ../cleaners/yahoo_messenger.xml ../cleaners/pidgin.xml #: ../cleaners/adobe_reader.xml ../cleaners/evolution.xml #: ../cleaners/tremulous.xml ../cleaners/libreoffice.xml ../cleaners/xine.xml #: ../cleaners/nexuiz.xml ../cleaners/exaile.xml ../cleaners/opera.xml #: ../cleaners/amsn.xml ../cleaners/gftp.xml ../cleaners/miro.xml #: ../cleaners/beagle.xml ../cleaners/kde.xml ../cleaners/epiphany.xml #: ../cleaners/flash.xml ../cleaners/secondlife_viewer.xml #: ../cleaners/java.xml ../cleaners/chromium.xml ../cleaners/audacious.xml #: ../cleaners/rhythmbox.xml ../cleaners/google_chrome.xml #: ../cleaners/thunderbird.xml ../bleachbit/Cleaner.py:186 #: ../bleachbit/Cleaner.py:306 ../bleachbit/Cleaner.py:377 msgid "Cache" msgstr "غەملەك" #: ../cleaners/gpodder.xml ../cleaners/yum.xml #: ../cleaners/hippo_opensim_viewer.xml ../cleaners/thumbnails.xml #: ../cleaners/transmission.xml ../cleaners/windows_explorer.xml #: ../cleaners/liferea.xml ../cleaners/vuze.xml #: ../cleaners/yahoo_messenger.xml ../cleaners/pidgin.xml #: ../cleaners/adobe_reader.xml ../cleaners/evolution.xml #: ../cleaners/libreoffice.xml ../cleaners/apt.xml ../cleaners/xine.xml #: ../cleaners/nexuiz.xml ../cleaners/exaile.xml ../cleaners/amsn.xml #: ../cleaners/gftp.xml ../cleaners/miro.xml ../cleaners/beagle.xml #: ../cleaners/kde.xml ../cleaners/flash.xml ../cleaners/secondlife_viewer.xml #: ../cleaners/java.xml ../cleaners/audacious.xml ../cleaners/rhythmbox.xml #: ../bleachbit/Cleaner.py:306 ../bleachbit/Cleaner.py:377 #: ../bleachbit/Cleaner.py:405 ../bleachbit/Cleaner.py:407 msgid "Delete the cache" msgstr "" #. TRANSLATORS: Vacuum is a verb. The term is jargon #. from the SQLite database. Microsoft Access uses #. the term 'Compact Database' (which you may translate #. instead). Another synonym is 'defragment.' #: ../cleaners/gpodder.xml ../cleaners/yum.xml ../cleaners/safari.xml #: ../cleaners/liferea.xml ../cleaners/chromium.xml #: ../cleaners/google_chrome.xml ../cleaners/thunderbird.xml #: ../bleachbit/Action.py:334 ../bleachbit/Cleaner.py:197 #: ../bleachbit/Cleaner.py:296 msgid "Vacuum" msgstr "" #: ../cleaners/gpodder.xml ../cleaners/yum.xml ../cleaners/safari.xml #: ../cleaners/liferea.xml ../cleaners/chromium.xml #: ../cleaners/google_chrome.xml ../cleaners/thunderbird.xml #: ../bleachbit/Cleaner.py:197 msgid "" "Clean database fragmentation to reduce space and improve speed without " "removing any data" msgstr "" #: ../cleaners/hippo_opensim_viewer.xml ../cleaners/gl-117.xml #: ../cleaners/tremulous.xml ../cleaners/nexuiz.xml #: ../cleaners/secondlife_viewer.xml msgid "Game" msgstr "ئويۇن" #: ../cleaners/hippo_opensim_viewer.xml ../cleaners/teamviewer.xml #: ../cleaners/realplayer.xml ../cleaners/vuze.xml #: ../cleaners/yahoo_messenger.xml ../cleaners/amule.xml #: ../cleaners/easytag.xml ../cleaners/exaile.xml ../cleaners/screenlets.xml #: ../cleaners/gftp.xml ../cleaners/miro.xml ../cleaners/audacious.xml #: ../bleachbit/Cleaner.py:403 msgid "Logs" msgstr "خاتىرىلەر" #: ../cleaners/hippo_opensim_viewer.xml ../cleaners/teamviewer.xml #: ../cleaners/realplayer.xml ../cleaners/vuze.xml #: ../cleaners/yahoo_messenger.xml ../cleaners/amule.xml #: ../cleaners/exaile.xml ../cleaners/screenlets.xml ../cleaners/gftp.xml #: ../cleaners/miro.xml ../cleaners/audacious.xml ../bleachbit/Cleaner.py:403 msgid "Delete the logs" msgstr "" #: ../cleaners/thumbnails.xml ../cleaners/windows_explorer.xml msgid "Thumbnails" msgstr "كىچىك سۈرەت" #: ../cleaners/vim.xml ../cleaners/gedit.xml msgid "Editor" msgstr "تەھرىرلىگۈچ" #: ../cleaners/vim.xml msgid "" "Delete ~/.viminfo which includes file history, command history, and buffers" msgstr "" #: ../cleaners/filezilla.xml ../cleaners/transmission.xml ../cleaners/vuze.xml #: ../cleaners/amule.xml ../cleaners/gftp.xml msgid "File transfer client" msgstr "" #: ../cleaners/filezilla.xml ../cleaners/paint.xml #: ../cleaners/windows_media_player.xml ../cleaners/windows_explorer.xml #: ../cleaners/teamviewer.xml ../cleaners/microsoft_office.xml #: ../cleaners/vlc.xml ../cleaners/adobe_reader.xml ../cleaners/winamp.xml #: ../cleaners/winzip.xml ../cleaners/winrar.xml ../cleaners/audacious.xml #: ../cleaners/wordpad.xml ../bleachbit/Cleaner.py:307 msgid "Most recently used" msgstr "" #: ../cleaners/filezilla.xml ../cleaners/windows_explorer.xml #: ../cleaners/gwenview.xml ../cleaners/adobe_reader.xml ../cleaners/gedit.xml #: ../cleaners/kde.xml ../cleaners/audacious.xml ../bleachbit/Cleaner.py:307 #: ../bleachbit/Cleaner.py:387 msgid "Delete the list of recently used documents" msgstr "" #: ../cleaners/skype.xml ../cleaners/xchat.xml ../cleaners/emesene.xml #: ../cleaners/seamonkey.xml ../cleaners/yahoo_messenger.xml #: ../cleaners/pidgin.xml ../cleaners/amsn.xml msgid "Chat logs" msgstr "" #: ../cleaners/skype.xml ../cleaners/xchat.xml ../cleaners/emesene.xml #: ../cleaners/seamonkey.xml ../cleaners/yahoo_messenger.xml #: ../cleaners/pidgin.xml ../cleaners/amsn.xml msgid "Delete the chat logs" msgstr "" #: ../cleaners/xchat.xml ../cleaners/emesene.xml #: ../cleaners/yahoo_messenger.xml ../cleaners/pidgin.xml ../cleaners/amsn.xml msgid "Chat client" msgstr "" #: ../cleaners/safari.xml ../cleaners/links2.xml ../cleaners/seamonkey.xml #: ../cleaners/konqueror.xml ../cleaners/internet_explorer.xml #: ../cleaners/opera.xml ../cleaners/epiphany.xml ../cleaners/elinks.xml #: ../cleaners/chromium.xml ../cleaners/google_chrome.xml #: ../bleachbit/Cleaner.py:209 msgid "Web browser" msgstr "" #: ../cleaners/safari.xml ../cleaners/seamonkey.xml ../cleaners/opera.xml #: ../cleaners/epiphany.xml ../cleaners/chromium.xml #: ../cleaners/google_chrome.xml ../cleaners/thunderbird.xml #: ../bleachbit/Cleaner.py:186 msgid "Delete the web cache, which reduces time to display revisited pages" msgstr "" #: ../cleaners/safari.xml ../cleaners/liferea.xml ../cleaners/seamonkey.xml #: ../cleaners/realplayer.xml ../cleaners/konqueror.xml #: ../cleaners/internet_explorer.xml ../cleaners/opera.xml #: ../cleaners/epiphany.xml ../cleaners/flash.xml ../cleaners/silverlight.xml #: ../cleaners/chromium.xml ../cleaners/google_chrome.xml #: ../cleaners/thunderbird.xml ../bleachbit/Cleaner.py:187 msgid "Cookies" msgstr "" #: ../cleaners/safari.xml ../cleaners/liferea.xml ../cleaners/seamonkey.xml #: ../cleaners/realplayer.xml ../cleaners/konqueror.xml #: ../cleaners/internet_explorer.xml ../cleaners/opera.xml #: ../cleaners/epiphany.xml ../cleaners/flash.xml ../cleaners/silverlight.xml #: ../cleaners/chromium.xml ../cleaners/google_chrome.xml #: ../cleaners/thunderbird.xml ../bleachbit/Cleaner.py:187 msgid "" "Delete cookies, which contain information such as web site preferences, " "authentication, and tracking identification" msgstr "" #: ../cleaners/safari.xml ../cleaners/konqueror.xml #: ../cleaners/internet_explorer.xml ../cleaners/opera.xml #: ../bleachbit/Cleaner.py:196 msgid "List of visited web pages" msgstr "" #: ../cleaners/paint.xml ../cleaners/windows_media_player.xml #: ../cleaners/windows_explorer.xml ../cleaners/teamviewer.xml #: ../cleaners/microsoft_office.xml ../cleaners/vlc.xml ../cleaners/winamp.xml #: ../cleaners/winzip.xml ../cleaners/winrar.xml ../cleaners/wordpad.xml msgid "Delete the most recently used list" msgstr "" #: ../cleaners/emesene.xml msgid "Delete the avatars and emoticons cache" msgstr "" #: ../cleaners/windows_explorer.xml ../cleaners/gwenview.xml #: ../cleaners/gedit.xml ../cleaners/kde.xml ../bleachbit/Cleaner.py:387 msgid "Recent documents list" msgstr "" #. In Windows 'Run' is the dialog in the Start menu #. In GNOME 'Run' is the dialog shown when typing ALT+F2' #: ../cleaners/windows_explorer.xml ../cleaners/gnome.xml msgid "Run" msgstr "ئىجرا قىل" #: ../cleaners/windows_explorer.xml ../cleaners/opera.xml #: ../cleaners/gnome.xml ../cleaners/google_toolbar.xml msgid "Search history" msgstr "" #: ../cleaners/windows_explorer.xml ../cleaners/opera.xml #: ../cleaners/gnome.xml ../cleaners/google_toolbar.xml msgid "Delete the search history" msgstr "" #: ../cleaners/gl-117.xml ../cleaners/microsoft_office.xml #: ../cleaners/beagle.xml ../cleaners/secondlife_viewer.xml #: ../cleaners/x11.xml msgid "Debug logs" msgstr "" #: ../cleaners/gl-117.xml ../cleaners/microsoft_office.xml #: ../cleaners/easytag.xml ../cleaners/beagle.xml #: ../cleaners/secondlife_viewer.xml ../cleaners/x11.xml msgid "Delete the debug logs" msgstr "" #: ../cleaners/google_earth.xml ../cleaners/winetricks.xml #: ../cleaners/vuze.xml ../cleaners/adobe_reader.xml ../cleaners/amule.xml #: ../cleaners/wine.xml ../cleaners/internet_explorer.xml ../cleaners/gimp.xml #: ../cleaners/kde.xml ../cleaners/deepscan.xml ../bleachbit/Cleaner.py:430 msgid "Temporary files" msgstr "ۋاقىتلىق ھۆججەت" #: ../cleaners/google_earth.xml ../cleaners/winetricks.xml #: ../cleaners/vuze.xml ../cleaners/adobe_reader.xml ../cleaners/amule.xml #: ../cleaners/wine.xml ../cleaners/internet_explorer.xml ../cleaners/gimp.xml #: ../cleaners/kde.xml ../cleaners/deepscan.xml ../bleachbit/Cleaner.py:430 msgid "Delete the temporary files" msgstr "" #: ../cleaners/seamonkey.xml ../cleaners/opera.xml ../bleachbit/Cleaner.py:191 msgid "Download history" msgstr "" #: ../cleaners/seamonkey.xml ../cleaners/opera.xml ../bleachbit/Cleaner.py:191 msgid "List of files downloaded" msgstr "" #: ../cleaners/seamonkey.xml msgid "Delete the list of visited web pages" msgstr "" #: ../cleaners/vuze.xml ../cleaners/deepscan.xml msgid "Backup files" msgstr "" #: ../cleaners/vuze.xml ../cleaners/deepscan.xml msgid "Delete the backup files" msgstr "" #: ../cleaners/konqueror.xml ../cleaners/opera.xml ../cleaners/chromium.xml msgid "Current session" msgstr "" #: ../cleaners/konqueror.xml ../cleaners/opera.xml ../cleaners/chromium.xml msgid "Delete the current session" msgstr "" #: ../cleaners/konqueror.xml ../cleaners/opera.xml ../bleachbit/Cleaner.py:196 msgid "URL history" msgstr "" #: ../cleaners/microsoft_office.xml ../cleaners/libreoffice.xml #: ../bleachbit/Cleaner.py:317 msgid "Office suite" msgstr "" #: ../cleaners/windows_defender.xml ../cleaners/beagle.xml #: ../cleaners/thunderbird.xml ../cleaners/deepscan.xml #: ../bleachbit/Cleaner.py:188 msgid "Delete the files" msgstr "" #: ../cleaners/tremulous.xml msgid "Delete the list of game servers" msgstr "" #: ../cleaners/internet_explorer.xml ../cleaners/chromium.xml #: ../cleaners/google_chrome.xml ../bleachbit/Cleaner.py:192 msgid "Form history" msgstr "ئىزدىن" #: ../cleaners/internet_explorer.xml ../bleachbit/Cleaner.py:192 msgid "A history of forms entered in web sites and in the Search bar" msgstr "" #: ../cleaners/apt.xml msgid "Delete obsolete files" msgstr "" #: ../cleaners/xine.xml ../cleaners/miro.xml ../cleaners/flash.xml msgid "Multimedia viewer" msgstr "" #: ../cleaners/recoll.xml ../cleaners/beagle.xml msgid "Search tool" msgstr "" #: ../cleaners/recoll.xml ../cleaners/beagle.xml ../cleaners/thunderbird.xml msgid "Index" msgstr "ئىندىكىس" #: ../cleaners/recoll.xml msgid "" "Delete the search index, a database of words and the files they contain" msgstr "" #: ../cleaners/exaile.xml msgid "Downloaded podcasts" msgstr "" #: ../cleaners/exaile.xml msgid "Delete downloaded podcasts" msgstr "" #: ../cleaners/bash.xml msgid "Delete the command history" msgstr "" #. TRANSLATORS: DOM = Document Object Model. #: ../cleaners/opera.xml ../cleaners/chromium.xml #: ../cleaners/google_chrome.xml ../bleachbit/Cleaner.py:190 msgid "DOM Storage" msgstr "" #: ../cleaners/opera.xml ../cleaners/chromium.xml #: ../cleaners/google_chrome.xml ../bleachbit/Cleaner.py:190 msgid "Delete HTML5 cookies" msgstr "" #: ../cleaners/nautilus.xml msgid "Custom folders will be reset." msgstr "" #: ../cleaners/screenlets.xml msgid "Widgets for the desktop" msgstr "" #: ../cleaners/epiphany.xml ../cleaners/chromium.xml #: ../cleaners/google_chrome.xml ../cleaners/thunderbird.xml #: ../bleachbit/Cleaner.py:195 msgid "Passwords" msgstr "ئىم" #: ../cleaners/epiphany.xml ../cleaners/chromium.xml #: ../cleaners/google_chrome.xml ../cleaners/thunderbird.xml #: ../bleachbit/Cleaner.py:195 msgid "" "A database of usernames and passwords as well as a list of sites that should " "not store passwords" msgstr "" #: ../cleaners/epiphany.xml msgid "Places" msgstr "ئورۇن" #: ../cleaners/epiphany.xml msgid "" "A database of URLs including bookmarks, favicons, and a history of visited " "web sites" msgstr "" #: ../cleaners/epiphany.xml msgid "This option deletes all bookmarks." msgstr "" #: ../cleaners/elinks.xml msgid "Delete the cookies, visited URLs, and search history" msgstr "" #: ../cleaners/chromium.xml ../cleaners/google_chrome.xml msgid "A history of forms entered in web sites" msgstr "" #: ../cleaners/chromium.xml ../cleaners/google_chrome.xml msgid "" "Delete the history which includes visited sites, downloads, and thumbnails" msgstr "" #: ../cleaners/chromium.xml ../cleaners/google_chrome.xml msgid "Search engines" msgstr "ئىزدەش ماتورى" #. 'Factory' means a search engine that is installed by default 'from the factory,' but this is different than a 'default search engine' https://lists.launchpad.net/launchpad-translators/msg00283.html #: ../cleaners/chromium.xml ../cleaners/google_chrome.xml msgid "" "Reset the search engine usage history and delete non-factory search engines, " "some of which are added automatically" msgstr "" #: ../cleaners/google_chrome.xml msgid "Session" msgstr "ئەڭگىمە" #: ../cleaners/google_chrome.xml msgid "Delete the current and last sessions" msgstr "" #: ../cleaners/deepscan.xml msgid "Deep scan" msgstr "" #: ../cleaners/deepscan.xml msgid "Inspect the preview for any files you want to keep." msgstr "" #: ../cleaners/deepscan.xml msgid "This option is slow." msgstr "" #: ../bleachbit.desktop msgid "Unnecessary file cleaner" msgstr "" #: ../bleachbit.desktop msgid "Free space and maintain privacy" msgstr "" #. TRANSLATORS: Parts of this file will be deleted #: ../bleachbit/Action.py:203 ../bleachbit/Action.py:216 #: ../bleachbit/Action.py:228 ../bleachbit/Action.py:241 #: ../bleachbit/Action.py:253 ../bleachbit/Command.py:183 #: ../bleachbit/Command.py:213 msgid "Clean file" msgstr "" #. TRANSLATORS: this is the context menu #: ../bleachbit/Action.py:307 ../bleachbit/GUI.py:585 msgid "Clean" msgstr "" #: ../bleachbit/Cleaner.py:188 msgid "Crash reports" msgstr "" #: ../bleachbit/Cleaner.py:193 msgid "Session restore" msgstr "" #: ../bleachbit/Cleaner.py:193 msgid "Loads the initial session after the browser closes or crashes" msgstr "" #: ../bleachbit/Cleaner.py:194 msgid "Site preferences" msgstr "" #: ../bleachbit/Cleaner.py:194 msgid "Settings for individual sites" msgstr "" #. TRANSLATORS: desktop entries are .desktop files in Linux tha #. make up the application menu (the menu that shows BleachBit, #. Firefox, and others. The .desktop files also associate file #. types, so clicking on an .html file in Nautilus brings up #. Firefox. #. More information: http://standards.freedesktop.org/menu-spec/latest/index.html#introduction #: ../bleachbit/Cleaner.py:376 msgid "Broken desktop files" msgstr "" #: ../bleachbit/Cleaner.py:376 msgid "Delete broken application menu entries and file associations" msgstr "" #. TRANSLATORS: Localizations are files supporting specific #. languages, so applications appear in Spanish, etc. #: ../bleachbit/Cleaner.py:380 msgid "Localizations" msgstr "" #: ../bleachbit/Cleaner.py:380 msgid "Delete files for unwanted languages" msgstr "" #: ../bleachbit/Cleaner.py:381 msgid "Configure this option in the preferences." msgstr "" #. TRANSLATORS: 'Rotated logs' refers to old system log files. #. Linux systems often have a scheduled job to rotate the logs #. which means compress all except the newest log and then delete #. the oldest log. You could translate this 'old logs.' #: ../bleachbit/Cleaner.py:386 msgid "Rotated logs" msgstr "" #: ../bleachbit/Cleaner.py:386 msgid "Delete old system logs" msgstr "" #: ../bleachbit/Cleaner.py:388 msgid "Trash" msgstr "ئەخلەتخانا" #: ../bleachbit/Cleaner.py:388 msgid "Empty the trash" msgstr "" #: ../bleachbit/Cleaner.py:394 ../bleachbit/Cleaner.py:536 #: ../bleachbit/Worker.py:212 msgid "Memory" msgstr "ئەسلەك" #. TRANSLATORS: 'free' means 'unallocated' #: ../bleachbit/Cleaner.py:396 msgid "Wipe the swap and free memory" msgstr "" #: ../bleachbit/Cleaner.py:397 msgid "This option is experimental and may cause system problems." msgstr "" #: ../bleachbit/Cleaner.py:404 msgid "Memory dump" msgstr "ئەسلەك تۆكمىسى" #: ../bleachbit/Cleaner.py:404 msgid "Delete the file memory.dmp" msgstr "" #. TRANSLATORS: Prefetch is Microsoft Windows jargon. #: ../bleachbit/Cleaner.py:407 msgid "Prefetch" msgstr "" #: ../bleachbit/Cleaner.py:408 msgid "Recycle bin" msgstr "" #: ../bleachbit/Cleaner.py:408 msgid "Empty the recycle bin" msgstr "" #. TRANSLATORS: 'Update' is a noun, and 'Update uninstallers' is an option to delete #. the uninstallers for software updates. #: ../bleachbit/Cleaner.py:411 msgid "Update uninstallers" msgstr "" #: ../bleachbit/Cleaner.py:411 msgid "" "Delete uninstallers for Microsoft updates including hotfixes, service packs, " "and Internet Explorer updates" msgstr "" #: ../bleachbit/Cleaner.py:418 ../bleachbit/Cleaner.py:627 msgid "Clipboard" msgstr "چاپلاش تاختىسى" #: ../bleachbit/Cleaner.py:418 msgid "" "The desktop environment's clipboard used for copy and paste operations" msgstr "" #. TRANSLATORS: "Custom" is an option allowing the user to specify which files and folders will be erased. #: ../bleachbit/Cleaner.py:424 ../bleachbit/GuiPreferences.py:62 msgid "Custom" msgstr "ئىختىيارى" #: ../bleachbit/Cleaner.py:424 msgid "Delete user-specified files and folders" msgstr "" #. TRANSLATORS: 'free' means 'unallocated' #: ../bleachbit/Cleaner.py:426 msgid "Free disk space" msgstr "" #. TRANSLATORS: 'free' means 'unallocated' #: ../bleachbit/Cleaner.py:428 msgid "Overwrite free disk space to hide deleted files" msgstr "" #: ../bleachbit/Cleaner.py:429 msgid "This option is very slow." msgstr "" #: ../bleachbit/Cleaner.py:433 msgid "The system in general" msgstr "" #: ../bleachbit/Cleaner.py:439 ../bleachbit/Cleaner.py:712 msgid "System" msgstr "سىستېما" #. TRANSLATORS: 'Free' means 'unallocated.' #. %s expands to a path such as C:\ or /tmp/ #: ../bleachbit/Cleaner.py:636 ../bleachbit/Cleaner.py:739 #, python-format msgid "Overwrite free disk space %s" msgstr "" #. TRANSLATORS: %s expands to a drive letter such as C:\ or D:\ #: ../bleachbit/Cleaner.py:664 #, python-format msgid "Recycle bin %s" msgstr "" #: ../bleachbit/CLI.py:123 #, python-format msgid "not a valid cleaner: %s" msgstr "" #. TRANSLATORS: This is the command line usage. Don't translate #. %prog, but do translate usage, options, cleaner, and option. #. More information about the command line is here #. http://bleachbit.sourceforge.net/documentation/command-line #: ../bleachbit/CLI.py:150 msgid "usage: %prog [options] cleaner.option1 cleaner.option2" msgstr "" #: ../bleachbit/CLI.py:153 msgid "list cleaners" msgstr "" #: ../bleachbit/CLI.py:155 msgid "delete files and make other permanent changes" msgstr "" #. TRANSLATORS: this is a warning for using --delete which will go away one day #: ../bleachbit/CLI.py:158 msgid "depreciated alias for --clean" msgstr "" #: ../bleachbit/CLI.py:160 msgid "show system information" msgstr "" #: ../bleachbit/CLI.py:161 msgid "launch the graphical interface" msgstr "" #: ../bleachbit/CLI.py:163 msgid "do not prompt for administrator privileges" msgstr "" #: ../bleachbit/CLI.py:168 msgid "preview files to be deleted and other changes" msgstr "" #: ../bleachbit/CLI.py:170 msgid "use options set in the graphical interface" msgstr "" #: ../bleachbit/CLI.py:172 msgid "output version information and exit" msgstr "نەشر ئۇچۇرىنى كۆرسىتىپ ئاخىرلاشتۇرىدۇ" #: ../bleachbit/CLI.py:174 msgid "overwrite files to hide contents" msgstr "" #. TRANSLATORS: This is the label in the log indicating was #. skipped because it matches the whitelist #: ../bleachbit/Command.py:46 msgid "Skip" msgstr "ئۆتكۈزۈۋەت" #. TRANSLATORS: This is the label in the log indicating will be #. deleted (for previews) or was actually deleted #: ../bleachbit/Command.py:73 msgid "Delete" msgstr "ئۆچۈر" #. TRANSLATORS: The file will be deleted when the #. system reboots #: ../bleachbit/Command.py:93 msgid "Mark for deletion" msgstr "" #. TRANSLATORS: The file will be truncated to 0 bytes in length #: ../bleachbit/Command.py:250 msgid "Truncate" msgstr "قىسقارت" #: ../bleachbit/Command.py:289 msgid "Delete registry key" msgstr "" #: ../bleachbit/GuiBasic.py:113 msgid "Delete confirmation" msgstr "" #: ../bleachbit/GuiBasic.py:121 msgid "" "Are you sure you want to permanently delete files according to the selected " "operations? The actual files that will be deleted may have changed since " "you ran the preview." msgstr "" #: ../bleachbit/GuiBasic.py:123 msgid "Are you sure you want to permanently delete these files?" msgstr "" #: ../bleachbit/GuiBasic.py:159 #, python-format msgid "" "Because you are running as root, please manually open this link in a web " "browser:\n" "%s" msgstr "" #. TRANSLATORS: %s expands to bleachbit.sourceforge.net or similar #: ../bleachbit/GuiBasic.py:171 #, python-format msgid "Open web browser to %s?" msgstr "" #: ../bleachbit/GuiPreferences.py:55 ../bleachbit/GUI.py:637 msgid "Preferences" msgstr "مايىللىق" #: ../bleachbit/GuiPreferences.py:61 msgid "General" msgstr "ئادەتتىكى" #: ../bleachbit/GuiPreferences.py:63 msgid "Drives" msgstr "" #: ../bleachbit/GuiPreferences.py:65 msgid "Languages" msgstr "تىللار" #: ../bleachbit/GuiPreferences.py:66 msgid "Whitelist" msgstr "ئاق تىزىم" #: ../bleachbit/GuiPreferences.py:111 msgid "Check periodically for software updates via the Internet" msgstr "" #: ../bleachbit/GuiPreferences.py:114 msgid "" "If an update is found, you will be given the option to view information " "about it. Then, you may manually download and install the update." msgstr "" #: ../bleachbit/GuiPreferences.py:120 msgid "Check for new beta releases" msgstr "" #: ../bleachbit/GuiPreferences.py:127 msgid "Download and update cleaners from community (winapp2.ini)" msgstr "" #. TRANSLATORS: This means to hide cleaners which would do #. nothing. For example, if Firefox were never used on #. this system, this option would hide Firefox to simplify #. the list of cleaners. #: ../bleachbit/GuiPreferences.py:139 msgid "Hide irrelevant cleaners" msgstr "" #. TRANSLATORS: Overwriting is the same as shredding. It is a way #. to prevent recovery of the data. You could also translate #. 'Shred files to prevent recovery.' #: ../bleachbit/GuiPreferences.py:147 msgid "Overwrite files to hide contents" msgstr "" #: ../bleachbit/GuiPreferences.py:150 msgid "" "Overwriting is ineffective on some file systems and with certain BleachBit " "operations. Overwriting is significantly slower." msgstr "" #: ../bleachbit/GuiPreferences.py:153 msgid "Start BleachBit with computer" msgstr "" #: ../bleachbit/GuiPreferences.py:164 ../bleachbit/GuiPreferences.py:295 #: ../bleachbit/GuiPreferences.py:341 ../bleachbit/GUI.py:545 msgid "Choose a folder" msgstr "قىسقۇچ تاللاڭ" #. TRANSLATORS: 'free' means 'unallocated' #: ../bleachbit/GuiPreferences.py:189 msgid "" "Choose a writable folder for each drive for which to overwrite free space." msgstr "" #. TRANSLATORS: In the preferences dialog, this button adds a path to the list of paths #: ../bleachbit/GuiPreferences.py:210 msgctxt "button" msgid "Add" msgstr "قوش" #. TRANSLATORS: In the preferences dialog, this button removes a path from the list of paths #: ../bleachbit/GuiPreferences.py:213 ../bleachbit/GuiPreferences.py:433 msgctxt "button" msgid "Remove" msgstr "ئۆچۈر" #: ../bleachbit/GuiPreferences.py:238 msgid "All languages will be deleted except those checked." msgstr "" #: ../bleachbit/GuiPreferences.py:255 msgid "Preserve" msgstr "" #: ../bleachbit/GuiPreferences.py:259 msgid "Code" msgstr "كودى" #: ../bleachbit/GuiPreferences.py:263 ../bleachbit/GUI.py:136 msgid "Name" msgstr "ئاتى" #: ../bleachbit/GuiPreferences.py:281 ../bleachbit/GuiPreferences.py:327 msgid "Choose a file" msgstr "بىرھۆججەت تاللاڭ" #: ../bleachbit/GuiPreferences.py:288 ../bleachbit/GuiPreferences.py:334 #: ../bleachbit/GuiPreferences.py:381 msgid "File" msgstr "ھۆججەت" #: ../bleachbit/GuiPreferences.py:303 ../bleachbit/GuiPreferences.py:349 #: ../bleachbit/GuiPreferences.py:383 msgid "Folder" msgstr "قىسقۇچ" #. TRANSLATORS: "Paths" is used generically to refer to both files and folders #: ../bleachbit/GuiPreferences.py:391 msgid "Theses paths will not be deleted or modified." msgstr "" #: ../bleachbit/GuiPreferences.py:393 msgid "These locations can be selected for deletion." msgstr "" #: ../bleachbit/GuiPreferences.py:401 msgid "Type" msgstr "تىپى" #. TRANSLATORS: In the tree view "Path" is used generically to refer to a #. file, a folder, or a pattern describing either #: ../bleachbit/GuiPreferences.py:407 msgid "Path" msgstr "يول" #: ../bleachbit/GuiPreferences.py:419 msgctxt "button" msgid "Add file" msgstr "" #: ../bleachbit/GuiPreferences.py:426 msgctxt "button" msgid "Add folder" msgstr "" #: ../bleachbit/GUI.py:144 msgid "Active" msgstr "ئاكتىپ" #. TRANSLATORS: %(cleaner) may be Firefox, System, etc. #. %(option) may be cache, logs, cookies, etc. #. %(warning) may be 'This option is really slow' #: ../bleachbit/GUI.py:176 #, python-format msgid "" "Warning regarding %(cleaner)s - %(option)s:\n" "\n" "%(warning)s" msgstr "" #: ../bleachbit/GUI.py:346 msgid "You must select an operation" msgstr "" #: ../bleachbit/GUI.py:369 ../bleachbit/GUI.py:384 msgid "Done." msgstr "تامام." #: ../bleachbit/GUI.py:398 msgid "Program to clean unnecessary files" msgstr "" #: ../bleachbit/GUI.py:403 msgid "" "GNU General Public License version 3 or later.\n" "See http://www.gnu.org/licenses/gpl-3.0.txt" msgstr "" #. TRANSLATORS: Maintain the names of translators here. #. Launchpad does this automatically for translations #. typed in Launchpad. This is a special string shown #. in the 'About' box. #: ../bleachbit/GUI.py:409 msgid "translator-credits" msgstr "" "Launchpad Contributions:\n" " Gheyret T.Kenji https://launchpad.net/~gheyretkenji" #: ../bleachbit/GUI.py:422 msgid "System information" msgstr "" #: ../bleachbit/GUI.py:492 msgid "Choose files to shred" msgstr "" #: ../bleachbit/GUI.py:495 msgid "Choose folder to shred" msgstr "" #. TRANSLATORS: this is the context menu #: ../bleachbit/GUI.py:580 msgid "Preview" msgstr "ئالدىن كۆزەت" #: ../bleachbit/GUI.py:631 msgid "_Shred Files" msgstr "" #: ../bleachbit/GUI.py:632 msgid "Sh_red Folders" msgstr "" #: ../bleachbit/GUI.py:633 msgid "_Wipe Free Space" msgstr "" #: ../bleachbit/GUI.py:634 msgid "S_hred Settings and Quit" msgstr "" #: ../bleachbit/GUI.py:635 msgid "_Quit" msgstr "ئاخىرلاشتۇر(_Q)" #: ../bleachbit/GUI.py:636 msgid "_File" msgstr "ھۆججەت(_F)" #: ../bleachbit/GUI.py:638 msgid "_Edit" msgstr "تەھرىر(_E)" #: ../bleachbit/GUI.py:639 msgid "Help Contents" msgstr "ياردەملەر" #: ../bleachbit/GUI.py:641 msgid "_Release Notes" msgstr "" #: ../bleachbit/GUI.py:643 msgid "_System Information" msgstr "" #: ../bleachbit/GUI.py:644 msgid "_About" msgstr "ھەققىدە(_A)" #: ../bleachbit/GUI.py:645 msgid "_Help" msgstr "ياردەم(_H)" #. TRANSLATORS: This is the preview button on the main window. It previews changes. #: ../bleachbit/GUI.py:669 msgctxt "button" msgid "Preview" msgstr "ئالدىن كۆزەت" #: ../bleachbit/GUI.py:672 msgid "Preview files in the selected operations (without deleting any files)" msgstr "" #. TRANSLATORS: This is the clean button on the main window. #. It makes permanent changes: usually deleting files, sometimes altering them. #: ../bleachbit/GUI.py:680 msgctxt "button" msgid "Clean" msgstr "پاكىزلا" #: ../bleachbit/GUI.py:683 msgid "Clean files in the selected operations" msgstr "" #: ../bleachbit/GUI.py:769 msgid "Error when checking for updates: " msgstr "" #: ../bleachbit/GUI.py:800 msgid "" "Error loading the SQLite module: the antivirus software may be blocking it." msgstr "" #: ../bleachbit/RecognizeCleanerML.py:62 msgid "Security warning" msgstr "" #. TRANSLATORS: Cleaner definitions are XML data files that define #. which files will be cleaned. #: ../bleachbit/RecognizeCleanerML.py:74 msgid "" "These cleaner definitions are new or have changed. Malicious definitions can " "damage your system. If you do not trust these changes, delete the files or " "quit." msgstr "" #. TRANSLATORS: This is the column label (header) in the tree view for the security dialog #: ../bleachbit/RecognizeCleanerML.py:87 msgctxt "column_label" msgid "Delete" msgstr "ئۆچۈر" #. TRANSLATORS: This is the column label (header) in the tree view for the security dialog #: ../bleachbit/RecognizeCleanerML.py:90 msgctxt "column_label" msgid "Filename" msgstr "ھۆججەت ئاتى" #: ../bleachbit/Unix.py:366 ../bleachbit/Unix.py:396 ../bleachbit/Unix.py:576 #, python-format msgid "Executable not found: %s" msgstr "" #. TRANSLATORS: %s expands to a name such as 'Firefox' or 'System'. #: ../bleachbit/Unix.py:573 ../bleachbit/Worker.py:136 #, python-format msgid "" "%s cannot be cleaned because it is currently running. Close it, and try " "again." msgstr "" #: ../bleachbit/Update.py:73 msgid "New winapp2.ini was downloaded." msgstr "" #: ../bleachbit/Update.py:111 msgid "Update BleachBit" msgstr "" #: ../bleachbit/Update.py:116 msgid "A new version is available." msgstr "" #. TRANSLATORS: %s expands to version such as '0.8.4' or '0.8.5beta' or similar #: ../bleachbit/Update.py:124 #, python-format msgid "Update to version %s" msgstr "" #. TRANSLATORS: This is cleaner name for cleaners imported from winapp2.ini #: ../bleachbit/Winapp.py:48 msgid "Applications" msgstr "پروگراممىلار" #. TRANSLATORS: This is cleaner name for cleaners imported from winapp2.ini #: ../bleachbit/Winapp.py:50 msgid "Internet" msgstr "ئىنتېرنېت" #. TRANSLATORS: This is cleaner name for cleaners imported from winapp2.ini #: ../bleachbit/Winapp.py:52 msgid "Multimedia" msgstr "كۆپ ۋاسىتە" #. TRANSLATORS: This is cleaner name for cleaners imported from winapp2.ini #: ../bleachbit/Winapp.py:54 msgid "Utilities" msgstr "قوراللار" #: ../bleachbit/Winapp.py:68 msgid "Games" msgstr "ئويۇنلار" #: ../bleachbit/Winapp.py:99 msgid "Imported from winapp2.ini" msgstr "" #. TRANSLATORS: This indicates an error. The special keyword #. %(operation)s will be replaced by 'firefox' or 'opera' or #. some other cleaner ID. The special keyword %(msg)s will be #. replaced by a message such as 'Permission denied.' #: ../bleachbit/Worker.py:76 #, python-format msgid "Exception while running operation '%(operation)s': '%(msg)s'" msgstr "" #. TRANSLATORS: 'free' means 'unallocated' #: ../bleachbit/Worker.py:210 msgid "Please wait. Wiping free disk space." msgstr "" #. TRANSLATORS: %s is replaced with Firefox, System, etc. #: ../bleachbit/Worker.py:212 ../bleachbit/Worker.py:299 #, python-format msgid "Please wait. Cleaning %s." msgstr "" #: ../bleachbit/Worker.py:222 #, python-format msgid "About %d minute remaining." msgid_plural "About %d minutes remaining." msgstr[0] "" msgstr[1] "" #. TRANSLATORS: This refers to disk space that was #. really recovered (in other words, not a preview) #: ../bleachbit/Worker.py:237 #, python-format msgid "Disk space recovered: %s" msgstr "" #. TRANSLATORS: This refers to a preview (no real #. changes were made yet) #: ../bleachbit/Worker.py:241 #, python-format msgid "Disk space to be recovered: %s" msgstr "" #. TRANSLATORS: This refers to the number of files really #. deleted (in other words, not a preview). #: ../bleachbit/Worker.py:246 #, python-format msgid "Files deleted: %d" msgstr "" #. TRANSLATORS: This refers to the number of files that #. would be deleted (in other words, simply a preview). #: ../bleachbit/Worker.py:250 #, python-format msgid "Files to be deleted: %d" msgstr "" #: ../bleachbit/Worker.py:253 #, python-format msgid "Special operations: %d" msgstr "" #: ../bleachbit/Worker.py:256 #, python-format msgid "Errors: %d" msgstr "" #. TRANSLATORS: The "deep scan" feature searches over broad #. areas of the file system such as the user's whole home directory #. or all the system executables. #: ../bleachbit/Worker.py:272 msgid "Please wait. Running deep scan." msgstr "" #. TRANSLATORS: %s is replaced with Firefox, System, etc. #: ../bleachbit/Worker.py:302 #, python-format msgid "Please wait. Previewing %s." msgstr "" bleachbit-2.0/po/lt.po0000644000175000017500000012640213245436307013003 0ustar hlehle# Lithuanian translation for bleachbit # Copyright (c) 2010 Rosetta Contributors and Canonical Ltd 2010 # This file is distributed under the same license as the bleachbit package. # FIRST AUTHOR , 2010. # Algimantas Margevičius , 2012. # msgid "" msgstr "" "Project-Id-Version: bleachbit\n" "Report-Msgid-Bugs-To: FULL NAME \n" "POT-Creation-Date: 2015-03-15 15:49-0600\n" "PO-Revision-Date: 2015-08-28 10:58+0000\n" "Last-Translator: Moo \n" "Language-Team: Lietuvių <>\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=3; plural=n%10==1 && n%100!=11 ? 0 : n%10>=2 && " "(n%100<10 || n%100>=20) ? 1 : 2;\n" "X-Launchpad-Export-Date: 2015-08-28 19:56+0000\n" "X-Generator: Launchpad (build 17690)\n" #: ../cleaners/mc.xml ../cleaners/tortoisesvn.xml ../cleaners/vim.xml #: ../cleaners/safari.xml ../cleaners/links2.xml ../cleaners/seamonkey.xml #: ../cleaners/realplayer.xml ../cleaners/windows_defender.xml #: ../cleaners/d4x.xml ../cleaners/sqlite3.xml #: ../cleaners/internet_explorer.xml ../cleaners/libreoffice.xml #: ../cleaners/easytag.xml ../cleaners/bash.xml ../cleaners/nautilus.xml #: ../cleaners/octave.xml ../cleaners/elinks.xml ../cleaners/chromium.xml #: ../cleaners/google_chrome.xml msgid "History" msgstr "Istorija" #: ../cleaners/mc.xml ../cleaners/tortoisesvn.xml ../cleaners/links2.xml #: ../cleaners/realplayer.xml ../cleaners/d4x.xml ../cleaners/libreoffice.xml #: ../cleaners/easytag.xml ../cleaners/nautilus.xml ../cleaners/gnome.xml #: ../bleachbit/Cleaner.py:348 ../bleachbit/Cleaner.py:422 #: ../bleachbit/Cleaner.py:431 msgid "Delete the usage history" msgstr "Išvalyti naudojimo istoriją" #: ../cleaners/gpodder.xml ../cleaners/hippo_opensim_viewer.xml #: ../cleaners/thumbnails.xml ../cleaners/safari.xml ../cleaners/emesene.xml #: ../cleaners/liferea.xml ../cleaners/seamonkey.xml ../cleaners/vuze.xml #: ../cleaners/yahoo_messenger.xml ../cleaners/pidgin.xml #: ../cleaners/adobe_reader.xml ../cleaners/evolution.xml #: ../cleaners/tremulous.xml ../cleaners/libreoffice.xml ../cleaners/xine.xml #: ../cleaners/nexuiz.xml ../cleaners/exaile.xml ../cleaners/opera.xml #: ../cleaners/amsn.xml ../cleaners/gftp.xml ../cleaners/miro.xml #: ../cleaners/beagle.xml ../cleaners/kde.xml ../cleaners/epiphany.xml #: ../cleaners/flash.xml ../cleaners/secondlife_viewer.xml #: ../cleaners/java.xml ../cleaners/chromium.xml ../cleaners/audacious.xml #: ../cleaners/rhythmbox.xml ../cleaners/google_chrome.xml #: ../cleaners/thunderbird.xml ../bleachbit/Cleaner.py:191 #: ../bleachbit/Cleaner.py:369 ../bleachbit/Cleaner.py:454 msgid "Cache" msgstr "Podėlis" #: ../cleaners/gpodder.xml ../cleaners/yum.xml #: ../cleaners/hippo_opensim_viewer.xml ../cleaners/thumbnails.xml #: ../cleaners/windows_explorer.xml ../cleaners/liferea.xml #: ../cleaners/vuze.xml ../cleaners/yahoo_messenger.xml ../cleaners/pidgin.xml #: ../cleaners/adobe_reader.xml ../cleaners/evolution.xml #: ../cleaners/libreoffice.xml ../cleaners/apt.xml ../cleaners/xine.xml #: ../cleaners/nexuiz.xml ../cleaners/exaile.xml ../cleaners/amsn.xml #: ../cleaners/gftp.xml ../cleaners/miro.xml ../cleaners/beagle.xml #: ../cleaners/kde.xml ../cleaners/flash.xml ../cleaners/secondlife_viewer.xml #: ../cleaners/java.xml ../cleaners/audacious.xml ../cleaners/rhythmbox.xml #: ../bleachbit/Cleaner.py:369 ../bleachbit/Cleaner.py:454 #: ../bleachbit/Cleaner.py:488 ../bleachbit/Cleaner.py:490 msgid "Delete the cache" msgstr "Išvalyti podėlį" #. TRANSLATORS: Vacuum is a verb. The term is jargon #. from the SQLite database. Microsoft Access uses #. the term 'Compact Database' (which you may translate #. instead). Another synonym is 'defragment.' #: ../cleaners/gpodder.xml ../cleaners/yum.xml ../cleaners/safari.xml #: ../cleaners/liferea.xml ../cleaners/chromium.xml #: ../cleaners/google_chrome.xml ../cleaners/thunderbird.xml #: ../bleachbit/Action.py:335 ../bleachbit/Cleaner.py:211 #: ../bleachbit/Cleaner.py:359 msgid "Vacuum" msgstr "Suspausti" #: ../cleaners/gpodder.xml ../cleaners/yum.xml ../cleaners/safari.xml #: ../cleaners/liferea.xml ../cleaners/chromium.xml #: ../cleaners/google_chrome.xml ../cleaners/thunderbird.xml #: ../bleachbit/Cleaner.py:212 msgid "" "Clean database fragmentation to reduce space and improve speed without " "removing any data" msgstr "" "Defragmentuoti duomenų bazę, taip sumažinant jos užimamą vietą ir pagerinant " "greitaveiką, nepašalinant jokių duomenų" #: ../cleaners/yum.xml ../cleaners/apt.xml msgid "Package manager" msgstr "Paketų tvarkytuvė" #: ../cleaners/warzone2100.xml ../cleaners/hippo_opensim_viewer.xml #: ../cleaners/gl-117.xml ../cleaners/tremulous.xml ../cleaners/nexuiz.xml #: ../cleaners/secondlife_viewer.xml msgid "Game" msgstr "Žaidimas" #: ../cleaners/warzone2100.xml ../cleaners/hippo_opensim_viewer.xml #: ../cleaners/teamviewer.xml ../cleaners/realplayer.xml ../cleaners/vuze.xml #: ../cleaners/yahoo_messenger.xml ../cleaners/amule.xml #: ../cleaners/easytag.xml ../cleaners/exaile.xml ../cleaners/screenlets.xml #: ../cleaners/gftp.xml ../cleaners/miro.xml ../cleaners/audacious.xml #: ../bleachbit/Cleaner.py:485 msgid "Logs" msgstr "Žurnalai" #: ../cleaners/warzone2100.xml ../cleaners/hippo_opensim_viewer.xml #: ../cleaners/teamviewer.xml ../cleaners/realplayer.xml ../cleaners/vuze.xml #: ../cleaners/yahoo_messenger.xml ../cleaners/amule.xml #: ../cleaners/exaile.xml ../cleaners/screenlets.xml ../cleaners/gftp.xml #: ../cleaners/miro.xml ../cleaners/audacious.xml ../bleachbit/Cleaner.py:485 msgid "Delete the logs" msgstr "Ištrinti žurnalų failus" #: ../cleaners/thumbnails.xml ../cleaners/windows_explorer.xml msgid "Thumbnails" msgstr "Miniatiūros" #: ../cleaners/thumbnails.xml msgid "Icons for files on the system" msgstr "Sistemoje esančių failų piktogramos" #: ../cleaners/vim.xml ../cleaners/gedit.xml msgid "Editor" msgstr "Redaktorius" #: ../cleaners/vim.xml msgid "" "Delete ~/.viminfo which includes file history, command history, and buffers" msgstr "" "Ištrinti ~/.viminfo kuriame yra failų istorija, komandų istorija ir buferiai" #: ../cleaners/filezilla.xml ../cleaners/transmission.xml ../cleaners/vuze.xml #: ../cleaners/amule.xml ../cleaners/gftp.xml msgid "File transfer client" msgstr "Failų perdavimo klientas" #: ../cleaners/filezilla.xml ../cleaners/paint.xml #: ../cleaners/windows_media_player.xml ../cleaners/windows_explorer.xml #: ../cleaners/teamviewer.xml ../cleaners/microsoft_office.xml #: ../cleaners/vlc.xml ../cleaners/adobe_reader.xml ../cleaners/winamp.xml #: ../cleaners/winzip.xml ../cleaners/winrar.xml ../cleaners/audacious.xml #: ../cleaners/wordpad.xml ../bleachbit/Cleaner.py:370 msgid "Most recently used" msgstr "Vėliausiai naudoti" #: ../cleaners/filezilla.xml ../cleaners/windows_explorer.xml #: ../cleaners/gwenview.xml ../cleaners/adobe_reader.xml ../cleaners/gedit.xml #: ../cleaners/kde.xml ../cleaners/audacious.xml ../bleachbit/Cleaner.py:371 #: ../bleachbit/Cleaner.py:468 msgid "Delete the list of recently used documents" msgstr "Ištrinti vėliausiai naudotų dokumentų sąrašą" #: ../cleaners/skype.xml ../cleaners/xchat.xml ../cleaners/emesene.xml #: ../cleaners/seamonkey.xml ../cleaners/yahoo_messenger.xml #: ../cleaners/pidgin.xml ../cleaners/amsn.xml msgid "Chat logs" msgstr "Pokalbių žurnalai" #: ../cleaners/skype.xml ../cleaners/xchat.xml ../cleaners/emesene.xml #: ../cleaners/seamonkey.xml ../cleaners/yahoo_messenger.xml #: ../cleaners/pidgin.xml ../cleaners/amsn.xml msgid "Delete the chat logs" msgstr "Ištrinti pokalbių žurnalus" #: ../cleaners/skype.xml msgid "Installers" msgstr "Diegimo programos" #: ../cleaners/skype.xml msgid "Delete cached patches and installers" msgstr "" #: ../cleaners/xchat.xml ../cleaners/emesene.xml #: ../cleaners/yahoo_messenger.xml ../cleaners/pidgin.xml ../cleaners/amsn.xml msgid "Chat client" msgstr "Pokalbių klientas" #: ../cleaners/safari.xml ../cleaners/links2.xml ../cleaners/seamonkey.xml #: ../cleaners/konqueror.xml ../cleaners/internet_explorer.xml #: ../cleaners/opera.xml ../cleaners/epiphany.xml ../cleaners/elinks.xml #: ../cleaners/chromium.xml ../cleaners/google_chrome.xml #: ../bleachbit/Cleaner.py:224 msgid "Web browser" msgstr "Žiniatinklio naršyklė" #: ../cleaners/safari.xml ../cleaners/seamonkey.xml ../cleaners/opera.xml #: ../cleaners/epiphany.xml ../cleaners/chromium.xml #: ../cleaners/google_chrome.xml ../cleaners/thunderbird.xml #: ../bleachbit/Cleaner.py:192 msgid "Delete the web cache, which reduces time to display revisited pages" msgstr "" "Ištrinti tinklo podėlį, taip pagreitės paskutinių aplankytų puslapių rodymas" #: ../cleaners/safari.xml ../cleaners/liferea.xml ../cleaners/seamonkey.xml #: ../cleaners/realplayer.xml ../cleaners/konqueror.xml #: ../cleaners/internet_explorer.xml ../cleaners/opera.xml #: ../cleaners/epiphany.xml ../cleaners/flash.xml ../cleaners/silverlight.xml #: ../cleaners/chromium.xml ../cleaners/google_chrome.xml #: ../cleaners/thunderbird.xml ../bleachbit/Cleaner.py:193 msgid "Cookies" msgstr "Slapukai" #: ../cleaners/safari.xml ../cleaners/liferea.xml ../cleaners/seamonkey.xml #: ../cleaners/realplayer.xml ../cleaners/konqueror.xml #: ../cleaners/internet_explorer.xml ../cleaners/opera.xml #: ../cleaners/epiphany.xml ../cleaners/flash.xml ../cleaners/silverlight.xml #: ../cleaners/chromium.xml ../cleaners/google_chrome.xml #: ../cleaners/thunderbird.xml ../bleachbit/Cleaner.py:194 msgid "" "Delete cookies, which contain information such as web site preferences, " "authentication, and tracking identification" msgstr "" "Išvalyti slapukus, kuriuose gali būti saugoma tokia informacija kaip " "tinklalapio nustatymai, prisijungimo duomenys ir sekimo informacija" #: ../cleaners/safari.xml ../cleaners/konqueror.xml #: ../cleaners/internet_explorer.xml ../cleaners/opera.xml #: ../bleachbit/Cleaner.py:210 msgid "List of visited web pages" msgstr "Peržiūrėtų interneto puslapių sąrašas" #. Torrent software can block a list of IP addresses, such as those that may belong to malware or anti-piracy organizations #: ../cleaners/transmission.xml msgid "Blocklists" msgstr "" #: ../cleaners/transmission.xml ../cleaners/windows_defender.xml #: ../cleaners/beagle.xml ../cleaners/thunderbird.xml ../cleaners/deepscan.xml #: ../bleachbit/Cleaner.py:196 msgid "Delete the files" msgstr "Ištrinti failus" #: ../cleaners/transmission.xml msgid "Blocklists will need update to work." msgstr "" #: ../cleaners/transmission.xml msgid "Torrents" msgstr "Torentai" #: ../cleaners/transmission.xml msgid "Delete the torrents (just the metadata but not the files described)" msgstr "" #: ../cleaners/paint.xml ../cleaners/windows_media_player.xml #: ../cleaners/windows_explorer.xml ../cleaners/teamviewer.xml #: ../cleaners/microsoft_office.xml ../cleaners/vlc.xml ../cleaners/winamp.xml #: ../cleaners/winzip.xml ../cleaners/winrar.xml ../cleaners/wordpad.xml msgid "Delete the most recently used list" msgstr "Ištrinti paskutinių naudotų sąrašą" #: ../cleaners/emesene.xml msgid "Delete the avatars and emoticons cache" msgstr "Ištrinti avatarus ir jaustukų podėlį" #: ../cleaners/windows_media_player.xml ../cleaners/realplayer.xml #: ../cleaners/vlc.xml ../cleaners/winamp.xml msgid "Media player" msgstr "Medija grotuvas" #: ../cleaners/windows_explorer.xml ../cleaners/nautilus.xml msgid "File manager" msgstr "Failų tvarkytuvė" #: ../cleaners/windows_explorer.xml ../cleaners/gwenview.xml #: ../cleaners/gedit.xml ../cleaners/kde.xml ../bleachbit/Cleaner.py:467 msgid "Recent documents list" msgstr "Vėliausiai naudotų dokumentų sąrašas" #. In Windows 'Run' is the dialog in the Start menu #. In GNOME 'Run' is the dialog shown when typing ALT+F2' #: ../cleaners/windows_explorer.xml ../cleaners/gnome.xml msgid "Run" msgstr "Vykdyti" #: ../cleaners/windows_explorer.xml ../cleaners/opera.xml #: ../cleaners/gnome.xml ../cleaners/google_toolbar.xml msgid "Search history" msgstr "Paieškų istorija" #: ../cleaners/windows_explorer.xml ../cleaners/opera.xml #: ../cleaners/gnome.xml ../cleaners/google_toolbar.xml msgid "Delete the search history" msgstr "Išvalyti paieškos istoriją" #: ../cleaners/gl-117.xml ../cleaners/microsoft_office.xml #: ../cleaners/beagle.xml ../cleaners/secondlife_viewer.xml #: ../cleaners/x11.xml msgid "Debug logs" msgstr "Derinimo žurnalai" #: ../cleaners/gl-117.xml ../cleaners/microsoft_office.xml #: ../cleaners/easytag.xml ../cleaners/beagle.xml #: ../cleaners/secondlife_viewer.xml ../cleaners/x11.xml msgid "Delete the debug logs" msgstr "Ištrinti derinimo žurnalus" #: ../cleaners/google_earth.xml ../cleaners/winetricks.xml #: ../cleaners/vuze.xml ../cleaners/adobe_reader.xml ../cleaners/amule.xml #: ../cleaners/wine.xml ../cleaners/internet_explorer.xml ../cleaners/gimp.xml #: ../cleaners/kde.xml ../cleaners/deepscan.xml ../bleachbit/Cleaner.py:519 msgid "Temporary files" msgstr "Laikinieji failai" #: ../cleaners/google_earth.xml ../cleaners/winetricks.xml #: ../cleaners/vuze.xml ../cleaners/adobe_reader.xml ../cleaners/amule.xml #: ../cleaners/wine.xml ../cleaners/internet_explorer.xml ../cleaners/gimp.xml #: ../cleaners/kde.xml ../cleaners/deepscan.xml ../bleachbit/Cleaner.py:519 msgid "Delete the temporary files" msgstr "Ištrinti laikinuosius failus" #: ../cleaners/seamonkey.xml ../cleaners/opera.xml ../bleachbit/Cleaner.py:200 msgid "Download history" msgstr "Parsiuntimo istorija" #: ../cleaners/seamonkey.xml ../cleaners/opera.xml ../bleachbit/Cleaner.py:200 msgid "List of files downloaded" msgstr "Parsiųstų failų sąrašas" #: ../cleaners/seamonkey.xml msgid "Delete the list of visited web pages" msgstr "Ištrinti aplankytų puslapių sąrašą" #: ../cleaners/vuze.xml ../cleaners/deepscan.xml ../bleachbit/Cleaner.py:189 msgid "Backup files" msgstr "Atsarginės kopijos" #: ../cleaners/vuze.xml ../cleaners/deepscan.xml ../bleachbit/Cleaner.py:190 msgid "Delete the backup files" msgstr "Ištrinti atsarginės kopijos failus" #: ../cleaners/konqueror.xml ../cleaners/opera.xml ../cleaners/chromium.xml msgid "Current session" msgstr "Dabartinė sesija" #: ../cleaners/konqueror.xml ../cleaners/opera.xml ../cleaners/chromium.xml msgid "Delete the current session" msgstr "Išvalyti dabartinę sesiją" #: ../cleaners/konqueror.xml ../cleaners/opera.xml ../bleachbit/Cleaner.py:210 msgid "URL history" msgstr "URL istorija" #: ../cleaners/microsoft_office.xml ../cleaners/libreoffice.xml #: ../bleachbit/Cleaner.py:383 msgid "Office suite" msgstr "Biuro paketas" #: ../cleaners/adobe_reader.xml msgid "Document viewer" msgstr "Dokumentų žiūryklė" #: ../cleaners/evolution.xml ../cleaners/thunderbird.xml msgid "Email client" msgstr "El. pašto klientas" #: ../cleaners/tremulous.xml msgid "Delete the list of game servers" msgstr "Ištrinti žaidimų serverių sąrašą" #: ../cleaners/sqlite3.xml ../cleaners/bash.xml ../cleaners/octave.xml msgid "Delete the command history" msgstr "Ištrinti komandų istoriją" #: ../cleaners/wine.xml msgid "Compatibility layer for Windows software" msgstr "" #: ../cleaners/internet_explorer.xml ../cleaners/chromium.xml #: ../cleaners/google_chrome.xml ../bleachbit/Cleaner.py:201 msgid "Form history" msgstr "Formų istorija" #: ../cleaners/internet_explorer.xml ../bleachbit/Cleaner.py:202 msgid "A history of forms entered in web sites and in the Search bar" msgstr "Istorija to kas buvo įvesta tinklalapių formose ir paieškos juostoje" #. This software edits metadata tags, such as title and artist, in audio files #: ../cleaners/easytag.xml msgid "Audio files tagger" msgstr "" #: ../cleaners/apt.xml msgid "Delete obsolete files" msgstr "Ištrinti senus failus" #: ../cleaners/apt.xml msgid "Package lists" msgstr "Paketų sąrašai" #: ../cleaners/xine.xml ../cleaners/miro.xml ../cleaners/flash.xml msgid "Multimedia viewer" msgstr "Multimedijos žiūryklė" #: ../cleaners/recoll.xml ../cleaners/beagle.xml msgid "Search tool" msgstr "Paieškos įrankis" #: ../cleaners/recoll.xml ../cleaners/beagle.xml ../cleaners/thunderbird.xml msgid "Index" msgstr "Indeksas" #: ../cleaners/recoll.xml msgid "" "Delete the search index, a database of words and the files they contain" msgstr "" "Ištrinti paieškos indeksą, žodžių duomenų bazę ir failus esančius juose" #: ../cleaners/exaile.xml msgid "Downloaded podcasts" msgstr "Parsiųsti „podcast“" #: ../cleaners/exaile.xml msgid "Delete downloaded podcasts" msgstr "Ištrinti parsiųstus „podcast“" #: ../cleaners/bash.xml msgid "Shell" msgstr "Apvalkalas" #. TRANSLATORS: DOM = Document Object Model. #: ../cleaners/opera.xml ../cleaners/chromium.xml #: ../cleaners/google_chrome.xml ../bleachbit/Cleaner.py:198 msgid "DOM Storage" msgstr "DOM saugykla" #: ../cleaners/opera.xml ../cleaners/chromium.xml #: ../cleaners/google_chrome.xml ../bleachbit/Cleaner.py:198 msgid "Delete HTML5 cookies" msgstr "Išvalyti HTML5 slapukus" #: ../cleaners/opera.xml ../cleaners/epiphany.xml ../cleaners/chromium.xml #: ../cleaners/google_chrome.xml ../cleaners/thunderbird.xml #: ../bleachbit/Cleaner.py:207 msgid "Passwords" msgstr "Slaptažodžiai" #: ../cleaners/opera.xml ../cleaners/epiphany.xml ../cleaners/chromium.xml #: ../cleaners/google_chrome.xml ../cleaners/thunderbird.xml #: ../bleachbit/Cleaner.py:208 msgid "" "A database of usernames and passwords as well as a list of sites that should " "not store passwords" msgstr "" "Naudotojų vardų ir slaptažodžių duomenų bazė, taipogi tinklapių kurie " "neturėtų saugoti slaptažodžių sąrašas" #: ../cleaners/opera.xml ../cleaners/epiphany.xml ../cleaners/chromium.xml #: ../cleaners/google_chrome.xml ../cleaners/thunderbird.xml msgid "This option will delete your saved passwords." msgstr "Ši parinktis ištrins jūsų įrašytus slaptažodžius." #: ../cleaners/nautilus.xml msgid "Custom folders will be reset." msgstr "Pasirinktiniai aplankai bus atstatyti." #: ../cleaners/screenlets.xml msgid "Widgets for the desktop" msgstr "Darbastalio valdikliai" #: ../cleaners/kde.xml msgid "This option may be incompatible with kdesudo" msgstr "Ši parinktis gali būti nesuderinama su kdesudo" #: ../cleaners/epiphany.xml msgid "Places" msgstr "Vietos" #: ../cleaners/epiphany.xml msgid "" "A database of URLs including bookmarks, favicons, and a history of visited " "web sites" msgstr "" "URL duomenų bazė, įskaitant žymeles, favicons ir aplankytų puslapių istoriją" #: ../cleaners/epiphany.xml msgid "This option deletes all bookmarks." msgstr "Ši parinktis išvalo visas žymeles." #: ../cleaners/elinks.xml msgid "Delete the cookies, visited URLs, and search history" msgstr "Išvalyti slapukus, aplankytus URL ir paieškos istoriją" #: ../cleaners/chromium.xml ../cleaners/google_chrome.xml msgid "A history of forms entered in web sites" msgstr "Istorija to kas buvo įvesta tinklalapių formose" #: ../cleaners/chromium.xml ../cleaners/google_chrome.xml msgid "" "Delete the history which includes visited sites, downloads, and thumbnails" msgstr "" "Ištrinti istoriją į kurią įeina aplankyti puslapiai, parsiuntimai ir " "miniatiūros" #: ../cleaners/chromium.xml ../cleaners/google_chrome.xml msgid "Search engines" msgstr "Paieškos variliai" #. 'Factory' means a search engine that is installed by default 'from the factory,' but this is different than a 'default search engine' https://lists.launchpad.net/launchpad-translators/msg00283.html #: ../cleaners/chromium.xml ../cleaners/google_chrome.xml msgid "" "Reset the search engine usage history and delete non-factory search engines, " "some of which are added automatically" msgstr "" "Atstatyti paieškos variklių naudojimo istoriją ir ištrinti „negamyklinius“ " "paieškos variklius, kai kurie iš jų buvo pridėti automatiškai" #: ../cleaners/audacious.xml msgid "Audio player" msgstr "Garso grotuvas" #: ../cleaners/google_chrome.xml msgid "Session" msgstr "Sesija" #: ../cleaners/google_chrome.xml msgid "Delete the current and last sessions" msgstr "Ištrinti dabartinę ir paskutinę sesijas" #: ../cleaners/x11.xml msgid "Windowing system" msgstr "" #: ../cleaners/wordpad.xml msgid "Word processor" msgstr "Tekstų rengyklė" #: ../cleaners/deepscan.xml msgid "Deep scan" msgstr "Išplėstinis skanavimas" #: ../cleaners/deepscan.xml msgid "Inspect the preview for any files you want to keep." msgstr "Peržiūrėkite peržiūrą ir įsitikinkite jog ten nėra reikalingų failų." #: ../cleaners/deepscan.xml msgid "This option is slow." msgstr "Ši parinktis lėta." #: ../bleachbit.desktop msgid "Unnecessary file cleaner" msgstr "Nereikalingų failų šalinimas" #: ../bleachbit.desktop msgid "Free space and maintain privacy" msgstr "" "Atlaisvinkite vietą bei apsaugokite privatumą pašalindami nereikalingus " "failus ir duomenis" #. TRANSLATORS: Parts of this file will be deleted #: ../bleachbit/Action.py:192 ../bleachbit/Action.py:205 #: ../bleachbit/Action.py:218 ../bleachbit/Action.py:231 #: ../bleachbit/Action.py:244 ../bleachbit/Command.py:181 #: ../bleachbit/Command.py:211 msgid "Clean file" msgstr "Išvalyti failą" #. TRANSLATORS: this is the context menu #: ../bleachbit/Action.py:308 ../bleachbit/GUI.py:578 msgid "Clean" msgstr "Išvalyti" #: ../bleachbit/Cleaner.py:196 msgid "Crash reports" msgstr "Pranešimai apie lūžius" #: ../bleachbit/Cleaner.py:203 msgid "Session restore" msgstr "Sesijos atstatymas" #: ../bleachbit/Cleaner.py:204 msgid "Loads the initial session after the browser closes or crashes" msgstr "Užlūžus ar užvėrus naršyklę įkelia pradinę sesiją" #: ../bleachbit/Cleaner.py:206 msgid "Site preferences" msgstr "Tinklapio nustatymai" #: ../bleachbit/Cleaner.py:206 msgid "Settings for individual sites" msgstr "Nustatymai kiekvienam tinklapiui atskirai" #. TRANSLATORS: desktop entries are .desktop files in Linux tha #. make up the application menu (the menu that shows BleachBit, #. Firefox, and others. The .desktop files also associate file #. types, so clicking on an .html file in Nautilus brings up #. Firefox. #. More information: #. http://standards.freedesktop.org/menu-spec/latest/index.html#introduction #: ../bleachbit/Cleaner.py:452 msgid "Broken desktop files" msgstr "Neveikiantys darbastalio failai" #: ../bleachbit/Cleaner.py:453 msgid "Delete broken application menu entries and file associations" msgstr "Ištrinti neveikiančius meniu įrašus ir failų susiejimus" #. TRANSLATORS: Localizations are files supporting specific #. languages, so applications appear in Spanish, etc. #: ../bleachbit/Cleaner.py:457 msgid "Localizations" msgstr "Lokalizacijos" #: ../bleachbit/Cleaner.py:458 msgid "Delete files for unwanted languages" msgstr "Ištrinti nepageidaujamų kalbų failus" #: ../bleachbit/Cleaner.py:460 msgid "Configure this option in the preferences." msgstr "Sukonfigūruokite šią parinkty nustatymuose." #: ../bleachbit/Cleaner.py:466 msgid "Rotated logs" msgstr "Seni žurnalai" #: ../bleachbit/Cleaner.py:466 msgid "Delete old system logs" msgstr "Ištrinti senus sistemos žurnalus" #: ../bleachbit/Cleaner.py:469 msgid "Trash" msgstr "Šiukšlinė" #: ../bleachbit/Cleaner.py:469 msgid "Empty the trash" msgstr "Ištuštinti šiukšliadėžę" #: ../bleachbit/Cleaner.py:475 ../bleachbit/Cleaner.py:629 #: ../bleachbit/Worker.py:169 msgid "Memory" msgstr "Atmintis" #. TRANSLATORS: 'free' means 'unallocated' #: ../bleachbit/Cleaner.py:477 msgid "Wipe the swap and free memory" msgstr "Išvalyti mainų srity ir laisvą vietą" #: ../bleachbit/Cleaner.py:479 msgid "This option is experimental and may cause system problems." msgstr "Ši parinktis yra eksperimentinė ir gali sukelti bėdų." #: ../bleachbit/Cleaner.py:487 msgid "Memory dump" msgstr "Atminties išklotinė" #: ../bleachbit/Cleaner.py:487 msgid "Delete the file memory.dmp" msgstr "Ištrinti failą memory.dmp" #. TRANSLATORS: Prefetch is Microsoft Windows jargon. #: ../bleachbit/Cleaner.py:490 msgid "Prefetch" msgstr "Išankstinis paėmimas" #: ../bleachbit/Cleaner.py:492 msgid "Recycle bin" msgstr "Šiukšlinė" #: ../bleachbit/Cleaner.py:492 msgid "Empty the recycle bin" msgstr "Ištuštinti šiukšlinę" #. TRANSLATORS: 'Update' is a noun, and 'Update uninstallers' is an option to delete #. the uninstallers for software updates. #: ../bleachbit/Cleaner.py:495 msgid "Update uninstallers" msgstr "Atnaujinimų šalinimo programos" #: ../bleachbit/Cleaner.py:496 msgid "" "Delete uninstallers for Microsoft updates including hotfixes, service packs, " "and Internet Explorer updates" msgstr "" "Ištrinti Microsoft atnaujinimų(įskaitant hotfixes, service pack, internet " "explorer atnaujinimus) šalinimo programas" #: ../bleachbit/Cleaner.py:503 ../bleachbit/Cleaner.py:718 msgid "Clipboard" msgstr "Iškarpinė" #: ../bleachbit/Cleaner.py:504 msgid "" "The desktop environment's clipboard used for copy and paste operations" msgstr "" "Darbastalio aplinkos iškarpinė, naudojama kopijavimo ir įklijavimo veiksmams" #. TRANSLATORS: "Custom" is an option allowing the user to specify which #. files and folders will be erased. #: ../bleachbit/Cleaner.py:511 ../bleachbit/GuiPreferences.py:63 msgid "Custom" msgstr "Pasirinktinis" #: ../bleachbit/Cleaner.py:512 msgid "Delete user-specified files and folders" msgstr "Pašalinti naudotojo pasirinktus failus ir aplankus" #. TRANSLATORS: 'free' means 'unallocated' #: ../bleachbit/Cleaner.py:514 msgid "Free disk space" msgstr "Laisva disko vieta" #. TRANSLATORS: 'free' means 'unallocated' #: ../bleachbit/Cleaner.py:516 msgid "Overwrite free disk space to hide deleted files" msgstr "Perrašyti laisvą disko vietą, taip paslepiant ištrintus failus" #: ../bleachbit/Cleaner.py:517 msgid "This option is very slow." msgstr "Ši parinktis labai lėta" #: ../bleachbit/Cleaner.py:522 msgid "The system in general" msgstr "Sistema bendrąja prasme" #: ../bleachbit/Cleaner.py:528 ../bleachbit/Cleaner.py:824 msgid "System" msgstr "Sistema" #. TRANSLATORS: 'Free' means 'unallocated.' #. %s expands to a path such as C:\ or /tmp/ #: ../bleachbit/Cleaner.py:726 ../bleachbit/Cleaner.py:855 #, python-format msgid "Overwrite free disk space %s" msgstr "Perrašyti laisvą disko vietą %s" #. TRANSLATORS: %s expands to a drive letter such as C:\ or D:\ #: ../bleachbit/Cleaner.py:753 #, python-format msgid "Recycle bin %s" msgstr "%s šiukšliadėžė" #: ../bleachbit/CLI.py:107 #, python-format msgid "not a valid cleaner: %s" msgstr "netinkamas valytojas: %s" #. TRANSLATORS: This is the command line usage. Don't translate #. %prog, but do translate usage, options, cleaner, and option. #. More information about the command line is here #. http://bleachbit.sourceforge.net/documentation/command-line #: ../bleachbit/CLI.py:134 msgid "usage: %prog [options] cleaner.option1 cleaner.option2" msgstr "" "naudojimas: %prog [parinktys] valytojo.parinktis1 valytojo.parinktis2" #: ../bleachbit/CLI.py:137 msgid "list cleaners" msgstr "parodyti valytojų sąrašą" #. TRANSLATORS: predefined cleaners are for applications, such as Firefox and Flash. #. This is different than cleaning an arbitrary file, such as a #. spreadsheet on the desktop. #: ../bleachbit/CLI.py:142 msgid "run cleaners to delete files and make other permanent changes" msgstr "" #: ../bleachbit/CLI.py:144 msgid "shred specific files or folders" msgstr "" #: ../bleachbit/CLI.py:146 msgid "show system information" msgstr "rodyti sistemos informaciją" #: ../bleachbit/CLI.py:148 msgid "launch the graphical interface" msgstr "paleisti grafinę sąsają" #: ../bleachbit/CLI.py:150 msgid "do not prompt for administrator privileges" msgstr "neprašyti administratoriaus prieigos" #: ../bleachbit/CLI.py:155 msgid "preview files to be deleted and other changes" msgstr "peržiūrėti failus kurie bus ištrinti ir kitus pakeitimus" #: ../bleachbit/CLI.py:157 msgid "use options set in the graphical interface" msgstr "naudoti parinktis nustatytas grafinėje sąsajoje" #: ../bleachbit/CLI.py:160 msgid "update winapp2.ini, if a new version is available" msgstr "atnaujinti winapp2.ini, jei yra prieinama nauja versija" #: ../bleachbit/CLI.py:162 msgid "output version information and exit" msgstr "parodyti programos versijos informaciją ir baigti darbą" #: ../bleachbit/CLI.py:164 msgid "overwrite files to hide contents" msgstr "perrašyti failus, taip paslepiant jų turinį" #. TRANSLATORS: This is the label in the log indicating was #. skipped because it matches the whitelist #: ../bleachbit/Command.py:44 msgid "Skip" msgstr "Praleistas" #. TRANSLATORS: This is the label in the log indicating will be #. deleted (for previews) or was actually deleted #: ../bleachbit/Command.py:70 msgid "Delete" msgstr "Pašalintas" #. TRANSLATORS: The file will be deleted when the #. system reboots #: ../bleachbit/Command.py:91 msgid "Mark for deletion" msgstr "Pažymėti trynimui" #. TRANSLATORS: The file will be truncated to 0 bytes in length #: ../bleachbit/Command.py:247 msgid "Truncate" msgstr "Sutrumpinti" #: ../bleachbit/Command.py:286 msgid "Delete registry key" msgstr "Ištrinti registro raktą" #: ../bleachbit/GuiBasic.py:112 msgid "Delete confirmation" msgstr "Šalinimo patvirtinimas" #: ../bleachbit/GuiBasic.py:122 msgid "" "Are you sure you want to permanently delete files according to the selected " "operations? The actual files that will be deleted may have changed since " "you ran the preview." msgstr "" "Ar tikrai norite visam laikui ištrinti šiuos failus, kuriuos parinko " "pasirinktos operacijos? Tikri failai galėjo pasikeisti nuo jūsų peržiūros." #: ../bleachbit/GuiBasic.py:125 msgid "Are you sure you want to permanently delete these files?" msgstr "Ar tikrai norite visam laikui ištrinti šiuos failus?" #: ../bleachbit/GuiBasic.py:162 #, python-format msgid "" "Because you are running as root, please manually open this link in a web " "browser:\n" "%s" msgstr "" "Jūs paleidote programą kaip root, prašome naršyklėje, rankiniu būdu, atverti " "šią nuorodą:\n" "%s" #. TRANSLATORS: %s expands to bleachbit.sourceforge.net or similar #: ../bleachbit/GuiBasic.py:174 #, python-format msgid "Open web browser to %s?" msgstr "Atverti naršyklę ir atidaryti %s?" #: ../bleachbit/GuiPreferences.py:55 ../bleachbit/GUI.py:633 msgid "Preferences" msgstr "Nustatymai" #: ../bleachbit/GuiPreferences.py:61 msgid "General" msgstr "Bendra" #: ../bleachbit/GuiPreferences.py:64 msgid "Drives" msgstr "Diskai" #: ../bleachbit/GuiPreferences.py:67 msgid "Languages" msgstr "Kalbos" #: ../bleachbit/GuiPreferences.py:69 msgid "Whitelist" msgstr "Baltasis sąrašas" #: ../bleachbit/GuiPreferences.py:114 msgid "Check periodically for software updates via the Internet" msgstr "Periodiškai internete tikrinti ar nėra atnaujinimų" #: ../bleachbit/GuiPreferences.py:119 msgid "" "If an update is found, you will be given the option to view information " "about it. Then, you may manually download and install the update." msgstr "" "Jei bus rastas atnaujinimas, jums bus pateikta informacija apie jį. Tada " "rankiniu būdu galėsite parsiųsti ir įdiegti jį." #: ../bleachbit/GuiPreferences.py:125 msgid "Check for new beta releases" msgstr "Tikrinti ar nėra naujų beta versijų" #: ../bleachbit/GuiPreferences.py:134 msgid "Download and update cleaners from community (winapp2.ini)" msgstr "Parsisiųsti ir atnaujinti bendruomenės „valytojus“ (winapp2.ini)" #. TRANSLATORS: This means to hide cleaners which would do #. nothing. For example, if Firefox were never used on #. this system, this option would hide Firefox to simplify #. the list of cleaners. #: ../bleachbit/GuiPreferences.py:148 msgid "Hide irrelevant cleaners" msgstr "" #. TRANSLATORS: Overwriting is the same as shredding. It is a way #. to prevent recovery of the data. You could also translate #. 'Shred files to prevent recovery.' #: ../bleachbit/GuiPreferences.py:156 msgid "Overwrite files to hide contents" msgstr "Perrašyti failus, taip paslepiant turinį" #: ../bleachbit/GuiPreferences.py:160 msgid "" "Overwriting is ineffective on some file systems and with certain BleachBit " "operations. Overwriting is significantly slower." msgstr "" "Kai kuriose failų sistemose BleachBit perrašymas yra neveiksmingas. " "Perrašymas yra nepalyginamai lėtesnis." #: ../bleachbit/GuiPreferences.py:163 msgid "Start BleachBit with computer" msgstr "Paleisti BleachBit kartu su kompiuteriu" #: ../bleachbit/GuiPreferences.py:169 msgid "Exit after cleaning" msgstr "" #: ../bleachbit/GuiPreferences.py:175 msgid "Confirm before delete" msgstr "" #: ../bleachbit/GuiPreferences.py:188 ../bleachbit/GuiPreferences.py:319 #: ../bleachbit/GuiPreferences.py:360 ../bleachbit/GUI.py:540 msgid "Choose a folder" msgstr "Pasirinkite aplanką" #: ../bleachbit/GuiPreferences.py:212 msgid "" "Choose a writable folder for each drive for which to overwrite free space." msgstr "" "Pasirinkite įrašomą aplanką kiekvienam diskui kuriame norėsite perrašyti " "laisvą vietą." #. TRANSLATORS: In the preferences dialog, this button adds a path to #. the list of paths #: ../bleachbit/GuiPreferences.py:234 msgctxt "button" msgid "Add" msgstr "Pridėti" #. TRANSLATORS: In the preferences dialog, this button removes a path #. from the list of paths #: ../bleachbit/GuiPreferences.py:238 ../bleachbit/GuiPreferences.py:451 msgctxt "button" msgid "Remove" msgstr "Pašalinti" #: ../bleachbit/GuiPreferences.py:263 msgid "All languages will be deleted except those checked." msgstr "Visos kalbos, išskyrus pasirinktas, bus ištrintos." #: ../bleachbit/GuiPreferences.py:281 msgid "Preserve" msgstr "Išlaikyti" #: ../bleachbit/GuiPreferences.py:285 msgid "Code" msgstr "Kodas" #: ../bleachbit/GuiPreferences.py:289 ../bleachbit/GUI.py:130 msgid "Name" msgstr "Vardas" #: ../bleachbit/GuiPreferences.py:306 ../bleachbit/GuiPreferences.py:347 msgid "Choose a file" msgstr "Pasirinkite failą" #: ../bleachbit/GuiPreferences.py:313 ../bleachbit/GuiPreferences.py:354 #: ../bleachbit/GuiPreferences.py:398 msgid "File" msgstr "Failas" #: ../bleachbit/GuiPreferences.py:327 ../bleachbit/GuiPreferences.py:368 #: ../bleachbit/GuiPreferences.py:400 msgid "Folder" msgstr "Aplankas" #: ../bleachbit/GuiPreferences.py:410 msgid "Theses paths will not be deleted or modified." msgstr "Šie keliai nebus išvalyti ar pakeisti." #: ../bleachbit/GuiPreferences.py:413 msgid "These locations can be selected for deletion." msgstr "Šios vietos gali būti pasirinktos šalinimui" #: ../bleachbit/GuiPreferences.py:421 msgid "Type" msgstr "Tipas" #. TRANSLATORS: In the tree view "Path" is used generically to refer to a #. file, a folder, or a pattern describing either #: ../bleachbit/GuiPreferences.py:427 msgid "Path" msgstr "Kelias" #: ../bleachbit/GuiPreferences.py:439 msgctxt "button" msgid "Add file" msgstr "Pridėti failą" #: ../bleachbit/GuiPreferences.py:445 msgctxt "button" msgid "Add folder" msgstr "Pridėti aplanką" #: ../bleachbit/GUI.py:138 msgid "Active" msgstr "Įjungta" #. TRANSLATORS: %(cleaner) may be Firefox, System, etc. #. %(option) may be cache, logs, cookies, etc. #. %(warning) may be 'This option is really slow' #: ../bleachbit/GUI.py:169 #, python-format msgid "" "Warning regarding %(cleaner)s - %(option)s:\n" "\n" "%(warning)s" msgstr "" "Įspėjimas susijęs su %(cleaner)s - %(option)s:\n" "\n" "%(warning)s" #: ../bleachbit/GUI.py:336 msgid "You must select an operation" msgstr "Turite pasirinkti užduotį" #: ../bleachbit/GUI.py:357 ../bleachbit/GUI.py:379 msgid "Done." msgstr "Atlikta." #: ../bleachbit/GUI.py:392 msgid "Program to clean unnecessary files" msgstr "Programa skirta šalinti nereikalingus failus" #: ../bleachbit/GUI.py:398 msgid "" "GNU General Public License version 3 or later.\n" "See http://www.gnu.org/licenses/gpl-3.0.txt" msgstr "" "GNU General Public License version 3 ar naujesnė.\n" "Pažiūrėkite http://www.gnu.org/licenses/gpl-3.0.txt" #. TRANSLATORS: Maintain the names of translators here. #. Launchpad does this automatically for translations #. typed in Launchpad. This is a special string shown #. in the 'About' box. #: ../bleachbit/GUI.py:404 msgid "translator-credits" msgstr "" "Launchpad Contributions:\n" " Algimantas Margevičius https://launchpad.net/~gymka\n" " Liudas Ališauskas https://launchpad.net/~liudas-alisauskas\n" " Mantas Kriaučiūnas https://launchpad.net/~mantas\n" " Moo https://launchpad.net/~mooo" #: ../bleachbit/GUI.py:416 msgid "System information" msgstr "Sistemos informacija" #: ../bleachbit/GUI.py:489 msgid "Choose files to shred" msgstr "Pasirinkite failus naikinimui" #: ../bleachbit/GUI.py:492 msgid "Choose folder to shred" msgstr "Pasirinkite aplanką naikinimui" #. TRANSLATORS: this is the context menu #: ../bleachbit/GUI.py:573 msgid "Preview" msgstr "Peržiūra" #: ../bleachbit/GUI.py:621 msgid "_Shred Files" msgstr "Su_naikinti failus" #: ../bleachbit/GUI.py:623 msgid "Sh_red Folders" msgstr "S_unaikinti aplankus" #: ../bleachbit/GUI.py:625 msgid "_Wipe Free Space" msgstr "_Išvalyti laisvą vietą" #: ../bleachbit/GUI.py:627 msgid "S_hred Settings and Quit" msgstr "_Sunaikinti nustatymus ir išeiti" #: ../bleachbit/GUI.py:629 msgid "_Quit" msgstr "I_šeiti" #: ../bleachbit/GUI.py:631 msgid "_File" msgstr "_Failas" #: ../bleachbit/GUI.py:634 msgid "_Edit" msgstr "K_eisti" #: ../bleachbit/GUI.py:635 msgid "Help Contents" msgstr "Žinyno turinys" #: ../bleachbit/GUI.py:638 msgid "_Release Notes" msgstr "_Laidos informacija" #: ../bleachbit/GUI.py:641 msgid "_System Information" msgstr "_Sistemos informacija" #: ../bleachbit/GUI.py:644 msgid "_About" msgstr "_Apie" #: ../bleachbit/GUI.py:645 msgid "_Help" msgstr "_Žinynas" #: ../bleachbit/GUI.py:670 msgctxt "button" msgid "Preview" msgstr "Peržiūra" #: ../bleachbit/GUI.py:675 msgid "Preview files in the selected operations (without deleting any files)" msgstr "Peržiūrėti pasirinktų operacijų failus (netrinant jokių failų)" #: ../bleachbit/GUI.py:685 msgctxt "button" msgid "Clean" msgstr "Išvalyti" #: ../bleachbit/GUI.py:689 msgid "Clean files in the selected operations" msgstr "Išvalyti failus pasirinktose operacijose" #: ../bleachbit/GUI.py:779 msgid "Error when checking for updates: " msgstr "Klaida ieškant atnaujinimų: " #: ../bleachbit/GUI.py:809 msgid "" "Error loading the SQLite module: the antivirus software may be blocking it." msgstr "" "Klaida įkraunant SQLite modulį: gali būti jog jį blokuoja antivirusinė." #: ../bleachbit/GUI.py:812 msgid "" "You are running BleachBit with administrative privileges for cleaning shared " "parts of the system, and references to the user profile folder will clean " "only the root account." msgstr "" #: ../bleachbit/RecognizeCleanerML.py:57 msgid "Security warning" msgstr "Saugumo įspėjimas" #: ../bleachbit/RecognizeCleanerML.py:70 msgid "" "These cleaner definitions are new or have changed. Malicious definitions can " "damage your system. If you do not trust these changes, delete the files or " "quit." msgstr "" "Šie valytojo aprašymai yra nauji arba pasikeitė. Netinkami aprašymai gali " "sugadinti jūsų sistemą. Jei nepasitikite šiais pakeitimais, ištrinkite " "failus arba išeikite." #: ../bleachbit/RecognizeCleanerML.py:85 msgctxt "column_label" msgid "Delete" msgstr "Ištrinti" #: ../bleachbit/RecognizeCleanerML.py:90 msgctxt "column_label" msgid "Filename" msgstr "Failo vardas" #: ../bleachbit/Unix.py:383 ../bleachbit/Unix.py:413 ../bleachbit/Unix.py:603 #, python-format msgid "Executable not found: %s" msgstr "Vykdomasis failas nerastas: %s" #. TRANSLATORS: %s expands to a name such as 'Firefox' or 'System'. #: ../bleachbit/Unix.py:600 ../bleachbit/Worker.py:128 #, python-format msgid "" "%s cannot be cleaned because it is currently running. Close it, and try " "again." msgstr "" "%s negali būti išvalytas, nes jis šiuo metu naudojamas. Užverkite jį ir " "pabandykite dar kartą." #: ../bleachbit/Update.py:76 msgid "New winapp2.ini was downloaded." msgstr "Buvo parsiųstas naujas winapp2.ini." #: ../bleachbit/Update.py:121 msgid "Update BleachBit" msgstr "Atnaujinti BleachBit" #: ../bleachbit/Update.py:126 msgid "A new version is available." msgstr "Prieinama nauja versija." #. TRANSLATORS: %s expands to version such as '0.8.4' or '0.8.5beta' or #. similar #: ../bleachbit/Update.py:135 #, python-format msgid "Update to version %s" msgstr "Atnaujinti iki %s versijos" #. TRANSLATORS: This is cleaner name for cleaners imported from winapp2.ini #: ../bleachbit/Winapp.py:44 msgid "Applications" msgstr "Programos" #. TRANSLATORS: This is cleaner name for cleaners imported #. from winapp2.ini #: ../bleachbit/Winapp.py:47 msgid "Internet" msgstr "Internetas" #. TRANSLATORS: This is cleaner name for cleaners imported #. from winapp2.ini #: ../bleachbit/Winapp.py:50 msgid "Multimedia" msgstr "Daugialypė terpė" #. TRANSLATORS: This is cleaner name for cleaners imported #. from winapp2.ini #: ../bleachbit/Winapp.py:53 msgid "Utilities" msgstr "Reikmenys" #: ../bleachbit/Winapp.py:68 msgid "Games" msgstr "Žaidimai" #: ../bleachbit/Winapp.py:155 msgid "Imported from winapp2.ini" msgstr "Importuota iš winapp2.ini" #. TRANSLATORS: This indicates an error. The special keyword #. %(operation)s will be replaced by 'firefox' or 'opera' or #. some other cleaner ID. The special keyword %(msg)s will be #. replaced by a message such as 'Permission denied.' #: ../bleachbit/Worker.py:71 #, python-format msgid "Exception while running operation '%(operation)s': '%(msg)s'" msgstr "Išimtis vykdant operaciją '%(operation)s': '%(msg)s'" #. TRANSLATORS: 'free' means 'unallocated' #: ../bleachbit/Worker.py:167 msgid "Please wait. Wiping free disk space." msgstr "Palaukite. Valoma laisva disko vieta." #. TRANSLATORS: %s is replaced with Firefox, System, etc. #: ../bleachbit/Worker.py:169 ../bleachbit/Worker.py:308 #, python-format msgid "Please wait. Cleaning %s." msgstr "Palaukite. Valoma %s." #: ../bleachbit/Worker.py:184 msgid "Please wait. Wiping file system metadata." msgstr "Prašome palaukti. Išbraukiami failų sistemos metaduomenys." #: ../bleachbit/Worker.py:187 msgid "Please wait. Cleaning up after wiping file system metadata." msgstr "Prašome palaukti. Išvaloma po failų sistemos metaduomenų išbraukymo." #: ../bleachbit/Worker.py:190 #, python-format msgid "About %d minute remaining." msgid_plural "About %d minutes remaining." msgstr[0] "Liko %d minutė." msgstr[1] "Liko %d minutės." msgstr[2] "Liko %d minučių." #. TRANSLATORS: This refers to disk space that was #. really recovered (in other words, not a preview) #: ../bleachbit/Worker.py:247 #, python-format msgid "Disk space recovered: %s" msgstr "Atstatyta disko vieta: %s" #. TRANSLATORS: This refers to a preview (no real #. changes were made yet) #: ../bleachbit/Worker.py:251 #, python-format msgid "Disk space to be recovered: %s" msgstr "Bus atstatyta disko vietos: %s" #. TRANSLATORS: This refers to the number of files really #. deleted (in other words, not a preview). #: ../bleachbit/Worker.py:256 #, python-format msgid "Files deleted: %d" msgstr "Ištrinta failų: %d" #. TRANSLATORS: This refers to the number of files that #. would be deleted (in other words, simply a preview). #: ../bleachbit/Worker.py:260 #, python-format msgid "Files to be deleted: %d" msgstr "Bus ištrinta failų: %d" #: ../bleachbit/Worker.py:263 #, python-format msgid "Special operations: %d" msgstr "Specialios operacijos: %d" #: ../bleachbit/Worker.py:266 #, python-format msgid "Errors: %d" msgstr "Klaidų: %d" #. TRANSLATORS: The "deep scan" feature searches over broad #. areas of the file system such as the user's whole home directory #. or all the system executables. #: ../bleachbit/Worker.py:281 msgid "Please wait. Running deep scan." msgstr "Palaukite. Vykdomas išplėstinis skanavimas." #. TRANSLATORS: %s is replaced with Firefox, System, etc. #: ../bleachbit/Worker.py:311 #, python-format msgid "Please wait. Previewing %s." msgstr "Palaukite. Peržiūrima %s." bleachbit-2.0/bleachbit.appdata.xml0000644000175000017500000000234513245436307015455 0ustar hlehle bleachbit.desktop CC0-1.0 GPL-3.0 BleachBit Cleans files to free disk space and to maintain privacy

BleachBit quickly frees disk space and tirelessly guards your privacy. Free cache, delete cookies, clear Internet history, shred temporary files, delete logs, and discard junk you didn't know was there. It wipes clean a thousand applications including Firefox, Adobe Flash, Google Chrome, Opera, and more.

Beyond simply deleting files, BleachBit includes advanced features such as shredding files to prevent recovery, wiping free disk space to hide traces of files deleted by other applications, and vacuuming Firefox to make it faster.

http://lh5.ggpht.com/_1XYQfEGGEIw/SsN7hSH0IVI/AAAAAAAACfw/BltI_Fvhgzo/s800/BleachBit-065-Fedora-11-Google-Chrome.png https://www.bleachbit.org/ andrew@bleachbit.org
bleachbit-2.0/org.bleachbit.policy0000644000175000017500000000130513245436307015324 0ustar hlehle Authentication is required to run Bleachbit bleachbit auth_admin auth_admin auth_admin /usr/bin/bleachbit true bleachbit-2.0/bleachbit.png0000644000175000017500000000433113245436307014025 0ustar hlehlePNG  IHDR00` PLTELiqLLL """E<%0 FFFLMOCCCJJJmYnnnVVVLLLCCC ]eS;;;;\\\OOOUz  VWb šKKKHHHJJJWRXWiUUUHHHWfVVVĠĠmɧݝ՟ԓ줤xwx{{|ٳ6 7ŢHӷб׽4в'ک[[[cD|CX^^^2QXXX@L%ijm[݉u ..zQă6ܻCHh̳=IнhԸ8̴E$rY{窢nOoqڹO y77bbbK͐ʱe*]##ѫǦZg>2nCqqħZVVp:%&odT[9tRNSlG>"N bYv;Bk52D4?`D8@E챺C{CUIDATx^lWl'NbH i2133Pffo7>O;̛N_,\\ϻCxosSSϋVnVzb/}Y3yF(n ;Z^ִqƫ'7j N7 kvf%'!gؗX~OXccBRzzuKomA,F#q&`!ŜTE>CCdPU,b Description of the application bleachbit-2.0/doc/cleaner_markup_language.xsd0000644000175000017500000002013013245436307017515 0ustar hlehle bleachbit-2.0/tests/0000755000175000017500000000000013245436310012535 5ustar hlehlebleachbit-2.0/tests/TestAction.py0000644000175000017500000003464213245436307015203 0ustar hlehle# vim: ts=4:sw=4:expandtab # coding=utf-8 # BleachBit # Copyright (C) 2008-2018 Andrew Ziem # https://www.bleachbit.org # # This program is free software: you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by # the Free Software Foundation, either version 3 of the License, or # (at your option) any later version. # # This program is distributed in the hope that it will be useful, # but WITHOUT ANY WARRANTY; without even the implied warranty of # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the # GNU General Public License for more details. # # You should have received a copy of the GNU General Public License # along with this program. If not, see . """ Test cases for module Action """ from __future__ import absolute_import, print_function from bleachbit.Action import * from bleachbit import FSE, expanduser, expandvars from tests import common import shutil import sys import tempfile import unittest from xml.dom.minidom import parseString def _action_str_to_commands(action_str): """Parse and return commands""" dom = parseString(action_str) action_node = dom.childNodes[0] delete = Delete(action_node) for cmd in delete.get_commands(): yield cmd def _action_str_to_results(action_str): """Parse and return list of results It lists the files, but it does not really delete them. """ return [cmd.execute(False).next() for cmd in _action_str_to_commands(action_str)] def benchmark_filter(this_filter): """Measure how fast listing files is with and without filter""" n_files = 100000 print('benchmark of %d files' % n_files) # make a directory with many files dirname = tempfile.mkdtemp(prefix='bleachbit-action-bench') for x in range(0, n_files): common.touch_file(os.path.join(dirname, str(x))) # scan directory import time start = time.time() filter_code = '' if 'regex' == this_filter: # This regex matches everything, so the "no filter" and regex # are comparable filter_code = 'regex="."' action_str = u'' % \ (dirname, filter_code) results = _action_str_to_results(action_str) end = time.time() elapsed_seconds = end - start rate = n_files / elapsed_seconds print('filter %s: elapsed: %.2f seconds, %.2f files/second' % (this_filter, elapsed_seconds, rate)) # clean up shutil.rmtree(dirname) return rate def dir_is_empty(dirname): """Check whether a directory is empty""" return not os.listdir(dirname) class ActionTestCase(common.BleachbitTestCase): """Test cases for Action""" def _test_action_str(self, action_str): """Parse and test it""" dom = parseString(action_str) action_node = dom.childNodes[0] command = action_node.getAttribute('command') filename = action_node.getAttribute('path') search = action_node.getAttribute('search') provider = None for actionplugin in ActionProvider.plugins: if actionplugin.action_key == command: provider = actionplugin(action_node) self.assertNotEqual(provider, None) for cmd in provider.get_commands(): self.assertIsInstance(cmd, (Command.Delete, Command.Ini, Command.Json, Command.Function)) if 'process' != command: # process does not have a filename self.assertLExists(filename) # preview result = cmd.execute(really_delete=False).next() common.validate_result(self, result) self.assertNotEqual('/', result['path']) # delete ret = cmd.execute(really_delete=True).next() if 'delete' == command: self.assertNotLExists(cmd.path) elif 'truncate' == command: self.assertLExists(filename) os.remove(filename) self.assertNotLExists(filename) elif command in 'process': pass elif command in ('ini', 'json'): self.assertLExists(filename) else: raise RuntimeError("Unknown command '%s'" % command) if 'walk.all' == search: self.assertTrue(dir_is_empty(filename), 'directory not empty after walk.all: %s' % filename) def test_delete(self): """Unit test for class Delete""" paths = [u'~'] if 'nt' == os.name: # Python 2.6 and later supports %foo% paths.append(u'%USERPROFILE%') # Python 2.5 and later supports $foo paths.append(u'${USERPROFILE}') paths.append(u'$USERPROFILE') if 'posix' == os.name: paths.append(u'$HOME') for path in paths: for mode in ('delete', 'truncate', 'delete_forward'): expanded = expanduser(expandvars(path)) filename = self.mkstemp(dir=expanded, prefix='bleachbit-action-delete') command = mode if 'delete_forward' == mode: # forward slash needs to be normalized on Windows if 'nt' == os.name: command = 'delete' filename = filename.replace('\\', '/') else: # test not needed on this OS os.remove(filename) continue action_str = u'' % \ (command, filename) self._test_action_str(action_str) self.assertNotExists(filename) def test_delete_special_filenames(self): """Unit test for deleting special filenames""" tests = [ 'normal', 'space in name', 'sigil$should-not-be-expanded', ] for test in tests: pathname = self.write_file(test) action_str = u'' % pathname self._test_action_str(action_str) self.assertNotExists(pathname) def test_ini(self): """Unit test for class Ini""" from tests.TestFileUtilities import test_ini_helper def execute_ini(path, section, parameter): effective_parameter = "" if parameter is not None: effective_parameter = 'parameter="%s"' % parameter action_str = u'' \ % (path, section, effective_parameter) self._test_action_str(action_str) test_ini_helper(self, execute_ini) def test_json(self): """Unit test for class Json""" from tests.TestFileUtilities import test_json_helper def execute_json(path, address): action_str = u'' \ % (path, address) self._test_action_str(action_str) test_json_helper(self, execute_json) def test_process(self): """Unit test for process action""" cmds = {'nt': 'cmd.exe /c dir', 'posix': 'dir'} tests = [u'', u'', u'', u'', u'' ] for test in tests: self._test_action_str(test % cmds[os.name]) def test_regex(self): """Unit test for regex option""" _iglob = glob.iglob glob.iglob = lambda x: ['/tmp/foo1', '/tmp/foo2', '/tmp/bar1'] _getsize = FileUtilities.getsize FileUtilities.getsize = lambda x: 1 # should match three files using no regexes action_str = u'' results = _action_str_to_results(action_str) self.assertEqual(len(results), 3) # should match second file using positive regex action_str = u'' results = _action_str_to_results(action_str) self.assertEqual(len(results), 1) self.assertEqual(results[0]['path'], '/tmp/foo2') # On Windows should be case insensitive action_str = u'' results = _action_str_to_results(action_str) if 'nt' == os.name: self.assertEqual(len(results), 1) self.assertEqual(results[0]['path'], '/tmp/foo2') else: self.assertEqual(len(results), 0) # should match second file using negative regex action_str = u'' results = _action_str_to_results(action_str) self.assertEqual(len(results), 1) self.assertEqual(results[0]['path'], '/tmp/foo2') # should match second file using both regexes action_str = u'' results = _action_str_to_results(action_str) self.assertEqual(len(results), 1) self.assertEqual(results[0]['path'], '/tmp/foo2') # should match nothing using positive regex action_str = u'' results = _action_str_to_results(action_str) self.assertEqual(len(results), 0) # should match nothing using negative regex action_str = u'' results = _action_str_to_results(action_str) self.assertEqual(len(results), 0) # should give an error action_str = u'' self.assertRaises(RuntimeError, lambda: _action_str_to_results(action_str)) # clean up glob.iglob = _iglob FileUtilities.getsize = _getsize def test_wholeregex(self): """Unit test for wholeregex filter""" _iglob = glob.iglob glob.iglob = lambda x: ['/tmp/foo1', '/tmp/foo2', '/tmp/bar1'] _getsize = FileUtilities.getsize FileUtilities.getsize = lambda x: 1 # should match three files using no regexes action_str = u'' results = _action_str_to_results(action_str) self.assertEqual(len(results), 3) # should match two files using wholeregex action_str = u'' results = _action_str_to_results(action_str) self.assertEqual(len(results), 2) self.assertEqual(results[0]['path'], '/tmp/foo1') # should match third file using nwholeregex action_str = u'' results = _action_str_to_results(action_str) self.assertEqual(len(results), 1) self.assertEqual(results[0]['path'], '/tmp/bar1') # clean up glob.iglob = _iglob FileUtilities.getsize = _getsize def test_type(self): """Unit test for type attribute""" dirname = self.mkdtemp(prefix='bleachbit-action-type') filename = os.path.join(dirname, 'file') # this should not delete anything common.touch_file(filename) action_str = u'' % filename self._test_action_str(action_str) self.assertExists(filename) # should delete file action_str = u'' % filename self._test_action_str(action_str) self.assertNotExists(filename) # should delete file common.touch_file(filename) action_str = u'' % filename self._test_action_str(action_str) self.assertNotExists(filename) # should not delete anything action_str = u'' % dirname self._test_action_str(action_str) self.assertExists(dirname) # should delete directory action_str = u'' % dirname self._test_action_str(action_str) self.assertNotExists(dirname) def test_walk_all(self): """Unit test for walk.all""" dirname = self.mkdtemp(prefix='bleachbit-walk-all') # this sub-directory should be deleted subdir = os.path.join(dirname, 'sub') os.mkdir(subdir) self.assertExists(subdir) # this file should be deleted too filename = os.path.join(subdir, 'file') common.touch_file(filename) action_str = u'' % dirname self._test_action_str(action_str) self.assertNotExists(subdir) os.rmdir(dirname) def test_walk_files(self): """Unit test for walk.files""" paths = {'posix': '/var', 'nt': '$WINDIR\\system32'} action_str = u'' % paths[os.name] results = 0 for cmd in _action_str_to_commands(action_str): result = cmd.execute(False).next() common.validate_result(self, result) path = result['path'] self.assertFalse(os.path.isdir(path), "%s is a directory" % path) results += 1 self.assertGreater(results, 0) def suite(): return unittest.makeSuite(ActionTestCase) if __name__ == '__main__': if 1 < len(sys.argv) and 'benchmark' == sys.argv[1]: for this_filter in ['none', 'regex']: rates = [] iterations = 1 if 3 == len(sys.argv): iterations = int(sys.argv[2]) for x in range(0, iterations): rate = benchmark_filter(this_filter) rates.append(rate) # combine all the rates for easy copy and paste into R for analysis print('rates for filter %s=%s' % (this_filter, ','.join([str(rate) for rate in rates]))) sys.exit() unittest.main() bleachbit-2.0/tests/TestCleaner.py0000644000175000017500000002130013245436307015322 0ustar hlehle# vim: ts=4:sw=4:expandtab # coding=utf-8 # BleachBit # Copyright (C) 2008-2018 Andrew Ziem # https://www.bleachbit.org # # This program is free software: you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by # the Free Software Foundation, either version 3 of the License, or # (at your option) any later version. # # This program is distributed in the hope that it will be useful, # but WITHOUT ANY WARRANTY; without even the implied warranty of # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the # GNU General Public License for more details. # # You should have received a copy of the GNU General Public License # along with this program. If not, see . """ Test case for module Cleaner """ from __future__ import absolute_import, print_function from bleachbit.Action import ActionProvider from bleachbit.Cleaner import * from tests import common import logging from xml.dom.minidom import parseString logger = logging.getLogger('bleachbit') def action_to_cleaner(action_str): """Given an action XML fragment, return a cleaner""" return actions_to_cleaner([action_str]) def actions_to_cleaner(action_strs): """Given multiple action XML fragments, return one cleaner""" cleaner = Cleaner() count = 1 for action_str in action_strs: dom = parseString(action_str) action_node = dom.childNodes[0] command = action_node.getAttribute('command') provider = None for actionplugin in ActionProvider.plugins: if actionplugin.action_key == command: provider = actionplugin(action_node) cleaner.add_action('option%d' % count, provider) cleaner.add_option('option%d' % count, 'name%d' % count, 'description%d' % count) count += 1 return cleaner class CleanerTestCase(common.BleachbitTestCase): def test_add_action(self): """Unit test for Cleaner.add_action()""" self.actions = [] if 'nt' == os.name: self.actions += [ '', '', '', ''] elif 'posix' == os.name: print(__file__) self.actions += [ '' % __file__, '', '', ''] else: raise AssertionError('Unknown OS.') self.assertGreater(len(self.actions), 0) for action_str in self.actions: cleaner = action_to_cleaner(action_str) count = 0 for cmd in cleaner.get_commands('option1'): for result in cmd.execute(False): self.assertEqual(result['n_deleted'], 1) pathname = result['path'] self.assertLExists(pathname, "Does not exist: '%s'" % pathname) count += 1 common.validate_result(self, result) self.assertGreater(count, 0, "No files found for %s" % action_str) # should yield nothing cleaner.add_option('option2', 'name2', 'description2') for cmd in cleaner.get_commands('option2'): print(cmd) raise AssertionError('option2 should yield nothing') # should fail self.assertRaises(RuntimeError, cleaner.get_commands('option3').next) def test_auto_hide(self): for key in sorted(backends): self.assertIsInstance(backends[key].auto_hide(), bool) def test_create_simple_cleaner(self): """Unit test for method create_simple_cleaner""" dirname = self.mkdtemp(prefix='bleachbit-test-create-simple-cleaner') filename1 = os.path.join(dirname, '1') common.touch_file(filename1) # test Cyrillic for https://bugs.launchpad.net/bleachbit/+bug/1541808 filename2 = os.path.join(dirname, u'чистый') common.touch_file(filename2) targets = [filename1, filename2, dirname] cleaner = create_simple_cleaner(targets) for cmd in cleaner.get_commands('files'): # preview for result in cmd.execute(False): common.validate_result(self, result) # delete list(cmd.execute(True)) for target in targets: self.assertNotExists(target) def test_get_name(self): for key in sorted(backends): self.assertIsString(backends[key].get_name()) def test_get_description(self): for key in sorted(backends): self.assertIsString(key) self.assertIsInstance(backends[key], Cleaner) desc = backends[key].get_description() if desc is not None: self.assertIsString(desc, "description for '%s' is '%s'" % (key, desc)) def test_get_options(self): for key in sorted(backends): for (test_id, name) in backends[key].get_options(): self.assertIsString(test_id, '%s.%s is not a string' % (key, test_id)) self.assertIsString(name) def test_get_commands(self): for key in sorted(backends): logger.debug("test_get_commands: key='%s'", key) for (option_id, __name) in backends[key].get_options(): for cmd in backends[key].get_commands(option_id): for result in cmd.execute(really_delete=False): if result != True: break common.validate_result(self, result) # make sure trash and tmp don't return the same results if 'nt' == os.name: return def get_files(option_id): ret = [] register_cleaners() for cmd in backends['system'].get_commands(option_id): result = cmd.execute(False).next() ret.append(result['path']) return ret trash_paths = get_files('trash') tmp_paths = get_files('tmp') for tmp_path in tmp_paths: self.assertNotIn(tmp_path, trash_paths) def test_no_files_exist(self): """Verify only existing files are returned""" _exists = os.path.exists _iglob = glob.iglob _lexists = os.path.lexists _oswalk = os.walk glob.iglob = lambda path: [] os.path.exists = lambda path: False os.path.lexists = lambda path: False os.walk = lambda top, topdown = False: [] for key in sorted(backends): for (option_id, __name) in backends[key].get_options(): for cmd in backends[key].get_commands(option_id): for result in cmd.execute(really_delete=False): if result != True: break msg = "Expected no files to be deleted but got '%s'" % str( result) self.assertNotIsInstance(cmd, Command.Delete, msg) common.validate_result(self, result) glob.iglob = _iglob os.path.exists = _exists os.path.lexists = _lexists os.walk = _oswalk def test_register_cleaners(self): """Unit test for register_cleaners""" register_cleaners() register_cleaners() def test_whitelist(self): tests = [ ('/tmp/.truecrypt_aux_mnt1/control', True), ('/tmp/.truecrypt_aux_mnt1/volume', True), ('/tmp/.vbox-foo-ipc/lock', True), ('/tmp/.wine-500/server-806-102400f/lock', True), ('/tmp/gconfd-foo/lock/ior', True), ('/tmp/ksocket-foo/Arts_SoundServerV2', True), ('/tmp/ksocket-foo/secret-cookie', True), ('/tmp/orbit-foo/bonobo-activation-server-ior', True), ('/tmp/orbit-foo/bonobo-activation-register.lock', True), ('/tmp/orbit-foo/bonobo-activation-server-a9cd6cc4973af098918b154c4957a93f-ior', True), ('/tmp/orbit-foo/bonobo-activation-register-a9cd6cc4973af098918b154c4957a93f.lock', True), ('/tmp/pulse-foo/pid', True), ('/tmp/tmpsDOBFd', False) ] register_cleaners() for test in tests: self.assertEqual( backends['system'].whitelisted(test[0]), test[1], test[0]) bleachbit-2.0/tests/TestCommon.py0000644000175000017500000000515313245436307015211 0ustar hlehle# vim: ts=4:sw=4:expandtab # BleachBit # Copyright (C) 2008-2018 Andrew Ziem # https://www.bleachbit.org # # This program is free software: you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by # the Free Software Foundation, either version 3 of the License, or # (at your option) any later version. # # This program is distributed in the hope that it will be useful, # but WITHOUT ANY WARRANTY; without even the implied warranty of # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the # GNU General Public License for more details. # # You should have received a copy of the GNU General Public License # along with this program. If not, see . """ Test case for Common """ from __future__ import absolute_import, print_function from tests import common import bleachbit import os class CommonTestCase(common.BleachbitTestCase): """Test case for Common.""" def test_expandvars(self): """Unit test for expandvars.""" var = bleachbit.expandvars('$HOME') self.assertIsUnicodeString(var) def test_environment(self): """Test for important environment variables""" # useful for researching # grep -Poh "([\\$%]\w+)" cleaners/*xml | cut -b2- | sort | uniq -i envs = {'posix': ['XDG_DATA_HOME', 'XDG_CONFIG_HOME', 'XDG_CACHE_HOME', 'HOME'], 'nt': ['AppData', 'CommonAppData', 'Documents', 'ProgramFiles', 'UserProfile', 'WinDir']} for env in envs[os.name]: e = os.getenv(env) self.assertIsNotNone(e) self.assertGreater(len(e), 4) def test_expanduser(self): """Unit test for expanduser.""" # Return Unicode when given str. self.assertIsUnicodeString(bleachbit.expanduser('~')) # Return Unicode when given Unicode. self.assertIsUnicodeString(bleachbit.expanduser(u'~')) # Blank input should give blank output. self.assertEqual(bleachbit.expanduser(''), u'') # An absolute path should not be altered. abs_dirs = {'posix': '$HOME', 'nt': '%USERPROFILE%'} abs_dir = os.path.expandvars(abs_dirs[os.name]) self.assertExists(abs_dir) self.assertEqual(bleachbit.expanduser(abs_dir), abs_dir) # Path with tilde should be expanded self.assertEqual(os.path.normpath(bleachbit.expanduser('~')), os.path.normpath(os.path.expanduser('~'))) # A relative path (without a reference to the home directory) # should not be expanded. self.assertEqual(bleachbit.expanduser('common'), 'common') bleachbit-2.0/tests/__init__.py0000644000175000017500000000000013245436307014642 0ustar hlehlebleachbit-2.0/tests/TestMemory.py0000644000175000017500000001235213245436307015230 0ustar hlehle# vim: ts=4:sw=4:expandtab # -*- coding: UTF-8 -*- # BleachBit # Copyright (C) 2008-2018 Andrew Ziem # https://www.bleachbit.org # # This program is free software: you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by # the Free Software Foundation, either version 3 of the License, or # (at your option) any later version. # # This program is distributed in the hope that it will be useful, # but WITHOUT ANY WARRANTY; without even the implied warranty of # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the # GNU General Public License for more details. # # You should have received a copy of the GNU General Public License # along with this program. If not, see . """ Test case for module Memory """ from __future__ import absolute_import, print_function from tests import common from bleachbit.Memory import * import unittest import sys running_linux = sys.platform.startswith('linux') class MemoryTestCase(common.BleachbitTestCase): """Test case for module Memory""" @unittest.skipUnless(running_linux, 'not running linux') def test_get_proc_swaps(self): """Test for method get_proc_swaps""" ret = get_proc_swaps() self.assertGreater(len(ret), 10) if not re.search('Filename\s+Type\s+Size', ret): raise RuntimeError("Unexpected first line in swap summary '%s'" % ret) @unittest.skipUnless(running_linux, 'not running linux') def test_make_self_oom_target_linux(self): """Test for method make_self_oom_target_linux""" # preserve euid = os.geteuid() # Minimally test there is no traceback make_self_oom_target_linux() # restore os.seteuid(euid) @unittest.skipUnless(running_linux, 'not running linux') def test_count_linux_swap(self): """Test for method count_linux_swap""" n_swaps = count_swap_linux() self.assertIsInteger(n_swaps) self.assertTrue(0 <= n_swaps < 10) def test_physical_free_darwin(self): # TODO: use mock self.assertEqual(physical_free_darwin(lambda: """Mach Virtual Memory Statistics: (page size of 4096 bytes) Pages free: 836891. Pages active: 588004. Pages inactive: 16985. Pages speculative: 89776. Pages throttled: 0. Pages wired down: 468097. Pages purgeable: 58313. "Translation faults": 3109985921. Pages copy-on-write: 25209334. Pages zero filled: 537180873. Pages reactivated: 132264973. Pages purged: 11567935. File-backed pages: 184609. Anonymous pages: 510156. Pages stored in compressor: 784977. Pages occupied by compressor: 96724. Decompressions: 66048421. Compressions: 90076786. Pageins: 758631430. Pageouts: 30477017. Swapins: 19424481. Swapouts: 20258188. """), 3427905536) self.assertRaises(RuntimeError, physical_free_darwin, lambda: "Invalid header") def test_physical_free(self): """Test for method physical_free""" ret = physical_free() self.assertIsInteger(ret, 'physical_free() returns variable type %s' % type(ret)) self.assertGreater(physical_free(), 0) report_free() @unittest.skipUnless(running_linux, 'not running linux') def test_get_swap_size_linux(self): """Test for get_swap_size_linux()""" with open('/proc/swaps') as f: swapdev = f.read().split('\n')[1].split(' ')[0] if 0 == len(swapdev): self.skipTest('no active swap device detected') size = get_swap_size_linux(swapdev) self.assertIsInteger(size) self.assertGreater(size, 1024 ** 2) logger.debug("size of swap '%s': %d B (%d MB)", swapdev, size, size / (1024 ** 2)) with open('/proc/swaps') as f: proc_swaps = f.read() size2 = get_swap_size_linux(swapdev, proc_swaps) self.assertEqual(size, size2) @unittest.skipUnless(running_linux, 'not running linux') def test_get_swap_uuid(self): """Test for method get_swap_uuid""" self.assertEqual(get_swap_uuid('/dev/doesnotexist'), None) def test_parse_swapoff(self): """Test for method parse_swapoff""" tests = ( # Ubuntu 15.10 has format "swapoff /dev/sda3" ('swapoff /dev/sda3', '/dev/sda3'), ('swapoff for /dev/sda6', '/dev/sda6'), ('swapoff on /dev/mapper/lubuntu-swap_1', '/dev/mapper/lubuntu-swap_1')) for test in tests: self.assertEqual(parse_swapoff(test[0]), test[1]) @unittest.skipUnless(running_linux, 'skipping test on non-linux') def test_swap_off_swap_on(self): """Test for disabling and enabling swap""" if not General.sudo_mode() or os.getuid() > 0: self.skipTest('not enough privileges') disable_swap_linux() enable_swap_linux() bleachbit-2.0/tests/TestFileUtilities.py0000644000175000017500000007754713245436307016554 0ustar hlehle# vim: ts=4:sw=4:expandtab # -*- coding: UTF-8 -*- # BleachBit # Copyright (C) 2008-2018 Andrew Ziem # https://www.bleachbit.org # # This program is free software: you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by # the Free Software Foundation, either version 3 of the License, or # (at your option) any later version. # # This program is distributed in the hope that it will be useful, # but WITHOUT ANY WARRANTY; without even the implied warranty of # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the # GNU General Public License for more details. # # You should have received a copy of the GNU General Public License # along with this program. If not, see . """ Test case for module FileUtilities """ from __future__ import absolute_import, print_function from tests import common from bleachbit.FileUtilities import * from bleachbit.Options import options from bleachbit import expanduser, expandvars, logger import json import sys import unittest def test_ini_helper(self, execute): """Used to test .ini cleaning in TestAction and in TestFileUtilities""" teststr = b'#Test\n[RecentsMRL]\nlist=C:\\Users\\me\\Videos\\movie.mpg,C:\\Users\\me\\movie2.mpg\n\n' # create test file filename = self.write_file('bleachbit-test-ini', teststr) self.assertExists(filename) size = os.path.getsize(filename) self.assertEqual(len(teststr), size) # section does not exist execute(filename, 'Recents', None) self.assertEqual(len(teststr), os.path.getsize(filename)) # parameter does not exist execute(filename, 'RecentsMRL', 'files') self.assertEqual(len(teststr), os.path.getsize(filename)) # parameter does exist execute(filename, 'RecentsMRL', 'list') self.assertEqual(14, os.path.getsize(filename)) # section does exist execute(filename, 'RecentsMRL', None) self.assertEqual(0, os.path.getsize(filename)) # clean up delete(filename) self.assertNotExists(filename) def test_json_helper(self, execute): """Used to test JSON cleaning in TestAction and in TestFileUtilities""" def load_js(js_fn): with open(js_fn, 'r') as js_fd: return json.load(js_fd) expected = {'deleteme': 1, 'spareme': {'deletemetoo': 1}} # create test file (fd, filename) = tempfile.mkstemp(prefix='bleachbit-test-json', dir=self.tempdir) os.write(fd, '{ "deleteme" : 1, "spareme" : { "deletemetoo" : 1 } }') os.close(fd) self.assertExists(filename) self.assertEqual(load_js(filename), expected) # invalid key execute(filename, 'doesnotexist') self.assertEqual(load_js(filename), expected) # invalid key execute(filename, 'deleteme/doesnotexist') self.assertEqual(load_js(filename), expected) # valid key execute(filename, 'deleteme') self.assertEqual(load_js(filename), {'spareme': {'deletemetoo': 1}}) # valid key execute(filename, 'spareme/deletemetoo') self.assertEqual(load_js(filename), {'spareme': {}}) # valid key execute(filename, 'spareme') self.assertEqual(load_js(filename), {}) # clean up delete(filename) self.assertNotExists(filename) class FileUtilitiesTestCase(common.BleachbitTestCase): """Test case for module FileUtilities""" def test_bytes_to_human(self): """Unit test for class bytes_to_human""" if 'posix' == os.name: old_locale = locale.getlocale(locale.LC_NUMERIC) locale.setlocale(locale.LC_NUMERIC, 'en_US.UTF-8') # test one-way conversion for predefined values # each test is a tuple in the format: (bytes, SI, EIC) tests = ((-1, '-1B', '-1B'), (0, '0', '0'), (1, '1B', '1B'), (1000, '1kB', '1000B'), (1024, '1kB', '1KiB'), (1110, '1.1kB', '1.1KiB'), (1000**2, '1MB', '976.6KiB'), (1024**2, '1MB', '1MiB'), (1289748, '1.3MB', '1.2MiB'), (1000**3, '1GB', '953.7MiB'), (1024**3, '1.07GB', '1GiB'), (1320702444, '1.32GB', '1.23GiB'), (1000**4, '1TB', '931.32GiB'), (1024**4, '1.1TB', '1TiB'), (1000**5, '1PB', '909.49TiB'), (1024**5, '1.13PB', '1PiB')) options.set('units_iec', True) for test in tests: iec = bytes_to_human(test[0]) self.assertEqual(test[2], iec, 'bytes_to_human(%d) IEC = %s but expected %s' % (test[0], iec, test[2])) options.set('units_iec', False) for test in tests: si = bytes_to_human(test[0]) self.assertEqual(test[1], si, 'bytes_to_human(%d) SI = %s but expected %s' % (test[0], si, test[1])) # test roundtrip conversion for random values import random for n in range(0, 1000): bytes1 = random.randrange(0, 1000 ** 4) human = bytes_to_human(bytes1) bytes2 = human_to_bytes(human) error = abs(float(bytes2 - bytes1) / bytes1) self.assertLess(abs(error), 0.01, "%d (%s) is %.2f%% different than %d" % (bytes1, human, error * 100, bytes2)) # test localization if hasattr(locale, 'format_string'): try: locale.setlocale(locale.LC_NUMERIC, 'de_DE.utf8') except: logger.warning('exception when setlocale to de_DE.utf8') else: self.assertEqual("1,01GB", bytes_to_human(1000 ** 3 + 5812389)) # clean up if 'posix' == os.name: locale.setlocale(locale.LC_NUMERIC, old_locale) def test_children_in_directory(self): """Unit test for function children_in_directory()""" # test an existing directory that usually exists dirname = expanduser("~/.config") for filename in children_in_directory(dirname, True): self.assertTrue(os.path.isabs(filename)) for filename in children_in_directory(dirname, False): self.assertTrue(os.path.isabs(filename)) self.assertFalse(os.path.isdir(filename)) # test a constructed file in a constructed directory dirname = self.mkdtemp(prefix='bleachbit-test-children') filename = self.mkstemp(prefix="somefile", dir=dirname) for loopfilename in children_in_directory(dirname, True): self.assertEqual(loopfilename, filename) for loopfilename in children_in_directory(dirname, False): self.assertEqual(loopfilename, filename) os.remove(filename) # test subdirectory subdirname = os.path.join(dirname, "subdir") os.mkdir(subdirname) for filename in children_in_directory(dirname, True): self.assertEqual(filename, subdirname) for filename in children_in_directory(dirname, False): raise AssertionError('Found a file that shouldn\'t have been found: ' + filename) os.rmdir(subdirname) os.rmdir(dirname) def test_clean_ini(self): """Unit test for clean_ini()""" print("testing test_clean_ini() with shred = False") options.set('shred', False, commit=False) test_ini_helper(self, clean_ini) print("testing test_clean_ini() with shred = True") options.set('shred', True, commit=False) test_ini_helper(self, clean_ini) def test_clean_json(self): """Unit test for clean_json()""" print("testing test_clean_json() with shred = False") options.set('shred', False, commit=False) test_json_helper(self, clean_json) print("testing test_clean_json() with shred = True") options.set('shred', True, commit=False) test_json_helper(self, clean_json) def test_delete(self): """Unit test for method delete()""" print("testing delete() with shred = False") self.delete_helper(shred=False) print("testing delete() with shred = True") self.delete_helper(shred=True) # exercise ignore_missing delete('does-not-exist', ignore_missing=True) self.assertRaises(OSError, delete, 'does-not-exist') def delete_helper(self, shred): """Called by test_delete() with shred = False and = True""" # test deleting with various kinds of filenames hebrew = u"עִבְרִית" katanana = u"アメリカ" umlauts = u"ÄäǞǟËëḦḧÏïḮḯÖöȪȫṎṏT̈ẗÜüǕǖǗǘǙǚǛǜṲṳṺṻẄẅẌẍŸÿ" tests = ['.prefixandsuffix', # simple "x".zfill(150), # long ' begins_with_space', "''", # quotation mark "~`!@#$%^&()-_+=x", # non-alphanumeric characters "[]{};'.,x", # non-alphanumeric characters u'abcdefgh', # simple Unicode u'J\xf8rgen Scandinavian', u'\u2014em-dash', # LP#1454030 hebrew, katanana, umlauts, 'sigil-should$not-change'] if 'posix' == os.name: # Windows doesn't allow these characters but Unix systems do tests += ['"*', '\t\\', ':?<>|', ' ', '.file.'] # Windows filenames cannot end with space or period for test in tests: # create the file filename = self.write_file(test, "top secret") # delete the file delete(filename, shred) self.assertNotExists(filename) # delete an empty directory dirname = self.mkdtemp(prefix=test) self.assertExists(dirname) delete(dirname, shred) self.assertNotExists(dirname) def symlink_helper(link_fn): if 'nt' == os.name: from win32com.shell import shell if not shell.IsUserAnAdmin(): self.skipTest('skipping symlink test because of insufficient privileges') # make regular file srcname = self.mkstemp(prefix='bleachbit-test-delete-regular') # make symlink self.assertExists(srcname) linkname = tempfile.mktemp('bblink') self.assertNotExists(linkname) link_fn(srcname, linkname) self.assertExists(linkname) self.assertLExists(linkname) # delete symlink delete(linkname, shred) self.assertExists(srcname) self.assertNotLExists(linkname) # delete regular file delete(srcname, shred) self.assertNotExists(srcname) # # test broken symlink # srcname = self.mkstemp(prefix='bleachbit-test-delete-sym') self.assertLExists(srcname) link_fn(srcname, linkname) self.assertLExists(linkname) self.assertExists(linkname) # delete regular file first delete(srcname, shred) self.assertNotExists(srcname) self.assertLExists(linkname) # clean up delete(linkname, shred) self.assertNotExists(linkname) self.assertNotLExists(linkname) windows_vista_or_newer = False if 'nt' == os.name: from bleachbit.Windows import parse_windows_build # Windows Vista = 6.0 windows_vista_or_newer = parse_windows_build() >= 6.0 if windows_vista_or_newer: logger.debug('testing symbolic link') import ctypes kern = ctypes.windll.LoadLibrary("kernel32.dll") def win_symlink(src, linkname): rc = kern.CreateSymbolicLinkA(linkname, src, 0) if rc == 0: print('CreateSymbolicLinkA(%s, %s)' % (linkname, src)) print('CreateSymolicLinkA() failed, error = %s' % ctypes.FormatError()) self.assertNotEqual(rc, 0) symlink_helper(win_symlink) # below this point, only posix if 'nt' == os.name: return # test file with mode 0444/-r--r--r-- filename = self.write_file('bleachbit-test-0444') os.chmod(filename, 0o444) delete(filename, shred) self.assertNotExists(filename) # test symlink symlink_helper(os.symlink) # test FIFO args = ["mkfifo", filename] ret = subprocess.call(args) self.assertEqual(ret, 0) self.assertExists(filename) delete(filename, shred) self.assertNotExists(filename) # test directory path = self.mkdtemp(prefix='bleachbit-test-delete-dir') self.assertExists(path) delete(path, shred) self.assertNotExists(path) @unittest.skipIf('nt' != os.name, 'skipping on non-Windows') def test_delete_locked(self): """Unit test for delete() with locked file""" # set up def test_delete_locked_setup(): (fd, filename) = tempfile.mkstemp(prefix='bleachbit-test-worker') os.write(fd, '123') os.close(fd) self.assertExists(filename) self.assertEqual(3, getsize(filename)) return filename # File is open but not opened exclusive, so expect that the # file is truncated but not deleted. # O_EXCL = fail if file exists (i.e., not an exclusive lock) filename = test_delete_locked_setup() f = os.open(filename, os.O_WRONLY | os.O_EXCL) self.assertExists(filename) self.assertEqual(3, getsize(filename)) with self.assertRaises(WindowsError): delete(filename) os.close(f) self.assertExists(filename) self.assertEqual(0, getsize(filename)) delete(filename) self.assertNotExists(filename) # File is open with exclusive lock, so expect the file is neither # deleted nor truncated. filename = test_delete_locked_setup() from subprocess import call call('start notepad.exe>>{}'.format(filename), shell=True) self.assertExists(filename) self.assertEqual(3, getsize(filename)) with self.assertRaises(WindowsError): delete(filename) call('taskkill /f /im notepad.exe') self.assertExists(filename) self.assertEqual(3, getsize(filename)) delete(filename) self.assertNotExists(filename) @unittest.skipIf('nt' == os.name, 'skipping on Windows') def test_ego_owner(self): """Unit test for ego_owner()""" self.assertEqual(ego_owner('/bin/ls'), os.getuid() == 0) def test_exists_in_path(self): """Unit test for exists_in_path()""" filename = 'ls' if 'nt' == os.name: filename = 'cmd.exe' self.assertTrue(exists_in_path(filename)) def test_exe_exists(self): """Unit test for exe_exists()""" tests = [("/bin/sh", True), ("sh", True), ("doesnotexist", False), ("/bin/doesnotexist", False)] if 'nt' == os.name: tests = [('c:\\windows\\system32\\cmd.exe', True), ('cmd.exe', True), ('doesnotexist', False), ('c:\\windows\\doesnotexist.exe', False)] for test in tests: self.assertEqual(exe_exists(test[0]), test[1]) def test_expand_glob_join(self): """Unit test for expand_glob_join()""" if 'posix' == os.name: expand_glob_join('/bin', '*sh') if 'nt' == os.name: expand_glob_join('c:\windows', '*.exe') def test_expandvars(self): """Unit test for expandvars().""" expanded = expandvars('$HOME') self.assertIsUnicodeString(expanded) def test_extended_path(self): """Unit test for extended_path() and extended_path_undo()""" if 'nt' == os.name: tests = [ (r'c:\windows\notepad.exe', r'\\?\c:\windows\notepad.exe'), (r'\\server\share\windows\notepad.exe', r'\\?\unc\server\share\windows\notepad.exe'), ] else: # unchanged tests = (('/home/foo', '/home/foo'),) for short, extended in tests: # already extended path shouldn't be changed self.assertEqual(extended_path(extended), extended) # does the conversion work both ways? self.assertEqual(extended_path(short), extended) self.assertEqual(extended_path_undo(extended), short) # unextended paths shouldn't be shortened any more self.assertEqual(extended_path_undo(short), short) def test_free_space(self): """Unit test for free_space()""" home = expanduser('~') result = free_space(home) self.assertNotEqual(result, None) self.assertGreater(result, -1) self.assertIsInteger(result) # compare to WMIC if 'nt' != os.name: return args = ['wmic', 'LogicalDisk', 'get', 'DeviceID,', 'FreeSpace'] from bleachbit.General import run_external (rc, stdout, stderr) = run_external(args) if rc: print('error calling WMIC\nargs=%s\nstderr=%s' % (args, stderr)) return import re for line in stdout.split('\n'): line = line.strip() if not re.match('([A-Z]):\s+(\d+)', line): continue drive, bytes_free = re.split('\s+', line) print('Checking free space for %s' % drive) bytes_free = int(bytes_free) free = free_space(unicode(drive)) self.assertEqual(bytes_free, free) def test_getsize(self): """Unit test for method getsize()""" dirname = self.mkdtemp(prefix='bleachbit-test-getsize') def test_getsize_helper(fname): filename = self.write_file(os.path.join(dirname, fname), "abcdefghij" * 12345) if 'nt' == os.name: self.assertEqual(getsize(filename), 10 * 12345) # Expand the directory names, which are in the short format, # to test the case where the full path (including the directory) # is longer than 255 characters. import win32api lname = win32api.GetLongPathNameW(extended_path(filename)) self.assertEqual(getsize(lname), 10 * 12345) # this function returns a byte string instead of Unicode counter = 0 for child in children_in_directory(dirname, False): self.assertEqual(getsize(child), 10 * 12345) counter += 1 self.assertEqual(counter, 1) if 'posix' == os.name: output = subprocess.Popen( ["du", "-h", filename], stdout=subprocess.PIPE).communicate()[0] output = output.replace("\n", "") du_size = output.split("\t")[0] + "B" print("output = '%s', size='%s'" % (output, du_size)) du_bytes = human_to_bytes(du_size, 'du') print(output, du_size, du_bytes) self.assertEqual(getsize(filename), du_bytes) delete(filename) self.assertNotExists(filename) # create regular file test_getsize_helper('bleachbit-test-regular') # special characters test_getsize_helper(u'bleachbit-test-special-characters-∺ ∯') # em-dash (LP1454030) test_getsize_helper(u'bleachbit-test-em-dash-\u2014') # long test_getsize_helper(u'bleachbit-test-long' + 'x' * 200) # delete the empty directory delete(dirname) if 'nt' == os.name: # the following tests do not apply to Windows return # create a symlink filename = self.write_file('bleachbit-test-symlink', 'abcdefghij' * 12345) linkname = os.path.join(self.tempdir, 'bleachbitsymlinktest') if os.path.lexists(linkname): delete(linkname) os.symlink(filename, linkname) self.assertLess(getsize(linkname), 8192, "Symlink size is %d" % getsize(filename)) delete(filename) if 'darwin' == sys.platform: # MacOS's HFS+ filesystem doesn't support sparse files return # create sparse file (handle, filename) = tempfile.mkstemp(prefix="bleachbit-test-sparse") os.ftruncate(handle, 1000 ** 2) os.close(handle) self.assertEqual(getsize(filename), 0) delete(filename) def test_getsizedir(self): """Unit test for getsizedir()""" path = '/bin' if 'nt' == os.name: path = 'c:\\windows\\system32' self.assertGreater(getsizedir(path), 0) def test_globex(self): """Unit test for method globex()""" for path in globex('/bin/*', '/ls$'): self.assertEqual(path, '/bin/ls') def test_guess_overwrite_paths(self): """Unit test for guess_overwrite_paths()""" for path in guess_overwrite_paths(): self.assertTrue(os.path.isdir(path), '%s is not a directory' % path) def test_human_to_bytes(self): """Unit test for human_to_bytes()""" self.assertRaises(ValueError, human_to_bytes, '', hformat='invalid') for test in ['Bazillion kB', '120XB', '.12MB']: self.assertRaises(ValueError, human_to_bytes, test) valid = {'1kB': 1000, '1.1MB': 1100000, '12B': 12, '1.0M': 1000*1000, '1TB': 1000**4, '1000': 1000} for test, result in valid.items(): self.assertEqual(human_to_bytes(test), result) self.assertEqual(human_to_bytes('1 MB', 'du'), 1024*1024) def test_listdir(self): """Unit test for listdir()""" if 'posix' == os.name: dir1 = '/tmp' dir2 = expanduser('~/.config') if 'nt' == os.name: dir1 = expandvars(r'%windir%\fonts') dir2 = expandvars(r'%userprofile%\desktop') # If these directories do not exist, the test results are not valid. self.assertExists(dir1) self.assertExists(dir2) # Every path found in dir1 and dir2 should be found in (dir1, dir2). paths1 = set(listdir(dir1)) paths2 = set(listdir(dir2)) paths12 = set(listdir((dir1,dir2))) self.assertTrue(paths1 < paths12) self.assertTrue(paths2 < paths12) # The individual calls should be equivalent to a combined call. self.assertSetEqual(paths1.union(paths2), paths12) # The directories should not be empty. self.assertGreater(len(paths1), 0) self.assertGreater(len(paths2), 0) # Every path found should exist. for pathname in paths12: self.assertLExists(pathname) def test_same_partition(self): """Unit test for same_partition()""" home = expanduser('~') self.assertTrue(same_partition(home, home)) if 'posix' == os.name: self.assertFalse(same_partition(home, '/dev')) if 'nt' == os.name: home_drive = os.path.splitdrive(home)[0] from bleachbit.Windows import get_fixed_drives for drive in get_fixed_drives(): this_drive = os.path.splitdrive(drive)[0] self.assertEqual(same_partition(home, drive), home_drive == this_drive) def test_whitelisted(self): """Unit test for whitelisted()""" # setup old_whitelist = options.get_whitelist_paths() whitelist = [('file', '/home/foo'), ('folder', '/home/folder')] options.set_whitelist_paths(whitelist) self.assertEqual(set(whitelist), set(options.get_whitelist_paths())) # test self.assertFalse(whitelisted('')) self.assertFalse(whitelisted('/')) self.assertFalse(whitelisted('/home/foo2')) self.assertFalse(whitelisted('/home/fo')) self.assertTrue(whitelisted('/home/foo')) self.assertTrue(whitelisted('/home/folder')) if 'posix' == os.name: self.assertTrue(whitelisted('/home/folder/')) self.assertTrue(whitelisted('/home/folder/file')) self.assertFalse(whitelisted('/home/fold')) self.assertFalse(whitelisted('/home/folder2')) if 'nt' == os.name: whitelist = [('folder', 'D:\\'), ( 'file', 'c:\\windows\\foo.log'), ('folder', 'e:\\users')] options.set_whitelist_paths(whitelist) self.assertTrue(whitelisted('e:\\users')) self.assertTrue(whitelisted('e:\\users\\')) self.assertTrue(whitelisted('e:\\users\\foo.log')) self.assertFalse(whitelisted('e:\\users2')) # case insensitivity self.assertTrue(whitelisted('C:\\WINDOWS\\FOO.LOG')) self.assertTrue(whitelisted('D:\\USERS')) # drives letters have the separator at the end while most paths # don't self.assertTrue(whitelisted('D:\\FOLDER\\FOO.LOG')) # test blank options.set_whitelist_paths([]) self.assertFalse(whitelisted('/home/foo')) self.assertFalse(whitelisted('/home/folder')) self.assertFalse(whitelisted('/home/folder/file')) options.config.remove_section('whitelist/paths') self.assertFalse(whitelisted('/home/foo')) self.assertFalse(whitelisted('/home/folder')) self.assertFalse(whitelisted('/home/folder/file')) # clean up options.set_whitelist_paths(old_whitelist) self.assertEqual( set(old_whitelist), set(options.get_whitelist_paths())) @unittest.skipUnless('posix' == os.name, 'skipping on non-POSIX platform') def test_whitelisted_posix_symlink(self): """Symlink test for whitelisted_posix()""" # setup old_whitelist = options.get_whitelist_paths() tmpdir = os.path.join(self.tempdir, 'bleachbit-whitelist') os.mkdir(tmpdir) realpath = self.write_file('real') linkpath = os.path.join(tmpdir, 'link') os.symlink(realpath, linkpath) self.assertExists(realpath) self.assertExists(linkpath) # test 1: the real path is whitelisted whitelist = [('file', realpath)] options.set_whitelist_paths(whitelist) self.assertFalse(whitelisted(tmpdir)) self.assertTrue(whitelisted(realpath)) self.assertTrue(whitelisted(linkpath)) # test 2: the link is whitelisted whitelist = [('file', linkpath)] options.set_whitelist_paths(whitelist) self.assertFalse(whitelisted(tmpdir)) self.assertFalse(whitelisted(realpath)) self.assertTrue(whitelisted(linkpath)) options.set_whitelist_paths(old_whitelist) def test_whitelisted_speed(self): """Benchmark the speed of whitelisted() It is called frequently, so the speed is important.""" d = '/usr/bin' whitelist = [('file', '/home/foo'), ('folder', '/home/folder')] if 'nt' == os.name: d = expandvars('%windir%\system32') whitelist = [('file', r'c:\\filename'), ('folder', r'c:\\folder')] reps = 20 paths = [p for p in children_in_directory(d, True)] paths = paths[:1000] # truncate self.assertGreater(len(paths), 10) old_whitelist = options.get_whitelist_paths() options.set_whitelist_paths(whitelist) t0 = time.time() for i in xrange(0, reps): for p in paths: _ = whitelisted(p) t1 = time.time() logger.info('whitelisted() with {} repetitions and {} paths took {:.3g} seconds '.format( reps, len(paths), t1 - t0)) options.set_whitelist_paths(old_whitelist) def test_wipe_contents(self): """Unit test for wipe_delete()""" # create test file filename = self.write_file('bleachbit-test-wipe', 'abcdefghij' * 12345) # wipe it wipe_contents(filename) # check it f = open(filename, 'rb') while True: byte = f.read(1) if "" == byte: break self.assertEqual(byte, chr(0)) f.close() # clean up os.remove(filename) def wipe_name_helper(self, filename): """Helper for test_wipe_name()""" self.assertExists(filename) # test newname = wipe_name(filename) self.assertGreater(len(filename), len(newname)) self.assertNotExists(filename) self.assertExists(newname) # clean os.remove(newname) self.assertNotExists(newname) def test_wipe_name(self): """Unit test for wipe_name()""" # create test file with moderately long name filename = self.write_file('bleachbit-test-wipe' + '0' * 50) self.wipe_name_helper(filename) # create file with short name in temporary directory with long name if 'nt' == os.name: # In Windows, the maximum path length is 260 characters # http://msdn.microsoft.com/en-us/library/aa365247%28VS.85%29.aspx#maxpath dir0len = 100 dir1len = 5 else: dir0len = 210 dir1len = 210 filelen = 10 dir0 = self.mkdtemp(prefix="0" * dir0len) self.assertExists(dir0) dir1 = self.mkdtemp(prefix="1" * dir1len, dir=dir0) self.assertExists(dir1) filename = self.write_file(os.path.join(dir1, '2' * filelen)) self.wipe_name_helper(filename) self.assertExists(dir0) self.assertExists(dir1) # wipe a directory name dir1new = wipe_name(dir1) self.assertGreater(len(dir1), len(dir1new)) self.assertNotExists(dir1) self.assertExists(dir1new) os.rmdir(dir1new) # wipe the directory os.rmdir(dir0) self.assertNotExists(dir0) @unittest.skipUnless(os.getenv('ALLTESTS') is not None, 'warning: skipping long test test_wipe_path() because environment variable ALLTESTS not set') def test_wipe_path(self): """Unit test for wipe_path()""" for ret in wipe_path(self.tempdir): # no idle handler pass def test_vacuum_sqlite3(self): """Unit test for method vacuum_sqlite3()""" import sqlite3 path = os.path.abspath('bleachbit.tmp.sqlite3') if os.path.lexists(path): delete(path) conn = sqlite3.connect(path) conn.execute('create table numbers (number)') conn.commit() empty_size = getsize(path) def number_generator(): for x in range(1, 10000): yield (x, ) conn.executemany('insert into numbers (number) values ( ? ) ', number_generator()) conn.commit() self.assertLess(empty_size, getsize(path)) conn.execute('delete from numbers') conn.commit() conn.close() vacuum_sqlite3(path) self.assertEqual(empty_size, getsize(path)) delete(path) @unittest.skipIf('nt' == os.name, 'skipping on Windows') def test_OpenFiles(self): """Unit test for class OpenFiles""" filename = os.path.join(self.tempdir, 'bleachbit-test-open-files') f = open(filename, 'w') openfiles = OpenFiles() self.assertTrue(openfiles.is_open(filename), "Expected is_open(%s) to return True)\n" "openfiles.last_scan_time (ago)=%s\n" "openfiles.files=%s" % (filename, time.time() - openfiles.last_scan_time, openfiles.files)) f.close() openfiles.scan() self.assertFalse(openfiles.is_open(filename)) os.unlink(filename) openfiles.scan() self.assertFalse(openfiles.is_open(filename)) def test_open_files_lsof(self): self.assertEqual(list(open_files_lsof(lambda: 'n/bar/foo\nn/foo/bar\nnoise')), ['/bar/foo', '/foo/bar']) bleachbit-2.0/tests/TestWinapp.py0000644000175000017500000004130413245436307015215 0ustar hlehle# vim: ts=4:sw=4:expandtab # BleachBit # Copyright (C) 2008-2018 Andrew Ziem # https://www.bleachbit.org # # This program is free software: you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by # the Free Software Foundation, either version 3 of the License, or # (at your option) any later version. # # This program is distributed in the hope that it will be useful, # but WITHOUT ANY WARRANTY; without even the implied warranty of # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the # GNU General Public License for more details. # # You should have received a copy of the GNU General Public License # along with this program. If not, see . """ Test cases for module Winapp """ from __future__ import absolute_import, print_function from tests import common from bleachbit.Winapp import Winapp, detectos, detect_file, section2option from bleachbit.Windows import detect_registry_key, parse_windows_build from bleachbit import logger import os import shutil import sys import tempfile import unittest def CreateSubKey(sub_key): import _winreg hkey = _winreg.CreateKey(_winreg.HKEY_CURRENT_USER, sub_key) hkey.Close() keyfull = 'HKCU\\Software\\BleachBit\\DeleteThisKey' def get_winapp2(): """Download and cache winapp2.ini. Return local filename.""" url = "https://rawgit.com/bleachbit/winapp2.ini/master/Winapp2-BleachBit.ini" tmpdir = None if 'posix' == os.name: tmpdir = '/tmp' if 'nt' == os.name: tmpdir = os.getenv('TMP') fn = os.path.join(tmpdir, 'bleachbit_test_winapp2.ini') if os.path.exists(fn): import time import stat age_seconds = time.time() - os.stat(fn)[stat.ST_MTIME] if age_seconds > (24 * 36 * 36): logger.info('deleting stale file %s ', fn) os.remove(fn) if not os.path.exists(fn): f = open(fn, 'w') import urllib2 txt = urllib2.urlopen(url).read() f.write(txt) return fn @unittest.skipUnless('win32' == sys.platform, 'not running on windows') class WinappTestCase(common.BleachbitTestCase): """Test cases for Winapp""" def run_all(self, cleaner, really_delete): """Test all the cleaner options""" for (option_id, __name) in cleaner.get_options(): for cmd in cleaner.get_commands(option_id): for result in cmd.execute(really_delete): common.validate_result(self, result, really_delete) def test_remote(self): """Test with downloaded file""" winapps = Winapp(get_winapp2()) for cleaner in winapps.get_cleaners(): self.run_all(cleaner, False) def test_detectos(self): """Test detectos function""" # Tests are in the format (required_ver, mock, expected_return) tests = (('5.1', '5.1', True), ('5.1', '6.0', False), ('6.0', '5.1', False), # 5.1 is the maximum version ('|5.1', '5.1', True), ('|5.1', '6.0', False), ('|5.1', '10.0', False), # 10.0 is the maximum version ('|10.0', '5.1', True), ('|10.0', '10.0', True), ('|10.0', '10.1', False), # 6.1 is the minimum version ('6.1|', '5.1', False), ('6.1|', '6.0', False), ('6.1|', '6.1', True), ('6.1|', '6.2', True), ('6.1|', '10.0', True), ('6.2|', '5.1', False), ('6.2|', '6.0', False), ('6.2|', '6.1', False), ('6.2|', '6.2', True), # 10.0 is the minimum ('10.0|', '5.1', False), ('10.0|', '10.0', True)) for (s, mock, expected_return) in tests: mock = parse_windows_build(mock) actual_return = detectos(s, mock) self.assertEqual(expected_return, actual_return, 'detectos(%s, %s)==%s instead of %s' % (s, mock, actual_return, expected_return)) def test_detect_file(self): """Test detect_file function""" tests = [('%windir%\\system32\\kernel32.dll', True), ('%windir%\\system32', True), ('%ProgramFiles%\\Internet Explorer', True), ('%ProgramFiles%\\Internet Explorer\\', True), ('%windir%\\doesnotexist', False), ('%windir%\\system*', True), ('%windir%\\*ystem32', True), ('%windir%\\*ystem3*', True)] # On 64-bit Windows, Winapp2.ini expands the %ProgramFiles% environment # variable to also %ProgramW6432%, so test unique entries in # %ProgramW6432%. import struct if not 32 == 8 * struct.calcsize('P'): raise NotImplementedError('expecting 32-bit Python') if os.getenv('ProgramW6432'): dir_64 = os.listdir(os.getenv('ProgramFiles')) dir_32 = os.listdir(os.getenv('ProgramW6432')) dir_32_unique = set(dir_32) - set(dir_64) if dir_32 and not dir_32_unique: raise RuntimeError( 'Test expects objects in %ProgramW6432% not in %ProgramFiles%') for pathname in dir_32_unique: tests.append(('%%ProgramFiles%%\\%s' % pathname, True)) else: logger.info('skipping %ProgramW6432% tests because WoW64 not detected') for (pathname, expected_return) in tests: actual_return = detect_file(pathname) msg = 'detect_file(%s) returned %s' % (pathname, actual_return) self.assertEqual(expected_return, actual_return, msg) def setup_fake(self, f1_filename=None): """Setup the test environment""" subkey = 'Software\\BleachBit\\DeleteThisKey\\AndThisKey' dirname = tempfile.mkdtemp(prefix='bleachbit-test-winapp') f1 = os.path.join(dirname, f1_filename or 'deleteme.log') open(f1, 'w').close() dirname2 = os.path.join(dirname, 'sub') os.mkdir(dirname2) f2 = os.path.join(dirname2, 'deleteme.log') open(f2, 'w').close() fbak = os.path.join(dirname, 'deleteme.bak') open(fbak, 'w').close() self.assertExists(f1) self.assertExists(f2) self.assertExists(fbak) CreateSubKey(subkey) self.assertTrue(detect_registry_key(keyfull)) self.assertTrue(detect_registry_key('HKCU\\%s' % subkey)) return dirname, f1, f2, fbak def ini2cleaner(self, body, do_next=True): """Write a minimal Winapp2.ini""" ini = open(self.ini_fn, 'w') ini.write('[someapp]\n') ini.write('LangSecRef=3021\n') ini.write(body) ini.write('\n') ini.close() self.assertExists(self.ini_fn) if do_next: return Winapp(self.ini_fn).get_cleaners().next() else: return Winapp(self.ini_fn).get_cleaners() def test_fake(self): """Test with fake file""" # reuse this path to store a winapp2.ini file in (ini_h, self.ini_fn) = tempfile.mkstemp( suffix='.ini', prefix='winapp2') os.close(ini_h) # a set of tests # this map explains what each position in the test tuple means # 0=line to write directly to winapp2.ini # 1=filename1 to place in fake environment (default=deleteme.log) # 2=auto-hide before cleaning # 3=dirname exists after cleaning # 4=filename1 (.\deleteme.log) exists after cleaning # 5=sub\deleteme.log exists after cleaning # 6=.\deleteme.bak exists after cleaning # 7=auto-hide after cleaning tests = [ # single file ('FileKey1=%s|deleteme.log', None, False, True, False, True, True, True), # single file, case matching should be insensitive ('FileKey1=%s|dEleteme.LOG', None, False, True, False, True, True, True), # special characters for XML ('FileKey1=%s|special_chars_&-\'.txt', 'special_chars_&-\'.txt', False, True, False, True, True, True), # *.log ('FileKey1=%s|*.LOG', None, False, True, False, True, True, True), # semicolon separates different file types ('FileKey1=%s|*.log;*.bak', None, False, True, False, True, False, True), # *.* ('FileKey1=%s|*.*', None, False, True, False, True, False, True), # recurse *.* ('FileKey1=%s|*.*|RECURSE', None, False, True, False, False, False, True), # recurse *.log ('FileKey1=%s|*.log|RECURSE', None, False, True, False, False, True, True), # remove self *.*, this removes the directory ('FileKey1=%s|*.*|REMOVESELF', None, False, False, False, False, False, True), ] # Add positive detection, where the detection believes the application is present, # to all the tests, which are also positive. new_tests = [] for test in tests: for detect in ( "\nDetectFile=%%APPDATA%%\\Microsoft", "\nDetectFile1=%%APPDATA%%\\Microsoft\nDetectFile2=%%APPDATA%%\\does_not_exist", "\nDetectFile1=%%APPDATA%%\\does_not_exist\nDetectFile2=%%APPDATA%%\\Microsoft", "\nDetect=HKCU\\Software\\Microsoft", # Below checks that a space is OK in the registry key "\nDetect=HKCU\\Software\\Microsoft\\Command Processor", "\nDetect1=HKCU\\Software\\Microsoft\nDetect2=HKCU\\Software\\does_not_exist", "\nDetect1=HKCU\\Software\\does_not_exist\nDetect2=HKCU\\Software\\Microsoft"): new_ini = test[0] + detect new_test = [new_ini, ] + [x for x in test[1:]] new_tests.append(new_test) positive_tests = tests + new_tests # execute positive tests for test in positive_tests: print('positive test: ', test) (dirname, f1, f2, fbak) = self.setup_fake(test[1]) cleaner = self.ini2cleaner(test[0] % dirname) self.assertEqual(test[2], cleaner.auto_hide()) self.run_all(cleaner, False) self.run_all(cleaner, True) self.assertCondExists(test[3], dirname) self.assertCondExists(test[4], f1) self.assertCondExists(test[5], f2) self.assertCondExists(test[6], fbak) self.assertEqual(test[7], cleaner.auto_hide()) shutil.rmtree(dirname, True) # negative tests where the application detect believes the application # is absent for test in tests: for detect in ( "\nDetectFile=c:\\does_not_exist", # special characters for XML "\nDetectFile=c:\\does_not_exist_special_chars_&'", "\nDetectFile1=c:\\does_not_exist1\nDetectFile2=c:\\does_not_exist2", "\nDetect=HKCU\\Software\\does_not_exist", "\nDetect=HKCU\\Software\\does_not_exist_&'", "\nDetect1=HKCU\\Software\\does_not_exist1\nDetect2=HKCU\\Software\\does_not_exist1"): new_ini = test[0] + detect t = [new_ini, ] + [x for x in test[1:]] print('negative test', t) # execute the test (dirname, f1, f2, fbak) = self.setup_fake() cleaner = self.ini2cleaner(t[0] % dirname, False) self.assertRaises(StopIteration, cleaner.next) shutil.rmtree(dirname, True) # registry key, basic (dirname, f1, f2, fbak) = self.setup_fake() cleaner = self.ini2cleaner('RegKey1=%s' % keyfull) self.run_all(cleaner, False) self.assertTrue(detect_registry_key(keyfull)) self.run_all(cleaner, True) self.assertFalse(detect_registry_key(keyfull)) shutil.rmtree(dirname, True) # check for parse error with ampersand (dirname, f1, f2, fbak) = self.setup_fake() cleaner = self.ini2cleaner( 'RegKey1=HKCU\\Software\\PeanutButter&Jelly') self.run_all(cleaner, False) self.run_all(cleaner, True) shutil.rmtree(dirname, True) def test_excludekey(self): """Test for ExcludeKey""" # reuse this path to store a winapp2.ini file in (ini_h, self.ini_fn) = tempfile.mkstemp( suffix='.ini', prefix='winapp2') os.close(ini_h) # tests # each tuple # 0 = body of winapp2.ini # 1 = .\deleteme.log should exist # 2 = .\deleteme.bak should exist # 3 = sub\deleteme.log should exist tests = ( # delete everything in single directory (no children) without # exclusions ('FileKey1=%(d)s|deleteme.*', False, False, True), # delete everything in single directory using environment variable ('FileKey1=%%bbtestdir%%|deleteme.*', False, False, True), # delete everything in parent and child directories without # exclusions ('FileKey1=%(d)s|deleteme.*|RECURSE', False, False, False), # exclude log delimited by pipe ('FileKey1=%(d)s|deleteme.*\nExcludeKey1=FILE|%(d)s|deleteme.log', True, False, True), # exclude log without pipe delimiter ('FileKey1=%(d)s|deleteme.*\nExcludeKey1=FILE|%(d)s\deleteme.log', True, False, True), # exclude everything in folder ('FileKey1=%(d)s|deleteme.*\nExcludeKey1=PATH|%(d)s|*.*', True, True, True), ('FileKey1=%(d)s|deleteme.*|RECURSE\nExcludeKey1=PATH|%(d)s|*.*', True, True, True), ('FileKey1=%(d)s|deleteme.*\nExcludeKey1=PATH|%(d)s', True, True, True), # exclude everything in folder using environment variable # use double %% to escape ('FileKey1=%(d)s|deleteme.*\nExcludeKey1=PATH|%%bbtestdir%%|*.*', True, True, True), # exclude sub-folder ('FileKey1=%(d)s|deleteme.*\nExcludeKey1=PATH|%(d)s\sub', False, False, True), # exclude multiple file types that do not exist ('FileKey1=%(d)s|deleteme.*\nExcludeKey1=PATH|%(d)s|*.exe;*.dll', False, False, True), # exclude multiple file types that do exist, so dlete nothing ('FileKey1=%(d)s|deleteme.*\nExcludeKey1=PATH|%(d)s|*.bak;*.log', True, True, True), ('FileKey1=%(d)s|deleteme.*|RECURSE\nExcludeKey1=PATH|%(d)s|*.bak;*.log', True, True, True), # multiple ExcludeKey, neither of which should do anything ('FileKey1=%(d)s|deleteme.*|RECURSE\nExcludeKey1=PATH|c:\\doesnotexist|*.*\nExcludeKey2=PATH|c:\\alsodoesnotexist|*.*', False, False, False), # multiple ExcludeKey, the first should work ('FileKey1=%(d)s|deleteme.*|RECURSE\nExcludeKey1=PATH|%(d)s|*.log\nExcludeKey2=PATH|c:\\alsodoesnotexist\|*.*', True, False, True), # multiple ExcludeKey, both should work ('FileKey1=%(d)s|deleteme.*|RECURSE\nExcludeKey1=PATH|%(d)s|*.log\nExcludeKey2=PATH|%(d)s|*.bak', True, True, True), # glob should exclude the directory called 'sub' ('FileKey1=%(d)s|*.*\nExcludeKey1=PATH|%(d)s\s*', False, False, True), ) for test in tests: msg = '\nTest:\n%s' % test[0] # setup (dirname, f1, f2, fbak) = self.setup_fake() self.assertExists(r'%s\deleteme.log' % dirname, msg) self.assertExists(r'%s\deleteme.bak' % dirname, msg) self.assertExists(r'%s\sub\deleteme.log' % dirname, msg) # set environment variable for testing os.environ['bbtestdir'] = dirname self.assertExists(r'$bbtestdir\deleteme.log', msg) # delete files cleaner = self.ini2cleaner(test[0] % {'d': dirname}) self.run_all(cleaner, True) # test self.assertCondExists(test[1], r'%s\deleteme.log' % dirname, msg) self.assertCondExists(test[2], r'%s\deleteme.bak' % dirname, msg) self.assertCondExists( test[3], r'%s\sub\deleteme.log' % dirname, msg) # cleanup shutil.rmtree(dirname, True) def test_section2option(self): """Test for section2option()""" tests = ((' FOO2 ', 'foo2'), ('A - B (C)', 'a_b_c')) for test in tests: self.assertEqual(section2option(test[0]), test[1]) bleachbit-2.0/tests/TestWindows.py0000644000175000017500000003276513245436307015424 0ustar hlehle# vim: ts=4:sw=4:expandtab # -*- coding: UTF-8 -*- # BleachBit # Copyright (C) 2008-2018 Andrew Ziem # https://www.bleachbit.org # # This program is free software: you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by # the Free Software Foundation, either version 3 of the License, or # (at your option) any later version. # # This program is distributed in the hope that it will be useful, # but WITHOUT ANY WARRANTY; without even the implied warranty of # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the # GNU General Public License for more details. # # You should have received a copy of the GNU General Public License # along with this program. If not, see . """ Test case for module Windows """ from __future__ import absolute_import, print_function from tests import common from bleachbit.FileUtilities import extended_path, extended_path_undo from bleachbit.Windows import * from bleachbit import logger import sys import tempfile import unittest import platform from decimal import Decimal if 'win32' == sys.platform: import _winreg from win32com.shell import shell def put_files_into_recycle_bin(): """Put a file and a folder into the recycle bin""" # make a file and move it to the recycle bin tests = ('regular', u'unicode-emdash-u\u2014', 'long' + 'x' * 100) for test in tests: (fd, filename) = tempfile.mkstemp( prefix='bleachbit-recycle-file', suffix=test) os.close(fd) move_to_recycle_bin(filename) # make a folder and move it to the recycle bin dirname = tempfile.mkdtemp(prefix='bleachbit-recycle-folder') common.touch_file(os.path.join(dirname, 'file')) move_to_recycle_bin(dirname) @unittest.skipUnless('win32' == sys.platform, 'not running on windows') class WindowsTestCase(common.BleachbitTestCase): """Test case for module Windows""" def test_get_recycle_bin(self): """Unit test for get_recycle_bin""" for f in get_recycle_bin(): self.assertExists(extended_path(f)) if not common.destructive_tests('get_recycle_bin'): return put_files_into_recycle_bin() # clear recycle bin counter = 0 for f in get_recycle_bin(): counter += 1 FileUtilities.delete(f) self.assertGreaterEqual(counter, 3, 'deleted %d' % counter) # now it should be empty for f in get_recycle_bin(): self.fail('recycle bin should be empty, but it is not') def test_delete_locked_file(self): """Unit test for delete_locked_file""" tests = ('regular', u'unicode-emdash-u\u2014', 'long' + 'x' * 100) for test in tests: f = tempfile.NamedTemporaryFile( prefix='bleachbit-delete-locked-file', suffix=test, delete=False) pathname = f.name f.close() import time time.sleep(5) # avoid race condition self.assertExists(pathname) logger.debug('delete_locked_file(%s) ' % pathname) if not shell.IsUserAnAdmin(): with self.assertRaises(WindowsError): delete_locked_file(pathname) else: delete_locked_file(pathname) self.assertExists(pathname) logger.info('reboot Windows and check the three files are deleted') def test_delete_registry_key(self): """Unit test for delete_registry_key""" # (return value, key, really_delete) tests = ((False, 'HKCU\\Software\\BleachBit\\DoesNotExist', False, ), (False, 'HKCU\\Software\\BleachBit\\DoesNotExist', True, ), (True, 'HKCU\\Software\\BleachBit\\DeleteThisKey', False, ), (True, 'HKCU\\Software\\BleachBit\\DeleteThisKey', True, ), ) # create a nested key key = 'Software\\BleachBit\\DeleteThisKey' subkey = key + '\\AndThisKey' hkey = _winreg.CreateKey(_winreg.HKEY_CURRENT_USER, subkey) hkey.Close() # test for test in tests: rc = test[0] key = test[1] really_delete = test[2] return_value = delete_registry_key(key, really_delete) self.assertEqual(rc, return_value) if really_delete: self.assertFalse(detect_registry_key(key)) # Test Unicode key. In BleachBit 0.7.3 this scenario would lead to # the error (bug 537109) # UnicodeDecodeError: 'ascii' codec can't decode byte 0xc3 in position # 11: ordinal not in range(128) key = r'Software\\BleachBit\\DeleteThisKey' hkey = _winreg.CreateKey( _winreg.HKEY_CURRENT_USER, key + r'\\AndThisKey-Ö') hkey.Close() return_value = delete_registry_key(u'HKCU\\' + key, True) self.assertTrue(return_value) return_value = delete_registry_key(u'HKCU\\' + key, True) self.assertFalse(return_value) def test_delete_registry_value(self): """Unit test for delete_registry_value""" # # test: value does exist # # create a name-value pair key = 'Software\\BleachBit' hkey = _winreg.CreateKey(_winreg.HKEY_CURRENT_USER, key) value_name = 'delete_this_value_name' _winreg.SetValueEx( hkey, value_name, 0, _winreg.REG_SZ, 'delete this value') hkey.Close() # delete and confirm self.assertTrue( delete_registry_value('HKCU\\' + key, value_name, False)) self.assertTrue( delete_registry_value('HKCU\\' + key, value_name, True)) self.assertFalse( delete_registry_value('HKCU\\' + key, value_name, False)) self.assertFalse( delete_registry_value('HKCU\\' + key, value_name, True)) # # test: value does not exist # self.assertFalse(delete_registry_value( 'HKCU\\' + key, 'doesnotexist', False)) self.assertFalse(delete_registry_value( 'HKCU\\' + key, 'doesnotexist', True)) self.assertFalse(delete_registry_value( 'HKCU\\doesnotexist', value_name, False)) self.assertFalse(delete_registry_value( 'HKCU\\doesnotexist', value_name, True)) def test_detect_registry_key(self): """Test for detect_registry_key()""" self.assert_(detect_registry_key('HKCU\\Software\\Microsoft\\')) self.assert_(not detect_registry_key('HKCU\\Software\\DoesNotExist')) def test_get_autostart_path(self): """Unit test for get_autostart_path""" pathname = get_autostart_path() dirname = os.path.dirname(pathname) self.assertExists(dirname) def test_get_known_folder_path(self): """Unit test for get_known_folder_path""" ret = get_known_folder_path('LocalAppDataLow') self.assertNotEqual(ret, '') if parse_windows_build() <= 6.0: # Before Vista self.assertEqual(ret, None) return # Vista or later self.assertNotEqual(ret, None) self.assertExists(ret) def test_get_fixed_drives(self): """Unit test for get_fixed_drives""" drives = [] for drive in get_fixed_drives(): drives.append(drive) self.assertEqual(drive, drive.upper()) self.assertIn("C:\\", drives) def test_get_windows_version(self): """Unit test for get_windows_version""" v = get_windows_version() self.assertGreaterEqual(v, 5.1) self.assertGreater(v, 5) self.assertIsInstance(v, Decimal) def test_empty_recycle_bin(self): """Unit test for empty_recycle_bin""" # check the function basically works for drive in get_fixed_drives(): ret = empty_recycle_bin(drive, really_delete=False) self.assertIsInstance(ret, (int, long)) if not common.destructive_tests('recycle bin'): return # check it deletes files for fixed drives put_files_into_recycle_bin() for drive in get_fixed_drives(): ret = empty_recycle_bin(drive, really_delete=True) self.assertIsInstance(ret, (int, long)) # check it deletes files for all drives put_files_into_recycle_bin() ret = empty_recycle_bin(None, really_delete=True) self.assertIsInstance(ret, (int, long)) # Repeat two for reasons. # 1. Trying to empty an empty recycling bin can cause # a 'catastrophic failure' error (handled in the function) # 2. It should show zero bytes were deleted for drive in get_fixed_drives(): ret = empty_recycle_bin(drive, really_delete=True) self.assertEqual(ret, 0) def test_file_wipe(self): """Unit test for file_wipe There are more tests in testwipe.py """ from bleachbit.WindowsWipe import file_wipe dirname = tempfile.mkdtemp(prefix='bleachbit-file-wipe') filenames = ('short', 'long' + 'x' * 250, u'utf8-ɡælɪk') for filename in filenames: longname = os.path.join(dirname, filename) logger.debug('file_wipe(%s)', longname) def _write_file(longname, contents): self.write_file(longname, contents) import win32api shortname = extended_path_undo( win32api.GetShortPathName(extended_path(longname))) self.assertExists(shortname) return shortname def _test_wipe(contents): shortname = _write_file(longname, contents) logger.debug('test_file_wipe(): filename length={}, shortname length ={}, contents length={}'.format( len(longname), len(shortname), len(contents))) if shell.IsUserAnAdmin(): # wiping requires admin privileges file_wipe(shortname) file_wipe(longname) else: with self.assertRaises(pywintypes.error): file_wipe(shortname) file_wipe(longname) self.assertExists(shortname) os.remove(extended_path(shortname)) self.assertNotExists(shortname) # A small file that fits in MFT _test_wipe('') # requires wiping of extents _test_wipe('secret' * 100000) import shutil shutil.rmtree(dirname, True) if shell.IsUserAnAdmin(): logger.warning('You should also run test_file_wipe() without admin privileges.') else: logger.warning('You should also run test_file_wipe() with admin privileges.') def test_is_process_running(self): # winlogon.exe runs on Windows XP and Windows 7 # explorer.exe does not run on Appveyor tests = ((True, 'winlogon.exe'), (True, 'WinLogOn.exe'), (False, 'doesnotexist.exe')) for test in tests: self.assertEqual(test[0], is_process_running(test[1]), 'Expecting is_process_running(%s) = %s' % (test[1], test[0])) def test_setup_environment(self): """Unit test for setup_environment""" setup_environment() envs = ['commonappdata', 'documents', 'music', 'pictures', 'video', 'localappdata'] if parse_windows_build() >= 6.0: envs.append('localappdatalow') for env in envs: self.assertExists(os.environ[env].decode('utf8')) def test_split_registry_key(self): """Unit test for split_registry_key""" tests = (('HKCU\\Software', _winreg.HKEY_CURRENT_USER, 'Software'), ('HKLM\\SOFTWARE', _winreg.HKEY_LOCAL_MACHINE, 'SOFTWARE'), ('HKU\\.DEFAULT', _winreg.HKEY_USERS, '.DEFAULT')) for (input_key, expected_hive, expected_key) in tests: (hive, key) = split_registry_key(input_key) self.assertEqual(expected_hive, hive) self.assertEqual(expected_key, key) def test_start_with_computer(self): """Unit test for start_with_computer*""" b = start_with_computer_check() self.assertIsInstance(b, bool) # opposite setting start_with_computer(not b) two_b = start_with_computer_check() self.assertIsInstance(two_b, bool) self.assertEqual(b, not two_b) # original setting start_with_computer(b) three_b = start_with_computer_check() self.assertIsInstance(b, bool) self.assertEqual(b, three_b) def test_parse_windows_build(self): """Unit test for parse_windows_build""" tests = (('5.1.2600', Decimal('5.1')), ('5.1', Decimal('5.1')), ('10.0.10240', 10), ('10.0', 10)) for test in tests: self.assertEqual(parse_windows_build(test[0]), test[1]) # test for crash parse_windows_build() parse_windows_build(platform.version()) parse_windows_build(platform.uname()[3]) def test_path_on_network(self): """Unit test for path_on_network""" self.assertFalse(path_on_network('c:\\bleachbit.exe')) self.assertFalse(path_on_network('a:\\bleachbit.exe')) self.assertTrue(path_on_network('\\\\Server\\Folder\\bleachbit.exe')) def test_shell_change_notify(self): """Unit test for shell_change_notify""" ret = shell_change_notify() self.assertEqual(ret, 0) bleachbit-2.0/tests/TestCommand.py0000644000175000017500000000430313245436307015333 0ustar hlehle# vim: ts=4:sw=4:expandtab # BleachBit # Copyright (C) 2008-2018 Andrew Ziem # https://www.bleachbit.org # # This program is free software: you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by # the Free Software Foundation, either version 3 of the License, or # (at your option) any later version. # # This program is distributed in the hope that it will be useful, # but WITHOUT ANY WARRANTY; without even the implied warranty of # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the # GNU General Public License for more details. # # You should have received a copy of the GNU General Public License # along with this program. If not, see . """ Test case for Command """ from __future__ import absolute_import, print_function from tests import common from bleachbit.Command import * class CommandTestCase(common.BleachbitTestCase): """Test case for Command""" def test_Delete(self, cls=Delete): """Unit test for Delete""" path = self.write_file('test_Delete', b'foo') cmd = cls(path) self.assertExists(path) # preview ret = cmd.execute(really_delete=False).next() s = str(cmd) self.assertGreater(ret['size'], 0) self.assertEqual(ret['path'], path) self.assertExists(path) # delete ret = cmd.execute(really_delete=True).next() self.assertGreater(ret['size'], 0) self.assertEqual(ret['path'], path) self.assertNotExists(path) def test_Function(self): """Unit test for Function""" path = self.write_file('test_Function', b'foo') cmd = Function(path, FileUtilities.delete, 'bar') self.assertExists(path) self.assertGreater(os.path.getsize(path), 0) # preview ret = cmd.execute(False).next() self.assertExists(path) self.assertGreater(os.path.getsize(path), 0) # delete ret = cmd.execute(True).next() self.assertGreater(ret['size'], 0) self.assertEqual(ret['path'], path) self.assertNotExists(path) def test_Shred(self): """Unit test for Shred""" self.test_Delete(Shred) bleachbit-2.0/tests/TestAll.py0000755000175000017500000000264613245436307014500 0ustar hlehle#!/usr/bin/env python # vim: ts=4:sw=4:expandtab # BleachBit # Copyright (C) 2008-2018 Andrew Ziem # https://www.bleachbit.org # # This program is free software: you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by # the Free Software Foundation, either version 3 of the License, or # (at your option) any later version. # # This program is distributed in the hope that it will be useful, # but WITHOUT ANY WARRANTY; without even the implied warranty of # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the # GNU General Public License for more details. # # You should have received a copy of the GNU General Public License # along with this program. If not, see . """ Run all test suites """ from __future__ import absolute_import, print_function import os import unittest import sys if __name__ == '__main__': print("""You should use the unittest discovery, it's much nicer: python2 -m unittest discover -p Test*.py # run all tests python2 -m unittest tests.TestCLI # run only the CLI tests python2 -m unittest tests.TestCLI.CLITestCase.test_encoding # run only a single test""") suite = unittest.defaultTestLoader.discover(os.getcwd(), pattern='Test*.py') success = unittest.TextTestRunner(verbosity=2).run(suite).wasSuccessful() sys.exit(success == False) bleachbit-2.0/tests/TestWorker.py0000644000175000017500000002567713245436307015247 0ustar hlehle# vim: ts=4:sw=4:expandtab # BleachBit # Copyright (C) 2008-2018 Andrew Ziem # https://www.bleachbit.org # # This program is free software: you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by # the Free Software Foundation, either version 3 of the License, or # (at your option) any later version. # # This program is distributed in the hope that it will be useful, # but WITHOUT ANY WARRANTY; without even the implied warranty of # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the # GNU General Public License for more details. # # You should have received a copy of the GNU General Public License # along with this program. If not, see . """ Test case for module Worker """ from __future__ import absolute_import, print_function from tests import TestCleaner, common from bleachbit import CLI, Command from bleachbit.Action import ActionProvider from bleachbit.Worker import * from bleachbit import expanduser import os import tempfile import unittest class AccessDeniedActionAction(ActionProvider): action_key = 'access.denied' def __init__(self, action_element): self.pathname = action_element.getAttribute('path') def get_commands(self): # access denied, should fail and continue def accessdenied(): import errno raise OSError(errno.EACCES, 'Permission denied: /foo/bar') yield Command.Function(None, accessdenied, 'Test access denied') # real file, should succeed yield Command.Delete(self.pathname) class DoesNotExistAction(ActionProvider): action_key = 'does.not.exist' def __init__(self, action_element): self.pathname = action_element.getAttribute('path') def get_commands(self): # non-existent file, should fail and continue yield Command.Delete("doesnotexist") # real file, should succeed yield Command.Delete(self.pathname) class FunctionGeneratorAction(ActionProvider): action_key = 'function.generator' def __init__(self, action_element): self.pathname = action_element.getAttribute('path') def get_commands(self): # function generator without path, should succeed def funcgenerator(): yield 10 yield Command.Function(None, funcgenerator, 'funcgenerator') # real file, should succeed yield Command.Delete(self.pathname) class FunctionPathAction(ActionProvider): action_key = 'function.path' def __init__(self, action_element): self.pathname = action_element.getAttribute('path') def get_commands(self): # function with path, should succeed def pathfunc(path): pass # self.pathname must exist because it checks the file size yield Command.Function(self.pathname, pathfunc, 'pathfunc') # real file, should succeed yield Command.Delete(self.pathname) class InvalidEncodingAction(ActionProvider): action_key = 'invalid.encoding' def __init__(self, action_element): self.pathname = action_element.getAttribute('path') def get_commands(self): # file with invalid encoding (fd, filename) = tempfile.mkstemp('invalid-encoding-\xe4\xf6\xfc~') os.close(fd) yield Command.Delete(filename) # real file, should succeed yield Command.Delete(self.pathname) class FunctionPlainAction(ActionProvider): action_key = 'function.plain' def __init__(self, action_element): self.pathname = action_element.getAttribute('path') def get_commands(self): # plain function without path, should succeed def intfunc(): return int(5) yield Command.Function(None, intfunc, 'intfunc') # real file, should succeed yield Command.Delete(self.pathname) class LockedAction(ActionProvider): action_key = 'locked' def __init__(self, action_element): self.pathname = action_element.getAttribute('path') def get_commands(self): # Open the file with a non-exclusive lock, so the file should # be truncated and marked for deletion. This is checked just on # on Windows. f = os.open(self.pathname, os.O_RDWR) # Without admin privileges, this delete fails. yield Command.Delete(self.pathname) assert(os.path.exists(self.pathname)) from bleachbit.FileUtilities import getsize assert(0 == getsize(self.pathname)) os.close(f) # Now that the file is not locked, admin privileges # are not required to delete it. yield Command.Delete(self.pathname) class RuntimeErrorAction(ActionProvider): action_key = 'runtime' def __init__(self, action_element): self.pathname = action_element.getAttribute('path') def get_commands(self): # runtime exception, should fail and continue def runtime(): raise RuntimeError('This is a test exception') yield Command.Function(None, runtime, 'Test runtime exception') # real file, should succeed yield Command.Delete(self.pathname) class TruncateTestAction(ActionProvider): action_key = 'truncate.test' def __init__(self, action_element): self.pathname = action_element.getAttribute('path') def get_commands(self): # truncate real file yield Command.Truncate(self.pathname) # real file, should succeed yield Command.Delete(self.pathname) class WorkerTestCase(common.BleachbitTestCase): """Test case for module Worker""" def action_test_helper(self, command, special_expected, errors_expected, bytes_expected_posix, count_deleted_posix, bytes_expected_nt, count_deleted_nt): ui = CLI.CliCallback() (fd, filename) = tempfile.mkstemp(prefix='bleachbit-test-worker', dir=self.tempdir) os.write(fd, '123') os.close(fd) self.assertExists(filename) astr = '' % (command, filename) cleaner = TestCleaner.action_to_cleaner(astr) backends['test'] = cleaner operations = {'test': ['option1']} worker = Worker(ui, True, operations) run = worker.run() while run.next(): pass self.assertNotExists(filename, "Path still exists '%s'" % filename) self.assertEqual(worker.total_special, special_expected, 'For command %s expecting %s special operations but observed %d' % (command, special_expected, worker.total_special)) self.assertEqual(worker.total_errors, errors_expected, 'For command %s expecting %d errors but observed %d' % (command, errors_expected, worker.total_errors)) if 'posix' == os.name: self.assertEqual(worker.total_bytes, bytes_expected_posix) self.assertEqual(worker.total_deleted, count_deleted_posix) elif 'nt' == os.name: self.assertEqual(worker.total_bytes, bytes_expected_nt) self.assertEqual(worker.total_deleted, count_deleted_nt) def test_AccessDenied(self): """Test Worker using Action.AccessDeniedAction""" self.action_test_helper('access.denied', 0, 1, 4096, 1, 3, 1) def test_DoesNotExist(self): """Test Worker using Action.DoesNotExistAction""" self.action_test_helper('does.not.exist', 0, 1, 4096, 1, 3, 1) def test_FunctionGenerator(self): """Test Worker using Action.FunctionGenerator""" self.action_test_helper('function.generator', 1, 0, 4096 + 10, 1, 3 + 10, 1) def test_FunctionPath(self): """Test Worker using Action.FunctionPathAction""" self.action_test_helper('function.path', 1, 0, 4096, 1, 3, 1) def test_FunctionPlain(self): """Test Worker using Action.FunctionPlainAction""" self.action_test_helper('function.plain', 1, 0, 4096 + 5, 1, 3 + 5, 1) def test_InvalidEncoding(self): """Test Worker using Action.InvalidEncodingAction""" self.action_test_helper('invalid.encoding', 0, 0, 4096, 2, 3, 2) @unittest.skipUnless('nt' == os.name, 'skipping on non-Windows') def test_Locked(self): """Test Worker using Action.LockedAction""" from win32com.shell import shell if shell.IsUserAnAdmin(): errors_expected = 0 bytes_expected = 3 + 0 total_deleted = 2 else: errors_expected = 1 bytes_expected = 0 total_deleted = 1 self.action_test_helper( 'locked', 0, errors_expected, None, None, bytes_expected, total_deleted) def test_RuntimeError(self): """Test Worker using Action.RuntimeErrorAction The Worker module handles these differently than access denied exceptions """ self.action_test_helper('runtime', 0, 1, 4096, 1, 3, 1) def test_Truncate(self): """Test Worker using Action.TruncateTestAction """ self.action_test_helper('truncate.test', 0, 0, 4096, 2, 3, 2) def test_deep_scan(self): """Test for deep scan""" # load cleaners from XML import bleachbit.CleanerML bleachbit.CleanerML.load_cleaners() # DeepScan itself is tested elsewhere, so replace it here import bleachbit.DeepScan SaveDeepScan = bleachbit.DeepScan.DeepScan self.scanned = 0 parent = self class MyDeepScan: def add_search(self, dirname, regex): parent.assertEqual(dirname, expanduser('~')) parent.assertIn(regex, ['^Thumbs\\.db$', '^Thumbs\\.db:encryptable$']) def scan(self): parent.scanned+=1 yield True bleachbit.DeepScan.DeepScan = MyDeepScan # test operations = {'deepscan': ['thumbs_db']} ui = CLI.CliCallback() worker = Worker(ui, False, operations).run() while worker.next(): pass self.assertEqual(1, self.scanned) # clean up bleachbit.DeepScan.DeepScan = SaveDeepScan def test_multiple_options(self): """Test one cleaner with two options""" ui = CLI.CliCallback() filename1 = self.mkstemp(prefix='bleachbit-test-worker') filename2 = self.mkstemp(prefix='bleachbit-test-worker') astr1 = '' % filename1 astr2 = '' % filename2 cleaner = TestCleaner.actions_to_cleaner([astr1, astr2]) backends['test'] = cleaner operations = {'test': ['option1', 'option2']} worker = Worker(ui, True, operations) run = worker.run() while run.next(): pass self.assertNotExists(filename1) self.assertNotExists(filename2) self.assertEqual(worker.total_special, 0) self.assertEqual(worker.total_errors, 0) self.assertEqual(worker.total_deleted, 2) bleachbit-2.0/tests/common.py0000644000175000017500000001235213245436307014410 0ustar hlehle# vim: ts=4:sw=4:expandtab # BleachBit # Copyright (C) 2008-2018 Andrew Ziem # https://www.bleachbit.org # # This program is free software: you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by # the Free Software Foundation, either version 3 of the License, or # (at your option) any later version. # # This program is distributed in the hope that it will be useful, # but WITHOUT ANY WARRANTY; without even the implied warranty of # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the # GNU General Public License for more details. # # You should have received a copy of the GNU General Public License # along with this program. If not, see . """ Common code for unit tests """ from __future__ import absolute_import, print_function from bleachbit.FileUtilities import extended_path import unittest import shutil import tempfile import os import os.path class BleachbitTestCase(unittest.TestCase): """TestCase class with several convenience methods and asserts""" @classmethod def setUpClass(cls): """Create a temporary directory for the testcase""" cls.tempdir = tempfile.mkdtemp(prefix=cls.__name__) print(cls.tempdir) @classmethod def tearDownClass(cls): """remove the temporary directory""" shutil.rmtree(cls.tempdir) def setUp(cls): """Call before each test method""" basedir = os.path.join(os.path.dirname(__file__), '..') os.chdir(basedir) # # type asserts # def assertIsInteger(self, obj, msg=''): self.assertIsInstance(obj, (int, long), msg) def assertIsUnicodeString(self, obj, msg=''): self.assertIsInstance(obj, unicode, msg) def assertIsString(self, obj, msg=''): self.assertIsInstance(obj, (unicode, str), msg) def assertIsBytes(self, obj, msg=''): self.assertIsInstance(obj, bytes, msg) # # file asserts # def assertExists(self, path, msg='', func=os.path.exists): """File, directory, or any path exists""" from bleachbit import expandvars path = expandvars(path) if not func(getTestPath(path)): raise AssertionError('The file %s should exist, but it does not. %s' % (path, msg)) def assertLExists(self, path, msg=''): self.assertExists(path, msg, os.path.lexists) def assertNotLExists(self, path, msg=''): self.assertNotExists(path, msg, os.path.lexists) def assertNotExists(self, path, msg='', func=os.path.exists): if func(getTestPath(path)): raise AssertionError('The file %s should not exist, but it does. %s' % (path, msg)) def assertCondExists(self, cond, path, msg=''): if cond: self.assertExists(path, msg) else: self.assertNotExists(path, msg) # # file creation functions # def write_file(self, filename, contents=''): """Create a temporary file, optionally writing contents to it""" if not os.path.isabs(filename): filename = os.path.join(self.tempdir, filename) with open(extended_path(filename), 'wb') as f: f.write(contents) assert (os.path.exists(extended_path(filename))) return filename def mkstemp(self, **kwargs): if 'dir' not in kwargs: kwargs['dir'] = self.tempdir (fd, filename) = tempfile.mkstemp(**kwargs) os.close(fd) return filename def mkdtemp(self, **kwargs): if 'dir' not in kwargs: kwargs['dir'] = self.tempdir return tempfile.mkdtemp(**kwargs) def getTestPath(path): if 'nt' == os.name: return extended_path(os.path.normpath(path)) return path def destructive_tests(title): """Return true if allowed to run destructive tests. If false print notice.""" if os.getenv('DESTRUCTIVE_TESTS') == 'T': return True print('warning: skipping test(s) for %s because not getenv(DESTRUCTIVE_TESTS)=T' % title) return False def touch_file(filename): """Create an empty file""" with open(filename, "w") as f: pass assert(os.path.exists(filename)) def validate_result(self, result, really_delete=False): """Validate the command returned valid results""" self.assertIsInstance(result, dict, "result is a %s" % type(result)) # label self.assertIsString(result['label']) self.assertGreater(len(result['label'].strip()), 0) # n_* self.assertIsInteger(result['n_deleted']) self.assertGreaterEqual(result['n_deleted'], 0) self.assertLessEqual(result['n_deleted'], 1) self.assertEqual(result['n_special'] + result['n_deleted'], 1) # size self.assertIsInstance(result['size'], (int, long, type(None),), "size is %s" % str(result['size'])) # path filename = result['path'] if not filename: # the process action, for example, does not have a filename return self.assertIsInstance(filename, (str, unicode, type(None)), "Filename is invalid: '%s' (type %s)" % (filename, type(filename))) if isinstance(filename, (str, unicode)) and not filename[0:2] == 'HK': if really_delete: self.assertNotLExists(filename) else: self.assertLExists(filename) bleachbit-2.0/tests/TestGeneral.py0000644000175000017500000001237513245436307015342 0ustar hlehle# vim: ts=4:sw=4:expandtab # BleachBit # Copyright (C) 2008-2018 Andrew Ziem # https://www.bleachbit.org # # This program is free software: you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by # the Free Software Foundation, either version 3 of the License, or # (at your option) any later version. # # This program is distributed in the hope that it will be useful, # but WITHOUT ANY WARRANTY; without even the implied warranty of # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the # GNU General Public License for more details. # # You should have received a copy of the GNU General Public License # along with this program. If not, see . """ Test case for module General """ from __future__ import absolute_import, print_function from bleachbit.General import * from bleachbit import logger from tests import common import shutil import unittest class GeneralTestCase(common.BleachbitTestCase): """Test case for module General""" def test_boolstr_to_bool(self): """Test case for method boolstr_to_bool""" tests = (('True', True), ('true', True), ('False', False), ('false', False)) for test in tests: self.assertEqual(boolstr_to_bool(test[0]), test[1]) def test_getrealuid(self): """Test for getrealuid()""" if 'posix' != os.name: self.assertRaises(RuntimeError, getrealuid) return uid = getrealuid() self.assertIsInstance(uid, int) self.assertTrue(0 <= uid <= 65535) if sudo_mode(): self.assertGreater(uid, 0) logger.debug("os.getenv('LOGNAME') = %s", os.getenv('LOGNAME')) logger.debug("os.getenv('SUDO_UID') = %s", os.getenv('SUDO_UID')) logger.debug('os.geteuid() = %d', os.geteuid()) logger.debug('os.getuid() = %d', os.getuid()) try: logger.debug('os.login() = %s', os.getlogin()) except: logger.exception('os.login() raised exception') def test_makedirs(self): """Unit test for makedirs""" dir = os.path.join(self.tempdir, 'just', 'a', 'directory', 'adventure') # directory does not exist makedirs(dir) self.assertLExists(dir) # directory already exists makedirs(dir) self.assertLExists(dir) # clean up shutil.rmtree(os.path.join(self.tempdir, 'just')) def test_run_external(self): """Unit test for run_external""" args = {'nt': ['cmd.exe', '/c', 'dir', '%windir%\system32', '/s', '/b'], 'posix': ['find', '/usr/bin']} (rc, stdout, stderr) = run_external(args[os.name]) self.assertEqual(0, rc) self.assertEqual(0, len(stderr)) self.assertRaises(OSError, run_external, ['cmddoesnotexist']) args = {'nt': ['cmd.exe', '/c', 'dir', 'c:\doesnotexist'], 'posix': ['ls', '/doesnotexist']} (rc, stdout, stderr) = run_external(args[os.name]) self.assertNotEqual(0, rc) @unittest.skipUnless('posix' == os.name, 'skipping on platforms without sudo') def test_run_external_clean_env(self): """Unit test for clean_env parameter to run_external()""" def run(args, clean_env): (rc, stdout, stderr) = run_external(args, clean_env=clean_env) self.assertEqual(rc, 0) return stdout.rstrip('\n') # clean_env should set language to C run(['sh', '-c', '[ "x$LANG" = "xC" ]'], clean_env=True) run(['sh', '-c', '[ "x$LC_ALL" = "xC" ]'], clean_env=True) # clean_env parameter should not alter the PATH, and the PATH # should not be empty path_clean = run(['bash', '-c', 'echo $PATH'], clean_env=True) self.assertEqual(os.getenv('PATH'), path_clean) self.assertGreater(len(path_clean), 10) path_unclean = run(['bash', '-c', 'echo $PATH'], clean_env=False) self.assertEqual(path_clean, path_unclean) # With parent environment set to English and parameter clean_env=False, # expect English. os.putenv('LC_ALL', 'C') (rc, stdout, stderr) = run_external( ['ls', '/doesnotexist'], clean_env=False) self.assertEqual(rc, 2) self.assertTrue('No such file' in stderr) # Set parent environment to Spanish. os.putenv('LC_ALL', 'es_MX.UTF-8') (rc, stdout, stderr) = run_external( ['ls', '/doesnotexist'], clean_env=False) self.assertEqual(rc, 2) if os.path.exists('/usr/share/locale-langpack/es/LC_MESSAGES/coreutils.mo'): # Spanish language pack is installed. self.assertTrue('No existe el archivo' in stderr) # Here the parent environment has Spanish, but the child process # should use English. (rc, stdout, stderr) = run_external( ['ls', '/doesnotexist'], clean_env=True) self.assertEqual(rc, 2) self.assertTrue('No such file' in stderr) # Reset environment os.unsetenv('LC_ALL') @unittest.skipUnless('posix' == os.name, 'skipping on platforms without sudo') def test_sudo_mode(self): """Unit test for sudo_mode""" self.assertIsInstance(sudo_mode(), bool) bleachbit-2.0/tests/TestUnix.py0000644000175000017500000002461313245436307014706 0ustar hlehle# vim: ts=4:sw=4:expandtab # -*- coding: UTF-8 -*- # BleachBit # Copyright (C) 2008-2018 Andrew Ziem # https://www.bleachbit.org # # This program is free software: you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by # the Free Software Foundation, either version 3 of the License, or # (at your option) any later version. # # This program is distributed in the hope that it will be useful, # but WITHOUT ANY WARRANTY; without even the implied warranty of # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the # GNU General Public License for more details. # # You should have received a copy of the GNU General Public License # along with this program. If not, see . """ Test case for module Unix """ from __future__ import absolute_import, print_function from tests import common import bleachbit from bleachbit.Unix import * import os import sys import unittest @unittest.skipIf('win32' == sys.platform, 'skipping unix tests on windows') class UnixTestCase(common.BleachbitTestCase): """Test case for module Unix""" def setUp(self): """Initialize unit tests""" self.locales = Locales() super(UnixTestCase, self).setUp() def test_apt(self): """Unit test for method apt_autoclean() and apt_autoremove()""" if 0 != os.geteuid() or not FileUtilities.exe_exists('apt-get'): self.assertRaises(RuntimeError, apt_autoclean) self.assertRaises(RuntimeError, apt_autoremove) else: bytes_freed = apt_autoclean() self.assertIsInteger(bytes_freed) bytes_freed = apt_autoremove() self.assertIsInteger(bytes_freed) def test_get_apt_size(self): """Unit test for method get_apt_size()""" size = get_apt_size() self.assertIsInteger(size) self.assertGreaterEqual(size, 0) def test_is_broken_xdg_desktop(self): """Unit test for is_broken_xdg_desktop()""" menu_dirs = ['/usr/share/applications', '/usr/share/autostart', '/usr/share/gnome/autostart', '/usr/share/gnome/apps', '/usr/share/mimelnk', '/usr/share/applnk-redhat/', '/usr/local/share/applications/'] for dirname in menu_dirs: for filename in [fn for fn in FileUtilities.children_in_directory(dirname, False) if fn.endswith('.desktop')]: self.assertIsInstance(is_broken_xdg_desktop(filename), bool) def test_is_running_darwin(self): def run_ps(): return """USER PID %CPU %MEM VSZ RSS TT STAT STARTED TIME COMMAND root 703 0.0 0.0 2471428 2792 ?? Ss 20May16 0:01.30 SubmitDiagInfo alocaluseraccount 681 0.0 0.0 2471568 856 ?? S 20May16 0:00.81 DiskUnmountWatcher alocaluseraccount 666 0.0 0.0 2507092 3488 ?? S 20May16 0:17.47 SpotlightNetHelper root 665 0.0 0.0 2497508 512 ?? Ss 20May16 0:11.30 check_afp alocaluseraccount 646 0.0 0.1 2502484 5656 ?? S 20May16 0:03.62 DataDetectorsDynamicData alocaluseraccount 632 0.0 0.0 2471288 320 ?? S 20May16 0:02.79 mdflagwriter alocaluseraccount 616 0.0 0.0 2497596 520 ?? S 20May16 0:00.41 familycircled alocaluseraccount 573 0.0 0.0 3602328 2440 ?? S 20May16 0:39.64 storedownloadd alocaluseraccount 572 0.0 0.0 2531184 3116 ?? S 20May16 0:02.93 LaterAgent alocaluseraccount 561 0.0 0.0 2471492 584 ?? S 20May16 0:00.21 USBAgent alocaluseraccount 535 0.0 0.0 2496656 524 ?? S 20May16 0:00.33 storelegacy root 531 0.0 0.0 2501712 588 ?? Ss 20May16 0:02.40 suhelperd """ self.assertTrue(is_running_darwin('USBAgent', run_ps)) self.assertFalse(is_running_darwin('does-not-exist', run_ps)) self.assertRaises(RuntimeError, is_running_darwin, 'foo', lambda: 'invalid-input') def test_is_running(self): # Fedora 11 doesn't need realpath but Ubuntu 9.04 uses symlink # from /usr/bin/python to python2.6 exe = os.path.basename(os.path.realpath(sys.executable)) self.assertTrue(is_running(exe)) self.assertFalse(is_running('does-not-exist')) def test_journald_clean(self): if not FileUtilities.exe_exists('journalctl'): self.assertRaises(RuntimeError, journald_clean) else: journald_clean() def test_locale_regex(self): """Unit test for locale_to_language()""" tests = {'en': 'en', 'en_US': 'en', 'en_US@piglatin': 'en', 'en_US.utf8': 'en', 'ko_KR.eucKR': 'ko', 'pl.ISO8859-2': 'pl', 'zh_TW.Big5': 'zh'} import re regex = re.compile('^' + Locales.localepattern + '$') for locale, tlc in tests.items(): m = regex.match(locale) self.assertIsNotNone(m, 'expected positive match for ' + locale) self.assertEqual(m.group("locale"), tlc) for test in ['default', 'C', 'English', 'ru_RU.txt', 'ru.txt']: self.assertIsNone(regex.match(test), 'expected negative match for ' + test) def test_localization_paths(self): """Unit test for localization_paths()""" from xml.dom.minidom import parseString configpath = parseString( '').firstChild locales.add_xml(configpath) counter = 0 for path in locales.localization_paths(['en']): self.assertLExists(path) # self.assert_(path.startswith('/usr/share/locale')) # /usr/share/locale/en_* should be ignored self.assertEqual(path.find('/en_'), -1) counter += 1 self.assertGreater(counter, 0, 'Zero files deleted by localization cleaner.' + 'This may be an error unless you really deleted all the files.') def test_fakelocalizationdirs(self): """Create a faked localization hierarchy and clean it afterwards""" keepdirs = [ 'important_dontdelete', 'important_dontdelete/ru', 'delete', 'delete/locale', 'delete/locale/en', 'delete/dummyfiles', 'foobar', 'foobar/locale'] nukedirs = [ 'delete/locale/ru', 'foobar/locale/ru'] keepfiles = [ 'delete/dummyfiles/dontdeleteme_ru.txt', 'important_dontdelete/exceptthisone_ru.txt', 'delete/dummyfiles/en.txt', 'delete/dummyfiles/ru.dic'] nukefiles = [ 'delete/dummyfiles/ru.txt', 'delete/locale/ru_RU.UTF8.txt'] for path in keepdirs + nukedirs: os.mkdir(os.path.join(self.tempdir, path)) for path in keepfiles + nukefiles: self.write_file(path) configxml = '' \ ' ' \ ' ' \ ' ' \ ' ' \ '' from xml.dom.minidom import parseString config = parseString(configxml) self.locales._paths = LocaleCleanerPath(self.tempdir) self.locales.add_xml(config.firstChild, None) # normpath because paths may contain ./ deletelist = [os.path.normpath(path) for path in self.locales.localization_paths(['en', 'de'])] for path in keepdirs + keepfiles: self.assertNotIn(os.path.join(self.tempdir, path), deletelist) for path in nukedirs + nukefiles: self.assertIn(os.path.join(self.tempdir, path), deletelist) def test_rotated_logs(self): """Unit test for rotated_logs()""" for path in rotated_logs(): self.assertLExists(path, "Rotated log path '%s' does not exist" % path) def test_run_cleaner_cmd(self): from subprocess import CalledProcessError self.assertRaises(RuntimeError, run_cleaner_cmd, '/hopethisdoesntexist', []) self.assertRaises(CalledProcessError, run_cleaner_cmd, 'sh', ['-c', 'echo errormsg; false']) # test if regexes for invalid lines work self.assertRaises(RuntimeError, run_cleaner_cmd, 'echo', ['This is an invalid line'], error_line_regexes=['invalid']) freed_space_regex = r'^Freed ([\d.]+[kMT]?B)' lines = ['Test line', 'Freed 100B on your hard drive', 'Freed 1.9kB, hooray!', 'Fred 12MB'] freed_space = run_cleaner_cmd('echo', ['\n'.join(lines)], freed_space_regex) self.assertEqual(freed_space, 2000) def test_start_with_computer(self): """Unit test for start_with_computer*""" b = start_with_computer_check() self.assertIsInstance(b, bool) import os import os.path if not os.path.exists(bleachbit.launcher_path) and os.path.exists('bleachbit.desktop'): # this happens when BleachBit is not installed bleachbit.launcher_path = 'bleachbit.desktop' # opposite setting start_with_computer(not b) two_b = start_with_computer_check() self.assertIsInstance(two_b, bool) self.assertNotEqual(b, two_b) # original setting start_with_computer(b) three_b = start_with_computer_check() self.assertIsInstance(b, bool) self.assertEqual(b, three_b) def test_wine_to_linux_path(self): """Unit test for wine_to_linux_path()""" wineprefix = "/home/foo/.wine" windows_pathname = "C:\\Program Files\\NSIS\\NSIS.exe" result = "/home/foo/.wine/drive_c/Program Files/NSIS/NSIS.exe" self.assertEqual(wine_to_linux_path(wineprefix, windows_pathname), result) def test_yum_clean(self): """Unit test for yum_clean()""" if 0 != os.geteuid() or os.path.exists('/var/run/yum.pid') \ or not FileUtilities.exe_exists('yum'): self.assertRaises(RuntimeError, yum_clean) else: bytes_freed = yum_clean() self.assertIsInteger(bytes_freed) bleachbit.logger.debug('yum bytes cleaned %d', bytes_freed) bleachbit-2.0/tests/TestOptions.py0000644000175000017500000001254313245436307015415 0ustar hlehle# vim: ts=4:sw=4:expandtab # BleachBit # Copyright (C) 2008-2018 Andrew Ziem # https://www.bleachbit.org # # This program is free software: you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by # the Free Software Foundation, either version 3 of the License, or # (at your option) any later version. # # This program is distributed in the hope that it will be useful, # but WITHOUT ANY WARRANTY; without even the implied warranty of # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the # GNU General Public License for more details. # # You should have received a copy of the GNU General Public License # along with this program. If not, see . """ Test case for module Options """ from __future__ import absolute_import, print_function from tests import common import bleachbit.Options from bleachbit import NoOptionError import os class OptionsTestCase(common.BleachbitTestCase): """Test case for class Options""" def test_Options(self): """Unit test for class Options""" o = bleachbit.Options.options value = o.get("check_online_updates") # toggle a boolean o.toggle('check_online_updates') self.assertEqual(not value, o.get("check_online_updates")) # restore original boolean o.set("check_online_updates", value) self.assertEqual(value, o.get("check_online_updates")) # test auto commit shred = o.get("shred") o.set("shred", False) self.assertFalse(o.get("shred")) o.set("shred", True, commit=False) self.assertTrue(o.get("shred")) o.restore() self.assertFalse(o.get("shred")) o.set("shred", shred) self.assertEqual(o.get("shred"), shred) # try a list list_values = ['a', 'b', 'c'] o.set_list("list_test", list_values) self.assertEqual(list_values, o.get_list("list_test")) # whitelist self.assertIsInstance(o.get_whitelist_paths(), list) whitelist = [('file', '/home/foo'), ('folder', '/home')] old_whitelist = o.get_whitelist_paths() o.config.remove_section('whitelist/paths') self.assertIsInstance(o.get_whitelist_paths(), list) self.assertEqual(o.get_whitelist_paths(), []) o.set_whitelist_paths(whitelist) self.assertIsInstance(o.get_whitelist_paths(), list) self.assertEqual(set(whitelist), set(o.get_whitelist_paths())) o.set_whitelist_paths(old_whitelist) self.assertEqual(set(old_whitelist), set(o.get_whitelist_paths())) # these should always be set for bkey in bleachbit.Options.boolean_keys: self.assertIsInstance(o.get(bkey), bool) # language value = o.get_language('en') self.assertIsInstance(value, bool) o.set_language('en', True) self.assertTrue(o.get_language('en')) o.set_language('en', False) self.assertFalse(o.get_language('en')) o.set_language('en', value) # tree o.set_tree("parent", "child", True) self.assertTrue(o.get_tree("parent", "child")) o.set_tree("parent", "child", False) self.assertFalse(o.get_tree("parent", "child")) o.config.remove_option("tree", "parent.child") self.assertFalse(o.get_tree("parent", "child")) # clean up del o def test_purge(self): """Test purging""" # By default ConfigParser stores keys (the filenames) as lowercase. # This needs special consideration when combined with purging. o1 = bleachbit.Options.Options() pathname = self.write_file('foo.xml') myhash = '0ABCD' o1.set_hashpath(pathname, myhash) self.assertEqual(myhash, o1.get_hashpath(pathname)) if 'nt' == os.name: # check case sensitivity self.assertEqual(myhash, o1.get_hashpath(pathname.upper())) del o1 # reopen o2 = bleachbit.Options.Options() # write something, which triggers the purge o2.set('dummypath', 'dummyvalue', 'hashpath') # verify the path was not purged self.assertTrue(os.path.exists(pathname)) self.assertEqual(myhash, o2.get_hashpath(pathname)) # delete the path os.remove(pathname) # close and reopen del o2 o3 = bleachbit.Options.Options() # write something, which triggers the purge o3.set('dummypath', 'dummyvalue', 'hashpath') # verify the path was purged self.assertRaises(NoOptionError, lambda: o3.get_hashpath(pathname)) def test_abbreviations(self): """Test non-standard, abbreviated booleans T and F""" # set values o = bleachbit.Options.options if not o.config.has_section('test'): o.config.add_section('test') o.config.set('test', 'test_t_upper', 'T') o.config.set('test', 'test_f_upper', 'F') o.config.set('test', 'test_t_lower', 't') o.config.set('test', 'test_f_lower', 'f') # read self.assertEqual(o.config.getboolean('test', 'test_t_upper'), True) self.assertEqual(o.config.getboolean('test', 'test_t_lower'), True) self.assertEqual(o.config.getboolean('test', 'test_f_upper'), False) self.assertEqual(o.config.getboolean('test', 'test_f_lower'), False) # clean up del o bleachbit-2.0/tests/TestWipe.py0000644000175000017500000001457313245436307014673 0ustar hlehle#!/usr/bin/env python # vim: ts=4:sw=4:expandtab # BleachBit # Copyright (C) 2008-2018 Andrew Ziem # https://www.bleachbit.org # # This program is free software: you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by # the Free Software Foundation, either version 3 of the License, or # (at your option) any later version. # # This program is distributed in the hope that it will be useful, # but WITHOUT ANY WARRANTY; without even the implied warranty of # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the # GNU General Public License for more details. # # You should have received a copy of the GNU General Public License # along with this program. If not, see . """ Test FileUtilities.wipe_path """ from __future__ import absolute_import, print_function from bleachbit.FileUtilities import delete, free_space, listdir, wipe_path from bleachbit.General import run_external import logging import os import sys import tempfile import time import traceback import unittest logger = logging.getLogger('bleachbit') def create_disk_image(n_bytes): """Make blank file and return filename""" (fd, filename) = tempfile.mkstemp( suffix='disk-image', prefix='bleachbit-wipe-test') for x in range(1, int(n_bytes / 1e5)): os.write(fd, '\x00' * 100000) os.close(fd) return filename def format_filesystem(filename, mkfs_cmd): args = [] for arg in mkfs_cmd: if arg == 'filename': args.append(filename) else: args.append(arg) (rc, stdout, stderr) = run_external(args) assert(rc == 0) def make_dirty(mountpoint): create_counter = 0 write_counter = 0 contents = 'sssshhhh' * 512 while True: try: fn = os.path.join(mountpoint, 'secret' + str(create_counter)) f = open(fn, 'w') create_counter += 1 except: logger.error('while creating temporary file #%d', create_counter) break try: f.write(contents) f.flush() write_counter += 1 except IOError: break try: f.close() except: logger.error('while closing temporary file %s', f.name) break logger.debug('created %d files and wrote to %d files', create_counter, write_counter) def mount_filesystem(filename, mountpoint): args = ['mount', '-o', 'loop', filename, mountpoint] (rc, stdout, stderr) = run_external(args) if stderr: print(stderr) assert(rc == 0) print('mounted %s at %s', filename, mountpoint) def unmount_filesystem(mountpoint): time.sleep(0.5) # avoid "in use" error args = ['umount', mountpoint] attempts = 0 while True: (rc, stdout, stderr) = run_external(args) if stderr: print(stderr) if 0 == rc: break attempts += 1 time.sleep(attempts * 2) if attempts > 5: raise RuntimeError('cannot umount') def verify_cleanliness(filename): """Return True if the file is clean""" strings_ret = run_external(['strings', filename]) secret_count = strings_ret[1].count('secret') # filename sssshhhh_count = strings_ret[1].count('sssshhhh') # contents logger.debug('found %d sssshhhhh in image (contents) and %d secret (filename)', sssshhhh_count, secret_count) clean = ((secret_count > 0) * 1) + ((sssshhhh_count > 0) * 10) print('%s is clean: %s', filename, clean) return clean @unittest.skipIf('nt' == os.name, 'test_wipe() not supported on Windows') def test_wipe_sub(n_bytes, mkfs_cmd): """Test FileUtilities.wipe_path""" filename = create_disk_image(n_bytes) print('created disk image %s' % filename) # format filesystem format_filesystem(filename, mkfs_cmd) # mount mountpoint = tempfile.mkdtemp(prefix='bleachbit-wipe-mountpoint') mount_filesystem(filename, mountpoint) # baseline free disk space print('df for clean filesystem') print(run_external(['df', mountpoint])[1]) # make dirty make_dirty(mountpoint) # verify dirtiness unmount_filesystem(mountpoint) assert(verify_cleanliness(filename) == 11) mount_filesystem(filename, mountpoint) # standard delete logger.info('standard delete') delete_counter = 0 for secretfile in listdir(mountpoint): if 'secret' not in secretfile: # skip lost+found continue delete(secretfile, shred=False) delete_counter += 1 logger.debug('deleted %d files', delete_counter) # check print('df for empty, dirty filesystem') print(run_external(['df', mountpoint])[1]) # verify dirtiness unmount_filesystem(mountpoint) assert(verify_cleanliness(filename) == 11) mount_filesystem(filename, mountpoint) expected_free_space = free_space(mountpoint) # measure effectiveness of multiple wipes for i in range(1, 10): print('*' * 30) print('* pass %d *' % i) print('*' * 30) # remount if i > 1: mount_filesystem(filename, mountpoint)\ # really wipe print('wiping %s' % mountpoint) for w in wipe_path(mountpoint): pass # verify cleaning process freed all space it allocated actual_free_space = free_space(mountpoint) if not expected_free_space == actual_free_space: print ('expecting %d free space but got %d' % (expected_free_space, actual_free_space)) import pdb pdb.set_trace() # unmount unmount_filesystem(mountpoint) # verify cleanliness cleanliness = verify_cleanliness(filename) assert(cleanliness < 2) # remove temporary delete(filename) delete(mountpoint) def test_wipe(): """Test wiping on several kinds of file systems""" n_bytes = 10000000 mkfs_cmds = (('/sbin/mkfs.ext3', '-q', '-F', 'filename'),) # ('/sbin/mkfs.ext4', '-q', '-F', 'filename')) # ('/sbin/mkntfs', '-F', 'filename'), # ('/sbin/mkfs.vfat', 'filename') ) for mkfs_cmd in mkfs_cmds: print() print('*' * 70) print(' '.join(mkfs_cmd)) print('*' * 70) print() try: test_wipe_sub(n_bytes, mkfs_cmd) except: print(sys.exc_info()[1]) traceback.print_exc() test_wipe() bleachbit-2.0/tests/TestSpecial.py0000644000175000017500000005422313245436307015343 0ustar hlehle# vim: ts=4:sw=4:expandtab # -*- coding: UTF-8 -*- # BleachBit # Copyright (C) 2008-2018 Andrew Ziem # https://www.bleachbit.org # # This program is free software: you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by # the Free Software Foundation, either version 3 of the License, or # (at your option) any later version. # # This program is distributed in the hope that it will be useful, # but WITHOUT ANY WARRANTY; without even the implied warranty of # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the # GNU General Public License for more details. # # You should have received a copy of the GNU General Public License # along with this program. If not, see . """ Test case for module Special """ from __future__ import absolute_import, print_function from bleachbit.Options import options from bleachbit import FileUtilities, Special from tests import common import os import os.path import shutil import sqlite3 chrome_bookmarks = """ { "checksum": "0313bd70dd6343134782af4b233016bf", "roots": { "bookmark_bar": { "children": [ ], "date_added": "12985843036082659", "date_modified": "0", "id": "1", "name": "Bookmarks Bar", "type": "folder" }, "other": { "children": [ { "children": [ { "date_added": "12985843072462200", "id": "6", "name": "BleachBit", "type": "url", "url": "https://www.bleachbit.org/" } ], "date_added": "12985843051141788", "date_modified": "12985843072462200", "id": "4", "name": "software", "type": "folder" }, { "children": [ { "date_added": "12985843081812026", "id": "7", "name": "Slashdot", "type": "url", "url": "http://www.slashdot.org/" } ], "date_added": "12985843060482329", "date_modified": "12985843081812026", "id": "5", "name": "news", "type": "folder" } ], "date_added": "12985843036082740", "date_modified": "0", "id": "2", "name": "Other Bookmarks", "type": "folder" }, "synced": { "children": [ ], "date_added": "12985843036082744", "date_modified": "0", "id": "3", "name": "Mobile Bookmarks", "type": "folder" } }, "version": 1 }""" # from Google Chrome 23 chrome_history_sql = """ CREATE TABLE meta(key LONGVARCHAR NOT NULL UNIQUE PRIMARY KEY, value LONGVARCHAR); INSERT INTO "meta" VALUES('version','23'); CREATE TABLE urls(id INTEGER PRIMARY KEY,url LONGVARCHAR,title LONGVARCHAR,visit_count INTEGER DEFAULT 0 NOT NULL,typed_count INTEGER DEFAULT 0 NOT NULL,last_visit_time INTEGER NOT NULL,hidden INTEGER DEFAULT 0 NOT NULL,favicon_id INTEGER DEFAULT 0 NOT NULL); INSERT INTO "urls" VALUES(1,'http://sqlite.org/','SQLite Home Page',1,0,13001833567334094,0,0); INSERT INTO "urls" VALUES(2,'https://www.bleachbit.org/','BleachBit - Clean Disk Space, Maintain Privacy',1,0,13001833567892577,0,0); CREATE TABLE visits(id INTEGER PRIMARY KEY,url INTEGER NOT NULL,visit_time INTEGER NOT NULL,from_visit INTEGER,transition INTEGER DEFAULT 0 NOT NULL,segment_id INTEGER,is_indexed BOOLEAN,visit_duration INTEGER DEFAULT 0 NOT NULL); INSERT INTO "visits" VALUES(1,1,13001833567334094,0,805306374,0,1,8629624); INSERT INTO "visits" VALUES(2,2,13001833567892577,0,805306374,0,1,9249493); CREATE TABLE keyword_search_terms (keyword_id INTEGER NOT NULL,url_id INTEGER NOT NULL,lower_term LONGVARCHAR NOT NULL,term LONGVARCHAR NOT NULL); INSERT INTO "keyword_search_terms" VALUES(2,3,'bleachbit','bleachbit'); CREATE TABLE downloads (id INTEGER PRIMARY KEY,full_path LONGVARCHAR NOT NULL,url LONGVARCHAR NOT NULL,start_time INTEGER NOT NULL,received_bytes INTEGER NOT NULL,total_bytes INTEGER NOT NULL,state INTEGER NOT NULL,end_time INTEGER NOT NULL,opened INTEGER NOT NULL); CREATE TABLE segments (id INTEGER PRIMARY KEY,name VARCHAR,url_id INTEGER NON NULL,pres_index INTEGER DEFAULT -1 NOT NULL); CREATE TABLE segment_usage (id INTEGER PRIMARY KEY,segment_id INTEGER NOT NULL,time_slot INTEGER NOT NULL,visit_count INTEGER DEFAULT 0 NOT NULL); """ # from Google Chrome 23 chrome_webdata = """ CREATE TABLE meta(key LONGVARCHAR NOT NULL UNIQUE PRIMARY KEY, value LONGVARCHAR); INSERT INTO "meta" VALUES('version','46'); CREATE TABLE keywords (id INTEGER PRIMARY KEY,short_name VARCHAR NOT NULL,keyword VARCHAR NOT NULL,favicon_url VARCHAR NOT NULL,url VARCHAR NOT NULL,safe_for_autoreplace INTEGER,originating_url VARCHAR,date_created INTEGER DEFAULT 0,usage_count INTEGER DEFAULT 0,input_encodings VARCHAR,show_in_default_list INTEGER,suggest_url VARCHAR,prepopulate_id INTEGER DEFAULT 0,created_by_policy INTEGER DEFAULT 0,instant_url VARCHAR,last_modified INTEGER DEFAULT 0,sync_guid VARCHAR); INSERT INTO "keywords" VALUES(2,'Google','google.com','http://www.google.com/favicon.ico','{google:baseURL}search?q={searchTerms}&{google:RLZ}{google:acceptedSuggestion}{google:originalQueryForSuggestion}{google:assistedQueryStats}{google:searchFieldtrialParameter}sourceid=chrome&ie={inputEncoding}',1,'',0,0,'UTF-8',1,'{google:baseSuggestURL}search?{google:searchFieldtrialParameter}client=chrome&hl={language}&q={searchTerms}&sugkey={google:suggestAPIKeyParameter}',1,0,'{google:baseURL}webhp?sourceid=chrome-instant&{google:RLZ}{google:instantEnabledParameter}ie={inputEncoding}',0,'2D65ABE4-008A-21F1-8C9E-C95DE46CC245'); INSERT INTO "keywords" VALUES(3,'Yahoo! Canada','ca.yahoo.com','http://ca.search.yahoo.com/favicon.ico','http://ca.search.yahoo.com/search?ei={inputEncoding}&fr=crmas&p={searchTerms}',1,'',0,0,'UTF-8',1,'http://gossip.ca.yahoo.com/gossip-ca-sayt?output=fxjsonp&command={searchTerms}',2,0,'',0,'F4BAF053-6C8E-6183-C8BB-3104F82260AD'); INSERT INTO "keywords" VALUES(4,'Yahoo! Québec','qc.yahoo.com','http://qc.search.yahoo.com/favicon.ico','http://qc.search.yahoo.com/search?ei={inputEncoding}&fr=crmas&p={searchTerms}',1,'',0,0,'UTF-8',1,'',5,0,'',0,'B42D7616-CF8F-6677-A206-19345BB5FE0F'); INSERT INTO "keywords" VALUES(5,'Bing','bing.com','http://www.bing.com/s/wlflag.ico','http://www.bing.com/search?setmkt=en-CA&q={searchTerms}',1,'',0,0,'UTF-8',1,'http://api.bing.com/osjson.aspx?query={searchTerms}&language={language}',3,0,'',0,'73FA48F9-1ABD-BA46-F563-1AF75572B5DF'); INSERT INTO "keywords" VALUES(6,'Bing','bing.com_','http://www.bing.com/s/wlflag.ico','http://www.bing.com/search?setmkt=fr-CA&q={searchTerms}',1,'',0,0,'UTF-8',1,'http://api.bing.com/osjson.aspx?query={searchTerms}&language={language}',7,0,'',0,'2D932B46-8F26-5C02-7E2F-BE62F263BE9D'); INSERT INTO "keywords" VALUES(7,'cnn.com','cnn.com','http://www.cnn.com/favicon.ico','http://www.cnn.com/search/?query={searchTerms}&x=0&y=0&primaryType=mixed&sortBy=relevance&intl=false',1,'',1357360881,0,'UTF-8',0,'',0,0,'',1357360881,'0B71F4CA-380D-0228-064F-24CDF1F8FBD1'); CREATE TABLE keywords_backup( id INT, short_name TEXT, keyword TEXT, favicon_url TEXT, url TEXT, safe_for_autoreplace INT, originating_url TEXT, date_created INT, usage_count INT, input_encodings TEXT, show_in_default_list INT, suggest_url TEXT, prepopulate_id INT, created_by_policy INT, instant_url TEXT, last_modified INT, sync_guid TEXT ); INSERT INTO "keywords_backup" VALUES(2,'Google','google.com','http://www.google.com/favicon.ico','{google:baseURL}search?q={searchTerms}&{google:RLZ}{google:acceptedSuggestion}{google:originalQueryForSuggestion}{google:assistedQueryStats}{google:searchFieldtrialParameter}sourceid=chrome&ie={inputEncoding}',1,'',0,0,'UTF-8',1,'{google:baseSuggestURL}search?{google:searchFieldtrialParameter}client=chrome&hl={language}&q={searchTerms}&sugkey={google:suggestAPIKeyParameter}',1,0,'{google:baseURL}webhp?sourceid=chrome-instant&{google:RLZ}{google:instantEnabledParameter}ie={inputEncoding}',0,'CB88DDB4-E4A2-80BC-3BEE-C8F02FDBA58A'); INSERT INTO "keywords_backup" VALUES(3,'Yahoo! Canada','ca.yahoo.com','http://ca.search.yahoo.com/favicon.ico','http://ca.search.yahoo.com/search?ei={inputEncoding}&fr=crmas&p={searchTerms}',1,'',0,0,'UTF-8',1,'http://gossip.ca.yahoo.com/gossip-ca-sayt?output=fxjsonp&command={searchTerms}',2,0,'',0,'21CD15EC-B9CA-4DCB-8526-0A4048CBA5F3'); INSERT INTO "keywords_backup" VALUES(4,'Yahoo! Québec','qc.yahoo.com','http://qc.search.yahoo.com/favicon.ico','http://qc.search.yahoo.com/search?ei={inputEncoding}&fr=crmas&p={searchTerms}',1,'',0,0,'UTF-8',1,'',5,0,'',0,'AB0C2A23-C483-F255-8BEB-7A2B4E0C465F'); INSERT INTO "keywords_backup" VALUES(5,'Bing','bing.com','http://www.bing.com/s/wlflag.ico','http://www.bing.com/search?setmkt=en-CA&q={searchTerms}',1,'',0,0,'UTF-8',1,'http://api.bing.com/osjson.aspx?query={searchTerms}&language={language}',3,0,'',0,'D77A8BC1-3CD6-4AB5-93B2-72B0C2E94E73'); INSERT INTO "keywords_backup" VALUES(6,'Bing','bing.com_','http://www.bing.com/s/wlflag.ico','http://www.bing.com/search?setmkt=fr-CA&q={searchTerms}',1,'',0,0,'UTF-8',1,'http://api.bing.com/osjson.aspx?query={searchTerms}&language={language}',7,0,'',0,'E1035236-31F4-216A-632A-A7323A1B7A70'); CREATE TABLE autofill (name VARCHAR, value VARCHAR, value_lower VARCHAR, pair_id INTEGER PRIMARY KEY, count INTEGER DEFAULT 1); CREATE TABLE autofill_dates ( pair_id INTEGER DEFAULT 0, date_created INTEGER DEFAULT 0); INSERT INTO "autofill" VALUES('ltmpl','sso','sso',1,3); INSERT INTO "autofill_dates" VALUES(1,1268958682); CREATE TABLE autofill_profile_names ( guid VARCHAR, first_name VARCHAR, middle_name VARCHAR, last_name VARCHAR, full_name VARCHAR); INSERT INTO "autofill_profile_names" VALUES('AAAAAAAA-AAAA-AAAA-AAAA-AAAAAAAAAAAA','andrew','','ziem',''); CREATE TABLE autofill_profile_emails ( guid VARCHAR, email VARCHAR); INSERT INTO "autofill_profile_emails" VALUES('AAAAAAAA-AAAA-AAAA-AAAA-AAAAAAAAAAAA','a@a.a'); CREATE TABLE "autofill_profile_phones" ( guid VARCHAR, number VARCHAR); INSERT INTO "autofill_profile_phones" VALUES('AAAAAAAA-AAAA-AAAA-AAAA-AAAAAAAAAAAA','123457890'); CREATE TABLE "autofill_profiles" ( guid VARCHAR PRIMARY KEY, company_name VARCHAR, street_address VARCHAR, dependent_locality VARCHAR, city VARCHAR, state VARCHAR, zipcode VARCHAR, sorting_code VARCHAR, country_code VARCHAR, date_modified INTEGER NOT NULL DEFAULT 0, origin VARCHAR DEFAULT '', language_code VARCHAR, use_count INTEGER NOT NULL DEFAULT 0, use_date INTEGER NOT NULL DEFAULT 0); INSERT INTO "autofill_profiles" VALUES('AAAAAAAA-AAAA-AAAA-AAAA-AAAAAAAAAAAA','','1234 anywhere st','','City','ST','000000','','US',1386736740,'','',5,1437861201); CREATE TABLE server_addresses (id VARCHAR,company_name VARCHAR,street_address VARCHAR,address_1 VARCHAR,address_2 VARCHAR,address_3 VARCHAR,address_4 VARCHAR,postal_code VARCHAR,sorting_code VARCHAR,country_code VARCHAR,language_code VARCHAR, recipient_name VARCHAR, phone_number VARCHAR); INSERT INTO "server_addresses" VALUES('a','','123 anywhere','ST','City','',NULL,'0000','','US','','andrew ziem','+1 000-000-0000'); """ # databases/Databases.db from Chromium 12 chrome_databases_db = """ CREATE TABLE Databases (id INTEGER PRIMARY KEY AUTOINCREMENT, origin TEXT NOT NULL, name TEXT NOT NULL, description TEXT NOT NULL, estimated_size INTEGER NOT NULL); INSERT INTO "Databases" VALUES(1,'chrome-extension_fjnbnpbmkenffdnngjfgmeleoegfcffe_0','stylish','Stylish Styles',5242880); INSERT INTO "Databases" VALUES(2,'http_samy.pl_0','sqlite_evercookie','evercookie',1048576); """ class SpecialAssertions: def assertTablesAreEmpty(self, path, tables): """Asserts SQLite tables exists and are empty""" if not os.path.lexists(path): raise AssertionError('Path does not exist: %s' % path) conn = sqlite3.connect(path) cursor = conn.cursor() for table in tables: cursor.execute('select 1 from %s limit 1' % table) row = cursor.fetchone() if row: raise AssertionError('Table is not empty: %s ' % table) class SpecialTestCase(common.BleachbitTestCase, SpecialAssertions): """Test case for module Special""" def setUp(self): """Create test browser files.""" super(SpecialTestCase, self).setUp() self.dir_base = self.mkdtemp(prefix='bleachbit-test-special') self.dir_google_chrome_default = os.path.join(self.dir_base, 'google-chrome/Default/') os.makedirs(self.dir_google_chrome_default) # google-chrome/Default/Bookmarks bookmark_path = os.path.join( self.dir_google_chrome_default, 'Bookmarks') f = open(bookmark_path, 'w') f.write(chrome_bookmarks) f.close() # google-chrome/Default/Web Data FileUtilities.execute_sqlite3(os.path.join(self.dir_google_chrome_default, 'Web Data'), chrome_webdata) # google-chrome/Default/History FileUtilities.execute_sqlite3(os.path.join(self.dir_google_chrome_default, 'History'), chrome_history_sql) # google-chrome/Default/databases/Databases.db os.makedirs(os.path.join(self.dir_google_chrome_default, 'databases')) FileUtilities.execute_sqlite3( os.path.join(self.dir_google_chrome_default, 'databases/Databases.db'), chrome_databases_db) def tearDown(self): """Remove test browser files.""" shutil.rmtree(self.dir_base) def sqlite_clean_helper(self, sql, fn, clean_func, check_func=None, setup_func=None): """Helper for cleaning special SQLite cleaning""" self.assertFalse(sql and fn, "sql and fn are mutually exclusive ways to create the data") if fn: filename = os.path.normpath(os.path.join(self.dir_base, fn)) self.assertExists(filename) # create sqlite file elif sql: # create test file filename = self.mkstemp(prefix='bleachbit-test-sqlite') # additional setup if setup_func: setup_func(filename) # before SQL creation executed, cleaning should fail self.assertRaises(sqlite3.DatabaseError, clean_func, filename) # create FileUtilities.execute_sqlite3(filename, sql) self.assertExists(filename) else: raise RuntimeError('neither fn nor sql supplied') # clean the file old_shred = options.get('shred') options.set('shred', False, commit=False) self.assertFalse(options.get('shred')) clean_func(filename) options.set('shred', True, commit=False) self.assertTrue(options.get('shred')) options.set('shred', old_shred, commit=False) clean_func(filename) self.assertExists(filename) # check if check_func: check_func(self, filename) # tear down FileUtilities.delete(filename) self.assertNotExists(filename) def test_delete_chrome_autofill(self): """Unit test for delete_chrome_autofill""" fn = "google-chrome/Default/Web Data" def check_autofill(testcase, filename): testcase.assertTablesAreEmpty(filename, ['autofill','autofill_profile_emails', 'autofill_profile_names', 'autofill_profile_phones', 'autofill_profiles','server_addresses']) self.sqlite_clean_helper(None, fn, Special.delete_chrome_autofill, check_func=check_autofill) def test_delete_chrome_databases_db(self): """Unit test for delete_chrome_databases_db""" self.sqlite_clean_helper( None, "google-chrome/Default/databases/Databases.db", Special.delete_chrome_databases_db) def test_delete_chrome_history(self): """Unit test for delete_chrome_history""" def check_chrome_history(self, filename): conn = sqlite3.connect(filename) c = conn.cursor() c.execute('select id from urls') ids = [] for row in c: ids.append(row[0]) # id 1 is sqlite.org which is not a bookmark and should be cleaned # id 2 is www.bleachbit.org which is a bookmark and should # be cleaned self.assertEqual(ids, [2]) # these tables should always be empty after cleaning self.assertTablesAreEmpty(filename, ['downloads', 'keyword_search_terms', 'segment_usage', 'segments', 'visits']) self.sqlite_clean_helper(None, "google-chrome/Default/History", Special.delete_chrome_history, check_chrome_history) def test_delete_chrome_keywords(self): """Unit test for delete_chrome_keywords""" def check_chrome_keywords(self, filename): conn = sqlite3.connect(filename) c = conn.cursor() c.execute('select id from keywords') ids = [] for row in c: ids.append(row[0]) self.assertEqual(ids, [2, 3, 4, 5, 6]) self.sqlite_clean_helper(None, "google-chrome/Default/Web Data", Special.delete_chrome_keywords, check_chrome_keywords) def test_delete_mozilla_url_history(self): """Test for delete_mozilla_url_history""" sql = """ CREATE TABLE moz_annos (id INTEGER PRIMARY KEY,place_id INTEGER NOT NULL,anno_attribute_id INTEGER,mime_type VARCHAR(32) DEFAULT NULL,content LONGVARCHAR, flags INTEGER DEFAULT 0,expiration INTEGER DEFAULT 0,type INTEGER DEFAULT 0,dateAdded INTEGER DEFAULT 0,lastModified INTEGER DEFAULT 0); CREATE TABLE moz_bookmarks (id INTEGER PRIMARY KEY,type INTEGER, fk INTEGER DEFAULT NULL, parent INTEGER, position INTEGER, title LONGVARCHAR, keyword_id INTEGER, folder_type TEXT, dateAdded INTEGER, lastModified INTEGER); CREATE TABLE moz_favicons (id INTEGER PRIMARY KEY, url LONGVARCHAR UNIQUE, data BLOB, mime_type VARCHAR(32), expiration LONG); CREATE TABLE moz_historyvisits (id INTEGER PRIMARY KEY, from_visit INTEGER, place_id INTEGER, visit_date INTEGER, visit_type INTEGER, session INTEGER); CREATE TABLE moz_inputhistory (place_id INTEGER NOT NULL, input LONGVARCHAR NOT NULL, use_count INTEGER, PRIMARY KEY (place_id, input)); CREATE TABLE moz_places (id INTEGER PRIMARY KEY, url LONGVARCHAR, title LONGVARCHAR, rev_host LONGVARCHAR, visit_count INTEGER DEFAULT 0, hidden INTEGER DEFAULT 0 NOT NULL, typed INTEGER DEFAULT 0 NOT NULL, favicon_id INTEGER, frecency INTEGER DEFAULT -1 NOT NULL, last_visit_date INTEGER); INSERT INTO "moz_annos" VALUES(46,51918,7,NULL,'UTF-8',0,4,3,1222405592086437,0); INSERT INTO "moz_bookmarks" VALUES(1,2,NULL,0,0,'',NULL,'',1210078682986320,1246454506982902); INSERT INTO "moz_favicons" VALUES(28,'http://download.openoffice.org/branding/images/favicon.ico',X'0000010001001010000001001800680300001600000028000000100000002000000001001800000000000000000058020000580200000000000000000000FFFFFEFFFFFFFFFFFEFFFEFFFFFFFFFFFFFFFFFFFFFFFFFEFEFFFFFFFFFFFFFFFFFEFFFFFFFFFFFFFFFEFFFFFFFEFFFF808080FCF8F8F9F6F7F9F6F5FDF6F5FCF9F5FCF8F6FBF8F6FBF7F5FDF6F5FAF9F5FDF6F7FCF9F5F9F8F6FAFAF5FBF7F7808080000000808080F9F2EEF7F2EDF9F3EFF7F1EEF8F1EDF8F0F0F7F1EFF6F2F0F9F0EDF6F1F0F6F2EEF9F3EDF6F3EFF4E9E8000000000000808080F2EAE5F4EAE7F4ECE8F5ECE4F3EAE6F4EBE5F4EAE7F5E9E4F3EAE5F4EAE5F4E9E8F3EBE7EEE6DEF0E5DE808080000000000000808080808080808080EFE3DCEEE4DFEFE3DFEEE6DEF1E4DDEFE4DDEEE4DFEEE2DCEDDDD5EDDDD7EADDD7808080808080000000000000000000EBDED4EADBD6EBDED7EDDDD7EDDFD6EDDBD6EADDD7EBDCD7E7D7CCE8D6CDE9D6CEE7D8CDE9D7CEE6D6CC808080000000000000E9D5CFE7D7CEE8D6CDE7D7CCE6D4CDE8D7CFE7D6CEE5D0C5E3CFC4E3D0C5E4CFC4E3CFC6E2D0C4E4D1C6808080000000808080E3D1C5E2D0C4E5CEC6E4CFC5E5D1C3E4CFC4E0C8BFE2CBBDE0C9BDE1CABCDFC9BCDFCBBBE0CABEDFC7BD808080000000000000808080DFC9BCE0CABFDFC9BEE1CABEDCC3B7DDC3B4DBC2B4DBC2B4DEC2B4DDC1B4808080DEC0B3DDC1B4808080808080808080808080DCC2B5DBC2B6DDC1B6DABDADD8BDADDABEADD8BEADD7BCACD9BDAE808080808080D8BEADD8BCACD7BCACDABBAEDABCACDABEADD9BCACD7BCAED5B4A3D4B7A3D3B5A4D5B6A6D5B6A6D5B4A3D7B5A6000000000000808080808080808080D6B7A5D5B5A4D6B5A6D4B7A5CFAF9DD0AD9ED0B09CD1AE9DD2AD9ECFAF9BD0B09AD1AE9D808080000000000000000000808080D1AE9DD1AE9BD3AF9DCEA895CEA795CCA992CDA895CDA794CCA795CCA793CDA895CDA794CCA895CEA696808080000000808080CCA694CDA996CAA08ACAA28DC9A28DC9A08ACAA28AC9A28CC9A18BCBA18DC8A38CCAA28CC9A08CC8A18D808080000000000000808080C89984C89B85C69A82C79C82C69A83C59B82C69A83C49B85C59985C69A83C59B82C89984C69A82C49982C59C82C89B8300000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000','image/x-icon',1266937768995663); INSERT INTO "moz_historyvisits" VALUES(85696,0,211406,1277603269156003,1,552364937919476439); INSERT INTO "moz_inputhistory" VALUES(164860,'blog',0.0125459501500806); INSERT INTO "moz_places" VALUES(17251,'http://download.openoffice.org/2.3.1/index.html','download: OpenOffice.org 2.3.1 Downloads','gro.eciffonepo.daolnwod.',0,0,0,28,20,NULL); """ self.sqlite_clean_helper(sql, None, Special.delete_mozilla_url_history) def test_get_chrome_bookmark_ids(self): """Unit test for get_chrome_bookmark_ids()""" # does not exist # Google Chrome 23 on Windows 8 does not create a bookmarks file on first startup # (maybe because the network was disconnected or because user created no bookmarks). self.assertEqual( [], Special.get_chrome_bookmark_ids('does_not_exist')) def test_get_chrome_bookmark_urls(self): """Unit test for get_chrome_bookmark_urls()""" path= self.write_file('bleachbit-test-sqlite', chrome_bookmarks) self.assertExists(path) urls = Special.get_chrome_bookmark_urls(path) self.assertEqual(set(urls), {u'https://www.bleachbit.org/', u'http://www.slashdot.org/'}) os.unlink(path) def test_get_sqlite_int(self): """Unit test for get_sqlite_int()""" sql = """CREATE TABLE meta(key LONGVARCHAR NOT NULL UNIQUE PRIMARY KEY,value LONGVARCHAR); INSERT INTO "meta" VALUES('version','20');""" # create test file filename = self.mkstemp(prefix='bleachbit-test-sqlite') FileUtilities.execute_sqlite3(filename, sql) self.assertExists(filename) # run the test ver = Special.get_sqlite_int(filename, 'select value from meta where key="version"') self.assertEqual(ver, [20]) bleachbit-2.0/tests/TestRecognizeCleanerML.py0000644000175000017500000000230613245436307017426 0ustar hlehle# vim: ts=4:sw=4:expandtab # BleachBit # Copyright (C) 2008-2018 Andrew Ziem # https://www.bleachbit.org # # This program is free software: you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by # the Free Software Foundation, either version 3 of the License, or # (at your option) any later version. # # This program is distributed in the hope that it will be useful, # but WITHOUT ANY WARRANTY; without even the implied warranty of # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the # GNU General Public License for more details. # # You should have received a copy of the GNU General Public License # along with this program. If not, see . """ Test case for RecognizeCleanerML """ from __future__ import absolute_import, print_function from tests import common from bleachbit.RecognizeCleanerML import hashdigest class RecognizeCleanerMLTestCase(common.BleachbitTestCase): """Test case for RecognizeCleanerML""" def test_hash(self): """Unit test for hash()""" digest = hashdigest('bleachbit') self.assertEqual(len(digest), 128) self.assertEqual(digest[1:10], '6382c203e') bleachbit-2.0/tests/TestDiagnostic.py0000644000175000017500000000227113245436307016043 0ustar hlehle# vim: ts=4:sw=4:expandtab # -*- coding: UTF-8 -*- # BleachBit # Copyright (C) 2008-2018 Andrew Ziem # https://www.bleachbit.org # # This program is free software: you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by # the Free Software Foundation, either version 3 of the License, or # (at your option) any later version. # # This program is distributed in the hope that it will be useful, # but WITHOUT ANY WARRANTY; without even the implied warranty of # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the # GNU General Public License for more details. # # You should have received a copy of the GNU General Public License # along with this program. If not, see . """ Test case for module Diagnostic """ from __future__ import absolute_import, print_function from tests import common from bleachbit.Diagnostic import diagnostic_info class DiagnosticTestCase(common.BleachbitTestCase): """Test Case for module Diagnostic""" def test_diagnostic_info(self): """Test diagnostic_info""" # at least it does not crash ret = diagnostic_info() self.assertIsString(ret) bleachbit-2.0/tests/TestCleanerML.py0000644000175000017500000000647313245436307015571 0ustar hlehle# vim: ts=4:sw=4:expandtab # BleachBit # Copyright (C) 2008-2018 Andrew Ziem # https://www.bleachbit.org # # This program is free software: you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by # the Free Software Foundation, either version 3 of the License, or # (at your option) any later version. # # This program is distributed in the hope that it will be useful, # but WITHOUT ANY WARRANTY; without even the implied warranty of # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the # GNU General Public License for more details. # # You should have received a copy of the GNU General Public License # along with this program. If not, see . """ Test cases for module CleanerML """ from __future__ import absolute_import, print_function from tests import common from bleachbit.CleanerML import * class CleanerMLTestCase(common.BleachbitTestCase): """Test cases for CleanerML""" def setUp(self): """Prepare for each test method""" # BleachbitTestCase.setUp() resets the current working directory super(CleanerMLTestCase, self).setUp() # This test case expects another working directory. os.chdir('tests') def test_CleanerML(self): """Unit test for class CleanerML""" xmlcleaner = CleanerML("../doc/example_cleaner.xml") self.assertIsInstance(xmlcleaner, CleanerML) self.assertIsInstance(xmlcleaner.cleaner, Cleaner.Cleaner) def run_all(really_delete): for (option_id, __name) in xmlcleaner.cleaner.get_options(): for cmd in xmlcleaner.cleaner.get_commands(option_id): for result in cmd.execute(really_delete): common.validate_result(self, result, really_delete) # preview run_all(False) # really delete if user allows if common.destructive_tests('example_cleaner.xml'): run_all(True) def test_boolstr_to_bool(self): """Unit test for boolstr_to_bool()""" tests = [('True', True), ('False', False)] for (arg, output) in tests: self.assertEqual(boolstr_to_bool(arg), output) self.assertEqual(boolstr_to_bool(arg.lower()), output) self.assertEqual(boolstr_to_bool(arg.upper()), output) def test_create_pot(self): """Unit test for create_pot()""" create_pot() def test_list_cleanerml_files(self): """Unit test for list_cleanerml_files()""" for pathname in list_cleanerml_files(): self.assertExists(pathname) def test_load_cleaners(self): """Unit test for load_cleaners()""" # normal load_cleaners() # should catch exception with invalid XML pcd = bleachbit.personal_cleaners_dir bleachbit.personal_cleaners_dir = self.mkdtemp(prefix='bleachbit-cleanerml-load') self.write_file(os.path.join(bleachbit.personal_cleaners_dir, 'invalid.xml'), contents='') load_cleaners() import shutil shutil.rmtree(bleachbit.personal_cleaners_dir) bleachbit.personal_cleaners_dir = pcd def test_pot_fragment(self): """Unit test for pot_fragment()""" self.assertIsString(pot_fragment("Foo", 'bar.xml')) bleachbit-2.0/tests/TestCLI.py0000644000175000017500000001345413245436307014373 0ustar hlehle#!/usr/bin/env python # vim: ts=4:sw=4:expandtab # BleachBit # Copyright (C) 2008-2018 Andrew Ziem # https://www.bleachbit.org # # This program is free software: you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by # the Free Software Foundation, either version 3 of the License, or # (at your option) any later version. # # This program is distributed in the hope that it will be useful, # but WITHOUT ANY WARRANTY; without even the implied warranty of # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the # GNU General Public License for more details. # # You should have received a copy of the GNU General Public License # along with this program. If not, see . """ Test case for module CLI """ from __future__ import absolute_import, print_function from bleachbit.CLI import * from bleachbit.General import run_external from bleachbit import FileUtilities from tests import common import copy import os import sys import tempfile import unittest class CLITestCase(common.BleachbitTestCase): """Test case for module CLI""" def setUp(self): super(CLITestCase, self).setUp() def _test_preview(self, args, stdout=None, env=None): """Helper to test preview""" # Use devnull because in some cases the buffer will be too large, # and the other alternative, the screen, is not desirable. if stdout: stdout_ = None else: stdout_ = open(os.devnull, 'w') output = run_external(args, stdout=stdout_, env=env) if not stdout: stdout_.close() self.assertEqual(output[0], 0, "Return code = %d, stderr='%s'" % (output[0], output[2])) pos = output[2].find('Traceback (most recent call last)') if pos > -1: print("Saw the following error when using args '%s':\n %s" % (args, output[2])) self.assertEqual(pos, -1) def test_args_to_operations(self): """Unit test for args_to_operations()""" tests = ( (['adobe_reader.*'], {'adobe_reader': [u'cache', u'mru', u'tmp']}), (['adobe_reader.mru'], {'adobe_reader': [u'mru']})) for test in tests: o = args_to_operations(test[0], False) self.assertEqual(o, test[1]) def test_cleaners_list(self): """Unit test for cleaners_list()""" for cleaner in cleaners_list(): self.assertIsString(cleaner) @unittest.skipUnless('posix' == os.name, 'skipping on non-Unix') def test_encoding(self): """Unit test for encoding""" filename = self.write_file('/tmp/bleachbit-test-cli-encoding-\xe4\xf6\xfc~') # not assertExists because it doesn't cope with invalid encodings self.assertTrue(os.path.exists(filename)) env = copy.deepcopy(os.environ) env['LANG'] = 'en_US' # not UTF-8 args = [sys.executable, '-m', 'bleachbit.CLI', '-p', 'system.tmp'] # If Python pipes stdout to file or devnull, the test may give # a false negative. It must print stdout to terminal. self._test_preview(args, stdout=True, env=env) os.remove(filename) self.assertNotExists(filename) def test_invalid_locale(self): """Unit test for invalid locales""" lang = os.environ['LANG'] os.environ['LANG'] = 'blahfoo' # tests are run from the parent directory args = [sys.executable, '-m', 'bleachbit.CLI', '--version'] output = run_external(args) self.assertNotEqual(output[1].find('Copyright'), -1, str(output)) os.environ['LANG'] = lang def test_preview(self): """Unit test for --preview option""" env = copy.deepcopy(os.environ) # the language and encoding affect the test results env['LANG'] = 'en_US.UTF-8' args_list = [] module = 'bleachbit.CLI' big_args = [sys.executable, '-m', module, '--preview', ] for cleaner in cleaners_list(): args_list.append([sys.executable, '-m', module, '--preview', cleaner]) big_args.append(cleaner) args_list.append(big_args) for args in args_list: self._test_preview(args, env=env) def test_delete(self): """Unit test for --delete option""" filename = self.mkstemp(prefix='bleachbit-test-cli-delete') if 'nt' == os.name: filename = os.path.normcase(filename) # replace delete function for testing save_delete = FileUtilities.delete deleted_paths = [] def dummy_delete(path, shred=False): self.assertExists(path) deleted_paths.append(os.path.normcase(path)) FileUtilities.delete = dummy_delete FileUtilities.delete(filename) self.assertExists(filename) operations = args_to_operations(['system.tmp'], False) preview_or_clean(operations, True) FileUtilities.delete = save_delete self.assertIn(filename, deleted_paths, "%s not found deleted" % filename) os.remove(filename) self.assertNotExists(filename) def test_shred(self): """Unit test for --shred""" suffixes = ['', '.', '.txt'] dirs = ['.', None] for dir_ in dirs: for suffix in suffixes: (fd, filename) = tempfile.mkstemp(prefix='bleachbit-test-cli-shred', suffix=suffix, dir=dir_) os.close(fd) if '.' == dir_: filename = os.path.basename(filename) # not assertExists because something strange happens on Windows self.assertTrue(os.path.exists(filename)) args = [sys.executable, '-m', 'bleachbit.CLI', '--shred', filename] output = run_external(args) self.assertNotExists(filename) bleachbit-2.0/tests/TestUpdate.py0000644000175000017500000001177313245436307015210 0ustar hlehle# vim: ts=4:sw=4:expandtab # BleachBit # Copyright (C) 2008-2018 Andrew Ziem # https://www.bleachbit.org # # This program is free software: you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by # the Free Software Foundation, either version 3 of the License, or # (at your option) any later version. # # This program is distributed in the hope that it will be useful, # but WITHOUT ANY WARRANTY; without even the implied warranty of # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the # GNU General Public License for more details. # # You should have received a copy of the GNU General Public License # along with this program. If not, see . """ Test case for module Update """ from __future__ import absolute_import, print_function from tests import common import bleachbit from bleachbit import logger from bleachbit.Update import check_updates, update_winapp2, user_agent import bleachbit.Update import os import os.path class UpdateTestCase(common.BleachbitTestCase): """Test case for module Update""" def test_UpdateCheck_fake(self): """Unit tests for class UpdateCheck using fake network""" wa = '' update_tests = [ ('http://084http://085beta%s' % wa, ((u'0.8.4', u'http://084'), (u'0.8.5beta', u'http://085beta'))), ('http://084%s' % wa, ((u'0.8.4', u'http://084'), )), ('http://085beta%s' % wa, ((u'0.8.5beta', u'http://085beta'), )), ('', ())] # fake network original_open = bleachbit.Update.build_opener xml = "" class FakeOpener: def add_headers(self): pass def read(self): return xml def open(self, url): return self # TODO: mock bleachbit.Update.build_opener = FakeOpener for xml, expected in update_tests: updates = check_updates(True, False, None, None) self.assertEqual(updates, expected) bleachbit.Update.build_opener = original_open def test_UpdateCheck_real_network(self): """Unit tests for class UpdateCheck using real network""" # real network for update in check_updates(True, False, None, None): if not update: continue ver = update[0] url = update[1] self.assertIsInstance(ver, (type(None), unicode)) self.assertIsInstance(url, (type(None), unicode)) def test_UpdateCheck_real(self): """Unit test for class UpdateCheck with bad network address""" # expect connection failure preserve_url = bleachbit.update_check_url bleachbit.update_check_url = "http://localhost/doesnotexist" self.assertEqual( check_updates(True, False, None, None), ()) bleachbit.update_check_url = preserve_url def test_update_url(self): """Check connection to the update URL""" from bleachbit.Update import build_opener opener = build_opener() handle = opener.open(bleachbit.update_check_url) doc = handle.read() import xml xml.dom.minidom.parseString(doc) def test_update_winapp2(self): from bleachbit import personal_cleaners_dir fn = os.path.join(personal_cleaners_dir, 'winapp2.ini') if os.path.exists(fn): logger.info('deleting %s', fn.encode(bleachbit.FSE)) os.unlink(fn) url = 'http://katana.oooninja.com/bleachbit/winapp2/winapp2-2016-03-14.ini' def expect_failure(): raise AssertionError('Call should have failed') def on_success(): succeeded['r'] = True succeeded = {'r': False} # scope # bad hash self.assertRaises(RuntimeError, update_winapp2, url, "notahash", print, expect_failure) # blank hash, download file update_winapp2(url, None, print, on_success) self.assertTrue(succeeded['r']) # blank hash, do not download again update_winapp2(url, None, print, on_success) update_winapp2(url, None, print, expect_failure) def test_user_agent(self): """Unit test for method user_agent()""" agent = user_agent() logger.debug("user agent = '%s'", agent) self.assertIsString(agent) def test_environment(self): """Check the sanity of the environment""" import httplib self.assertTrue(hasattr(httplib, 'HTTPS')) import socket self.assertTrue(hasattr(socket, 'ssl')) bleachbit-2.0/tests/TestDeepScan.py0000644000175000017500000001050713245436307015442 0ustar hlehle# vim: ts=4:sw=4:expandtab # -*- coding: UTF-8 -*- # BleachBit # Copyright (C) 2008-2018 Andrew Ziem # https://www.bleachbit.org # # This program is free software: you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by # the Free Software Foundation, either version 3 of the License, or # (at your option) any later version. # # This program is distributed in the hope that it will be useful, # but WITHOUT ANY WARRANTY; without even the implied warranty of # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the # GNU General Public License for more details. # # You should have received a copy of the GNU General Public License # along with this program. If not, see . """ Test case for module DeepScan """ from __future__ import absolute_import, print_function from tests import common from bleachbit.DeepScan import DeepScan, normalized_walk from bleachbit import expanduser import os class DeepScanTestCase(common.BleachbitTestCase): """Test Case for module DeepScan""" def _test_encoding(self, fn): """Test encoding""" fullpath = self.write_file(fn) ds = DeepScan() ds.add_search(self.tempdir, '^%s$' % fn) found = False for ret in ds.scan(): if True == ret: continue print(ret) self.assertEqual(ret, fullpath) found = True self.assertTrue(found, "Did not find '%s'" % fullpath) os.unlink(fullpath) self.assertNotExists(fullpath) def test_encoding(self): """Test encoding""" for test in ('äöüßÄÖÜ', "עִבְרִית"): self._test_encoding(test) def test_DeepScan(self): """Unit test for class DeepScan. Preview real files.""" ds = DeepScan() path = expanduser('~') ds.add_search(path, '^Makefile$') ds.add_search(path, '~$') ds.add_search(path, 'bak$') ds.add_search(path, '^Thumbs.db$') ds.add_search(path, '^Thumbs.db:encryptable$') for ret in ds.scan(): if True == ret: # it's yielding control to the GTK idle loop continue self.assertIsString(ret, "Expecting string but got '%s' (%s)" % (ret, str(type(ret)))) self.assertLExists(ret) def test_delete(self): """Delete files in a test environment""" # make some files f_del1 = self.write_file('foo.txt.bbtestbak') f_keep = self.write_file('foo.txt') subdir = os.path.join(self.tempdir, 'sub') os.mkdir(subdir) f_del2 = self.write_file(os.path.join(subdir,'bar.ini.bbtestbak')) # sanity check self.assertExists(f_del1) self.assertExists(f_keep) self.assertExists(f_del2) # run deep scan astr = '' % self.tempdir from tests import TestCleaner cleaner = TestCleaner.action_to_cleaner(astr) from bleachbit.Worker import backends, Worker backends['test'] = cleaner operations = {'test': ['option1']} from bleachbit import CLI ui = CLI.CliCallback() worker = Worker(ui, True, operations) list(worker.run()) # validate results self.assertFalse(os.path.exists(f_del1)) self.assertExists(f_keep) self.assertFalse(os.path.exists(f_del2)) def test_normalized_walk_darwin(self): import mock with mock.patch('os.walk') as mock_walk: mock_walk.return_value = [ ('/foo', ('bar',), ['ba\xcc\x80z']), ('/foo/bar', (), ['spam', 'eggs']), ] with mock.patch('platform.system') as mock_platform_system: mock_platform_system.return_value = 'Darwin' self.assertEqual(list(normalized_walk('.')), [ ('/foo', ('bar',), ['b\xc3\xa0z']), ('/foo/bar', (), ['spam', 'eggs']), ]) with mock.patch('os.walk') as mock_walk: expected = [ ('/foo', ('bar',), ['baz']), ('/foo/bar', (), ['spam', 'eggs']), ] mock_walk.return_value = expected self.assertEqual(list(normalized_walk('.')), expected) bleachbit-2.0/README.md0000644000175000017500000000240013245436307012654 0ustar hlehle# BleachBit BleachBit cleans files to free disk space and to maintain privacy. ## Running from source To run BleachBit without installation, unpack the tarball and then run these commands: make -C po local # build translations python bleachbit.py Then, review the preferences. Then, select some options, and click Preview. Review the files, toggle options accordingly, and click Delete. For information regarding the command line interface, run: python bleachbit.py --help ## Links * [BleachBit home page](https://www.bleachbit.org) * [Support](https://www.bleachbit.org/help) * [Documentation](https://docs.bleachbit.org) ### Development * [BleachBit on AppVeyor](https://ci.appveyor.com/project/az0/bleachbit) [![Build status](https://ci.appveyor.com/api/projects/status/7p8amofd7rv7n268?svg=true)](https://ci.appveyor.com/project/az0/bleachbit) * [BleachBit on Travis CI](https://travis-ci.org/bleachbit/bleachbit) [![Build Status](https://travis-ci.org/bleachbit/bleachbit.svg?branch=master)](https://travis-ci.org/bleachbit/bleachbit) * [CleanerML Repository](https://github.com/az0/cleanerml) * [BleachBit Miscellaneous Repository](https://github.com/bleachbit/bleachbit-misc) * [Winapp2.ini Repository](https://github.com/bleachbit/winapp2.ini) bleachbit-2.0/COPYING0000644000175000017500000010451713245436307012444 0ustar hlehle GNU GENERAL PUBLIC LICENSE Version 3, 29 June 2007 Copyright (C) 2007 Free Software Foundation, Inc. Everyone is permitted to copy and distribute verbatim copies of this license document, but changing it is not allowed. Preamble The GNU General Public License is a free, copyleft license for software and other kinds of works. The licenses for most software and other practical works are designed to take away your freedom to share and change the works. By contrast, the GNU General Public License is intended to guarantee your freedom to share and change all versions of a program--to make sure it remains free software for all its users. We, the Free Software Foundation, use the GNU General Public License for most of our software; it applies also to any other work released this way by its authors. You can apply it to your programs, too. When we speak of free software, we are referring to freedom, not price. Our General Public Licenses are designed to make sure that you have the freedom to distribute copies of free software (and charge for them if you wish), that you receive source code or can get it if you want it, that you can change the software or use pieces of it in new free programs, and that you know you can do these things. To protect your rights, we need to prevent others from denying you these rights or asking you to surrender the rights. Therefore, you have certain responsibilities if you distribute copies of the software, or if you modify it: responsibilities to respect the freedom of others. For example, if you distribute copies of such a program, whether gratis or for a fee, you must pass on to the recipients the same freedoms that you received. You must make sure that they, too, receive or can get the source code. And you must show them these terms so they know their rights. Developers that use the GNU GPL protect your rights with two steps: (1) assert copyright on the software, and (2) offer you this License giving you legal permission to copy, distribute and/or modify it. For the developers' and authors' protection, the GPL clearly explains that there is no warranty for this free software. For both users' and authors' sake, the GPL requires that modified versions be marked as changed, so that their problems will not be attributed erroneously to authors of previous versions. Some devices are designed to deny users access to install or run modified versions of the software inside them, although the manufacturer can do so. This is fundamentally incompatible with the aim of protecting users' freedom to change the software. The systematic pattern of such abuse occurs in the area of products for individuals to use, which is precisely where it is most unacceptable. Therefore, we have designed this version of the GPL to prohibit the practice for those products. If such problems arise substantially in other domains, we stand ready to extend this provision to those domains in future versions of the GPL, as needed to protect the freedom of users. Finally, every program is threatened constantly by software patents. States should not allow patents to restrict development and use of software on general-purpose computers, but in those that do, we wish to avoid the special danger that patents applied to a free program could make it effectively proprietary. To prevent this, the GPL assures that patents cannot be used to render the program non-free. The precise terms and conditions for copying, distribution and modification follow. TERMS AND CONDITIONS 0. Definitions. "This License" refers to version 3 of the GNU General Public License. "Copyright" also means copyright-like laws that apply to other kinds of works, such as semiconductor masks. "The Program" refers to any copyrightable work licensed under this License. Each licensee is addressed as "you". "Licensees" and "recipients" may be individuals or organizations. To "modify" a work means to copy from or adapt all or part of the work in a fashion requiring copyright permission, other than the making of an exact copy. The resulting work is called a "modified version" of the earlier work or a work "based on" the earlier work. A "covered work" means either the unmodified Program or a work based on the Program. To "propagate" a work means to do anything with it that, without permission, would make you directly or secondarily liable for infringement under applicable copyright law, except executing it on a computer or modifying a private copy. Propagation includes copying, distribution (with or without modification), making available to the public, and in some countries other activities as well. To "convey" a work means any kind of propagation that enables other parties to make or receive copies. Mere interaction with a user through a computer network, with no transfer of a copy, is not conveying. An interactive user interface displays "Appropriate Legal Notices" to the extent that it includes a convenient and prominently visible feature that (1) displays an appropriate copyright notice, and (2) tells the user that there is no warranty for the work (except to the extent that warranties are provided), that licensees may convey the work under this License, and how to view a copy of this License. If the interface presents a list of user commands or options, such as a menu, a prominent item in the list meets this criterion. 1. Source Code. The "source code" for a work means the preferred form of the work for making modifications to it. "Object code" means any non-source form of a work. A "Standard Interface" means an interface that either is an official standard defined by a recognized standards body, or, in the case of interfaces specified for a particular programming language, one that is widely used among developers working in that language. The "System Libraries" of an executable work include anything, other than the work as a whole, that (a) is included in the normal form of packaging a Major Component, but which is not part of that Major Component, and (b) serves only to enable use of the work with that Major Component, or to implement a Standard Interface for which an implementation is available to the public in source code form. A "Major Component", in this context, means a major essential component (kernel, window system, and so on) of the specific operating system (if any) on which the executable work runs, or a compiler used to produce the work, or an object code interpreter used to run it. The "Corresponding Source" for a work in object code form means all the source code needed to generate, install, and (for an executable work) run the object code and to modify the work, including scripts to control those activities. However, it does not include the work's System Libraries, or general-purpose tools or generally available free programs which are used unmodified in performing those activities but which are not part of the work. For example, Corresponding Source includes interface definition files associated with source files for the work, and the source code for shared libraries and dynamically linked subprograms that the work is specifically designed to require, such as by intimate data communication or control flow between those subprograms and other parts of the work. The Corresponding Source need not include anything that users can regenerate automatically from other parts of the Corresponding Source. The Corresponding Source for a work in source code form is that same work. 2. Basic Permissions. All rights granted under this License are granted for the term of copyright on the Program, and are irrevocable provided the stated conditions are met. This License explicitly affirms your unlimited permission to run the unmodified Program. The output from running a covered work is covered by this License only if the output, given its content, constitutes a covered work. This License acknowledges your rights of fair use or other equivalent, as provided by copyright law. You may make, run and propagate covered works that you do not convey, without conditions so long as your license otherwise remains in force. You may convey covered works to others for the sole purpose of having them make modifications exclusively for you, or provide you with facilities for running those works, provided that you comply with the terms of this License in conveying all material for which you do not control copyright. Those thus making or running the covered works for you must do so exclusively on your behalf, under your direction and control, on terms that prohibit them from making any copies of your copyrighted material outside their relationship with you. Conveying under any other circumstances is permitted solely under the conditions stated below. Sublicensing is not allowed; section 10 makes it unnecessary. 3. Protecting Users' Legal Rights From Anti-Circumvention Law. No covered work shall be deemed part of an effective technological measure under any applicable law fulfilling obligations under article 11 of the WIPO copyright treaty adopted on 20 December 1996, or similar laws prohibiting or restricting circumvention of such measures. When you convey a covered work, you waive any legal power to forbid circumvention of technological measures to the extent such circumvention is effected by exercising rights under this License with respect to the covered work, and you disclaim any intention to limit operation or modification of the work as a means of enforcing, against the work's users, your or third parties' legal rights to forbid circumvention of technological measures. 4. Conveying Verbatim Copies. You may convey verbatim copies of the Program's source code as you receive it, in any medium, provided that you conspicuously and appropriately publish on each copy an appropriate copyright notice; keep intact all notices stating that this License and any non-permissive terms added in accord with section 7 apply to the code; keep intact all notices of the absence of any warranty; and give all recipients a copy of this License along with the Program. You may charge any price or no price for each copy that you convey, and you may offer support or warranty protection for a fee. 5. Conveying Modified Source Versions. You may convey a work based on the Program, or the modifications to produce it from the Program, in the form of source code under the terms of section 4, provided that you also meet all of these conditions: a) The work must carry prominent notices stating that you modified it, and giving a relevant date. b) The work must carry prominent notices stating that it is released under this License and any conditions added under section 7. This requirement modifies the requirement in section 4 to "keep intact all notices". c) You must license the entire work, as a whole, under this License to anyone who comes into possession of a copy. This License will therefore apply, along with any applicable section 7 additional terms, to the whole of the work, and all its parts, regardless of how they are packaged. This License gives no permission to license the work in any other way, but it does not invalidate such permission if you have separately received it. d) If the work has interactive user interfaces, each must display Appropriate Legal Notices; however, if the Program has interactive interfaces that do not display Appropriate Legal Notices, your work need not make them do so. A compilation of a covered work with other separate and independent works, which are not by their nature extensions of the covered work, and which are not combined with it such as to form a larger program, in or on a volume of a storage or distribution medium, is called an "aggregate" if the compilation and its resulting copyright are not used to limit the access or legal rights of the compilation's users beyond what the individual works permit. Inclusion of a covered work in an aggregate does not cause this License to apply to the other parts of the aggregate. 6. Conveying Non-Source Forms. You may convey a covered work in object code form under the terms of sections 4 and 5, provided that you also convey the machine-readable Corresponding Source under the terms of this License, in one of these ways: a) Convey the object code in, or embodied in, a physical product (including a physical distribution medium), accompanied by the Corresponding Source fixed on a durable physical medium customarily used for software interchange. b) Convey the object code in, or embodied in, a physical product (including a physical distribution medium), accompanied by a written offer, valid for at least three years and valid for as long as you offer spare parts or customer support for that product model, to give anyone who possesses the object code either (1) a copy of the Corresponding Source for all the software in the product that is covered by this License, on a durable physical medium customarily used for software interchange, for a price no more than your reasonable cost of physically performing this conveying of source, or (2) access to copy the Corresponding Source from a network server at no charge. c) Convey individual copies of the object code with a copy of the written offer to provide the Corresponding Source. This alternative is allowed only occasionally and noncommercially, and only if you received the object code with such an offer, in accord with subsection 6b. d) Convey the object code by offering access from a designated place (gratis or for a charge), and offer equivalent access to the Corresponding Source in the same way through the same place at no further charge. You need not require recipients to copy the Corresponding Source along with the object code. If the place to copy the object code is a network server, the Corresponding Source may be on a different server (operated by you or a third party) that supports equivalent copying facilities, provided you maintain clear directions next to the object code saying where to find the Corresponding Source. Regardless of what server hosts the Corresponding Source, you remain obligated to ensure that it is available for as long as needed to satisfy these requirements. e) Convey the object code using peer-to-peer transmission, provided you inform other peers where the object code and Corresponding Source of the work are being offered to the general public at no charge under subsection 6d. A separable portion of the object code, whose source code is excluded from the Corresponding Source as a System Library, need not be included in conveying the object code work. A "User Product" is either (1) a "consumer product", which means any tangible personal property which is normally used for personal, family, or household purposes, or (2) anything designed or sold for incorporation into a dwelling. In determining whether a product is a consumer product, doubtful cases shall be resolved in favor of coverage. For a particular product received by a particular user, "normally used" refers to a typical or common use of that class of product, regardless of the status of the particular user or of the way in which the particular user actually uses, or expects or is expected to use, the product. A product is a consumer product regardless of whether the product has substantial commercial, industrial or non-consumer uses, unless such uses represent the only significant mode of use of the product. "Installation Information" for a User Product means any methods, procedures, authorization keys, or other information required to install and execute modified versions of a covered work in that User Product from a modified version of its Corresponding Source. The information must suffice to ensure that the continued functioning of the modified object code is in no case prevented or interfered with solely because modification has been made. If you convey an object code work under this section in, or with, or specifically for use in, a User Product, and the conveying occurs as part of a transaction in which the right of possession and use of the User Product is transferred to the recipient in perpetuity or for a fixed term (regardless of how the transaction is characterized), the Corresponding Source conveyed under this section must be accompanied by the Installation Information. But this requirement does not apply if neither you nor any third party retains the ability to install modified object code on the User Product (for example, the work has been installed in ROM). The requirement to provide Installation Information does not include a requirement to continue to provide support service, warranty, or updates for a work that has been modified or installed by the recipient, or for the User Product in which it has been modified or installed. Access to a network may be denied when the modification itself materially and adversely affects the operation of the network or violates the rules and protocols for communication across the network. Corresponding Source conveyed, and Installation Information provided, in accord with this section must be in a format that is publicly documented (and with an implementation available to the public in source code form), and must require no special password or key for unpacking, reading or copying. 7. Additional Terms. "Additional permissions" are terms that supplement the terms of this License by making exceptions from one or more of its conditions. Additional permissions that are applicable to the entire Program shall be treated as though they were included in this License, to the extent that they are valid under applicable law. If additional permissions apply only to part of the Program, that part may be used separately under those permissions, but the entire Program remains governed by this License without regard to the additional permissions. When you convey a copy of a covered work, you may at your option remove any additional permissions from that copy, or from any part of it. (Additional permissions may be written to require their own removal in certain cases when you modify the work.) You may place additional permissions on material, added by you to a covered work, for which you have or can give appropriate copyright permission. Notwithstanding any other provision of this License, for material you add to a covered work, you may (if authorized by the copyright holders of that material) supplement the terms of this License with terms: a) Disclaiming warranty or limiting liability differently from the terms of sections 15 and 16 of this License; or b) Requiring preservation of specified reasonable legal notices or author attributions in that material or in the Appropriate Legal Notices displayed by works containing it; or c) Prohibiting misrepresentation of the origin of that material, or requiring that modified versions of such material be marked in reasonable ways as different from the original version; or d) Limiting the use for publicity purposes of names of licensors or authors of the material; or e) Declining to grant rights under trademark law for use of some trade names, trademarks, or service marks; or f) Requiring indemnification of licensors and authors of that material by anyone who conveys the material (or modified versions of it) with contractual assumptions of liability to the recipient, for any liability that these contractual assumptions directly impose on those licensors and authors. All other non-permissive additional terms are considered "further restrictions" within the meaning of section 10. If the Program as you received it, or any part of it, contains a notice stating that it is governed by this License along with a term that is a further restriction, you may remove that term. If a license document contains a further restriction but permits relicensing or conveying under this License, you may add to a covered work material governed by the terms of that license document, provided that the further restriction does not survive such relicensing or conveying. If you add terms to a covered work in accord with this section, you must place, in the relevant source files, a statement of the additional terms that apply to those files, or a notice indicating where to find the applicable terms. Additional terms, permissive or non-permissive, may be stated in the form of a separately written license, or stated as exceptions; the above requirements apply either way. 8. Termination. You may not propagate or modify a covered work except as expressly provided under this License. Any attempt otherwise to propagate or modify it is void, and will automatically terminate your rights under this License (including any patent licenses granted under the third paragraph of section 11). However, if you cease all violation of this License, then your license from a particular copyright holder is reinstated (a) provisionally, unless and until the copyright holder explicitly and finally terminates your license, and (b) permanently, if the copyright holder fails to notify you of the violation by some reasonable means prior to 60 days after the cessation. Moreover, your license from a particular copyright holder is reinstated permanently if the copyright holder notifies you of the violation by some reasonable means, this is the first time you have received notice of violation of this License (for any work) from that copyright holder, and you cure the violation prior to 30 days after your receipt of the notice. Termination of your rights under this section does not terminate the licenses of parties who have received copies or rights from you under this License. If your rights have been terminated and not permanently reinstated, you do not qualify to receive new licenses for the same material under section 10. 9. Acceptance Not Required for Having Copies. You are not required to accept this License in order to receive or run a copy of the Program. Ancillary propagation of a covered work occurring solely as a consequence of using peer-to-peer transmission to receive a copy likewise does not require acceptance. However, nothing other than this License grants you permission to propagate or modify any covered work. These actions infringe copyright if you do not accept this License. Therefore, by modifying or propagating a covered work, you indicate your acceptance of this License to do so. 10. Automatic Licensing of Downstream Recipients. Each time you convey a covered work, the recipient automatically receives a license from the original licensors, to run, modify and propagate that work, subject to this License. You are not responsible for enforcing compliance by third parties with this License. An "entity transaction" is a transaction transferring control of an organization, or substantially all assets of one, or subdividing an organization, or merging organizations. If propagation of a covered work results from an entity transaction, each party to that transaction who receives a copy of the work also receives whatever licenses to the work the party's predecessor in interest had or could give under the previous paragraph, plus a right to possession of the Corresponding Source of the work from the predecessor in interest, if the predecessor has it or can get it with reasonable efforts. You may not impose any further restrictions on the exercise of the rights granted or affirmed under this License. For example, you may not impose a license fee, royalty, or other charge for exercise of rights granted under this License, and you may not initiate litigation (including a cross-claim or counterclaim in a lawsuit) alleging that any patent claim is infringed by making, using, selling, offering for sale, or importing the Program or any portion of it. 11. Patents. A "contributor" is a copyright holder who authorizes use under this License of the Program or a work on which the Program is based. The work thus licensed is called the contributor's "contributor version". A contributor's "essential patent claims" are all patent claims owned or controlled by the contributor, whether already acquired or hereafter acquired, that would be infringed by some manner, permitted by this License, of making, using, or selling its contributor version, but do not include claims that would be infringed only as a consequence of further modification of the contributor version. For purposes of this definition, "control" includes the right to grant patent sublicenses in a manner consistent with the requirements of this License. Each contributor grants you a non-exclusive, worldwide, royalty-free patent license under the contributor's essential patent claims, to make, use, sell, offer for sale, import and otherwise run, modify and propagate the contents of its contributor version. In the following three paragraphs, a "patent license" is any express agreement or commitment, however denominated, not to enforce a patent (such as an express permission to practice a patent or covenant not to sue for patent infringement). To "grant" such a patent license to a party means to make such an agreement or commitment not to enforce a patent against the party. If you convey a covered work, knowingly relying on a patent license, and the Corresponding Source of the work is not available for anyone to copy, free of charge and under the terms of this License, through a publicly available network server or other readily accessible means, then you must either (1) cause the Corresponding Source to be so available, or (2) arrange to deprive yourself of the benefit of the patent license for this particular work, or (3) arrange, in a manner consistent with the requirements of this License, to extend the patent license to downstream recipients. "Knowingly relying" means you have actual knowledge that, but for the patent license, your conveying the covered work in a country, or your recipient's use of the covered work in a country, would infringe one or more identifiable patents in that country that you have reason to believe are valid. If, pursuant to or in connection with a single transaction or arrangement, you convey, or propagate by procuring conveyance of, a covered work, and grant a patent license to some of the parties receiving the covered work authorizing them to use, propagate, modify or convey a specific copy of the covered work, then the patent license you grant is automatically extended to all recipients of the covered work and works based on it. A patent license is "discriminatory" if it does not include within the scope of its coverage, prohibits the exercise of, or is conditioned on the non-exercise of one or more of the rights that are specifically granted under this License. You may not convey a covered work if you are a party to an arrangement with a third party that is in the business of distributing software, under which you make payment to the third party based on the extent of your activity of conveying the work, and under which the third party grants, to any of the parties who would receive the covered work from you, a discriminatory patent license (a) in connection with copies of the covered work conveyed by you (or copies made from those copies), or (b) primarily for and in connection with specific products or compilations that contain the covered work, unless you entered into that arrangement, or that patent license was granted, prior to 28 March 2007. Nothing in this License shall be construed as excluding or limiting any implied license or other defenses to infringement that may otherwise be available to you under applicable patent law. 12. No Surrender of Others' Freedom. If conditions are imposed on you (whether by court order, agreement or otherwise) that contradict the conditions of this License, they do not excuse you from the conditions of this License. If you cannot convey a covered work so as to satisfy simultaneously your obligations under this License and any other pertinent obligations, then as a consequence you may not convey it at all. For example, if you agree to terms that obligate you to collect a royalty for further conveying from those to whom you convey the Program, the only way you could satisfy both those terms and this License would be to refrain entirely from conveying the Program. 13. Use with the GNU Affero General Public License. Notwithstanding any other provision of this License, you have permission to link or combine any covered work with a work licensed under version 3 of the GNU Affero General Public License into a single combined work, and to convey the resulting work. The terms of this License will continue to apply to the part which is the covered work, but the special requirements of the GNU Affero General Public License, section 13, concerning interaction through a network will apply to the combination as such. 14. Revised Versions of this License. The Free Software Foundation may publish revised and/or new versions of the GNU General Public License from time to time. Such new versions will be similar in spirit to the present version, but may differ in detail to address new problems or concerns. Each version is given a distinguishing version number. If the Program specifies that a certain numbered version of the GNU General Public License "or any later version" applies to it, you have the option of following the terms and conditions either of that numbered version or of any later version published by the Free Software Foundation. If the Program does not specify a version number of the GNU General Public License, you may choose any version ever published by the Free Software Foundation. If the Program specifies that a proxy can decide which future versions of the GNU General Public License can be used, that proxy's public statement of acceptance of a version permanently authorizes you to choose that version for the Program. Later license versions may give you additional or different permissions. However, no additional obligations are imposed on any author or copyright holder as a result of your choosing to follow a later version. 15. Disclaimer of Warranty. THERE IS NO WARRANTY FOR THE PROGRAM, TO THE EXTENT PERMITTED BY APPLICABLE LAW. EXCEPT WHEN OTHERWISE STATED IN WRITING THE COPYRIGHT HOLDERS AND/OR OTHER PARTIES PROVIDE THE PROGRAM "AS IS" WITHOUT WARRANTY OF ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. THE ENTIRE RISK AS TO THE QUALITY AND PERFORMANCE OF THE PROGRAM IS WITH YOU. SHOULD THE PROGRAM PROVE DEFECTIVE, YOU ASSUME THE COST OF ALL NECESSARY SERVICING, REPAIR OR CORRECTION. 16. Limitation of Liability. IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN WRITING WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MODIFIES AND/OR CONVEYS THE PROGRAM AS PERMITTED ABOVE, BE LIABLE TO YOU FOR DAMAGES, INCLUDING ANY GENERAL, SPECIAL, INCIDENTAL OR CONSEQUENTIAL DAMAGES ARISING OUT OF THE USE OR INABILITY TO USE THE PROGRAM (INCLUDING BUT NOT LIMITED TO LOSS OF DATA OR DATA BEING RENDERED INACCURATE OR LOSSES SUSTAINED BY YOU OR THIRD PARTIES OR A FAILURE OF THE PROGRAM TO OPERATE WITH ANY OTHER PROGRAMS), EVEN IF SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH DAMAGES. 17. Interpretation of Sections 15 and 16. If the disclaimer of warranty and limitation of liability provided above cannot be given local legal effect according to their terms, reviewing courts shall apply local law that most closely approximates an absolute waiver of all civil liability in connection with the Program, unless a warranty or assumption of liability accompanies a copy of the Program in return for a fee. END OF TERMS AND CONDITIONS How to Apply These Terms to Your New Programs If you develop a new program, and you want it to be of the greatest possible use to the public, the best way to achieve this is to make it free software which everyone can redistribute and change under these terms. To do so, attach the following notices to the program. It is safest to attach them to the start of each source file to most effectively state the exclusion of warranty; and each file should have at least the "copyright" line and a pointer to where the full notice is found. Copyright (C) This program is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later version. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. You should have received a copy of the GNU General Public License along with this program. If not, see . Also add information on how to contact you by electronic and paper mail. If the program does terminal interaction, make it output a short notice like this when it starts in an interactive mode: Copyright (C) This program comes with ABSOLUTELY NO WARRANTY; for details type `show w'. This is free software, and you are welcome to redistribute it under certain conditions; type `show c' for details. The hypothetical commands `show w' and `show c' should show the appropriate parts of the General Public License. Of course, your program's commands might be different; for a GUI interface, you would use an "about box". You should also get your employer (if you work as a programmer) or school, if any, to sign a "copyright disclaimer" for the program, if necessary. For more information on this, and how to apply and follow the GNU GPL, see . The GNU General Public License does not permit incorporating your program into proprietary programs. If your program is a subroutine library, you may consider it more useful to permit linking proprietary applications with the library. If this is what you want to do, use the GNU Lesser General Public License instead of this License. But first, please read . bleachbit-2.0/setup.py0000755000175000017500000002107213245436307013120 0ustar hlehle#!/usr/bin/env python # vim: ts=4:sw=4:expandtab # BleachBit # Copyright (C) 2008-2018 Andrew Ziem # https://www.bleachbit.org # # This program is free software: you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by # the Free Software Foundation, either version 3 of the License, or # (at your option) any later version. # # This program is distributed in the hope that it will be useful, # but WITHOUT ANY WARRANTY; without even the implied warranty of # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the # GNU General Public License for more details. # # You should have received a copy of the GNU General Public License # along with this program. If not, see . """ Build BleachBit tarballs and exe """ from __future__ import absolute_import, print_function import bleachbit import bleachbit.General import bleachbit.FileUtilities import glob import os import sys import tempfile from distutils.core import setup if sys.platform == 'win32': try: import py2exe except ImportError: print('warning: py2exe not available') # # begin win32com.shell workaround for py2exe # copied from http://spambayes.svn.sourceforge.net/viewvc/spambayes/trunk/spambayes/windows/py2exe/setup_all.py?revision=3245&content-type=text%2Fplain # under Python license compatible with GPL # # ModuleFinder can't handle runtime changes to __path__, but win32com uses them, # particularly for people who build from sources. Hook this in. try: # py2exe 0.6.4 introduced a replacement modulefinder. # This means we have to add package paths there, not to the built-in # one. If this new modulefinder gets integrated into Python, then # we might be able to revert this some day. try: import py2exe.mf as modulefinder except ImportError: import modulefinder import win32com for p in win32com.__path__[1:]: modulefinder.AddPackagePath("win32com", p) for extra in ["win32com.shell", "win32com.mapi"]: __import__(extra) m = sys.modules[extra] for p in m.__path__[1:]: modulefinder.AddPackagePath(extra, p) except ImportError: # no build path setup, no worries. pass # # end win32com.shell workaround for py2exe # data_files = [] if sys.platform.startswith('linux'): data_files.append(('/usr/share/applications', ['./bleachbit.desktop'])) data_files.append(('/usr/share/pixmaps/', ['./bleachbit.png'])) elif sys.platform[:6] == 'netbsd': data_files.append(('/usr/pkg/share/applications', ['./bleachbit.desktop'])) data_files.append(('/usr/pkg/share/pixmaps/', ['./bleachbit.png'])) args = {} if 'py2exe' in sys.argv: args['windows'] = [{ 'script': 'bleachbit.py', 'icon_resources': [(1, 'windows/bleachbit.ico')] }] args['console'] = [{ 'script': 'bleachbit_console.py', 'icon_resources': [(1, 'windows/bleachbit.ico')] }] args['options'] = { 'py2exe': { 'packages': 'encodings', 'optimize': 2, # extra optimization (like python -OO) 'includes': ['atk', 'cairo', 'gobject', 'pango', 'pangocairo'], 'excludes': ['pyreadline', 'difflib', 'doctest', 'pickle', 'calendar', 'ftplib', 'bleachbit.Unix'], 'dll_excludes': [ 'CRYPT32.DLL', # required by ssl 'DNSAPI.DLL', 'IPHLPAPI.DLL', # psutil 'MPR.dll', 'MSIMG32.DLL', 'MSWSOCK.dll', 'NSI.dll', # psutil 'PSAPI.DLL', 'POWRPROF.dll', 'USP10.DLL', 'WTSAPI32.DLL', # psutil 'api-ms-win-core-apiquery-l1-1-0.dll', 'api-ms-win-core-crt-l1-1-0.dll', 'api-ms-win-core-crt-l2-1-0.dll', 'api-ms-win-core-debug-l1-1-1.dll', 'api-ms-win-core-delayload-l1-1-1.dll', 'api-ms-win-core-errorhandling-l1-1-1.dll', 'api-ms-win-core-file-l1-2-1.dll', 'api-ms-win-core-handle-l1-1-0.dll', 'api-ms-win-core-heap-l1-2-0.dll', 'api-ms-win-core-heap-obsolete-l1-1-0.dll', 'api-ms-win-core-io-l1-1-1.dll', 'api-ms-win-core-libraryloader-l1-2-0.dll', 'api-ms-win-core-localization-l1-2-1.dll', 'api-ms-win-core-memory-l1-1-2.dll', 'api-ms-win-core-processenvironment-l1-2-0.dll', 'api-ms-win-core-processthreads-l1-1-2.dll', 'api-ms-win-core-profile-l1-1-0.dll', 'api-ms-win-core-registry-l1-1-0.dll', 'api-ms-win-core-string-l1-1-0.dll', 'api-ms-win-core-string-obsolete-l1-1-0.dll', 'api-ms-win-core-synch-l1-2-0.dll', 'api-ms-win-core-sysinfo-l1-2-1.dll', 'api-ms-win-core-threadpool-l1-2-0.dll', 'api-ms-win-core-timezone-l1-1-0.dll', 'api-ms-win-core-util-l1-1-0.dll', 'api-ms-win-security-base-l1-2-0.dll', 'w9xpopen.exe', # not needed after Windows 9x ], 'compressed': True # create a compressed zipfile } } import gtk from distutils import version gtkver = version.StrictVersion('.'.join([str(x) for x in gtk.gtk_version])) gtkmin = version.StrictVersion('2.20.0') if gtkver >= gtkmin: args['options']['py2exe']['includes'].append('gio') # check for 32-bit import struct bits = 8 * struct.calcsize('P') assert 32 == bits def recompile_mo(langdir, app, langid, dst): """Recompile gettext .mo file""" if not bleachbit.FileUtilities.exe_exists('msgunfmt') and not bleachbit.FileUtilities.exe_exists('msgunfmt.exe'): print('warning: msgunfmt missing: skipping recompile') return mo_pathname = os.path.normpath('%s/LC_MESSAGES/%s.mo' % (langdir, app)) if not os.path.exists(mo_pathname): print('info: does not exist: %s', mo_pathname) return # decompile .mo to .po po = os.path.join(dst, langid + '.po') __args = ['msgunfmt', '-o', po, mo_pathname] ret = bleachbit.General.run_external(__args) if ret[0] != 0: raise RuntimeError(ret[2]) # shrink .po po2 = os.path.join(dst, langid + '.po2') __args = ['msgmerge', '--no-fuzzy-matching', po, os.path.normpath('windows/%s.pot' % app), '-o', po2] ret = bleachbit.General.run_external(__args) if ret[0] != 0: raise RuntimeError(ret[2]) # compile smaller .po to smaller .mo __args = ['msgfmt', po2, '-o', mo_pathname] ret = bleachbit.General.run_external(__args) if ret[0] != 0: raise RuntimeError(ret[2]) # clean up os.remove(po) os.remove(po2) def supported_languages(): """Return list of supported languages by scanning ./po/""" langs = [] for pathname in glob.glob('po/*.po'): basename = os.path.basename(pathname) langs.append(os.path.splitext(basename)[0]) return sorted(langs) def clean_dist_locale(): """Clean dist/share/locale""" tmpd = tempfile.mkdtemp('gtk_locale') langs = supported_languages() basedir = os.path.normpath('dist/share/locale') for langid in sorted(os.listdir(basedir)): print("debug: GTK language = '%s'", langid) langdir = os.path.join(basedir, langid) if langid in langs: # reduce the size of the .mo file recompile_mo(langdir, 'gtk20', langid, tmpd) else: # remove language supported by GTK+ but not by BleachBit cmd = 'rd /s /q ' + langdir print(cmd) os.system(cmd) os.rmdir(tmpd) def run_setup(): setup(name='bleachbit', version=bleachbit.APP_VERSION, description="Free space and maintain privacy", long_description="BleachBit frees space and maintains privacy by quickly wiping files you don't need and didn't know you had. Supported applications include Firefox, Flash, Internet Explorer, Java, Opera, Safari, GNOME, and many others.", author="Andrew Ziem", author_email="andrew@bleachbit.org", download_url="https://www.bleachbit.org/download", license="GPLv3", url=bleachbit.APP_URL, platforms='Linux and Windows; Python v2.6 and 2.7; GTK v2.12+', packages=['bleachbit'], **args) if __name__ == '__main__': if 2 == len(sys.argv) and sys.argv[1] == 'clean-dist': clean_dist_locale() else: run_setup() bleachbit-2.0/debian/0000755000175000017500000000000013245436310012615 5ustar hlehlebleachbit-2.0/bleachbit.py0000644000175000017500000000260713245436307013675 0ustar hlehle#!/usr/bin/env python # vim: ts=4:sw=4:expandtab # BleachBit # Copyright (C) 2008-2018 Andrew Ziem # https://www.bleachbit.org # # This program is free software: you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by # the Free Software Foundation, either version 3 of the License, or # (at your option) any later version. # # This program is distributed in the hope that it will be useful, # but WITHOUT ANY WARRANTY; without even the implied warranty of # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the # GNU General Public License for more details. # # You should have received a copy of the GNU General Public License # along with this program. If not, see . """ Launcher """ from __future__ import absolute_import, print_function import os import sys if 'posix' == os.name: if os.path.isdir('/usr/share/bleachbit'): # This path contains bleachbit/{C,G}LI.py . This section is # unnecessary if installing BleachBit in site-packages. sys.path.append('/usr/share/') if 1 == len(sys.argv): import gtk try: gtk.gdk.Screen().get_display() except RuntimeError: print("Could not open X display") sys.exit(1) import bleachbit.GUI gui = bleachbit.GUI.GUI() gtk.main() else: import bleachbit.CLI bleachbit.CLI.process_cmd_line() bleachbit-2.0/windows/0000755000175000017500000000000013245436310013065 5ustar hlehlebleachbit-2.0/windows/gtk20.pot0000644000175000017500000000206213245436307014546 0ustar hlehle# minimal gtk20.pot to reduce size of BleachBit installation on Windows # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. # FIRST AUTHOR , YEAR. # #, fuzzy msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2009-09-10 20:31-0600\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=CHARSET\n" "Content-Transfer-Encoding: 8bit\n" msgctxt "Stock label" msgid "_Close" msgstr "" msgid "C_redits" msgstr "" msgid "Translated by" msgstr "" msgid "_License" msgstr "" msgctxt "Stock label" msgid "_Delete" msgstr "" msgid "_Add" msgstr "" msgctxt "Stock label" msgid "_Cancel" msgstr "" msgid "About %s" msgstr "" msgid "License" msgstr "" msgid "Credits" msgstr "" msgid "_Remove" msgstr "" msgctxt "Stock label" msgid "_OK" msgstr "" msgctxt "Stock label" msgid "_Copy" msgstr "" bleachbit-2.0/windows/bleachbit.nsi0000644000175000017500000002473613245436307015537 0ustar hlehle; vim: ts=4:sw=4:expandtab ; ; BleachBit ; Copyright (C) 2008-2018 Andrew Ziem ; https://www.bleachbit.org ; ; This program is free software: you can redistribute it and/or modify ; it under the terms of the GNU General Public License as published by ; the Free Software Foundation, either version 3 of the License, or ; (at your option) any later version. ; ; This program is distributed in the hope that it will be useful, ; but WITHOUT ANY WARRANTY; without even the implied warranty of ; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the ; GNU General Public License for more details. ; ; You should have received a copy of the GNU General Public License ; along with this program. If not, see . ;-------------------------------- ;Include Modern UI !include "MUI2.nsh" ;-------------------------------- ;General ;Name and file !define prodname "BleachBit" Name "${prodname}" !ifdef NoTranslations OutFile "${prodname}-${VERSION}-setup-English.exe" !else OutFile "${prodname}-${VERSION}-setup.exe" ; Unicode requires NSIS version 3 or later Unicode true !endif ;Default installation folder InstallDir "$PROGRAMFILES\${prodname}" ;Get installation folder from registry if available InstallDirRegKey HKCU "Software\${prodname}" "" ;Request application privileges for Windows Vista RequestExecutionLevel admin ;Best compression SetCompressor /SOLID lzma ;-------------------------------- ;Interface Settings !define MUI_ABORTWARNING ;-------------------------------- ;Language Selection Dialog Settings ;Remember the installer language !define MUI_LANGDLL_REGISTRY_ROOT "HKCU" !define MUI_LANGDLL_REGISTRY_KEY "Software\${prodname}" !define MUI_LANGDLL_REGISTRY_VALUENAME "Installer Language" ;-------------------------------- ;Pages !insertmacro MUI_PAGE_LICENSE "..\COPYING" !insertmacro MUI_PAGE_COMPONENTS !insertmacro MUI_PAGE_DIRECTORY !insertmacro MUI_PAGE_INSTFILES !define MUI_FINISHPAGE_NOAUTOCLOSE !define MUI_FINISHPAGE_RUN "$INSTDIR\${prodname}.exe" !define MUI_FINISHPAGE_LINK "Visit the ${prodname} web site" !define MUI_FINISHPAGE_LINK_LOCATION "https://www.bleachbit.org" !insertmacro MUI_PAGE_FINISH !insertmacro MUI_UNPAGE_CONFIRM !insertmacro MUI_UNPAGE_INSTFILES ;-------------------------------- ;Languages !insertmacro MUI_LANGUAGE "English" !ifndef NoTranslations !insertmacro MUI_LANGUAGE "Albanian" !insertmacro MUI_LANGUAGE "Arabic" !insertmacro MUI_LANGUAGE "Armenian" !insertmacro MUI_LANGUAGE "Asturian" !insertmacro MUI_LANGUAGE "Basque" !insertmacro MUI_LANGUAGE "Belarusian" !insertmacro MUI_LANGUAGE "Bosnian" !insertmacro MUI_LANGUAGE "Bulgarian" !insertmacro MUI_LANGUAGE "Catalan" !insertmacro MUI_LANGUAGE "Croatian" !insertmacro MUI_LANGUAGE "Czech" !insertmacro MUI_LANGUAGE "Danish" !insertmacro MUI_LANGUAGE "Dutch" !insertmacro MUI_LANGUAGE "Estonian" !insertmacro MUI_LANGUAGE "Finnish" !insertmacro MUI_LANGUAGE "French" !insertmacro MUI_LANGUAGE "Galician" !insertmacro MUI_LANGUAGE "German" !insertmacro MUI_LANGUAGE "Greek" !insertmacro MUI_LANGUAGE "Hebrew" !insertmacro MUI_LANGUAGE "Hungarian" !insertmacro MUI_LANGUAGE "Indonesian" !insertmacro MUI_LANGUAGE "Italian" !insertmacro MUI_LANGUAGE "Japanese" !insertmacro MUI_LANGUAGE "Korean" !insertmacro MUI_LANGUAGE "Kurdish" !insertmacro MUI_LANGUAGE "Latvian" !insertmacro MUI_LANGUAGE "Lithuanian" !insertmacro MUI_LANGUAGE "Malay" !insertmacro MUI_LANGUAGE "Norwegian" !insertmacro MUI_LANGUAGE "NorwegianNynorsk" !insertmacro MUI_LANGUAGE "Polish" !insertmacro MUI_LANGUAGE "Portuguese" !insertmacro MUI_LANGUAGE "PortugueseBR" !insertmacro MUI_LANGUAGE "Romanian" !insertmacro MUI_LANGUAGE "Russian" !insertmacro MUI_LANGUAGE "Serbian" !insertmacro MUI_LANGUAGE "SimpChinese" !insertmacro MUI_LANGUAGE "Slovak" !insertmacro MUI_LANGUAGE "Slovenian" !insertmacro MUI_LANGUAGE "Spanish" !insertmacro MUI_LANGUAGE "Swedish" !insertmacro MUI_LANGUAGE "Thai" !insertmacro MUI_LANGUAGE "TradChinese" !insertmacro MUI_LANGUAGE "Turkish" !insertmacro MUI_LANGUAGE "Ukrainian" !insertmacro MUI_LANGUAGE "Uzbek" !insertmacro MUI_LANGUAGE "Vietnamese" !endif ;-------------------------------- ;Function ; http://nsis.sourceforge.net/RefreshShellIcons Function RefreshShellIcons !define SHCNE_ASSOCCHANGED 0x08000000 !define SHCNF_IDLIST 0 System::Call 'shell32.dll::SHChangeNotify(i, i, i, i) v (${SHCNE_ASSOCCHANGED}, ${SHCNF_IDLIST}, 0, 0)' FunctionEnd ;-------------------------------- ;Default section Section Core (Required) SectionIn RO SetOutPath $INSTDIR File "..\dist\*.*" File "..\COPYING" SetOutPath $INSTDIR\etc File /r "..\dist\etc\*.*" SetOutPath $INSTDIR\lib File /r "..\dist\lib\*.*" SetOutPath $INSTDIR\share File "..\dist\share\bleachbit.png" SetOutPath $INSTDIR\share\cleaners File /r "..\dist\share\cleaners\*.*" SetOutPath $INSTDIR\share\themes File /r "..\dist\share\themes\*.*" SetOutPath "$INSTDIR\share\" File "..\bleachbit.png" # uninstaller WriteUninstaller "$INSTDIR\uninstall.exe" SetOutPath "$INSTDIR\" CreateDirectory "$SMPROGRAMS\${prodname}" CreateShortCut "$SMPROGRAMS\${prodname}\Uninstall.lnk" "$INSTDIR\uninstall.exe" # register uninstaller in Add/Remove Programs WriteRegStr HKLM "Software\Microsoft\Windows\CurrentVersion\Uninstall\${prodname}" \ "DisplayName" "${prodname}" WriteRegStr HKLM "Software\Microsoft\Windows\CurrentVersion\Uninstall\${prodname}" \ "DisplayVersion" "${VERSION}" WriteRegStr HKLM "Software\Microsoft\Windows\CurrentVersion\Uninstall\${prodname}" \ "HelpLink" "https://www.bleachbit.org/help" WriteRegStr HKLM "Software\Microsoft\Windows\CurrentVersion\Uninstall\${prodname}" \ "NoModify" "1" WriteRegStr HKLM "Software\Microsoft\Windows\CurrentVersion\Uninstall\${prodname}" \ "NoRepair" "1" WriteRegStr HKLM "Software\Microsoft\Windows\CurrentVersion\Uninstall\${prodname}" \ "Publisher" "BleachBit" WriteRegStr HKLM "Software\Microsoft\Windows\CurrentVersion\Uninstall\${prodname}" \ "UninstallString" "$INSTDIR\uninstall.exe" WriteRegStr HKLM "Software\Microsoft\Windows\CurrentVersion\Uninstall\${prodname}" \ "URLInfoAbout" "https://www.bleachbit.org/" WriteRegStr HKLM "Software\Microsoft\Windows\CurrentVersion\Uninstall\${prodname}" \ "URLUpdateInfo" "https://www.bleachbit.org/download" WriteRegStr HKLM "Software\Microsoft\Windows\CurrentVersion\Uninstall\${prodname}" \ "QuietUninstallString" "$\"$INSTDIR\uninstall.exe$\" /S" SectionEnd SectionGroup /e Shortcuts Section "Start menu" SectionStart SetOutPath "$INSTDIR\" # this affects CreateShortCut's 'Start in' directory CreateShortCut "$SMPROGRAMS\${prodname}\${prodname}.lnk" "$INSTDIR\${prodname}.exe" CreateShortCut "$SMPROGRAMS\${prodname}\${prodname} No UAC.lnk" \ "$INSTDIR\${prodname}.exe" \ "--no-uac --gui" CreateShortCut "$SMPROGRAMS\${prodname}\${prodname} Debugging Terminal.lnk" \ "$INSTDIR\${prodname}_console.exe" Call RefreshShellIcons WriteINIStr "$SMPROGRAMS\${prodname}\${prodname} Home Page.url" "InternetShortcut" "URL" "https://www.bleachbit.org/" SectionEnd Section "Desktop" SectionDesktop SetOutPath "$INSTDIR\" # this affects CreateShortCut's 'Start in' directory CreateShortcut "$DESKTOP\BleachBit.lnk" "$INSTDIR\${prodname}.exe" Call RefreshShellIcons SectionEnd Section /o "Quick launch" SectionQuickLaunch SetOutPath "$INSTDIR\" # this affects CreateShortCut's 'Start in' directory CreateShortcut "$QUICKLAUNCH\BleachBit.lnk" "$INSTDIR\${prodname}.exe" Call RefreshShellIcons SectionEnd Section /o "Start automatically" SectionStartUp SetOutPath "$INSTDIR\" # this affects CreateShortCut's 'Start in' directory CreateShortcut "$SMSTARTUP\BleachBit.lnk" "$INSTDIR\${prodname}.exe" Call RefreshShellIcons SectionEnd SectionGroupEnd !ifndef NoTranslations Section Translations SetOutPath $INSTDIR\share\locale File /r "..\dist\share\locale\*.*" SectionEnd !endif ;Section for making Shred Integration Optional !ifndef NoSectionShred Section "Integrate Shred" SectionShred # register file association verb WriteRegStr HKCR "AllFileSystemObjects\shell\shred.bleachbit" "" 'Shred with BleachBit' WriteRegStr HKCR "AllFileSystemObjects\shell\shred.bleachbit\command" "" '"$INSTDIR\bleachbit.exe" --gui --no-uac --shred "%1"' SectionEnd !endif ;-------------------------------- ;Installer Functions Function .onInit ; Language display dialog !insertmacro MUI_LANGDLL_DISPLAY ; Check whether application is already installed ReadRegStr $R0 HKLM "Software\Microsoft\Windows\CurrentVersion\Uninstall\${prodname}" \ "UninstallString" ; If not already installed, skip uninstallation StrCmp $R0 "" new_install MessageBox MB_OKCANCEL|MB_ICONEXCLAMATION \ "${prodname} is already installed. Click 'OK' to uninstall the old version before \ upgrading, or click 'Cancel' to abort the upgrade." \ /SD IDOK \ IDOK uninstall_old Abort uninstall_old: ; If installing in silent mode, also uninstall in silent mode Var /GLOBAL uninstaller_cmd StrCpy $uninstaller_cmd '$R0 _?=$INSTDIR' IfSilent 0 +2 StrCpy $uninstaller_cmd "$uninstaller_cmd /S" ExecWait $uninstaller_cmd ; Actually run the uninstaller new_install: FunctionEnd ;-------------------------------- ;Uninstaller Section UninstallText "BleachBit will be uninstalled from the following folder. Click Uninstall to start the uninstallation. WARNING: The uninstaller completely removes the installation directory including any files (such as custom cleaners) that you may have added or changed." Section "Uninstall" RMDir /r "$INSTDIR" DeleteRegKey HKCU "Software\${prodname}" # delete normal shortcuts RMDir /r "$SMPROGRAMS\${prodname}" # delete any extra shortcuts Delete "$DESKTOP\BleachBit.lnk" Delete "$QUICKLAUNCH\BleachBit.lnk" Delete "$SMSTARTUP\BleachBit.lnk" # remove file association DeleteRegKey HKCR "AllFileSystemObjects\shell\shred.bleachbit" # remove registration in Add/Remove Programs DeleteRegKey HKLM "Software\Microsoft\Windows\CurrentVersion\Uninstall\${prodname}" SectionEnd ;-------------------------------- ;Uninstaller Functions Function un.onInit !insertmacro MUI_UNGETLANGUAGE FunctionEnd bleachbit-2.0/windows/bleachbit.ico0000644000175000017500000005703613245436307015517 0ustar hlehlep(CF0*X nC P@X(?OOOWWm\XkP--**FFzz&&ejkkV.Uzz"?/[7c>@@J }\++p;mdD88Zhho<//*H}DMXg}AT`\\\SVr/w%m0JZAvvv@b!!##$1MMw<<w\ ~/xf33{uWw~t:*^EWnxHf>f3J7!sa 540|`l';`Gnm"uq&&@PRPB**,Uo{}}[zJJJcccK6D r]U6q:: " B/{//aw}< n4P{ 4VVVppqTBN~ 88FFRR#t#Q'@3aGW:~x~IbXK33333KKKKKJݼIII33333KKKKKKKKKKKKKKKKKKKKKKKKKKKKKKKKKKKKKKKKݘI3333KKKKKKKKKKKKKKKKKKKKKKKKKKKKKKKKKKKIKKKKBBBBBBBBBBBBBBBBKKۘKKKKBBBBBnn*ƈZBBBBBBBBKKBIIKKK,nnnnnnnnn>KKKBB3BBKKIIKKKKKKKKnn@A@nnnnn*޻KKK3BB3IIK*nƒeee9nn###‹nnȃ²nnnnn޻KKKKB3BB3IKKBZnnee@n###UUU@nne9nnnee88nn*dKK޼KBB3BB3ۘKKK$ne#ƒnn#UUUnne9nnneeee#8aaˋnn*BBBBBBKKKKnQe##QU@nUnneƒnnneeeeeQaa8nnnBBBBKKKKKnn8ʲ###nn̎nn#e¤nneeeeȃaannn$BJ3KKKKK޽n8e^e##^扎nn#QŒnneeeeȃ8nnnnlJ3KKKpnne##橎@n##nneeeee9nn@nnnlJIIIIgne9#掎Unn#nneeeeeQ9nnnaann`3IIIIIIIIIIܘJjjjjjne^̎^扎Unnneeeeƒnnn^aan:jJjjۆnn8e̎Qڙnn̔Unneeee#9nnn8aaannn JjjIIIIIIIII-nne̎nnneeeeeƒnn9'aaannnIIIIIIIIIIIIIIIIIIjjIIIIIIIIInn8Q##nn̔Uneeeee²nn9aaa@nnmIIIIIIIIIIIIIIIIIIIjjjIIIIn@##̎ȉYnnUneeeeQnnnȃaa'nnIIIIIIIIIIIIIIIIIIIIIIIIۗ3jIIIۗmn####^^n掎Ueeeennnȃaa'@nnIIIIIIIIIIIIIIIIIIIIIIKjjIIn###^QxxxQnnUeee#ƒnȃaannLjjjjIIIIIIIIIIIIIIIIIIXݼjjIIۗnn8k̎^xxxxډ^Y##eee9ƒȃaaannjjjjjjjjIIIIIIIIIIIIIII3ݹjIIInk̎xxxxQӉ##eeQƒeaa'@nnjjjjjjjIIIIIIIIIIIIIIIݻjjII2nk̎QQx###eQ9ee9'aanǀjjjjjIIIIIIIIIIIIXjjIIIIIInk̎xxQ&&&^ʉ##eeeʐaaann~jjjIIIIIIIIIIIIIIIjjIIIIIInkxxQQ&&&^Q^###eeeQaaaAnn~ۗIIIIIIIIIIIIIIIjjIII۬nUxxڔ&&&&Q^Qx^##9eeaa'nIIIIIIIIIIIIIJjjIIۆnnUxx㔔^^xx^#99eeaann@IIIIIIIIIIIIjj nnkֺxx&xx̎Q9eeeaa'nnIIIIIIIIIIIjjۀnnֺxx&YYzz┲Q&xxQQeeaan IIIIIIIIIݗjjۀnֺx&&YYzzʲ&xQQeeeaaAnn~IIIIIIIIBjjۀnxx&&zzz&&xQeeeȐaannmIIIIIIIj)4{n=xx&&⺺zzz&&ڔeee8annIIIIII. [n=zx&U&#ee8aannIIIII S֡x&&zƒz&###e8'ˤnn2ۗIIII6 | zzzzUUzz###nIIIIK (ΰ 'zz##nnIII۵ || z&x#nnnIIIJ is 1zz&xUnnmIII ii C Rzz&xkknnIIIIIJ |i \ z&&xkknnIIIII |i \r az&xYk@nnIIIIۗnn5 ( \rr%cfs hz&knnIIII3nnn+ \r%c_ TˡnndžIIIۗnnn@ƒ+ sCrcc oknn2IIIInnnn9ʔYտ s %cc% nnnIIIIIIInn9QQYb c%rϦ mIIIIIIۗBnn999QQY s;cr v( MIIIIIIJnnnnƒYz+ ;%r vP IIIIIۗnnnUz! r vv 7IIIIIIIJnnn™k! Ϩv IIIIIIIIInnnn== v IIIIIIIIIۗBnnn@==h wIIIIIIIIInnn==5 )IIIIIIIIII/nnn=kn))IIIIIIIIIIIIIX///nnnnmIIIIIIIIIIIIIII/[nn8nIIIIIIIIIIIIIۗ/nnn@kn2IIIIIIIIIIIIIۗj///S[nnnnIIIIIIIIIIIIIIjj///2nnnIIIIIIIIIIIIIIjjttԂnnnnIIIIIIIIIIIIIIjtttttt"jj@nnnIIIIIIIIIIIIIjj/}tttttt/H3n@ۗj}0ttttttFjDDjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjj ???ttttXIjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjj y?????t?JJJJJJJJJJJJJJ q0???????yEq ????????}}/ENq???????0NN}???????? Nq????????y ENN???????? NNy????????qq/qN ?ttt?????qENNyt??yNNNN??NWN VDtNNWNO}NNNjqNNNNqNNNqNNNNNNNN?????????(0T0 bbbvVV^W%%`.Im++$$|7[d3Yz-$pS}Hrrr>>nn S?dD&!G t))#SST$Xp' 6b=::@K2GseJJ_ {'y!!gw$$qU!]{{{ g3hlz}-6dNWr>ziiiD7^: $"NV!]sx2TzkKkeG!*F_`(U \> s@DXV9|9*,++cOuj.yk* T bO_'1 ! 1, _)x)O@7uo)1 {WWWnW2oG5'eeennnwwwaw|>@ ivy7Sn3}} Ils#'''ooooooooooooo'7S~~@\\\\\\^~\\#F^##\#\\\\\a}bCCz%c]]]#^\^#\\\E,em}']]^\\#'1iɳE]]#^@\\\5ϥiiif*]#^@\\^\#1yP,:iʌzG#^^^#\\^^~\a,i,P$##\\\\^#S@UZ{yJʛPie\\\\\\\^#,D w,P:iвeT7^777ԔԼ B{Piϳ$?777777^7 {ә ڙrPiޝiev777777j1Jw t DZ,ifjR777> ” Di7~6R7| tB:ڙ{DPine>7mtف{P777\[mΖ| Pḯ7777 x.9ٖ`٫ { i}탃77777]YK+N`t{m?777777~W_O=؏B-j7777777#M&(Isd777777p,m8uAI4kX7777pyݕ؜A!V777UϪ;77777Lഭ} )7777l3Nmv777777777H1 77777777~gQe^06~~~~~~~~~~~~~~~~\qMHhqH002 ܣ"/l܍<????( 8lll{EEp_41oo''_-=_u>5a!;mL|UBM{}}}(> ::jcy~CI .{[.!iw/#-H(O7bbbE6@kGu$yX%==5>~T"EK:f T;K4@ZsxxxT!~>_*\-0 6qqq"uK'r3C:bNTBYj?P5L[0oW/*c*&q{{{{}"Q7t=7 f|IeGhjno!w.(49VzF&/(Q."X4R gI @*2))4pSJߓ####ݓJJߓA#ޒ)k2ᔔS)``#6)S-Bm#SS`))}d,=9+m#S`)S#)J͸c`)S`SQrZaNVhS``)6~^.љ,yi 㮏X낻xs,"D6HRo 4;| | |w[{ez ٱH*v GP||ڐ1?CgE!||||| ٕ\7õH||||||||q( FHH||||| u b'$nW׏HH|||Jxf:U5XHHHHHH|| TM/ ֏HHHHH|||`%KLtHH|||ȷl0_XHHH||||&8O> ڐIIj]Yj@3p<??(%sHBc/PzU=8:#]1q&so)Z.dP+O4~~~ z-M}-3_.$8AV2x!+"r %)=fV;>_3kcE`ai/$ 'E7eQH*94!.F<"PD0^C)UST%JhbZ2R@Kg^Z?1:G5AIBZg^,&-=YB[[ LWXYZ\d  XggY#Z 8j[#M]6NO(+bleachbit-2.0/cleaners/0000755000175000017500000000000013245436310013167 5ustar hlehlebleachbit-2.0/cleaners/google_chrome.xml0000644000175000017500000004411013245436307016530 0ustar hlehle Web browser chrome.exe chrome bleachbit-2.0/cleaners/Makefile0000644000175000017500000000114313245436307014634 0ustar hlehle# On some systems if not explicitly given, make uses /bin/sh, so 'make pretty' fails. SHELL := /bin/bash PHONY: pretty tests pretty: for f in *xml; \ do \ xmllint --format "$$f" > "$$f.pretty"; \ diff=`diff -q "$$f" "$$f.pretty" | grep -o differ`; \ [[ "$$diff" != "differ" ]] && echo "$$f" unchanged && rm "$$f.pretty"; \ [[ -s "$$f.pretty" ]] && echo "$$f" is pretty now!!! && mv "$$f.pretty" "$$f" ; \ done; \ exit 0 tests: lintrc=0; \ for f in *.xml; \ do \ xmllint --noout --schema ../doc/cleaner_markup_language.xsd "$$f"; \ lintrc=$$(($$lintrc + $$?)); \ done; \ exit $$lintrc bleachbit-2.0/cleaners/seamonkey.xml0000644000175000017500000001261313245436307015715 0ustar hlehle Web browser seamonkey.exe seamonkey bleachbit-2.0/cleaners/opera.xml0000644000175000017500000001444113245436307015031 0ustar hlehle Web browser opera opera.exe bleachbit-2.0/cleaners/transmission.xml0000644000175000017500000000362213245436307016453 0ustar hlehle File transfer client transmission bleachbit-2.0/cleaners/rhythmbox.xml0000644000175000017500000000260313245436307015744 0ustar hlehle bleachbit-2.0/cleaners/warzone2100.xml0000644000175000017500000000246213245436307015713 0ustar hlehle Game bleachbit-2.0/cleaners/hexchat.xml0000644000175000017500000000307513245436307015350 0ustar hlehle IRC client formerly known as XChat bleachbit-2.0/cleaners/localizations.xml0000644000175000017500000000571413245436307016601 0ustar hlehle bleachbit-2.0/cleaners/vuze.xml0000644000175000017500000000413313245436307014711 0ustar hlehle File transfer client bleachbit-2.0/cleaners/deepscan.xml0000644000175000017500000000446613245436307015513 0ustar hlehle Clean files widely scattered across the disk bleachbit-2.0/cleaners/gimp.xml0000644000175000017500000000246213245436307014657 0ustar hlehle Graphics editor bleachbit-2.0/cleaners/tortoisesvn.xml0000644000175000017500000000204213245436307016314 0ustar hlehle bleachbit-2.0/cleaners/internet_explorer.xml0000644000175000017500000000653113245436307017474 0ustar hlehle Web browser bleachbit-2.0/cleaners/nautilus.xml0000644000175000017500000000233013245436307015561 0ustar hlehle File manager bleachbit-2.0/cleaners/epiphany.xml0000644000175000017500000000726113245436307015542 0ustar hlehle Web browser epiphany ~/.gnome2/epiphany/mozilla/epiphany/lock bleachbit-2.0/cleaners/elinks.xml0000644000175000017500000000246013245436307015206 0ustar hlehle Web browser bleachbit-2.0/cleaners/teamviewer.xml0000644000175000017500000000256113245436307016073 0ustar hlehle bleachbit-2.0/cleaners/apt.xml0000644000175000017500000000331413245436307014504 0ustar hlehle Package manager apt-get synaptic bleachbit-2.0/cleaners/wordpad.xml0000644000175000017500000000224313245436307015360 0ustar hlehle Word processor bleachbit-2.0/cleaners/recoll.xml0000644000175000017500000000216013245436307015176 0ustar hlehle Search tool bleachbit-2.0/cleaners/tremulous.xml0000644000175000017500000000211213245436307015752 0ustar hlehle Game bleachbit-2.0/cleaners/screenlets.xml0000644000175000017500000000210613245436307016065 0ustar hlehle Widgets for the desktop bleachbit-2.0/cleaners/gnome.xml0000644000175000017500000000327213245436307015030 0ustar hlehle Desktop environment bleachbit-2.0/cleaners/kde.xml0000644000175000017500000000407313245436307014466 0ustar hlehle Desktop environment bleachbit-2.0/cleaners/secondlife_viewer.xml0000644000175000017500000000272413245436307017420 0ustar hlehle Game bleachbit-2.0/cleaners/realplayer.xml0000644000175000017500000000404313245436307016060 0ustar hlehle Media player bleachbit-2.0/cleaners/bash.xml0000644000175000017500000000206313245436307014635 0ustar hlehle Shell bleachbit-2.0/cleaners/gpodder.xml0000644000175000017500000000246513245436307015352 0ustar hlehle bleachbit-2.0/cleaners/google_earth.xml0000644000175000017500000000270713245436307016364 0ustar hlehle bleachbit-2.0/cleaners/beagle.xml0000644000175000017500000000265213245436307015143 0ustar hlehle Search tool bleachbit-2.0/cleaners/skype.xml0000644000175000017500000000321113245436307015047 0ustar hlehle Chat client skype bleachbit-2.0/cleaners/amsn.xml0000644000175000017500000000263113245436307014657 0ustar hlehle Chat client bleachbit-2.0/cleaners/winzip.xml0000644000175000017500000000222313245436307015236 0ustar hlehle bleachbit-2.0/cleaners/sqlite3.xml0000644000175000017500000000222213245436307015301 0ustar hlehle bleachbit-2.0/cleaners/microsoft_office.xml0000644000175000017500000001535013245436307017243 0ustar hlehle Office suite bleachbit-2.0/cleaners/evolution.xml0000644000175000017500000000317513245436307015751 0ustar hlehle Email client evolution bleachbit-2.0/cleaners/safari.xml0000644000175000017500000000565313245436307015175 0ustar hlehle Web browser bleachbit-2.0/cleaners/audacious.xml0000644000175000017500000000276513245436307015706 0ustar hlehle Audio player bleachbit-2.0/cleaners/chromium.xml0000644000175000017500000003673613245436307015561 0ustar hlehle Web browser chrome.exe chromium-browser bleachbit-2.0/cleaners/wine.xml0000644000175000017500000000215613245436307014665 0ustar hlehle Compatibility layer for Windows software bleachbit-2.0/cleaners/adobe_reader.xml0000644000175000017500000000466713245436307016330 0ustar hlehle Document viewer acroread bleachbit-2.0/cleaners/easytag.xml0000644000175000017500000000333713245436307015362 0ustar hlehle Audio files tagger bleachbit-2.0/cleaners/miro.xml0000644000175000017500000000373113245436307014671 0ustar hlehle Multimedia viewer bleachbit-2.0/cleaners/flash.xml0000644000175000017500000000444113245436307015017 0ustar hlehle Multimedia viewer bleachbit-2.0/cleaners/windows_media_player.xml0000644000175000017500000000267213245436307020133 0ustar hlehle Media player bleachbit-2.0/cleaners/gftp.xml0000644000175000017500000000234513245436307014663 0ustar hlehle File transfer client bleachbit-2.0/cleaners/windows_defender.xml0000644000175000017500000000241113245436307017243 0ustar hlehle Anti-virus bleachbit-2.0/cleaners/liferea.xml0000644000175000017500000000606713245436307015337 0ustar hlehle liferea-bin liferea bleachbit-2.0/cleaners/winamp.xml0000644000175000017500000000225413245436307015215 0ustar hlehle Media player bleachbit-2.0/cleaners/libreoffice.xml0000644000175000017500000000506513245436307016176 0ustar hlehle Office suite soffice.bin soffice.exe bleachbit-2.0/cleaners/gl-117.xml0000644000175000017500000000207513245436307014633 0ustar hlehle Game bleachbit-2.0/cleaners/gedit.xml0000644000175000017500000000246213245436307015017 0ustar hlehle Editor bleachbit-2.0/cleaners/vim.xml0000644000175000017500000000223513245436307014514 0ustar hlehle Editor bleachbit-2.0/cleaners/links2.xml0000644000175000017500000000227313245436307015125 0ustar hlehle Web browser bleachbit-2.0/cleaners/windows_explorer.xml0000644000175000017500000001245613245436307017341 0ustar hlehle File manager bleachbit-2.0/cleaners/pidgin.xml0000644000175000017500000000262713245436307015200 0ustar hlehle Chat client bleachbit-2.0/cleaners/xine.xml0000644000175000017500000000206713245436307014667 0ustar hlehle Multimedia viewer bleachbit-2.0/cleaners/winetricks.xml0000644000175000017500000000221713245436307016103 0ustar hlehle bleachbit-2.0/cleaners/yahoo_messenger.xml0000644000175000017500000000332213245436307017106 0ustar hlehle Chat client bleachbit-2.0/cleaners/octave.xml0000644000175000017500000000217613245436307015206 0ustar hlehle bleachbit-2.0/cleaners/gwenview.xml0000644000175000017500000000272713245436307015562 0ustar hlehle bleachbit-2.0/cleaners/vlc.xml0000644000175000017500000000351413245436307014506 0ustar hlehle Media player vlc.exe vlc bleachbit-2.0/cleaners/journald.xml0000644000175000017500000000215113245436307015534 0ustar hlehle System journals journalctl bleachbit-2.0/cleaners/x11.xml0000644000175000017500000000233213245436307014330 0ustar hlehle Windowing system bleachbit-2.0/cleaners/filezilla.xml0000644000175000017500000000250413245436307015673 0ustar hlehle File transfer client bleachbit-2.0/cleaners/exaile.xml0000644000175000017500000000275013245436307015172 0ustar hlehle bleachbit-2.0/cleaners/thumbnails.xml0000644000175000017500000000226513245436307016072 0ustar hlehle Icons for files on the system bleachbit-2.0/cleaners/google_toolbar.xml0000644000175000017500000000210213245436307016710 0ustar hlehle bleachbit-2.0/cleaners/paint.xml0000644000175000017500000000212313245436307015030 0ustar hlehle bleachbit-2.0/cleaners/d4x.xml0000644000175000017500000000214613245436307014421 0ustar hlehle bleachbit-2.0/cleaners/konqueror.xml0000644000175000017500000000465013245436307015751 0ustar hlehle Web browser konqueror bleachbit-2.0/cleaners/winrar.xml0000644000175000017500000000265213245436307015226 0ustar hlehle File archiver bleachbit-2.0/cleaners/hippo_opensim_viewer.xml0000644000175000017500000000276513245436307020163 0ustar hlehle Game bleachbit-2.0/cleaners/nexuiz.xml0000644000175000017500000000211113245436307015234 0ustar hlehle Game bleachbit-2.0/cleaners/silverlight.xml0000644000175000017500000000240713245436307016256 0ustar hlehle bleachbit-2.0/cleaners/thunderbird.xml0000644000175000017500000001206513245436307016235 0ustar hlehle Email client thunderbird.exe thunderbird-bin bleachbit-2.0/cleaners/mc.xml0000644000175000017500000000215113245436307014315 0ustar hlehle bleachbit-2.0/cleaners/amule.xml0000644000175000017500000000304113245436307015020 0ustar hlehle File transfer client bleachbit-2.0/cleaners/yum.xml0000644000175000017500000000246313245436307014536 0ustar hlehle Package manager bleachbit-2.0/cleaners/emesene.xml0000644000175000017500000000330013245436307015334 0ustar hlehle Chat client bleachbit-2.0/cleaners/java.xml0000644000175000017500000000265313245436307014646 0ustar hlehle bleachbit-2.0/CONTRIBUTING.md0000644000175000017500000000540613245436307013637 0ustar hlehle# How to contribute to BleachBit Thank you for your interest in contributing. ## When to file a bug report Are you using the [latest version](https://www.bleachbit.org/download)? ## Where to file an issue Most bug reports should be filed in [GitHub under the BleachBit repository](https://github.com/bleachbit/bleachbit/issues/new). Bug reports were managed in [Launchpad](https://bugs.launchpad.net/bleachbit/) between about 2009 and 2016. Launchpad still contains some active issue tickets, but more recently users are encouraged to file issue tickets in GitHub. ## Information to include with bug reports When filing a bug report, please include: * The version of BleachBit * The type and version of the operating system (for example, Windows 10 or Ubuntu 16.04) * The exact error message * Which exact steps you took before the error happened If you are reporting an error that happens while cleaning ([example screenshot](https://user-images.githubusercontent.com/22394276/31048383-42d469d8-a61c-11e7-9a7d-d149887ce2f3.jpg)), please try to narrow it down a single cleaning option (in other words, a single checkbox). See also [prioritization of issues](https://www.bleachbit.org/contribute/prioritization-issues). ## Development environment BleachBit runs on Python 2.7 with PyGTK 2. See also [running from source](https://docs.bleachbit.org/dev/running-from-source-code.html) regarding dependencies. The modernization branch supports GTK+ 3, but it is not yet ready. See the GitHub issues. ## Procedure for creating and submitting patch Following this process will help your changes get merged sooner. If you plan to write a major change, please consider first opening a GitHub issue to discuss. * Log in to GitHub. * Fork the right BleachBit repository, as there are several repositories. * Check out your forked repository. * Make your changes. * Test your changes. Consider adding or expanding a unit test. * Run the unit tests by running ```` python tests/TestAll.py ```` * Make commits in small, logical units to make them easier to review. * Submit the pull request. * Check that it passes the tests by Travis CI and AppVeyor. If you have multiple commits around multiple themes (such as adding two, unrelated features), please consider breaking them up into multiple pull requests by using multiple branches. Smaller pull requests are easier to review and commit. Please consider reviewing someone else's pull requests and asking him or her to do the same for you. This can improve quality and get your changes merged sooner. ## Style * Indent with four spaces instead of tabs. * Format your code using PEP-8 standards like this: ````autopep8 -i bleachbit/Action.py```` * Follow other best practices such as they relate to readability, documentation, error handling, and performance. bleachbit-2.0/bleachbit/0000755000175000017500000000000013245436310013310 5ustar hlehlebleachbit-2.0/bleachbit/Cleaner.py0000644000175000017500000011423413245436307015246 0ustar hlehle# vim: ts=4:sw=4:expandtab # BleachBit # Copyright (C) 2008-2018 Andrew Ziem # https://www.bleachbit.org # # This program is free software: you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by # the Free Software Foundation, either version 3 of the License, or # (at your option) any later version. # # This program is distributed in the hope that it will be useful, # but WITHOUT ANY WARRANTY; without even the implied warranty of # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the # GNU General Public License for more details. # # You should have received a copy of the GNU General Public License # along with this program. If not, see . """ Perform (or assist with) cleaning operations. """ from __future__ import absolute_import, print_function from bleachbit import _, expanduser, expandvars from bleachbit.FileUtilities import children_in_directory from bleachbit.Options import options from bleachbit import Command, FileUtilities, Memory, Special import glob import logging import os.path import re import sys import warnings if 'posix' == os.name: from bleachbit import Unix elif 'nt' == os.name: from bleachbit import Windows # Suppress GTK warning messages while running in CLI #34 warnings.simplefilter("ignore", Warning) try: import gtk HAVE_GTK = True except ImportError: HAVE_GTK = False # a module-level variable for holding cleaners backends = {} class Cleaner: """Base class for a cleaner""" def __init__(self): self.actions = [] self.id = None self.description = None self.name = None self.options = {} self.running = [] self.warnings = {} def add_action(self, option_id, action): """Register 'action' (instance of class Action) to be executed for ''option_id'. The actions must implement list_files and other_cleanup()""" self.actions += ((option_id, action), ) def add_option(self, option_id, name, description): """Register option (such as 'cache')""" self.options[option_id] = (name, description) def add_running(self, detection_type, pathname): """Add a way to detect this program is currently running""" self.running += ((detection_type, pathname), ) def auto_hide(self): """Return boolean whether it is OK to automatically hide this cleaner""" for (option_id, __name) in self.get_options(): try: for cmd in self.get_commands(option_id): for dummy in cmd.execute(False): return False for ds in self.get_deep_scan(option_id): if isinstance(ds, dict): return False except Exception: logger = logging.getLogger(__name__) logger.exception('exception in auto_hide(), cleaner=%s, option=%s', self.name, option_id) return True def get_commands(self, option_id): """Get list of Command instances for option 'option_id'""" for action in self.actions: if option_id == action[0]: for cmd in action[1].get_commands(): yield cmd if option_id not in self.options: raise RuntimeError("Unknown option '%s'" % option_id) def get_deep_scan(self, option_id): """Get dictionary used to build a deep scan""" for action in self.actions: if option_id == action[0]: for ds in action[1].get_deep_scan(): yield ds if option_id not in self.options: raise RuntimeError("Unknown option '%s'" % option_id) def get_description(self): """Brief description of the cleaner""" return self.description def get_id(self): """Return the unique name of this cleaner""" return self.id def get_name(self): """Return the human name of this cleaner""" return self.name def get_option_descriptions(self): """Yield the names and descriptions of each option in a 2-tuple""" if self.options: for key in sorted(self.options.keys()): yield (self.options[key][0], self.options[key][1]) def get_options(self): """Return user-configurable options in 2-tuple (id, name)""" if self.options: for key in sorted(self.options.keys()): yield (key, self.options[key][0]) def get_warning(self, option_id): """Return a warning as string.""" if option_id in self.warnings: return self.warnings[option_id] else: return None def is_running(self): """Return whether the program is currently running""" logger = logging.getLogger(__name__) for running in self.running: test = running[0] pathname = running[1] if 'exe' == test and 'posix' == os.name: if Unix.is_running(pathname): logger.debug("process '%s' is running", pathname) return True elif 'exe' == test and 'nt' == os.name: if Windows.is_process_running(pathname): logger.debug("process '%s' is running", pathname) return True elif 'pathname' == test: expanded = expanduser(expandvars(pathname)) for globbed in glob.iglob(expanded): if os.path.exists(globbed): logger.debug( "file '%s' exists indicating '%s' is running", globbed, self.name) return True else: raise RuntimeError( "Unknown running-detection test '%s'" % test) return False def is_usable(self): """Return whether the cleaner is usable (has actions)""" return len(self.actions) > 0 def set_warning(self, option_id, description): """Set a warning to be displayed when option is selected interactively""" self.warnings[option_id] = description class Firefox(Cleaner): """Mozilla Firefox""" def __init__(self): Cleaner.__init__(self) self.add_option('backup', _('Backup files'), _( 'Delete the backup files')) self.add_option('cache', _('Cache'), _( 'Delete the web cache, which reduces time to display revisited pages')) self.add_option('cookies', _('Cookies'), _( 'Delete cookies, which contain information such as web site preferences, authentication, and tracking identification')) self.add_option( 'crash_reports', _('Crash reports'), _('Delete the files')) # TRANSLATORS: DOM = Document Object Model. self.add_option('dom', _('DOM Storage'), _('Delete HTML5 cookies')) self.add_option('download_history', _( 'Download history'), _('List of files downloaded')) self.add_option('forms', _('Form history'), _( 'A history of forms entered in web sites and in the Search bar')) self.add_option('session_restore', _('Session restore'), _( 'Loads the initial session after the browser closes or crashes')) self.add_option('site_preferences', _( 'Site preferences'), _('Settings for individual sites')) self.add_option('passwords', _('Passwords'), _( 'A database of usernames and passwords as well as a list of sites that should not store passwords')) self.set_warning( 'passwords', _('This option will delete your saved passwords.')) self.add_option( 'url_history', _('URL history'), _('List of visited web pages')) self.add_option('vacuum', _('Vacuum'), _( 'Clean database fragmentation to reduce space and improve speed without removing any data')) if 'posix' == os.name: self.profile_dir = "~/.mozilla/firefox*/*.default*/" self.add_running('exe', 'firefox') self.add_running('exe', 'firefox-bin') self.add_running('pathname', self.profile_dir + 'lock') elif 'nt' == os.name: self.profile_dir = "%APPDATA%\\Mozilla\\Firefox\\Profiles\\*.default*\\" self.add_running('exe', 'firefox.exe') self.description = _("Web browser") self.id = 'firefox' self.name = "Firefox" def get_commands(self, option_id): files = [] # backup files if 'backup' == option_id: bookmark_bu_dir = os.path.join(self.profile_dir, 'bookmarkbackups') files += FileUtilities.expand_glob_join(bookmark_bu_dir, "*.json") files += FileUtilities.expand_glob_join( bookmark_bu_dir, "*.jsonlz4") # browser cache cache_base = None if 'posix' == os.name: cache_base = self.profile_dir elif 'nt' == os.name: cache_base = "$localappdata\\Mozilla\\Firefox\\Profiles\\*.default*" if 'cache' == option_id: dirs = FileUtilities.expand_glob_join(cache_base, "Cache*") dirs += FileUtilities.expand_glob_join(cache_base, "OfflineCache") if 'nt' == os.name: dirs += FileUtilities.expand_glob_join( cache_base, "jumpListCache") # Windows 8 if 'posix' == os.name: # This path is whitelisted under the System - Cache cleaner, # so it can be cleaned here. dirs += [expanduser('~/.cache/mozilla')] for dirname in dirs: for filename in children_in_directory(dirname, False): yield Command.Delete(filename) # Necko Predictive Network Actions # https://wiki.mozilla.org/Privacy/Reviews/Necko files += FileUtilities.expand_glob_join( self.profile_dir, "netpredictions.sqlite") # cookies if 'cookies' == option_id: files += FileUtilities.expand_glob_join( self.profile_dir, "cookies.txt") files += FileUtilities.expand_glob_join( self.profile_dir, "cookies.sqlite") # crash reports if 'posix' == os.name: crashdir = expanduser("~/.mozilla/firefox/Crash Reports") if 'nt' == os.name: crashdir = expandvars( "$USERPROFILE\\Application Data\\Mozilla\\Firefox\\Crash Reports") if 'crash_reports' == option_id: for filename in children_in_directory(crashdir, False): files += [filename] files += FileUtilities.expand_glob_join( self.profile_dir, "minidumps/*.dmp") # DOM storage if 'dom' == option_id: files += FileUtilities.expand_glob_join( self.profile_dir, "webappsstore.sqlite") # download history if 'download_history' == option_id: # Firefox version 1 files += FileUtilities.expand_glob_join( self.profile_dir, "downloads.rdf") # Firefox version 3 files += FileUtilities.expand_glob_join( self.profile_dir, "downloads.sqlite") # forms if 'forms' == option_id: files += FileUtilities.expand_glob_join( self.profile_dir, "formhistory.dat") files += FileUtilities.expand_glob_join( self.profile_dir, "formhistory.sqlite") # passwords if 'passwords' == option_id: # http://kb.mozillazine.org/Password_Manager files += FileUtilities.expand_glob_join( self.profile_dir, "signons.txt") files += FileUtilities.expand_glob_join( self.profile_dir, "signons[2-3].txt") files += FileUtilities.expand_glob_join( self.profile_dir, "signons.sqlite") files += FileUtilities.expand_glob_join( self.profile_dir, "logins.json") # session restore if 'session_restore' == option_id: # Names include sessionstore.js, sessionstore.bak, # sessionstore.bak-20140715214327, sessionstore-1.js files += FileUtilities.expand_glob_join( self.profile_dir, "sessionstore*.js") files += FileUtilities.expand_glob_join( self.profile_dir, "sessionstore.bak*") ss_bu_dir = os.path.join(self.profile_dir, 'sessionstore-backups') files += FileUtilities.expand_glob_join( ss_bu_dir, 'previous.js') files += FileUtilities.expand_glob_join( ss_bu_dir, 'upgrade.js-20*') files += FileUtilities.expand_glob_join( ss_bu_dir, 'recovery.js') files += FileUtilities.expand_glob_join( ss_bu_dir, 'recovery.bak') # site-specific preferences if 'site_preferences' == option_id: files += FileUtilities.expand_glob_join( self.profile_dir, "content-prefs.sqlite") # URL history if 'url_history' == option_id: # Firefox version 1 files += FileUtilities.expand_glob_join( self.profile_dir, "history.dat") # Firefox 21 on Windows if 'nt' == os.name: files += FileUtilities.expand_glob_join( cache_base, "thumbnails/*.png") # see also function other_cleanup() # finish for filename in files: yield Command.Delete(filename) # URL history if 'url_history' == option_id: for path in FileUtilities.expand_glob_join(self.profile_dir, "places.sqlite"): yield Command.Function(path, Special.delete_mozilla_url_history, _('Delete the usage history')) # vacuum if 'vacuum' == option_id: paths = [] paths += FileUtilities.expand_glob_join( self.profile_dir, "*.sqlite") if not cache_base == self.profile_dir: paths += FileUtilities.expand_glob_join(cache_base, "*.sqlite") for path in paths: yield Command.Function(path, FileUtilities.vacuum_sqlite3, _("Vacuum")) class OpenOfficeOrg(Cleaner): """Delete OpenOffice.org cache""" def __init__(self): Cleaner.__init__(self) self.options = {} self.add_option('cache', _('Cache'), _('Delete the cache')) self.add_option('recent_documents', _('Most recently used'), _( "Delete the list of recently used documents")) self.id = 'openofficeorg' self.name = 'OpenOffice.org' self.description = _("Office suite") # reference: http://katana.oooninja.com/w/editions_of_openoffice.org if 'posix' == os.name: self.prefixes = ["~/.ooo-2.0", "~/.openoffice.org2", "~/.openoffice.org2.0", "~/.openoffice.org/3"] self.prefixes += ["~/.ooo-dev3"] if 'nt' == os.name: self.prefixes = [ "$APPDATA\\OpenOffice.org\\3", "$APPDATA\\OpenOffice.org2"] def get_commands(self, option_id): # paths for which to run expand_glob_join egj = [] if 'recent_documents' == option_id: egj.append( "user/registry/data/org/openoffice/Office/Histories.xcu") egj.append( "user/registry/cache/org.openoffice.Office.Histories.dat") if 'recent_documents' == option_id and not 'cache' == option_id: egj.append("user/registry/cache/org.openoffice.Office.Common.dat") for egj_ in egj: for prefix in self.prefixes: for path in FileUtilities.expand_glob_join(prefix, egj_): if 'nt' == os.name: path = os.path.normpath(path) if os.path.lexists(path): yield Command.Delete(path) if 'cache' == option_id: dirs = [] for prefix in self.prefixes: dirs += FileUtilities.expand_glob_join( prefix, "user/registry/cache/") for dirname in dirs: if 'nt' == os.name: dirname = os.path.normpath(dirname) for filename in children_in_directory(dirname, False): yield Command.Delete(filename) if 'recent_documents' == option_id: for prefix in self.prefixes: for path in FileUtilities.expand_glob_join(prefix, "user/registry/data/org/openoffice/Office/Common.xcu"): if os.path.lexists(path): yield Command.Function(path, Special.delete_ooo_history, _('Delete the usage history')) # ~/.openoffice.org/3/user/registrymodifications.xcu # Apache OpenOffice.org 3.4.1 from openoffice.org on Ubuntu 13.04 # %AppData%\OpenOffice.org\3\user\registrymodifications.xcu # Apache OpenOffice.org 3.4.1 from openoffice.org on Windows XP for path in FileUtilities.expand_glob_join(prefix, "user/registrymodifications.xcu"): if os.path.lexists(path): yield Command.Function(path, Special.delete_office_registrymodifications, _('Delete the usage history')) class System(Cleaner): """Clean the system in general""" def __init__(self): Cleaner.__init__(self) # # options for Linux and BSD # if 'posix' == os.name: # TRANSLATORS: desktop entries are .desktop files in Linux that # make up the application menu (the menu that shows BleachBit, # Firefox, and others. The .desktop files also associate file # types, so clicking on an .html file in Nautilus brings up # Firefox. # More information: # http://standards.freedesktop.org/menu-spec/latest/index.html#introduction self.add_option('desktop_entry', _('Broken desktop files'), _( 'Delete broken application menu entries and file associations')) self.add_option('cache', _('Cache'), _('Delete the cache')) # TRANSLATORS: Localizations are files supporting specific # languages, so applications appear in Spanish, etc. self.add_option('localizations', _('Localizations'), _( 'Delete files for unwanted languages')) self.set_warning( 'localizations', _("Configure this option in the preferences.")) # TRANSLATORS: 'Rotated logs' refers to old system log files. # Linux systems often have a scheduled job to rotate the logs # which means compress all except the newest log and then delete # the oldest log. You could translate this 'old logs.' self.add_option( 'rotated_logs', _('Rotated logs'), _('Delete old system logs')) self.add_option('recent_documents', _('Recent documents list'), _( 'Delete the list of recently used documents')) self.add_option('trash', _('Trash'), _('Empty the trash')) # # options just for Linux # if sys.platform.startswith('linux'): self.add_option('memory', _('Memory'), # TRANSLATORS: 'free' means 'unallocated' _('Wipe the swap and free memory')) self.set_warning( 'memory', _('This option is experimental and may cause system problems.')) # # options just for Microsoft Windows # if 'nt' == os.name: self.add_option('logs', _('Logs'), _('Delete the logs')) self.add_option( 'memory_dump', _('Memory dump'), _('Delete the file memory.dmp')) self.add_option('muicache', 'MUICache', _('Delete the cache')) # TRANSLATORS: Prefetch is Microsoft Windows jargon. self.add_option('prefetch', _('Prefetch'), _('Delete the cache')) self.add_option( 'recycle_bin', _('Recycle bin'), _('Empty the recycle bin')) # TRANSLATORS: 'Update' is a noun, and 'Update uninstallers' is an option to delete # the uninstallers for software updates. self.add_option('updates', _('Update uninstallers'), _( 'Delete uninstallers for Microsoft updates including hotfixes, service packs, and Internet Explorer updates')) # # options for GTK+ # if HAVE_GTK: self.add_option('clipboard', _('Clipboard'), _( 'The desktop environment\'s clipboard used for copy and paste operations')) # # options common to all platforms # # TRANSLATORS: "Custom" is an option allowing the user to specify which # files and folders will be erased. self.add_option('custom', _('Custom'), _( 'Delete user-specified files and folders')) # TRANSLATORS: 'free' means 'unallocated' self.add_option('free_disk_space', _('Free disk space'), # TRANSLATORS: 'free' means 'unallocated' _('Overwrite free disk space to hide deleted files')) self.set_warning('free_disk_space', _('This option is very slow.')) self.add_option( 'tmp', _('Temporary files'), _('Delete the temporary files')) self.description = _("The system in general") self.id = 'system' self.name = _("System") def get_commands(self, option_id): # This variable will collect fully expanded file names, and # at the end of this function, they will be checked they exist # and processed through Command.Delete(). files = [] # cache if 'posix' == os.name and 'cache' == option_id: dirname = expanduser("~/.cache/") for filename in children_in_directory(dirname, True): if self.whitelisted(filename): continue files += [filename] # custom if 'custom' == option_id: for (c_type, c_path) in options.get_custom_paths(): if 'file' == c_type: files += [c_path] elif 'folder' == c_type: files += [c_path] for path in children_in_directory(c_path, True): files += [path] else: raise RuntimeError( 'custom folder has invalid type %s' % c_type) # menu menu_dirs = ['~/.local/share/applications', '~/.config/autostart', '~/.gnome/apps/', '~/.gnome2/panel2.d/default/launchers', '~/.gnome2/vfolders/applications/', '~/.kde/share/apps/RecentDocuments/', '~/.kde/share/mimelnk', '~/.kde/share/mimelnk/application/ram.desktop', '~/.kde2/share/mimelnk/application/', '~/.kde2/share/applnk'] if 'posix' == os.name and 'desktop_entry' == option_id: for dirname in menu_dirs: for filename in [fn for fn in children_in_directory(dirname, False) if fn.endswith('.desktop')]: if Unix.is_broken_xdg_desktop(filename): yield Command.Delete(filename) # unwanted locales if 'posix' == os.name and 'localizations' == option_id: for path in Unix.locales.localization_paths(locales_to_keep=options.get_languages()): if os.path.isdir(path): for f in FileUtilities.children_in_directory(path, True): yield Command.Delete(f) yield Command.Delete(path) # Windows logs if 'nt' == os.name and 'logs' == option_id: paths = ( '$ALLUSERSPROFILE\\Application Data\\Microsoft\\Dr Watson\\*.log', '$ALLUSERSPROFILE\\Application Data\\Microsoft\\Dr Watson\\user.dmp', '$LocalAppData\\Microsoft\\Windows\\WER\\ReportArchive\\*\\*', '$LocalAppData\\Microsoft\\Windows\WER\\ReportQueue\\*\\*', '$programdata\\Microsoft\\Windows\\WER\\ReportArchive\\*\\*', '$programdata\\Microsoft\\Windows\\WER\\ReportQueue\\*\\*', '$localappdata\\Microsoft\\Internet Explorer\\brndlog.bak', '$localappdata\\Microsoft\\Internet Explorer\\brndlog.txt', '$windir\\*.log', '$windir\\imsins.BAK', '$windir\\OEWABLog.txt', '$windir\\SchedLgU.txt', '$windir\\ntbtlog.txt', '$windir\\setuplog.txt', '$windir\\REGLOCS.OLD', '$windir\\Debug\\*.log', '$windir\\Debug\\Setup\\UpdSh.log', '$windir\\Debug\\UserMode\\*.log', '$windir\\Debug\\UserMode\\ChkAcc.bak', '$windir\\Debug\\UserMode\\userenv.bak', '$windir\\Microsoft.NET\Framework\*\*.log', '$windir\\pchealth\\helpctr\\Logs\\hcupdate.log', '$windir\\security\\logs\\*.log', '$windir\\security\\logs\\*.old', '$windir\\SoftwareDistribution\\*.log', '$windir\\SoftwareDistribution\\DataStore\\Logs\\*', '$windir\\system32\\TZLog.log', '$windir\\system32\\config\\systemprofile\\Application Data\\Microsoft\\Internet Explorer\\brndlog.bak', '$windir\\system32\\config\\systemprofile\\Application Data\\Microsoft\\Internet Explorer\\brndlog.txt', '$windir\\system32\\LogFiles\\AIT\\AitEventLog.etl.???', '$windir\\system32\\LogFiles\\Firewall\\pfirewall.log*', '$windir\\system32\\LogFiles\\Scm\\SCM.EVM*', '$windir\\system32\\LogFiles\\WMI\\Terminal*.etl', '$windir\\system32\\LogFiles\\WMI\\RTBackup\EtwRT.*etl', '$windir\\system32\\wbem\\Logs\\*.lo_', '$windir\\system32\\wbem\\Logs\\*.log', ) for path in paths: expanded = expandvars(path) for globbed in glob.iglob(expanded): files += [globbed] # memory if sys.platform.startswith('linux') and 'memory' == option_id: yield Command.Function(None, Memory.wipe_memory, _('Memory')) # memory dump # how to manually create this file # http://www.pctools.com/guides/registry/detail/856/ if 'nt' == os.name and 'memory_dump' == option_id: fname = expandvars('$windir\\memory.dmp') if os.path.exists(fname): files += [fname] for fname in glob.iglob(expandvars('$windir\\Minidump\\*.dmp')): files += [fname] # most recently used documents list if 'posix' == os.name and 'recent_documents' == option_id: files += [expanduser("~/.recently-used")] # GNOME 2.26 (as seen on Ubuntu 9.04) will retain the list # in memory if it is simply deleted, so it must be shredded # (or at least truncated). # # GNOME 2.28.1 (Ubuntu 9.10) and 2.30 (10.04) do not re-read # the file after truncation, but do re-read it after # shredding. # # https://bugzilla.gnome.org/show_bug.cgi?id=591404 def gtk_purge_items(): """Purge GTK items""" gtk.RecentManager().purge_items() yield 0 for pathname in ["~/.recently-used.xbel", "~/.local/share/recently-used.xbel"]: pathname = expanduser(pathname) if os.path.lexists(pathname): yield Command.Shred(pathname) if HAVE_GTK: # Use the Function to skip when in preview mode yield Command.Function(None, gtk_purge_items, _('Recent documents list')) if 'posix' == os.name and 'rotated_logs' == option_id: for path in Unix.rotated_logs(): yield Command.Delete(path) # temporary files if 'posix' == os.name and 'tmp' == option_id: dirnames = ['/tmp', '/var/tmp'] for dirname in dirnames: for path in children_in_directory(dirname, True): is_open = FileUtilities.openfiles.is_open(path) ok = not is_open and os.path.isfile(path) and \ not os.path.islink(path) and \ FileUtilities.ego_owner(path) and \ not self.whitelisted(path) if ok: yield Command.Delete(path) # temporary files if 'nt' == os.name and 'tmp' == option_id: dirname1 = expandvars( "$USERPROFILE\\Local Settings\\Temp\\") dirname2 = expandvars(r'%temp%') dirname3 = expandvars("%windir%\\temp\\") dirnames = [] if Windows.get_windows_version() >= 6.0: # Windows Vista or later dirnames.append(dirname2) else: # Windows XP dirnames.append(dirname1) dirnames.append(dirname3) # whitelist the folder %TEMP%\Low but not its contents # https://bugs.launchpad.net/bleachbit/+bug/1421726 for dirname in dirnames: low = os.path.join(dirname, 'low').lower() for filename in children_in_directory(dirname, True): if not low == filename.lower(): yield Command.Delete(filename) # trash if 'posix' == os.name and 'trash' == option_id: dirname = expanduser("~/.Trash") for filename in children_in_directory(dirname, False): yield Command.Delete(filename) # fixme http://www.ramendik.ru/docs/trashspec.html # http://standards.freedesktop.org/basedir-spec/basedir-spec-0.6.html # ~/.local/share/Trash # * GNOME 2.22, Fedora 9 # * KDE 4.1.3, Ubuntu 8.10 dirname = expanduser("~/.local/share/Trash/files") for filename in children_in_directory(dirname, True): yield Command.Delete(filename) dirname = expanduser("~/.local/share/Trash/info") for filename in children_in_directory(dirname, True): yield Command.Delete(filename) dirname = expanduser("~/.local/share/Trash/expunged") # desrt@irc.gimpnet.org tells me that the trash # backend puts files in here temporary, but in some situations # the files are stuck. for filename in children_in_directory(dirname, True): yield Command.Delete(filename) # clipboard if HAVE_GTK and 'clipboard' == option_id: def clear_clipboard(): gtk.gdk.threads_enter() clipboard = gtk.clipboard_get() clipboard.set_text("") gtk.gdk.threads_leave() return 0 yield Command.Function(None, clear_clipboard, _('Clipboard')) # overwrite free space shred_drives = options.get_list('shred_drives') if 'free_disk_space' == option_id and shred_drives: for pathname in shred_drives: # TRANSLATORS: 'Free' means 'unallocated.' # %s expands to a path such as C:\ or /tmp/ display = _("Overwrite free disk space %s") % pathname def wipe_path_func(): for ret in FileUtilities.wipe_path(pathname, idle=True): # Yield control to GTK idle because this process # is very slow. Also display progress. yield ret yield 0 yield Command.Function(None, wipe_path_func, display) # MUICache if 'nt' == os.name and 'muicache' == option_id: keys = ( 'HKCU\\Software\\Microsoft\\Windows\\ShellNoRoam\\MUICache', 'HKCU\\Software\\Classes\\Local Settings\\Software\\Microsoft\\Windows\\Shell\\MuiCache') for key in keys: yield Command.Winreg(key, None) # prefetch if 'nt' == os.name and 'prefetch' == option_id: for path in glob.iglob(expandvars('$windir\\Prefetch\\*.pf')): yield Command.Delete(path) # recycle bin if 'nt' == os.name and 'recycle_bin' == option_id: # This method allows shredding recycled_any = False for path in Windows.get_recycle_bin(): recycled_any = True yield Command.Delete(path) # If there were any files deleted, Windows XP will show the # wrong icon for the recycle bin indicating it is not empty. # The icon will be incorrect until logging in to Windows again # or until it is emptied using the Windows API call for emptying # the recycle bin. # Windows 10 refreshes the recycle bin icon when the user # opens the recycle bin folder. # This is a hack to refresh the icon. def empty_recycle_bin_func(): import tempfile tmpdir = tempfile.mkdtemp() Windows.move_to_recycle_bin(tmpdir) try: Windows.empty_recycle_bin(None, True) except: logging.getLogger(__name__).info('error in empty_recycle_bin()', exc_info=True) yield 0 # Using the Function Command prevents emptying the recycle bin # when in preview mode. if recycled_any: yield Command.Function(None, empty_recycle_bin_func, _('Empty the recycle bin')) # Windows Updates if 'nt' == os.name and 'updates' == option_id: for wu in Windows.delete_updates(): yield wu # return queued files for filename in files: if os.path.lexists(filename): yield Command.Delete(filename) def whitelisted(self, pathname): """Return boolean whether file is whitelisted""" regexes = [ '^/tmp/.X0-lock$', '^/tmp/.truecrypt_aux_mnt.*/(control|volume)$', '^/tmp/.vbox-[^/]+-ipc/lock$', '^/tmp/.wine-[0-9]+/server-.*/lock$', '^/tmp/gconfd-[^/]+/lock/ior$', '^/tmp/fsa/', # fsarchiver '^/tmp/kde-', '^/tmp/kdesudo-', '^/tmp/ksocket-', '^/tmp/orbit-[^/]+/bonobo-activation-register[a-z0-9-]*.lock$', '^/tmp/orbit-[^/]+/bonobo-activation-server-[a-z0-9-]*ior$', '^/tmp/pulse-[^/]+/pid$', '^/var/tmp/kdecache-', '^' + expanduser('~/.cache/wallpaper/'), # Clean Firefox cache from Firefox cleaner (LP#1295826) '^' + expanduser('~/.cache/mozilla'), # Clean Google Chrome cache from Google Chrome cleaner (LP#656104) '^' + expanduser('~/.cache/google-chrome'), '^' + expanduser('~/.cache/gnome-control-center/'), # iBus Pinyin # https://bugs.launchpad.net/bleachbit/+bug/1538919 '^' + expanduser('~/.cache/ibus/'), # Linux Bluetooth daemon obexd '^' + expanduser('~/.cache/obexd/')] for regex in regexes: if re.match(regex, pathname) is not None: return True return False def register_cleaners(): """Register all known cleaners: system, CleanerML, and Winapp2""" global backends # wipe out any registrations # Because this is a global variable, cannot use backends = {} backends.clear() # initialize "hard coded" (non-CleanerML) backends backends["firefox"] = Firefox() backends["openofficeorg"] = OpenOfficeOrg() backends["system"] = System() # register CleanerML cleaners from bleachbit import CleanerML CleanerML.load_cleaners() # register Winapp2.ini cleaners if 'nt' == os.name: from bleachbit import Winapp Winapp.load_cleaners() def create_simple_cleaner(paths): """Shred arbitrary files (used in CLI and GUI)""" cleaner = Cleaner() cleaner.add_option(option_id='files', name='', description='') cleaner.name = _("System") # shows up in progress bar from bleachbit import Action class CustomFileAction(Action.ActionProvider): action_key = '__customfileaction' def get_commands(self): for path in paths: if not isinstance(path, (str, unicode)): raise RuntimeError( 'expected path as string but got %s' % str(path)) if not os.path.isabs(path): path = os.path.abspath(path) if os.path.isdir(path): for child in children_in_directory(path, True): yield Command.Shred(child) yield Command.Shred(path) else: yield Command.Shred(path) provider = CustomFileAction(None) cleaner.add_action('files', provider) return cleaner def create_wipe_cleaner(path): """Wipe free disk space of arbitrary paths (used in GUI)""" cleaner = Cleaner() cleaner.add_option( option_id='free_disk_space', name='', description='') cleaner.name = '' # create a temporary cleaner object display = _("Overwrite free disk space %s") % path def wipe_path_func(): for ret in FileUtilities.wipe_path(path, idle=True): yield ret yield 0 from bleachbit import Action class CustomWipeAction(Action.ActionProvider): action_key = '__customwipeaction' def get_commands(self): yield Command.Function(None, wipe_path_func, display) provider = CustomWipeAction(None) cleaner.add_action('free_disk_space', provider) return cleaner bleachbit-2.0/bleachbit/WindowsWipe.py0000644000175000017500000011774713245436307016170 0ustar hlehle# vim: ts=4:sw=4:expandtab # BleachBit # Copyright (C) 2008-2018 Andrew Ziem # https://www.bleachbit.org # # This program is free software: you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by # the Free Software Foundation, either version 3 of the License, or # (at your option) any later version. # # This program is distributed in the hope that it will be useful, # but WITHOUT ANY WARRANTY; without even the implied warranty of # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the # GNU General Public License for more details. # # You should have received a copy of the GNU General Public License # along with this program. If not, see . """ *** *** Owner: Andrew Ziem *** Author: Peter Marshall *** *** References: *** Windows Internals (Russinovich, Solomon, Ionescu), 6th edition *** http://windowsitpro.com/systems-management/inside-windows-nt-disk-defragmenting *** https://technet.microsoft.com/en-us/sysinternals/sdelete.aspx *** https://blogs.msdn.microsoft.com/jeffrey_wall/2004/09/13/defrag-api-c-wrappers/ *** https://msdn.microsoft.com/en-us/library/windows/desktop/aa364572(v=vs.85).aspx *** *** *** Algorithm *** --Phase 1 *** - Check if the file has special characteristics (sparse, encrypted, *** compressed), determine file system (NTFS or FAT), Windows version. *** - Read the on-disk locations of the file using defrag API. *** - If file characteristics don't rule it out, just do a direct write *** of zero-fill on entire file size and flush to disk. *** - Read back the on-disk locations of the file using defrag API. *** - If locations are exactly the same, we are done. *** - Otherwise, enumerate clusters that did not get overwritten in place *** ("missed clusters"). *** They are probably still untouched, we need to wipe them. *** - If it was a special file that wouldn't be wiped by a direct write, *** we will truncate the file and treat it all as missed clusters. *** *** --Phase 2 *** - (*) Get volume bitmap of free/allocated clusters using defrag API. *** Figure out if checkpoint has made our missed clusters available *** for use again (this is potentially delayed by a few seconds in NTFS). *** - If they have not yet been made available, wait 0.1s then repeat *** previous check (*), up to a limit of 7s in polling. *** - Figure out if it is better to bridge the extents, wiping more clusters *** but gaining a performance boost from reduced total cycles and overhead. *** - Recurse over the extents we need to wipe, breaking them down into *** smaller extents if necessary. *** - Write a zero-fill file that will provide enough clusters to *** completely overwrite each extent in turn. *** - Iterate over the zero-fill file, moving clusters from our zero file *** to the missed clusters using defrag API. *** - If the defrag move operation did not succeed, it was probably because *** another process has grabbed a cluster on disk that we wanted to *** write to. This can also happen when, by chance, the move's source and *** target ranges overlap. *** - In response, we can break the extent down into sub-sections and *** attempt to wipe each subsection (eventually down to a granularity *** of one cluster). We also inspect allocated/free sectors to look ahead *** and avoid making move calls that we know will fail. *** - If a cluster was allocated by some other Windows process before we could *** explicitly wipe it, it is assumed to be wiped. Even if Windows writes a *** small amount of explicit data to a cluster, it seems to write zero-fill *** out to the end of the cluster to round it out. *** *** *** TO DO *** - Test working correctly if per-user disk quotas are in place *** """ # Imports. import sys import os import struct import logging from operator import itemgetter from random import randint from collections import namedtuple from win32api import (GetVolumeInformation, GetDiskFreeSpace, GetVersionEx, Sleep) from win32file import (CreateFile, CreateFileW, CloseHandle, GetDriveType, GetFileSize, GetFileAttributesW, DeviceIoControl, SetFilePointer, ReadFile, WriteFile, LockFile, DeleteFile, SetEndOfFile, FlushFileBuffers, EncryptFile) from winioctlcon import (FSCTL_GET_RETRIEVAL_POINTERS, FSCTL_GET_VOLUME_BITMAP, FSCTL_GET_NTFS_VOLUME_DATA, FSCTL_MOVE_FILE, FSCTL_SET_COMPRESSION, FSCTL_SET_SPARSE, FSCTL_SET_ZERO_DATA) from win32file import (GENERIC_READ, GENERIC_WRITE, FILE_BEGIN, FILE_SHARE_READ, FILE_SHARE_WRITE, OPEN_EXISTING, CREATE_ALWAYS, DRIVE_REMOTE, DRIVE_CDROM, DRIVE_UNKNOWN) from win32con import (FILE_ATTRIBUTE_ENCRYPTED, FILE_ATTRIBUTE_COMPRESSED, FILE_ATTRIBUTE_SPARSE_FILE, FILE_ATTRIBUTE_HIDDEN, FILE_FLAG_RANDOM_ACCESS, FILE_FLAG_NO_BUFFERING, FILE_FLAG_WRITE_THROUGH, COMPRESSION_FORMAT_DEFAULT) VER_SUITE_PERSONAL = 0x200 # doesn't seem to be present in win32con. from bleachbit.FileUtilities import extended_path, extended_path_undo # Constants. simulate_concurrency = False # remove this test function when QA complete #drive_letter_safety = "E" # protection to only use removeable drives # don't use C: or D:, but E: and beyond OK. tmp_file_name = "bbtemp.dat" spike_file_name = "bbspike" # cluster number will be appended write_buf_size = 512 * 1024 # 512 kilobytes # Set up logging logger = logging.getLogger(__name__) # Unpacks the next element in a structure, using format requested. # Returns the element and the remaining content of the structure. def unpack_element(fmt, structure): chunk_size = struct.calcsize(fmt) element = struct.unpack(fmt, structure[:chunk_size]) if element and len(element) > 0: element = element[0] # convert from tuple to single element structure = structure[chunk_size:] return element, structure # GET_RETRIEVAL_POINTERS gives us a list of VCN, LCN tuples. # Convert from that format into a list of cluster start/end tuples. # The flag for writing bridged extents is a way of handling # the structure of compressed files. If a part of the file is close # to contiguous on disk, bridge its extents to combine them, even # though there are some unrelated clusters in between. # Generator function, will return results one tuple at a time. def logical_ranges_to_extents(ranges, bridge_compressed=False): if not bridge_compressed: vcn_count = 0 for vcn, lcn in ranges: # If we encounter an LCN of -1, we have reached a # "space-saved" part of a compressed file. These clusters # don't map to clusters on disk, just advance beyond them. if lcn < 0: vcn_count = vcn continue # Figure out length for this cluster range. # Keep track of VCN inside this file. this_vcn_span = vcn - vcn_count vcn_count = vcn assert this_vcn_span >= 0 yield (lcn, lcn + this_vcn_span - 1) else: vcn_count = 0 last_record = len(ranges) index = 0 while index < last_record: vcn, lcn = ranges[index] # If we encounter an LCN of -1, we have reached a # "space-saved" part of a compressed file. These clusters # don't map to clusters on disk, just advance beyond them. if lcn < 0: vcn_count = vcn index += 1 continue # Figure out if we have a block of clusters that can # be merged together. The pattern is regular disk # clusters interspersed with -1 space-saver sections # that are arranged with gaps of 16 clusters or less. merge_index = index while (lcn >= 0 and merge_index + 2 < last_record and ranges[merge_index + 1][1] < 0 and ranges[merge_index + 2][1] >= 0 and ranges[merge_index + 2][1] - ranges[merge_index][1] <= 16 and ranges[merge_index + 2][1] - ranges[merge_index][1] > 0): merge_index += 2 # Figure out length for this cluster range. # Keep track of VCN inside this file. if merge_index == index: index += 1 this_vcn_span = vcn - vcn_count vcn_count = vcn assert this_vcn_span >= 0 yield (lcn, lcn + this_vcn_span - 1) else: index = merge_index + 1 last_vcn_span = (ranges[merge_index][0] - ranges[merge_index - 1][0]) vcn = ranges[merge_index][0] vcn_count = vcn assert last_vcn_span >= 0 yield (lcn, ranges[merge_index][1] + last_vcn_span - 1) # Determine clusters that are in extents list A but not in B. # Generator function, will return results one tuple at a time. def extents_a_minus_b(a, b): # Sort the lists of start/end points. a_sorted = sorted(a, key=itemgetter(0)) b_sorted = sorted(b, key=itemgetter(0)) b_is_empty = not b for a_begin, a_end in a_sorted: # If B is an empty list, each item of A will be unchanged. if b_is_empty: yield (a_begin, a_end) for b_begin, b_end in b_sorted: if b_begin > a_end: # Already gone beyond current A range and no matches. # Return this range of A unbroken. yield (a_begin, a_end) break elif b_end < a_begin: # Too early in list, keep searching. continue elif b_begin <= a_begin: if b_end >= a_end: # This range of A is completely covered by B. # Do nothing and pass on to next range of A. break else: # This range of A is partially covered by B. # Remove the covered range from A and loop a_begin = b_end + 1 else: # This range of A is partially covered by B. # Return the first part of A not covered. # Either process remainder of A range or move to next A. yield (a_begin, b_begin - 1) if b_end >= a_end: break else: a_begin = b_end + 1 # Decide if it will be more efficient to bridge the extents and wipe # some additional clusters that weren't strictly part of the file. # By grouping write/move cycles into larger portions, we can reduce # overhead and complete the wipe quicker - even though it involves # a higher number of total clusters written. def choose_if_bridged(volume_handle, total_clusters, orig_extents, bridged_extents): logger.debug('bridged extents: {}'.format(bridged_extents)) allocated_extents = [] volume_bitmap, bitmap_size = get_volume_bitmap(volume_handle, total_clusters) count_ofree, count_oallocated = check_extents( orig_extents, volume_bitmap) count_bfree, count_ballocated = check_extents( bridged_extents, volume_bitmap, allocated_extents) bridged_extents = [x for x in extents_a_minus_b(bridged_extents, allocated_extents)] extra_allocated_clusters = count_ballocated - count_oallocated saving_in_extents = len(orig_extents) - len(bridged_extents) logger.debug(("Bridged extents would require us to work around %d " + "more allocated clusters.") % extra_allocated_clusters) logger.debug("It would reduce extent count from %d to %d." % ( len(orig_extents), len(bridged_extents))) # Use a penalty of 10 extents for each extra allocated cluster. # Why 10? Assuming our next granularity above 1 cluster is a 10 cluster # extent, a single allocated cluster would cause us to perform 8 # additional write/move cycles due to splitting that extent into single # clusters. # If we had a notion of distribution of extra allocated clusters, # we could make this calc more exact. But it's just a rule of thumb. tradeoff = saving_in_extents - extra_allocated_clusters * 10 if tradeoff > 0: logger.debug("Quickest method should be bridged extents") return bridged_extents else: logger.debug("Quickest method should be original extents") return orig_extents # Break an extent into smaller portions (numbers are tuned to give something # in the range of 8 to 15 portions). # Generator function, will return results one tuple at a time. def split_extent(lcn_start, lcn_end): split_factor = 10 exponent = 0 count = lcn_end - lcn_start + 1 while count > split_factor**(exponent + 1.3): exponent += 1 extent_size = split_factor**exponent for x in xrange(lcn_start, lcn_end + 1, extent_size): yield (x, min(x + extent_size - 1, lcn_end)) # Check extents to see if they are marked as free. def check_extents(extents, volume_bitmap, allocated_extents=None): count_free, count_allocated = (0, 0) for lcn_start, lcn_end in extents: for cluster in xrange(lcn_start, lcn_end + 1): if check_mapped_bit(volume_bitmap, cluster): count_allocated += 1 if allocated_extents is not None: allocated_extents.append(cluster) else: count_free += 1 logger.debug("Extents checked: clusters free %d; allocated %d", count_free, count_allocated) return (count_free, count_allocated) # Check extents to see if they are marked as free. # Copy of the above that simulates concurrency for testing purposes. # Once every x clusters at random it will allocate a cluster on disk # to prove that the algorithm can handle it. def check_extents_concurrency(extents, volume_bitmap, tmp_file_path, volume_handle, total_clusters, allocated_extents=None): odds_to_allocate = 1200 # 1 in 1200 count_free, count_allocated = (0, 0) for lcn_start, lcn_end in extents: for cluster in xrange(lcn_start, lcn_end + 1): # Every once in a while, occupy a particular cluster on disk. if randint(1, odds_to_allocate) == odds_to_allocate: spike_cluster(volume_handle, cluster, tmp_file_path) if bool(randint(0, 1)): # Simulate allocated before the check, by refetching # the volume bitmap. logger.debug("Simulate known allocated") volume_bitmap, _ = get_volume_bitmap( volume_handle, total_clusters) else: # Simulate allocated after the check. logger.debug("Simulate unknown allocated") if check_mapped_bit(volume_bitmap, cluster): count_allocated += 1 if allocated_extents is not None: allocated_extents.append(cluster) else: count_free += 1 logger.debug("Extents checked: clusters free %d; allocated %d", count_free, count_allocated) return (count_free, count_allocated) # Allocate a cluster on disk by pinning it with a file. # This simulates another process having grabbed it while our # algorithm is working. # This is only used for testing, especially testing concurrency issues. def spike_cluster(volume_handle, cluster, tmp_file_path): spike_file_path = os.path.dirname(tmp_file_path) if spike_file_path[-1] != os.sep: spike_file_path += os.sep spike_file_path += spike_file_name + str(cluster) file_handle = CreateFile(spike_file_path, GENERIC_READ | GENERIC_WRITE, FILE_SHARE_READ | FILE_SHARE_WRITE | FILE_SHARE_DELETE, None, CREATE_ALWAYS, 0, None) # 2000 bytes is enough to direct the file to its own cluster and not # land entirely in the MFT. write_zero_fill(file_handle, 2000) move_file(volume_handle, file_handle, 0, cluster, 1) CloseHandle(file_handle) logger.debug("Spiked cluster %d with %s" % (cluster, spike_file_path)) # Check if an LCN is allocated (True) or free (False). # The LCN determines at what index into the bytes/bits structure we # should look. def check_mapped_bit(volume_bitmap, lcn): assert isinstance(lcn, int) mapped_bit = ord(volume_bitmap[lcn / 8]) bit_location = lcn % 8 # zero-based if bit_location > 0: mapped_bit = mapped_bit >> bit_location mapped_bit = mapped_bit & 1 return mapped_bit > 0 # Check the operating system. Go no further unless we are on # Windows and it's Win NT or later. def check_os(): if os.name.lower() != "nt": raise RuntimeError("This function requires Windows NT or later") # Determine which version of Windows we are running. # Not currently used, except to control encryption test case # depending on whether it's Windows Home Edition or something higher end. def determine_win_version(): ver_info = GetVersionEx(1) is_home = bool(ver_info[7] & VER_SUITE_PERSONAL) if ver_info[:2] == (6, 0): return "Vista", is_home elif ver_info[0] >= 6: return "Later than Vista", is_home else: return "Something else", is_home # Open the file to get a Windows file handle, ensuring it exists. # CreateFileW gives us Unicode support. def open_file(file_name, mode=GENERIC_READ): file_handle = CreateFileW(file_name, mode, 0, None, OPEN_EXISTING, 0, None) return file_handle # Get some basic information about a file. def get_file_basic_info(file_name, file_handle): file_attributes = GetFileAttributesW(file_name) file_size = GetFileSize(file_handle) is_compressed = bool(file_attributes & FILE_ATTRIBUTE_COMPRESSED) is_encrypted = bool(file_attributes & FILE_ATTRIBUTE_ENCRYPTED) is_sparse = bool(file_attributes & FILE_ATTRIBUTE_SPARSE_FILE) is_special = is_compressed | is_encrypted | is_sparse if is_special: logger.debug('{}: {} {} {}'.format(file_name, 'compressed' if is_compressed else '', 'encrypted' if is_encrypted else '', 'sparse' if is_sparse else '')) return file_size, is_special # Truncate a file. Do this when we want to release its clusters. def truncate_file(file_handle): SetFilePointer(file_handle, 0, FILE_BEGIN) SetEndOfFile(file_handle) FlushFileBuffers(file_handle) # Given a Windows file path, determine the volume that contains it. # Append the separator \ to it (more useful for subsequent calls). def volume_from_file(file_name): # strip \\?\ split_path = os.path.splitdrive(extended_path_undo(file_name)) volume = split_path[0] if volume and volume[-1] != os.sep: volume += os.sep return volume class UnsupportedFileSystemError(Exception): """An exception for an unsupported file system""" # Given a volume, get the relevant volume information. # We are interested in: # First call: Drive Name; Max Path; File System. # Second call: Sectors per Cluster; Bytes per Sector; Total # of Clusters. # Third call: Drive Type. def get_volume_information(volume): # If it's a UNC path, raise an error. if not volume: raise UnsupportedFileSystemError( "Only files with a Local File System path can be wiped.") result1 = GetVolumeInformation(volume) result2 = GetDiskFreeSpace(volume) result3 = GetDriveType(volume) for drive_enum, error_reason in [ (DRIVE_REMOTE, "a network drive"), (DRIVE_CDROM, "a CD-ROM"), (DRIVE_UNKNOWN, "an unknown drive type")]: if result3 == drive_enum: raise UnsupportedFileSystemError( "This file is on %s and can't be wiped." % error_reason) # Only NTFS and FAT variations are supported. # UDF (file system for CD-RW etc) is not supported. if result1[4].upper() == "UDF": raise UnsupportedFileSystemError( "This file system (UDF) is not supported.") volume_info = namedtuple('VolumeInfo', [ 'drive_name', 'max_path', 'file_system', 'sectors_per_cluster', 'bytes_per_sector', 'total_clusters']) return volume_info(result1[0], result1[2], result1[4], result2[0], result2[1], result2[3]) # Get read/write access to a volume. def obtain_readwrite(volume): # Optional protection that we are running on removable media only. assert volume #if drive_letter_safety: # drive_containing_file = volume[0].upper() # assert drive_containing_file >= drive_letter_safety.upper() volume = '\\\\.\\' + volume if volume[-1] == os.sep: volume = volume.rstrip(os.sep) # We need the FILE_SHARE flags so that this open call can succeed # despite something on the volume being in use by another process. volume_handle = CreateFile(volume, GENERIC_READ | GENERIC_WRITE, FILE_SHARE_READ | FILE_SHARE_WRITE, None, OPEN_EXISTING, FILE_FLAG_RANDOM_ACCESS | FILE_FLAG_NO_BUFFERING | FILE_FLAG_WRITE_THROUGH, None) #logger.debug("Opened volume %s", volume) return volume_handle # Retrieve a list of pointers to the file location on disk. # If translate_to_extents is False, return the Windows VCN/LCN format. # If True, do an extra conversion to get a list of extents on disk. def get_extents(file_handle, translate_to_extents=True): # Assemble input structure and query Windows for retrieval pointers. # The input structure is the number 0 as a signed 64 bit integer. input_struct = struct.pack('q', 0) # 4K, 32K, 256K, 2M step ups in buffer size, until call succeeds. # Compressed/encrypted/sparse files tend to have more chopped up extents. buf_retry_sizes = [4 * 1024, 32 * 1024, 256 * 1024, 2 * 1024**2] for retrieval_pointers_buf_size in buf_retry_sizes: try: rp_struct = DeviceIoControl(file_handle, FSCTL_GET_RETRIEVAL_POINTERS, input_struct, retrieval_pointers_buf_size) except: err_info = sys.exc_info()[1] err_code, err_module, err_desc = err_info if err_code == 38: # when file size is 0. # (38, 'DeviceIoControl', 'Reached the end of the file.') return [] elif err_code in [122, 234]: # when buffer not large enough. # (122, 'DeviceIoControl', # 'The data area passed to a system call is too small.') # (234, 'DeviceIoControl', 'More data is available.') pass else: raise else: # Call succeeded, break out from for loop. break # At this point we have a FSCTL_GET_RETRIEVAL_POINTERS (rp) structure. # Process content of the first part of structure. # Separate the retrieval pointers list up front, so we are not making # too many string copies of it. chunk_size = struct.calcsize('IIq') rp_list = rp_struct[chunk_size:] rp_struct = rp_struct[:chunk_size] record_count, rp_struct = unpack_element('I', rp_struct) # 4 bytes _, rp_struct = unpack_element('I', rp_struct) # 4 bytes starting_vcn, rp_struct = unpack_element('q', rp_struct) # 8 bytes # 4 empty bytes were consumed above. # This is for reasons of 64-bit alignment inside structure. # If we make the GET_RETRIEVAL_POINTERS request with 0, # this should always come back 0. assert starting_vcn == 0 # Populate the extents array with the ranges from rp structure. ranges = [] c = record_count i = 0 chunk_size = struct.calcsize('q') buf_size = len(rp_list) while c > 0 and i < buf_size: next_vcn = struct.unpack_from('q', rp_list, offset=i) lcn = struct.unpack_from('q', rp_list, offset=i + chunk_size) ranges.append((next_vcn[0], lcn[0])) i += chunk_size * 2 c -= 1 if not translate_to_extents: return ranges else: return [x for x in logical_ranges_to_extents(ranges)] # Tell Windows to make this file compressed on disk. # Only used for the test suite. def file_make_compressed(file_handle): # Assemble input structure. # Just tell Windows to use standard compression. input_struct = struct.pack('H', COMPRESSION_FORMAT_DEFAULT) buf_size = struct.calcsize('H') _ = DeviceIoControl(file_handle, FSCTL_SET_COMPRESSION, input_struct, buf_size) # Tell Windows to make this file sparse on disk. # Only used for the test suite. def file_make_sparse(file_handle): _ = DeviceIoControl(file_handle, FSCTL_SET_SPARSE, None, None) # Tell Windows to add a zero region to a sparse file. # Only used for the test suite. def file_add_sparse_region(file_handle, byte_start, byte_end): # Assemble input structure. input_struct = struct.pack('qq', byte_start, byte_end) buf_size = struct.calcsize('qq') _ = DeviceIoControl(file_handle, FSCTL_SET_ZERO_DATA, input_struct, buf_size) # Retrieve a bitmap of whether clusters on disk are free/allocated. def get_volume_bitmap(volume_handle, total_clusters): # Assemble input structure and query Windows for volume bitmap. # The input structure is the number 0 as a signed 64 bit integer. input_struct = struct.pack('q', 0) # Figure out the buffer size. Add small fudge factor to ensure success. buf_size = (total_clusters / 8) + 16 + 64 vb_struct = DeviceIoControl(volume_handle, FSCTL_GET_VOLUME_BITMAP, input_struct, buf_size) # At this point we have a FSCTL_GET_VOLUME_BITMAP (vb) structure. # Process content of the first part of structure. # Separate the volume bitmap up front, so we are not making too # many string copies of it. chunk_size = struct.calcsize('2q') volume_bitmap = vb_struct[chunk_size:] vb_struct = vb_struct[:chunk_size] starting_lcn, vb_struct = unpack_element('q', vb_struct) # 8 bytes bitmap_size, vb_struct = unpack_element('q', vb_struct) # 8 bytes # If we make the GET_VOLUME_BITMAP request with 0, # this should always come back 0. assert starting_lcn == 0 # The remaining part of the structure is the actual bitmap. return volume_bitmap, bitmap_size # Retrieve info about an NTFS volume. # We are mainly interested in the locations of the Master File Table. # This call is currently not necessary, but has been left in to address any # future need. def get_ntfs_volume_data(volume_handle): # 512 bytes will be comfortably enough to store return object. vd_struct = DeviceIoControl(volume_handle, FSCTL_GET_NTFS_VOLUME_DATA, None, 512) # At this point we have a FSCTL_GET_NTFS_VOLUME_DATA (vd) structure. # Pick out the elements from structure that are useful to us. _, vd_struct = unpack_element('q', vd_struct) # 8 bytes number_sectors, vd_struct = unpack_element('q', vd_struct) # 8 bytes total_clusters, vd_struct = unpack_element('q', vd_struct) # 8 bytes free_clusters, vd_struct = unpack_element('q', vd_struct) # 8 bytes total_reserved, vd_struct = unpack_element('q', vd_struct) # 8 bytes _, vd_struct = unpack_element('4I', vd_struct) # 4*4 bytes _, vd_struct = unpack_element('3q', vd_struct) # 3*8 bytes mft_zone_start, vd_struct = unpack_element('q', vd_struct) # 8 bytes mft_zone_end, vd_struct = unpack_element('q', vd_struct) # 8 bytes # Quick sanity check that we got something reasonable for MFT zone. assert (mft_zone_start < mft_zone_end and mft_zone_start > 0 and mft_zone_end > 0) logger.debug("MFT from %d to %d", mft_zone_start, mft_zone_end) return mft_zone_start, mft_zone_end # Poll to confirm that our clusters were freed. # Check ten times per second for a duration of seven seconds. # According to Windows Internals book, it may take several seconds # until NTFS does a checkpoint and releases the clusters. # In later versions of Windows, this seems to be instantaneous. def poll_clusters_freed(volume_handle, total_clusters, orig_extents): polling_duration_seconds = 7 attempts_per_second = 10 if not orig_extents: return True for _ in xrange(polling_duration_seconds * attempts_per_second): volume_bitmap, bitmap_size = get_volume_bitmap(volume_handle, total_clusters) count_free, count_allocated = check_extents( orig_extents, volume_bitmap) # Some inexact measure to determine if our clusters were freed # by the OS, knowing that another process may grab some clusters # in between our polling attempts. if count_free > count_allocated: return True Sleep(1000 / attempts_per_second) return False # Move a file (or portion of) to a new location on the disk using # the Defrag API. # This will raise an exception if a cluster was not free, # or if the call failed for whatever other reason. def move_file(volume_handle, file_handle, starting_vcn, starting_lcn, cluster_count): # Assemble input structure for our request. # We include a couple of zero ints for 64-bit alignment. input_struct = struct.pack('IIqqII', int(file_handle), 0, starting_vcn, starting_lcn, cluster_count, 0) vb_struct = DeviceIoControl(volume_handle, FSCTL_MOVE_FILE, input_struct, None) # Write zero-fill to a file. # Write_length is the number of bytes to be written. def write_zero_fill(file_handle, write_length): # Bytearray will be initialized with null bytes as part of constructor. fill_string = bytearray(write_buf_size) assert len(fill_string) == write_buf_size # Loop and perform writes of write_buf_size bytes or less. # Continue until write_length bytes have been written. # There is no need to explicitly move the file pointer while # writing. We are writing contiguously. while write_length > 0: if write_length >= write_buf_size: write_string = fill_string write_length -= write_buf_size else: write_string = fill_string[:write_length] write_length = 0 # Write buffer to file. #logger.debug("Write %d bytes", len(write_string)) _, bytes_written = WriteFile(file_handle, write_string) assert bytes_written == len(write_string) FlushFileBuffers(file_handle) # Wipe the file using the extents list we have built. # We just rewrite the file with enough zeros to cover all clusters. def wipe_file_direct(file_handle, extents, cluster_size, file_size): assert cluster_size > 0 # Remember that file_size measures full expanded content of the file, # which may not always match with size on disk (eg. if file compressed). LockFile(file_handle, 0, 0, file_size & 0xFFFF, file_size >> 16) if extents: # Use size on disk to determine how many clusters of zeros we write. for lcn_start, lcn_end in extents: #logger.debug("Wiping extent from %d to %d...", # lcn_start, lcn_end) write_length = (lcn_end - lcn_start + 1) * cluster_size write_zero_fill(file_handle, write_length) else: # Special case - file so small it can be contained within the # directory entry in the MFT part of the disk. #logger.debug("Wiping tiny file that fits entirely on MFT") write_length = file_size write_zero_fill(file_handle, write_length) # Wipe an extent by making calls to the defrag API. # We create a new zero-filled file, then move its clusters to the # position on disk that we want to wipe. # Use a look-ahead with the volume bitmap to figure out if we can expect # our call to succeed. # If not, break the extent into smaller pieces efficiently. # Windows concepts: # LCN (Logical Cluster Number) = a cluster location on disk; an absolute # position on the volume we are writing # VCN (Virtual Cluster Number) = relative position within a file, measured # in clusters def wipe_extent_by_defrag(volume_handle, lcn_start, lcn_end, cluster_size, total_clusters, tmp_file_path): assert cluster_size > 0 logger.debug("Examining extent from %d to %d for wipe...", lcn_start, lcn_end) write_length = (lcn_end - lcn_start + 1) * cluster_size # Check the state of the volume bitmap for the extent we want to # overwrite. If any sectors are allocated, reduce the task # into smaller parts. # We also reduce to smaller pieces if the extent is larger than # 2 megabytes. For no particular reason except to avoid the entire # request failing because one cluster became allocated. volume_bitmap, bitmap_size = get_volume_bitmap(volume_handle, total_clusters) # This option simulates another process that grabs clusters on disk # from time to time. # It should be moved away after QA is complete. if not simulate_concurrency: count_free, count_allocated = check_extents( [(lcn_start, lcn_end)], volume_bitmap) else: count_free, count_allocated = check_extents_concurrency( [(lcn_start, lcn_end)], volume_bitmap, tmp_file_path, volume_handle, total_clusters) if count_allocated > 0 and count_free == 0: return False if count_allocated > 0 or write_length > write_buf_size * 4: if lcn_start < lcn_end: for split_s, split_e in split_extent(lcn_start, lcn_end): wipe_extent_by_defrag(volume_handle, split_s, split_e, cluster_size, total_clusters, tmp_file_path) return True else: return False # Put the zero-fill file in place. file_handle = CreateFile(tmp_file_path, GENERIC_READ | GENERIC_WRITE, 0, None, CREATE_ALWAYS, FILE_ATTRIBUTE_HIDDEN, None) write_zero_fill(file_handle, write_length) new_extents = get_extents(file_handle) # We know the original extent was contiguous. # The new zero-fill file may not be contiguous, so it requires a # loop to be sure of reaching the end of the new file's clusters. new_vcn = 0 for new_lcn_start, new_lcn_end in new_extents: # logger.debug("Zero-fill wrote from %d to %d", # new_lcn_start, new_lcn_end) cluster_count = new_lcn_end - new_lcn_start + 1 cluster_dest = lcn_start + new_vcn if new_lcn_start != cluster_dest: logger.debug("Move %d clusters to %d", cluster_count, cluster_dest) try: move_file(volume_handle, file_handle, new_vcn, cluster_dest, cluster_count) except: # Move file failed, probably because another process # has allocated a cluster on disk. # Break into smaller pieces and do what we can. logger.debug("!! Move encountered an error !!") CloseHandle(file_handle) if lcn_start < lcn_end: for split_s, split_e in split_extent(lcn_start, lcn_end): wipe_extent_by_defrag(volume_handle, split_s, split_e, cluster_size, total_clusters, tmp_file_path) return True else: return False else: # If Windows put the zero-fill extent on the exact clusters we # intended to place it, no need to attempt a move. logging.debug("No need to move extent from %d", new_lcn_start) new_vcn += cluster_count CloseHandle(file_handle) DeleteFile(tmp_file_path) return True # Clean up open handles etc. def clean_up(file_handle, volume_handle, tmp_file_path): try: if file_handle: CloseHandle(file_handle) if volume_handle: CloseHandle(volume_handle) if tmp_file_path: DeleteFile(tmp_file_path) except: pass # Main flow of control. def file_wipe(file_name): # add \\?\ if it does not exist to support Unicode and long paths file_name = extended_path(file_name) check_os() win_version, _ = determine_win_version() volume = volume_from_file(file_name) volume_info = get_volume_information(volume) cluster_size = (volume_info.sectors_per_cluster * volume_info.bytes_per_sector) file_handle = open_file(file_name) file_size, is_special = get_file_basic_info(file_name, file_handle) orig_extents = get_extents(file_handle) if is_special: bridged_extents = [x for x in logical_ranges_to_extents( get_extents(file_handle, False), True)] CloseHandle(file_handle) #logger.debug('Original extents: {}'.format(orig_extents)) volume_handle = obtain_readwrite(volume) file_handle = open_file(file_name, GENERIC_READ | GENERIC_WRITE) if not is_special: # Direct overwrite when it's a regular file. #logger.info("Attempting direct file wipe.") wipe_file_direct(file_handle, orig_extents, cluster_size, file_size) new_extents = get_extents(file_handle) CloseHandle(file_handle) #logger.debug('New extents: {}'.format(new_extents)) if orig_extents == new_extents: clean_up(None, volume_handle, None) return # Expectation was that extents should be identical and file is wiped. # If OS didn't give that to us, continue below and use defrag wipe. # Any extent within new_extents has now been wiped by above. # It can be subtracted from the orig_extents list, and now we will # just clean up anything not yet overwritten. orig_extents = extents_a_minus_b(orig_extents, new_extents) else: # File needs special treatment. We can't just do a basic overwrite. # First we will truncate it. Then chase down the freed clusters to # wipe them, now that they are no longer part of the file. truncate_file(file_handle) CloseHandle(file_handle) # Poll to confirm that our clusters were freed. poll_clusters_freed(volume_handle, volume_info.total_clusters, orig_extents) # Chase down all the freed clusters we can, and wipe them. #logger.debug("Attempting defrag file wipe.") # Put the temp file in the same folder as the target wipe file. # Should be able to write this path if user can write the wipe file. tmp_file_path = os.path.dirname(file_name) + os.sep + tmp_file_name if is_special: orig_extents = choose_if_bridged(volume_handle, volume_info.total_clusters, orig_extents, bridged_extents) for lcn_start, lcn_end in orig_extents: result = wipe_extent_by_defrag(volume_handle, lcn_start, lcn_end, cluster_size, volume_info.total_clusters, tmp_file_path) # Clean up. clean_up(None, volume_handle, tmp_file_path) return bleachbit-2.0/bleachbit/Options.py0000644000175000017500000002657513245436307015342 0ustar hlehle# vim: ts=4:sw=4:expandtab # BleachBit # Copyright (C) 2008-2018 Andrew Ziem # https://www.bleachbit.org # # This program is free software: you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by # the Free Software Foundation, either version 3 of the License, or # (at your option) any later version. # # This program is distributed in the hope that it will be useful, # but WITHOUT ANY WARRANTY; without even the implied warranty of # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the # GNU General Public License for more details. # # You should have received a copy of the GNU General Public License # along with this program. If not, see . """ Store and retrieve user preferences """ from __future__ import absolute_import, print_function import bleachbit from bleachbit import General import logging import os import re import traceback logger = logging.getLogger(__name__) if 'nt' == os.name: from win32file import GetLongPathName boolean_keys = ['auto_hide', 'auto_start', 'check_beta', 'check_online_updates', 'first_start', 'shred', 'exit_done', 'delete_confirmation', 'units_iec'] if 'nt' == os.name: boolean_keys.append('update_winapp2') def path_to_option(pathname): """Change a pathname to a .ini option name (a key)""" # On Windows change to lowercase and use backwards slashes. pathname = os.path.normcase(pathname) # On Windows expand DOS-8.3-style pathnames. if 'nt' == os.name and os.path.exists(pathname): pathname = GetLongPathName(pathname) if ':' == pathname[1]: # ConfigParser treats colons in a special way pathname = pathname[0] + pathname[2:] return pathname class Options: """Store and retrieve user preferences""" def __init__(self): self.purged = False self.config = bleachbit.SafeConfigParser() self.config.optionxform = str # make keys case sensitive for hashpath purging self.config._boolean_states['t'] = True self.config._boolean_states['f'] = False self.restore() def __flush(self): """Write information to disk""" if not self.purged: self.__purge() if not os.path.exists(bleachbit.options_dir): General.makedirs(bleachbit.options_dir) mkfile = not os.path.exists(bleachbit.options_file) _file = open(bleachbit.options_file, 'wb') try: self.config.write(_file) except IOError as e: print(e) from errno import ENOSPC if e.errno == ENOSPC: logger.error("disk is full writing configuration '%s'", bleachbit.options_file) else: raise if mkfile and General.sudo_mode(): General.chownself(bleachbit.options_file) def __purge(self): """Clear out obsolete data""" self.purged = True if not self.config.has_section('hashpath'): return for option in self.config.options('hashpath'): pathname = option if 'nt' == os.name and re.search('^[a-z]\\\\', option): # restore colon lost because ConfigParser treats colon special # in keys pathname = pathname[0] + ':' + pathname[1:] pathname = pathname.decode('utf-8') exists = False try: exists = os.path.lexists(pathname) except: # this deals with corrupt keys # https://www.bleachbit.org/forum/bleachbit-wont-launch-error-startup logger.error('error checking whether path exists: %s ', pathname) if not exists: # the file does not on exist, so forget it self.config.remove_option('hashpath', option) def __set_default(self, key, value): """Set the default value""" if not self.config.has_option('bleachbit', key): self.set(key, value) def get(self, option, section='bleachbit'): """Retrieve a general option""" if not 'nt' == os.name and 'update_winapp2' == option: return False if section == 'hashpath' and option[1] == ':': option = option[0] + option[2:] if option in boolean_keys: return self.config.getboolean(section, option) return self.config.get(section, option.encode('utf-8')) def get_hashpath(self, pathname): """Recall the hash for a file""" return self.get(path_to_option(pathname), 'hashpath') def get_language(self, langid): """Retrieve value for whether to preserve the language""" if not self.config.has_option('preserve_languages', langid): return False return self.config.getboolean('preserve_languages', langid) def get_languages(self): """Return a list of all selected languages""" if not self.config.has_section('preserve_languages'): return None return self.config.options('preserve_languages') def get_list(self, option): """Return an option which is a list data type""" section = "list/%s" % option if not self.config.has_section(section): return None values = [] for option in sorted(self.config.options(section)): values.append(self.config.get(section, option)) return values def get_paths(self, section): """Abstracts get_whitelist_paths and get_custom_paths""" if not self.config.has_section(section): return [] myoptions = [] for option in sorted(self.config.options(section)): pos = option.find('_') if -1 == pos: continue myoptions.append(option[0:pos]) values = [] for option in set(myoptions): p_type = self.config.get(section, option + '_type') p_path = self.config.get(section, option + '_path') values.append((p_type, p_path)) return values def get_whitelist_paths(self): """Return the whitelist of paths""" return self.get_paths("whitelist/paths") def get_custom_paths(self): """Return list of custom paths""" return self.get_paths("custom/paths") def get_tree(self, parent, child): """Retrieve an option for the tree view. The child may be None.""" option = parent if child is not None: option += "." + child if not self.config.has_option('tree', option): return False try: return self.config.getboolean('tree', option) except: # in case of corrupt configuration (Launchpad #799130) traceback.print_exc() return False def restore(self): """Restore saved options from disk""" try: self.config.read(bleachbit.options_file) except: traceback.print_exc() if not self.config.has_section("bleachbit"): self.config.add_section("bleachbit") if not self.config.has_section("hashpath"): self.config.add_section("hashpath") if not self.config.has_section("list/shred_drives"): from bleachbit.FileUtilities import guess_overwrite_paths try: self.set_list('shred_drives', guess_overwrite_paths()) except: traceback.print_exc() logger.error('error setting default shred drives') # set defaults self.__set_default("auto_hide", True) self.__set_default("auto_start", False) self.__set_default("check_beta", False) self.__set_default("check_online_updates", True) self.__set_default("shred", False) self.__set_default("exit_done", False) self.__set_default("delete_confirmation", True) self.__set_default("units_iec", False) if 'nt' == os.name: self.__set_default("update_winapp2", False) if not self.config.has_section('preserve_languages'): lang = bleachbit.user_locale pos = lang.find('_') if -1 != pos: lang = lang[0: pos] for _lang in set([lang, 'en']): logger.info("automatically preserving language '%s'", lang) self.set_language(_lang, True) # BleachBit upgrade or first start ever if not self.config.has_option('bleachbit', 'version') or \ self.get('version') != bleachbit.APP_VERSION: self.set('first_start', True) # set version self.set("version", bleachbit.APP_VERSION) def set(self, key, value, section='bleachbit', commit=True): """Set a general option""" self.config.set(section, key.encode('utf-8'), str(value)) if commit: self.__flush() def set_hashpath(self, pathname, hashvalue): """Remember the hash of a path""" self.set(path_to_option(pathname), hashvalue, 'hashpath') def set_list(self, key, values): """Set a value which is a list data type""" section = "list/%s" % key if self.config.has_section(section): self.config.remove_section(section) self.config.add_section(section) counter = 0 for value in values: self.config.set(section, str(counter), value) counter += 1 self.__flush() def set_whitelist_paths(self, values): """Save the whitelist""" section = "whitelist/paths" if self.config.has_section(section): self.config.remove_section(section) self.config.add_section(section) counter = 0 for value in values: self.config.set(section, str(counter) + '_type', value[0]) self.config.set(section, str(counter) + '_path', value[1]) counter += 1 self.__flush() def set_custom_paths(self, values): """Save the customlist""" section = "custom/paths" if self.config.has_section(section): self.config.remove_section(section) self.config.add_section(section) counter = 0 for value in values: self.config.set(section, str(counter) + '_type', value[0]) self.config.set(section, str(counter) + '_path', value[1]) counter += 1 self.__flush() def set_language(self, langid, value): """Set the value for a locale (whether to preserve it)""" if not self.config.has_section('preserve_languages'): self.config.add_section('preserve_languages') if self.config.has_option('preserve_languages', langid) and not value: self.config.remove_option('preserve_languages', langid) else: self.config.set('preserve_languages', langid, str(value)) self.__flush() def set_tree(self, parent, child, value): """Set an option for the tree view. The child may be None.""" if not self.config.has_section("tree"): self.config.add_section("tree") option = parent if child is not None: option = option + "." + child if self.config.has_option('tree', option) and not value: self.config.remove_option('tree', option) else: self.config.set('tree', option, str(value)) self.__flush() def toggle(self, key): """Toggle a boolean key""" self.set(key, not self.get(key)) options = Options() bleachbit-2.0/bleachbit/Action.py0000644000175000017500000003570113245436307015113 0ustar hlehle# vim: ts=4:sw=4:expandtab # -*- coding: UTF-8 -*- # BleachBit # Copyright (C) 2008-2018 Andrew Ziem # https://www.bleachbit.org # # This program is free software: you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by # the Free Software Foundation, either version 3 of the License, or # (at your option) any later version. # # This program is distributed in the hope that it will be useful, # but WITHOUT ANY WARRANTY; without even the implied warranty of # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the # GNU General Public License for more details. # # You should have received a copy of the GNU General Public License # along with this program. If not, see . """ Actions that perform cleaning """ from __future__ import absolute_import, print_function from bleachbit import Command, FileUtilities, General, Special from bleachbit import _, expanduser, expandvars import glob import logging import os import re import types if 'posix' == os.name: re_flags = 0 from bleachbit import Unix else: re_flags = re.IGNORECASE # # Plugin framework # http://martyalchin.com/2008/jan/10/simple-plugin-framework/ # class PluginMount(type): """A simple plugin framework""" def __init__(cls, name, bases, attrs): if not hasattr(cls, 'plugins'): cls.plugins = [] else: cls.plugins.append(cls) class ActionProvider: """Abstract base class for performing individual cleaning actions""" __metaclass__ = PluginMount def __init__(self, action_node): """Create ActionProvider from CleanerML """ pass def get_deep_scan(self): """Return a dictionary used to construct a deep scan""" raise StopIteration def get_commands(self): """Yield each command (which can be previewed or executed)""" pass # # base class # class FileActionProvider(ActionProvider): """Base class for providers which work on individual files""" action_key = '_file' def __init__(self, action_element): """Initialize file search""" self.regex = action_element.getAttribute('regex') assert(isinstance(self.regex, (str, unicode, types.NoneType))) self.nregex = action_element.getAttribute('nregex') assert(isinstance(self.nregex, (str, unicode, types.NoneType))) self.wholeregex = action_element.getAttribute('wholeregex') assert(isinstance(self.wholeregex, (str, unicode, types.NoneType))) self.nwholeregex = action_element.getAttribute('nwholeregex') assert(isinstance(self.nwholeregex, (str, unicode, types.NoneType))) self.search = action_element.getAttribute('search') self.object_type = action_element.getAttribute('type') self.path = expanduser(expandvars(action_element.getAttribute('path'))) if 'nt' == os.name and self.path: # convert forward slash to backslash for compatibility with getsize() # and for display. Do not convert an empty path, or it will become # the current directory (.). self.path = os.path.normpath(self.path) self.ds = {} if 'deep' == self.search: self.ds['regex'] = self.regex self.ds['nregex'] = self.nregex self.ds['cache'] = General.boolstr_to_bool( action_element.getAttribute('cache')) self.ds['command'] = action_element.getAttribute('command') self.ds['path'] = self.path if not any([self.object_type, self.regex, self.nregex, self.wholeregex, self.nwholeregex]): # If the filter is not needed, bypass it for speed. self.get_paths = self._get_paths def get_deep_scan(self): if 0 == len(self.ds): raise StopIteration yield self.ds def path_filter(self, path): """Process the filters: regex, nregex, type If a filter is defined and it fails to match, this function returns False. Otherwise, this function returns True.""" if self.regex: if not self.regex_c.search(os.path.basename(path)): return False if self.nregex: if self.nregex_c.search(os.path.basename(path)): return False if self.wholeregex: if not self.wholeregex_c.search(path): return False if self.nwholeregex: if self.nwholeregex_c.search(path): return False if self.object_type: if 'f' == self.object_type and not os.path.isfile(path): return False elif 'd' == self.object_type and not os.path.isdir(path): return False return True def get_paths(self): import itertools for f in itertools.ifilter(self.path_filter, self._get_paths()): yield f def _get_paths(self): """Return a filtered list of files""" def get_file(path): if os.path.lexists(path): yield path def get_walk_all(top): for expanded in glob.iglob(top): for path in FileUtilities.children_in_directory( expanded, True): yield path def get_walk_files(top): for expanded in glob.iglob(top): for path in FileUtilities.children_in_directory(expanded, False): yield path if 'deep' == self.search: raise StopIteration elif 'file' == self.search: func = get_file elif 'glob' == self.search: func = glob.iglob elif 'walk.all' == self.search: func = get_walk_all elif 'walk.files' == self.search: func = get_walk_files else: raise RuntimeError("invalid search='%s'" % self.search) if self.regex: self.regex_c = re.compile(self.regex, re_flags) if self.nregex: self.nregex_c = re.compile(self.nregex, re_flags) if self.wholeregex: self.wholeregex_c = re.compile(self.wholeregex, re_flags) if self.nwholeregex: self.nwholeregex_c = re.compile(self.nwholeregex, re_flags) for path in func(self.path): yield path def get_commands(self): raise NotImplementedError('not implemented') # # Action providers # class AptAutoclean(ActionProvider): """Action to run 'apt-get autoclean'""" action_key = 'apt.autoclean' def __init__(self, action_element): pass def get_commands(self): # Checking executable allows auto-hide to work for non-APT systems if FileUtilities.exe_exists('apt-get'): yield Command.Function(None, Unix.apt_autoclean, 'apt-get autoclean') class AptAutoremove(ActionProvider): """Action to run 'apt-get autoremove'""" action_key = 'apt.autoremove' def __init__(self, action_element): pass def get_commands(self): # Checking executable allows auto-hide to work for non-APT systems if FileUtilities.exe_exists('apt-get'): yield Command.Function(None, Unix.apt_autoremove, 'apt-get autoremove') class AptClean(ActionProvider): """Action to run 'apt-get clean'""" action_key = 'apt.clean' def __init__(self, action_element): pass def get_commands(self): # Checking executable allows auto-hide to work for non-APT systems if FileUtilities.exe_exists('apt-get'): yield Command.Function(None, Unix.apt_clean, 'apt-get clean') class ChromeAutofill(FileActionProvider): """Action to clean 'autofill' table in Google Chrome/Chromium""" action_key = 'chrome.autofill' def get_commands(self): for path in self.get_paths(): yield Command.Function( path, Special.delete_chrome_autofill, _('Clean file')) class ChromeDatabases(FileActionProvider): """Action to clean Databases.db in Google Chrome/Chromium""" action_key = 'chrome.databases_db' def get_commands(self): for path in self.get_paths(): yield Command.Function( path, Special.delete_chrome_databases_db, _('Clean file')) class ChromeFavicons(FileActionProvider): """Action to clean 'Favicons' file in Google Chrome/Chromium""" action_key = 'chrome.favicons' def get_commands(self): for path in self.get_paths(): yield Command.Function( path, Special.delete_chrome_favicons, _('Clean file')) class ChromeHistory(FileActionProvider): """Action to clean 'History' file in Google Chrome/Chromium""" action_key = 'chrome.history' def get_commands(self): for path in self.get_paths(): yield Command.Function( path, Special.delete_chrome_history, _('Clean file')) class ChromeKeywords(FileActionProvider): """Action to clean 'keywords' table in Google Chrome/Chromium""" action_key = 'chrome.keywords' def get_commands(self): for path in self.get_paths(): yield Command.Function( path, Special.delete_chrome_keywords, _('Clean file')) class Delete(FileActionProvider): """Action to delete files""" action_key = 'delete' def get_commands(self): for path in self.get_paths(): yield Command.Delete(path) class Ini(FileActionProvider): """Action to clean .ini configuration files""" action_key = 'ini' def __init__(self, action_element): FileActionProvider.__init__(self, action_element) self.section = action_element.getAttribute('section') self.parameter = action_element.getAttribute('parameter') if self.parameter == "": self.parameter = None def get_commands(self): for path in self.get_paths(): yield Command.Ini(path, self.section, self.parameter) class Journald(ActionProvider): """Action to run 'journalctl --vacuum-time=1'""" action_key = 'journald.clean' def __init__(self, action_element): pass def get_commands(self): if FileUtilities.exe_exists('journalctl'): yield Command.Function(None, Unix.journald_clean, 'journalctl --vacuum-time=1') class Json(FileActionProvider): """Action to clean JSON configuration files""" action_key = 'json' def __init__(self, action_element): FileActionProvider.__init__(self, action_element) self.address = action_element.getAttribute('address') def get_commands(self): for path in self.get_paths(): yield Command.Json(path, self.address) class MozillaUrlHistory(FileActionProvider): """Action to clean Mozilla (Firefox) URL history in places.sqlite""" action_key = 'mozilla_url_history' def get_commands(self): for path in self.get_paths(): yield Special.delete_mozilla_url_history(path) class OfficeRegistryModifications(FileActionProvider): """Action to delete LibreOffice history""" action_key = 'office_registrymodifications' def get_commands(self): for path in self.get_paths(): yield Command.Function( path, Special.delete_office_registrymodifications, _('Clean')) class Process(ActionProvider): """Action to run a process""" action_key = 'process' def __init__(self, action_element): self.cmd = expandvars(action_element.getAttribute('cmd')) # by default, wait self.wait = True wait = action_element.getAttribute('wait') if wait and wait.lower()[0] in ('f', 'n'): # false or no self.wait = False def get_commands(self): def run_process(): try: if self.wait: args = self.cmd.split(' ') (rc, stdout, stderr) = General.run_external(args) else: rc = 0 # unknown because we don't wait from subprocess import Popen Popen(self.cmd) except Exception as e: raise RuntimeError( 'Exception in external command\nCommand: %s\nError: %s' % (self.cmd, str(e))) else: if not 0 == rc: logging.getLogger(__name__).warning('Command: %s\nReturn code: %d\nStdout: %s\nStderr: %s\n', self.cmd, rc, stdout, stderr) return 0 yield Command.Function(path=None, func=run_process, label=_("Run external command: %s") % self.cmd) class Shred(FileActionProvider): """Action to shred files (override preference)""" action_key = 'shred' def get_commands(self): for path in self.get_paths(): yield Command.Shred(path) class SqliteVacuum(FileActionProvider): """Action to vacuum SQLite databases""" action_key = 'sqlite.vacuum' def get_commands(self): for path in self.get_paths(): yield Command.Function( path, FileUtilities.vacuum_sqlite3, # TRANSLATORS: Vacuum is a verb. The term is jargon # from the SQLite database. Microsoft Access uses # the term 'Compact Database' (which you may translate # instead). Another synonym is 'defragment.' _('Vacuum')) class Truncate(FileActionProvider): """Action to truncate files""" action_key = 'truncate' def get_commands(self): for path in self.get_paths(): yield Command.Truncate(path) class WinShellChangeNotify(ActionProvider): """Action to clean the Windows Registry""" action_key = 'win.shell.change.notify' def get_commands(self): from bleachbit import Windows yield Command.Function( None, Windows.shell_change_notify, None) class Winreg(ActionProvider): """Action to clean the Windows Registry""" action_key = 'winreg' def __init__(self, action_element): self.keyname = action_element.getAttribute('path') self.name = action_element.getAttribute('name') def get_commands(self): yield Command.Winreg(self.keyname, self.name) class YumCleanAll(ActionProvider): """Action to run 'yum clean all'""" action_key = 'yum.clean_all' def __init__(self, action_element): pass def get_commands(self): # Checking allows auto-hide to work for non-APT systems if not FileUtilities.exe_exists('yum'): raise StopIteration yield Command.Function( None, Unix.yum_clean, 'yum clean all') bleachbit-2.0/bleachbit/Memory.py0000644000175000017500000002344513245436307015150 0ustar hlehle# vim: ts=4:sw=4:expandtab # -*- coding: UTF-8 -*- # BleachBit # Copyright (C) 2008-2018 Andrew Ziem # https://www.bleachbit.org # # This program is free software: you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by # the Free Software Foundation, either version 3 of the License, or # (at your option) any later version. # # This program is distributed in the hope that it will be useful, # but WITHOUT ANY WARRANTY; without even the implied warranty of # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the # GNU General Public License for more details. # # You should have received a copy of the GNU General Public License # along with this program. If not, see . """ Wipe memory """ from __future__ import absolute_import, print_function from bleachbit import FileUtilities from bleachbit import General import logging import os import re import subprocess import sys import traceback logger = logging.getLogger(__name__) def count_swap_linux(): """Count the number of swap devices in use""" f = open("/proc/swaps") count = 0 for line in f: if line[0] == '/': count += 1 return count def get_proc_swaps(): """Return the output of 'swapon -s'""" # Usually 'swapon -s' is identical to '/proc/swaps' # Here is one exception: # https://bugs.launchpad.net/ubuntu/+source/bleachbit/+bug/1092792 (rc, stdout, _) = General.run_external(['swapon', '-s']) if 0 == rc: return stdout logger.debug('"swapoff -s" failed so falling back to /proc/swaps') return open("/proc/swaps").read() def parse_swapoff(swapoff): """Parse the output of swapoff and return the device name""" # English is 'swapoff on /dev/sda5' but German is 'swapoff für ...' # Example output in English with LVM and hyphen: 'swapoff on /dev/mapper/lubuntu-swap_1' # This matches swap devices and swap files ret = re.search('^swapoff (\w* )?(/[\w/.-]+)$', swapoff) if not ret: # no matches return None return ret.group(2) def disable_swap_linux(): """Disable Linux swap and return list of devices""" if 0 == count_swap_linux(): return logger.debug('disabling swap"') args = ["swapoff", "-a", "-v"] (rc, stdout, stderr) = General.run_external(args) if 0 != rc: raise RuntimeError(stderr.replace("\n", "")) devices = [] for line in stdout.split('\n'): line = line.replace('\n', '') if '' == line: continue ret = parse_swapoff(line) if ret is None: raise RuntimeError("Unexpected output:\nargs='%(args)s'\nstdout='%(stdout)s'\nstderr='%(stderr)s'" % {'args': str(args), 'stdout': stdout, 'stderr': stderr}) devices.append(ret) return devices def enable_swap_linux(): """Enable Linux swap""" logger.debug('re-enabling swap"') args = ["swapon", "-a"] p = subprocess.Popen(args, stderr=subprocess.PIPE) p.wait() outputs = p.communicate() if 0 != p.returncode: raise RuntimeError(outputs[1].replace("\n", "")) def make_self_oom_target_linux(): """Make the current process the primary target for Linux out-of-memory killer""" # In Linux 2.6.36 the system changed from oom_adj to oom_score_adj path = '/proc/%d/oom_score_adj' % os.getpid() if os.path.exists(path): open(path, 'w').write('1000') else: path = '/proc/%d/oomadj' % os.getpid() if os.path.exists(path): open(path, 'w').write('15') # OOM likes nice processes logger.debug('new nice value %d', os.nice(19)) # OOM prefers non-privileged processes try: uid = General.getrealuid() if uid > 0: logger.debug('dropping privileges of pid %d to uid %d', os.getpid(), uid) os.seteuid(uid) except: traceback.print_exc() def fill_memory_linux(): """Fill unallocated memory""" report_free() allocbytes = int(physical_free() * 0.4) if allocbytes < 1024: return bytes_str = FileUtilities.bytes_to_human(allocbytes) logger.info('allocating and wiping %s (%d B) of memory', bytes_str, allocbytes) try: buf = '\x00' * allocbytes except MemoryError: pass else: fill_memory_linux() logger.debug('freeing %s of memory" % bytes_str') del buf report_free() def get_swap_size_linux(device, proc_swaps=None): """Return the size of the partition in bytes""" if proc_swaps is None: proc_swaps = get_proc_swaps() line = proc_swaps.split('\n')[0] if not re.search('Filename\s+Type\s+Size', line): raise RuntimeError("Unexpected first line in swap summary '%s'" % line) for line in proc_swaps.split('\n')[1:]: ret = re.search("%s\s+\w+\s+([0-9]+)\s" % device, line) if ret: return int(ret.group(1)) * 1024 raise RuntimeError("error: cannot find size of swap device '%s'\n%s" % (device, proc_swaps)) def get_swap_uuid(device): """Find the UUID for the swap device""" uuid = None args = ['blkid', device, '-s', 'UUID'] (_, stdout, _) = General.run_external(args) for line in stdout.split('\n'): # example: /dev/sda5: UUID="ee0e85f6-6e5c-42b9-902f-776531938bbf" ret = re.search("^%s: UUID=\"([a-z0-9-]+)\"" % device, line) if ret is not None: uuid = ret.group(1) logger.debug("uuid(%s)='%s'", device, uuid) return uuid def physical_free_darwin(run_vmstat=None): def parse_line(k, v): return k, int(v.strip(" .")) def get_page_size(line): m = re.match( r"Mach Virtual Memory Statistics: \(page size of (\d+) bytes\)", line) if m is None: raise RuntimeError("Can't parse vm_stat output") return int(m.groups()[0]) if run_vmstat is None: def run_vmstat(): return subprocess.check_output(["vm_stat"]) output = iter(run_vmstat().split("\n")) page_size = get_page_size(next(output)) vm_stat = dict(parse_line(*l.split(":")) for l in output if l != "") return vm_stat["Pages free"] * page_size def physical_free_linux(): """Return the physical free memory on Linux""" f = open("/proc/meminfo") free_bytes = 0 for line in f: line = line.replace("\n", "") ret = re.search('(MemFree|Cached):[ ]*([0-9]*) kB', line) if ret is not None: kb = int(ret.group(2)) free_bytes += kb * 1024 if free_bytes > 0: return free_bytes else: raise Exception("unknown") def physical_free_windows(): """Return physical free memory on Windows""" from ctypes import c_long, c_ulonglong from ctypes.wintypes import Structure, sizeof, windll, byref class MEMORYSTATUSEX(Structure): _fields_ = [ ('dwLength', c_long), ('dwMemoryLoad', c_long), ('ullTotalPhys', c_ulonglong), ('ullAvailPhys', c_ulonglong), ('ullTotalPageFile', c_ulonglong), ('ullAvailPageFile', c_ulonglong), ('ullTotalVirtual', c_ulonglong), ('ullAvailVirtual', c_ulonglong), ('ullExtendedVirtual', c_ulonglong), ] def GlobalMemoryStatusEx(): x = MEMORYSTATUSEX() x.dwLength = sizeof(x) windll.kernel32.GlobalMemoryStatusEx(byref(x)) return x z = GlobalMemoryStatusEx() print(z) return z.ullAvailPhys def physical_free(): if sys.platform.startswith('linux'): return physical_free_linux() elif 'win32' == sys.platform: return physical_free_windows() elif 'darwin' == sys.platform: return physical_free_darwin() else: raise RuntimeError('unsupported platform for physical_free()') def report_free(): """Report free memory""" bytes_free = physical_free() bytes_str = FileUtilities.bytes_to_human(bytes_free) logger.debug('physical free: %s (%d B)', bytes_str, bytes_free) def wipe_swap_linux(devices, proc_swaps): """Shred the Linux swap file and then reinitilize it""" if devices is None: return if 0 < count_swap_linux(): raise RuntimeError('Cannot wipe swap while it is in use') for device in devices: logger.info("wiping swap device '%s'", device) safety_limit_bytes = 16 * 1024 ** 3 # 16 gibibytes actual_size_bytes = get_swap_size_linux(device, proc_swaps) if actual_size_bytes > safety_limit_bytes: raise RuntimeError( 'swap device %s is larger (%d) than expected (%d)' % (device, actual_size_bytes, safety_limit_bytes)) uuid = get_swap_uuid(device) # wipe FileUtilities.wipe_contents(device, truncate=False) # reinitialize logger.debug('reinitializing swap device %s', device) args = ['mkswap', device] if uuid: args.append("-U") args.append(uuid) (rc, _, stderr) = General.run_external(args) if 0 != rc: raise RuntimeError(stderr.replace("\n", "")) def wipe_memory(): """Wipe unallocated memory""" # cache the file because 'swapoff' changes it proc_swaps = get_proc_swaps() devices = disable_swap_linux() yield True # process GTK+ idle loop logger.debug('detected swap devices: ' + str(devices)) wipe_swap_linux(devices, proc_swaps) yield True child_pid = os.fork() if 0 == child_pid: make_self_oom_target_linux() fill_memory_linux() sys.exit(0) else: logger.debug('wipe_memory() pid %d waiting for child pid %d', os.getpid(), child_pid) rc = os.waitpid(child_pid, 0)[1] if 0 != rc: logger.warning('child process returned code %d', rc) enable_swap_linux() yield 0 # how much disk space was recovered bleachbit-2.0/bleachbit/__init__.py0000644000175000017500000002611313245436307015432 0ustar hlehle# vim: ts=4:sw=4:expandtab # -*- coding: UTF-8 -*- # BleachBit # Copyright (C) 2008-2018 Andrew Ziem # https://www.bleachbit.org # # This program is free software: you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by # the Free Software Foundation, either version 3 of the License, or # (at your option) any later version. # # This program is distributed in the hope that it will be useful, # but WITHOUT ANY WARRANTY; without even the implied warranty of # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the # GNU General Public License for more details. # # You should have received a copy of the GNU General Public License # along with this program. If not, see . """ Code that is commonly shared throughout BleachBit """ from __future__ import absolute_import, print_function import gettext import locale import logging import os import re import sys # # Config Parser got renamed in Python 3 # if sys.version_info >= (3, 0): from configparser import RawConfigParser, NoOptionError, SafeConfigParser else: from ConfigParser import RawConfigParser, NoOptionError, SafeConfigParser APP_VERSION = "2.0" APP_NAME = "BleachBit" APP_URL = "https://www.bleachbit.org" socket_timeout = 10 logger = logging.getLogger('bleachbit') if hasattr(sys, 'frozen') and sys.frozen == 'windows_exe': # When frozen in py2exe, avoid bleachbit.exe.log logger.setLevel(logging.ERROR) else: # debug if command line asks for it or if this a non-final release if any(arg.startswith('--debug-log') for arg in sys.argv) or \ int(APP_VERSION.split('.')[1]) % 2: logger.setLevel(logging.DEBUG) else: logger.setLevel(logging.INFO) logger_sh = logging.StreamHandler() logger.addHandler(logger_sh) # Setting below value to false disables update notification (useful # for packages in repositories). online_update_notification_enabled = True # # Paths # # Windows bleachbit_exe_path = None if hasattr(sys, 'frozen'): # running frozen in py2exe bleachbit_exe_path = os.path.dirname(sys.executable.decode(sys.getfilesystemencoding())) else: # __file__ is absolute path to bleachbit/__init__.py bleachbit_exe_path = os.path.dirname(__file__.decode(sys.getfilesystemencoding())) # license license_filename = None license_filenames = ('/usr/share/common-licenses/GPL-3', # Debian, Ubuntu os.path.join( bleachbit_exe_path, 'COPYING'), # Microsoft Windows '/usr/share/doc/bleachbit-' + APP_VERSION + '/COPYING', # CentOS, Fedora, RHEL '/usr/share/licenses/bleachbit/COPYING', # Fedora 21+, RHEL 7+ '/usr/share/doc/packages/bleachbit/COPYING', # OpenSUSE 11.1 '/usr/pkg/share/doc/bleachbit/COPYING', # NetBSD 5 '/usr/share/licenses/common/GPL3/license.txt') # Arch Linux for lf in license_filenames: if os.path.exists(lf): license_filename = lf break # os.path.expandvars does not work well with non-ascii Windows paths. # This is a unicode-compatible reimplementation of that function. def expandvars(var): """Expand environment variables. Return the argument with environment variables expanded. Substrings of the form $name or ${name} or %name% are replaced by the value of environment variable name.""" if isinstance(var, str): final = var.decode('utf-8') else: final = var if 'posix' == os.name: final = os.path.expandvars(final) elif 'nt' == os.name: import _winreg if final.startswith('${'): final = re.sub(r'\$\{(.*?)\}(?=$|\\)', lambda x: '%%%s%%' % x.group(1), final) elif final.startswith('$'): final = re.sub(r'\$(.*?)(?=$|\\)', lambda x: '%%%s%%' % x.group(1), final) final = _winreg.ExpandEnvironmentStrings(final) return final # Windows paths have to be unicode, but os.path.expanduser does not support it. # This is a unicode-compatible reimplementation of that function. def expanduser(path): """Expand the path with the home directory. Return the argument with an initial component of "~" replaced by that user's home directory. """ if isinstance(path, str): final = path.decode('utf-8') else: final = path # If does not begin with tilde, do not alter. if len(path) == 0 or not '~' == path[0]: return final if 'posix' == os.name: final = os.path.expanduser(final) elif 'nt' == os.name: found = False for env in [u'%USERPROFILE%', u'%HOME%']: if env in os.environ: home = expandvars(env) found = True break if not found: h_drive = expandvars(u'%HOMEDRIVE%') h_path = expandvars(u'%HOMEPATH%') home = os.path.join(h_drive, h_path) final = final.replace('~user/', '') final = final.replace('~/', '') final = final.replace('~', '') final = os.path.join(home, final) return final # configuration portable_mode = False options_dir = None if 'posix' == os.name: options_dir = expanduser("~/.config/bleachbit") elif 'nt' == os.name: if os.path.exists(os.path.join(bleachbit_exe_path, 'bleachbit.ini')): # portable mode portable_mode = True options_dir = bleachbit_exe_path else: # installed mode options_dir = expandvars(r"${APPDATA}\BleachBit") options_file = os.path.join(options_dir, "bleachbit.ini") # check whether the application is running from the source tree if not portable_mode: e1 = os.path.exists(os.path.join(bleachbit_exe_path, '../cleaners')) e2 = os.path.exists(os.path.join(bleachbit_exe_path, '../Makefile')) e3 = os.path.exists(os.path.join(bleachbit_exe_path, '../COPYING')) portable_mode = all((e1, e2, e3)) # personal cleaners personal_cleaners_dir = os.path.join(options_dir, "cleaners") # system cleaners if sys.platform.startswith('linux') or sys.platform == 'darwin': system_cleaners_dir = '/usr/share/bleachbit/cleaners' elif sys.platform == 'win32': system_cleaners_dir = os.path.join(bleachbit_exe_path, 'share\\cleaners\\') elif sys.platform[:6] == 'netbsd': system_cleaners_dir = '/usr/pkg/share/bleachbit/cleaners' else: system_cleaners_dir = None logger.warning('unknown system cleaners directory for platform %s ', sys.platform) # local cleaners directory for running without installation (Windows or Linux) local_cleaners_dir = None if portable_mode: local_cleaners_dir = os.path.normpath( os.path.join(bleachbit_exe_path, '../cleaners')) # application icon __icons = ('/usr/share/pixmaps/bleachbit.png', # Linux os.path.join(bleachbit_exe_path, 'share\\bleachbit.png'), # Windows '/usr/pkg/share/pixmaps/bleachbit.png', # NetBSD os.path.normpath(os.path.join(bleachbit_exe_path, '../bleachbit.png'))) # local appicon_path = None for __icon in __icons: if os.path.exists(__icon): appicon_path = __icon # locale directory if os.path.exists("./locale/"): # local locale (personal) locale_dir = os.path.abspath("./locale/") else: # system-wide installed locale if sys.platform.startswith('linux') or sys.platform == 'darwin': locale_dir = "/usr/share/locale/" elif sys.platform == 'win32': locale_dir = os.path.join(bleachbit_exe_path, 'share\\locale\\') elif sys.platform[:6] == 'netbsd': locale_dir = "/usr/pkg/share/locale/" # launcher launcher_path = '/usr/share/applications/bleachbit.desktop' if 'posix' == os.name: autostart_path = expanduser('~/.config/autostart/bleachbit.desktop') # # gettext # FSE = sys.getfilesystemencoding() try: (user_locale, encoding) = locale.getdefaultlocale() except: logger.exception('error getting locale') user_locale = None encoding = None if user_locale is None: user_locale = 'C' logger.warning("no default locale found. Assuming '%s'", user_locale) if 'win32' == sys.platform: os.environ['LANG'] = user_locale try: if not os.path.exists(locale_dir): raise RuntimeError('translations not installed') t = gettext.translation('bleachbit', locale_dir) _ = t.ugettext except: def _(msg): """Dummy replacement for ugettext""" return msg try: ungettext = t.ungettext except: def ungettext(singular, plural, n): """Dummy replacement for Unicode, plural gettext""" if 1 == n: return singular return plural # # string decoding # # In Python 2, some strings such as Python exceptions may be localized # and byte encoded. This decodes them into Unicode. # See . # def decode_str(s): """Decode a string into Unicode using the default encoding""" if isinstance(s, Exception): # for convenience return decode_str(s.message) try: return s.decode(encoding) except: return s.decode('ascii', 'replace') # # pgettext # # Code released in the Public Domain. You can do whatever you want with this package. # Originally written by Pierre Métras for the OLPC XO laptop. # # Original source: http://dev.laptop.org/git/activities/clock/plain/pgettext.py # pgettext(msgctxt, msgid) from gettext is not supported in Python as of January 2017 # http://bugs.python.org/issue2504 # Meanwhile we get official support, we have to simulate it. # See http://www.gnu.org/software/gettext/manual/gettext.html#Ambiguities for # more information about pgettext. # The separator between message context and message id.This value is the same as # the one used in gettext.h, so PO files should be still valid when Python gettext # module will include pgettext() function. GETTEXT_CONTEXT_GLUE = "\004" def pgettext(msgctxt, msgid): """A custom implementation of GNU pgettext(). """ if msgctxt is not None and msgctxt is not "": translation = _(msgctxt + GETTEXT_CONTEXT_GLUE + msgid) if translation.startswith(msgctxt + GETTEXT_CONTEXT_GLUE): return msgid else: return translation else: return _(msgid) # Map our pgettext() custom function to _p() _p = pgettext # # URLs # base_url = "https://update.bleachbit.org" help_contents_url = "%s/help/%s" \ % (base_url, APP_VERSION) release_notes_url = "%s/release-notes/%s" \ % (base_url, APP_VERSION) update_check_url = "%s/update/%s" % (base_url, APP_VERSION) # set up environment variables if 'nt' == os.name: from bleachbit import Windows Windows.setup_environment() if 'posix' == os.name: # XDG base directory specification envs = { 'XDG_DATA_HOME': os.path.expanduser('~/.local/share'), 'XDG_CONFIG_HOME': os.path.expanduser('~/.config'), 'XDG_CACHE_HOME': os.path.expanduser('~/.cache') } for varname, value in envs.iteritems(): if not os.getenv(varname): os.environ[varname] = value bleachbit-2.0/bleachbit/GUI.py0000755000175000017500000011004513245436307014320 0ustar hlehle#!/usr/bin/env python # vim: ts=4:sw=4:expandtab # BleachBit # Copyright (C) 2008-2018 Andrew Ziem # https://www.bleachbit.org # # This program is free software: you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by # the Free Software Foundation, either version 3 of the License, or # (at your option) any later version. # # This program is distributed in the hope that it will be useful, # but WITHOUT ANY WARRANTY; without even the implied warranty of # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the # GNU General Public License for more details. # # You should have received a copy of the GNU General Public License # along with this program. If not, see . from __future__ import absolute_import, print_function import bleachbit from bleachbit.Cleaner import backends, register_cleaners from bleachbit.GuiPreferences import PreferencesDialog from bleachbit.Options import options from bleachbit import _, _p, APP_NAME, appicon_path, portable_mode from bleachbit import Cleaner, FileUtilities from bleachbit import GuiBasic import logging import os import sys import threading import time import types import warnings warnings.simplefilter('error') import pygtk pygtk.require('2.0') import gtk import gobject warnings.simplefilter('default') if 'nt' == os.name: from bleachbit import Windows logger = logging.getLogger(__name__) def threaded(func): """Decoration to create a threaded function""" def wrapper(*args): thread = threading.Thread(target=func, args=args) thread.start() return wrapper class TreeInfoModel: """Model holds information to be displayed in the tree view""" def __init__(self): self.tree_store = gtk.TreeStore( gobject.TYPE_STRING, gobject.TYPE_BOOLEAN, gobject.TYPE_PYOBJECT, gobject.TYPE_STRING) if None == self.tree_store: raise Exception("cannot create tree store") self.row_changed_handler_id = None self.refresh_rows() self.tree_store.set_sort_func(3, self.sort_func) self.tree_store.set_sort_column_id(3, gtk.SORT_ASCENDING) def get_model(self): """Return the tree store""" return self.tree_store def on_row_changed(self, __treemodel, path, __iter): """Event handler for when a row changes""" parent = self.tree_store[path[0]][2] child = None if 2 == len(path): child = self.tree_store[path][2] value = self.tree_store[path][1] options.set_tree(parent, child, value) def refresh_rows(self): """Clear rows (cleaners) and add them fresh""" if None != self.row_changed_handler_id: self.tree_store.disconnect(self.row_changed_handler_id) self.tree_store.clear() for key in sorted(backends): if not any(backends[key].get_options()): # localizations has no options, so it should be hidden # https://github.com/az0/bleachbit/issues/110 continue c_name = backends[key].get_name() c_id = backends[key].get_id() c_value = options.get_tree(c_id, None) if not c_value and options.get('auto_hide') and backends[key].auto_hide(): logger.debug("automatically hiding cleaner '%s'", c_id) continue parent = self.tree_store.append(None, (c_name, c_value, c_id, "")) for (o_id, o_name) in backends[key].get_options(): o_value = options.get_tree(c_id, o_id) self.tree_store.append(parent, (o_name, o_value, o_id, "")) self.row_changed_handler_id = self.tree_store.connect("row-changed", self.on_row_changed) def sort_func(self, model, iter1, iter2): """Sort the tree by the display name""" s1 = model[iter1][0].lower() s2 = model[iter2][0].lower() if s1 == s2: return 0 if s1 > s2: return 1 return -1 class TreeDisplayModel: """Displays the info model in a view""" def make_view(self, model, parent, context_menu_event): """Create and return a TreeView object""" self.view = gtk.TreeView(model) # listen for right click (context menu) self.view.connect("button_press_event", context_menu_event) # first column self.renderer0 = gtk.CellRendererText() self.column0 = gtk.TreeViewColumn(_("Name"), self.renderer0, text=0) self.view.append_column(self.column0) self.view.set_search_column(0) # second column self.renderer1 = gtk.CellRendererToggle() self.renderer1.set_property('activatable', True) self.renderer1.connect('toggled', self.col1_toggled_cb, model, parent) self.column1 = gtk.TreeViewColumn(_("Active"), self.renderer1) self.column1.add_attribute(self.renderer1, "active", 1) self.view.append_column(self.column1) # third column self.renderer2 = gtk.CellRendererText() if hasattr(self.renderer2, 'set_alignment'): # requires PyGTK 2.22 # http://www.pygtk.org/pygtk2reference/class-gtkcellrenderer.html#method-gtkcellrenderer--set-alignment self.renderer2.set_alignment(1.0, 0.0) # TRANSLATORS: Size is the label for the column that shows how # much space an option would clean or did clean self.column2 = gtk.TreeViewColumn(_("Size"), self.renderer2, text=3) self.column2.set_alignment(1.0) self.view.append_column(self.column2) # finish self.view.expand_all() return self.view def set_cleaner(self, path, model, parent_window, value=None): """Activate or deactive option of cleaner.""" if None == value: # if not value given, toggle current value value = not model[path][1] assert(type(value) is types.BooleanType) assert(type(model) is gtk.TreeStore) cleaner_id = None i = path if type(i) is str: # type is either str or gtk.TreeIter i = model.get_iter(path) parent = model.iter_parent(i) if None != parent: # this is an option (child), not a cleaner (parent) cleaner_id = model[parent][2] option_id = model[path][2] if cleaner_id and value: # when toggling an option, present any warnings warning = backends[cleaner_id].get_warning(option_id) # TRANSLATORS: %(cleaner) may be Firefox, System, etc. # %(option) may be cache, logs, cookies, etc. # %(warning) may be 'This option is really slow' msg = _("Warning regarding %(cleaner)s - %(option)s:\n\n%(warning)s") % \ {'cleaner': model[parent][0], 'option': model[path][0], 'warning': warning} if warning: resp = GuiBasic.message_dialog(parent_window, msg, gtk.MESSAGE_WARNING, gtk.BUTTONS_OK_CANCEL) if gtk.RESPONSE_OK != resp: # user cancelled, so don't toggle option return model[path][1] = value def col1_toggled_cb(self, cell, path, model, parent_window): """Callback for toggling cleaners""" self.set_cleaner(path, model, parent_window) i = model.get_iter(path) # if toggled on, enable the parent parent = model.iter_parent(i) if None != parent and model[path][1]: model[parent][1] = True # if all siblings toggled off, disable the parent if parent and not model[path][1]: sibling = model.iter_nth_child(parent, 0) any_true = False while sibling: if model[sibling][1]: any_true = True sibling = model.iter_next(sibling) if not any_true: model[parent][1] = False # if toggled and has children, do the same for each child child = model.iter_children(i) while child: self.set_cleaner(child, model, parent_window, model[path][1]) child = model.iter_next(child) return class GtkLoggerHandler(logging.Handler): def __init__(self, append_text): logging.Handler.__init__(self) self.append_text = append_text self.min_level = logging.WARNING if '--debug-log' in sys.argv: self.min_level = logging.DEBUG def emit(self, record): if record.levelno < self.min_level: return tag = 'error' if record.levelno >= logging.WARNING else None msg = record.getMessage() if record.exc_text: msg = msg + '\n' + record.exc_text self.append_text(msg + '\n', tag) class GUI: """The main application GUI""" ui = \ ''' ''' def append_text(self, text, tag=None, __iter=None): """Add some text to the main log""" if not __iter: __iter = self.textbuffer.get_end_iter() if tag: self.textbuffer.insert_with_tags_by_name(__iter, text, tag) else: self.textbuffer.insert(__iter, text) # Scroll to end. If the command is run directly instead of # through the idle loop, it may only scroll most of the way # as seen on Ubuntu 9.04 with Italian and Spanish. gobject.idle_add(lambda: self.textview.scroll_mark_onscreen( self.textbuffer.get_insert())) def on_selection_changed(self, selection): """When the tree view selection changed""" model = self.view.get_model() selected_rows = selection.get_selected_rows() if 0 == len(selected_rows[1]): # happens when searching in the tree view return paths = selected_rows[1][0] row = paths[0] name = model[row][0] cleaner_id = model[row][2] self.progressbar.hide() description = backends[cleaner_id].get_description() self.textbuffer.set_text("") self.append_text(name + "\n", 'operation') if not description: description = "" self.append_text(description + "\n\n\n") for (label, description) in backends[cleaner_id].get_option_descriptions(): self.append_text(label, 'option_label') if description: self.append_text(': ', 'option_label') self.append_text(description) self.append_text("\n\n") def get_selected_operations(self): """Return a list of the IDs of the selected operations in the tree view""" ret = [] model = self.tree_store.get_model() __iter = model.get_iter_root() while __iter: if model[__iter][1]: ret.append(model[__iter][2]) __iter = model.iter_next(__iter) return ret def get_operation_options(self, operation): """For the given operation ID, return a list of the selected option IDs.""" ret = [] model = self.tree_store.get_model() __iter = model.get_iter_root() while __iter: if operation == model[__iter][2]: iterc = model.iter_children(__iter) if None == iterc: return None while iterc: if model[iterc][1]: # option is enabled ret.append(model[iterc][2]) iterc = model.iter_next(iterc) return ret __iter = model.iter_next(__iter) return None def set_sensitive(self, true): """Disable commands while an operation is running""" self.actiongroup.set_sensitive(true) self.toolbar.set_sensitive(true) self.view.set_sensitive(true) def run_operations(self, __widget): """Event when the 'delete' toolbar button is clicked.""" # fixme: should present this dialog after finding operations # Disable delete confirmation message. # if the option is selected under preference. if options.get("delete_confirmation"): if not GuiBasic.delete_confirmation_dialog(self.window, True): return self.preview_or_run_operations(True) def preview_or_run_operations(self, really_delete, operations=None): """Preview operations or run operations (delete files)""" assert(isinstance(really_delete, bool)) from bleachbit import Worker self.start_time = None if None == operations: operations = {} for operation in self.get_selected_operations(): operations[operation] = self.get_operation_options(operation) assert(isinstance(operations, dict)) if 0 == len(operations): GuiBasic.message_dialog(self.window, _("You must select an operation"), gtk.MESSAGE_WARNING, gtk.BUTTONS_OK) return try: self.set_sensitive(False) self.textbuffer.set_text("") self.progressbar.show() self.worker = Worker.Worker(self, really_delete, operations) except Exception: logger.exception('Error in Worker()') else: self.start_time = time.time() worker = self.worker.run() gobject.idle_add(worker.next) def worker_done(self, worker, really_delete): """Callback for when Worker is done""" self.progressbar.set_text("") self.progressbar.set_fraction(1) self.progressbar.set_text(_("Done.")) self.textview.scroll_mark_onscreen(self.textbuffer.get_insert()) self.set_sensitive(True) # Close the program after cleaning is completed. # if the option is selected under preference. if really_delete: if options.get("exit_done"): sys.exit() # notification for long-running process elapsed = (time.time() - self.start_time) logger.debug('elapsed time: %d seconds', elapsed) if elapsed < 10 or self.window.is_active(): return try: import pynotify except ImportError: logger.debug('pynotify not available') else: if pynotify.init(APP_NAME): notify = pynotify.Notification('BleachBit', _("Done."), icon='bleachbit') notify.show() notify.set_timeout(10000) def about(self, __event): """Create and show the about dialog""" if 'nt' != os.name and (2, 16, 6) != gtk.gtk_version: # workaround for broken GTK+ # (https://bugs.launchpad.net/bleachbit/+bug/797012) gtk.about_dialog_set_url_hook(lambda dialog, link: GuiBasic.open_url(link, self.window, False)) dialog = gtk.AboutDialog() dialog.set_comments(_("Program to clean unnecessary files")) dialog.set_copyright("Copyright (C) 2008-2018 Andrew Ziem") try: with open(bleachbit.license_filename) as f: dialog.set_license(f.read()) except (IOError, TypeError): # In case the license file cannot be read, there will be an # IOError. In case the license file does not exist, the filename # will be none, causing a TypeError. dialog.set_license( _("GNU General Public License version 3 or later.\nSee http://www.gnu.org/licenses/gpl-3.0.txt")) dialog.set_name(APP_NAME) # TRANSLATORS: Maintain the names of translators here. # Launchpad does this automatically for translations # typed in Launchpad. This is a special string shown # in the 'About' box. dialog.set_translator_credits(_("translator-credits")) dialog.set_version(bleachbit.APP_VERSION) dialog.set_website(bleachbit.APP_URL) dialog.set_transient_for(self.window) if appicon_path and os.path.exists(appicon_path): icon = gtk.gdk.pixbuf_new_from_file(appicon_path) dialog.set_logo(icon) dialog.run() dialog.hide() def diagnostic_dialog(self, parent): """Show diagnostic information""" dialog = gtk.Dialog(_("System information"), parent) dialog.resize(600, 400) txtbuffer = gtk.TextBuffer() from bleachbit import Diagnostic txt = Diagnostic.diagnostic_info() txtbuffer.set_text(txt) textview = gtk.TextView(txtbuffer) textview.set_editable(False) swindow = gtk.ScrolledWindow() swindow.set_policy(gtk.POLICY_AUTOMATIC, gtk.POLICY_AUTOMATIC) swindow.add_with_viewport(textview) dialog.vbox.pack_start(swindow) dialog.add_buttons( gtk.STOCK_COPY, 100, gtk.STOCK_CLOSE, gtk.RESPONSE_CLOSE) dialog.show_all() while True: rc = dialog.run() if 100 == rc: clipboard = gtk.clipboard_get() clipboard.set_text(txt) else: break dialog.hide() def create_operations_box(self): """Create and return the operations box (which holds a tree view)""" scrolled_window = gtk.ScrolledWindow() scrolled_window.set_policy(gtk.POLICY_NEVER, gtk.POLICY_AUTOMATIC) self.tree_store = TreeInfoModel() display = TreeDisplayModel() mdl = self.tree_store.get_model() self.view = display.make_view( mdl, self.window, self.context_menu_event) self.view.get_selection().connect("changed", self.on_selection_changed) scrolled_window.add(self.view) return scrolled_window def cb_preferences_dialog(self, action): """Callback for preferences dialog""" pref = PreferencesDialog(self.window, self.cb_refresh_operations) pref.run() def cb_refresh_operations(self): """Callback to refresh the list of cleaners""" # reload cleaners from disk register_cleaners() # update tree view self.tree_store.refresh_rows() # expand tree view self.view.expand_all() # remove from idle loop (see gobject.idle_add) return False def cb_run_option(self, widget, really_delete, cleaner_id, option_id): """Callback from context menu to delete/preview a single option""" operations = {cleaner_id: [option_id]} # preview if not really_delete: self.preview_or_run_operations(False, operations) return # delete if GuiBasic.delete_confirmation_dialog(self.window, mention_preview=False): self.preview_or_run_operations(True, operations) return def cb_shred_file(self, action): """Callback for shredding a file or folder""" # get list of files if 'ShredFiles' == action.get_name(): paths = GuiBasic.browse_files(self.window, _("Choose files to shred")) elif 'ShredFolders' == action.get_name(): paths = GuiBasic.browse_folder(self.window, _("Choose folder to shred"), multiple=True, stock_button=gtk.STOCK_DELETE) else: raise RuntimeError("Unexpected kind in cb_shred_file") if not paths: return self.shred_paths(paths) def shred_paths(self, paths): """Shred file or folders If user confirms and files are deleted, returns True. If user aborts, returns False. """ # create a temporary cleaner object backends['_gui'] = Cleaner.create_simple_cleaner(paths) # preview and confirm operations = {'_gui': ['files']} self.preview_or_run_operations(False, operations) if GuiBasic.delete_confirmation_dialog(self.window, mention_preview=False): # delete self.preview_or_run_operations(True, operations) return True # user aborted return False def cb_shred_quit(self, action): """Shred settings (for privacy reasons) and quit""" # build a list of paths to delete paths = [] if 'nt' == os.name and portable_mode: # in portable mode on Windows, the options directory includes # executables paths.append(bleachbit.options_file) else: paths.append(bleachbit.options_dir) # prompt the user to confirm if not self.shred_paths(paths): logger.debug('user aborted shred') # aborted return # in portable mode, rebuild a minimal bleachbit.ini if 'nt' == os.name and portable_mode: with open(bleachbit.options_file, 'w') as f: f.write('[Portable]\n') # Quit the application through the idle loop to allow the worker # to delete the files. Use the lowest priority because the worker # uses the standard priority. Otherwise, this will quit before # the files are deleted. gobject.idle_add( lambda: gtk.main_quit(), priority=gobject.PRIORITY_LOW) def cb_wipe_free_space(self, action): """callback to wipe free space in arbitrary folder""" path = GuiBasic.browse_folder(self.window, _("Choose a folder"), multiple=False, stock_button=gtk.STOCK_OK) if not path: # user cancelled return backends['_gui'] = Cleaner.create_wipe_cleaner(path) # execute operations = {'_gui': ['free_disk_space']} self.preview_or_run_operations(True, operations) def context_menu_event(self, treeview, event): """When user right clicks on the tree view""" if event.button != 3: return False pathinfo = treeview.get_path_at_pos(int(event.x), int(event.y)) if None == pathinfo: return False path, col, cellx, celly = pathinfo treeview.grab_focus() treeview.set_cursor(path, col, 0) # context menu applies only to children, not parents if 2 != len(path): return False # find the seleted option model = treeview.get_model() option_id = model[path][2] cleaner_id = model[path[0]][2] # make a menu menu = gtk.Menu() # TRANSLATORS: this is the context menu preview_item = gtk.MenuItem(_("Preview")) preview_item.connect('activate', self.cb_run_option, False, cleaner_id, option_id) menu.append(preview_item) # TRANSLATORS: this is the context menu clean_item = gtk.MenuItem(_("Clean")) clean_item.connect('activate', self.cb_run_option, True, cleaner_id, option_id) menu.append(clean_item) # show the context menu menu.attach_to_widget(treeview, menu.destroy) menu.show_all() menu.popup(None, None, None, event.button, event.time) return True def cb_drag_motion(self, widget, drag_context, x, y, time): drag_context.drag_status(gtk.gdk.ACTION_MOVE, time) return True def cb_drag_data_received(self, widget, context, x, y, selection, target_type, time): if target_type == self.TARGET_TYPE_TEXT: import urlparse import urllib assert(type(selection.data) is str) file_urls = selection.data.split("\n") file_paths = [] for file_url in file_urls: # strip needed to remove "\r" file_url = file_url.strip() parsed_url = urlparse.urlparse(file_url) if parsed_url.scheme == "file": file_path = urllib.url2pathname(parsed_url.path) file_path_unicode = file_path.decode("utf-8") file_paths.append(file_path_unicode) self.shred_paths(file_paths) def setup_drag_n_drop_widget(self, widget): targets = [("text/uri-list", 0, self.TARGET_TYPE_TEXT)] widget.connect("drag_motion", self.cb_drag_motion) widget.connect("drag_data_received", self.cb_drag_data_received) widget.drag_dest_set(gtk.DEST_DEFAULT_DROP, targets, gtk.gdk.ACTION_MOVE) def setup_drag_n_drop(self): self.TARGET_TYPE_TEXT = 80 self.setup_drag_n_drop_widget(self.window) # need to update textview drag&drop settings too self.setup_drag_n_drop_widget(self.textview) def update_progress_bar(self, status): """Callback to update the progress bar with number or text""" if type(status) is float: self.progressbar.set_fraction(status) elif (type(status) is str) or (type(status) is unicode): self.progressbar.set_text(status) else: raise RuntimeError('unexpected type: ' + str(type(status))) def update_item_size(self, option, option_id, bytes_removed): """Update size in tree control""" model = self.view.get_model() text = FileUtilities.bytes_to_human(bytes_removed) if 0 == bytes_removed: text = "" __iter = model.get_iter_root() while __iter: if model[__iter][2] == option: if option_id == -1: model[__iter][3] = text else: child = model.iter_children(__iter) while child: if model[child][2] == option_id: model[child][3] = text child = model.iter_next(child) __iter = model.iter_next(__iter) def update_total_size(self, bytes_removed): """Callback to update the total size cleaned""" context_id = self.status_bar.get_context_id('size') text = FileUtilities.bytes_to_human(bytes_removed) if 0 == bytes_removed: text = "" self.status_bar.push(context_id, text) def create_menubar(self): """Create the menu bar (file, help)""" # Create a UIManager instance uimanager = gtk.UIManager() # Add the accelerator group to the top level window accelgroup = uimanager.get_accel_group() self.window.add_accel_group(accelgroup) # Create an ActionGroup actiongroup = gtk.ActionGroup('UIManagerExample') self.actiongroup = actiongroup # Create actions entries = ( ('ShredFiles', None, _('_Shred Files'), None, None, self.cb_shred_file), ('ShredFolders', None, _('Sh_red Folders'), None, None, self.cb_shred_file), ('WipeFreeSpace', None, _('_Wipe Free Space'), None, None, self.cb_wipe_free_space), ('ShredQuit', None, _('S_hred Settings and Quit'), None, None, self.cb_shred_quit), ('Quit', gtk.STOCK_QUIT, _('_Quit'), None, None, lambda *dummy: gtk.main_quit()), ('File', None, _('_File')), ('Preferences', gtk.STOCK_PREFERENCES, _( "Preferences"), None, None, self.cb_preferences_dialog), ('Edit', None, _("_Edit")), ('HelpContents', gtk.STOCK_HELP, _('Help Contents'), 'F1', None, lambda link: GuiBasic.open_url( bleachbit.help_contents_url, self.window)), ('ReleaseNotes', gtk.STOCK_INFO, _('_Release Notes'), None, None, lambda link: GuiBasic.open_url( bleachbit.release_notes_url, self.window)), ('SystemInformation', None, _('_System Information'), None, None, lambda foo: self.diagnostic_dialog(self.window)), ('About', gtk.STOCK_ABOUT, _( '_About'), None, None, self.about), ('Help', None, _("_Help"))) actiongroup.add_actions(entries) actiongroup.get_action('Quit').set_property('short-label', '_Quit') # Add the actiongroup to the uimanager uimanager.insert_action_group(actiongroup, 0) # Add a UI description uimanager.add_ui_from_string(self.ui) # Create a MenuBar menubar = uimanager.get_widget('/MenuBar') return menubar def create_toolbar(self): """Create the toolbar""" toolbar = gtk.Toolbar() # create the preview button preview_icon = gtk.Image() preview_icon.set_from_stock( gtk.STOCK_FIND, gtk.ICON_SIZE_LARGE_TOOLBAR) # TRANSLATORS: This is the preview button on the main window. It # previews changes. preview_button = gtk.ToolButton( icon_widget=preview_icon, label=_p('button', "Preview")) preview_button.connect( "clicked", lambda *dummy: self.preview_or_run_operations(False)) toolbar.insert(preview_button, -1) preview_button.set_tooltip_text( _("Preview files in the selected operations (without deleting any files)")) preview_button.set_is_important(True) # create the delete button icon = gtk.Image() icon.set_from_stock(gtk.STOCK_DELETE, gtk.ICON_SIZE_LARGE_TOOLBAR) # TRANSLATORS: This is the clean button on the main window. # It makes permanent changes: usually deleting files, sometimes # altering them. run_button = gtk.ToolButton( icon_widget=icon, label=_p("button", "Clean")) run_button.connect("clicked", self.run_operations) toolbar.insert(run_button, -1) run_button.set_tooltip_text( _("Clean files in the selected operations")) run_button.set_is_important(True) return toolbar def create_window(self): """Create the main application window""" self.window = gtk.Window() self.window.connect('destroy', lambda w: gtk.main_quit()) self.window.resize(800, 600) self.window.set_position(gtk.WIN_POS_CENTER) self.window.set_title(APP_NAME) if appicon_path and os.path.exists(appicon_path): self.window.set_icon_from_file(appicon_path) vbox = gtk.VBox() self.window.add(vbox) # add menubar vbox.pack_start(self.create_menubar(), False) # add toolbar self.toolbar = self.create_toolbar() vbox.pack_start(self.toolbar, False) # split main window hbox = gtk.HBox(homogeneous=False, spacing=10) vbox.pack_start(hbox, True) # add operations to left operations = self.create_operations_box() hbox.pack_start(operations, False) # create the right side of the window right_box = gtk.VBox() self.progressbar = gtk.ProgressBar() right_box.pack_start(self.progressbar, False) # add output display on right self.textbuffer = gtk.TextBuffer() swindow = gtk.ScrolledWindow() swindow.set_policy(gtk.POLICY_AUTOMATIC, gtk.POLICY_AUTOMATIC) self.textview = gtk.TextView(self.textbuffer) self.textview.set_editable(False) self.textview.set_wrap_mode(gtk.WRAP_WORD) swindow.add(self.textview) right_box.add(swindow) hbox.add(right_box) # add markup tags tt = self.textbuffer.get_tag_table() style_operation = gtk.TextTag('operation') style_operation.set_property('size-points', 14) style_operation.set_property('weight', 700) tt.add(style_operation) style_option_label = gtk.TextTag('option_label') style_option_label.set_property('weight', 700) tt.add(style_option_label) style_operation = gtk.TextTag('error') style_operation.set_property('foreground', '#b00000') tt.add(style_operation) # add status bar self.status_bar = gtk.Statusbar() vbox.pack_start(self.status_bar, False) # setup drag&drop self.setup_drag_n_drop() # done self.window.show_all() self.progressbar.hide() return @threaded def check_online_updates(self): """Check for software updates in background""" from bleachbit import Update try: updates = Update.check_updates(options.get('check_beta'), options.get('update_winapp2'), self.append_text, lambda: gobject.idle_add(self.cb_refresh_operations)) if updates: gobject.idle_add( lambda: Update.update_dialog(self.window, updates)) except Exception: logger.exception(_("Error when checking for updates: ")) def __init__(self, uac=True, shred_paths=None, exit=False): if uac and 'nt' == os.name and Windows.elevate_privileges(): # privileges escalated in other process sys.exit(0) if not exit: from bleachbit import RecognizeCleanerML RecognizeCleanerML.RecognizeCleanerML() register_cleaners() self.create_window() gobject.threads_init() # Redirect logging to the GUI. bb_logger = logging.getLogger('bleachbit') gtklog = GtkLoggerHandler(self.append_text) bb_logger.addHandler(gtklog) if 'nt' == os.name and 'windows_exe' == getattr(sys, 'frozen', None): # On Microsoft Windows this avoids py2exe redirecting stderr to # bleachbit.exe.log. # sys.frozen = console_exe means the console is shown from bleachbit import logger_sh bb_logger.removeHandler(logger_sh) if shred_paths: self.shred_paths(shred_paths) return if options.get("first_start") and 'posix' == os.name: pref = PreferencesDialog(self.window, self.cb_refresh_operations) pref.run() options.set('first_start', False) if bleachbit.online_update_notification_enabled and options.get("check_online_updates"): self.check_online_updates() if 'nt' == os.name: # BitDefender false positive. BitDefender didn't mark BleachBit as infected or show # anything in its log, but sqlite would fail to import unless BitDefender was in "game mode." # https://www.bleachbit.org/forum/074-fails-errors try: import sqlite3 except ImportError: logger.exception(_("Error loading the SQLite module: the antivirus software may be blocking it.")) if 'posix' == os.name and bleachbit.expanduser('~') == '/root': self.append_text( _('You are running BleachBit with administrative privileges for cleaning shared parts of the system, and references to the user profile folder will clean only the root account.')) if 'nt' == os.name and options.get('shred'): from win32com.shell.shell import IsUserAnAdmin if not IsUserAnAdmin(): self.append_text( _('Run BleachBit with administrator privileges to improve the accuracy of overwriting the contents of files.')) self.append_text('\n') if exit: # This is used for automated testing of whether the GUI can start. gobject.idle_add( lambda: gtk.main_quit(), priority=gobject.PRIORITY_LOW) if __name__ == '__main__': gui = GUI() gtk.main() bleachbit-2.0/bleachbit/Diagnostic.py0000644000175000017500000000740213245436307015757 0ustar hlehle# vim: ts=4:sw=4:expandtab # -*- coding: UTF-8 -*- # BleachBit # Copyright (C) 2008-2018 Andrew Ziem # https://www.bleachbit.org # # This program is free software: you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by # the Free Software Foundation, either version 3 of the License, or # (at your option) any later version. # # This program is distributed in the hope that it will be useful, # but WITHOUT ANY WARRANTY; without even the implied warranty of # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the # GNU General Public License for more details. # # You should have received a copy of the GNU General Public License # along with this program. If not, see . """ Show diagnostic information """ from __future__ import absolute_import, print_function import bleachbit import locale import os import platform import sys if 'nt' == os.name: from win32com.shell import shell def diagnostic_info(): """Return diagnostic information as a string""" s = "BleachBit version %s" % bleachbit.APP_VERSION try: import gtk s += '\nGTK+ version %s' % '.'.join([str(x) for x in gtk.gtk_version]) except ImportError: s += '\nGTK+ not detected' import sqlite3 s += "\nSQLite version %s" % sqlite3.sqlite_version s += "\nlocal_cleaners_dir = %s" % bleachbit.local_cleaners_dir s += "\nlocale_dir = %s" % bleachbit.locale_dir s += "\noptions_dir = %s" % bleachbit.options_dir.decode(bleachbit.FSE) s += "\npersonal_cleaners_dir = %s" % bleachbit.personal_cleaners_dir.decode( bleachbit.FSE) s += "\nsystem_cleaners_dir = %s" % bleachbit.system_cleaners_dir s += "\nlocale.getdefaultlocale = %s" % str(locale.getdefaultlocale()) if 'posix' == os.name: envs = ('DESKTOP_SESSION', 'LOGNAME', 'USER', 'SUDO_UID') if 'nt' == os.name: envs = ('APPDATA', 'LocalAppData', 'LocalAppDataLow', 'Music', 'USERPROFILE', 'ProgramFiles', 'ProgramW6432', 'TMP') for env in envs: if os.getenv(env): s += "\nos.getenv('%s') = %s" % (env, os.getenv(env).decode(bleachbit.FSE)) else: s += "\nos.getenv('%s') = %s" % (env, os.getenv(env)) s += "\nos.path.expanduser('~') = %s" % bleachbit.expanduser( '~').decode(bleachbit.FSE) if sys.platform.startswith('linux'): if hasattr(platform, 'linux_distribution'): s += "\nplatform.linux_distribution() = %s" % str( platform.linux_distribution()) else: s += "\nplatform.dist() = %s" % str(platform.dist()) # Mac Version Name - Dictionary macosx_dict = {'5': 'Leopard', '6': 'Snow Leopard', '7': 'Lion', '8': 'Mountain Lion', '9': 'Mavericks', '10': 'Yosemite', '11': 'El Capitan', '12': 'Sierra'} if sys.platform.startswith('darwin'): if hasattr(platform, 'mac_ver'): for key in macosx_dict: if (platform.mac_ver()[0].split('.')[1] == key): s += "\nplatform.mac_ver() = %s" % str( platform.mac_ver()[0] + " (" + macosx_dict[key] + ")") else: s += "\nplatform.dist() = %s" % str(platform.dist()) if 'nt' == os.name: s += "\nplatform.win32_ver[1]() = %s" % platform.win32_ver()[1] s += "\nplatform.platform = %s" % platform.platform() s += "\nplatform.version = %s" % platform.version() s += "\nsys.argv = %s" % sys.argv s += "\nsys.executable = %s" % sys.executable s += "\nsys.version = %s" % sys.version if 'nt' == os.name: s += "\nwin32com.shell.shell.IsUserAnAdmin() = %s" % shell.IsUserAnAdmin( ) s += "\n__file__ = %s" % __file__ return s bleachbit-2.0/bleachbit/FileUtilities.py0000644000175000017500000006670413245436307016460 0ustar hlehle# vim: ts=4:sw=4:expandtab # -*- coding: UTF-8 -*- # BleachBit # Copyright (C) 2008-2018 Andrew Ziem # https://www.bleachbit.org # # This program is free software: you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by # the Free Software Foundation, either version 3 of the License, or # (at your option) any later version. # # This program is distributed in the hope that it will be useful, # but WITHOUT ANY WARRANTY; without even the implied warranty of # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the # GNU General Public License for more details. # # You should have received a copy of the GNU General Public License # along with this program. If not, see . """ File-related utilities """ from __future__ import absolute_import, print_function import bleachbit from bleachbit import expanduser import atexit import codecs import errno import glob import locale import logging import os import random import re import stat import string import sys import subprocess import tempfile import time logger = logging.getLogger(__name__) if 'nt' == os.name: from pywintypes import error as pywinerror import win32file if 'posix' == os.name: from bleachbit.General import WindowsError pywinerror = WindowsError def open_files_linux(): return glob.iglob("/proc/*/fd/*") def open_files_lsof(run_lsof=None): if run_lsof is None: def run_lsof(): subprocess.check_output(["lsof", "-Fn", "-n"]) for f in run_lsof().split("\n"): if f.startswith("n/"): yield f[1:] # Drop lsof's "n" def open_files(): if sys.platform.startswith('linux'): files = open_files_linux() elif 'darwin' == sys.platform: files = open_files_lsof() else: raise RuntimeError('unsupported platform for open_files()') for filename in files: try: target = os.path.realpath(filename) except TypeError: # happens, for example, when link points to # '/etc/password\x00 (deleted)' continue else: yield target class OpenFiles: """Cached way to determine whether a file is open by active process""" def __init__(self): self.last_scan_time = None self.files = [] def file_qualifies(self, filename): """Return boolean whether filename qualifies to enter cache (check \ against blacklist)""" return not filename.startswith("/dev") and \ not filename.startswith("/proc") def scan(self): """Update cache""" self.last_scan_time = time.time() self.files = [] for filename in open_files(): if self.file_qualifies(filename): self.files.append(filename) def is_open(self, filename): """Return boolean whether filename is open by running process""" if self.last_scan_time is None or (time.time() - self.last_scan_time) > 10: self.scan() return os.path.realpath(filename) in self.files def __random_string(length): """Return random alphanumeric characters of given length""" return ''.join(random.choice(string.ascii_letters + '0123456789_.-') for i in range(length)) def bytes_to_human(bytes_i): # type: (int) -> str """Display a file size in human terms (megabytes, etc.) using preferred standard (SI or IEC)""" if bytes_i < 0: return '-' + bytes_to_human(-bytes_i) from bleachbit.Options import options if options.get('units_iec'): prefixes = ['', 'Ki', 'Mi', 'Gi', 'Ti', 'Pi'] base = 1024.0 else: prefixes = ['', 'k', 'M', 'G', 'T', 'P'] base = 1000.0 assert(isinstance(bytes_i, (int, long))) if 0 == bytes_i: return "0" if bytes_i >= base ** 3: decimals = 2 elif bytes_i >= base: decimals = 1 else: decimals = 0 for exponent in range(0, len(prefixes)): if bytes_i < base: abbrev = round(bytes_i, decimals) suf = prefixes[exponent] return locale.str(abbrev) + suf + 'B' else: bytes_i /= base return 'A lot.' def children_in_directory(top, list_directories=False): """Iterate files and, optionally, subdirectories in directory""" if type(top) is tuple: for top_ in top: for pathname in children_in_directory(top_, list_directories): yield pathname return for (dirpath, dirnames, filenames) in os.walk(top, topdown=False): if list_directories: for dirname in dirnames: yield os.path.join(dirpath, dirname) for filename in filenames: yield os.path.join(dirpath, filename) def clean_ini(path, section, parameter): """Delete sections and parameters (aka option) in the file""" # read file to parser config = bleachbit.RawConfigParser() fp = codecs.open(path, 'r', encoding='utf_8_sig') config.readfp(fp) # change file changed = False if config.has_section(section): if parameter is None: changed = True config.remove_section(section) elif config.has_option(section, parameter): changed = True config.remove_option(section, parameter) # write file if changed: from bleachbit.Options import options fp.close() if options.get('shred'): delete(path, True) fp = codecs.open(path, 'wb', encoding='utf_8') config.write(fp) def clean_json(path, target): """Delete key in the JSON file""" import json changed = False targets = target.split('/') # read file to parser js = json.load(open(path, 'r')) # change file pos = js while True: new_target = targets.pop(0) if not isinstance(pos, dict): break if new_target in pos and len(targets) > 0: # descend pos = pos[new_target] elif new_target in pos: # delete terminal target changed = True del(pos[new_target]) else: # target not found break if 0 == len(targets): # target not found break if changed: from bleachbit.Options import options if options.get('shred'): delete(path, True) # write file json.dump(js, open(path, 'w')) def delete(path, shred=False, ignore_missing=False, allow_shred=True): """Delete path that is either file, directory, link or FIFO. If shred is enabled as a function parameter or the BleachBit global parameter, the path will be shredded unless allow_shred = False. """ from bleachbit.Options import options is_special = False path = extended_path(path) if not os.path.lexists(path): if ignore_missing: return raise OSError(2, 'No such file or directory', path) if 'posix' == os.name: # With certain (relatively rare) files on Windows os.lstat() # may return Access Denied mode = os.lstat(path)[stat.ST_MODE] is_special = stat.S_ISFIFO(mode) or stat.S_ISLNK(mode) if is_special: os.remove(path) elif os.path.isdir(path): delpath = path if allow_shred and (shred or options.get('shred')): delpath = wipe_name(path) try: os.rmdir(delpath) except OSError as e: # [Errno 39] Directory not empty # https://bugs.launchpad.net/bleachbit/+bug/1012930 if errno.ENOTEMPTY == e.errno: logger.info("directory is not empty: %s", path) else: raise except WindowsError as e: # WindowsError: [Error 145] The directory is not empty: # 'C:\\Documents and Settings\\username\\Local Settings\\Temp\\NAILogs' # Error 145 may happen if the files are scheduled for deletion # during reboot. if 145 == e.winerror: logger.info("directory is not empty: %s", path) else: raise elif os.path.isfile(path): # wipe contents if allow_shred and (shred or options.get('shred')): try: wipe_contents(path) except pywinerror as e: # 2 = The system cannot find the file specified. # This can happen with a broken symlink # https://github.com/bleachbit/bleachbit/issues/195 if 2 != e.winerror: raise # If a broken symlink, try os.remove() below. except IOError as e: # permission denied (13) happens shredding MSIE 8 on Windows 7 logger.debug("IOError #%s shredding '%s'", e.errno, path, exc_info=True) # wipe name os.remove(wipe_name(path)) else: # unlink os.remove(path) else: logger.info("special file type cannot be deleted: %s", path) def ego_owner(filename): """Return whether current user owns the file""" return os.lstat(filename).st_uid == os.getuid() def exists_in_path(filename): """Returns boolean whether the filename exists in the path""" delimiter = ':' if 'nt' == os.name: delimiter = ';' for dirname in os.getenv('PATH').split(delimiter): if os.path.exists(os.path.join(dirname, filename)): return True return False def exe_exists(pathname): """Returns boolean whether executable exists""" if os.path.isabs(pathname): return os.path.exists(pathname) else: return exists_in_path(pathname) def execute_sqlite3(path, cmds): """Execute 'cmds' on SQLite database 'path'""" import sqlite3 conn = sqlite3.connect(path) cursor = conn.cursor() # overwrites deleted content with zeros # https://www.sqlite.org/pragma.html#pragma_secure_delete from bleachbit.Options import options if options.get('shred'): cursor.execute('PRAGMA secure_delete=ON') for cmd in cmds.split(';'): try: cursor.execute(cmd) except sqlite3.DatabaseError as exc: raise sqlite3.DatabaseError( '%s: %s' % (bleachbit.decode_str(exc), path)) except sqlite3.OperationalError as exc: if exc.message.find('no such function: ') >= 0: # fixme: determine why randomblob and zeroblob are not # available logger.exception(exc.message) else: raise sqlite3.OperationalError( '%s: %s' % (bleachbit.decode_str(exc), path)) cursor.close() conn.commit() conn.close() def expand_glob_join(pathname1, pathname2): """Join pathname1 and pathname1, expand pathname, glob, and return as list""" ret = [] pathname3 = expanduser(bleachbit.expandvars(os.path.join(pathname1, pathname2))) for pathname4 in glob.iglob(pathname3): ret.append(pathname4) return ret def expandvars(path): return bleachbit.expandvars(path) def extended_path(path): """If applicable, return the extended Windows pathname""" if 'nt' == os.name: if path.startswith(r'\\?'): return path if path.startswith(r'\\'): return '\\\\?\\unc\\' + path[2:] return '\\\\?\\' + path return path def extended_path_undo(path): """""" if 'nt' == os.name: if path.startswith(r'\\?\unc'): return '\\' + path[7:] if path.startswith(r'\\?'): return path[4:] return path def free_space(pathname): """Return free space in bytes""" if 'nt' == os.name: from bleachbit import Windows if Windows.parse_windows_build() >= 6: # This works better with UTF-8 paths. import psutil return psutil.disk_usage(pathname).free else: # This works better with Windows XP but not UTF-8. # Deprecated. _, _, free_bytes = win32file.GetDiskFreeSpaceEx(pathname) return free_bytes mystat = os.statvfs(pathname) return mystat.f_bfree * mystat.f_bsize def getsize(path): """Return the actual file size considering spare files and symlinks""" if 'posix' == os.name: try: __stat = os.lstat(path) except OSError as e: # OSError: [Errno 13] Permission denied # can happen when a regular user is trying to find the size of /var/log/hp/tmp # where /var/log/hp is 0774 and /var/log/hp/tmp is 1774 if errno.EACCES == e.errno: return 0 raise return __stat.st_blocks * 512 if 'nt' == os.name: # On rare files os.path.getsize() returns access denied, so first # try FindFilesW. # Also, apply prefix to use extended-length paths to support longer # filenames. finddata = win32file.FindFilesW(extended_path(path)) if not finddata: # FindFilesW does not work for directories, so fall back to # getsize() return os.path.getsize(path) else: size = (finddata[0][4] * (0xffffffff + 1)) + finddata[0][5] return size return os.path.getsize(path) def getsizedir(path): """Return the size of the contents of a directory""" total_bytes = 0 for node in children_in_directory(path, list_directories=False): total_bytes += getsize(node) return total_bytes def globex(pathname, regex): """Yield a list of files with pathname and filter by regex""" if type(pathname) is tuple: for singleglob in pathname: for path in globex(singleglob, regex): yield path else: for path in glob.iglob(pathname): if re.search(regex, path): yield path def guess_overwrite_paths(): """Guess which partitions to overwrite (to hide deleted files)""" # In case overwriting leaves large files, placing them in # ~/.config makes it easy to find them and clean them. ret = [] if 'posix' == os.name: home = expanduser('~/.cache') if not os.path.exists(home): home = expanduser("~") ret.append(home) if not same_partition(home, '/tmp/'): ret.append('/tmp') elif 'nt' == os.name: localtmp = bleachbit.expandvars('$TMP') if not os.path.exists(localtmp): logger.warning('%TMP% does not exist: %s', localtmp) localtmp = None from bleachbit.Windows import get_fixed_drives for drive in get_fixed_drives(): if localtmp and same_partition(localtmp, drive): ret.append(localtmp) else: ret.append(drive) else: NotImplementedError('Unsupported OS in guess_overwrite_paths') return ret def human_to_bytes(human, hformat='si'): """Convert a string like 10.2GB into bytes. By default use SI standard (base 10). The format of the GNU command 'du' (base 2) also supported.""" if 'si' == hformat: base = 1000 suffixes = 'kMGTE' elif 'du' == hformat: base = 1024 suffixes = 'KMGTE' else: raise ValueError("Invalid format: '%s'" % hformat) matches = re.match(r'^(\d+(?:\.\d+)?) ?([' + suffixes + ']?)B?$', human) if matches is None: raise ValueError("Invalid input for '%s' (hformat='%s')" % (human, hformat)) (amount, suffix) = matches.groups() if '' == suffix: exponent = 0 else: exponent = suffixes.find(suffix) + 1 return int(float(amount) * base**exponent) def listdir(directory): """Return full path of files in directory. Path may be a tuple of directories.""" if type(directory) is tuple: for dirname in directory: for pathname in listdir(dirname): yield pathname return dirname = expanduser(directory) if not os.path.lexists(dirname): return for filename in os.listdir(dirname): yield os.path.join(dirname, filename) def same_partition(dir1, dir2): """Are both directories on the same partition?""" if 'nt' == os.name: try: return free_space(dir1) == free_space(dir2) except pywinerror as e: if 5 == e.winerror: # Microsoft Office 2010 Starter Edition has a virtual # drive that gives access denied # https://bugs.launchpad.net/bleachbit/+bug/1372179 # https://bugs.launchpad.net/bleachbit/+bug/1474848 # https://github.com/az0/bleachbit/issues/27 return dir1[0] == dir2[0] raise stat1 = os.statvfs(dir1) stat2 = os.statvfs(dir2) return stat1[stat.ST_DEV] == stat2[stat.ST_DEV] def sync(): """Flush file system buffers. sync() is different than fsync()""" if 'posix' == os.name: import ctypes rc = ctypes.cdll.LoadLibrary('libc.so.6').sync() if 0 != rc: logger.error('sync() returned code %d', rc) if 'nt' == os.name: import ctypes ctypes.cdll.LoadLibrary('msvcrt.dll')._flushall() def truncate_f(f): """Truncate the file object""" f.truncate(0) f.flush() os.fsync(f.fileno()) def whitelisted_posix(path, check_realpath = True): """Check whether this POSIX path is whitelisted""" from bleachbit.Options import options if check_realpath and os.path.islink(path): # also check the link name if whitelisted_posix(path, False): return True # resolve symlink path = os.path.realpath(path) for pathname in options.get_whitelist_paths(): if pathname[0] == 'file' and path == pathname[1]: return True if pathname[0] == 'folder': if path == pathname[1]: return True if path.startswith(pathname[1] + os.sep): return True return False def whitelisted_windows(path): """Check whether this Windows path is whitelisted""" from bleachbit.Options import options for pathname in options.get_whitelist_paths(): # Windows is case insensitive if pathname[0] == 'file' and path.lower() == pathname[1].lower(): return True if pathname[0] == 'folder': if path.lower() == pathname[1].lower(): return True if path.lower().startswith(pathname[1].lower() + os.sep): return True # Simple drive letter like C:\ matches everything below if len(pathname[1]) == 3 and path.lower().startswith(pathname[1].lower()): return True return False if 'nt' == os.name: whitelisted = whitelisted_windows else: whitelisted = whitelisted_posix def wipe_contents(path, truncate=True): """Wipe files contents http://en.wikipedia.org/wiki/Data_remanence 2006 NIST Special Publication 800-88 (p. 7): "Studies have shown that most of today's media can be effectively cleared by one overwrite" """ def wipe_write(): size = getsize(path) try: f = open(path, 'wb') except IOError as e: if e.errno == errno.EACCES: # permission denied os.chmod(path, 0o200) # user write only f = open(path, 'wb') else: raise blanks = chr(0) * 4096 while size > 0: f.write(blanks) size -= 4096 f.flush() # flush to OS buffer os.fsync(f.fileno()) # force write to disk return f if 'nt' == os.name: from win32com.shell.shell import IsUserAnAdmin if 'nt' == os.name and IsUserAnAdmin(): from bleachbit.WindowsWipe import file_wipe, UnsupportedFileSystemError import warnings from bleachbit import _ try: file_wipe(path) except pywinerror as e: # 32=The process cannot access the file because it is being used by another process. # 33=The process cannot access the file because another process has # locked a portion of the file. if not e.winerror in (32, 33): # handle only locking errors raise # Try to truncate the file. This makes the behavior consistent # with Linux and with Windows when IsUserAdmin=False. try: with open(path, 'wb') as f: truncate_f(f) except IOError as e2: if errno.EACCES == e2.errno: # Common when the file is locked # Errno 13 Permission Denied pass # translate exception to mark file to deletion in Command.py raise WindowsError(e.winerror, e.strerror) except UnsupportedFileSystemError as e: warnings.warn( _('There was at least one file on a file system that does not support advanced overwriting.'), UserWarning) f = open(path, 'wb') else: # The wipe succeed, so prepare to truncate. f = open(path, 'wb') else: f = wipe_write() if truncate: truncate_f(f) f.close() def wipe_name(pathname1): """Wipe the original filename and return the new pathname""" (head, _) = os.path.split(pathname1) # reference http://en.wikipedia.org/wiki/Comparison_of_file_systems#Limits maxlen = 226 # first, rename to a long name i = 0 while True: try: pathname2 = os.path.join(head, __random_string(maxlen)) os.rename(pathname1, pathname2) break except OSError: if maxlen > 10: maxlen -= 10 i += 1 if i > 100: logger.info('exhausted long rename: %s', pathname1) pathname2 = pathname1 break # finally, rename to a short name i = 0 while True: try: pathname3 = os.path.join(head, __random_string(i + 1)) os.rename(pathname2, pathname3) break except: i += 1 if i > 100: logger.info('exhausted short rename: %s', pathname2) pathname3 = pathname2 break return pathname3 def wipe_path(pathname, idle=False): """Wipe the free space in the path This function uses an iterator to update the GUI.""" def temporaryfile(): # reference # http://en.wikipedia.org/wiki/Comparison_of_file_systems#Limits maxlen = 245 f = None while True: try: f = tempfile.NamedTemporaryFile( dir=pathname, suffix=__random_string(maxlen), delete=False) # In case the application closes prematurely, make sure this # file is deleted atexit.register( delete, f.name, allow_shred=False, ignore_missing=True) break except OSError as e: if e.errno in (errno.ENAMETOOLONG, errno.ENOSPC, errno.ENOENT): # ext3 on Linux 3.5 returns ENOSPC if the full path is greater than 264. # Shrinking the size helps. # Microsoft Windows returns ENOENT "No such file or directory" # when the path is too long such as %TEMP% but not in C:\ if maxlen > 5: maxlen -= 5 continue raise return f def estimate_completion(): """Return (percent, seconds) to complete""" remaining_bytes = free_space(pathname) done_bytes = start_free_bytes - remaining_bytes if done_bytes < 0: # maybe user deleted large file after starting wipe done_bytes = 0 if 0 == start_free_bytes: done_percent = 0 else: done_percent = 1.0 * done_bytes / (start_free_bytes + 1) done_time = time.time() - start_time rate = done_bytes / (done_time + 0.0001) # bytes per second remaining_seconds = int(remaining_bytes / (rate + 0.0001)) return 1, done_percent, remaining_seconds logger.debug("wipe_path('%s')", pathname) files = [] total_bytes = 0 start_free_bytes = free_space(pathname) start_time = time.time() # Because FAT32 has a maximum file size of 4,294,967,295 bytes, # this loop is sometimes necessary to create multiple files. while True: try: logger.debug('creating new, temporary file to wipe path') f = temporaryfile() except OSError as e: # Linux gives errno 24 # Windows gives errno 28 No space left on device if e.errno in (errno.EMFILE, errno.ENOSPC): break else: raise last_idle = time.time() # Write large blocks to quickly fill the disk. blanks = chr(0) * 65535 while True: try: f.write(blanks) except IOError as e: if e.errno == errno.ENOSPC: if len(blanks) > 1: # Try writing smaller blocks blanks = blanks[0: (len(blanks) / 2)] else: break elif e.errno != errno.EFBIG: raise if idle and (time.time() - last_idle) > 2: # Keep the GUI responding, and allow the user to abort. # Also display the ETA. yield estimate_completion() last_idle = time.time() # Write to OS buffer try: f.flush() except: # IOError: [Errno 28] No space left on device # seen on Microsoft Windows XP SP3 with ~30GB free space but # not on another XP SP3 with 64MB free space logger.info("info: exception on f.flush()", exc_info=True) os.fsync(f.fileno()) # write to disk # Remember to delete files.append(f) # For statistics total_bytes += f.tell() # If no bytes were written, then quit if f.tell() < 1: break # sync to disk sync() # statistics elapsed_sec = time.time() - start_time rate_mbs = (total_bytes / (1000 * 1000)) / elapsed_sec logger.info('wrote %d files and %d bytes in %d seconds at %.2f MB/s', len(files), total_bytes, elapsed_sec, rate_mbs) # how much free space is left (should be near zero) if 'posix' == os.name: stats = os.statvfs(pathname) logger.info('%d bytes and %d inodes available to non-super-user', stats.f_bsize * stats.f_bavail, stats.f_favail) logger.info('%d bytes and %d inodes available to super-user', stats.f_bsize * stats.f_bfree, stats.f_ffree) # truncate and close files for f in files: truncate_f(f) while True: try: # Nikita: I noticed a bug that prevented file handles from # being closed on FAT32. It sometimes takes two .close() calls # to do actually close (and therefore delete) a temporary file f.close() break except IOError as e: if e.errno == 0: logger.debug('handled unknown error 0') time.sleep(0.1) # explicitly delete delete(f.name, ignore_missing=True) def vacuum_sqlite3(path): """Vacuum SQLite database""" execute_sqlite3(path, 'vacuum') openfiles = OpenFiles() bleachbit-2.0/bleachbit/Worker.py0000644000175000017500000003307713245436307015153 0ustar hlehle# vim: ts=4:sw=4:expandtab # BleachBit # Copyright (C) 2008-2018 Andrew Ziem # https://www.bleachbit.org # # This program is free software: you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by # the Free Software Foundation, either version 3 of the License, or # (at your option) any later version. # # This program is distributed in the hope that it will be useful, # but WITHOUT ANY WARRANTY; without even the implied warranty of # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the # GNU General Public License for more details. # # You should have received a copy of the GNU General Public License # along with this program. If not, see . """ Perform the preview or delete operations """ from __future__ import absolute_import, print_function from bleachbit import DeepScan, FileUtilities from bleachbit.Cleaner import backends from bleachbit import _, ungettext, expanduser import logging import math import sys logger = logging.getLogger(__name__) class Worker: """Perform the preview or delete operations""" def __init__(self, ui, really_delete, operations): """Create a Worker ui: an instance with methods append_text() update_progress_bar() update_total_size() update_item_size() worker_done() really_delete: (boolean) preview or make real changes? operations: dictionary where operation-id is the key and operation-id are values """ self.ui = ui self.really_delete = really_delete assert(isinstance(operations, dict)) self.operations = operations self.size = 0 self.total_bytes = 0 self.total_deleted = 0 self.total_errors = 0 self.total_special = 0 # special operations self.yield_time = None if 0 == len(self.operations): raise RuntimeError("No work to do") def print_exception(self, operation): """Display exception""" # TRANSLATORS: This indicates an error. The special keyword # %(operation)s will be replaced by 'firefox' or 'opera' or # some other cleaner ID. The special keyword %(msg)s will be # replaced by a message such as 'Permission denied.' err = _("Exception while running operation '%(operation)s': '%(msg)s'") \ % {'operation': operation, 'msg': str(sys.exc_info()[1])} logger.error(err, exc_info=True) self.total_errors += 1 def execute(self, cmd): """Execute or preview the command""" ret = None try: for ret in cmd.execute(self.really_delete): if True == ret or isinstance(ret, tuple): # Temporarily pass control to the GTK idle loop, # allow user to abort, and # display progress (if applicable). yield ret except SystemExit: pass except Exception as e: # 2 = does not exist # 13 = permission denied from errno import ENOENT, EACCES if isinstance(e, OSError) and e.errno in (ENOENT, EACCES): # For access denied, do not show traceback logger.error('%s: %s', e, cmd) else: # For other errors, show the traceback. logger.error('Error in execution of %s', cmd, exc_info=True) self.total_errors += 1 else: if ret is None: return if isinstance(ret['size'], (int, long)): size = FileUtilities.bytes_to_human(ret['size']) self.size += ret['size'] self.total_bytes += ret['size'] else: size = "?B" if ret['path']: path = ret['path'] else: path = '' path = path.decode('utf8', 'replace') # for invalid encoding line = u"%s %s %s\n" % (ret['label'], size, path) self.total_deleted += ret['n_deleted'] self.total_special += ret['n_special'] if ret['label']: # the label may be a hidden operation # (e.g., win.shell.change.notify) self.ui.append_text(line) def clean_operation(self, operation): """Perform a single cleaning operation""" operation_options = self.operations[operation] assert(isinstance(operation_options, list)) logger.debug("clean_operation('%s'), options = '%s'", operation, operation_options) if not operation_options: raise StopIteration if self.really_delete and backends[operation].is_running(): # TRANSLATORS: %s expands to a name such as 'Firefox' or 'System'. err = _("%s cannot be cleaned because it is currently running. Close it, and try again.") \ % backends[operation].get_name() self.ui.append_text(err + "\n", 'error') self.total_errors += 1 return import time self.yield_time = time.time() total_size = 0 for option_id in operation_options: self.size = 0 assert(isinstance(option_id, (str, unicode))) # normal scan for cmd in backends[operation].get_commands(option_id): for ret in self.execute(cmd): if True == ret: # Return control to PyGTK idle loop to keep # it responding allow the user to abort self.yield_time = time.time() yield True if time.time() - self.yield_time > 0.25: if self.really_delete: self.ui.update_total_size(self.total_bytes) yield True self.yield_time = time.time() self.ui.update_item_size(operation, option_id, self.size) total_size += self.size # deep scan for ds in backends[operation].get_deep_scan(option_id): if '' == ds['path']: ds['path'] = expanduser('~') if 'delete' != ds['command']: raise NotImplementedError( 'Deep scan only supports deleting now') if ds['path'] not in self.deepscans: self.deepscans[ds['path']] = [] self.deepscans[ds['path']].append(ds) self.ui.update_item_size(operation, -1, total_size) def run_delayed_op(self, operation, option_id): """Run one delayed operation""" self.ui.update_progress_bar(0.0) if 'free_disk_space' == option_id: # TRANSLATORS: 'free' means 'unallocated' msg = _("Please wait. Wiping free disk space.") elif 'memory' == option_id: msg = _("Please wait. Cleaning %s.") % _("Memory") else: raise RuntimeError("Unexpected option_id in delayed ops") self.ui.update_progress_bar(msg) for cmd in backends[operation].get_commands(option_id): for ret in self.execute(cmd): if isinstance(ret, tuple): # Display progress (for free disk space) phase = ret[ 0] # 1=wipe free disk space, 2=wipe inodes, 3=clean up inodes files percent_done = ret[1] eta_seconds = ret[2] self.ui.update_progress_bar(percent_done) if phase == 2: msg = _('Please wait. Wiping file system metadata.') elif phase == 3: msg = _( 'Please wait. Cleaning up after wiping file system metadata.') if isinstance(eta_seconds, int): eta_mins = math.ceil(eta_seconds / 60) msg2 = ungettext("About %d minute remaining.", "About %d minutes remaining.", eta_mins) \ % eta_mins self.ui.update_progress_bar(msg + ' ' + msg2) else: self.ui.update_progress_bar(msg) if True == ret or isinstance(ret, tuple): # Return control to PyGTK idle loop to keep # it responding and allow the user to abort. yield True def run(self): """Perform the main cleaning process which has these phases 1. General cleaning 2. Deep scan 3. Memory 4. Free disk space""" self.deepscans = {} # prioritize self.delayed_ops = [] for operation in self.operations: delayables = ['free_disk_space', 'memory'] for delayable in delayables: if operation not in ('system', '_gui'): continue if delayable in self.operations[operation]: i = self.operations[operation].index(delayable) del self.operations[operation][i] priority = 99 if 'free_disk_space' == delayable: priority = 100 new_op = (priority, {operation: [delayable]}) self.delayed_ops.append(new_op) # standard operations import warnings with warnings.catch_warnings(record=True) as ws: # This warning system allows general warnings. Duplicate will # be removed, and the warnings will show near the end of # the log. warnings.simplefilter('once') for dummy in self.run_operations(self.operations): # yield to GTK+ idle loop yield True for w in ws: logger.warning(w.message) # run deep scan if self.deepscans: for dummy in self.run_deep_scan(): yield dummy # delayed operations for op in sorted(self.delayed_ops): operation = op[1].keys()[0] for option_id in op[1].values()[0]: for ret in self.run_delayed_op(operation, option_id): # yield to GTK+ idle loop yield True # print final stats bytes_delete = FileUtilities.bytes_to_human(self.total_bytes) if self.really_delete: # TRANSLATORS: This refers to disk space that was # really recovered (in other words, not a preview) line = _("Disk space recovered: %s") % bytes_delete else: # TRANSLATORS: This refers to a preview (no real # changes were made yet) line = _("Disk space to be recovered: %s") % bytes_delete self.ui.append_text("\n%s" % line) if self.really_delete: # TRANSLATORS: This refers to the number of files really # deleted (in other words, not a preview). line = _("Files deleted: %d") % self.total_deleted else: # TRANSLATORS: This refers to the number of files that # would be deleted (in other words, simply a preview). line = _("Files to be deleted: %d") % self.total_deleted self.ui.append_text("\n%s" % line) if self.total_special > 0: line = _("Special operations: %d") % self.total_special self.ui.append_text("\n%s" % line) if self.total_errors > 0: line = _("Errors: %d") % self.total_errors self.ui.append_text("\n%s" % line, 'error') if self.really_delete: self.ui.update_total_size(self.total_bytes) self.ui.worker_done(self, self.really_delete) yield False def run_deep_scan(self): """Run deep scans""" logger.debug(' deepscans=%s' % self.deepscans) # TRANSLATORS: The "deep scan" feature searches over broad # areas of the file system such as the user's whole home directory # or all the system executables. self.ui.update_progress_bar(_("Please wait. Running deep scan.")) yield True # allow GTK to update the screen ds = DeepScan.DeepScan() for (path, dsdict) in self.deepscans.items(): logger.debug('deepscan path=%s, dict=%s' % (path, dsdict)) for dsdict2 in dsdict: ds.add_search(path, dsdict2['regex']) for path in ds.scan(): if True == path: yield True continue # fixme: support non-delete commands from bleachbit import Command cmd = Command.Delete(path) for ret in self.execute(cmd): yield True def run_operations(self, my_operations): """Run a set of operations (general, memory, free disk space)""" count = 0 for operation in my_operations: self.ui.update_progress_bar(1.0 * count / len(my_operations)) name = backends[operation].get_name() if self.really_delete: # TRANSLATORS: %s is replaced with Firefox, System, etc. msg = _("Please wait. Cleaning %s.") % name else: # TRANSLATORS: %s is replaced with Firefox, System, etc. msg = _("Please wait. Previewing %s.") % name self.ui.update_progress_bar(msg) yield True # show the progress bar message now try: for dummy in self.clean_operation(operation): yield True except: self.print_exception(operation) count += 1 bleachbit-2.0/bleachbit/CLI.py0000755000175000017500000002154213245436307014306 0ustar hlehle#!/usr/bin/env python # vim: ts=4:sw=4:expandtab # BleachBit # Copyright (C) 2008-2018 Andrew Ziem # https://www.bleachbit.org # # This program is free software: you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by # the Free Software Foundation, either version 3 of the License, or # (at your option) any later version. # # This program is distributed in the hope that it will be useful, # but WITHOUT ANY WARRANTY; without even the implied warranty of # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the # GNU General Public License for more details. # # You should have received a copy of the GNU General Public License # along with this program. If not, see . """ Command line interface """ from __future__ import absolute_import, print_function from bleachbit.Cleaner import backends, create_simple_cleaner, register_cleaners from bleachbit import _, APP_VERSION, encoding from bleachbit import Diagnostic, Options, Worker import logging import optparse import os import sys logger = logging.getLogger(__name__) class CliCallback: """Command line's callback passed to Worker""" def __init__(self): """Initialize CliCallback""" self.encoding = encoding if encoding else 'UTF8' def append_text(self, msg, tag=None): """Write text to the terminal""" # If the encoding is not explicitly handled on a non-UTF-8 # system, then special Latin-1 characters such as umlauts may # raise an exception as an encoding error. print(msg.strip('\n').encode(self.encoding, 'replace')) def update_progress_bar(self, status): """Not used""" pass def update_total_size(self, size): """Not used""" pass def update_item_size(self, op, opid, size): """Not used""" pass def worker_done(self, worker, really_delete): """Not used""" pass def cleaners_list(): """Yield each cleaner-option pair""" register_cleaners() for key in sorted(backends): c_id = backends[key].get_id() for (o_id, o_name) in backends[key].get_options(): yield "%s.%s" % (c_id, o_id) def list_cleaners(): """Display available cleaners""" for cleaner in cleaners_list(): print (cleaner) def preview_or_clean(operations, really_clean): """Preview deletes and other changes""" cb = CliCallback() worker = Worker.Worker(cb, really_clean, operations).run() while worker.next(): pass def args_to_operations(args, preset): """Read arguments and return list of operations""" register_cleaners() operations = {} if preset: # restore presets from the GUI for key in sorted(backends): c_id = backends[key].get_id() for (o_id, o_name) in backends[key].get_options(): if Options.options.get_tree(c_id, o_id): args.append('.'.join([c_id, o_id])) for arg in args: if 2 != len(arg.split('.')): logger.warning(_("not a valid cleaner: %s"), arg) continue (cleaner_id, option_id) = arg.split('.') # enable all options (for example, firefox.*) if '*' == option_id: if cleaner_id in operations: del operations[cleaner_id] operations[cleaner_id] = [] for (option_id2, o_name) in backends[cleaner_id].get_options(): operations[cleaner_id].append(option_id2) continue # add the specified option if cleaner_id not in operations: operations[cleaner_id] = [] if option_id not in operations[cleaner_id]: operations[cleaner_id].append(option_id) for (k, v) in operations.items(): operations[k] = sorted(v) return operations def process_cmd_line(): """Parse the command line and execute given commands.""" # TRANSLATORS: This is the command line usage. Don't translate # %prog, but do translate usage, options, cleaner, and option. # More information about the command line is here # https://www.bleachbit.org/documentation/command-line usage = _("usage: %prog [options] cleaner.option1 cleaner.option2") parser = optparse.OptionParser(usage) parser.add_option("-l", "--list-cleaners", action="store_true", help=_("list cleaners")) parser.add_option("-c", "--clean", action="store_true", # TRANSLATORS: predefined cleaners are for applications, such as Firefox and Flash. # This is different than cleaning an arbitrary file, such as a # spreadsheet on the desktop. help=_("run cleaners to delete files and make other permanent changes")) parser.add_option('--debug-log', help='log debug messages to file') parser.add_option("-s", "--shred", action="store_true", help=_("shred specific files or folders")) parser.add_option("--sysinfo", action="store_true", help=_("show system information")) parser.add_option("--gui", action="store_true", help=_("launch the graphical interface")) parser.add_option('--exit', action='store_true', help=optparse.SUPPRESS_HELP) if 'nt' == os.name: uac_help = _("do not prompt for administrator privileges") else: uac_help = optparse.SUPPRESS_HELP parser.add_option("--no-uac", action="store_true", help=uac_help) parser.add_option("-p", "--preview", action="store_true", help=_("preview files to be deleted and other changes")) parser.add_option('--pot', action='store_true', help=optparse.SUPPRESS_HELP) parser.add_option("--preset", action="store_true", help=_("use options set in the graphical interface")) if 'nt' == os.name: parser.add_option("--update-winapp2", action="store_true", help=_("update winapp2.ini, if a new version is available")) parser.add_option("-v", "--version", action="store_true", help=_("output version information and exit")) parser.add_option('-o', '--overwrite', action='store_true', help=_('overwrite files to hide contents')) (options, args) = parser.parse_args() did_something = False if options.debug_log: logger.addHandler(logging.FileHandler(options.debug_log)) logger.info('BleachBit version %s', APP_VERSION) logger.info(Diagnostic.diagnostic_info()) if options.version: print(""" BleachBit version %s Copyright (C) 2008-2018 Andrew Ziem. All rights reserved. License GPLv3+: GNU GPL version 3 or later . This is free software: you are free to change and redistribute it. There is NO WARRANTY, to the extent permitted by law.""" % APP_VERSION) sys.exit(0) if 'nt' == os.name and options.update_winapp2: from bleachbit import Update logger.info("Checking online for updates to winapp2.ini") Update.check_updates(False, True, lambda x: sys.stdout.write("%s\n" % x), lambda: None) # updates can be combined with --list, --preview, --clean did_something = True if options.list_cleaners: list_cleaners() sys.exit(0) if options.pot: from bleachbit.CleanerML import create_pot create_pot() sys.exit(0) if options.preview or options.clean: operations = args_to_operations(args, options.preset) if not operations: logger.error('No work to do. Specify options.') sys.exit(1) if options.preview: preview_or_clean(operations, False) sys.exit(0) if options.overwrite: if not options.clean or options.shred: logger.warning('--overwrite is intended only for use with --clean') Options.options.set('shred', True, commit=False) if options.clean: preview_or_clean(operations, True) sys.exit(0) if options.gui: import gtk from bleachbit import GUI shred_paths = args if options.shred else None GUI.GUI(uac=not options.no_uac, shred_paths=shred_paths, exit=options.exit) gtk.main() if options.exit: # For automated testing of Windows build print('Success') sys.exit(0) if options.shred: # delete arbitrary files without GUI # create a temporary cleaner object backends['_gui'] = create_simple_cleaner(args) operations = {'_gui': ['files']} preview_or_clean(operations, True) sys.exit(0) if options.sysinfo: print(Diagnostic.diagnostic_info()) sys.exit(0) if not did_something: parser.print_help() if __name__ == '__main__': process_cmd_line() bleachbit-2.0/bleachbit/Winapp.py0000644000175000017500000003733213245436307015136 0ustar hlehle # vim: ts=4:sw=4:expandtab # BleachBit # Copyright (C) 2008-2018 Andrew Ziem # https://www.bleachbit.org # # This program is free software: you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by # the Free Software Foundation, either version 3 of the License, or # (at your option) any later version. # # This program is distributed in the hope that it will be useful, # but WITHOUT ANY WARRANTY; without even the implied warranty of # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the # GNU General Public License for more details. # # You should have received a copy of the GNU General Public License # along with this program. If not, see . """ Import Winapp2.ini files """ from __future__ import absolute_import, print_function import bleachbit from bleachbit import Cleaner, Windows from bleachbit.Action import Delete, Winreg from bleachbit import _, FSE, expandvars import logging import os import glob import re from xml.dom.minidom import parseString logger = logging.getLogger(__name__) MAX_DETECT = 50 # TRANSLATORS: This is cleaner name for cleaners imported from winapp2.ini langsecref_map = {'3021': ('winapp2_applications', _('Applications')), # TRANSLATORS: This is cleaner name for cleaners imported # from winapp2.ini '3022': ('winapp2_internet', _('Internet')), # TRANSLATORS: This is cleaner name for cleaners imported # from winapp2.ini '3023': ('winapp2_multimedia', _('Multimedia')), # TRANSLATORS: This is cleaner name for cleaners imported # from winapp2.ini '3024': ('winapp2_utilities', _('Utilities')), # TRANSLATORS: This is cleaner name for cleaners imported # from winapp2.ini. '3025': ('winapp2_windows', 'Microsoft Windows'), '3026': ('winapp2_mozilla', 'Firefox/Mozilla'), '3027': ('winapp2_opera', 'Opera'), '3028': ('winapp2_safari', 'Safari'), '3029': ('winapp2_google_chrome', 'Google Chrome'), '3030': ('winapp2_thunderbird', 'Thunderbird'), '3031': ('winapp2_windows_store', 'Windows Store'), # Section=Games (technically not langsecref) 'Games': ('winapp2_games', _('Games'))} def xml_escape(s): """Lightweight way to escape XML entities""" return s.replace('&', '&').replace('"', '"') def section2option(s): """Normalize section name to appropriate option name""" ret = re.sub(r'[^a-z0-9]', '_', s.lower()) ret = re.sub(r'_+', '_', ret) ret = re.sub(r'(^_|_$)', '', ret) return ret def detectos(required_ver, mock=False): """Returns boolean whether the detectos is compatible with the current operating system, or the mock version, if given.""" # Do not compare as string because Windows 10 (build 10.0) comes after # Windows 8.1 (build 6.3). assert(isinstance(required_ver, (str, unicode))) current_os = (mock if mock else Windows.parse_windows_build()) required_ver = required_ver.strip() if required_ver.startswith('|'): # This is the maximum version # For example, |5.1 means Windows XP (5.1) but not Vista (6.0) return current_os <= Windows.parse_windows_build(required_ver[1:]) elif required_ver.endswith('|'): # This is the minimum version # For example, 6.1| means Windows 7 or later return current_os >= Windows.parse_windows_build(required_ver[:-1]) else: # Exact version return Windows.parse_windows_build(required_ver) == current_os def winapp_expand_vars(pathname): """Expand environment variables using special Winapp2.ini rules""" # This is the regular expansion expand1 = expandvars(pathname) # Winapp2.ini expands %ProgramFiles% to %ProgramW6432%, etc. subs = (('ProgramFiles', 'ProgramW6432'), ('CommonProgramFiles', 'CommonProgramW6432')) for (sub_orig, sub_repl) in subs: pattern = re.compile('%{}%'.format(sub_orig), flags=re.IGNORECASE) if pattern.match(pathname): expand2 = pattern.sub('%{}%'.format(sub_repl), pathname) return expand1, expandvars(expand2) return expand1, def detect_file(pathname): """Check whether a path exists for DetectFile#=""" for expanded in winapp_expand_vars(pathname): for _ in glob.iglob(expanded): return True return False def fnmatch_translate(pattern): """Same as the original without the end""" import fnmatch r = fnmatch.translate(pattern) if r.endswith('$'): return r[:-1] if r.endswith(r'\Z(?ms)'): return r[:-7] return r class Winapp: """Create cleaners from a Winapp2.ini-style file""" def __init__(self, pathname): """Create cleaners from a Winapp2.ini-style file""" self.cleaners = {} self.cleaner_ids = [] for langsecref in set(langsecref_map.values()): self.add_section(langsecref[0], langsecref[1]) self.errors = 0 self.parser = bleachbit.RawConfigParser() self.parser.read(pathname) for section in self.parser.sections(): try: self.handle_section(section) except Exception: self.errors += 1 logger.exception('parsing error in section %s', section) def add_section(self, cleaner_id, name): """Add a section (cleaners)""" self.cleaner_ids.append(cleaner_id) self.cleaners[cleaner_id] = Cleaner.Cleaner() self.cleaners[cleaner_id].id = cleaner_id self.cleaners[cleaner_id].name = name self.cleaners[cleaner_id].description = _('Imported from winapp2.ini') def section_to_cleanerid(self, langsecref): """Given a langsecref (or section name), find the internal BleachBit cleaner ID.""" # pre-defined, such as 3021 if langsecref in langsecref_map.keys(): return langsecref_map[langsecref][0] # custom, such as games cleanerid = 'winapp2_' + section2option(langsecref) if cleanerid not in self.cleaners: # never seen before self.add_section(cleanerid, langsecref) return cleanerid def excludekey_to_nwholeregex(self, excludekey): """Translate one ExcludeKey to CleanerML nwholeregex Supported examples FILE=%LocalAppData%\BleachBit\BleachBit.ini FILE=%LocalAppData%\BleachBit\|BleachBit.ini FILE=%LocalAppData%\BleachBit\|*.ini FILE=%LocalAppData%\BleachBit\|*.ini;*.bak PATH=%LocalAppData%\BleachBit\ PATH=%LocalAppData%\BleachBit\|*.* """ parts = excludekey.split('|') parts[0] = parts[0].upper() if 'REG' == parts[0]: raise NotImplementedError('REG not supported in ExcludeKey') # the last part contains the filename(s) files = None files_regex = '' if 3 == len(parts): files = parts[2].split(';') if 1 == len(files): # one file pattern like *.* or *.log files_regex = fnmatch_translate(files[0]) if '*.*' == files_regex: files = None elif len(files) > 1: # multiple file patterns like *.log;*.bak files_regex = '(%s)' % '|'.join( [fnmatch_translate(f) for f in files]) # the middle part contains the file regexes = [] for expanded in winapp_expand_vars(parts[1]): regex = None if not files: # There is no third part, so this is either just a folder, # or sometimes the file is specified directly. regex = fnmatch_translate(expanded) if files: # match one or more file types, directly in this tree or in any # sub folder regex = '%s.*%s' % ( fnmatch_translate(expanded), files_regex) regexes.append(regex) if 1 == len(regexes): return regexes[0] else: return '(%s)' % '|'.join(regexes) def handle_section(self, section): """Parse a section""" # if simple detection fails then discard the section if self.parser.has_option(section, 'detect'): key = self.parser.get(section, 'detect').decode(FSE) if not Windows.detect_registry_key(key): return if self.parser.has_option(section, 'detectfile'): if not detect_file(self.parser.get(section, 'detectfile').decode(FSE)): return if self.parser.has_option(section, 'detectos'): required_ver = self.parser.get(section, 'detectos').decode(FSE) if not detectos(required_ver): return # in case of multiple detection, discard if none match if self.parser.has_option(section, 'detectfile1'): matches = 0 for n in range(1, MAX_DETECT): option_id = 'detectfile%d' % n if self.parser.has_option(section, option_id): if detect_file(self.parser.get(section, option_id).decode(FSE)): matches += 1 if 0 == matches: return if self.parser.has_option(section, 'detect1'): matches = 0 for n in range(1, MAX_DETECT): option_id = 'detect%d' % n if self.parser.has_option(section, option_id): if Windows.detect_registry_key(self.parser.get(section, option_id).decode(FSE)): matches += 1 if 0 == matches: return # excludekeys ignores a file, path, or registry key excludekeys = [] if self.parser.has_option(section, 'excludekey1'): for n in range(1, MAX_DETECT): option_id = 'excludekey%d' % n if self.parser.has_option(section, option_id): excludekeys.append( self.excludekey_to_nwholeregex(self.parser.get(section, option_id).decode(FSE))) # there are two ways to specify sections: langsecref= and section= if self.parser.has_option(section, 'langsecref'): # verify the langsecref number is known # langsecref_num is 3021, games, etc. langsecref_num = self.parser.get(section, 'langsecref').decode(FSE) elif self.parser.has_option(section, 'section'): langsecref_num = self.parser.get(section, 'section').decode(FSE) else: logger.error('neither option LangSecRef nor Section found in section %s', section) return # find the BleachBit internal cleaner ID lid = self.section_to_cleanerid(langsecref_num) self.cleaners[lid].add_option( section2option(section), section.replace('*', ''), '') for option in self.parser.options(section): if option.startswith('filekey'): self.handle_filekey(lid, section, option, excludekeys) elif option.startswith('regkey'): self.handle_regkey(lid, section, option) elif option == 'warning': self.cleaners[lid].set_warning( section2option(section), self.parser.get(section, 'warning').decode(FSE)) elif option in ('default', 'detectfile', 'detect', 'langsecref', 'section') \ or ['detect%d' % x for x in range(1, MAX_DETECT)] \ or ['detectfile%d' % x for x in range(1, MAX_DETECT)]: pass else: logger.warning('unknown option %s in section %s', option, section) return def __make_file_provider(self, dirname, filename, recurse, removeself, excludekeys): """Change parsed FileKey to action provider""" regex = '' if recurse: search = 'walk.files' path = dirname if filename.startswith('*.'): filename = filename.replace('*.', '.') if '.*' == filename: if removeself: search = 'walk.all' else: import fnmatch regex = ' regex="%s" ' % (fnmatch.translate(filename)) else: search = 'glob' path = os.path.join(dirname, filename) if -1 == path.find('*'): search = 'file' excludekeysxml = '' if excludekeys: if len(excludekeys) > 1: # multiple exclude_str = '(%s)' % '|'.join(excludekeys) else: # just one exclude_str = excludekeys[0] excludekeysxml = 'nwholeregex="%s"' % exclude_str action_str = u'