Merge branch 'master' into x86_64
This commit is contained in:
@@ -342,6 +342,38 @@ if $(TARGET_ARCH) = x86 {
|
|||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
# MikMod
|
||||||
|
local mikmodBaseURL = http://haiku-files.org/files/optional-packages/lib ;
|
||||||
|
if $(TARGET_ARCH) = x86 {
|
||||||
|
if $(HAIKU_GCC_VERSION[1]) >= 4 {
|
||||||
|
HAIKU_MIKMOD_FILE = libmikmod-3.1.11-r1a3-x86-gcc4-2011-05-26.zip ;
|
||||||
|
} else {
|
||||||
|
HAIKU_MIKMOD_FILE = libmikmod-3.1.11-r1a3-x86-gcc2-2011-05-19.zip ;
|
||||||
|
}
|
||||||
|
|
||||||
|
local mikmodZipFile = [ DownloadFile $(HAIKU_MIKMOD_FILE)
|
||||||
|
: $(mikmodBaseURL)/$(HAIKU_MIKMOD_FILE) ] ;
|
||||||
|
|
||||||
|
HAIKU_MIKMOD_DIR = [ FDirName $(HAIKU_OPTIONAL_BUILD_PACKAGES_DIR)
|
||||||
|
$(HAIKU_MIKMOD_FILE:B) ] ;
|
||||||
|
|
||||||
|
HAIKU_MIKMOD_HEADERS_DEPENDENCY = [ ExtractArchive $(HAIKU_MIKMOD_DIR)
|
||||||
|
: common/include/ : $(mikmodZipFile) : extracted-mikmod ] ;
|
||||||
|
|
||||||
|
HAIKU_MIKMOD_LIBS = [ ExtractArchive $(HAIKU_MIKMOD_DIR)
|
||||||
|
:
|
||||||
|
common/lib/libmikmod.a
|
||||||
|
: $(mikmodZipFile)
|
||||||
|
: extracted-ffmpeg ] ;
|
||||||
|
Depends $(HAIKU_MIKMOD_LIBS) : $(HAIKU_MIKMOD_HEADERS_DEPENDENCY) ;
|
||||||
|
|
||||||
|
HAIKU_MIKMOD_HEADERS = [ FDirName $(HAIKU_MIKMOD_DIR) common include ] ;
|
||||||
|
|
||||||
|
} else {
|
||||||
|
Echo "MikMod support not available on $(TARGET_ARCH)" ;
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
# Freetype
|
# Freetype
|
||||||
local freetypeBaseURL = $(baseURL)/lib ;
|
local freetypeBaseURL = $(baseURL)/lib ;
|
||||||
if $(TARGET_ARCH) = ppc || $(TARGET_ARCH) = x86 {
|
if $(TARGET_ARCH) = ppc || $(TARGET_ARCH) = x86 {
|
||||||
|
|||||||
@@ -53,8 +53,10 @@ if $(HAIKU_ADD_ALTERNATIVE_GCC_LIBS) = 1
|
|||||||
# GitDoc - documentation for the distributed version control system
|
# GitDoc - documentation for the distributed version control system
|
||||||
# GPerf - the perfect hash function generator.
|
# GPerf - the perfect hash function generator.
|
||||||
# Groff - text formatter used for man pages
|
# Groff - text formatter used for man pages
|
||||||
|
# HGrep - header grep tool
|
||||||
# ICU-devel - the headers and lib-links for ICU (for development)
|
# ICU-devel - the headers and lib-links for ICU (for development)
|
||||||
# KeymapSwitcher - Easy to use keymap switcher
|
# KeymapSwitcher - Easy to use keymap switcher
|
||||||
|
# LGrep - Library Grep tool
|
||||||
# LibEvent - An event notification library
|
# LibEvent - An event notification library
|
||||||
# LibIconv - text encoding conversion library
|
# LibIconv - text encoding conversion library
|
||||||
# LibLayout - GCC2 package needed by some BeOS apps to compile
|
# LibLayout - GCC2 package needed by some BeOS apps to compile
|
||||||
@@ -1057,6 +1059,18 @@ if [ IsOptionalHaikuImagePackageAdded Groff ] {
|
|||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
# HGgrep
|
||||||
|
if [ IsOptionalHaikuImagePackageAdded HGrep ] {
|
||||||
|
if $(TARGET_ARCH) != x86 {
|
||||||
|
Echo "No optional package HGrep available for $(TARGET_ARCH)" ;
|
||||||
|
} else {
|
||||||
|
InstallOptionalHaikuImagePackage
|
||||||
|
hgrep-1.0.1-x86-gcc2-2012-07-23.zip
|
||||||
|
: $(baseURL)/hgrep-1.0.1-x86-gcc2-2012-07-23.zip ;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
# ICU
|
# ICU
|
||||||
if [ IsOptionalHaikuImagePackageAdded ICU ] {
|
if [ IsOptionalHaikuImagePackageAdded ICU ] {
|
||||||
if $(TARGET_ARCH) != x86 {
|
if $(TARGET_ARCH) != x86 {
|
||||||
@@ -1132,6 +1146,18 @@ if [ IsOptionalHaikuImagePackageAdded KeymapSwitcher ] {
|
|||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
# LGrep
|
||||||
|
if [ IsOptionalHaikuImagePackageAdded LGrep ] {
|
||||||
|
if $(TARGET_ARCH) != x86 {
|
||||||
|
Echo "No optional package LGrep available for $(TARGET_ARCH)" ;
|
||||||
|
} else {
|
||||||
|
InstallOptionalHaikuImagePackage
|
||||||
|
lgrep-1.0-x86-gcc2-2012-07-23.zip
|
||||||
|
: $(baseURL)/lgrep-1.0-x86-gcc2-2012-07-23.zip ;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
# LibEvent
|
# LibEvent
|
||||||
if [ IsOptionalHaikuImagePackageAdded LibEvent ] {
|
if [ IsOptionalHaikuImagePackageAdded LibEvent ] {
|
||||||
if $(TARGET_ARCH) != x86 {
|
if $(TARGET_ARCH) != x86 {
|
||||||
|
|||||||
@@ -576,7 +576,7 @@ HAIKU_ELFEDIT ?= ${HAIKU_ELFEDIT} ;
|
|||||||
HAIKU_YASM ?= ${HAIKU_YASM} ;
|
HAIKU_YASM ?= ${HAIKU_YASM} ;
|
||||||
HAIKU_CPPFLAGS ?= ${HAIKU_CPPFLAGS} ;
|
HAIKU_CPPFLAGS ?= ${HAIKU_CPPFLAGS} ;
|
||||||
HAIKU_CCFLAGS ?= ${HAIKU_CCFLAGS} ;
|
HAIKU_CCFLAGS ?= ${HAIKU_CCFLAGS} ;
|
||||||
HAIKU_CXXFLAGS ?= ${HAIKU_CXXFLAGS} ;
|
HAIKU_C++FLAGS ?= ${HAIKU_CXXFLAGS} ;
|
||||||
HAIKU_LDFLAGS ?= ${HAIKU_LDFLAGS} ;
|
HAIKU_LDFLAGS ?= ${HAIKU_LDFLAGS} ;
|
||||||
HAIKU_ARFLAGS ?= ${HAIKU_ARFLAGS} ;
|
HAIKU_ARFLAGS ?= ${HAIKU_ARFLAGS} ;
|
||||||
HAIKU_UNARFLAGS ?= ${HAIKU_UNARFLAGS} ;
|
HAIKU_UNARFLAGS ?= ${HAIKU_UNARFLAGS} ;
|
||||||
|
|||||||
@@ -0,0 +1,15 @@
|
|||||||
|
1 russian x-vnd.Haiku-MatchHeader 1205906732
|
||||||
|
<Choose action> ConfigView <Выберите действие>
|
||||||
|
has ConfigView содержит
|
||||||
|
Move to ConfigView Переместить в
|
||||||
|
Then ConfigView Тогда
|
||||||
|
value (use REGEX: in from of regular expressions like *spam*) ConfigView значение (используйте регулярные выражения, например *спам*)
|
||||||
|
this field is based on the action ConfigView это поле зависит от действия
|
||||||
|
Delete message ConfigView Удалить сообщение
|
||||||
|
Rule filter RuleFilter Правило фильтрации
|
||||||
|
<Choose account> ConfigView <Выберите аккаунт>
|
||||||
|
Set flags to ConfigView Установить флаги в
|
||||||
|
Set as read ConfigView Отметить как прочитанное
|
||||||
|
Reply with ConfigView Ответить с
|
||||||
|
If ConfigView Если
|
||||||
|
header (e.g. Subject) ConfigView заголовок (например Тема)
|
||||||
@@ -0,0 +1,10 @@
|
|||||||
|
1 russian x-vnd.Haiku-NewMailNotification 3801190717
|
||||||
|
%num new message filter %num новое сообщение
|
||||||
|
%num new messages filter %num новых сообщений
|
||||||
|
Keyboard LEDs ConfigView Клавиатурные светодиоды
|
||||||
|
You have %num new message for %name. filter У вас есть %num новое сообщение для %name.
|
||||||
|
Log window ConfigView Окно журнала
|
||||||
|
Central beep ConfigView Центральный звуковой сигнал
|
||||||
|
Beep ConfigView Звуковой сигнал
|
||||||
|
Method: ConfigView Метод:
|
||||||
|
Alert ConfigView Оповещение
|
||||||
@@ -1,6 +1,8 @@
|
|||||||
1 japanese x-vnd.Haiku-SpamFilter 1119442397
|
1 japanese x-vnd.Haiku-SpamFilter 1975155212
|
||||||
or empty e-mail SpamFilterConfig または空のメール
|
or empty e-mail SpamFilterConfig または空のメール
|
||||||
Spam Filter (AGMS Bayesian) SpamFilter スパムフィルター (AGMS Bayesian)
|
Spam Filter (AGMS Bayesian) SpamFilter スパムフィルター (AGMS Bayesian)
|
||||||
|
Genuine below and uncertain above: SpamFilterConfig 正規のを下に、疑わしいものを上に:
|
||||||
|
Spam above: SpamFilterConfig スパムを上に:
|
||||||
Add spam rating to start of subject SpamFilterConfig 件名の最初にスパムの格付けを加える
|
Add spam rating to start of subject SpamFilterConfig 件名の最初にスパムの格付けを加える
|
||||||
Learn from all incoming e-mail SpamFilterConfig 受信メールすべてから学習する
|
Learn from all incoming e-mail SpamFilterConfig 受信メールすべてから学習する
|
||||||
Sorry, unable to launch the spamdbm program to let you edit the server settings. SpamFilterConfig すみません、サーバー設定編集のための spamdbm プログラムを起動できませんでした。
|
Sorry, unable to launch the spamdbm program to let you edit the server settings. SpamFilterConfig すみません、サーバー設定編集のための spamdbm プログラムを起動できませんでした。
|
||||||
|
|||||||
@@ -1,6 +1,8 @@
|
|||||||
1 belarusian x-vnd.Haiku-SMTP 1052586247
|
1 belarusian x-vnd.Haiku-SMTP 2740407895
|
||||||
SMTP server: ConfigView Сервер SMTP:
|
SMTP server: ConfigView Сервер SMTP:
|
||||||
|
STARTTLS ConfigView STARTTLS
|
||||||
Error while logging in to %serv smtp Памылка падчас лагіну ў %serv
|
Error while logging in to %serv smtp Памылка падчас лагіну ў %serv
|
||||||
|
Unencrypted ConfigView Некрыптаваны
|
||||||
. The server says:\n smtp . Паведамленне сервера:\n
|
. The server says:\n smtp . Паведамленне сервера:\n
|
||||||
ESMTP ConfigView ESMTP
|
ESMTP ConfigView ESMTP
|
||||||
Connecting to server… smtp Далучэнне да сервера…
|
Connecting to server… smtp Далучэнне да сервера…
|
||||||
@@ -10,4 +12,5 @@ Destination: ConfigView Прызначэнне:
|
|||||||
: Connection refused or host not found. smtp : Адмоўлена ў злучэнні ці сервер не знойдзены.
|
: Connection refused or host not found. smtp : Адмоўлена ў злучэнні ці сервер не знойдзены.
|
||||||
None ConfigView Няма
|
None ConfigView Няма
|
||||||
POP3 before SMTP ConfigView POP3 перад SMTP
|
POP3 before SMTP ConfigView POP3 перад SMTP
|
||||||
|
SSL ConfigView SSL
|
||||||
. The server said:\n smtp . Паведамленне сервера:\n
|
. The server said:\n smtp . Паведамленне сервера:\n
|
||||||
|
|||||||
@@ -1,6 +1,8 @@
|
|||||||
1 german x-vnd.Haiku-SMTP 1052586247
|
1 german x-vnd.Haiku-SMTP 2740407895
|
||||||
SMTP server: ConfigView SMTP-Server:
|
SMTP server: ConfigView SMTP-Server:
|
||||||
|
STARTTLS ConfigView STARTTLS
|
||||||
Error while logging in to %serv smtp Fehler beim Anmelden an %serv
|
Error while logging in to %serv smtp Fehler beim Anmelden an %serv
|
||||||
|
Unencrypted ConfigView Unverschlüsselt
|
||||||
. The server says:\n smtp . Servermeldung:\n
|
. The server says:\n smtp . Servermeldung:\n
|
||||||
ESMTP ConfigView ESMTP
|
ESMTP ConfigView ESMTP
|
||||||
Connecting to server… smtp Mit Server verbinden…
|
Connecting to server… smtp Mit Server verbinden…
|
||||||
@@ -10,4 +12,5 @@ Destination: ConfigView Zielverzeichnis:
|
|||||||
: Connection refused or host not found. smtp : Verbindung abgelehnt oder Host nicht gefunden.
|
: Connection refused or host not found. smtp : Verbindung abgelehnt oder Host nicht gefunden.
|
||||||
None ConfigView Keine
|
None ConfigView Keine
|
||||||
POP3 before SMTP ConfigView POP3 vor SMTP
|
POP3 before SMTP ConfigView POP3 vor SMTP
|
||||||
|
SSL ConfigView SSL
|
||||||
. The server said:\n smtp . Servermeldung:\n
|
. The server said:\n smtp . Servermeldung:\n
|
||||||
|
|||||||
@@ -1,6 +1,8 @@
|
|||||||
1 finnish x-vnd.Haiku-SMTP 1052586247
|
1 finnish x-vnd.Haiku-SMTP 2740407895
|
||||||
SMTP server: ConfigView SMTP-palvelin:
|
SMTP server: ConfigView SMTP-palvelin:
|
||||||
|
STARTTLS ConfigView STARTTLS
|
||||||
Error while logging in to %serv smtp Virhe kirjauduttaessa palvelimeen %serv
|
Error while logging in to %serv smtp Virhe kirjauduttaessa palvelimeen %serv
|
||||||
|
Unencrypted ConfigView Salaamaton
|
||||||
. The server says:\n smtp . Palvelin sanoo:\n
|
. The server says:\n smtp . Palvelin sanoo:\n
|
||||||
ESMTP ConfigView ESMTP
|
ESMTP ConfigView ESMTP
|
||||||
Connecting to server… smtp Yhdistetään palvelimeen...
|
Connecting to server… smtp Yhdistetään palvelimeen...
|
||||||
@@ -10,4 +12,5 @@ Destination: ConfigView Kohde:
|
|||||||
: Connection refused or host not found. smtp : Yhteys torjuttiin tai tietokonetta ei löytynyt.
|
: Connection refused or host not found. smtp : Yhteys torjuttiin tai tietokonetta ei löytynyt.
|
||||||
None ConfigView Ei mitään
|
None ConfigView Ei mitään
|
||||||
POP3 before SMTP ConfigView POP3-yhteyskäytäntö ennen SMTP-yhteyskäytäntöä
|
POP3 before SMTP ConfigView POP3-yhteyskäytäntö ennen SMTP-yhteyskäytäntöä
|
||||||
|
SSL ConfigView SSL
|
||||||
. The server said:\n smtp . Palvelin sanoi:\n
|
. The server said:\n smtp . Palvelin sanoi:\n
|
||||||
|
|||||||
@@ -1,5 +1,6 @@
|
|||||||
1 japanese x-vnd.Haiku-SMTP 1052586247
|
1 japanese x-vnd.Haiku-SMTP 1802799722
|
||||||
SMTP server: ConfigView SMTPサーバー:
|
SMTP server: ConfigView SMTPサーバー:
|
||||||
|
STARTTLS ConfigView STARTTLS
|
||||||
Error while logging in to %serv smtp %serv へのログイン中にエラーが発生しました
|
Error while logging in to %serv smtp %serv へのログイン中にエラーが発生しました
|
||||||
. The server says:\n smtp サーバーからのメッセージです\n
|
. The server says:\n smtp サーバーからのメッセージです\n
|
||||||
ESMTP ConfigView ESMTP
|
ESMTP ConfigView ESMTP
|
||||||
@@ -10,4 +11,5 @@ Destination: ConfigView メッセージの保存先:
|
|||||||
: Connection refused or host not found. smtp 接続が拒否されたかサーバーが見つかりません。
|
: Connection refused or host not found. smtp 接続が拒否されたかサーバーが見つかりません。
|
||||||
None ConfigView 無し
|
None ConfigView 無し
|
||||||
POP3 before SMTP ConfigView 送信前に受信する
|
POP3 before SMTP ConfigView 送信前に受信する
|
||||||
|
SSL ConfigView SSL
|
||||||
. The server said:\n smtp サーバーからのメッセージです\n
|
. The server said:\n smtp サーバーからのメッセージです\n
|
||||||
|
|||||||
@@ -1,6 +1,8 @@
|
|||||||
1 dutch; flemish x-vnd.Haiku-SMTP 1052586247
|
1 dutch; flemish x-vnd.Haiku-SMTP 2740407895
|
||||||
SMTP server: ConfigView SMTP server:
|
SMTP server: ConfigView SMTP server:
|
||||||
|
STARTTLS ConfigView STARTTLS
|
||||||
Error while logging in to %serv smtp Fout bij het inloggen in %serv
|
Error while logging in to %serv smtp Fout bij het inloggen in %serv
|
||||||
|
Unencrypted ConfigView Onversleuteld
|
||||||
. The server says:\n smtp . De server zegt:\n
|
. The server says:\n smtp . De server zegt:\n
|
||||||
ESMTP ConfigView ESMTP
|
ESMTP ConfigView ESMTP
|
||||||
Connecting to server… smtp Verbinden met de server...
|
Connecting to server… smtp Verbinden met de server...
|
||||||
@@ -10,4 +12,5 @@ Destination: ConfigView Doel:
|
|||||||
: Connection refused or host not found. smtp : Verbinding afgewezen of host niet gevonden.
|
: Connection refused or host not found. smtp : Verbinding afgewezen of host niet gevonden.
|
||||||
None ConfigView Geen
|
None ConfigView Geen
|
||||||
POP3 before SMTP ConfigView POP3 voor SMTP
|
POP3 before SMTP ConfigView POP3 voor SMTP
|
||||||
|
SSL ConfigView SSL
|
||||||
. The server said:\n smtp . De server zei:\n
|
. The server said:\n smtp . De server zei:\n
|
||||||
|
|||||||
@@ -1,6 +1,8 @@
|
|||||||
1 polish x-vnd.Haiku-SMTP 1052586247
|
1 polish x-vnd.Haiku-SMTP 2740407895
|
||||||
SMTP server: ConfigView Serwer SMTP:
|
SMTP server: ConfigView Serwer SMTP:
|
||||||
|
STARTTLS ConfigView STARTTLS
|
||||||
Error while logging in to %serv smtp Błąd podczas logowania do %serv
|
Error while logging in to %serv smtp Błąd podczas logowania do %serv
|
||||||
|
Unencrypted ConfigView Niezaszyfrowane
|
||||||
. The server says:\n smtp . Serwer mówi:\n
|
. The server says:\n smtp . Serwer mówi:\n
|
||||||
ESMTP ConfigView ESMTP
|
ESMTP ConfigView ESMTP
|
||||||
Connecting to server… smtp Łączenie ze serwerem…
|
Connecting to server… smtp Łączenie ze serwerem…
|
||||||
@@ -10,4 +12,5 @@ Destination: ConfigView Przeznaczenie:
|
|||||||
: Connection refused or host not found. smtp : Połączenie odrzucone lub nie znaleziono hosta.
|
: Connection refused or host not found. smtp : Połączenie odrzucone lub nie znaleziono hosta.
|
||||||
None ConfigView Brak
|
None ConfigView Brak
|
||||||
POP3 before SMTP ConfigView POP3 przed SMTP
|
POP3 before SMTP ConfigView POP3 przed SMTP
|
||||||
|
SSL ConfigView SSL
|
||||||
. The server said:\n smtp . Serwer odpowiedział:\n
|
. The server said:\n smtp . Serwer odpowiedział:\n
|
||||||
|
|||||||
@@ -1,8 +1,9 @@
|
|||||||
1 russian x-vnd.Haiku-TGATranslator 2221210336
|
1 russian x-vnd.Haiku-TGATranslator 4159874267
|
||||||
Targa image (%d bits truecolor) TGATranslator Targa изображение (%d битный истинный цвет)
|
Targa image (%d bits truecolor) TGATranslator Targa изображение (%d битный истинный цвет)
|
||||||
Version %d.%d.%d %s TGAView Версия %d.%d.%d %s
|
Version %d.%d.%d %s TGAView Версия %d.%d.%d %s
|
||||||
Ignore TGA alpha channel TGAView Игнорировать альфа канал TGA
|
Ignore TGA alpha channel TGAView Игнорировать альфа канал TGA
|
||||||
Targa image (%d bits colormap) TGATranslator Targa изображение (%d битная цветовая карта)
|
Targa image (%d bits colormap) TGATranslator Targa изображение (%d битная цветовая карта)
|
||||||
|
TGA Image Translator TGAView Транслятор TGA изображений
|
||||||
Targa image (%d bits RLE colormap) TGATranslator Targa изображение (%d битная цветовая карта RLE)
|
Targa image (%d bits RLE colormap) TGATranslator Targa изображение (%d битная цветовая карта RLE)
|
||||||
Targa image (%d bits gray) TGATranslator Targa изображение (%d битное серое)
|
Targa image (%d bits gray) TGATranslator Targa изображение (%d битное серое)
|
||||||
Written by the Haiku Translation Kit Team TGAView Разработан командой Haiku Translation Kit
|
Written by the Haiku Translation Kit Team TGAView Разработан командой Haiku Translation Kit
|
||||||
|
|||||||
@@ -1,2 +1,3 @@
|
|||||||
1 russian x-vnd.Haiku-WonderBrushTranslator 3131198329
|
1 russian x-vnd.Haiku-WonderBrushTranslator 1203851513
|
||||||
|
WonderBrush image translator WonderBrushTranslator Транслятор WonderBrush изображений
|
||||||
WonderBrush images WonderBrushTranslator WonderBrush изображения
|
WonderBrush images WonderBrushTranslator WonderBrush изображения
|
||||||
|
|||||||
@@ -1,4 +1,4 @@
|
|||||||
1 belarusian x-vnd.Haiku-About 3434348710
|
1 belarusian x-vnd.Haiku-About 519561637
|
||||||
Copyright © 1999-2010 by the authors of Gutenprint. All rights reserved. AboutView Аўтарскае права © 1999-2010 by the authors of Gutenprint. Правы захаваныя.
|
Copyright © 1999-2010 by the authors of Gutenprint. All rights reserved. AboutView Аўтарскае права © 1999-2010 by the authors of Gutenprint. Правы захаваныя.
|
||||||
Travis Geiselbrecht (and his NewOS kernel)\n AboutView Travis Geiselbrecht (асабіста за ядро NewOS)\n
|
Travis Geiselbrecht (and his NewOS kernel)\n AboutView Travis Geiselbrecht (асабіста за ядро NewOS)\n
|
||||||
BSD (4-clause) AboutView BSD (4 часткі)
|
BSD (4-clause) AboutView BSD (4 часткі)
|
||||||
@@ -11,6 +11,7 @@ The Haiku-Ports team\n AboutView Каманда Haiku-Ports\n
|
|||||||
Copyright © 1998-2003 Daniel Veillard. All rights reserved. AboutView Аўтарскае права © 1998-2003 Daniel Veillard. Правы захаваныя.
|
Copyright © 1998-2003 Daniel Veillard. All rights reserved. AboutView Аўтарскае права © 1998-2003 Daniel Veillard. Правы захаваныя.
|
||||||
%d MiB used (%d%%) AboutView %d MiB выкарыстана (%d%%)
|
%d MiB used (%d%%) AboutView %d MiB выкарыстана (%d%%)
|
||||||
Website, marketing & documentation:\n AboutView Web-сайт, маркетынг і дакументацыя:\n
|
Website, marketing & documentation:\n AboutView Web-сайт, маркетынг і дакументацыя:\n
|
||||||
|
GNU LGPL v2.1 AboutView GNU LGPL v2.1
|
||||||
AboutSystem System name Пра Сістэму
|
AboutSystem System name Пра Сістэму
|
||||||
MIT (no promotion) AboutView MIT (без рэкламы)
|
MIT (no promotion) AboutView MIT (без рэкламы)
|
||||||
Copyright © 2003 Peter Hanappe and others. AboutView Аўтарскае права © 2003 Peter Hanappe і іншыя.
|
Copyright © 2003 Peter Hanappe and others. AboutView Аўтарскае права © 2003 Peter Hanappe і іншыя.
|
||||||
@@ -39,6 +40,7 @@ Copyright © 2002-2004 Vivek Mohan. All rights reserved. AboutView Аўтарс
|
|||||||
%.2f GHz AboutView %.2f ГГц
|
%.2f GHz AboutView %.2f ГГц
|
||||||
Memory: AboutView Памяць:
|
Memory: AboutView Памяць:
|
||||||
Copyright © 1996-1997 Jeff Prosise. All rights reserved. AboutView Аўтарскае права © 1996-1997 Jeff Prosise. Правы захаваныя.
|
Copyright © 1996-1997 Jeff Prosise. All rights reserved. AboutView Аўтарскае права © 1996-1997 Jeff Prosise. Правы захаваныя.
|
||||||
|
Copyright © 2006-2012 Kentaro Fukuchi AboutView Copyright © 2006-2012 Kentaro Fukuchi
|
||||||
Copyright © 1994-2009, Thomas G. Lane, Guido Vollbeding. This software is based in part on the work of the Independent JPEG Group. AboutView Аўтарскае права © 1994-2009, Thomas G. Lane, Guido Vollbeding. This software is based in part on the work of the Independent JPEG Group.
|
Copyright © 1994-2009, Thomas G. Lane, Guido Vollbeding. This software is based in part on the work of the Independent JPEG Group. AboutView Аўтарскае права © 1994-2009, Thomas G. Lane, Guido Vollbeding. This software is based in part on the work of the Independent JPEG Group.
|
||||||
Past maintainers:\n AboutView Былыя дагляднікі:\n
|
Past maintainers:\n AboutView Былыя дагляднікі:\n
|
||||||
\n\nSpecial thanks to:\n AboutView \n\nАсабістыя падзякі:\n
|
\n\nSpecial thanks to:\n AboutView \n\nАсабістыя падзякі:\n
|
||||||
|
|||||||
@@ -1,4 +1,4 @@
|
|||||||
1 german x-vnd.Haiku-About 3434348710
|
1 german x-vnd.Haiku-About 519561637
|
||||||
Copyright © 1999-2010 by the authors of Gutenprint. All rights reserved. AboutView Copyright © 1999-2010 durch die Autoren von Gutenprint. Alle Rechte vorbehalten.
|
Copyright © 1999-2010 by the authors of Gutenprint. All rights reserved. AboutView Copyright © 1999-2010 durch die Autoren von Gutenprint. Alle Rechte vorbehalten.
|
||||||
Travis Geiselbrecht (and his NewOS kernel)\n AboutView Travis Geiselbrecht (und seinen NewOS-Kernel)\n
|
Travis Geiselbrecht (and his NewOS kernel)\n AboutView Travis Geiselbrecht (und seinen NewOS-Kernel)\n
|
||||||
BSD (4-clause) AboutView 4-Klausel-BSD
|
BSD (4-clause) AboutView 4-Klausel-BSD
|
||||||
@@ -11,6 +11,7 @@ The Haiku-Ports team\n AboutView Das Haiku-Ports-Team\n
|
|||||||
Copyright © 1998-2003 Daniel Veillard. All rights reserved. AboutView Copyright © 1998-2003 Daniel Veillard. Alle Rechte vorbehalten.
|
Copyright © 1998-2003 Daniel Veillard. All rights reserved. AboutView Copyright © 1998-2003 Daniel Veillard. Alle Rechte vorbehalten.
|
||||||
%d MiB used (%d%%) AboutView %d MiB benutzt (%d%%)
|
%d MiB used (%d%%) AboutView %d MiB benutzt (%d%%)
|
||||||
Website, marketing & documentation:\n AboutView Webseite, Marketing & Dokumentation:\n
|
Website, marketing & documentation:\n AboutView Webseite, Marketing & Dokumentation:\n
|
||||||
|
GNU LGPL v2.1 AboutView GNU LGPL v2.1
|
||||||
AboutSystem System name Über Haiku
|
AboutSystem System name Über Haiku
|
||||||
MIT (no promotion) AboutView MIT (ohne Werbeklausel)
|
MIT (no promotion) AboutView MIT (ohne Werbeklausel)
|
||||||
Copyright © 2003 Peter Hanappe and others. AboutView Copyright © 2003 Peter Hanappe und andere.
|
Copyright © 2003 Peter Hanappe and others. AboutView Copyright © 2003 Peter Hanappe und andere.
|
||||||
@@ -39,6 +40,7 @@ Copyright © 2002-2004 Vivek Mohan. All rights reserved. AboutView Copyright ©
|
|||||||
%.2f GHz AboutView %.2f GHz
|
%.2f GHz AboutView %.2f GHz
|
||||||
Memory: AboutView Arbeitsspeicher:
|
Memory: AboutView Arbeitsspeicher:
|
||||||
Copyright © 1996-1997 Jeff Prosise. All rights reserved. AboutView Copyright © 1996-1997 Jeff Prosise. Alle Rechte vorbehalten.
|
Copyright © 1996-1997 Jeff Prosise. All rights reserved. AboutView Copyright © 1996-1997 Jeff Prosise. Alle Rechte vorbehalten.
|
||||||
|
Copyright © 2006-2012 Kentaro Fukuchi AboutView Copyright © 2006-2012 Kentaro Fukuchi
|
||||||
Copyright © 1994-2009, Thomas G. Lane, Guido Vollbeding. This software is based in part on the work of the Independent JPEG Group. AboutView Copyright © 1994-2009, Thomas G. Lane, Guido Vollbeding. Die Software basiert teilweise auf der Arbeit der Independent JPEG Group.
|
Copyright © 1994-2009, Thomas G. Lane, Guido Vollbeding. This software is based in part on the work of the Independent JPEG Group. AboutView Copyright © 1994-2009, Thomas G. Lane, Guido Vollbeding. Die Software basiert teilweise auf der Arbeit der Independent JPEG Group.
|
||||||
Past maintainers:\n AboutView Ehemalige Betreuer:\n
|
Past maintainers:\n AboutView Ehemalige Betreuer:\n
|
||||||
\n\nSpecial thanks to:\n AboutView \n\nBesonderer Dank an:\n
|
\n\nSpecial thanks to:\n AboutView \n\nBesonderer Dank an:\n
|
||||||
|
|||||||
@@ -1,4 +1,4 @@
|
|||||||
1 japanese x-vnd.Haiku-About 3434348710
|
1 japanese x-vnd.Haiku-About 519561637
|
||||||
Copyright © 1999-2010 by the authors of Gutenprint. All rights reserved. AboutView Copyright © 1999-2010 Gutenprintの著者たち. All rights reserved.
|
Copyright © 1999-2010 by the authors of Gutenprint. All rights reserved. AboutView Copyright © 1999-2010 Gutenprintの著者たち. All rights reserved.
|
||||||
Travis Geiselbrecht (and his NewOS kernel)\n AboutView Travis Geiselbrecht (ならびに彼が開発した NewOS カーネル)\n
|
Travis Geiselbrecht (and his NewOS kernel)\n AboutView Travis Geiselbrecht (ならびに彼が開発した NewOS カーネル)\n
|
||||||
BSD (4-clause) AboutView BSD (4条項)
|
BSD (4-clause) AboutView BSD (4条項)
|
||||||
@@ -11,6 +11,7 @@ The Haiku-Ports team\n AboutView Haiku-Ports チーム\n
|
|||||||
Copyright © 1998-2003 Daniel Veillard. All rights reserved. AboutView Copyright © 1998-2003 Daniel Veillard. All rights reserved.
|
Copyright © 1998-2003 Daniel Veillard. All rights reserved. AboutView Copyright © 1998-2003 Daniel Veillard. All rights reserved.
|
||||||
%d MiB used (%d%%) AboutView %d MiB 使用中 (%d%%)
|
%d MiB used (%d%%) AboutView %d MiB 使用中 (%d%%)
|
||||||
Website, marketing & documentation:\n AboutView ウェブサイト、広報 & ドキュメント:\n
|
Website, marketing & documentation:\n AboutView ウェブサイト、広報 & ドキュメント:\n
|
||||||
|
GNU LGPL v2.1 AboutView GNU LGPL v2.1
|
||||||
AboutSystem System name このシステムについて
|
AboutSystem System name このシステムについて
|
||||||
MIT (no promotion) AboutView MIT (非商用利用)
|
MIT (no promotion) AboutView MIT (非商用利用)
|
||||||
Copyright © 2003 Peter Hanappe and others. AboutView Copyright © 2003 Peter Hanappe他.
|
Copyright © 2003 Peter Hanappe and others. AboutView Copyright © 2003 Peter Hanappe他.
|
||||||
@@ -39,6 +40,7 @@ Copyright © 2002-2004 Vivek Mohan. All rights reserved. AboutView Copyright ©
|
|||||||
%.2f GHz AboutView %.2f GHz
|
%.2f GHz AboutView %.2f GHz
|
||||||
Memory: AboutView メモリー:
|
Memory: AboutView メモリー:
|
||||||
Copyright © 1996-1997 Jeff Prosise. All rights reserved. AboutView Copyright © 1996-1997 Jeff Prosise. All rights reserved.
|
Copyright © 1996-1997 Jeff Prosise. All rights reserved. AboutView Copyright © 1996-1997 Jeff Prosise. All rights reserved.
|
||||||
|
Copyright © 2006-2012 Kentaro Fukuchi AboutView Copyright © 2006-2012 Kentaro Fukuchi
|
||||||
Copyright © 1994-2009, Thomas G. Lane, Guido Vollbeding. This software is based in part on the work of the Independent JPEG Group. AboutView Copyright © 1994-2009, Thomas G. Lane, Guido Vollbeding. このソフトウェアの一部はIndependent JPEG Groupの著作物に基づいています.
|
Copyright © 1994-2009, Thomas G. Lane, Guido Vollbeding. This software is based in part on the work of the Independent JPEG Group. AboutView Copyright © 1994-2009, Thomas G. Lane, Guido Vollbeding. このソフトウェアの一部はIndependent JPEG Groupの著作物に基づいています.
|
||||||
Past maintainers:\n AboutView 過去のメンテナー\n
|
Past maintainers:\n AboutView 過去のメンテナー\n
|
||||||
\n\nSpecial thanks to:\n AboutView \n\n下記の協力者の方々に深く感謝します:\n
|
\n\nSpecial thanks to:\n AboutView \n\n下記の協力者の方々に深く感謝します:\n
|
||||||
|
|||||||
@@ -1,4 +1,5 @@
|
|||||||
1 russian x-vnd.Haiku-About 2392344107
|
1 russian x-vnd.Haiku-About 4105576244
|
||||||
|
Copyright © 1999-2010 by the authors of Gutenprint. All rights reserved. AboutView Все права защищены © 1999-2010 Авторы Gutenprint.
|
||||||
Travis Geiselbrecht (and his NewOS kernel)\n AboutView Travis Geiselbrecht (за его ядро NewOS)\n
|
Travis Geiselbrecht (and his NewOS kernel)\n AboutView Travis Geiselbrecht (за его ядро NewOS)\n
|
||||||
BSD (4-clause) AboutView 4-пунктовая BSD
|
BSD (4-clause) AboutView 4-пунктовая BSD
|
||||||
%ld Processors: AboutView Процессоров: %ld
|
%ld Processors: AboutView Процессоров: %ld
|
||||||
@@ -37,7 +38,9 @@ Copyright © 2002-2003 Steve Lhomme. All rights reserved. AboutView Все пр
|
|||||||
\nCopyrights\n\n AboutView \nАвторские права\n\n
|
\nCopyrights\n\n AboutView \nАвторские права\n\n
|
||||||
Current maintainers:\n AboutView Текущие разработчики:\n
|
Current maintainers:\n AboutView Текущие разработчики:\n
|
||||||
Time running: AboutView Время работы:
|
Time running: AboutView Время работы:
|
||||||
|
Contains software from the FreeBSD Project, released under the BSD license:\ncal, ftpd, ping, telnet, telnetd, traceroute\nCopyright © 1994-2008 The FreeBSD Project. All rights reserved. AboutView Содержит программное обеспечение из проекта FreeBSD, выпущен под лицензией BSD:\ncal, ftpd, ping, telnet, telnetd, tracerout\nВсе права защищены © 1994-2008 Проект FreeBSD.
|
||||||
The Haikuware team and their bounty program\n AboutView Команде Haikuware и их программе пожертвований\n
|
The Haikuware team and their bounty program\n AboutView Команде Haikuware и их программе пожертвований\n
|
||||||
|
Copyright © 2010-2011 Google Inc. All rights reserved. AboutView Все права защищены © 2010-2011 Google Inc.
|
||||||
About this system AboutWindow Об этой системе
|
About this system AboutWindow Об этой системе
|
||||||
Version: AboutView Версия:
|
Version: AboutView Версия:
|
||||||
Copyright © 1994-2008 Xiph.Org. All rights reserved. AboutView Все права защищены © 1994-2008 Xiph.Org.
|
Copyright © 1994-2008 Xiph.Org. All rights reserved. AboutView Все права защищены © 1994-2008 Xiph.Org.
|
||||||
|
|||||||
@@ -1,9 +1,11 @@
|
|||||||
1 belarusian x-vnd.Be-TSKB 359782181
|
1 belarusian x-vnd.Be-TSKB 3197510812
|
||||||
Power off DeskbarMenu Выключыць
|
Power off DeskbarMenu Выключыць
|
||||||
Show day of week PreferencesWindow Паказваць дзень тыдню
|
Show day of week PreferencesWindow Паказваць дзень тыдню
|
||||||
Edit menu… PreferencesWindow Змяніць меню...
|
Edit menu… PreferencesWindow Змяніць меню...
|
||||||
|
Suspend DeskbarMenu Прыпыніць
|
||||||
Applications PreferencesWindow Праграмы
|
Applications PreferencesWindow Праграмы
|
||||||
Time preferences… TimeView Наладкі Часу…
|
Time preferences… TimeView Наладкі Часу…
|
||||||
|
About Haiku DeskbarMenu Пра Haiku
|
||||||
Recent documents: PreferencesWindow Нядаўнія дакументы:
|
Recent documents: PreferencesWindow Нядаўнія дакументы:
|
||||||
Recent applications DeskbarMenu Нядаўнія праграмы
|
Recent applications DeskbarMenu Нядаўнія праграмы
|
||||||
Sort running applications PreferencesWindow Сартыравать запушчаныя праграмы
|
Sort running applications PreferencesWindow Сартыравать запушчаныя праграмы
|
||||||
|
|||||||
@@ -1,9 +1,11 @@
|
|||||||
1 german x-vnd.Be-TSKB 359782181
|
1 german x-vnd.Be-TSKB 3197510812
|
||||||
Power off DeskbarMenu Ausschalten
|
Power off DeskbarMenu Ausschalten
|
||||||
Show day of week PreferencesWindow Wochentag anzeigen
|
Show day of week PreferencesWindow Wochentag anzeigen
|
||||||
Edit menu… PreferencesWindow Menü bearbeiten…
|
Edit menu… PreferencesWindow Menü bearbeiten…
|
||||||
|
Suspend DeskbarMenu Ruhezustand
|
||||||
Applications PreferencesWindow Anwendungen
|
Applications PreferencesWindow Anwendungen
|
||||||
Time preferences… TimeView Datum & Zeit Einstellungen…
|
Time preferences… TimeView Datum & Zeit Einstellungen…
|
||||||
|
About Haiku DeskbarMenu Über Haiku
|
||||||
Recent documents: PreferencesWindow Letzte Dokumente:
|
Recent documents: PreferencesWindow Letzte Dokumente:
|
||||||
Recent applications DeskbarMenu Letzte Anwendungen
|
Recent applications DeskbarMenu Letzte Anwendungen
|
||||||
Sort running applications PreferencesWindow Laufende Anwendungen sortieren
|
Sort running applications PreferencesWindow Laufende Anwendungen sortieren
|
||||||
|
|||||||
@@ -1,9 +1,11 @@
|
|||||||
1 finnish x-vnd.Be-TSKB 359782181
|
1 finnish x-vnd.Be-TSKB 3197510812
|
||||||
Power off DeskbarMenu Sammuta virta
|
Power off DeskbarMenu Sammuta virta
|
||||||
Show day of week PreferencesWindow Näytä viikonpäivä
|
Show day of week PreferencesWindow Näytä viikonpäivä
|
||||||
Edit menu… PreferencesWindow Muokkaa valikkoa...
|
Edit menu… PreferencesWindow Muokkaa valikkoa...
|
||||||
|
Suspend DeskbarMenu Keskeytystila
|
||||||
Applications PreferencesWindow Sovellukset
|
Applications PreferencesWindow Sovellukset
|
||||||
Time preferences… TimeView Aika-asetukset...
|
Time preferences… TimeView Aika-asetukset...
|
||||||
|
About Haiku DeskbarMenu Haikusta
|
||||||
Recent documents: PreferencesWindow Äskettäiset asiakirjat:
|
Recent documents: PreferencesWindow Äskettäiset asiakirjat:
|
||||||
Recent applications DeskbarMenu Äskettäiset sovellukset
|
Recent applications DeskbarMenu Äskettäiset sovellukset
|
||||||
Sort running applications PreferencesWindow Lajittele suoritettavat sovellukset
|
Sort running applications PreferencesWindow Lajittele suoritettavat sovellukset
|
||||||
|
|||||||
@@ -1,9 +1,11 @@
|
|||||||
1 japanese x-vnd.Be-TSKB 359782181
|
1 japanese x-vnd.Be-TSKB 3197510812
|
||||||
Power off DeskbarMenu 電源を切る
|
Power off DeskbarMenu 電源を切る
|
||||||
Show day of week PreferencesWindow 曜日を表示する
|
Show day of week PreferencesWindow 曜日を表示する
|
||||||
Edit menu… PreferencesWindow メニューの編集…
|
Edit menu… PreferencesWindow メニューの編集…
|
||||||
|
Suspend DeskbarMenu サスペンド
|
||||||
Applications PreferencesWindow アプリケーション
|
Applications PreferencesWindow アプリケーション
|
||||||
Time preferences… TimeView 日付と時刻の設定…
|
Time preferences… TimeView 日付と時刻の設定…
|
||||||
|
About Haiku DeskbarMenu Haiku について
|
||||||
Recent documents: PreferencesWindow 最近使ったドキュメント
|
Recent documents: PreferencesWindow 最近使ったドキュメント
|
||||||
Recent applications DeskbarMenu 最近使ったアプリケーション
|
Recent applications DeskbarMenu 最近使ったアプリケーション
|
||||||
Sort running applications PreferencesWindow 実行中のアプリケーションを名前順に並び換える
|
Sort running applications PreferencesWindow 実行中のアプリケーションを名前順に並び換える
|
||||||
|
|||||||
@@ -1,9 +1,10 @@
|
|||||||
1 polish x-vnd.Be-TSKB 359782181
|
1 polish x-vnd.Be-TSKB 3726855474
|
||||||
Power off DeskbarMenu Wyłącz komputer
|
Power off DeskbarMenu Wyłącz komputer
|
||||||
Show day of week PreferencesWindow Pokaż dzień tygodnia
|
Show day of week PreferencesWindow Pokaż dzień tygodnia
|
||||||
Edit menu… PreferencesWindow Edytuj zawartość menu…
|
Edit menu… PreferencesWindow Edytuj zawartość menu…
|
||||||
Applications PreferencesWindow Lista aplikacji
|
Applications PreferencesWindow Lista aplikacji
|
||||||
Time preferences… TimeView Ustawienia czasu...
|
Time preferences… TimeView Ustawienia czasu...
|
||||||
|
About Haiku DeskbarMenu O Haiku
|
||||||
Recent documents: PreferencesWindow Ostatnio przeglądane dokumenty:
|
Recent documents: PreferencesWindow Ostatnio przeglądane dokumenty:
|
||||||
Recent applications DeskbarMenu Ostatnio uruchomione aplikacje
|
Recent applications DeskbarMenu Ostatnio uruchomione aplikacje
|
||||||
Sort running applications PreferencesWindow Sortuj uruchomione aplikacje alfabetycznie
|
Sort running applications PreferencesWindow Sortuj uruchomione aplikacje alfabetycznie
|
||||||
|
|||||||
@@ -1,29 +1,52 @@
|
|||||||
1 russian x-vnd.Be-TSKB 1193384805
|
1 russian x-vnd.Be-TSKB 3197510812
|
||||||
|
Power off DeskbarMenu Выключить компьютер
|
||||||
|
Show day of week PreferencesWindow Отображать день недели
|
||||||
Edit menu… PreferencesWindow Изменить меню…
|
Edit menu… PreferencesWindow Изменить меню…
|
||||||
|
Suspend DeskbarMenu Приостановить
|
||||||
Applications PreferencesWindow Приложения
|
Applications PreferencesWindow Приложения
|
||||||
|
Time preferences… TimeView Настроить часы…
|
||||||
|
About Haiku DeskbarMenu О системе Haiku
|
||||||
Recent documents: PreferencesWindow Недавние документы:
|
Recent documents: PreferencesWindow Недавние документы:
|
||||||
|
Recent applications DeskbarMenu Недавние приложения:
|
||||||
Sort running applications PreferencesWindow Сортировать запущенные приложения
|
Sort running applications PreferencesWindow Сортировать запущенные приложения
|
||||||
|
Show time Tray Отображать время
|
||||||
Applications B_USER_DESKBAR_DIRECTORY/Applications Приложения
|
Applications B_USER_DESKBAR_DIRECTORY/Applications Приложения
|
||||||
|
Find… DeskbarMenu Найти…
|
||||||
Window PreferencesWindow Окно
|
Window PreferencesWindow Окно
|
||||||
Menu PreferencesWindow Меню
|
Menu PreferencesWindow Меню
|
||||||
|
Recent documents DeskbarMenu Недавние документы
|
||||||
|
Show seconds PreferencesWindow Отображать секунды
|
||||||
Auto-hide PreferencesWindow Скрывать автоматически
|
Auto-hide PreferencesWindow Скрывать автоматически
|
||||||
Always on top PreferencesWindow Всегда сверху
|
Always on top PreferencesWindow Всегда сверху
|
||||||
|
<Deskbar folder is empty> DeskbarMenu <Папка Deskbar пуста>
|
||||||
Show all WindowMenu Показать все
|
Show all WindowMenu Показать все
|
||||||
No windows WindowMenu Нет окон
|
No windows WindowMenu Нет окон
|
||||||
Deskbar System name Deskbar
|
Deskbar System name Deskbar
|
||||||
|
Restart system DeskbarMenu Перезагрузить компьютер
|
||||||
|
Large PreferencesWindow Крупные
|
||||||
Auto-raise PreferencesWindow Всплывать при наведении
|
Auto-raise PreferencesWindow Всплывать при наведении
|
||||||
Hide time TimeView Скрыть часы
|
Hide time TimeView Скрыть часы
|
||||||
Recent folders: PreferencesWindow Недавние папки:
|
Recent folders: PreferencesWindow Недавние папки:
|
||||||
Show application expander PreferencesWindow Отображать список окон приложений
|
Show application expander PreferencesWindow Отображать список окон приложений
|
||||||
|
Restart Tracker DeskbarMenu Перезапустить Tracker
|
||||||
Close all WindowMenu Закрыть все
|
Close all WindowMenu Закрыть все
|
||||||
Deskbar preferences PreferencesWindow Настройки Deskbar
|
Deskbar preferences PreferencesWindow Настройки Deskbar
|
||||||
|
Mount DeskbarMenu Подключить
|
||||||
|
Small PreferencesWindow Маленькие
|
||||||
Recent applications: PreferencesWindow Недавние приложения:
|
Recent applications: PreferencesWindow Недавние приложения:
|
||||||
|
Shutdown… DeskbarMenu Завершение работы…
|
||||||
Tracker always first PreferencesWindow Tracker всегда первый
|
Tracker always first PreferencesWindow Tracker всегда первый
|
||||||
Preferences B_USER_DESKBAR_DIRECTORY/Preferences Настройки
|
Preferences B_USER_DESKBAR_DIRECTORY/Preferences Настройки
|
||||||
|
Recent folders DeskbarMenu Недавние папки
|
||||||
|
About this system DeskbarMenu Об этой системе
|
||||||
Show calendar… TimeView Показать календарь…
|
Show calendar… TimeView Показать календарь…
|
||||||
|
Deskbar preferences… DeskbarMenu Настроить Deskbar…
|
||||||
Expand new applications PreferencesWindow Раскрывать список окон при запуске
|
Expand new applications PreferencesWindow Раскрывать список окон при запуске
|
||||||
|
Show replicants DeskbarMenu Отображать репликанты
|
||||||
|
Hide application names PreferencesWindow Скрыть имена приложений
|
||||||
Clock PreferencesWindow Часы
|
Clock PreferencesWindow Часы
|
||||||
Demos B_USER_DESKBAR_DIRECTORY/Demos Демо
|
Demos B_USER_DESKBAR_DIRECTORY/Demos Демо
|
||||||
|
Icon size PreferencesWindow Размер значков
|
||||||
Desktop applets B_USER_DESKBAR_DIRECTORY/Desktop applets Апплеты
|
Desktop applets B_USER_DESKBAR_DIRECTORY/Desktop applets Апплеты
|
||||||
Hide all WindowMenu Скрыть все
|
Hide all WindowMenu Скрыть все
|
||||||
Quit application WindowMenu Закрыть приложение
|
Quit application WindowMenu Закрыть приложение
|
||||||
|
|||||||
@@ -1,4 +1,7 @@
|
|||||||
1 russian x-vnd.Haiku-DeskCalc 2021462472
|
1 russian x-vnd.Haiku-DeskCalc 1916192649
|
||||||
|
Compact CalcView Компактный
|
||||||
|
Scientific CalcView Научный
|
||||||
DeskCalc System name Калькулятор
|
DeskCalc System name Калькулятор
|
||||||
|
Basic CalcView Простой
|
||||||
Enable Num Lock on startup CalcView Включать Num Lock при запуске
|
Enable Num Lock on startup CalcView Включать Num Lock при запуске
|
||||||
Audio Feedback CalcView Звуковая реакция
|
Audio Feedback CalcView Звуковая реакция
|
||||||
|
|||||||
@@ -1,4 +1,4 @@
|
|||||||
1 russian x-vnd.Haiku-Devices 2473502333
|
1 russian x-vnd.Haiku-Devices 865240481
|
||||||
Manufacturer DeviceSCSI Производитель
|
Manufacturer DeviceSCSI Производитель
|
||||||
Order by: DevicesView Сортировать по:
|
Order by: DevicesView Сортировать по:
|
||||||
ACPI controller Device Контроллер ACPI
|
ACPI controller Device Контроллер ACPI
|
||||||
@@ -13,6 +13,7 @@ Computer Device Компьютер
|
|||||||
Unknown device Device Неизвестное устройство
|
Unknown device Device Неизвестное устройство
|
||||||
Class Info:\t\t\t\t: %classInfo% DeviceACPI Информация о классе:\t\t\t\t: %classInfo%
|
Class Info:\t\t\t\t: %classInfo% DeviceACPI Информация о классе:\t\t\t\t: %classInfo%
|
||||||
Processor DeviceSCSI Процессор
|
Processor DeviceSCSI Процессор
|
||||||
|
RBC DeviceSCSI RBC
|
||||||
Detailed DevicesView Подробности
|
Detailed DevicesView Подробности
|
||||||
Category DevicesView категориям
|
Category DevicesView категориям
|
||||||
Quit DevicesView Выход
|
Quit DevicesView Выход
|
||||||
@@ -53,8 +54,10 @@ Basic information DevicesView Основная информация
|
|||||||
PCI Information DevicePCI PCI информация
|
PCI Information DevicePCI PCI информация
|
||||||
Manufacturer: Device Производитель:
|
Manufacturer: Device Производитель:
|
||||||
ACPI bus DevicesView Шина ACPI
|
ACPI bus DevicesView Шина ACPI
|
||||||
|
Changer DeviceSCSI Changer
|
||||||
ACPI System Bus DeviceACPI Системная шина ACPI
|
ACPI System Bus DeviceACPI Системная шина ACPI
|
||||||
Devices System name Устройства
|
Devices System name Устройства
|
||||||
|
Worm DeviceSCSI Worm
|
||||||
Multimedia controller Device Мультимедийный контроллер
|
Multimedia controller Device Мультимедийный контроллер
|
||||||
Unknown DevicePCI Неизвестное
|
Unknown DevicePCI Неизвестное
|
||||||
Device name: Device Название устройства:
|
Device name: Device Название устройства:
|
||||||
@@ -73,6 +76,7 @@ Manufacturer DevicePCI Производитель
|
|||||||
Intelligent controller Device Интеллектуальный контроллер
|
Intelligent controller Device Интеллектуальный контроллер
|
||||||
Satellite communications controller Device Контроллер спутниковой связи
|
Satellite communications controller Device Контроллер спутниковой связи
|
||||||
SCSI Information DeviceSCSI SCSI информация
|
SCSI Information DeviceSCSI SCSI информация
|
||||||
|
Enclosure DeviceSCSI Enclosure
|
||||||
Array DeviceSCSI Массив
|
Array DeviceSCSI Массив
|
||||||
Bridge Device Мост
|
Bridge Device Мост
|
||||||
Refresh devices DevicesView Обновить список устройств
|
Refresh devices DevicesView Обновить список устройств
|
||||||
|
|||||||
@@ -1,4 +1,4 @@
|
|||||||
1 japanese x-vnd.Haiku-DiskProbe 559191070
|
1 japanese x-vnd.Haiku-DiskProbe 969240855
|
||||||
File offset: ProbeView ファイルオフセット:
|
File offset: ProbeView ファイルオフセット:
|
||||||
%ld (native) ProbeView %ld (ネイティブ)
|
%ld (native) ProbeView %ld (ネイティブ)
|
||||||
64 bit unsigned value: TypeEditors 符号なし 64 ビット値:
|
64 bit unsigned value: TypeEditors 符号なし 64 ビット値:
|
||||||
@@ -121,6 +121,8 @@ View ProbeView This is the last menubar item 'File Edit Block View' 表示
|
|||||||
Redo ProbeView やり直し
|
Redo ProbeView やり直し
|
||||||
File: ProbeView ファイル:
|
File: ProbeView ファイル:
|
||||||
32 bit unsigned pointer: TypeEditors 符号なし 32 ビットポインタ:
|
32 bit unsigned pointer: TypeEditors 符号なし 32 ビットポインタ:
|
||||||
|
Writing to the file failed:\n%s\n\nAll changes will be lost when you quit. ProbeView ファイルの書き込みに失敗しました:\n%s\n\nすべての変更は終了時に失われます。
|
||||||
|
32 bit TypeEditors 32 ビット
|
||||||
Cancel ProbeView 中止
|
Cancel ProbeView 中止
|
||||||
Grayscale TypeEditors グレースケール
|
Grayscale TypeEditors グレースケール
|
||||||
32 bit signed value: TypeEditors 符号つき 32 ビット値:
|
32 bit signed value: TypeEditors 符号つき 32 ビット値:
|
||||||
|
|||||||
@@ -1,4 +1,4 @@
|
|||||||
1 russian x-vnd.Haiku-DiskProbe 2706202187
|
1 russian x-vnd.Haiku-DiskProbe 2306672993
|
||||||
File offset: ProbeView Смещение файла:
|
File offset: ProbeView Смещение файла:
|
||||||
%ld (native) ProbeView %ld (родной)
|
%ld (native) ProbeView %ld (родной)
|
||||||
64 bit unsigned value: TypeEditors 64-х битное беззнаковое значение:
|
64 bit unsigned value: TypeEditors 64-х битное беззнаковое значение:
|
||||||
@@ -59,6 +59,7 @@ Boolean value: TypeEditors Булевое значение:
|
|||||||
8 bit palette TypeEditors 8 битная палитра
|
8 bit palette TypeEditors 8 битная палитра
|
||||||
Fit ProbeView Size of fonts, fits to available room Подгонять
|
Fit ProbeView Size of fonts, fits to available room Подгонять
|
||||||
Probe device OpenWindow Исследовать устройство
|
Probe device OpenWindow Исследовать устройство
|
||||||
|
(native) ProbeView (родной)
|
||||||
Unknown format TypeEditors Неизвестный формат
|
Unknown format TypeEditors Неизвестный формат
|
||||||
Hexadecimal FindWindow A menu item, as short as possible, noun is recommended if it is shorter than adjective. Шестнадцатеричный
|
Hexadecimal FindWindow A menu item, as short as possible, noun is recommended if it is shorter than adjective. Шестнадцатеричный
|
||||||
MIME type: TypeEditors MIME тип:
|
MIME type: TypeEditors MIME тип:
|
||||||
|
|||||||
@@ -1,4 +1,4 @@
|
|||||||
1 russian x-vnd.Haiku-DiskUsage 3634416251
|
1 russian x-vnd.Haiku-DiskUsage 3399777733
|
||||||
Scanning %refName% Scanner Сканируется раздел %refName%
|
Scanning %refName% Scanner Сканируется раздел %refName%
|
||||||
Size Info Window Размер
|
Size Info Window Размер
|
||||||
Rescan Pie View Пересканировать
|
Rescan Pie View Пересканировать
|
||||||
@@ -14,6 +14,7 @@ Scan Status View Сканировать
|
|||||||
file unavailable Status View файл недоступен
|
file unavailable Status View файл недоступен
|
||||||
Get Info Pie View Информация
|
Get Info Pie View Информация
|
||||||
DiskUsage System name Использование диска
|
DiskUsage System name Использование диска
|
||||||
|
in %d files Info Window в %d файлах
|
||||||
%d files Status View %d файлов
|
%d files Status View %d файлов
|
||||||
Created Info Window Создан
|
Created Info Window Создан
|
||||||
Modified Info Window Изменен
|
Modified Info Window Изменен
|
||||||
|
|||||||
@@ -1,4 +1,4 @@
|
|||||||
1 russian x-vnd.Haiku-Expander 386826896
|
1 russian x-vnd.Haiku-Expander 2398100010
|
||||||
Expand ExpanderMenu Распаковать
|
Expand ExpanderMenu Распаковать
|
||||||
Close window when done expanding ExpanderPreferences Закрывать окно после распаковки
|
Close window when done expanding ExpanderPreferences Закрывать окно после распаковки
|
||||||
Set destination… ExpanderMenu Путь для извлечения…
|
Set destination… ExpanderMenu Путь для извлечения…
|
||||||
@@ -6,6 +6,7 @@ Use: ExpanderPreferences Использовать:
|
|||||||
File expanded ExpanderWindow Файл распакован
|
File expanded ExpanderWindow Файл распакован
|
||||||
The destination is read only. ExpanderWindow Путь назначения доступен только для чтения.
|
The destination is read only. ExpanderWindow Путь назначения доступен только для чтения.
|
||||||
Expander: Open ExpanderWindow Распаковщик: Открыть
|
Expander: Open ExpanderWindow Распаковщик: Открыть
|
||||||
|
is not supported ExpanderWindow не поддерживается
|
||||||
Expander settings ExpanderPreferences Настройки извлечения
|
Expander settings ExpanderPreferences Настройки извлечения
|
||||||
Select current DirectoryFilePanel Выбрать текущий
|
Select current DirectoryFilePanel Выбрать текущий
|
||||||
Source ExpanderWindow Источник
|
Source ExpanderWindow Источник
|
||||||
@@ -15,8 +16,11 @@ Cancel ExpanderWindow Отмена
|
|||||||
Automatically expand files ExpanderPreferences Автоматически распаковывать файлы
|
Automatically expand files ExpanderPreferences Автоматически распаковывать файлы
|
||||||
Creating listing for '%s' ExpanderWindow Создается список файлов для '%s'
|
Creating listing for '%s' ExpanderWindow Создается список файлов для '%s'
|
||||||
Continue ExpanderWindow Продолжить
|
Continue ExpanderWindow Продолжить
|
||||||
|
Destination folder ExpanderPreferences Путь для извлечения
|
||||||
The destination folder does not exist. ExpanderWindow Папка назначения не существует.
|
The destination folder does not exist. ExpanderWindow Папка назначения не существует.
|
||||||
|
Other ExpanderPreferences Другое
|
||||||
Cancel ExpanderPreferences Отмена
|
Cancel ExpanderPreferences Отмена
|
||||||
|
Expansion ExpanderPreferences Извлечение
|
||||||
Are you sure you want to stop expanding this\narchive? The expanded items may not be complete. ExpanderWindow Вы уверены, что хотите остановить распаковку этого\nархива? Некоторые файлы могли быть извлечены не полностью.
|
Are you sure you want to stop expanding this\narchive? The expanded items may not be complete. ExpanderWindow Вы уверены, что хотите остановить распаковку этого\nархива? Некоторые файлы могли быть извлечены не полностью.
|
||||||
Select DirectoryFilePanel Выбрать
|
Select DirectoryFilePanel Выбрать
|
||||||
Same directory as source (archive) file ExpanderPreferences Использовать ту же папку где находится архив
|
Same directory as source (archive) file ExpanderPreferences Использовать ту же папку где находится архив
|
||||||
|
|||||||
@@ -0,0 +1,22 @@
|
|||||||
|
1 russian x-vnd.Haiku-FontDemo 1769653414
|
||||||
|
Outline: ControlView Контур:
|
||||||
|
Size: 50 ControlView Размер: 50
|
||||||
|
Stop cycling ControlView Остановить цикл
|
||||||
|
Shear: 90 ControlView Shear: 90
|
||||||
|
Spacing: 0 ControlView Интервал: 0
|
||||||
|
Haiku, Inc. FontDemoView Haiku, Inc.
|
||||||
|
Rotation: %d ControlView Поворот: %d
|
||||||
|
Shear: %d ControlView Сдвиг: %d
|
||||||
|
Spacing: %d ControlView Интервал: %d
|
||||||
|
Cycle fonts ControlView Циклрировать шрифты
|
||||||
|
Font: ControlView Шрифт:
|
||||||
|
Rotation: 0 ControlView Поворот: 0
|
||||||
|
Drawing mode: ControlView Режим отрисовки:
|
||||||
|
FontDemo FontDemo ШрифтДемо
|
||||||
|
Haiku, Inc. ControlView Haiku, Inc.
|
||||||
|
Controls FontDemo Управление
|
||||||
|
Outline: %d ControlView Контур: %d
|
||||||
|
Text: ControlView Текст:
|
||||||
|
Antialiased text ControlView Сглаженный текст
|
||||||
|
Bounding boxes ControlView Ограничивающий параллелепипед
|
||||||
|
Size: %d ControlView Размер: %d
|
||||||
@@ -1,4 +1,4 @@
|
|||||||
1 belarusian x-vnd.haiku-icon_o_matic 3736361491
|
1 belarusian x-vnd.haiku-icon_o_matic 4233739176
|
||||||
Select All Icon-O-Matic-PathManipulator Выбраць Усё
|
Select All Icon-O-Matic-PathManipulator Выбраць Усё
|
||||||
Add Style Icon-O-Matic-AddStylesCmd Дадаць Стыль
|
Add Style Icon-O-Matic-AddStylesCmd Дадаць Стыль
|
||||||
Color (#%02x%02x%02x) Style name after dropping a color Колер (#%02x%02x%02x)
|
Color (#%02x%02x%02x) Style name after dropping a color Колер (#%02x%02x%02x)
|
||||||
@@ -117,6 +117,7 @@ Gradient Icon-O-Matic-StyleTypes Градыентны
|
|||||||
Min LOD Icon-O-Matic-PropertyNames Мін. LOD
|
Min LOD Icon-O-Matic-PropertyNames Мін. LOD
|
||||||
BEOS:ICON Attribute Icon-O-Matic-SavePanel Атрыбут BEOS:ICON
|
BEOS:ICON Attribute Icon-O-Matic-SavePanel Атрыбут BEOS:ICON
|
||||||
Invert selection Icon-O-Matic-Properties Інвертаваць выдзяленне
|
Invert selection Icon-O-Matic-Properties Інвертаваць выдзяленне
|
||||||
|
Drop shapes Icon-O-Matic-ShapesList Падаючыя формы
|
||||||
Export as… Icon-O-Matic-Menu-File Экспартаваць як...
|
Export as… Icon-O-Matic-Menu-File Экспартаваць як...
|
||||||
Transformation Transformation Трансфармацыя
|
Transformation Transformation Трансфармацыя
|
||||||
Click on an object in Empty property list - 1st line Клікніце па аб'екце у
|
Click on an object in Empty property list - 1st line Клікніце па аб'екце у
|
||||||
|
|||||||
@@ -1,4 +1,4 @@
|
|||||||
1 german x-vnd.haiku-icon_o_matic 3736361491
|
1 german x-vnd.haiku-icon_o_matic 4233739176
|
||||||
Select All Icon-O-Matic-PathManipulator Alles auswählen
|
Select All Icon-O-Matic-PathManipulator Alles auswählen
|
||||||
Add Style Icon-O-Matic-AddStylesCmd Stil hinzufügen
|
Add Style Icon-O-Matic-AddStylesCmd Stil hinzufügen
|
||||||
Color (#%02x%02x%02x) Style name after dropping a color Farbe (#%02x%02x%02x)
|
Color (#%02x%02x%02x) Style name after dropping a color Farbe (#%02x%02x%02x)
|
||||||
@@ -117,6 +117,7 @@ Gradient Icon-O-Matic-StyleTypes Farbverlauf
|
|||||||
Min LOD Icon-O-Matic-PropertyNames Min. LOD
|
Min LOD Icon-O-Matic-PropertyNames Min. LOD
|
||||||
BEOS:ICON Attribute Icon-O-Matic-SavePanel BEOS:ICON Attribut
|
BEOS:ICON Attribute Icon-O-Matic-SavePanel BEOS:ICON Attribut
|
||||||
Invert selection Icon-O-Matic-Properties Auswahl umkehren
|
Invert selection Icon-O-Matic-Properties Auswahl umkehren
|
||||||
|
Drop shapes Icon-O-Matic-ShapesList Formen ablegen
|
||||||
Export as… Icon-O-Matic-Menu-File Exportieren als…
|
Export as… Icon-O-Matic-Menu-File Exportieren als…
|
||||||
Transformation Transformation Transformation
|
Transformation Transformation Transformation
|
||||||
Click on an object in Empty property list - 1st line Auf ein Objekt klicken in
|
Click on an object in Empty property list - 1st line Auf ein Objekt klicken in
|
||||||
|
|||||||
@@ -1,4 +1,4 @@
|
|||||||
1 finnish x-vnd.haiku-icon_o_matic 3736361491
|
1 finnish x-vnd.haiku-icon_o_matic 4233739176
|
||||||
Select All Icon-O-Matic-PathManipulator Valitse kaikki
|
Select All Icon-O-Matic-PathManipulator Valitse kaikki
|
||||||
Add Style Icon-O-Matic-AddStylesCmd Lisää tyyli
|
Add Style Icon-O-Matic-AddStylesCmd Lisää tyyli
|
||||||
Color (#%02x%02x%02x) Style name after dropping a color Väri (#%02x%02x%02x)
|
Color (#%02x%02x%02x) Style name after dropping a color Väri (#%02x%02x%02x)
|
||||||
@@ -117,6 +117,7 @@ Gradient Icon-O-Matic-StyleTypes Kaltevuus
|
|||||||
Min LOD Icon-O-Matic-PropertyNames Minimi LOD
|
Min LOD Icon-O-Matic-PropertyNames Minimi LOD
|
||||||
BEOS:ICON Attribute Icon-O-Matic-SavePanel BEOS:ICON -attribuutti
|
BEOS:ICON Attribute Icon-O-Matic-SavePanel BEOS:ICON -attribuutti
|
||||||
Invert selection Icon-O-Matic-Properties Käännä valinta
|
Invert selection Icon-O-Matic-Properties Käännä valinta
|
||||||
|
Drop shapes Icon-O-Matic-ShapesList Pudota hahmot
|
||||||
Export as… Icon-O-Matic-Menu-File Vie nimellä...
|
Export as… Icon-O-Matic-Menu-File Vie nimellä...
|
||||||
Transformation Transformation Muodonmuutos
|
Transformation Transformation Muodonmuutos
|
||||||
Click on an object in Empty property list - 1st line Napsauta objektia kohteessa
|
Click on an object in Empty property list - 1st line Napsauta objektia kohteessa
|
||||||
|
|||||||
@@ -1,4 +1,4 @@
|
|||||||
1 russian x-vnd.haiku-icon_o_matic 2326864078
|
1 russian x-vnd.haiku-icon_o_matic 4233739176
|
||||||
Select All Icon-O-Matic-PathManipulator Выделить всё
|
Select All Icon-O-Matic-PathManipulator Выделить всё
|
||||||
Add Style Icon-O-Matic-AddStylesCmd Добавить стиль
|
Add Style Icon-O-Matic-AddStylesCmd Добавить стиль
|
||||||
Color (#%02x%02x%02x) Style name after dropping a color Цвет (#%02x%02x%02x)
|
Color (#%02x%02x%02x) Style name after dropping a color Цвет (#%02x%02x%02x)
|
||||||
@@ -117,6 +117,7 @@ Gradient Icon-O-Matic-StyleTypes Градиент
|
|||||||
Min LOD Icon-O-Matic-PropertyNames Мин. LOD
|
Min LOD Icon-O-Matic-PropertyNames Мин. LOD
|
||||||
BEOS:ICON Attribute Icon-O-Matic-SavePanel Атрибут BEOS:ICON
|
BEOS:ICON Attribute Icon-O-Matic-SavePanel Атрибут BEOS:ICON
|
||||||
Invert selection Icon-O-Matic-Properties Инвертировать выделение
|
Invert selection Icon-O-Matic-Properties Инвертировать выделение
|
||||||
|
Drop shapes Icon-O-Matic-ShapesList Удалить формы
|
||||||
Export as… Icon-O-Matic-Menu-File Экспортировать как…
|
Export as… Icon-O-Matic-Menu-File Экспортировать как…
|
||||||
Transformation Transformation Изменение
|
Transformation Transformation Изменение
|
||||||
Click on an object in Empty property list - 1st line Нажмите на объект в
|
Click on an object in Empty property list - 1st line Нажмите на объект в
|
||||||
@@ -158,6 +159,7 @@ Snap to grid Icon-O-Matic-Menu-Settings Выровнять по сетке
|
|||||||
Remove Icon-O-Matic-ShapesList Удалить
|
Remove Icon-O-Matic-ShapesList Удалить
|
||||||
Yes Icon-O-Matic-StyledTextImport Да
|
Yes Icon-O-Matic-StyledTextImport Да
|
||||||
Transformation Icon-O-Matic-TransformersList Изменение
|
Transformation Icon-O-Matic-TransformersList Изменение
|
||||||
|
Save image Icon-O-Matic-SavePanel Сохранить изображение
|
||||||
Add Styles Icon-O-Matic-AddStylesCmd Добавить стили
|
Add Styles Icon-O-Matic-AddStylesCmd Добавить стили
|
||||||
Remove Control Points Icon-O-Matic-RemovePointsCmd Удалить точки
|
Remove Control Points Icon-O-Matic-RemovePointsCmd Удалить точки
|
||||||
Format Icon-O-Matic-SavePanel Формат
|
Format Icon-O-Matic-SavePanel Формат
|
||||||
|
|||||||
@@ -1,4 +1,4 @@
|
|||||||
1 belarusian x-vnd.Haiku-Installer 2099988747
|
1 belarusian x-vnd.Haiku-Installer 3488795908
|
||||||
So behind the other menu entries towards the bottom of the file, add something similar to these lines:\n\n InstallerApp Дадайце ў канец кожнага з ніжэйшых запісаў меню нешта падобнае да гэтага:
|
So behind the other menu entries towards the bottom of the file, add something similar to these lines:\n\n InstallerApp Дадайце ў канец кожнага з ніжэйшых запісаў меню нешта падобнае да гэтага:
|
||||||
Are you sure you want to abort the installation and restart the system? InstallerWindow Сапраўды спыніць усталёўку і перазагрузіць сістэму?
|
Are you sure you want to abort the installation and restart the system? InstallerWindow Сапраўды спыніць усталёўку і перазагрузіць сістэму?
|
||||||
\t}\n\n InstallerApp \t}\n\n
|
\t}\n\n InstallerApp \t}\n\n
|
||||||
@@ -12,6 +12,7 @@ With GRUB it's: (hdN,n)\n\n InstallerApp У GRUB гэта: (hdN,n)\n\n
|
|||||||
\tsudo update-grub\n\n\n InstallerApp \tsudo update-grub\n\n\n
|
\tsudo update-grub\n\n\n InstallerApp \tsudo update-grub\n\n\n
|
||||||
Stop InstallerWindow In alert after pressing Stop Стоп
|
Stop InstallerWindow In alert after pressing Stop Стоп
|
||||||
Install progress: InstallerWindow Прагрэс усталёўкі:
|
Install progress: InstallerWindow Прагрэс усталёўкі:
|
||||||
|
2.2) GRUB 1\n InstallerApp 2.1) GRUB 1\n
|
||||||
Starting Installation. InstallProgress Пачынаецца Ўсталёўка.
|
Starting Installation. InstallProgress Пачынаецца Ўсталёўка.
|
||||||
This is alpha-quality software! It means there is a high risk of losing important data. Make frequent backups! You have been warned.\n\n\n InstallerApp Гэта праграма знаходзіцца ў альфа-версіі! Гэта значыць, вы рызыкуеце згубіць важныя даныя. Часцей рабіце рэзервовыя копіі! Мы вас папярэдзілі.\n\n\n
|
This is alpha-quality software! It means there is a high risk of losing important data. Make frequent backups! You have been warned.\n\n\n InstallerApp Гэта праграма знаходзіцца ў альфа-версіі! Гэта значыць, вы рызыкуеце згубіць важныя даныя. Часцей рабіце рэзервовыя копіі! Мы вас папярэдзілі.\n\n\n
|
||||||
Are you sure you want to abort the installation? InstallerWindow Вы насамрэч жадаеце перарваць усталёўку?
|
Are you sure you want to abort the installation? InstallerWindow Вы насамрэч жадаеце перарваць усталёўку?
|
||||||
@@ -37,6 +38,7 @@ Boot sector successfully written. InstallProgress Загрузачны сект
|
|||||||
Performing installation. InstallProgress Выконваецца ўсталёўка.
|
Performing installation. InstallProgress Выконваецца ўсталёўка.
|
||||||
scanning… InstallerWindow сканіраванне...
|
scanning… InstallerWindow сканіраванне...
|
||||||
Set up boot menu InstallerWindow Наладзіць меню запуску
|
Set up boot menu InstallerWindow Наладзіць меню запуску
|
||||||
|
2.1) GRUB (since os-prober v1.44)\n InstallerApp 2.1) GRUB (пачынаючы з os-prober v1.44)\n
|
||||||
The first logical partition always has the number \"4\", regardless of the number of primary partitions.\n\n InstallerApp Першы лагічны падзел заўсёды пад нумарам \"4\", нягледзячы на нумары асноўных падзелаў.\n\n
|
The first logical partition always has the number \"4\", regardless of the number of primary partitions.\n\n InstallerApp Першы лагічны падзел заўсёды пад нумарам \"4\", нягледзячы на нумары асноўных падзелаў.\n\n
|
||||||
GRUB's naming scheme is still: (hdN,n)\n\n InstallerApp Для GRUB схема імёнаў тая ж: (hdN,n)\n\n
|
GRUB's naming scheme is still: (hdN,n)\n\n InstallerApp Для GRUB схема імёнаў тая ж: (hdN,n)\n\n
|
||||||
\tsudo <your favorite text editor> /boot/grub/menu.lst\n\n InstallerApp \tsudo <пажаданы рэдактар> /boot/grub/menu.lst\n\n
|
\tsudo <your favorite text editor> /boot/grub/menu.lst\n\n InstallerApp \tsudo <пажаданы рэдактар> /boot/grub/menu.lst\n\n
|
||||||
@@ -48,6 +50,7 @@ README InstallerApp README
|
|||||||
The destination disk may not have enough space. Try choosing a different disk or choose to not install optional items. InstallProgress Дыск прызначэння, пэўна, не мае патрэбнага месца. Паспрабуйце выбраць іншы дыск або адмяніце ўсталёўку дадатковых пунктаў.
|
The destination disk may not have enough space. Try choosing a different disk or choose to not install optional items. InstallProgress Дыск прызначэння, пэўна, не мае патрэбнага месца. Паспрабуйце выбраць іншы дыск або адмяніце ўсталёўку дадатковых пунктаў.
|
||||||
Please close the Boot Manager and DriveSetup windows before closing the Installer window. InstallerWindow Калі ласка, закрыйце Boot Manager і DriveSetup перад закрыццём Усталёўшчыка.
|
Please close the Boot Manager and DriveSetup windows before closing the Installer window. InstallerWindow Калі ласка, закрыйце Boot Manager і DriveSetup перад закрыццём Усталёўшчыка.
|
||||||
Scanning for disks… InstallerWindow Сканіраванне дыскаў...
|
Scanning for disks… InstallerWindow Сканіраванне дыскаў...
|
||||||
|
2.3) GRUB 2\n InstallerApp 2.2) GRUB 2\n
|
||||||
The disk can't be mounted. Please choose a different disk. InstallProgress Немагчыма замантаваць дыск. Калі ласка, выберыце іншы.
|
The disk can't be mounted. Please choose a different disk. InstallProgress Немагчыма замантаваць дыск. Калі ласка, выберыце іншы.
|
||||||
?? of ?? InstallerWindow Unknown progress ?? з ??
|
?? of ?? InstallerWindow Unknown progress ?? з ??
|
||||||
\tmenuentry \"Haiku Alpha\" {\n InstallerApp \tmenuentry \"Haiku Alpha\" {\n
|
\tmenuentry \"Haiku Alpha\" {\n InstallerApp \tmenuentry \"Haiku Alpha\" {\n
|
||||||
@@ -67,6 +70,7 @@ Installer System name Усталёўшчык
|
|||||||
You can't install the contents of a disk onto itself. Please choose a different disk. InstallProgress Вы не можаце капіяваць файлы на зыходны дыск. Выберыце, калі ласка, іншы.
|
You can't install the contents of a disk onto itself. Please choose a different disk. InstallProgress Вы не можаце капіяваць файлы на зыходны дыск. Выберыце, калі ласка, іншы.
|
||||||
??? InstallerWindow Unknown currently copied item ???
|
??? InstallerWindow Unknown currently copied item ???
|
||||||
\"n\" is the partition number, which for GRUB 2 starts with \"1\"\n InstallerApp \"n\" - нумар падзелу, у GRUB 2 пачынаецца з \"1\"\n
|
\"n\" is the partition number, which for GRUB 2 starts with \"1\"\n InstallerApp \"n\" - нумар падзелу, у GRUB 2 пачынаецца з \"1\"\n
|
||||||
|
Starting with os-prober v1.44 (e.g. in Ubuntu 11.04 or later), Haiku should be recognized out of the box. To add Haiku to the GRUB menu, open a Terminal and enter:\n\n InstallerApp Пачынаючы з os-prober v1.44 (т.б. Ubuntu 11.04 ці пазней), Haiku павінна падтрымлівацца штатна. Каб дадаць Haiku у меню GRUB, адкрыйце Тэрмінал і ўвядзіце:\n\n
|
||||||
Quit DriveSetup InstallerWindow Выйсці з DriveSetup
|
Quit DriveSetup InstallerWindow Выйсці з DriveSetup
|
||||||
\"N\" is the hard disk number, starting with \"0\".\n InstallerApp \"N\" - нумар дыска, пачынаецца з \"0\".\n
|
\"N\" is the hard disk number, starting with \"0\".\n InstallerApp \"N\" - нумар дыска, пачынаецца з \"0\".\n
|
||||||
Hide optional packages InstallerWindow Схаваць дадатковыя пакункі
|
Hide optional packages InstallerWindow Схаваць дадатковыя пакункі
|
||||||
@@ -109,6 +113,7 @@ So below the heading that must not be edited, add something similar to these lin
|
|||||||
Are you sure you want to to stop the installation? InstallerWindow Сапраўды астанавіць усталёўку?
|
Are you sure you want to to stop the installation? InstallerWindow Сапраўды астанавіць усталёўку?
|
||||||
Onto: InstallerWindow На:
|
Onto: InstallerWindow На:
|
||||||
Please close the Boot Manager window before closing the Installer window. InstallerWindow Калі ласка, закрыйце Boot Manager перад закрыццём Усталёўшчыка.
|
Please close the Boot Manager window before closing the Installer window. InstallerWindow Калі ласка, закрыйце Boot Manager перад закрыццём Усталёўшчыка.
|
||||||
|
3) When you successfully boot into Haiku for the first time, make sure to read our \"Welcome\" and \"Userguide\" documentation. There are links on the Desktop and in WebPositive's bookmarks.\n\n InstallerApp 3) Пасля першай паспяховай загрузкі Haiku, азнаёмцеся, калі ласка з дакументацыей ў \"Welcome\" і \"Userguide\" файлах. Спасылі на іх знаходзяцца на рабочым стале і ў закладках WebPositive.\n\n
|
||||||
Tools InstallerWindow Прылады
|
Tools InstallerWindow Прылады
|
||||||
The mount point could not be retrieved. InstallProgress Не ўдалося атрымаць пункт мантавання.
|
The mount point could not be retrieved. InstallProgress Не ўдалося атрымаць пункт мантавання.
|
||||||
The target volume is not empty. Are you sure you want to install anyway?\n\nNote: The 'system' folder will be a clean copy from the source volume, all other folders will be merged, whereas files and links that exist on both the source and target volume will be overwritten with the source volume version. InstallProgress Дыск прызначэння не пусты. Сапраўды жадаеце усталяваць туды?\n\nЗаметка: каталог 'system' будзе поўнай копіяй каталога з крыніцы, усе іншыя каталогі будуць сумешчаны, існуючыя файлы будуць замененыя на версіі з крыніцы.
|
The target volume is not empty. Are you sure you want to install anyway?\n\nNote: The 'system' folder will be a clean copy from the source volume, all other folders will be merged, whereas files and links that exist on both the source and target volume will be overwritten with the source volume version. InstallProgress Дыск прызначэння не пусты. Сапраўды жадаеце усталяваць туды?\n\nЗаметка: каталог 'system' будзе поўнай копіяй каталога з крыніцы, усе іншыя каталогі будуць сумешчаны, існуючыя файлы будуць замененыя на версіі з крыніцы.
|
||||||
|
|||||||
@@ -1,4 +1,4 @@
|
|||||||
1 german x-vnd.Haiku-Installer 2099988747
|
1 german x-vnd.Haiku-Installer 3488795908
|
||||||
So behind the other menu entries towards the bottom of the file, add something similar to these lines:\n\n InstallerApp Gegen Ende der Datei fügt man unter den anderen Menüeinträgen etwas in dieser Art an:\n\n
|
So behind the other menu entries towards the bottom of the file, add something similar to these lines:\n\n InstallerApp Gegen Ende der Datei fügt man unter den anderen Menüeinträgen etwas in dieser Art an:\n\n
|
||||||
Are you sure you want to abort the installation and restart the system? InstallerWindow Soll die Installation tatsächlich abgebrochen und der Rechner neu gestartet werden?
|
Are you sure you want to abort the installation and restart the system? InstallerWindow Soll die Installation tatsächlich abgebrochen und der Rechner neu gestartet werden?
|
||||||
\t}\n\n InstallerApp \t}\n\n
|
\t}\n\n InstallerApp \t}\n\n
|
||||||
@@ -12,6 +12,7 @@ With GRUB it's: (hdN,n)\n\n InstallerApp Bei GRUB ist es: (hdN,n)\n\n
|
|||||||
\tsudo update-grub\n\n\n InstallerApp \tsudo update-grub\n\n\n
|
\tsudo update-grub\n\n\n InstallerApp \tsudo update-grub\n\n\n
|
||||||
Stop InstallerWindow In alert after pressing Stop Installation abbrechen
|
Stop InstallerWindow In alert after pressing Stop Installation abbrechen
|
||||||
Install progress: InstallerWindow Installationsverlauf:
|
Install progress: InstallerWindow Installationsverlauf:
|
||||||
|
2.2) GRUB 1\n InstallerApp 2.2) GRUB 1\n
|
||||||
Starting Installation. InstallProgress Installation wird vorbereitet.
|
Starting Installation. InstallProgress Installation wird vorbereitet.
|
||||||
This is alpha-quality software! It means there is a high risk of losing important data. Make frequent backups! You have been warned.\n\n\n InstallerApp Dies ist eine Alpha-Version! Es besteht ein hohes Risiko, dass wichtige Daten verloren gehen können. Man sollte seine Daten unbedingt regelmäßig sichern!\n\n\n
|
This is alpha-quality software! It means there is a high risk of losing important data. Make frequent backups! You have been warned.\n\n\n InstallerApp Dies ist eine Alpha-Version! Es besteht ein hohes Risiko, dass wichtige Daten verloren gehen können. Man sollte seine Daten unbedingt regelmäßig sichern!\n\n\n
|
||||||
Are you sure you want to abort the installation? InstallerWindow Soll die Installation wirklich abgebrochen werden?
|
Are you sure you want to abort the installation? InstallerWindow Soll die Installation wirklich abgebrochen werden?
|
||||||
@@ -37,6 +38,7 @@ Boot sector successfully written. InstallProgress Der Bootsektor wurde erfolgre
|
|||||||
Performing installation. InstallProgress Installation läuft.
|
Performing installation. InstallProgress Installation läuft.
|
||||||
scanning… InstallerWindow Untersuchung läuft…
|
scanning… InstallerWindow Untersuchung läuft…
|
||||||
Set up boot menu InstallerWindow Bootmenü einrichten
|
Set up boot menu InstallerWindow Bootmenü einrichten
|
||||||
|
2.1) GRUB (since os-prober v1.44)\n InstallerApp 2.1) GRUB (seit os-prober v1.44)\n
|
||||||
The first logical partition always has the number \"4\", regardless of the number of primary partitions.\n\n InstallerApp Die erste logische Partition trägt immer die Nummer \"4\", unabhängig von der Anzahl primärer Partitionen.\n\n
|
The first logical partition always has the number \"4\", regardless of the number of primary partitions.\n\n InstallerApp Die erste logische Partition trägt immer die Nummer \"4\", unabhängig von der Anzahl primärer Partitionen.\n\n
|
||||||
GRUB's naming scheme is still: (hdN,n)\n\n InstallerApp Das Benennungsschema von GRUB ist immer noch: (hdN,n)\n\n
|
GRUB's naming scheme is still: (hdN,n)\n\n InstallerApp Das Benennungsschema von GRUB ist immer noch: (hdN,n)\n\n
|
||||||
\tsudo <your favorite text editor> /boot/grub/menu.lst\n\n InstallerApp \tsudo <Lieblings-Texteditor> /boot/grub/menu.lst\n\n
|
\tsudo <your favorite text editor> /boot/grub/menu.lst\n\n InstallerApp \tsudo <Lieblings-Texteditor> /boot/grub/menu.lst\n\n
|
||||||
@@ -48,6 +50,7 @@ README InstallerApp LIESMICH
|
|||||||
The destination disk may not have enough space. Try choosing a different disk or choose to not install optional items. InstallProgress Auf dem Ziellaufwerk ist anscheinend nicht genügend Platz. Entweder ein anderes Laufwerk wählen oder einige optionale Pakete deaktivieren.
|
The destination disk may not have enough space. Try choosing a different disk or choose to not install optional items. InstallProgress Auf dem Ziellaufwerk ist anscheinend nicht genügend Platz. Entweder ein anderes Laufwerk wählen oder einige optionale Pakete deaktivieren.
|
||||||
Please close the Boot Manager and DriveSetup windows before closing the Installer window. InstallerWindow Bitte BootManger und DriveSetup vor dem Installer-Fenster schließen.
|
Please close the Boot Manager and DriveSetup windows before closing the Installer window. InstallerWindow Bitte BootManger und DriveSetup vor dem Installer-Fenster schließen.
|
||||||
Scanning for disks… InstallerWindow Es wird nach Laufwerken gesucht…
|
Scanning for disks… InstallerWindow Es wird nach Laufwerken gesucht…
|
||||||
|
2.3) GRUB 2\n InstallerApp 2.3) GRUB 2\n
|
||||||
The disk can't be mounted. Please choose a different disk. InstallProgress Das Laufwerk konnte nicht eingehängt werden. Bitte ein anderes Laufwerk wählen.
|
The disk can't be mounted. Please choose a different disk. InstallProgress Das Laufwerk konnte nicht eingehängt werden. Bitte ein anderes Laufwerk wählen.
|
||||||
?? of ?? InstallerWindow Unknown progress ?? von ??
|
?? of ?? InstallerWindow Unknown progress ?? von ??
|
||||||
\tmenuentry \"Haiku Alpha\" {\n InstallerApp \tmenuentry \"Haiku Alpha\" {\n
|
\tmenuentry \"Haiku Alpha\" {\n InstallerApp \tmenuentry \"Haiku Alpha\" {\n
|
||||||
@@ -67,6 +70,7 @@ Installer System name Installer
|
|||||||
You can't install the contents of a disk onto itself. Please choose a different disk. InstallProgress Der Inhalt eines Laufwerks kann nicht auf sich selbst installiert werden. Bitte ein anderes Ziellaufwerk wählen.
|
You can't install the contents of a disk onto itself. Please choose a different disk. InstallProgress Der Inhalt eines Laufwerks kann nicht auf sich selbst installiert werden. Bitte ein anderes Ziellaufwerk wählen.
|
||||||
??? InstallerWindow Unknown currently copied item ???
|
??? InstallerWindow Unknown currently copied item ???
|
||||||
\"n\" is the partition number, which for GRUB 2 starts with \"1\"\n InstallerApp \"n\" ist die Partitionsnummer, die für GRUB 2 mit \"1\" beginnt\n
|
\"n\" is the partition number, which for GRUB 2 starts with \"1\"\n InstallerApp \"n\" ist die Partitionsnummer, die für GRUB 2 mit \"1\" beginnt\n
|
||||||
|
Starting with os-prober v1.44 (e.g. in Ubuntu 11.04 or later), Haiku should be recognized out of the box. To add Haiku to the GRUB menu, open a Terminal and enter:\n\n InstallerApp Seit es den os-prober v1.44 gibt (bei Ubuntu beispielsweise ab Version 11.04 dabei), sollte Haiku automatisch erkannt werden. Damit ein Haiku-Eintrag im GRUB Menü erscheint, folgendes in ein Terminal eingeben:\n\n
|
||||||
Quit DriveSetup InstallerWindow DriveSetup beenden
|
Quit DriveSetup InstallerWindow DriveSetup beenden
|
||||||
\"N\" is the hard disk number, starting with \"0\".\n InstallerApp \"N\" ist die Festplattennummer, beginnend bei \"0\".\n
|
\"N\" is the hard disk number, starting with \"0\".\n InstallerApp \"N\" ist die Festplattennummer, beginnend bei \"0\".\n
|
||||||
Hide optional packages InstallerWindow Optionale Pakete ausblenden
|
Hide optional packages InstallerWindow Optionale Pakete ausblenden
|
||||||
@@ -109,6 +113,7 @@ So below the heading that must not be edited, add something similar to these lin
|
|||||||
Are you sure you want to to stop the installation? InstallerWindow Soll die Installation tatsächlich abgebrochen werden?
|
Are you sure you want to to stop the installation? InstallerWindow Soll die Installation tatsächlich abgebrochen werden?
|
||||||
Onto: InstallerWindow Nach:
|
Onto: InstallerWindow Nach:
|
||||||
Please close the Boot Manager window before closing the Installer window. InstallerWindow Bitte BootManager vor dem Installer-Fenster schließen.
|
Please close the Boot Manager window before closing the Installer window. InstallerWindow Bitte BootManager vor dem Installer-Fenster schließen.
|
||||||
|
3) When you successfully boot into Haiku for the first time, make sure to read our \"Welcome\" and \"Userguide\" documentation. There are links on the Desktop and in WebPositive's bookmarks.\n\n InstallerApp 3) Wurde Haiku das erste Mal erfolgreich gestartet, sollte man sich die \"Welcome\" und \"Userguide\" Dokumentation ansehen. Verknüpfungen darauf befinden sich auf dem Desktop und in WebPositives Bookmarks.\n\n
|
||||||
Tools InstallerWindow Werkzeuge
|
Tools InstallerWindow Werkzeuge
|
||||||
The mount point could not be retrieved. InstallProgress Der Einhängeort wurde nicht gefunden.
|
The mount point could not be retrieved. InstallProgress Der Einhängeort wurde nicht gefunden.
|
||||||
The target volume is not empty. Are you sure you want to install anyway?\n\nNote: The 'system' folder will be a clean copy from the source volume, all other folders will be merged, whereas files and links that exist on both the source and target volume will be overwritten with the source volume version. InstallProgress Das Ziellaufwerk ist nicht leer. Soll trotzdem hierher installiert werden?\n\nHinweis: Der 'system'-Ordner wird mit einer sauberen Kopie aus dem Quelllaufwerk überschrieben; alle anderen Ordner werden zusammengeführt, wobei Dateien und Verknüpfungen, die auf beiden Laufwerken existieren, mit der Version des Quelllaufwerks überschrieben werden.
|
The target volume is not empty. Are you sure you want to install anyway?\n\nNote: The 'system' folder will be a clean copy from the source volume, all other folders will be merged, whereas files and links that exist on both the source and target volume will be overwritten with the source volume version. InstallProgress Das Ziellaufwerk ist nicht leer. Soll trotzdem hierher installiert werden?\n\nHinweis: Der 'system'-Ordner wird mit einer sauberen Kopie aus dem Quelllaufwerk überschrieben; alle anderen Ordner werden zusammengeführt, wobei Dateien und Verknüpfungen, die auf beiden Laufwerken existieren, mit der Version des Quelllaufwerks überschrieben werden.
|
||||||
|
|||||||
@@ -1,4 +1,4 @@
|
|||||||
1 finnish x-vnd.Haiku-Installer 2099988747
|
1 finnish x-vnd.Haiku-Installer 3488795908
|
||||||
So behind the other menu entries towards the bottom of the file, add something similar to these lines:\n\n InstallerApp Joten lisää muiden valikkorivien alapuolelle tiedoston loppuun joitakin seuraavanlaisia rivejä:\n\n
|
So behind the other menu entries towards the bottom of the file, add something similar to these lines:\n\n InstallerApp Joten lisää muiden valikkorivien alapuolelle tiedoston loppuun joitakin seuraavanlaisia rivejä:\n\n
|
||||||
Are you sure you want to abort the installation and restart the system? InstallerWindow Oletko varma, että haluat keskeyttää asennuksen ja käynnistää järjestelmän uudelleen?
|
Are you sure you want to abort the installation and restart the system? InstallerWindow Oletko varma, että haluat keskeyttää asennuksen ja käynnistää järjestelmän uudelleen?
|
||||||
\t}\n\n InstallerApp \t}\n\n
|
\t}\n\n InstallerApp \t}\n\n
|
||||||
@@ -12,6 +12,7 @@ With GRUB it's: (hdN,n)\n\n InstallerApp GRUB-ohjelmalla se on: (hdN,n)\n\n
|
|||||||
\tsudo update-grub\n\n\n InstallerApp \tsudo update-grub\n\n\n
|
\tsudo update-grub\n\n\n InstallerApp \tsudo update-grub\n\n\n
|
||||||
Stop InstallerWindow In alert after pressing Stop Pysäytä
|
Stop InstallerWindow In alert after pressing Stop Pysäytä
|
||||||
Install progress: InstallerWindow Asennuksen eteneminen:
|
Install progress: InstallerWindow Asennuksen eteneminen:
|
||||||
|
2.2) GRUB 1\n InstallerApp 2.2) GRUB 1\n
|
||||||
Starting Installation. InstallProgress Aloitetaan asennus.
|
Starting Installation. InstallProgress Aloitetaan asennus.
|
||||||
This is alpha-quality software! It means there is a high risk of losing important data. Make frequent backups! You have been warned.\n\n\n InstallerApp Tämä on alfa-laatuinen ohjelmisto! Se tarkoittaa, että on olemassa korkea riski menettää tärkeitä tietoja. Tee usein varmuuskopioita! Sinua on varoitettu.\n\n\n
|
This is alpha-quality software! It means there is a high risk of losing important data. Make frequent backups! You have been warned.\n\n\n InstallerApp Tämä on alfa-laatuinen ohjelmisto! Se tarkoittaa, että on olemassa korkea riski menettää tärkeitä tietoja. Tee usein varmuuskopioita! Sinua on varoitettu.\n\n\n
|
||||||
Are you sure you want to abort the installation? InstallerWindow Oletko varma, että haluat keskeyttää asentamisen?
|
Are you sure you want to abort the installation? InstallerWindow Oletko varma, että haluat keskeyttää asentamisen?
|
||||||
@@ -37,6 +38,7 @@ Boot sector successfully written. InstallProgress Alkulataussektori kirjoitetti
|
|||||||
Performing installation. InstallProgress Suoritetaan asennus.
|
Performing installation. InstallProgress Suoritetaan asennus.
|
||||||
scanning… InstallerWindow etsitään…
|
scanning… InstallerWindow etsitään…
|
||||||
Set up boot menu InstallerWindow Aseta alkulatausvalikko
|
Set up boot menu InstallerWindow Aseta alkulatausvalikko
|
||||||
|
2.1) GRUB (since os-prober v1.44)\n InstallerApp 2.1) GRUB (sitten os-prober v1.44)\n
|
||||||
The first logical partition always has the number \"4\", regardless of the number of primary partitions.\n\n InstallerApp Ensimmäisellä loogisella osiolla on numero ”4”, riippumatta ensisijaisten osioiden lukumäärästä.\n\n
|
The first logical partition always has the number \"4\", regardless of the number of primary partitions.\n\n InstallerApp Ensimmäisellä loogisella osiolla on numero ”4”, riippumatta ensisijaisten osioiden lukumäärästä.\n\n
|
||||||
GRUB's naming scheme is still: (hdN,n)\n\n InstallerApp GRUB:in nimeämiskaava on yhä: (hdN,n)\n\n
|
GRUB's naming scheme is still: (hdN,n)\n\n InstallerApp GRUB:in nimeämiskaava on yhä: (hdN,n)\n\n
|
||||||
\tsudo <your favorite text editor> /boot/grub/menu.lst\n\n InstallerApp \tsudo <suosikkieditorisi nimi> /boot/grub/menu.lst\n\n
|
\tsudo <your favorite text editor> /boot/grub/menu.lst\n\n InstallerApp \tsudo <suosikkieditorisi nimi> /boot/grub/menu.lst\n\n
|
||||||
@@ -48,6 +50,7 @@ README InstallerApp LUEMINUT
|
|||||||
The destination disk may not have enough space. Try choosing a different disk or choose to not install optional items. InstallProgress Kohdelevyllä ei ehkä ole riittävästi tilaa. Yritä valita eri levy tai älä valitse valinnaisten alkioiden asentamista.
|
The destination disk may not have enough space. Try choosing a different disk or choose to not install optional items. InstallProgress Kohdelevyllä ei ehkä ole riittävästi tilaa. Yritä valita eri levy tai älä valitse valinnaisten alkioiden asentamista.
|
||||||
Please close the Boot Manager and DriveSetup windows before closing the Installer window. InstallerWindow Sulje ensin Alkulataushallinta- ja Levyasema-asetusikkunat ennen asennusohjelman ikkunan sulkemista.
|
Please close the Boot Manager and DriveSetup windows before closing the Installer window. InstallerWindow Sulje ensin Alkulataushallinta- ja Levyasema-asetusikkunat ennen asennusohjelman ikkunan sulkemista.
|
||||||
Scanning for disks… InstallerWindow Etsitään levyjä…
|
Scanning for disks… InstallerWindow Etsitään levyjä…
|
||||||
|
2.3) GRUB 2\n InstallerApp 2.3) GRUB 2\n
|
||||||
The disk can't be mounted. Please choose a different disk. InstallProgress Levyä ei voitu liittää. Valitse eri levy.
|
The disk can't be mounted. Please choose a different disk. InstallProgress Levyä ei voitu liittää. Valitse eri levy.
|
||||||
?? of ?? InstallerWindow Unknown progress ?? / ??
|
?? of ?? InstallerWindow Unknown progress ?? / ??
|
||||||
\tmenuentry \"Haiku Alpha\" {\n InstallerApp \tmenuentry ”Haiku Alfa” {\n
|
\tmenuentry \"Haiku Alpha\" {\n InstallerApp \tmenuentry ”Haiku Alfa” {\n
|
||||||
@@ -67,6 +70,7 @@ Installer System name Asennusohjelma
|
|||||||
You can't install the contents of a disk onto itself. Please choose a different disk. InstallProgress Et voi asentaa levyn sisältö itseensä. Valitse eri levy.
|
You can't install the contents of a disk onto itself. Please choose a different disk. InstallProgress Et voi asentaa levyn sisältö itseensä. Valitse eri levy.
|
||||||
??? InstallerWindow Unknown currently copied item ???
|
??? InstallerWindow Unknown currently copied item ???
|
||||||
\"n\" is the partition number, which for GRUB 2 starts with \"1\"\n InstallerApp ”n” on osionumero, joka GRUB 2 -ohjelmassa alkaa numerosta ”1”\n
|
\"n\" is the partition number, which for GRUB 2 starts with \"1\"\n InstallerApp ”n” on osionumero, joka GRUB 2 -ohjelmassa alkaa numerosta ”1”\n
|
||||||
|
Starting with os-prober v1.44 (e.g. in Ubuntu 11.04 or later), Haiku should be recognized out of the box. To add Haiku to the GRUB menu, open a Terminal and enter:\n\n InstallerApp Alkaen os-prober-ohjelman versiosta v1.44 (esim.: Ubuntussa 11.04 tai myöhäisemmissä versioissa), Haiku-käyttöjärjestelmän tunnistaminen onnistuu ilman pulmia. Avaa Pääteikkuna Haikun lisäämiseksi GRUB-valikkoon ja kirjoita:\n\n
|
||||||
Quit DriveSetup InstallerWindow Poistu Levyasema-asetuksista
|
Quit DriveSetup InstallerWindow Poistu Levyasema-asetuksista
|
||||||
\"N\" is the hard disk number, starting with \"0\".\n InstallerApp ”N” on kiintolevynumero, alkaen numerosta ”0”.\n
|
\"N\" is the hard disk number, starting with \"0\".\n InstallerApp ”N” on kiintolevynumero, alkaen numerosta ”0”.\n
|
||||||
Hide optional packages InstallerWindow Piilota valinnaiset pakkaukset
|
Hide optional packages InstallerWindow Piilota valinnaiset pakkaukset
|
||||||
@@ -109,6 +113,7 @@ So below the heading that must not be edited, add something similar to these lin
|
|||||||
Are you sure you want to to stop the installation? InstallerWindow Oletko varma, että haluat pysäyttää asennuksen?
|
Are you sure you want to to stop the installation? InstallerWindow Oletko varma, että haluat pysäyttää asennuksen?
|
||||||
Onto: InstallerWindow Kohteeseen:
|
Onto: InstallerWindow Kohteeseen:
|
||||||
Please close the Boot Manager window before closing the Installer window. InstallerWindow Sulje Alkulataushallintaikkuna ennen Asennusohjelmaikkunan sulkemista.
|
Please close the Boot Manager window before closing the Installer window. InstallerWindow Sulje Alkulataushallintaikkuna ennen Asennusohjelmaikkunan sulkemista.
|
||||||
|
3) When you successfully boot into Haiku for the first time, make sure to read our \"Welcome\" and \"Userguide\" documentation. There are links on the Desktop and in WebPositive's bookmarks.\n\n InstallerApp 3) Kun alkulataat Haikun onnistuneesti ensimmäisen kerran, lue varmuuden vuoksi \"Tervetuloa\" ja \"Käyttäjäopas\" -asiakirjamme. Niihin löytyy linkit työpöydältä ja WebPositive-selaimen kirjanmerkeistä.\n\n
|
||||||
Tools InstallerWindow Työkalut
|
Tools InstallerWindow Työkalut
|
||||||
The mount point could not be retrieved. InstallProgress Liittämispistettä ei voitu noutaa.
|
The mount point could not be retrieved. InstallProgress Liittämispistettä ei voitu noutaa.
|
||||||
The target volume is not empty. Are you sure you want to install anyway?\n\nNote: The 'system' folder will be a clean copy from the source volume, all other folders will be merged, whereas files and links that exist on both the source and target volume will be overwritten with the source volume version. InstallProgress Kohdetaltio ei ole tyhjä. Oletko varma, että haluat asentaa siitä huolimatta?\n\nHuomaa: ’system’-kansio on oleva puhdas kopio lähdetaltiolta, kaikki muut kansiot yhdistetään, kun taas tiedostot ja linkit, jotka esiintyvät sekä lähde- että kohdetaltiolla korvataan lähdetaltion versiolla.
|
The target volume is not empty. Are you sure you want to install anyway?\n\nNote: The 'system' folder will be a clean copy from the source volume, all other folders will be merged, whereas files and links that exist on both the source and target volume will be overwritten with the source volume version. InstallProgress Kohdetaltio ei ole tyhjä. Oletko varma, että haluat asentaa siitä huolimatta?\n\nHuomaa: ’system’-kansio on oleva puhdas kopio lähdetaltiolta, kaikki muut kansiot yhdistetään, kun taas tiedostot ja linkit, jotka esiintyvät sekä lähde- että kohdetaltiolla korvataan lähdetaltion versiolla.
|
||||||
|
|||||||
@@ -1,4 +1,4 @@
|
|||||||
1 japanese x-vnd.Haiku-Installer 2099988747
|
1 japanese x-vnd.Haiku-Installer 3488795908
|
||||||
So behind the other menu entries towards the bottom of the file, add something similar to these lines:\n\n InstallerApp したがって、Haikuを GRUBメニューに追加するには、ファイルの最後に下記のような記述をしてください。\n\n
|
So behind the other menu entries towards the bottom of the file, add something similar to these lines:\n\n InstallerApp したがって、Haikuを GRUBメニューに追加するには、ファイルの最後に下記のような記述をしてください。\n\n
|
||||||
Are you sure you want to abort the installation and restart the system? InstallerWindow インストールを中止して、システムを再起動しますか?
|
Are you sure you want to abort the installation and restart the system? InstallerWindow インストールを中止して、システムを再起動しますか?
|
||||||
\t}\n\n InstallerApp \t}\n\n
|
\t}\n\n InstallerApp \t}\n\n
|
||||||
@@ -12,6 +12,7 @@ With GRUB it's: (hdN,n)\n\n InstallerApp GRUBではこのような表記をし
|
|||||||
\tsudo update-grub\n\n\n InstallerApp \tsudo update-grub\n\n\n
|
\tsudo update-grub\n\n\n InstallerApp \tsudo update-grub\n\n\n
|
||||||
Stop InstallerWindow In alert after pressing Stop 中断
|
Stop InstallerWindow In alert after pressing Stop 中断
|
||||||
Install progress: InstallerWindow 進行状況:
|
Install progress: InstallerWindow 進行状況:
|
||||||
|
2.2) GRUB 1\n InstallerApp 2.1) GRUB 1\n
|
||||||
Starting Installation. InstallProgress 準備をしています…
|
Starting Installation. InstallProgress 準備をしています…
|
||||||
This is alpha-quality software! It means there is a high risk of losing important data. Make frequent backups! You have been warned.\n\n\n InstallerApp 品質のソフトウェアです。高い確率で重要なデータを失う恐れがあります。こまめにバックアップをとってください! さらに、次の点に留意してください。\n\n\n
|
This is alpha-quality software! It means there is a high risk of losing important data. Make frequent backups! You have been warned.\n\n\n InstallerApp 品質のソフトウェアです。高い確率で重要なデータを失う恐れがあります。こまめにバックアップをとってください! さらに、次の点に留意してください。\n\n\n
|
||||||
Are you sure you want to abort the installation? InstallerWindow 本当にインストールを中断してよいですか ?
|
Are you sure you want to abort the installation? InstallerWindow 本当にインストールを中断してよいですか ?
|
||||||
@@ -37,6 +38,7 @@ Boot sector successfully written. InstallProgress ブートセクターの書
|
|||||||
Performing installation. InstallProgress インストールを実行しています。
|
Performing installation. InstallProgress インストールを実行しています。
|
||||||
scanning… InstallerWindow ディスクを検出しています…
|
scanning… InstallerWindow ディスクを検出しています…
|
||||||
Set up boot menu InstallerWindow ブートメニューの設定
|
Set up boot menu InstallerWindow ブートメニューの設定
|
||||||
|
2.1) GRUB (since os-prober v1.44)\n InstallerApp 2.1) GRUB (os-prober v1.44 以降)\n
|
||||||
The first logical partition always has the number \"4\", regardless of the number of primary partitions.\n\n InstallerApp プライマリーパーティションの数にもかかわらず、最初の論理パーティションは常に\"4\"という数字が付きます。\n\n
|
The first logical partition always has the number \"4\", regardless of the number of primary partitions.\n\n InstallerApp プライマリーパーティションの数にもかかわらず、最初の論理パーティションは常に\"4\"という数字が付きます。\n\n
|
||||||
GRUB's naming scheme is still: (hdN,n)\n\n InstallerApp GRUBの命名規則はまだ: (hdN,n) です。\n\n
|
GRUB's naming scheme is still: (hdN,n)\n\n InstallerApp GRUBの命名規則はまだ: (hdN,n) です。\n\n
|
||||||
\tsudo <your favorite text editor> /boot/grub/menu.lst\n\n InstallerApp \tsudo <好みのテキストエディタ> /boot/grub/menu.lst\n\n
|
\tsudo <your favorite text editor> /boot/grub/menu.lst\n\n InstallerApp \tsudo <好みのテキストエディタ> /boot/grub/menu.lst\n\n
|
||||||
@@ -48,6 +50,7 @@ README InstallerApp README
|
|||||||
The destination disk may not have enough space. Try choosing a different disk or choose to not install optional items. InstallProgress インストール先ディスクの空き容量が不足している可能性があります。他のディスクを選択するか、インストールするオプションを減らしてください。
|
The destination disk may not have enough space. Try choosing a different disk or choose to not install optional items. InstallProgress インストール先ディスクの空き容量が不足している可能性があります。他のディスクを選択するか、インストールするオプションを減らしてください。
|
||||||
Please close the Boot Manager and DriveSetup windows before closing the Installer window. InstallerWindow Haiku インストーラーを閉じる前に Boot Manager と DriveSetup を終了してください。
|
Please close the Boot Manager and DriveSetup windows before closing the Installer window. InstallerWindow Haiku インストーラーを閉じる前に Boot Manager と DriveSetup を終了してください。
|
||||||
Scanning for disks… InstallerWindow ディスクを検出しています…
|
Scanning for disks… InstallerWindow ディスクを検出しています…
|
||||||
|
2.3) GRUB 2\n InstallerApp 2.2) GRUB 2\n
|
||||||
The disk can't be mounted. Please choose a different disk. InstallProgress このディスクをマウントできません。他のディスクを選択してください。
|
The disk can't be mounted. Please choose a different disk. InstallProgress このディスクをマウントできません。他のディスクを選択してください。
|
||||||
?? of ?? InstallerWindow Unknown progress ?? / ??
|
?? of ?? InstallerWindow Unknown progress ?? / ??
|
||||||
\tmenuentry \"Haiku Alpha\" {\n InstallerApp \tmenuentry \"Haiku Alpha\" {\n
|
\tmenuentry \"Haiku Alpha\" {\n InstallerApp \tmenuentry \"Haiku Alpha\" {\n
|
||||||
@@ -67,6 +70,7 @@ Installer System name インストーラー
|
|||||||
You can't install the contents of a disk onto itself. Please choose a different disk. InstallProgress インストール元ディスクへのインストールはできません。他のディスクを選んでください。
|
You can't install the contents of a disk onto itself. Please choose a different disk. InstallProgress インストール元ディスクへのインストールはできません。他のディスクを選んでください。
|
||||||
??? InstallerWindow Unknown currently copied item ???
|
??? InstallerWindow Unknown currently copied item ???
|
||||||
\"n\" is the partition number, which for GRUB 2 starts with \"1\"\n InstallerApp \"n\"はパーティション番号で、GRUB 2は\"1\"から数えます。\n
|
\"n\" is the partition number, which for GRUB 2 starts with \"1\"\n InstallerApp \"n\"はパーティション番号で、GRUB 2は\"1\"から数えます。\n
|
||||||
|
Starting with os-prober v1.44 (e.g. in Ubuntu 11.04 or later), Haiku should be recognized out of the box. To add Haiku to the GRUB menu, open a Terminal and enter:\n\n InstallerApp os-prober v1.44 以降 (たとえば、Ubuntu 11.04 以降) では、Haiku は設定なしで認識するはずです。Haiku を GRUB メニューに追加するには、ターミナルを立ち上げて以下を入力します:\n\n
|
||||||
Quit DriveSetup InstallerWindow DriveSetup の終了
|
Quit DriveSetup InstallerWindow DriveSetup の終了
|
||||||
\"N\" is the hard disk number, starting with \"0\".\n InstallerApp \"N\"はハードディスクの番号で、\"0\"から数えます。\n
|
\"N\" is the hard disk number, starting with \"0\".\n InstallerApp \"N\"はハードディスクの番号で、\"0\"から数えます。\n
|
||||||
Hide optional packages InstallerWindow オプショナルパッケージを隠す
|
Hide optional packages InstallerWindow オプショナルパッケージを隠す
|
||||||
@@ -109,6 +113,7 @@ So below the heading that must not be edited, add something similar to these lin
|
|||||||
Are you sure you want to to stop the installation? InstallerWindow 本当にインストールを中断してよいですか ?
|
Are you sure you want to to stop the installation? InstallerWindow 本当にインストールを中断してよいですか ?
|
||||||
Onto: InstallerWindow インストール先:
|
Onto: InstallerWindow インストール先:
|
||||||
Please close the Boot Manager window before closing the Installer window. InstallerWindow ブートマネージャーウィンドウを閉じてから、インストーラーウィンドウを閉じてください。
|
Please close the Boot Manager window before closing the Installer window. InstallerWindow ブートマネージャーウィンドウを閉じてから、インストーラーウィンドウを閉じてください。
|
||||||
|
3) When you successfully boot into Haiku for the first time, make sure to read our \"Welcome\" and \"Userguide\" documentation. There are links on the Desktop and in WebPositive's bookmarks.\n\n InstallerApp 3) はじめて Haiku のブートに成功したら、 \"Welcome\" と \"Userguide\" を必ず読んでください。これらは、デスクトップ上のリンクおよび、WebPositive のブックマーク中にあります。\n\n
|
||||||
Tools InstallerWindow ツール
|
Tools InstallerWindow ツール
|
||||||
The mount point could not be retrieved. InstallProgress マウントポイントを取得できませんでした。
|
The mount point could not be retrieved. InstallProgress マウントポイントを取得できませんでした。
|
||||||
The target volume is not empty. Are you sure you want to install anyway?\n\nNote: The 'system' folder will be a clean copy from the source volume, all other folders will be merged, whereas files and links that exist on both the source and target volume will be overwritten with the source volume version. InstallProgress インストール先パーティションにはデータがあります。それでもインストールしますか?\n\n注意:システムフォルダーはインストール元からそのままクリーンコピーされますが、その他のフォルダーはマージされ、両方のボリュームに存在するファイルやリンクはインストール元のバージョンで上書きされます。
|
The target volume is not empty. Are you sure you want to install anyway?\n\nNote: The 'system' folder will be a clean copy from the source volume, all other folders will be merged, whereas files and links that exist on both the source and target volume will be overwritten with the source volume version. InstallProgress インストール先パーティションにはデータがあります。それでもインストールしますか?\n\n注意:システムフォルダーはインストール元からそのままクリーンコピーされますが、その他のフォルダーはマージされ、両方のボリュームに存在するファイルやリンクはインストール元のバージョンで上書きされます。
|
||||||
|
|||||||
@@ -1,4 +1,4 @@
|
|||||||
1 polish x-vnd.Haiku-Installer 2099988747
|
1 polish x-vnd.Haiku-Installer 2066726304
|
||||||
So behind the other menu entries towards the bottom of the file, add something similar to these lines:\n\n InstallerApp Więc za innymi wpisami na samym dole pliku, dodaj coś podobnego do tych linii:\n\n
|
So behind the other menu entries towards the bottom of the file, add something similar to these lines:\n\n InstallerApp Więc za innymi wpisami na samym dole pliku, dodaj coś podobnego do tych linii:\n\n
|
||||||
Are you sure you want to abort the installation and restart the system? InstallerWindow Na pewno chcesz przerwać instalację i uruchomić ponownie system?
|
Are you sure you want to abort the installation and restart the system? InstallerWindow Na pewno chcesz przerwać instalację i uruchomić ponownie system?
|
||||||
\t}\n\n InstallerApp \t}\n\n
|
\t}\n\n InstallerApp \t}\n\n
|
||||||
@@ -12,6 +12,7 @@ With GRUB it's: (hdN,n)\n\n InstallerApp Z GRUBem jest: (hdN,n)\n\n
|
|||||||
\tsudo update-grub\n\n\n InstallerApp \tsudo update-grub\n\n\n
|
\tsudo update-grub\n\n\n InstallerApp \tsudo update-grub\n\n\n
|
||||||
Stop InstallerWindow In alert after pressing Stop Zatrzymaj
|
Stop InstallerWindow In alert after pressing Stop Zatrzymaj
|
||||||
Install progress: InstallerWindow Postęp instalacji:
|
Install progress: InstallerWindow Postęp instalacji:
|
||||||
|
2.2) GRUB 1\n InstallerApp 2.2) GRUB 1\n
|
||||||
Starting Installation. InstallProgress Rozpoczęcie instalacji.
|
Starting Installation. InstallProgress Rozpoczęcie instalacji.
|
||||||
This is alpha-quality software! It means there is a high risk of losing important data. Make frequent backups! You have been warned.\n\n\n InstallerApp To wciąż oprogramowanie w wersji alpha! Oznacza to, że występuje wysokie ryzyko utraty danych. Rób częste kopie zapasowe! Zostałeś ostrzeżony.\n\n\n
|
This is alpha-quality software! It means there is a high risk of losing important data. Make frequent backups! You have been warned.\n\n\n InstallerApp To wciąż oprogramowanie w wersji alpha! Oznacza to, że występuje wysokie ryzyko utraty danych. Rób częste kopie zapasowe! Zostałeś ostrzeżony.\n\n\n
|
||||||
Are you sure you want to abort the installation? InstallerWindow Czy na pewno chcesz przerwać instalację?
|
Are you sure you want to abort the installation? InstallerWindow Czy na pewno chcesz przerwać instalację?
|
||||||
@@ -37,6 +38,7 @@ Boot sector successfully written. InstallProgress Sektor rozruchowy został pom
|
|||||||
Performing installation. InstallProgress Wykonywanie instalacji.
|
Performing installation. InstallProgress Wykonywanie instalacji.
|
||||||
scanning… InstallerWindow skanowanie…
|
scanning… InstallerWindow skanowanie…
|
||||||
Set up boot menu InstallerWindow Konfiguruj menu rozruchu
|
Set up boot menu InstallerWindow Konfiguruj menu rozruchu
|
||||||
|
2.1) GRUB (since os-prober v1.44)\n InstallerApp 2.1) GRUB (od os-prober v1.44)\n
|
||||||
The first logical partition always has the number \"4\", regardless of the number of primary partitions.\n\n InstallerApp Pierwsza partycja logiczna ma zawsze numer \"4\", niezależnie od liczby partycji podstawowych.\n\n
|
The first logical partition always has the number \"4\", regardless of the number of primary partitions.\n\n InstallerApp Pierwsza partycja logiczna ma zawsze numer \"4\", niezależnie od liczby partycji podstawowych.\n\n
|
||||||
GRUB's naming scheme is still: (hdN,n)\n\n InstallerApp Sposób nazewnictwa GRUBa to wciąż: (hdN,n)\n\n
|
GRUB's naming scheme is still: (hdN,n)\n\n InstallerApp Sposób nazewnictwa GRUBa to wciąż: (hdN,n)\n\n
|
||||||
\tsudo <your favorite text editor> /boot/grub/menu.lst\n\n InstallerApp \tsudo <twój ulubiony edytor tekstu> /boot/grub/menu.lst\n\n
|
\tsudo <your favorite text editor> /boot/grub/menu.lst\n\n InstallerApp \tsudo <twój ulubiony edytor tekstu> /boot/grub/menu.lst\n\n
|
||||||
@@ -48,6 +50,7 @@ README InstallerApp README
|
|||||||
The destination disk may not have enough space. Try choosing a different disk or choose to not install optional items. InstallProgress Dysk docelowy może nie mieć wystarczającej ilości wolnego miejsca. Proszę wybrać inny dysk lub odznaczyć pakiety dodatkowe.
|
The destination disk may not have enough space. Try choosing a different disk or choose to not install optional items. InstallProgress Dysk docelowy może nie mieć wystarczającej ilości wolnego miejsca. Proszę wybrać inny dysk lub odznaczyć pakiety dodatkowe.
|
||||||
Please close the Boot Manager and DriveSetup windows before closing the Installer window. InstallerWindow Proszę zamknąć Menedżer Rozruchu i DriveSetup przed zamknięciem okna Instalatora.
|
Please close the Boot Manager and DriveSetup windows before closing the Installer window. InstallerWindow Proszę zamknąć Menedżer Rozruchu i DriveSetup przed zamknięciem okna Instalatora.
|
||||||
Scanning for disks… InstallerWindow Skanowanie w poszukiwaniu dysków…
|
Scanning for disks… InstallerWindow Skanowanie w poszukiwaniu dysków…
|
||||||
|
2.3) GRUB 2\n InstallerApp 2.3) GRUB 2\n
|
||||||
The disk can't be mounted. Please choose a different disk. InstallProgress Dysk nie może zostać zamontowany. Proszę spróbować wybrać inny dysk.
|
The disk can't be mounted. Please choose a different disk. InstallProgress Dysk nie może zostać zamontowany. Proszę spróbować wybrać inny dysk.
|
||||||
?? of ?? InstallerWindow Unknown progress ?? z ??
|
?? of ?? InstallerWindow Unknown progress ?? z ??
|
||||||
\tmenuentry \"Haiku Alpha\" {\n InstallerApp \tmenuentry \"Haiku Alpha\" {\n
|
\tmenuentry \"Haiku Alpha\" {\n InstallerApp \tmenuentry \"Haiku Alpha\" {\n
|
||||||
|
|||||||
@@ -1,4 +1,4 @@
|
|||||||
1 russian x-vnd.Haiku-Installer 2099988747
|
1 russian x-vnd.Haiku-Installer 3488795908
|
||||||
So behind the other menu entries towards the bottom of the file, add something similar to these lines:\n\n InstallerApp Поэтому в самом конце файла /boot/grub/menu.lst добавьте что-то вроде этого:\n\n
|
So behind the other menu entries towards the bottom of the file, add something similar to these lines:\n\n InstallerApp Поэтому в самом конце файла /boot/grub/menu.lst добавьте что-то вроде этого:\n\n
|
||||||
Are you sure you want to abort the installation and restart the system? InstallerWindow Вы уверены, что хотите прервать установку и перезагрузить компьютер?
|
Are you sure you want to abort the installation and restart the system? InstallerWindow Вы уверены, что хотите прервать установку и перезагрузить компьютер?
|
||||||
\t}\n\n InstallerApp \t}\n\n
|
\t}\n\n InstallerApp \t}\n\n
|
||||||
@@ -12,6 +12,7 @@ With GRUB it's: (hdN,n)\n\n InstallerApp В GRUB это: (hdN,n)\n\n
|
|||||||
\tsudo update-grub\n\n\n InstallerApp \tsudo update-grub\n\n
|
\tsudo update-grub\n\n\n InstallerApp \tsudo update-grub\n\n
|
||||||
Stop InstallerWindow In alert after pressing Stop Остановить
|
Stop InstallerWindow In alert after pressing Stop Остановить
|
||||||
Install progress: InstallerWindow Прогресс установки:
|
Install progress: InstallerWindow Прогресс установки:
|
||||||
|
2.2) GRUB 1\n InstallerApp 2.2) GRUB 1\n
|
||||||
Starting Installation. InstallProgress Запуск установки.
|
Starting Installation. InstallProgress Запуск установки.
|
||||||
This is alpha-quality software! It means there is a high risk of losing important data. Make frequent backups! You have been warned.\n\n\n InstallerApp Это программное обеспечение пока еще находится в состоянии альфа качества! Это значит, что есть большой риск потери данных. Чаще делайте резервные копии! Мы вас предупредили.\n\n
|
This is alpha-quality software! It means there is a high risk of losing important data. Make frequent backups! You have been warned.\n\n\n InstallerApp Это программное обеспечение пока еще находится в состоянии альфа качества! Это значит, что есть большой риск потери данных. Чаще делайте резервные копии! Мы вас предупредили.\n\n
|
||||||
Are you sure you want to abort the installation? InstallerWindow Вы уверены, что хотите прервать установку
|
Are you sure you want to abort the installation? InstallerWindow Вы уверены, что хотите прервать установку
|
||||||
@@ -37,6 +38,7 @@ Boot sector successfully written. InstallProgress Загрузочный сек
|
|||||||
Performing installation. InstallProgress Выполняется установка.
|
Performing installation. InstallProgress Выполняется установка.
|
||||||
scanning… InstallerWindow сканирование…
|
scanning… InstallerWindow сканирование…
|
||||||
Set up boot menu InstallerWindow Установить загрузочное меню
|
Set up boot menu InstallerWindow Установить загрузочное меню
|
||||||
|
2.1) GRUB (since os-prober v1.44)\n InstallerApp 2.1) GRUB (начиная с os-prober v1.44)\n
|
||||||
The first logical partition always has the number \"4\", regardless of the number of primary partitions.\n\n InstallerApp Первый логический (расширенный) раздел всегда имеет номер \"4\", вне зависимости от количества первичных разделов.\n\n
|
The first logical partition always has the number \"4\", regardless of the number of primary partitions.\n\n InstallerApp Первый логический (расширенный) раздел всегда имеет номер \"4\", вне зависимости от количества первичных разделов.\n\n
|
||||||
GRUB's naming scheme is still: (hdN,n)\n\n InstallerApp Схема именования GRUB по-прежнему такая: (hdN,n)\n\n
|
GRUB's naming scheme is still: (hdN,n)\n\n InstallerApp Схема именования GRUB по-прежнему такая: (hdN,n)\n\n
|
||||||
\tsudo <your favorite text editor> /boot/grub/menu.lst\n\n InstallerApp \tsudo <ваш текстовый редактор> /boot/grub/menu.lst\n\n
|
\tsudo <your favorite text editor> /boot/grub/menu.lst\n\n InstallerApp \tsudo <ваш текстовый редактор> /boot/grub/menu.lst\n\n
|
||||||
@@ -48,6 +50,7 @@ README InstallerApp Cопроводительная инструкция
|
|||||||
The destination disk may not have enough space. Try choosing a different disk or choose to not install optional items. InstallProgress На выбранном диске недостаточно места. Попробуйте выбрать другой диск или не устанавливайте опциональные пакеты.
|
The destination disk may not have enough space. Try choosing a different disk or choose to not install optional items. InstallProgress На выбранном диске недостаточно места. Попробуйте выбрать другой диск или не устанавливайте опциональные пакеты.
|
||||||
Please close the Boot Manager and DriveSetup windows before closing the Installer window. InstallerWindow Пожалуйста, закройте Менеджер загрузки и Разметки диска перед закрытием окна установщика.
|
Please close the Boot Manager and DriveSetup windows before closing the Installer window. InstallerWindow Пожалуйста, закройте Менеджер загрузки и Разметки диска перед закрытием окна установщика.
|
||||||
Scanning for disks… InstallerWindow Сканирование дисков…
|
Scanning for disks… InstallerWindow Сканирование дисков…
|
||||||
|
2.3) GRUB 2\n InstallerApp 2.3) GRUB 2\n
|
||||||
The disk can't be mounted. Please choose a different disk. InstallProgress Диск не может быть подключен. Пожалуйста, выберите другой диск.
|
The disk can't be mounted. Please choose a different disk. InstallProgress Диск не может быть подключен. Пожалуйста, выберите другой диск.
|
||||||
?? of ?? InstallerWindow Unknown progress ?? из ??
|
?? of ?? InstallerWindow Unknown progress ?? из ??
|
||||||
\tmenuentry \"Haiku Alpha\" {\n InstallerApp \tmenuentry \"Haiku Alpha\" {\n
|
\tmenuentry \"Haiku Alpha\" {\n InstallerApp \tmenuentry \"Haiku Alpha\" {\n
|
||||||
@@ -67,6 +70,7 @@ Installer System name Установщик
|
|||||||
You can't install the contents of a disk onto itself. Please choose a different disk. InstallProgress Вы не можете установить содержимое диска на тот же самый диск. Пожалуйста, выберите другой диск.
|
You can't install the contents of a disk onto itself. Please choose a different disk. InstallProgress Вы не можете установить содержимое диска на тот же самый диск. Пожалуйста, выберите другой диск.
|
||||||
??? InstallerWindow Unknown currently copied item ???
|
??? InstallerWindow Unknown currently copied item ???
|
||||||
\"n\" is the partition number, which for GRUB 2 starts with \"1\"\n InstallerApp \"n\" это номер раздела, который в GRUB 2 начинается с \"1\"\n
|
\"n\" is the partition number, which for GRUB 2 starts with \"1\"\n InstallerApp \"n\" это номер раздела, который в GRUB 2 начинается с \"1\"\n
|
||||||
|
Starting with os-prober v1.44 (e.g. in Ubuntu 11.04 or later), Haiku should be recognized out of the box. To add Haiku to the GRUB menu, open a Terminal and enter:\n\n InstallerApp Начиная с os-prober v1.44 (т.е. в Ubuntu 11.04 и старше), Haiku должна распознаваться из коробки. Чтобы добавить Haiku в меню GRUB, откройте Терминал и введите:\n\n
|
||||||
Quit DriveSetup InstallerWindow Закройте Разметку диска
|
Quit DriveSetup InstallerWindow Закройте Разметку диска
|
||||||
\"N\" is the hard disk number, starting with \"0\".\n InstallerApp \"N\" это номер жесткого диска, начинающийся с \"0\".\n\
|
\"N\" is the hard disk number, starting with \"0\".\n InstallerApp \"N\" это номер жесткого диска, начинающийся с \"0\".\n\
|
||||||
Hide optional packages InstallerWindow Скрыть опциональные пакеты
|
Hide optional packages InstallerWindow Скрыть опциональные пакеты
|
||||||
@@ -109,6 +113,7 @@ So below the heading that must not be edited, add something similar to these lin
|
|||||||
Are you sure you want to to stop the installation? InstallerWindow Вы уверены, что хотите прервать установку?
|
Are you sure you want to to stop the installation? InstallerWindow Вы уверены, что хотите прервать установку?
|
||||||
Onto: InstallerWindow На диск:
|
Onto: InstallerWindow На диск:
|
||||||
Please close the Boot Manager window before closing the Installer window. InstallerWindow Пожалуйста, закройте Менеджер Загрузки перед закрытием окна установщика.
|
Please close the Boot Manager window before closing the Installer window. InstallerWindow Пожалуйста, закройте Менеджер Загрузки перед закрытием окна установщика.
|
||||||
|
3) When you successfully boot into Haiku for the first time, make sure to read our \"Welcome\" and \"Userguide\" documentation. There are links on the Desktop and in WebPositive's bookmarks.\n\n InstallerApp 3) Когда вы первый раз успешно загрузитесь в установленную Haiku, не забудьте прочесть нашу документацию, доступную в файлах \"Welcome\" и \"Userguide\". Ссылки на них находятся на рабочем столе и в закладках WebPositive.\n
|
||||||
Tools InstallerWindow Инструменты
|
Tools InstallerWindow Инструменты
|
||||||
The mount point could not be retrieved. InstallProgress Невозможно определить точку подключения.
|
The mount point could not be retrieved. InstallProgress Невозможно определить точку подключения.
|
||||||
The target volume is not empty. Are you sure you want to install anyway?\n\nNote: The 'system' folder will be a clean copy from the source volume, all other folders will be merged, whereas files and links that exist on both the source and target volume will be overwritten with the source volume version. InstallProgress Выбранный диск не является пустым.\nВы уверены, что хотите продолжить?\n\nВнимание: Папка 'system' будет полностью перезаписана, все остальные папки будут объединены, а файлы и папки, которые существуют на обоих носителях будут перезаписаны с установочного диска.
|
The target volume is not empty. Are you sure you want to install anyway?\n\nNote: The 'system' folder will be a clean copy from the source volume, all other folders will be merged, whereas files and links that exist on both the source and target volume will be overwritten with the source volume version. InstallProgress Выбранный диск не является пустым.\nВы уверены, что хотите продолжить?\n\nВнимание: Папка 'system' будет полностью перезаписана, все остальные папки будут объединены, а файлы и папки, которые существуют на обоих носителях будут перезаписаны с установочного диска.
|
||||||
|
|||||||
@@ -1,4 +1,4 @@
|
|||||||
1 russian x-vnd.Haiku-LaunchBox 4192523522
|
1 russian x-vnd.Haiku-LaunchBox 3016105370
|
||||||
New LaunchBox Создать
|
New LaunchBox Создать
|
||||||
Set description… LaunchBox Изменить описание…
|
Set description… LaunchBox Изменить описание…
|
||||||
Vertical layout LaunchBox Расположить вертикально
|
Vertical layout LaunchBox Расположить вертикально
|
||||||
@@ -24,6 +24,7 @@ Name Panel LaunchBox Название панели
|
|||||||
Add button here LaunchBox Добавить кнопку
|
Add button here LaunchBox Добавить кнопку
|
||||||
Description for '%3' LaunchBox Описание для '%3'
|
Description for '%3' LaunchBox Описание для '%3'
|
||||||
Settings LaunchBox Настройки
|
Settings LaunchBox Настройки
|
||||||
|
Failed to launch 'something', error in Pad data. LaunchBox Не удалось запустить 'something', ошибка в данных панели.
|
||||||
Pad %1 LaunchBox Панель %1
|
Pad %1 LaunchBox Панель %1
|
||||||
Close LaunchBox Закрыть
|
Close LaunchBox Закрыть
|
||||||
Failed to send 'open folder' command to Tracker.\n\nError: LaunchBox Не удалось послать команду "открыть папку" в Tracker.\n\nОшибка:
|
Failed to send 'open folder' command to Tracker.\n\nError: LaunchBox Не удалось послать команду "открыть папку" в Tracker.\n\nОшибка:
|
||||||
|
|||||||
@@ -1,10 +1,11 @@
|
|||||||
1 russian x-vnd.Be-MAIL 1799353819
|
1 russian x-vnd.Be-MAIL 2834665561
|
||||||
View Mail Вид
|
View Mail Вид
|
||||||
%d - Date Mail %d - Дата
|
%d - Date Mail %d - Дата
|
||||||
Attach attributes: Mail Прикрепление атрибутов:
|
Attach attributes: Mail Прикрепление атрибутов:
|
||||||
Inconsistency occurred in the undo/redo buffer. Mail Произошло несоответствие в буфере отмены/повтора.
|
Inconsistency occurred in the undo/redo buffer. Mail Произошло несоответствие в буфере отмены/повтора.
|
||||||
An error occurred trying to save the attachment. Mail Произошла ошибка при попытке сохранить вложение.
|
An error occurred trying to save the attachment. Mail Произошла ошибка при попытке сохранить вложение.
|
||||||
Copy to new Mail Копировать в новое
|
Copy to new Mail Копировать в новое
|
||||||
|
Leave as 'New' Mail Do not translate New - this is non-localizable e-mail status Оставить как 'New'
|
||||||
Edit Mail Изменить
|
Edit Mail Изменить
|
||||||
Print Mail Печать
|
Print Mail Печать
|
||||||
<none> Mail <пусто>
|
<none> Mail <пусто>
|
||||||
@@ -62,12 +63,15 @@ Print… Mail Печать…
|
|||||||
Warn unencodable: Mail Предупреждать о невозможности декодировать:
|
Warn unencodable: Mail Предупреждать о невозможности декодировать:
|
||||||
Quit Mail Выход
|
Quit Mail Выход
|
||||||
%n - Full name Mail %n - Полное имя
|
%n - Full name Mail %n - Полное имя
|
||||||
|
Read Mail Прочитанным
|
||||||
|
UTF-8 Mail This string is used as a key to set default message compose encoding. It must be correct IANA name from http://cgit.haiku-os.org/haiku/tree/src/kits/textencoding/character_sets.cpp Translate it only if you want to change default message compose encoding for your locale. If you don't know what is it and why it may needs changing, just leave \"UTF-8\". UTF-8
|
||||||
Trash Mail Корзина
|
Trash Mail Корзина
|
||||||
Default account: Mail Аккаунт по умолчанию:
|
Default account: Mail Аккаунт по умолчанию:
|
||||||
Size: Mail Размер:
|
Size: Mail Размер:
|
||||||
Account from mail Mail Использовать аккаунт из письма
|
Account from mail Mail Использовать аккаунт из письма
|
||||||
Edit signatures… Mail Изменить подписи…
|
Edit signatures… Mail Изменить подписи…
|
||||||
New Mail Новое
|
New Mail Новое
|
||||||
|
Attachments: Mail Вложения:
|
||||||
On Mail Включить
|
On Mail Включить
|
||||||
Set to %s Mail Пометить как %s
|
Set to %s Mail Пометить как %s
|
||||||
Forward Mail Переслать
|
Forward Mail Переслать
|
||||||
|
|||||||
@@ -1,4 +1,4 @@
|
|||||||
1 russian x-vnd.Haiku-MediaConverter 3564609505
|
1 russian x-vnd.Haiku-MediaConverter 296071315
|
||||||
Video using parameters form settings MediaConverter Видео использует параметры из настроек
|
Video using parameters form settings MediaConverter Видео использует параметры из настроек
|
||||||
Video encoding: MediaConverter Кодирование видео:
|
Video encoding: MediaConverter Кодирование видео:
|
||||||
No audio Audio codecs list Без аудио
|
No audio Audio codecs list Без аудио
|
||||||
@@ -21,6 +21,7 @@ Low MediaConverter Низкое
|
|||||||
Conversion completed MediaConverter Конвертация завершена
|
Conversion completed MediaConverter Конвертация завершена
|
||||||
Audio: MediaConverter-FileInfo Аудио:
|
Audio: MediaConverter-FileInfo Аудио:
|
||||||
OK MediaConverter-FileInfo ОК
|
OK MediaConverter-FileInfo ОК
|
||||||
|
seconds MediaFileInfo секунд
|
||||||
Source files MediaConverter Исходящие файлы
|
Source files MediaConverter Исходящие файлы
|
||||||
Cancelling MediaConverter Отменяется
|
Cancelling MediaConverter Отменяется
|
||||||
%d byte MediaFileInfo %d байт
|
%d byte MediaFileInfo %d байт
|
||||||
|
|||||||
@@ -1,4 +1,4 @@
|
|||||||
1 belarusian x-vnd.Haiku-MediaPlayer 607764928
|
1 belarusian x-vnd.Haiku-MediaPlayer 2389197979
|
||||||
raw audio MediaPlayer-InfoWin нефарматаване аўдыё
|
raw audio MediaPlayer-InfoWin нефарматаване аўдыё
|
||||||
Location MediaPlayer-InfoWin Месцазнаходжанне
|
Location MediaPlayer-InfoWin Месцазнаходжанне
|
||||||
1.85 : 1 (American) MediaPlayer-Main 1.85 : 1 (Амерыка)
|
1.85 : 1 (American) MediaPlayer-Main 1.85 : 1 (Амерыка)
|
||||||
@@ -70,6 +70,7 @@ Select all MediaPlayer-PlaylistWindow Пазначыць усе
|
|||||||
Move Entry MediaPlayer-MovePLItemsCmd Перамясціць элемент
|
Move Entry MediaPlayer-MovePLItemsCmd Перамясціць элемент
|
||||||
Open MediaPlayer-PlaylistWindow Адкрыць
|
Open MediaPlayer-PlaylistWindow Адкрыць
|
||||||
Stop playing. MediaPlayer-Main Спыніць прайгранне.
|
Stop playing. MediaPlayer-Main Спыніць прайгранне.
|
||||||
|
The file '%filename' could not be opened.\n\n MediaPlayer-Main Файл '%filename' немагчыма адкрыць.\n\n
|
||||||
Error: MediaPlayer-RemovePLItemsCmd Памылка:
|
Error: MediaPlayer-RemovePLItemsCmd Памылка:
|
||||||
Audio MediaPlayer-InfoWin Аўдыё
|
Audio MediaPlayer-InfoWin Аўдыё
|
||||||
Internal error (malformed message). Saving the playlist failed. MediaPlayer-PlaylistWindow Унутраная памылка (няправільнае паведамленне). Плэйліст не захаваны.
|
Internal error (malformed message). Saving the playlist failed. MediaPlayer-PlaylistWindow Унутраная памылка (няправільнае паведамленне). Плэйліст не захаваны.
|
||||||
|
|||||||
@@ -1,4 +1,4 @@
|
|||||||
1 german x-vnd.Haiku-MediaPlayer 607764928
|
1 german x-vnd.Haiku-MediaPlayer 2389197979
|
||||||
raw audio MediaPlayer-InfoWin Raw-Audio
|
raw audio MediaPlayer-InfoWin Raw-Audio
|
||||||
Location MediaPlayer-InfoWin Ort
|
Location MediaPlayer-InfoWin Ort
|
||||||
1.85 : 1 (American) MediaPlayer-Main 1,85 : 1 (Amerikanisch)
|
1.85 : 1 (American) MediaPlayer-Main 1,85 : 1 (Amerikanisch)
|
||||||
@@ -70,6 +70,7 @@ Select all MediaPlayer-PlaylistWindow Alles auswählen
|
|||||||
Move Entry MediaPlayer-MovePLItemsCmd Eintrag verschieben
|
Move Entry MediaPlayer-MovePLItemsCmd Eintrag verschieben
|
||||||
Open MediaPlayer-PlaylistWindow Öffnen
|
Open MediaPlayer-PlaylistWindow Öffnen
|
||||||
Stop playing. MediaPlayer-Main Wiedergabe stoppen.
|
Stop playing. MediaPlayer-Main Wiedergabe stoppen.
|
||||||
|
The file '%filename' could not be opened.\n\n MediaPlayer-Main Die Datei '%filename' konnte nicht geöffnet werden.\n\n
|
||||||
Error: MediaPlayer-RemovePLItemsCmd Fehler:
|
Error: MediaPlayer-RemovePLItemsCmd Fehler:
|
||||||
Audio MediaPlayer-InfoWin Audio
|
Audio MediaPlayer-InfoWin Audio
|
||||||
Internal error (malformed message). Saving the playlist failed. MediaPlayer-PlaylistWindow Interner Fehler (falsche Nachrichtenstruktur). Speichern der Playliste fehlgeschlagen.
|
Internal error (malformed message). Saving the playlist failed. MediaPlayer-PlaylistWindow Interner Fehler (falsche Nachrichtenstruktur). Speichern der Playliste fehlgeschlagen.
|
||||||
|
|||||||
@@ -1,4 +1,4 @@
|
|||||||
1 finnish x-vnd.Haiku-MediaPlayer 607764928
|
1 finnish x-vnd.Haiku-MediaPlayer 2389197979
|
||||||
raw audio MediaPlayer-InfoWin raakaääni
|
raw audio MediaPlayer-InfoWin raakaääni
|
||||||
Location MediaPlayer-InfoWin Sijainti
|
Location MediaPlayer-InfoWin Sijainti
|
||||||
1.85 : 1 (American) MediaPlayer-Main 1.85 : 1 (amerikkalainen)
|
1.85 : 1 (American) MediaPlayer-Main 1.85 : 1 (amerikkalainen)
|
||||||
@@ -70,6 +70,7 @@ Select all MediaPlayer-PlaylistWindow Valitse kaikki
|
|||||||
Move Entry MediaPlayer-MovePLItemsCmd Siirrä kappale
|
Move Entry MediaPlayer-MovePLItemsCmd Siirrä kappale
|
||||||
Open MediaPlayer-PlaylistWindow Avaa
|
Open MediaPlayer-PlaylistWindow Avaa
|
||||||
Stop playing. MediaPlayer-Main Lopeta soittaminen.
|
Stop playing. MediaPlayer-Main Lopeta soittaminen.
|
||||||
|
The file '%filename' could not be opened.\n\n MediaPlayer-Main Tiedostoa ’%filename’ ei voitu avata.\n\n
|
||||||
Error: MediaPlayer-RemovePLItemsCmd Virhe:
|
Error: MediaPlayer-RemovePLItemsCmd Virhe:
|
||||||
Audio MediaPlayer-InfoWin Ääni
|
Audio MediaPlayer-InfoWin Ääni
|
||||||
Internal error (malformed message). Saving the playlist failed. MediaPlayer-PlaylistWindow Sisäinen virhe (vääränmuotoinen viesti). Soittoluettelon tallentaminen epäonnistui.
|
Internal error (malformed message). Saving the playlist failed. MediaPlayer-PlaylistWindow Sisäinen virhe (vääränmuotoinen viesti). Soittoluettelon tallentaminen epäonnistui.
|
||||||
|
|||||||
@@ -1,4 +1,4 @@
|
|||||||
1 japanese x-vnd.Haiku-MediaPlayer 1271117245
|
1 japanese x-vnd.Haiku-MediaPlayer 3052550296
|
||||||
Location MediaPlayer-InfoWin 場所
|
Location MediaPlayer-InfoWin 場所
|
||||||
1.85 : 1 (American) MediaPlayer-Main 1.85 : 1 (American)
|
1.85 : 1 (American) MediaPlayer-Main 1.85 : 1 (American)
|
||||||
%d kHz MediaPlayer-InfoWin %d kHz
|
%d kHz MediaPlayer-InfoWin %d kHz
|
||||||
@@ -69,6 +69,7 @@ Select all MediaPlayer-PlaylistWindow すべて選択
|
|||||||
Move Entry MediaPlayer-MovePLItemsCmd 項目の移動
|
Move Entry MediaPlayer-MovePLItemsCmd 項目の移動
|
||||||
Open MediaPlayer-PlaylistWindow 開く
|
Open MediaPlayer-PlaylistWindow 開く
|
||||||
Stop playing. MediaPlayer-Main 再生を停止
|
Stop playing. MediaPlayer-Main 再生を停止
|
||||||
|
The file '%filename' could not be opened.\n\n MediaPlayer-Main ファイル'%filename'を開けませんでした。\n\n
|
||||||
Error: MediaPlayer-RemovePLItemsCmd エラー:
|
Error: MediaPlayer-RemovePLItemsCmd エラー:
|
||||||
Audio MediaPlayer-InfoWin オーディオ
|
Audio MediaPlayer-InfoWin オーディオ
|
||||||
Internal error (malformed message). Saving the playlist failed. MediaPlayer-PlaylistWindow 内部エラー (不正なメッセージ)。プレイリストの保存に失敗しました。
|
Internal error (malformed message). Saving the playlist failed. MediaPlayer-PlaylistWindow 内部エラー (不正なメッセージ)。プレイリストの保存に失敗しました。
|
||||||
|
|||||||
@@ -1,4 +1,4 @@
|
|||||||
1 polish x-vnd.Haiku-MediaPlayer 607764928
|
1 polish x-vnd.Haiku-MediaPlayer 2389197979
|
||||||
raw audio MediaPlayer-InfoWin czysty dźwięk
|
raw audio MediaPlayer-InfoWin czysty dźwięk
|
||||||
Location MediaPlayer-InfoWin Położenie
|
Location MediaPlayer-InfoWin Położenie
|
||||||
1.85 : 1 (American) MediaPlayer-Main 1.85 : 1 (amerykańskie)
|
1.85 : 1 (American) MediaPlayer-Main 1.85 : 1 (amerykańskie)
|
||||||
@@ -70,6 +70,7 @@ Select all MediaPlayer-PlaylistWindow Zaznacz wszystko
|
|||||||
Move Entry MediaPlayer-MovePLItemsCmd Przeniesienie wpisu
|
Move Entry MediaPlayer-MovePLItemsCmd Przeniesienie wpisu
|
||||||
Open MediaPlayer-PlaylistWindow Otwórz
|
Open MediaPlayer-PlaylistWindow Otwórz
|
||||||
Stop playing. MediaPlayer-Main Zatrzymaj odtwarzanie.
|
Stop playing. MediaPlayer-Main Zatrzymaj odtwarzanie.
|
||||||
|
The file '%filename' could not be opened.\n\n MediaPlayer-Main Plik '%filename' nie może być otwarty.\n\n
|
||||||
Error: MediaPlayer-RemovePLItemsCmd Błąd:
|
Error: MediaPlayer-RemovePLItemsCmd Błąd:
|
||||||
Audio MediaPlayer-InfoWin Dźwięk
|
Audio MediaPlayer-InfoWin Dźwięk
|
||||||
Internal error (malformed message). Saving the playlist failed. MediaPlayer-PlaylistWindow Błąd wewnętrzny (nieprawidłowa wiadomość). Zapisywanie listy odtwarzania nie powiodło się.
|
Internal error (malformed message). Saving the playlist failed. MediaPlayer-PlaylistWindow Błąd wewnętrzny (nieprawidłowa wiadomość). Zapisywanie listy odtwarzania nie powiodło się.
|
||||||
|
|||||||
@@ -1,13 +1,19 @@
|
|||||||
1 russian x-vnd.Haiku-MediaPlayer 4123753294
|
1 russian x-vnd.Haiku-MediaPlayer 3699683348
|
||||||
|
raw audio MediaPlayer-InfoWin raw аудио
|
||||||
|
Location MediaPlayer-InfoWin Путь
|
||||||
1.85 : 1 (American) MediaPlayer-Main 1.85 : 1 (Американский)
|
1.85 : 1 (American) MediaPlayer-Main 1.85 : 1 (Американский)
|
||||||
|
%d kHz MediaPlayer-InfoWin %d кГц
|
||||||
Stream settings MediaPlayer-Main Настройки потока
|
Stream settings MediaPlayer-Main Настройки потока
|
||||||
<unknown> PlaylistItem-album <неизвестно>
|
<unknown> PlaylistItem-album <неизвестно>
|
||||||
Scale controls in full screen mode MediaPlayer-SettingsWindow Масштабировать кнопки управления в полноэкранном режиме
|
Scale controls in full screen mode MediaPlayer-SettingsWindow Масштабировать кнопки управления в полноэкранном режиме
|
||||||
Video MediaPlayer-InfoWin Видео
|
Video MediaPlayer-InfoWin Видео
|
||||||
Subtitle size: MediaPlayer-SettingsWindow Размер субтитров:
|
Subtitle size: MediaPlayer-SettingsWindow Размер субтитров:
|
||||||
Save Playlist MediaPlayer-PlaylistWindow Сохранить плейлист
|
Save Playlist MediaPlayer-PlaylistWindow Сохранить плейлист
|
||||||
|
<no media> MediaPlayer-InfoWin <нет данных>
|
||||||
|
(not supported) MediaPlayer-InfoWin (не поддерживается)
|
||||||
None of the files you wanted to play appear to be media files. MediaPlayer-Main Ни один из файлов, которые вы хотели проиграть, не является медиа файлом.
|
None of the files you wanted to play appear to be media files. MediaPlayer-Main Ни один из файлов, которые вы хотели проиграть, не является медиа файлом.
|
||||||
Saving the playlist failed.\n\nError: MediaPlayer-PlaylistWindow Ошибка сохранения плейлиста.\n\nОшибка:
|
Saving the playlist failed.\n\nError: MediaPlayer-PlaylistWindow Ошибка сохранения плейлиста.\n\nОшибка:
|
||||||
|
%.3f kHz MediaPlayer-InfoWin %.3f кГц
|
||||||
New player… MediaPlayer-Main Новый плеер…
|
New player… MediaPlayer-Main Новый плеер…
|
||||||
100% scale MediaPlayer-Main Масштаб 100%
|
100% scale MediaPlayer-Main Масштаб 100%
|
||||||
Subtitle placement: MediaPlayer-SettingsWindow Расположение субтитров:
|
Subtitle placement: MediaPlayer-SettingsWindow Расположение субтитров:
|
||||||
@@ -32,8 +38,10 @@ Close window after playing audio MediaPlayer-SettingsWindow Закрыть ок
|
|||||||
Full volume MediaPlayer-SettingsWindow На полной громкости
|
Full volume MediaPlayer-SettingsWindow На полной громкости
|
||||||
Drop files to play MediaPlayer-Main Перетащите файлы для проигрывания
|
Drop files to play MediaPlayer-Main Перетащите файлы для проигрывания
|
||||||
TogglePlaying MediaPlayer-Main Переключить воспроизведение
|
TogglePlaying MediaPlayer-Main Переключить воспроизведение
|
||||||
|
Copyright MediaPlayer-InfoWin Авторские права
|
||||||
Cancel MediaPlayer-SettingsWindow Отмена
|
Cancel MediaPlayer-SettingsWindow Отмена
|
||||||
Loop audio MediaPlayer-SettingsWindow Зацикливать аудио
|
Loop audio MediaPlayer-SettingsWindow Зацикливать аудио
|
||||||
|
Container MediaPlayer-InfoWin Контейнер
|
||||||
Nothing to Play MediaPlayer-Main Нечего проигрывать
|
Nothing to Play MediaPlayer-Main Нечего проигрывать
|
||||||
Muted MediaPlayer-SettingsWindow Без звука
|
Muted MediaPlayer-SettingsWindow Без звука
|
||||||
Quit MediaPlayer-Main Выход
|
Quit MediaPlayer-Main Выход
|
||||||
@@ -90,6 +98,7 @@ Play MediaPlayer-Main Играть
|
|||||||
Remove Entries into Trash MediaPlayer-RemovePLItemsCmd Удалить записи в корзину
|
Remove Entries into Trash MediaPlayer-RemovePLItemsCmd Удалить записи в корзину
|
||||||
200% scale MediaPlayer-Main Масштаб 200%
|
200% scale MediaPlayer-Main Масштаб 200%
|
||||||
It appears the media server is not running.\nWould you like to start it ? MediaPlayer-Main Похоже, что медиа сервер не запущен\nВы хотите его запустить?
|
It appears the media server is not running.\nWould you like to start it ? MediaPlayer-Main Похоже, что медиа сервер не запущен\nВы хотите его запустить?
|
||||||
|
Duration MediaPlayer-InfoWin Длительность
|
||||||
Aspect ratio MediaPlayer-Main Соотношение сторон
|
Aspect ratio MediaPlayer-Main Соотношение сторон
|
||||||
Error: MediaPlayer-Main Ошибка:
|
Error: MediaPlayer-Main Ошибка:
|
||||||
Large MediaPlayer-SettingsWindow крупный
|
Large MediaPlayer-SettingsWindow крупный
|
||||||
@@ -104,6 +113,7 @@ Move file to Trash MediaPlayer-PlaylistWindow Переместить в кор
|
|||||||
URI MediaPlayer-Main URI
|
URI MediaPlayer-Main URI
|
||||||
Mute MediaPlayer-Main Выключить звук
|
Mute MediaPlayer-Main Выключить звук
|
||||||
Toggle pause/play. MediaPlayer-Main Переключить паузу/проигрывание.
|
Toggle pause/play. MediaPlayer-Main Переключить паузу/проигрывание.
|
||||||
|
min MediaPlayer-InfoWin Minutes мин
|
||||||
Small MediaPlayer-SettingsWindow маленький
|
Small MediaPlayer-SettingsWindow маленький
|
||||||
Randomize MediaPlayer-PlaylistWindow Перемешать
|
Randomize MediaPlayer-PlaylistWindow Перемешать
|
||||||
Off Subtitles menu Выключить
|
Off Subtitles menu Выключить
|
||||||
@@ -125,7 +135,10 @@ Always on top MediaPlayer-Main Всегда сверху
|
|||||||
Remove Entry into Trash MediaPlayer-RemovePLItemsCmd Переместить запись в корзину
|
Remove Entry into Trash MediaPlayer-RemovePLItemsCmd Переместить запись в корзину
|
||||||
Save MediaPlayer-Main Сохранить
|
Save MediaPlayer-Main Сохранить
|
||||||
<nothing to undo> MediaPlayer-PlaylistWindow <нечего отменять>
|
<nothing to undo> MediaPlayer-PlaylistWindow <нечего отменять>
|
||||||
|
Mono MediaPlayer-InfoWin Моно
|
||||||
|
File info MediaPlayer-InfoWin Информация о файле
|
||||||
Save MediaPlayer-PlaylistWindow Сохранить
|
Save MediaPlayer-PlaylistWindow Сохранить
|
||||||
|
%d Bit MediaPlayer-InfoWin %d Бит
|
||||||
Remove MediaPlayer-PlaylistWindow Удалить
|
Remove MediaPlayer-PlaylistWindow Удалить
|
||||||
Full screen MediaPlayer-Main На весь экран
|
Full screen MediaPlayer-Main На весь экран
|
||||||
Open file… MediaPlayer-Main Открыть файл…
|
Open file… MediaPlayer-Main Открыть файл…
|
||||||
|
|||||||
@@ -1,4 +1,4 @@
|
|||||||
1 russian x-vnd.Haiku-NetworkStatus 853756860
|
1 russian x-vnd.Haiku-NetworkStatus 2931949650
|
||||||
NetworkStatus options:\n\t--deskbar\tautomatically add replicant to Deskbar\n\t--help\t\tprint this info and exit\n NetworkStatus NetworkStatus опции:\n\t--deskbar\tавтоматически добавить репликант в Deskbar\n\t--help\t\tвывести этот текст и выйти\n
|
NetworkStatus options:\n\t--deskbar\tautomatically add replicant to Deskbar\n\t--help\t\tprint this info and exit\n NetworkStatus NetworkStatus опции:\n\t--deskbar\tавтоматически добавить репликант в Deskbar\n\t--help\t\tвывести этот текст и выйти\n
|
||||||
You can run NetworkStatus in a window or install it in the Deskbar. NetworkStatus Вы можете запустить состояние сети в окне или установить его в Deskbar.
|
You can run NetworkStatus in a window or install it in the Deskbar. NetworkStatus Вы можете запустить состояние сети в окне или установить его в Deskbar.
|
||||||
<no wireless networks found> NetworkStatusView <беспроводные сети не обнаружены>
|
<no wireless networks found> NetworkStatusView <беспроводные сети не обнаружены>
|
||||||
@@ -10,6 +10,7 @@ NetworkStatus\n\twritten by %1 and Hugo Santos\n\t%2, Haiku, Inc.\n NetworkStatu
|
|||||||
Netmask NetworkStatusView Маска подсети
|
Netmask NetworkStatusView Маска подсети
|
||||||
Broadcast NetworkStatusView Широковещательный
|
Broadcast NetworkStatusView Широковещательный
|
||||||
Unknown NetworkStatusView Неизвестно
|
Unknown NetworkStatusView Неизвестно
|
||||||
|
Network Status NetworkStatusView Статус сети
|
||||||
Ready NetworkStatusView Подключен
|
Ready NetworkStatusView Подключен
|
||||||
No stateful configuration NetworkStatusView Нет полноценной конфигурации
|
No stateful configuration NetworkStatusView Нет полноценной конфигурации
|
||||||
%ifaceName information:\n NetworkStatusView Информация о %ifaceName:\n
|
%ifaceName information:\n NetworkStatusView Информация о %ifaceName:\n
|
||||||
|
|||||||
@@ -0,0 +1,2 @@
|
|||||||
|
1 russian x-vnd.Haiku-PackageManager 501934476
|
||||||
|
PackageManager System name Пакетный менеджер
|
||||||
@@ -1,4 +1,4 @@
|
|||||||
1 russian x-vnd.Haiku-PoorMan 995747556
|
1 russian x-vnd.Haiku-PoorMan 1267330937
|
||||||
Website location PoorMan Расположение сайта
|
Website location PoorMan Расположение сайта
|
||||||
Error Server PoorMan Ошибка сервера
|
Error Server PoorMan Ошибка сервера
|
||||||
Settings… PoorMan Настройки…
|
Settings… PoorMan Настройки…
|
||||||
@@ -8,7 +8,7 @@ Hits: %lu PoorMan Посещений: %lu
|
|||||||
Web folder: PoorMan Веб-папка:
|
Web folder: PoorMan Веб-папка:
|
||||||
Default PoorMan По умолчанию
|
Default PoorMan По умолчанию
|
||||||
Save log console selection PoorMan Сохранить выделенную часть лога консоли
|
Save log console selection PoorMan Сохранить выделенную часть лога консоли
|
||||||
Run server PoorMan Запустиь сервер
|
Run server PoorMan Запустить сервер
|
||||||
PoorMan settings PoorMan Настройки PoorMan
|
PoorMan settings PoorMan Настройки PoorMan
|
||||||
Clear hit counter PoorMan Очистить счетчик посещений
|
Clear hit counter PoorMan Очистить счетчик посещений
|
||||||
Copy PoorMan Копировать
|
Copy PoorMan Копировать
|
||||||
@@ -24,13 +24,17 @@ Advanced PoorMan Дополнительно
|
|||||||
OK PoorMan ОК
|
OK PoorMan ОК
|
||||||
Status: Stopped PoorMan Статус: остановлен
|
Status: Stopped PoorMan Статус: остановлен
|
||||||
Dir Created PoorMan Создана директория
|
Dir Created PoorMan Создана директория
|
||||||
|
Log to file PoorMan Сохранять лог в файл
|
||||||
Quit PoorMan Выход
|
Quit PoorMan Выход
|
||||||
Hits: 0 PoorMan Посещений: 0
|
Hits: 0 PoorMan Посещений: 0
|
||||||
Save log console PoorMan Сохранить лог консоли
|
Save log console PoorMan Сохранить лог консоли
|
||||||
Edit PoorMan Изменить
|
Edit PoorMan Изменить
|
||||||
|
Create Log File PoorMan Создать лог файл
|
||||||
|
Log to console PoorMan Выводить лог в консоль
|
||||||
Directory: (none) PoorMan Директория: (отсутствует)
|
Directory: (none) PoorMan Директория: (отсутствует)
|
||||||
Please choose the folder to publish on the web.\n\nYou can have PoorMan create a default \"public_html\" in your home folder.\nOr you select one of your own folders instead. PoorMan Пожалуйста, выберите папку для публикации.\n\nPoorMan может создать папку по умолчанию public_html в вашей домашней папке.\nИли вы можете выбрать любую другую папку.
|
Please choose the folder to publish on the web.\n\nYou can have PoorMan create a default \"public_html\" in your home folder.\nOr you select one of your own folders instead. PoorMan Пожалуйста, выберите папку для публикации.\n\nPoorMan может создать папку по умолчанию public_html в вашей домашней папке.\nИли вы можете выбрать любую другую папку.
|
||||||
Log To Console PoorMan Выводить лог в консоль
|
Log To Console PoorMan Выводить лог в консоль
|
||||||
|
Connections PoorMan Соединения
|
||||||
Status: Running PoorMan Статус: работает
|
Status: Running PoorMan Статус: работает
|
||||||
connections PoorMan соединения
|
connections PoorMan соединения
|
||||||
Controls PoorMan Управление
|
Controls PoorMan Управление
|
||||||
@@ -38,6 +42,7 @@ Send file listing if there's no start page PoorMan Отобразить спи
|
|||||||
Error Dir PoorMan Ошибка директории
|
Error Dir PoorMan Ошибка директории
|
||||||
Select all PoorMan Выделить всё
|
Select all PoorMan Выделить всё
|
||||||
File PoorMan Файл
|
File PoorMan Файл
|
||||||
|
File Logging PoorMan Логирование в файл
|
||||||
Save console selections as… PoorMan Сохранить выделение консоли как…
|
Save console selections as… PoorMan Сохранить выделение консоли как…
|
||||||
File logging PoorMan Логирование в файл
|
File logging PoorMan Логирование в файл
|
||||||
Select web folder PoorMan Выбрать папку для публикации
|
Select web folder PoorMan Выбрать папку для публикации
|
||||||
@@ -53,6 +58,7 @@ Create log file PoorMan Создать лог файл…
|
|||||||
Starting up... PoorMan Запуск...
|
Starting up... PoorMan Запуск...
|
||||||
Site PoorMan Сайт
|
Site PoorMan Сайт
|
||||||
Cancel PoorMan Отмена
|
Cancel PoorMan Отмена
|
||||||
|
Console logging PoorMan Логирование в консоль
|
||||||
Cannot start the server PoorMan Не удалось запустить сервер
|
Cannot start the server PoorMan Не удалось запустить сервер
|
||||||
Select PoorMan Выбрать
|
Select PoorMan Выбрать
|
||||||
Save console as… PoorMan Сохранить содержимое консоли как…
|
Save console as… PoorMan Сохранить содержимое консоли как…
|
||||||
|
|||||||
@@ -1,26 +1,31 @@
|
|||||||
1 russian x-vnd.Haiku-PowerStatus 751886234
|
1 russian x-vnd.Haiku-PowerStatus 3419486861
|
||||||
Design capacity low warning: PowerStatus Уровень полного разряда:
|
Design capacity low warning: PowerStatus Уровень полного разряда:
|
||||||
Show percent PowerStatus Показать в процентах
|
Show percent PowerStatus Показать в процентах
|
||||||
Design capacity: PowerStatus Штатная емкость:
|
Design capacity: PowerStatus Штатная емкость:
|
||||||
|
mW PowerStatus мВт
|
||||||
Type: PowerStatus Тип:
|
Type: PowerStatus Тип:
|
||||||
non-rechargeable PowerStatus неперезаряжаемая
|
non-rechargeable PowerStatus неперезаряжаемая
|
||||||
Empty battery slot PowerStatus Пустой слот батареи
|
Empty battery slot PowerStatus Пустой слот батареи
|
||||||
|
mV PowerStatus мВ
|
||||||
Run in window PowerStatus Запустить в окне
|
Run in window PowerStatus Запустить в окне
|
||||||
About PowerStatus О программе
|
About PowerStatus О программе
|
||||||
PowerStatus System name Электропитание
|
PowerStatus System name Электропитание
|
||||||
PowerStatus PowerStatus Электропитание
|
PowerStatus PowerStatus Электропитание
|
||||||
|
mWh PowerStatus мВтч
|
||||||
Battery info… PowerStatus Информация о батарее…
|
Battery info… PowerStatus Информация о батарее…
|
||||||
Damaged battery PowerStatus Поврежденная батарея
|
Damaged battery PowerStatus Поврежденная батарея
|
||||||
Show time PowerStatus Показать время
|
Show time PowerStatus Показать время
|
||||||
Last full charge: PowerStatus Последняя полная зарядка:
|
Last full charge: PowerStatus Последняя полная зарядка:
|
||||||
Battery unused PowerStatus Батарея не используется
|
Battery unused PowerStatus Батарея не используется
|
||||||
Extended battery info PowerStatus Расширенная информация о батарее
|
Extended battery info PowerStatus Расширенная информация о батарее
|
||||||
|
mA PowerStatus мА
|
||||||
Current rate: PowerStatus Текущее значение:
|
Current rate: PowerStatus Текущее значение:
|
||||||
discharging PowerStatus разрядка
|
discharging PowerStatus разрядка
|
||||||
Show text label PowerStatus Показать текстовую метку
|
Show text label PowerStatus Показать текстовую метку
|
||||||
About… PowerStatus О программе…
|
About… PowerStatus О программе…
|
||||||
Model number: PowerStatus Номер модели:
|
Model number: PowerStatus Номер модели:
|
||||||
Install in Deskbar PowerStatus Установить в Deskbar
|
Install in Deskbar PowerStatus Установить в Deskbar
|
||||||
|
mAh PowerStatus мАч
|
||||||
Capacity: PowerStatus Емкость:
|
Capacity: PowerStatus Емкость:
|
||||||
Battery discharging PowerStatus Батарея разряжается
|
Battery discharging PowerStatus Батарея разряжается
|
||||||
Serial number: PowerStatus Серийный номер:
|
Serial number: PowerStatus Серийный номер:
|
||||||
|
|||||||
@@ -1,4 +1,4 @@
|
|||||||
1 russian x-vnd.haiku-screenshot 1697748405
|
1 russian x-vnd.haiku-screenshot 1721618877
|
||||||
seconds ScreenshotWindow секунд
|
seconds ScreenshotWindow секунд
|
||||||
Desktop ScreenshotWindow Рабочий стол
|
Desktop ScreenshotWindow Рабочий стол
|
||||||
Include window border ScreenshotWindow Включая заголовок окна
|
Include window border ScreenshotWindow Включая заголовок окна
|
||||||
@@ -9,6 +9,7 @@ Cancel ScreenshotWindow Отмена
|
|||||||
Name: ScreenshotWindow Имя:
|
Name: ScreenshotWindow Имя:
|
||||||
Choose folder ScreenshotWindow Выбрать папку
|
Choose folder ScreenshotWindow Выбрать папку
|
||||||
Save ScreenshotWindow Сохранить
|
Save ScreenshotWindow Сохранить
|
||||||
|
Overwrite ScreenshotWindow Перезаписать
|
||||||
Choose folder... ScreenshotWindow Выбрать папку…
|
Choose folder... ScreenshotWindow Выбрать папку…
|
||||||
Please select ScreenshotWindow Пожалуйста выберите
|
Please select ScreenshotWindow Пожалуйста выберите
|
||||||
Save as: ScreenshotWindow Сохранить как:
|
Save as: ScreenshotWindow Сохранить как:
|
||||||
|
|||||||
@@ -1,16 +1,22 @@
|
|||||||
1 russian x-vnd.Haiku-SoundRecorder 4189888707
|
1 russian x-vnd.Haiku-SoundRecorder 2149017672
|
||||||
Loop RecorderWindow Закольцевать
|
Loop RecorderWindow Закольцевать
|
||||||
Cannot find default audio hardware RecorderWindow Не найдено аудио оборудование
|
Cannot find default audio hardware RecorderWindow Не найдено аудио оборудование
|
||||||
Cannot find the temporary file created to hold the new recording RecorderWindow Не найден временный файл, созданный для хранения новой записи
|
Cannot find the temporary file created to hold the new recording RecorderWindow Не найден временный файл, созданный для хранения новой записи
|
||||||
|
Sample size: RecorderWindow Размер сэмпла:
|
||||||
Nothing to play RecorderWindow Нечего играть
|
Nothing to play RecorderWindow Нечего играть
|
||||||
|
Duration: RecorderWindow Продолжительность:
|
||||||
Some of the files don't appear to be audio files RecorderWindow Некоторые из файлов не являются аудио файлами
|
Some of the files don't appear to be audio files RecorderWindow Некоторые из файлов не являются аудио файлами
|
||||||
File info RecorderWindow Информация о файле:
|
File info RecorderWindow Информация о файле:
|
||||||
Drop files here SoundListView Перенесите сюда файлы
|
Drop files here SoundListView Перенесите сюда файлы
|
||||||
Input RecorderWindow Вход
|
Input RecorderWindow Вход
|
||||||
Stop RecorderWindow Стоп
|
Stop RecorderWindow Стоп
|
||||||
|
Format: RecorderWindow Формат:
|
||||||
Sound List RecorderWindow Список звуков
|
Sound List RecorderWindow Список звуков
|
||||||
|
Compression: RecorderWindow Сжатие:
|
||||||
Rewind RecorderWindow Перемотка
|
Rewind RecorderWindow Перемотка
|
||||||
|
Sample rate: RecorderWindow Частота дискретизации:
|
||||||
Invalid audio files RecorderWindow Неверные аудио файлы
|
Invalid audio files RecorderWindow Неверные аудио файлы
|
||||||
|
seconds RecorderWindow секунд
|
||||||
OK RecorderWindow ОК
|
OK RecorderWindow ОК
|
||||||
Cannot open the temporary file created to hold the new recording RecorderWindow Невозможно открыть временный файл, созданный для хранения новой записи
|
Cannot open the temporary file created to hold the new recording RecorderWindow Невозможно открыть временный файл, созданный для хранения новой записи
|
||||||
None of the files appear to be audio files RecorderWindow Ни один из файлов не является файлом аудио
|
None of the files appear to be audio files RecorderWindow Ни один из файлов не является файлом аудио
|
||||||
@@ -18,11 +24,14 @@ Input: RecorderWindow Звуковой вход:
|
|||||||
Forward RecorderWindow Вперед
|
Forward RecorderWindow Вперед
|
||||||
Play RecorderWindow Играть
|
Play RecorderWindow Играть
|
||||||
SoundRecorder System name Звукозапись
|
SoundRecorder System name Звукозапись
|
||||||
|
Channels: RecorderWindow Каналы:
|
||||||
|
bits RecorderWindow бит
|
||||||
None RecorderWindow Нет
|
None RecorderWindow Нет
|
||||||
Record RecorderWindow Запись
|
Record RecorderWindow Запись
|
||||||
Sample size: RecorderWindow Размер сэмпла:
|
Sample size: RecorderWindow Размер сэмпла:
|
||||||
Cannot recognize this file as a media file RecorderWindow Не удается распознать файл как файл медиа
|
Cannot recognize this file as a media file RecorderWindow Не удается распознать файл как файл медиа
|
||||||
Format: RecorderWindow Формат:
|
Format: RecorderWindow Формат:
|
||||||
|
File name: RecorderWindow Имя файла:
|
||||||
Cannot connect to the selected sound input RecorderWindow Невозможно подключиться к выбранному звуковому входу
|
Cannot connect to the selected sound input RecorderWindow Невозможно подключиться к выбранному звуковому входу
|
||||||
Cannot get the file to play RecorderWindow Невозможно воспроизвести файл
|
Cannot get the file to play RecorderWindow Невозможно воспроизвести файл
|
||||||
Cannot record a sound that long RecorderWindow Невозможно записать звук такой длины
|
Cannot record a sound that long RecorderWindow Невозможно записать звук такой длины
|
||||||
|
|||||||
@@ -1,4 +1,4 @@
|
|||||||
1 russian x-vnd.Haiku-Terminal 516768360
|
1 russian x-vnd.Haiku-Terminal 1054657081
|
||||||
Not found. Terminal TermWindow Текст не найден
|
Not found. Terminal TermWindow Текст не найден
|
||||||
Switch Terminals Terminal TermWindow Переключить терминалы
|
Switch Terminals Terminal TermWindow Переключить терминалы
|
||||||
Change directory Terminal TermView Сменить каталог
|
Change directory Terminal TermView Сменить каталог
|
||||||
@@ -38,6 +38,7 @@ Color schema: Terminal AppearancePrefView Цветовая схема:
|
|||||||
OK Terminal SetTitleWindow ОК
|
OK Terminal SetTitleWindow ОК
|
||||||
Background Terminal AppearancePrefView Фона
|
Background Terminal AppearancePrefView Фона
|
||||||
Use selection Terminal FindWindow Использовать выделенный текст
|
Use selection Terminal FindWindow Использовать выделенный текст
|
||||||
|
Green on Black Terminal colors schema Зелёный на чёрном
|
||||||
The process \"%1\" is still running.\nIf you close the tab, the process will be killed. Terminal TermWindow Процесс \"%1\" все еще работает.\nЕсли вы закроете вкладку, то этот процесс будет уничтожен.
|
The process \"%1\" is still running.\nIf you close the tab, the process will be killed. Terminal TermWindow Процесс \"%1\" все еще работает.\nЕсли вы закроете вкладку, то этот процесс будет уничтожен.
|
||||||
Size: Terminal AppearancePrefView Размер:
|
Size: Terminal AppearancePrefView Размер:
|
||||||
Cannot execute \"%command\":\n\t%error Terminal Shell Невозможно выполнить \"%command\":\n\t%error
|
Cannot execute \"%command\":\n\t%error Terminal Shell Невозможно выполнить \"%command\":\n\t%error
|
||||||
|
|||||||
@@ -0,0 +1,112 @@
|
|||||||
|
1 japanese x-vnd.Haiku-WebPositive 2461471851
|
||||||
|
Username: Authentication Panel ユーザー名:
|
||||||
|
Show tabs if only one page is open. Settings Window ページが一つだけ開いている場合もタブを表示する。
|
||||||
|
Copy URL to clipboard Download Window URL をクリップボードにコピー
|
||||||
|
Cancel Settings Window キャンセル
|
||||||
|
Close window WebPositive Window ウィンドウを閉じる
|
||||||
|
Quit WebPositive 終了
|
||||||
|
The downloads folder could not be opened.\n\nError: %error Download Window Don't translate variable %error ダウンロードフォルダーを開けませんでした。\n\nエラー: %error
|
||||||
|
Clear history WebPositive Window 履歴のクリア
|
||||||
|
WebPositive System name WebPositive
|
||||||
|
Yesterday WebPositive Window 昨日
|
||||||
|
Authentication Required Authentication Panel 認証が必要です
|
||||||
|
Default standard font size: Settings Window 規定の標準フォントサイズ:
|
||||||
|
Start page: Settings Window スタートページ:
|
||||||
|
History WebPositive Window 履歴
|
||||||
|
Error opening downloads folder Download Window ダウンロードフォルダーを開く際にエラーが発生しました
|
||||||
|
Paste WebPositive Window 貼り付け
|
||||||
|
Settings Settings Window 設定
|
||||||
|
%seconds seconds left Download Window 残り %seconds 秒
|
||||||
|
Window WebPositive Window ウィンドウ
|
||||||
|
Decrease size WebPositive Window サイズを小さく
|
||||||
|
Serif font: Settings Window セリフフォント:
|
||||||
|
Use proxy server to connect to the internet. Settings Window インターネット接続にプロキシーサーバーを使用する。
|
||||||
|
Page source WebPositive Window ページのソース
|
||||||
|
Next WebPositive Window 次
|
||||||
|
Find next WebPositive Window 次を検索
|
||||||
|
Download folder: Settings Window ダウンロードフォルダ:
|
||||||
|
Edit WebPositive Window 編集
|
||||||
|
Over %hours hours left Download Window 残り %hours 時間以上
|
||||||
|
Cancel Authentication Panel キャンセル
|
||||||
|
Match case WebPositive Window 大文字小文字を区別
|
||||||
|
Search page: Settings Window 検索ページ:
|
||||||
|
Show Home Button Settings Window ホームボタンを表示する
|
||||||
|
Zoom text only WebPositive Window テキストのみ拡大
|
||||||
|
Requesting: WebPositive Window 要求中:
|
||||||
|
Default fixed font size: Settings Window 規定の固定フォントサイズ:
|
||||||
|
Close tab WebPositive Window タブを閉じる
|
||||||
|
Over 1 hour left Download Window 残り 1 時間以上
|
||||||
|
Quit WebPositive Window 終了
|
||||||
|
Standard font: Settings Window 標準フォント:
|
||||||
|
Restart Download Window 再起動
|
||||||
|
Proxy server Settings Window プロキシサーバー
|
||||||
|
New window WebPositive Window 新規ウィンドウ
|
||||||
|
Open Download Window 開く
|
||||||
|
Reload WebPositive Window 再読み込み
|
||||||
|
Downloads Download Window ダウンロード
|
||||||
|
Sans serif font: Settings Window サンセリフフォント:
|
||||||
|
Over %days days left Download Window 残り %days 日以上
|
||||||
|
Forward WebPositive Window 進む
|
||||||
|
Revert Settings Window 元に戻す
|
||||||
|
Fixed font: Settings Window 固定幅フォント:
|
||||||
|
Cut WebPositive Window 切り取り
|
||||||
|
Bookmark this page WebPositive Window このページをブックマーク
|
||||||
|
Open downloads folder Download Window ダウンロードフォルダーを開く
|
||||||
|
Auto-hide interface in fullscreen mode. Settings Window フルスクリーンモードで自動的にインターフェースを隠す。
|
||||||
|
Number of days to keep links in History menu: Settings Window 履歴メニューにリンクを残す日数:
|
||||||
|
Hide Download Window 隠す
|
||||||
|
Reset size WebPositive Window サイズをリセット
|
||||||
|
Find: WebPositive Window 検索:
|
||||||
|
Increase size WebPositive Window サイズを大きく
|
||||||
|
Over 1 day left Download Window 残り 1 日以上
|
||||||
|
Downloads WebPositive Window ダウンロード
|
||||||
|
Apply Settings Window 適用
|
||||||
|
Bookmark info WebPositive Window ブックマーク情報
|
||||||
|
Size: Font Selection view サイズ:
|
||||||
|
Fonts Settings Window フォント
|
||||||
|
Close WebPositive Window 閉じる
|
||||||
|
OK Download Window OK
|
||||||
|
Open blank page Settings Window 空白のページを開く
|
||||||
|
New tabs: Settings Window 新しいタブ:
|
||||||
|
Cancel WebPositive Window キャンセル
|
||||||
|
Open all WebPositive Window すべて開く
|
||||||
|
Clear URL Bar クリア
|
||||||
|
Cut URL Bar 切り取り
|
||||||
|
Clear WebPositive Window クリア
|
||||||
|
Remove Download Window 削除
|
||||||
|
Find WebPositive Window 検索
|
||||||
|
Find previous WebPositive Window 前を検索
|
||||||
|
Settings WebPositive Window 設定
|
||||||
|
Proxy server address: Settings Window プロキシサーバのアドレス:
|
||||||
|
Proxy server port: Settings Window プロキシサーバポート:
|
||||||
|
Bookmarks WebPositive Window ブックマーク
|
||||||
|
%minutes minutes Download Window %minutes 分
|
||||||
|
Paste URL Bar 貼り付け
|
||||||
|
/s) Download Window ...as in 'per second' /s)
|
||||||
|
Hide password text Authentication Panel パスワードテキストを隠す
|
||||||
|
The quick brown fox jumps over the lazy dog. Font Selection view Don't translate this literally ! Use a phrase showing all chars from A to Z. The quick brown fox jumps over the lazy dog.
|
||||||
|
Over 1 minute left Download Window 残り 1 分以上
|
||||||
|
Open start page Settings Window スタートページを開く
|
||||||
|
Continue downloads WebPositive ダウンロードを続ける
|
||||||
|
Cancel Download Window キャンセル
|
||||||
|
Open search page Settings Window 検索ページを開く
|
||||||
|
Password: Authentication Panel パスワード:
|
||||||
|
Back WebPositive Window 戻る
|
||||||
|
New browser window Download Window 新規ブラウザウィンドウ
|
||||||
|
Today WebPositive Window 今日
|
||||||
|
1 second left Download Window 残り 1 秒
|
||||||
|
Remember username and password for this site Authentication Panel このサイトのユーザー名とパスワードを記憶する
|
||||||
|
New tab WebPositive Window 新規タブ
|
||||||
|
Downloads in progress WebPositive ダウンロードが進行中です
|
||||||
|
Style: Font Selection view スタイル:
|
||||||
|
General Settings Window 一般
|
||||||
|
Fullscreen WebPositive Window 全画面表示
|
||||||
|
View WebPositive Window 表示
|
||||||
|
Previous WebPositive Window 前へ
|
||||||
|
Copy WebPositive Window コピー
|
||||||
|
OK Authentication Panel OK
|
||||||
|
Auto-hide mouse pointer. Settings Window マウスポインターを自動的に隠す。
|
||||||
|
Copy URL Bar コピー
|
||||||
|
OK WebPositive Window OK
|
||||||
|
Manage bookmarks WebPositive Window ブックマークの管理
|
||||||
|
New windows: Settings Window 新規ウィンドウ:
|
||||||
@@ -1,12 +1,14 @@
|
|||||||
1 russian x-vnd.Be-WORK 932379173
|
1 russian x-vnd.Be-WORK 4170489135
|
||||||
Invalid argument: %s\n Workspaces Неверный аргумент: %s\n
|
Invalid argument: %s\n Workspaces Неверный аргумент: %s\n
|
||||||
Quit Workspaces Выход
|
Quit Workspaces Выход
|
||||||
Workspaces System name Рабочие столы
|
Workspaces System name Рабочие столы
|
||||||
Change workspace count… Workspaces Изменить количество столов…
|
Change workspace count… Workspaces Изменить количество столов…
|
||||||
|
Remove replicant Workspaces Удалить репликант
|
||||||
About Workspaces… Workspaces О программе…
|
About Workspaces… Workspaces О программе…
|
||||||
Workspaces\nwritten by %1, and %2.\n\nCopyright %3, Haiku.\n\nSend windows behind using the Option key. Move windows to front using the Control key.\n Workspaces Workspaces\n\nразработал %1 и %2.\n\nCopyright %3, Haiku.\n\nДля отправки окна в фон используйте клавишу Windows.\nДля активации окна используйте клавишу Ctrl.\n
|
Workspaces\nwritten by %1, and %2.\n\nCopyright %3, Haiku.\n\nSend windows behind using the Option key. Move windows to front using the Control key.\n Workspaces Workspaces\n\nразработал %1 и %2.\n\nCopyright %3, Haiku.\n\nДля отправки окна в фон используйте клавишу Windows.\nДля активации окна используйте клавишу Ctrl.\n
|
||||||
Show window border Workspaces Показывать рамку окна
|
Show window border Workspaces Показывать рамку окна
|
||||||
Auto-raise Workspaces Всплывать при наведении
|
Auto-raise Workspaces Всплывать при наведении
|
||||||
OK Workspaces ОК
|
OK Workspaces ОК
|
||||||
Always on top Workspaces Всегда сверху
|
Always on top Workspaces Всегда сверху
|
||||||
|
Live in the Deskbar Workspaces Жить в Deskbar
|
||||||
Show window tab Workspaces Показывать заголовок окна
|
Show window tab Workspaces Показывать заголовок окна
|
||||||
|
|||||||
@@ -1,4 +1,4 @@
|
|||||||
1 belarusian x-vnd.Haiku-libtracker 3695303004
|
1 belarusian x-vnd.Haiku-libtracker 2415801168
|
||||||
common B_COMMON_DIRECTORY агульны
|
common B_COMMON_DIRECTORY агульны
|
||||||
OK WidgetAttributeText ОК
|
OK WidgetAttributeText ОК
|
||||||
Icon view VolumeWindow Від іконак
|
Icon view VolumeWindow Від іконак
|
||||||
@@ -20,6 +20,7 @@ Recent documents FavoritesMenu Нядаўнія дакменты
|
|||||||
Modified QueryPoseView Зменены
|
Modified QueryPoseView Зменены
|
||||||
Created ContainerWindow Створаны
|
Created ContainerWindow Створаны
|
||||||
Error %error loading add-On %name. ContainerWindow Памылка %error пры загрузцы add-On %name
|
Error %error loading add-On %name. ContainerWindow Памылка %error пры загрузцы add-On %name
|
||||||
|
If you %ifYouDoAction the settings folder, %osName may not behave properly!\n\nAre you sure you want to do this? FSUtils Калi вы %ifYouDoAction каталог наладак, %osName можа паводзіць сябе неадэкватна!\n\nВы ўпэўнены што жадаеце зрабіць гэта?
|
||||||
contains SelectionWindow месціць
|
contains SelectionWindow месціць
|
||||||
Sorry, you can't save things at the root of your system. FilePanelPriv Прабачце, вы не можаце захоўваць нешта ў карнявым каталозе сістэмы.
|
Sorry, you can't save things at the root of your system. FilePanelPriv Прабачце, вы не можаце захоўваць нешта ў карнявым каталозе сістэмы.
|
||||||
Show shared volumes on Desktop SettingsView Паказаць на Дэсктопе тамы з агульным доступам
|
Show shared volumes on Desktop SettingsView Паказаць на Дэсктопе тамы з агульным доступам
|
||||||
@@ -89,6 +90,7 @@ Cut FilePanelPriv Выразаць
|
|||||||
Replace FilePanelPriv Замяніць
|
Replace FilePanelPriv Замяніць
|
||||||
Select all VolumeWindow Выбраць усё
|
Select all VolumeWindow Выбраць усё
|
||||||
Opens with: InfoWindow Адкрыць з:
|
Opens with: InfoWindow Адкрыць з:
|
||||||
|
If you %ifYouDoAction the mime settings, %osName may not behave properly!\n\nAre you sure you want to do this? FSUtils Калi вы %ifYouDoAction наладкі mime, %osName можа паводзіць сябе неадэкватна!\n\nВы ўпэўнены што жадаеце зрабіць гэта?
|
||||||
Open ContainerWindow Адкрыць
|
Open ContainerWindow Адкрыць
|
||||||
Error calculating folder size. InfoWindow Памылка пры падліку памеру каталога.
|
Error calculating folder size. InfoWindow Памылка пры падліку памеру каталога.
|
||||||
New folder FilePanelPriv Новы каталог
|
New folder FilePanelPriv Новы каталог
|
||||||
@@ -117,6 +119,7 @@ Move to Trash ContainerWindow Перамясціць у Сметніцу
|
|||||||
Move to ContainerWindow Перамясціць у
|
Move to ContainerWindow Перамясціць у
|
||||||
Create %s clipping PoseView Стварыць %s выразку
|
Create %s clipping PoseView Стварыць %s выразку
|
||||||
Set new link target InfoWindow Пазначыць новы адрас спасылкі
|
Set new link target InfoWindow Пазначыць новы адрас спасылкі
|
||||||
|
If you %ifYouDoAction the system folder or its contents, you won't be able to boot %osName!\n\nAre you sure you want to do this?\n\nTo %toDoAction the system folder or its contents anyway, hold down the Shift key and click \"%toConfirmAction\". FSUtils Калi вы %ifYouDoAction сістэмны каталог або яго змеціва, вы не зможаце запусціць %osName!\n\nВы ўпэўнены што жадаеце зрабіць гэта?\n\nКаб %toDoAction сістэмны каталог, націсніце клавiшу Shift і клікніце \"%toConfirmAction\".
|
||||||
Save as Query template: FindPanel Захаваць як шаблон Запыту
|
Save as Query template: FindPanel Захаваць як шаблон Запыту
|
||||||
preferences B_PREFERENCES_DIRECTORY наладкі
|
preferences B_PREFERENCES_DIRECTORY наладкі
|
||||||
Cancel FSUtils Адмена
|
Cancel FSUtils Адмена
|
||||||
@@ -140,6 +143,7 @@ Could not open \"%document\" with application \"%app\" (%error). FSUtils Не
|
|||||||
Sorry, saving more than one item is not allowed. FilePanelPriv Прабачце, захаванне больш чым аднаго элемента не дазволена.
|
Sorry, saving more than one item is not allowed. FilePanelPriv Прабачце, захаванне больш чым аднаго элемента не дазволена.
|
||||||
Searching for disks to mount… StatusWindow Пошук дыскаў для мантавання...
|
Searching for disks to mount… StatusWindow Пошук дыскаў для мантавання...
|
||||||
New folder FSUtils Новы каталог
|
New folder FSUtils Новы каталог
|
||||||
|
If you %ifYouDoAction the common folder, %osName may not behave properly!\n\nAre you sure you want to do this?\n\nTo %toDoAction the common folder anyway, hold down the Shift key and click \"%toConfirmAction\". FSUtils Калi вы %ifYouDoAction агульны каталог, %osName можа паводзіць сябе неадэкватна!\n\nВы ўпэўнены што жадаеце зрабіць гэта?\n\nКаб %toDoAction агульны каталог, націсніце клавiшу Shift і клікніце \"%toConfirmAction\".
|
||||||
Free space color SettingsView Колер свабоднага месца
|
Free space color SettingsView Колер свабоднага месца
|
||||||
Cut ContainerWindow Выразаць
|
Cut ContainerWindow Выразаць
|
||||||
Remove FindPanel Выдаліць
|
Remove FindPanel Выдаліць
|
||||||
@@ -171,7 +175,6 @@ Edit favorites… FilePanelPriv Правіць Выбранае...
|
|||||||
Create relative link ContainerWindow Стварыць адносную спасылку
|
Create relative link ContainerWindow Стварыць адносную спасылку
|
||||||
Copy ContainerWindow Капіяваць
|
Copy ContainerWindow Капіяваць
|
||||||
Size PoseView Памер
|
Size PoseView Памер
|
||||||
If you %ifYouDoAction the home folder, %osName may not behave properly! Are you sure you want to do this? To %toDoAction the home folder anyway, hold down the Shift key and click \"%toConfirmAction\". FSUtils Калi вы %ifYouDoAction хатні каталог, %osName можа паводзіць сябе неадэкватна! Вы ўпэўнены што жадаеце зрабіць гэта? Каб %toDoAction хатні каталог, націсніце клавiшу Shift і клікніце \"%toConfirmAction\".
|
|
||||||
Location OpenWithWindow Месцазнаходжанне
|
Location OpenWithWindow Месцазнаходжанне
|
||||||
Force identify ContainerWindow ідэнтыфікаваць прымусова
|
Force identify ContainerWindow ідэнтыфікаваць прымусова
|
||||||
Duplicate ContainerWindow Дуплікаваць
|
Duplicate ContainerWindow Дуплікаваць
|
||||||
@@ -195,7 +198,6 @@ New DeskWindow Новы
|
|||||||
Open InfoWindow Адкрыць
|
Open InfoWindow Адкрыць
|
||||||
64 x 64 ContainerWindow 64 x 64
|
64 x 64 ContainerWindow 64 x 64
|
||||||
Replace all FSUtils Замяніць усё
|
Replace all FSUtils Замяніць усё
|
||||||
The application \"%appname\" does not support the type of document you are about to open. Are you sure you want to proceed? If you know that the application supports the document type, you should contact the publisher of the application and ask them to update their application to list the type of your document as supported. OpenWithWindow Праграма \"%appname\" не падтрымлівае тып дакументу які вы жадаеце адкрыць. Сапраўды жадаеце пряцягваць? Калі вы упэўнены, што праграма сумяшчальна з гэтым тыпам файлаў, паведаміце пра гэта аўтарам праграмы і папрасіце дакументаваць гэта ў новай версіі.
|
|
||||||
Preparing to restore items… StatusWindow Падрыхтоўка да аднаўлення элементаў...
|
Preparing to restore items… StatusWindow Падрыхтоўка да аднаўлення элементаў...
|
||||||
Replace other file WidgetAttributeText Замяніць іншы файл
|
Replace other file WidgetAttributeText Замяніць іншы файл
|
||||||
Some of the selected items cannot be moved to the Trash. Would you like to delete them instead? (This operation cannot be reverted.) PoseView Некаторыя з выбраных элементаў нельга адправіць у Сметніцу. Жадаеце выдаліць іх беззваротна?
|
Some of the selected items cannot be moved to the Trash. Would you like to delete them instead? (This operation cannot be reverted.) PoseView Некаторыя з выбраных элементаў нельга адправіць у Сметніцу. Жадаеце выдаліць іх беззваротна?
|
||||||
@@ -220,7 +222,6 @@ Name PoseView Імя
|
|||||||
Group FilePermissionsView Група
|
Group FilePermissionsView Група
|
||||||
Version: InfoWindow Версія:
|
Version: InfoWindow Версія:
|
||||||
Created: InfoWindow Створана:
|
Created: InfoWindow Створана:
|
||||||
If you %ifYouDoAction the mime settings, %osName may not behave properly! Are you sure you want to do this? To %toDoAction the mime settings anyway, click \"%toConfirmAction\". FSUtils Калi вы %ifYouDoAction наладкі mime, %osName можа паводзіць сябе неадэкватна! Вы ўпэўнены што жадаеце зрабіць гэта? Каб %toDoAction наладкі mime, клікніце \"%toConfirmAction\".
|
|
||||||
\nShould this be fixed? FSUtils \nЦі трэба гэта паправіць?
|
\nShould this be fixed? FSUtils \nЦі трэба гэта паправіць?
|
||||||
Copying: StatusWindow Капіяванне:
|
Copying: StatusWindow Капіяванне:
|
||||||
Capacity: InfoWindow Ёмістасць:
|
Capacity: InfoWindow Ёмістасць:
|
||||||
@@ -252,6 +253,7 @@ The file \"%name\" already exists in the specified folder. Do you want to replac
|
|||||||
Cancel ContainerWindow Адмена
|
Cancel ContainerWindow Адмена
|
||||||
Only the boot disk AutoMounterSettings Толькі загрузачны дыск
|
Only the boot disk AutoMounterSettings Толькі загрузачны дыск
|
||||||
Trash TrackerSettingsWindow Сметніца
|
Trash TrackerSettingsWindow Сметніца
|
||||||
|
If you %ifYouDoAction the config folder, %osName may not behave properly!\n\nAre you sure you want to do this? FSUtils Калi вы %ifYouDoAction каталог канфігурацыі, %osName можа паводзіць сябе неадэкватна!\n\nВы ўпэўнены што жадаеце зрабіць гэта?
|
||||||
Unmount ContainerWindow Размантаваць
|
Unmount ContainerWindow Размантаваць
|
||||||
Copy layout ContainerWindow Капіяваць макет
|
Copy layout ContainerWindow Капіяваць макет
|
||||||
label too long PoseView метка занадта доўгая
|
label too long PoseView метка занадта доўгая
|
||||||
@@ -280,7 +282,6 @@ Rename TextWidget Button label, 'Rename' (en), 'Umbenennen' (de) Перайме
|
|||||||
Paused: click to resume or stop StatusWindow Паўза: клікніце, каб працягваць або спыніцца
|
Paused: click to resume or stop StatusWindow Паўза: клікніце, каб працягваць або спыніцца
|
||||||
Preferred for %type OpenWithWindow Пажаданая для %type
|
Preferred for %type OpenWithWindow Пажаданая для %type
|
||||||
GiB WidgetAttributeText ГіБ
|
GiB WidgetAttributeText ГіБ
|
||||||
If you %ifYouDoAction the common folder, %osName may not behave properly! Are you sure you want to do this? To %toDoAction the common folder anyway, hold down the Shift key and click \"%toConfirmAction\". FSUtils Калi вы %ifYouDoAction агульны каталог, %osName можа паводзіць сябе неадэкватна! Вы ўпэўнены што жадаеце зрабіць гэта? Каб %toDoAction агульны каталог, націсніце клавiшу Shift і клікніце \"%toConfirmAction\".
|
|
||||||
There was an error deleting \"%name\":\n\t%error FSUtils Адбылася памылка пры выдаленні \"%name\":\n\t%error
|
There was an error deleting \"%name\":\n\t%error FSUtils Адбылася памылка пры выдаленні \"%name\":\n\t%error
|
||||||
Paste FilePanelPriv Уставіць
|
Paste FilePanelPriv Уставіць
|
||||||
Copy more ContainerWindow Капіяваць яшчэ
|
Copy more ContainerWindow Капіяваць яшчэ
|
||||||
@@ -338,6 +339,7 @@ Handles any file OpenWithWindow Працуе з любым файлам
|
|||||||
Get info FilePanelPriv Атрымаць інфармацыю
|
Get info FilePanelPriv Атрымаць інфармацыю
|
||||||
32 x 32 DeskWindow 32 x 32
|
32 x 32 DeskWindow 32 x 32
|
||||||
Cancel FilePanelPriv Адмена
|
Cancel FilePanelPriv Адмена
|
||||||
|
The application \"%appname\" does not support the type of document you are about to open.\nAre you sure you want to proceed?\n\nIf you know that the application supports the document type, you should contact the publisher of the application and ask them to update their application to list the type of your document as supported. OpenWithWindow Праграма \"%appname\" не падтрымлівае тып дакументу які вы жадаеце адкрыць.\n\nСапраўды жадаеце пряцягваць?\n\nКалі вы упэўнены, што праграма сумяшчальна з гэтым тыпам файлаў, паведаміце пра гэта аўтарам праграмы і папрасіце дакументаваць гэта ў новай версіі.
|
||||||
Disks DirMenu Дыскі
|
Disks DirMenu Дыскі
|
||||||
New folder %ld FSUtils Новы каталог %ld
|
New folder %ld FSUtils Новы каталог %ld
|
||||||
All BeOS disks AutoMounterSettings Усе дыскі BeOS
|
All BeOS disks AutoMounterSettings Усе дыскі BeOS
|
||||||
@@ -375,6 +377,7 @@ Preferences… ContainerWindow Наладкі...
|
|||||||
Move PoseView Перамясціць
|
Move PoseView Перамясціць
|
||||||
Open and make preferred OpenWithWindow Адкрыць і зрабіць пажаданай
|
Open and make preferred OpenWithWindow Адкрыць і зрабіць пажаданай
|
||||||
Are you sure you want to delete the selected item(s)? This operation cannot be reverted. FSUtils Вы ўпэўненыя, что жадаеце беззваротна выдаліць выбраны(я) элемент(ы)?
|
Are you sure you want to delete the selected item(s)? This operation cannot be reverted. FSUtils Вы ўпэўненыя, что жадаеце беззваротна выдаліць выбраны(я) элемент(ы)?
|
||||||
|
If you %ifYouDoAction the home folder, %osName may not behave properly!\n\nAre you sure you want to do this?\n\nTo %toDoAction the home folder anyway, hold down the Shift key and click \"%toConfirmAction\". FSUtils Калi вы %ifYouDoAction хатні каталог, %osName можа паводзіць сябе неадэкватна!\n\nВы ўпэўнены што жадаеце зрабіць гэта?\n\nКаб %toDoAction хатні каталог, націсніце клавiшу Shift і клікніце \"%toConfirmAction\".
|
||||||
Add-ons DeskWindow Дапаўненні
|
Add-ons DeskWindow Дапаўненні
|
||||||
Name FindPanel Імя
|
Name FindPanel Імя
|
||||||
And FindPanel І
|
And FindPanel І
|
||||||
@@ -407,7 +410,6 @@ Select… FilePanelPriv Выбраць...
|
|||||||
Don't move files to Trash SettingsView Не перамяшчаць файлы ў Сметніцу
|
Don't move files to Trash SettingsView Не перамяшчаць файлы ў Сметніцу
|
||||||
There was an error resolving the link. Tracker Адбылася памылка пры разборы спасылкі.
|
There was an error resolving the link. Tracker Адбылася памылка пры разборы спасылкі.
|
||||||
%BytesPerSecond/s StatusWindow %BytesPerSecond/s
|
%BytesPerSecond/s StatusWindow %BytesPerSecond/s
|
||||||
If you %ifYouDoAction the system folder or its contents, you won't be able to boot %osName! Are you sure you want to do this? To %toDoAction the system folder or its contents anyway, hold down the Shift key and click \"%toConfirmAction\". FSUtils Калi вы %ifYouDoAction сістэмны каталог або яго змеціва, вы не зможаце запусціць %osName! Вы ўпэўнены што жадаеце зрабіць гэта? Каб %toDoAction сістэмны каталог, націсніце клавiшу Shift і клікніце \"%toConfirmAction\".
|
|
||||||
You can't move or copy the trash. FSUtils Вы не можаце перамяшчаць ці капіяваць у Сметніцу.
|
You can't move or copy the trash. FSUtils Вы не можаце перамяшчаць ці капіяваць у Сметніцу.
|
||||||
ends with SelectionWindow заканчваецца на
|
ends with SelectionWindow заканчваецца на
|
||||||
Volume icons TrackerSettingsWindow Іконкі тамоў
|
Volume icons TrackerSettingsWindow Іконкі тамоў
|
||||||
@@ -429,7 +431,6 @@ Modified ContainerWindow Зменены
|
|||||||
Edit Query template FindPanel Правіць шаблон Запыту
|
Edit Query template FindPanel Правіць шаблон Запыту
|
||||||
Prompt FSUtils Падказка
|
Prompt FSUtils Падказка
|
||||||
Edit query ContainerWindow Правіць запыт
|
Edit query ContainerWindow Правіць запыт
|
||||||
If you %ifYouDoAction the config folder, %osName may not behave properly! Are you sure you want to do this? To %toDoAction the config folder anyway, click \"%toConfirmAction\". FSUtils Калi вы %ifYouDoAction каталог канфігурацыі, %osName можа паводзіць сябе неадэкватна! Вы ўпэўнены што жадаеце зрабіць гэта? Каб %toDoAction каталог канфігурацыі, націсніце клавiшу Shift і клікніце \"%toConfirmAction\".
|
|
||||||
Find… ContainerWindow Знайсці...
|
Find… ContainerWindow Знайсці...
|
||||||
Create a Query FindPanel Стварыць Запыт
|
Create a Query FindPanel Стварыць Запыт
|
||||||
Move to Trash FSUtils Адправіць у Сметніцу
|
Move to Trash FSUtils Адправіць у Сметніцу
|
||||||
@@ -448,7 +449,6 @@ Mount ContainerWindow Змантаваць
|
|||||||
%capacity (%used used -- %free free) InfoWindow %capacity (%used выкарыстана -- %free свабодна)
|
%capacity (%used used -- %free free) InfoWindow %capacity (%used выкарыстана -- %free свабодна)
|
||||||
Cancel FSClipBoard Адмена
|
Cancel FSClipBoard Адмена
|
||||||
Cut more ContainerWindow Выразаць яшчэ
|
Cut more ContainerWindow Выразаць яшчэ
|
||||||
If you %ifYouDoAction the settings folder, %osName may not behave properly! Are you sure you want to do this? To %toDoAction the settings folder anyway, click \"%toConfirmAction\". FSUtils Калi вы %ifYouDoAction каталог наладак, %osName можа паводзіць сябе неадэкватна! Вы ўпэўнены што жадаеце зрабіць гэта? Каб %toDoAction каталог наладак, націсніце клавiшу Shift і клікніце \"%toConfirmAction\".
|
|
||||||
Deleting: StatusWindow Выдаляецца:
|
Deleting: StatusWindow Выдаляецца:
|
||||||
Empty Trash InfoWindow Ачысціць сметніцу
|
Empty Trash InfoWindow Ачысціць сметніцу
|
||||||
Add FindPanel Дадаць
|
Add FindPanel Дадаць
|
||||||
|
|||||||
@@ -1,4 +1,4 @@
|
|||||||
1 german x-vnd.Haiku-libtracker 3695303004
|
1 german x-vnd.Haiku-libtracker 3778030996
|
||||||
common B_COMMON_DIRECTORY Allgemein
|
common B_COMMON_DIRECTORY Allgemein
|
||||||
OK WidgetAttributeText OK
|
OK WidgetAttributeText OK
|
||||||
Icon view VolumeWindow Icon-Ansicht
|
Icon view VolumeWindow Icon-Ansicht
|
||||||
@@ -171,7 +171,6 @@ Edit favorites… FilePanelPriv Favoriten bearbeiten…
|
|||||||
Create relative link ContainerWindow Relative Verknüpfung erstellen
|
Create relative link ContainerWindow Relative Verknüpfung erstellen
|
||||||
Copy ContainerWindow Kopieren
|
Copy ContainerWindow Kopieren
|
||||||
Size PoseView Größe
|
Size PoseView Größe
|
||||||
If you %ifYouDoAction the home folder, %osName may not behave properly! Are you sure you want to do this? To %toDoAction the home folder anyway, hold down the Shift key and click \"%toConfirmAction\". FSUtils Wird der Benutzer-Ordner %ifYouDoAction, kann %osName vielleicht nicht mehr fehlerfrei arbeiten. Um ihn und seine Inhalte dennoch %toDoAction, Shift-Taste gedrückt halten und \"%toConfirmAction\" klicken.
|
|
||||||
Location OpenWithWindow Ort
|
Location OpenWithWindow Ort
|
||||||
Force identify ContainerWindow Identifizierung erzwingen
|
Force identify ContainerWindow Identifizierung erzwingen
|
||||||
Duplicate ContainerWindow Duplizieren
|
Duplicate ContainerWindow Duplizieren
|
||||||
@@ -195,7 +194,6 @@ New DeskWindow Neu
|
|||||||
Open InfoWindow Öffnen
|
Open InfoWindow Öffnen
|
||||||
64 x 64 ContainerWindow 64 x 64
|
64 x 64 ContainerWindow 64 x 64
|
||||||
Replace all FSUtils Alle ersetzen
|
Replace all FSUtils Alle ersetzen
|
||||||
The application \"%appname\" does not support the type of document you are about to open. Are you sure you want to proceed? If you know that the application supports the document type, you should contact the publisher of the application and ask them to update their application to list the type of your document as supported. OpenWithWindow Die Anwendung \"%appname\" unterstützt den Typ des zu öffnenden Dokuments nicht. Soll dennoch fortgefahren werden? Wenn die Anwendung den Typ eigentlich unterstützen müsste, sollte deren Autor gebeten werden, diesen Typ zur Liste der unterstützten Dokumente hinzuzufügen.
|
|
||||||
Preparing to restore items… StatusWindow Wiederherstellen wird vorbereitet…
|
Preparing to restore items… StatusWindow Wiederherstellen wird vorbereitet…
|
||||||
Replace other file WidgetAttributeText Andere Datei ersetzen
|
Replace other file WidgetAttributeText Andere Datei ersetzen
|
||||||
Some of the selected items cannot be moved to the Trash. Would you like to delete them instead? (This operation cannot be reverted.) PoseView Einige der ausgewählten Objekte können nicht in den Papierkorb verschoben werden. Sollen sie stattdessen gelöscht werden? (Diese Aktion kann nicht rückgängig gemacht werden.)
|
Some of the selected items cannot be moved to the Trash. Would you like to delete them instead? (This operation cannot be reverted.) PoseView Einige der ausgewählten Objekte können nicht in den Papierkorb verschoben werden. Sollen sie stattdessen gelöscht werden? (Diese Aktion kann nicht rückgängig gemacht werden.)
|
||||||
@@ -220,7 +218,6 @@ Name PoseView Name
|
|||||||
Group FilePermissionsView Gruppe
|
Group FilePermissionsView Gruppe
|
||||||
Version: InfoWindow Version:
|
Version: InfoWindow Version:
|
||||||
Created: InfoWindow Erstellt:
|
Created: InfoWindow Erstellt:
|
||||||
If you %ifYouDoAction the mime settings, %osName may not behave properly! Are you sure you want to do this? To %toDoAction the mime settings anyway, click \"%toConfirmAction\". FSUtils Wird der MIME-Ordner %ifYouDoAction, kann %osName vielleicht nicht mehr fehlerfrei arbeiten! Um ihn dennoch %toDoAction, \"%toConfirmAction\" klicken.
|
|
||||||
\nShould this be fixed? FSUtils \nSoll das behoben werden?
|
\nShould this be fixed? FSUtils \nSoll das behoben werden?
|
||||||
Copying: StatusWindow Kopieren:
|
Copying: StatusWindow Kopieren:
|
||||||
Capacity: InfoWindow Kapazität:
|
Capacity: InfoWindow Kapazität:
|
||||||
@@ -280,7 +277,6 @@ Rename TextWidget Button label, 'Rename' (en), 'Umbenennen' (de) Umbenennen
|
|||||||
Paused: click to resume or stop StatusWindow Pausiert: Klicken zum Fortfahren oder Abbrechen
|
Paused: click to resume or stop StatusWindow Pausiert: Klicken zum Fortfahren oder Abbrechen
|
||||||
Preferred for %type OpenWithWindow Bevorzugt für %type
|
Preferred for %type OpenWithWindow Bevorzugt für %type
|
||||||
GiB WidgetAttributeText GiB
|
GiB WidgetAttributeText GiB
|
||||||
If you %ifYouDoAction the common folder, %osName may not behave properly! Are you sure you want to do this? To %toDoAction the common folder anyway, hold down the Shift key and click \"%toConfirmAction\". FSUtils Wird der Allgemein-Ordner %ifYouDoAction, kann %osName vielleicht nicht mehr fehlerfrei arbeiten! Um ihn dennoch %toDoAction, Shift-Taste gedrückt halten und \"%toConfirmAction\" klicken.
|
|
||||||
There was an error deleting \"%name\":\n\t%error FSUtils Fehler beim Löschen von \"%name\":\n\t%error
|
There was an error deleting \"%name\":\n\t%error FSUtils Fehler beim Löschen von \"%name\":\n\t%error
|
||||||
Paste FilePanelPriv Einfügen
|
Paste FilePanelPriv Einfügen
|
||||||
Copy more ContainerWindow Mehr kopieren
|
Copy more ContainerWindow Mehr kopieren
|
||||||
@@ -407,7 +403,6 @@ Select… FilePanelPriv Auswählen…
|
|||||||
Don't move files to Trash SettingsView Dateien nicht in den Papierkorb verschieben
|
Don't move files to Trash SettingsView Dateien nicht in den Papierkorb verschieben
|
||||||
There was an error resolving the link. Tracker Fehler beim Auflösen der Verknüpfung.
|
There was an error resolving the link. Tracker Fehler beim Auflösen der Verknüpfung.
|
||||||
%BytesPerSecond/s StatusWindow %BytesPerSecond/s
|
%BytesPerSecond/s StatusWindow %BytesPerSecond/s
|
||||||
If you %ifYouDoAction the system folder or its contents, you won't be able to boot %osName! Are you sure you want to do this? To %toDoAction the system folder or its contents anyway, hold down the Shift key and click \"%toConfirmAction\". FSUtils Der System-Ordner oder seine Inhalte sollen %ifYouDoAction werden. Dadurch kann %osName nicht mehr gestartet werden! Um ihn oder seine Inhalte dennoch %toDoAction, Shift-Taste gedrückt halten und \"%toConfirmAction\" klicken.
|
|
||||||
You can't move or copy the trash. FSUtils Der Papierkorb kann nicht verschoben oder kopiert werden.
|
You can't move or copy the trash. FSUtils Der Papierkorb kann nicht verschoben oder kopiert werden.
|
||||||
ends with SelectionWindow endet mit
|
ends with SelectionWindow endet mit
|
||||||
Volume icons TrackerSettingsWindow Datenträger-Icons
|
Volume icons TrackerSettingsWindow Datenträger-Icons
|
||||||
@@ -429,7 +424,6 @@ Modified ContainerWindow Geändert
|
|||||||
Edit Query template FindPanel Query-Vorlage bearbeiten
|
Edit Query template FindPanel Query-Vorlage bearbeiten
|
||||||
Prompt FSUtils Nachfragen
|
Prompt FSUtils Nachfragen
|
||||||
Edit query ContainerWindow Query bearbeiten
|
Edit query ContainerWindow Query bearbeiten
|
||||||
If you %ifYouDoAction the config folder, %osName may not behave properly! Are you sure you want to do this? To %toDoAction the config folder anyway, click \"%toConfirmAction\". FSUtils Wird der Konfigurations-Ordner %ifYouDoAction, kann %osName vielleicht nicht mehr fehlerfrei arbeiten! Um ihn dennoch %toDoAction, \"%toConfirmAction\" klicken.
|
|
||||||
Find… ContainerWindow Suchen…
|
Find… ContainerWindow Suchen…
|
||||||
Create a Query FindPanel Query erstellen
|
Create a Query FindPanel Query erstellen
|
||||||
Move to Trash FSUtils In Papierkorb verschieben
|
Move to Trash FSUtils In Papierkorb verschieben
|
||||||
@@ -448,7 +442,6 @@ Mount ContainerWindow Einhängen
|
|||||||
%capacity (%used used -- %free free) InfoWindow %capacity (%used benutzt -- %free frei)
|
%capacity (%used used -- %free free) InfoWindow %capacity (%used benutzt -- %free frei)
|
||||||
Cancel FSClipBoard Abbrechen
|
Cancel FSClipBoard Abbrechen
|
||||||
Cut more ContainerWindow Mehr ausschneiden
|
Cut more ContainerWindow Mehr ausschneiden
|
||||||
If you %ifYouDoAction the settings folder, %osName may not behave properly! Are you sure you want to do this? To %toDoAction the settings folder anyway, click \"%toConfirmAction\". FSUtils Wird der Settings-Ordner %ifYouDoAction, kann %osName vielleicht nicht mehr fehlerfrei arbeiten! Um ihn dennoch %toDoAction, \"%toConfirmAction\" klicken.
|
|
||||||
Deleting: StatusWindow Löschen:
|
Deleting: StatusWindow Löschen:
|
||||||
Empty Trash InfoWindow Papierkorb leeren
|
Empty Trash InfoWindow Papierkorb leeren
|
||||||
Add FindPanel Hinzu
|
Add FindPanel Hinzu
|
||||||
|
|||||||
@@ -1,4 +1,4 @@
|
|||||||
1 greek, modern (1453-) x-vnd.Haiku-libtracker 859055013
|
1 greek, modern (1453-) x-vnd.Haiku-libtracker 2160148895
|
||||||
common B_COMMON_DIRECTORY κοινό
|
common B_COMMON_DIRECTORY κοινό
|
||||||
OK WidgetAttributeText Εντάξει
|
OK WidgetAttributeText Εντάξει
|
||||||
Icon view VolumeWindow Προβολή εικονιδίου
|
Icon view VolumeWindow Προβολή εικονιδίου
|
||||||
@@ -165,7 +165,6 @@ Edit favorites… FilePanelPriv Επεξεργασία αγαπημένων...
|
|||||||
Create relative link ContainerWindow Δημιουργία συγγενικού συνδέσμου
|
Create relative link ContainerWindow Δημιουργία συγγενικού συνδέσμου
|
||||||
Copy ContainerWindow Αντιγραφή
|
Copy ContainerWindow Αντιγραφή
|
||||||
Size PoseView Μέγεθος
|
Size PoseView Μέγεθος
|
||||||
If you %ifYouDoAction the home folder, %osName may not behave properly! Are you sure you want to do this? To %toDoAction the home folder anyway, hold down the Shift key and click \"%toConfirmAction\". FSUtils Εάν %ifYouDoAction στον αρχικό κατάλογο, το %osName μπορεί να μην συμπεριφερθεί σωστά! Είστε βέβαιος ότι θέλετε να το κάνετε αυτό; Για να %toDoAction στον αρχικό κατάλογο ούτως ή άλλως, κρατήστε πατημένο το πλήκτρο Shift και κάντε κλικ στο \"%toConfirmAction\".
|
|
||||||
Location OpenWithWindow Τοποθεσία
|
Location OpenWithWindow Τοποθεσία
|
||||||
Force identify ContainerWindow Εξαναγκασμός αναγνώρισης
|
Force identify ContainerWindow Εξαναγκασμός αναγνώρισης
|
||||||
Duplicate ContainerWindow Διπλότυπο
|
Duplicate ContainerWindow Διπλότυπο
|
||||||
@@ -213,7 +212,6 @@ Name PoseView Όνομα
|
|||||||
Group FilePermissionsView Ομάδα
|
Group FilePermissionsView Ομάδα
|
||||||
Version: InfoWindow Έκδοση
|
Version: InfoWindow Έκδοση
|
||||||
Created: InfoWindow Δημιουργήθηκε:
|
Created: InfoWindow Δημιουργήθηκε:
|
||||||
If you %ifYouDoAction the mime settings, %osName may not behave properly! Are you sure you want to do this? To %toDoAction the mime settings anyway, click \"%toConfirmAction\". FSUtils Εάν %ifYouDoAction στις απλές ρυθμίσεις, το %osName μπορεί να μην συμπεριφερθεί σωστά! Είστε βέβαιος ότι θέλετε να το κάνετε αυτό; Για να %toDoAction στις απλές ρυθμίσεις ούτως ή άλλως, κρατήστε πατημένο το πλήκτρο Shift και κάντε κλικ στο \"toConfirmAction% \".
|
|
||||||
\nShould this be fixed? FSUtils \nΠρέπει αυτό να διορθωθεί;
|
\nShould this be fixed? FSUtils \nΠρέπει αυτό να διορθωθεί;
|
||||||
Copying: StatusWindow Αντιγραφή:
|
Copying: StatusWindow Αντιγραφή:
|
||||||
Capacity: InfoWindow Χωρητικότητα:
|
Capacity: InfoWindow Χωρητικότητα:
|
||||||
@@ -271,7 +269,6 @@ Rename TextWidget Button label, 'Rename' (en), 'Umbenennen' (de) Μετονομ
|
|||||||
Paused: click to resume or stop StatusWindow Σταματημένο: κάντε κλικ για συνέχεια ή διακοπή
|
Paused: click to resume or stop StatusWindow Σταματημένο: κάντε κλικ για συνέχεια ή διακοπή
|
||||||
Preferred for %type OpenWithWindow Προτινόμενο για %type
|
Preferred for %type OpenWithWindow Προτινόμενο για %type
|
||||||
GiB WidgetAttributeText GiB
|
GiB WidgetAttributeText GiB
|
||||||
If you %ifYouDoAction the common folder, %osName may not behave properly! Are you sure you want to do this? To %toDoAction the common folder anyway, hold down the Shift key and click \"%toConfirmAction\". FSUtils Εάν %ifYouDoAction στον κοινό φάκελο, το %osName μπορεί να μην συμπεριφερθεί σωστά! Είστε βέβαιος ότι θέλετε να το κάνετε αυτό; Για να %toDoAction στον κοινό φάκελο ούτως ή άλλως, κρατήστε πατημένο το πλήκτρο Shift και κάντε κλικ στο \"toConfirmAction% \".
|
|
||||||
There was an error deleting \"%name\":\n\t%error FSUtils Υπήρξε κάποιο σφάλμα κατά τη διαγραφή \"%name\":\n\t%error
|
There was an error deleting \"%name\":\n\t%error FSUtils Υπήρξε κάποιο σφάλμα κατά τη διαγραφή \"%name\":\n\t%error
|
||||||
Paste FilePanelPriv Επικόλληση
|
Paste FilePanelPriv Επικόλληση
|
||||||
Copy more ContainerWindow Αντιγραφή κι άλλων
|
Copy more ContainerWindow Αντιγραφή κι άλλων
|
||||||
@@ -396,7 +393,6 @@ Select… FilePanelPriv Επιλογή...
|
|||||||
Don't move files to Trash SettingsView Να μη μετακινόυνται αρχεία στα απορρίματα
|
Don't move files to Trash SettingsView Να μη μετακινόυνται αρχεία στα απορρίματα
|
||||||
There was an error resolving the link. Tracker Υπήρξε κάποιο σφάλμα κατά την επίλυση του συνδέσμου.
|
There was an error resolving the link. Tracker Υπήρξε κάποιο σφάλμα κατά την επίλυση του συνδέσμου.
|
||||||
%BytesPerSecond/s StatusWindow %BytesPerSecond/s
|
%BytesPerSecond/s StatusWindow %BytesPerSecond/s
|
||||||
If you %ifYouDoAction the system folder or its contents, you won't be able to boot %osName! Are you sure you want to do this? To %toDoAction the system folder or its contents anyway, hold down the Shift key and click \"%toConfirmAction\". FSUtils Εάν %ifYouDoAction στο φάκελο συστήματος, το %osName μπορεί να μην συμπεριφερθεί σωστά! Είστε βέβαιος ότι θέλετε να το κάνετε αυτό; Για να %toDoAction στο φάκελο συστήματος ούτως ή άλλως, κρατήστε πατημένο το πλήκτρο Shift και κάντε κλικ στο \"toConfirmAction% \".
|
|
||||||
You can't move or copy the trash. FSUtils Δεν μπορείτε να μετακινήσετε ή να αντιγράψετε στο καλάθι αχρήστων.
|
You can't move or copy the trash. FSUtils Δεν μπορείτε να μετακινήσετε ή να αντιγράψετε στο καλάθι αχρήστων.
|
||||||
ends with SelectionWindow τελειώνει με
|
ends with SelectionWindow τελειώνει με
|
||||||
Volume icons TrackerSettingsWindow Εικονίδια τόμου
|
Volume icons TrackerSettingsWindow Εικονίδια τόμου
|
||||||
@@ -418,7 +414,6 @@ Modified ContainerWindow Τροποποιήθηκε
|
|||||||
Edit Query template FindPanel Επεξεργασία προτύπου ερωτήματος
|
Edit Query template FindPanel Επεξεργασία προτύπου ερωτήματος
|
||||||
Prompt FSUtils Προτροπή
|
Prompt FSUtils Προτροπή
|
||||||
Edit query ContainerWindow Επεξεργασία ερωτήματος
|
Edit query ContainerWindow Επεξεργασία ερωτήματος
|
||||||
If you %ifYouDoAction the config folder, %osName may not behave properly! Are you sure you want to do this? To %toDoAction the config folder anyway, click \"%toConfirmAction\". FSUtils Εάν %ifYouDoAction στο φάκελο διαμόρφωσης, το %osName μπορεί να μην συμπεριφερθεί σωστά! Είστε βέβαιος ότι θέλετε να το κάνετε αυτό; Για να %toDoAction στο φάκελο φάκελο διαμόρφωσης ούτως ή άλλως, κρατήστε πατημένο το πλήκτρο Shift και κάντε κλικ στο \"toConfirmAction% \".
|
|
||||||
Find… ContainerWindow Εύρεση...
|
Find… ContainerWindow Εύρεση...
|
||||||
Create a Query FindPanel Δημιούργησε ένα ερώτημα
|
Create a Query FindPanel Δημιούργησε ένα ερώτημα
|
||||||
Move to Trash FSUtils Μεταφορά στο Καλάθι αχρήστων
|
Move to Trash FSUtils Μεταφορά στο Καλάθι αχρήστων
|
||||||
@@ -437,7 +432,6 @@ Mount ContainerWindow Προσάρτηση
|
|||||||
%capacity (%used used -- %free free) InfoWindow %capacity (%used χρησιμοποιημένα -- %free fελεύθερα)
|
%capacity (%used used -- %free free) InfoWindow %capacity (%used χρησιμοποιημένα -- %free fελεύθερα)
|
||||||
Cancel FSClipBoard Άκυρο
|
Cancel FSClipBoard Άκυρο
|
||||||
Cut more ContainerWindow Αποκοπή περισσότερων
|
Cut more ContainerWindow Αποκοπή περισσότερων
|
||||||
If you %ifYouDoAction the settings folder, %osName may not behave properly! Are you sure you want to do this? To %toDoAction the settings folder anyway, click \"%toConfirmAction\". FSUtils Εάν %ifYouDoAction στο φάκελο ρυθμίσεων, το %osName μπορεί να μην συμπεριφερθεί σωστά! Είστε βέβαιος ότι θέλετε να το κάνετε αυτό; Για να %toDoAction στο φάκελο ρυθμίσεων ούτως ή άλλως, κρατήστε πατημένο το πλήκτρο Shift και κάντε κλικ στο \"toConfirmAction% \".
|
|
||||||
Deleting: StatusWindow Διαγραφή:
|
Deleting: StatusWindow Διαγραφή:
|
||||||
Empty Trash InfoWindow Άδειασμα κάδου
|
Empty Trash InfoWindow Άδειασμα κάδου
|
||||||
Add FindPanel Προσθήκη
|
Add FindPanel Προσθήκη
|
||||||
|
|||||||
@@ -1,4 +1,4 @@
|
|||||||
1 finnish x-vnd.Haiku-libtracker 3695303004
|
1 finnish x-vnd.Haiku-libtracker 3778030996
|
||||||
common B_COMMON_DIRECTORY yhteinen
|
common B_COMMON_DIRECTORY yhteinen
|
||||||
OK WidgetAttributeText Valmis
|
OK WidgetAttributeText Valmis
|
||||||
Icon view VolumeWindow Kuvakenäkymä
|
Icon view VolumeWindow Kuvakenäkymä
|
||||||
@@ -171,7 +171,6 @@ Edit favorites… FilePanelPriv Muokkaa suosikkeja...
|
|||||||
Create relative link ContainerWindow Luo suhteellinen linkki
|
Create relative link ContainerWindow Luo suhteellinen linkki
|
||||||
Copy ContainerWindow Kopioi
|
Copy ContainerWindow Kopioi
|
||||||
Size PoseView Koko
|
Size PoseView Koko
|
||||||
If you %ifYouDoAction the home folder, %osName may not behave properly! Are you sure you want to do this? To %toDoAction the home folder anyway, hold down the Shift key and click \"%toConfirmAction\". FSUtils Jos teet toiminnon %ifYouDoAction kotikansiolle, %osName ei ehkä toimi enää oikein! Oletko varma, että haluat tehdä tämän? Jos kuitenkin haluat tehdä toiminnon %toDoAction kotikansiolle, pidä vaihtonäppäin alhaalla ja napsauta painiketta \"%toConfirmAction\".
|
|
||||||
Location OpenWithWindow Sijainti
|
Location OpenWithWindow Sijainti
|
||||||
Force identify ContainerWindow Pakota tunnistus
|
Force identify ContainerWindow Pakota tunnistus
|
||||||
Duplicate ContainerWindow Kaksoiskappale
|
Duplicate ContainerWindow Kaksoiskappale
|
||||||
@@ -195,7 +194,6 @@ New DeskWindow Uusi
|
|||||||
Open InfoWindow Avaa
|
Open InfoWindow Avaa
|
||||||
64 x 64 ContainerWindow 64 x 64
|
64 x 64 ContainerWindow 64 x 64
|
||||||
Replace all FSUtils Korvaa kaikki
|
Replace all FSUtils Korvaa kaikki
|
||||||
The application \"%appname\" does not support the type of document you are about to open. Are you sure you want to proceed? If you know that the application supports the document type, you should contact the publisher of the application and ask them to update their application to list the type of your document as supported. OpenWithWindow Sovellus ”%appname” ei tue sen tyyppistä asiakirjaa, jota olet avaamassa. Oletko varma, että haluat jatkaa? Jos tiedät, että sovellus tukee dokumenttityyppiä, sinun pitäisi ottaa yhteyttä sovelluksen julkaisijaan ja pyytää heitä päivittämään dokumenttisi tyyppi tuettujen tyyppien luetteloon.
|
|
||||||
Preparing to restore items… StatusWindow Valmistaudutaan palauttamaan kohteita...
|
Preparing to restore items… StatusWindow Valmistaudutaan palauttamaan kohteita...
|
||||||
Replace other file WidgetAttributeText Korvaa muu tiedosto
|
Replace other file WidgetAttributeText Korvaa muu tiedosto
|
||||||
Some of the selected items cannot be moved to the Trash. Would you like to delete them instead? (This operation cannot be reverted.) PoseView Joitakin valittuja kohteita ei voi siirtää roskakoriin. Haluaisitko sen sijaan poistaa ne? (Tätä toimintoa ei voi palauttaa.)
|
Some of the selected items cannot be moved to the Trash. Would you like to delete them instead? (This operation cannot be reverted.) PoseView Joitakin valittuja kohteita ei voi siirtää roskakoriin. Haluaisitko sen sijaan poistaa ne? (Tätä toimintoa ei voi palauttaa.)
|
||||||
@@ -220,7 +218,6 @@ Name PoseView Nimi
|
|||||||
Group FilePermissionsView Ryhmä
|
Group FilePermissionsView Ryhmä
|
||||||
Version: InfoWindow Versio:
|
Version: InfoWindow Versio:
|
||||||
Created: InfoWindow Luotu:
|
Created: InfoWindow Luotu:
|
||||||
If you %ifYouDoAction the mime settings, %osName may not behave properly! Are you sure you want to do this? To %toDoAction the mime settings anyway, click \"%toConfirmAction\". FSUtils Jos teet toiminnon %ifYouDoAction mime-asetuksille, %osName ei ehkä toimi enää oikein! Oletko varma, että haluat tehdä tämän? Jos kuitenkin haluat tehdä toiminnon %toDoAction mime-asetuksille, napsauta painiketta \"%toConfirmAction\".
|
|
||||||
\nShould this be fixed? FSUtils \nPitäisikö tämä korjata?
|
\nShould this be fixed? FSUtils \nPitäisikö tämä korjata?
|
||||||
Copying: StatusWindow Kopioidaan:
|
Copying: StatusWindow Kopioidaan:
|
||||||
Capacity: InfoWindow Kapasiteetti:
|
Capacity: InfoWindow Kapasiteetti:
|
||||||
@@ -280,7 +277,6 @@ Rename TextWidget Button label, 'Rename' (en), 'Umbenennen' (de) Nimeä uudellee
|
|||||||
Paused: click to resume or stop StatusWindow Keskeytetty: napsauta painiketta resume tai stop
|
Paused: click to resume or stop StatusWindow Keskeytetty: napsauta painiketta resume tai stop
|
||||||
Preferred for %type OpenWithWindow Ensisijainen tyypille %type
|
Preferred for %type OpenWithWindow Ensisijainen tyypille %type
|
||||||
GiB WidgetAttributeText gibitavua
|
GiB WidgetAttributeText gibitavua
|
||||||
If you %ifYouDoAction the common folder, %osName may not behave properly! Are you sure you want to do this? To %toDoAction the common folder anyway, hold down the Shift key and click \"%toConfirmAction\". FSUtils Jos teet toiminnon %ifYouDoAction yhteiskansiolle, %osName ei ehkä toimi enää oikein! Oletko varma, että haluat tehdä tämän? Jos kuitenkin haluat tehdä toiminnon %toDoAction yhteiskansiolle, pidä vaihtonäppäin alhaalla ja napsauta painiketta \"%toConfirmAction\".
|
|
||||||
There was an error deleting \"%name\":\n\t%error FSUtils Kohdetta ”%name” poistettaessa tapahtui virhe:\n\t%error
|
There was an error deleting \"%name\":\n\t%error FSUtils Kohdetta ”%name” poistettaessa tapahtui virhe:\n\t%error
|
||||||
Paste FilePanelPriv Liitä
|
Paste FilePanelPriv Liitä
|
||||||
Copy more ContainerWindow Kopioi lisää
|
Copy more ContainerWindow Kopioi lisää
|
||||||
@@ -407,7 +403,6 @@ Select… FilePanelPriv Valitse...
|
|||||||
Don't move files to Trash SettingsView Älä siirrä tiedostoja roskakoriin
|
Don't move files to Trash SettingsView Älä siirrä tiedostoja roskakoriin
|
||||||
There was an error resolving the link. Tracker Virhe linkin ratkaisemisessa.
|
There was an error resolving the link. Tracker Virhe linkin ratkaisemisessa.
|
||||||
%BytesPerSecond/s StatusWindow %BytesPerSecond/s
|
%BytesPerSecond/s StatusWindow %BytesPerSecond/s
|
||||||
If you %ifYouDoAction the system folder or its contents, you won't be able to boot %osName! Are you sure you want to do this? To %toDoAction the system folder or its contents anyway, hold down the Shift key and click \"%toConfirmAction\". FSUtils Jos teet toiminnon %ifYouDoAction järjestelmäkansiolle tai sen sisällölle, %osName ei ehkä alkulataa enää oikein! Oletko varma, että haluat tehdä tämän? Jos kuitenkin haluat tehdä toiminnon %toDoAction järjestelmäkansiolle tai sen sisällölle, pidä vaihtonäppäin alhaalla ja napsauta painiketta \"%toConfirmAction\".
|
|
||||||
You can't move or copy the trash. FSUtils Et voi siirtää tai kopioida roskakoriin.
|
You can't move or copy the trash. FSUtils Et voi siirtää tai kopioida roskakoriin.
|
||||||
ends with SelectionWindow loppuu kohteella
|
ends with SelectionWindow loppuu kohteella
|
||||||
Volume icons TrackerSettingsWindow Taltiokuvakkeet
|
Volume icons TrackerSettingsWindow Taltiokuvakkeet
|
||||||
@@ -429,7 +424,6 @@ Modified ContainerWindow Muokattu
|
|||||||
Edit Query template FindPanel Muokkaa kyselymallinnetta
|
Edit Query template FindPanel Muokkaa kyselymallinnetta
|
||||||
Prompt FSUtils Kehoite
|
Prompt FSUtils Kehoite
|
||||||
Edit query ContainerWindow Muokkaa kyselyä
|
Edit query ContainerWindow Muokkaa kyselyä
|
||||||
If you %ifYouDoAction the config folder, %osName may not behave properly! Are you sure you want to do this? To %toDoAction the config folder anyway, click \"%toConfirmAction\". FSUtils Jos teet toiminnon %ifYouDoAction konfigurointikansiolle, %osName ei ehkä toimi enää oikein! Oletko varma, että haluat tehdä tämän? Jos kuitenkin haluat tehdä toiminnon %toDoAction konfigurointikansiolle, napsauta painiketta \"%toConfirmAction\".
|
|
||||||
Find… ContainerWindow Etsi...
|
Find… ContainerWindow Etsi...
|
||||||
Create a Query FindPanel Lue kysely
|
Create a Query FindPanel Lue kysely
|
||||||
Move to Trash FSUtils Siirrä roskakoriin
|
Move to Trash FSUtils Siirrä roskakoriin
|
||||||
@@ -448,7 +442,6 @@ Mount ContainerWindow Liitä
|
|||||||
%capacity (%used used -- %free free) InfoWindow %capacity (%used käytetty -- %free vapaana)
|
%capacity (%used used -- %free free) InfoWindow %capacity (%used käytetty -- %free vapaana)
|
||||||
Cancel FSClipBoard Peru
|
Cancel FSClipBoard Peru
|
||||||
Cut more ContainerWindow Leikkaa lisää
|
Cut more ContainerWindow Leikkaa lisää
|
||||||
If you %ifYouDoAction the settings folder, %osName may not behave properly! Are you sure you want to do this? To %toDoAction the settings folder anyway, click \"%toConfirmAction\". FSUtils Jos teet toiminnon %ifYouDoAction asetuskansiolle, %osName ei ehkä toimi enää oikein! Oletko varma, että haluat tehdä tämän? Jos kuitenkin haluat tehdä toiminnon %toDoAction asetuskansiolle, napsauta painiketta \"%toConfirmAction\".
|
|
||||||
Deleting: StatusWindow Poistetaan:
|
Deleting: StatusWindow Poistetaan:
|
||||||
Empty Trash InfoWindow Tyhjennä roskakori
|
Empty Trash InfoWindow Tyhjennä roskakori
|
||||||
Add FindPanel Lisää
|
Add FindPanel Lisää
|
||||||
|
|||||||
@@ -1,4 +1,4 @@
|
|||||||
1 french x-vnd.Haiku-libtracker 1951892978
|
1 french x-vnd.Haiku-libtracker 733527088
|
||||||
common B_COMMON_DIRECTORY commun
|
common B_COMMON_DIRECTORY commun
|
||||||
OK WidgetAttributeText OK
|
OK WidgetAttributeText OK
|
||||||
Icon view VolumeWindow Vue en icônes
|
Icon view VolumeWindow Vue en icônes
|
||||||
@@ -190,7 +190,6 @@ New DeskWindow Nouveau
|
|||||||
Open InfoWindow Ouvrir
|
Open InfoWindow Ouvrir
|
||||||
64 x 64 ContainerWindow 64 x 64
|
64 x 64 ContainerWindow 64 x 64
|
||||||
Replace all FSUtils Remplacer tout
|
Replace all FSUtils Remplacer tout
|
||||||
The application \"%appname\" does not support the type of document you are about to open. Are you sure you want to proceed? If you know that the application supports the document type, you should contact the publisher of the application and ask them to update their application to list the type of your document as supported. OpenWithWindow L'application « %appname » ne supporte pas le type de document que vous êtes sur le point d'ouvrir. Êtes vous sûr de vouloir continuer ? Si vous savez que l'application prend en charge ce type de document, vous devriez contacter son éditeur pour lui demander de mettre à jour l'application afin d'ajouter le type de votre document à la liste de ceux pris en charge.
|
|
||||||
Preparing to restore items… StatusWindow Restauration des éléments en préparation...
|
Preparing to restore items… StatusWindow Restauration des éléments en préparation...
|
||||||
Replace other file WidgetAttributeText Remplacer un autre fichier
|
Replace other file WidgetAttributeText Remplacer un autre fichier
|
||||||
Some of the selected items cannot be moved to the Trash. Would you like to delete them instead? (This operation cannot be reverted.) PoseView Certains des éléments sélectionnés ne peuvent pas être envoyés à la Corbeille. Voulez vous les supprimer ? (Cette opération est irrémédiable.)
|
Some of the selected items cannot be moved to the Trash. Would you like to delete them instead? (This operation cannot be reverted.) PoseView Certains des éléments sélectionnés ne peuvent pas être envoyés à la Corbeille. Voulez vous les supprimer ? (Cette opération est irrémédiable.)
|
||||||
|
|||||||
@@ -1,4 +1,4 @@
|
|||||||
1 hindi x-vnd.Haiku-libtracker 520218895
|
1 hindi x-vnd.Haiku-libtracker 602946887
|
||||||
common B_COMMON_DIRECTORY सामान्य
|
common B_COMMON_DIRECTORY सामान्य
|
||||||
OK WidgetAttributeText ठीक है
|
OK WidgetAttributeText ठीक है
|
||||||
Icon view VolumeWindow चिह्न दृश्य
|
Icon view VolumeWindow चिह्न दृश्य
|
||||||
@@ -165,7 +165,6 @@ Edit favorites… FilePanelPriv फेवरिट संपादित कर
|
|||||||
Create relative link ContainerWindow संबंधित लिंक बनाएँ
|
Create relative link ContainerWindow संबंधित लिंक बनाएँ
|
||||||
Copy ContainerWindow अनुकृति बनाना
|
Copy ContainerWindow अनुकृति बनाना
|
||||||
Size PoseView आकार
|
Size PoseView आकार
|
||||||
If you %ifYouDoAction the home folder, %osName may not behave properly! Are you sure you want to do this? To %toDoAction the home folder anyway, hold down the Shift key and click \"%toConfirmAction\". FSUtils अगर आप %ifYouDoAction होम फोल्डर, %osName ठीक से नहीं पेश आएगी! क्या आप पक्का से यह करना चाहते हैं? To %toDoAction होम फोल्डर किसी भी तरह, Shift पकड़ कर रखें और क्लिक करें \"%toConfirmAction\".
|
|
||||||
Location OpenWithWindow स्थान
|
Location OpenWithWindow स्थान
|
||||||
Force identify ContainerWindow फोर्स पहचाने
|
Force identify ContainerWindow फोर्स पहचाने
|
||||||
Duplicate ContainerWindow नकल
|
Duplicate ContainerWindow नकल
|
||||||
@@ -189,7 +188,6 @@ New DeskWindow नया
|
|||||||
Open InfoWindow खोलें
|
Open InfoWindow खोलें
|
||||||
64 x 64 ContainerWindow 64 x 64
|
64 x 64 ContainerWindow 64 x 64
|
||||||
Replace all FSUtils सभी बदलें
|
Replace all FSUtils सभी बदलें
|
||||||
The application \"%appname\" does not support the type of document you are about to open. Are you sure you want to proceed? If you know that the application supports the document type, you should contact the publisher of the application and ask them to update their application to list the type of your document as supported. OpenWithWindow \ अनुप्रयोग "% \ APPNAME" आप जिस दस्तावेज़ के प्रकार के बारे में खोलने के लिए कर रहे हैं यह का समर्थन नहीं करता. क्या आप आगे बढ़ना चाहते हैं? यदि आप जानते हैं कि आवेदन दस्तावेज़ प्रकार का समर्थन करता है, तो आप आवेदन के प्रकाशक से संपर्क करें और उन्हें अपने अपने रूप में समर्थित दस्तावेज़ के प्रकार सूची आवेदन अद्यतन करने के लिए पूछना चाहिए.
|
|
||||||
Preparing to restore items… StatusWindow आइटम बहाल की तैयारी ...
|
Preparing to restore items… StatusWindow आइटम बहाल की तैयारी ...
|
||||||
Replace other file WidgetAttributeText अन्य फ़ाइल बदलें
|
Replace other file WidgetAttributeText अन्य फ़ाइल बदलें
|
||||||
Some of the selected items cannot be moved to the Trash. Would you like to delete them instead? (This operation cannot be reverted.) PoseView चयनित आइटम में से कुछ रद्दी में स्थानांतरित नहीं किया जा सकता है. क्या आप के बजाय उन्हें मिटाना चाहते हैं? (यह आपरेशन किया जाना है. नहीं लौट सकते हैं)
|
Some of the selected items cannot be moved to the Trash. Would you like to delete them instead? (This operation cannot be reverted.) PoseView चयनित आइटम में से कुछ रद्दी में स्थानांतरित नहीं किया जा सकता है. क्या आप के बजाय उन्हें मिटाना चाहते हैं? (यह आपरेशन किया जाना है. नहीं लौट सकते हैं)
|
||||||
@@ -214,7 +212,6 @@ Name PoseView नाम
|
|||||||
Group FilePermissionsView समूह
|
Group FilePermissionsView समूह
|
||||||
Version: InfoWindow संस्करण:
|
Version: InfoWindow संस्करण:
|
||||||
Created: InfoWindow बनाया गया:
|
Created: InfoWindow बनाया गया:
|
||||||
If you %ifYouDoAction the mime settings, %osName may not behave properly! Are you sure you want to do this? To %toDoAction the mime settings anyway, click \"%toConfirmAction\". FSUtils अगर आप %ifYouDoAction मिमे सेत्तिंग्स, %osName ठीक से नहीं पेश आएगी! क्या आप पक्का से यह करना चाहते हैं? To %toDoAction माईम फोल्डर किसी भी तरह, Shift पकड़ कर रखें और क्लिक करें \"%toConfirmAction\".
|
|
||||||
\nShould this be fixed? FSUtils क्या
|
\nShould this be fixed? FSUtils क्या
|
||||||
Copying: StatusWindow प्रतिलिपि बनाई जा रही:
|
Copying: StatusWindow प्रतिलिपि बनाई जा रही:
|
||||||
Capacity: InfoWindow क्षमता:
|
Capacity: InfoWindow क्षमता:
|
||||||
@@ -273,7 +270,6 @@ Rename TextWidget Button label, 'Rename' (en), 'Umbenennen' (de) फिर स
|
|||||||
Paused: click to resume or stop StatusWindow रुका हुआ: क्लिक करें फिर से शुरू या बंद करने के लिए
|
Paused: click to resume or stop StatusWindow रुका हुआ: क्लिक करें फिर से शुरू या बंद करने के लिए
|
||||||
Preferred for %type OpenWithWindow के लिए पसंदीदा %type
|
Preferred for %type OpenWithWindow के लिए पसंदीदा %type
|
||||||
GiB WidgetAttributeText गीबाइट्स
|
GiB WidgetAttributeText गीबाइट्स
|
||||||
If you %ifYouDoAction the common folder, %osName may not behave properly! Are you sure you want to do this? To %toDoAction the common folder anyway, hold down the Shift key and click \"%toConfirmAction\". FSUtils अगर आप %ifYouDoAction कोम्मन फोल्डर, %osName ठीक से नहीं पेश आएगी! क्या आप पक्का से यह करना चाहते हैं? To %toDoAction कॉमन फोल्डर किसी भी तरह, Shift पकड़ कर रखें और क्लिक करें \"%toConfirmAction\".
|
|
||||||
There was an error deleting \"%name\":\n\t%error FSUtils वहाँ एक को हटाने में त्रुटि \"%name\":\n\t%error
|
There was an error deleting \"%name\":\n\t%error FSUtils वहाँ एक को हटाने में त्रुटि \"%name\":\n\t%error
|
||||||
Paste FilePanelPriv चिपकाएँ
|
Paste FilePanelPriv चिपकाएँ
|
||||||
Copy more ContainerWindow और अधिक प्रति करें
|
Copy more ContainerWindow और अधिक प्रति करें
|
||||||
@@ -400,7 +396,6 @@ Select… FilePanelPriv चुनें ...
|
|||||||
Don't move files to Trash SettingsView रद्दी में फाइलों मत डालें
|
Don't move files to Trash SettingsView रद्दी में फाइलों मत डालें
|
||||||
There was an error resolving the link. Tracker एक कड़ी को हल करने में त्रुटि हुई.
|
There was an error resolving the link. Tracker एक कड़ी को हल करने में त्रुटि हुई.
|
||||||
%BytesPerSecond/s StatusWindow %BytesPerSecond/s
|
%BytesPerSecond/s StatusWindow %BytesPerSecond/s
|
||||||
If you %ifYouDoAction the system folder or its contents, you won't be able to boot %osName! Are you sure you want to do this? To %toDoAction the system folder or its contents anyway, hold down the Shift key and click \"%toConfirmAction\". FSUtils अगर आप %ifYouDoAction सिस्टम फोल्डर या फिर उसके कंटेंट्स, आप उससे बूट नहीं कर पाएंगे %osName! क्या आप यह करना चाहते है? के लिए %toDoAction सिस्टम फोल्डर या फिर उसके कंटेंट्स केसे भी, Shift पकड़ कर रखें और क्लिक करें \"%toConfirmAction\".
|
|
||||||
You can't move or copy the trash. FSUtils आप रद्दी को कॉपी या स्थानांतरित नहीं कर सकते हैं.
|
You can't move or copy the trash. FSUtils आप रद्दी को कॉपी या स्थानांतरित नहीं कर सकते हैं.
|
||||||
ends with SelectionWindow के साथ समाप्त होता है
|
ends with SelectionWindow के साथ समाप्त होता है
|
||||||
Volume icons TrackerSettingsWindow मात्रा प्रतीक
|
Volume icons TrackerSettingsWindow मात्रा प्रतीक
|
||||||
@@ -422,7 +417,6 @@ Modified ContainerWindow संशोधित किया गया
|
|||||||
Edit Query template FindPanel प्रश्न आकार पट्ट संपादित करें
|
Edit Query template FindPanel प्रश्न आकार पट्ट संपादित करें
|
||||||
Prompt FSUtils शीघ्र
|
Prompt FSUtils शीघ्र
|
||||||
Edit query ContainerWindow प्रश्न संपादित करें
|
Edit query ContainerWindow प्रश्न संपादित करें
|
||||||
If you %ifYouDoAction the config folder, %osName may not behave properly! Are you sure you want to do this? To %toDoAction the config folder anyway, click \"%toConfirmAction\". FSUtils अगर आप %ifYouDoAction कॉन्फिग फोल्डर, आप उससे बूट नहीं कर पाएंगे %osName! क्या आप यह करना चाहते है? के लिए %toDoAction कॉन्फिग फोल्डर या फिर उसके कंटेंट्स केसे भी, Shift पकड़ कर रखें और क्लिक करें \"%toConfirmAction\".
|
|
||||||
Find… ContainerWindow खोजें...
|
Find… ContainerWindow खोजें...
|
||||||
Create a Query FindPanel प्रश्न बनाये
|
Create a Query FindPanel प्रश्न बनाये
|
||||||
Move to Trash FSUtils रद्दी मे ले जाएँ
|
Move to Trash FSUtils रद्दी मे ले जाएँ
|
||||||
@@ -441,7 +435,6 @@ Mount ContainerWindow चिपकाना
|
|||||||
%capacity (%used used -- %free free) InfoWindow %क्षमता
|
%capacity (%used used -- %free free) InfoWindow %क्षमता
|
||||||
Cancel FSClipBoard रद्द करें
|
Cancel FSClipBoard रद्द करें
|
||||||
Cut more ContainerWindow और अधिक काटे
|
Cut more ContainerWindow और अधिक काटे
|
||||||
If you %ifYouDoAction the settings folder, %osName may not behave properly! Are you sure you want to do this? To %toDoAction the settings folder anyway, click \"%toConfirmAction\". FSUtils अगर आप %ifYouDoAction कोम्मन फोल्डर, %osName ठीक से नहीं पेश आएगी! क्या आप पक्का से यह करना चाहते हैं? To %toDoAction सेटिंग्स फोल्डर किसी भी तरह, Shift पकड़ कर रखें और क्लिक करें \"%toConfirmAction\".
|
|
||||||
Deleting: StatusWindow हटा रहा है
|
Deleting: StatusWindow हटा रहा है
|
||||||
Empty Trash InfoWindow रद्दी खाली करें
|
Empty Trash InfoWindow रद्दी खाली करें
|
||||||
Add FindPanel जोड़े
|
Add FindPanel जोड़े
|
||||||
|
|||||||
@@ -1,4 +1,4 @@
|
|||||||
1 japanese x-vnd.Haiku-libtracker 4074946557
|
1 japanese x-vnd.Haiku-libtracker 2795444721
|
||||||
OK WidgetAttributeText OK
|
OK WidgetAttributeText OK
|
||||||
Icon view VolumeWindow アイコン表示
|
Icon view VolumeWindow アイコン表示
|
||||||
Add-ons FilePanelPriv アドオン
|
Add-ons FilePanelPriv アドオン
|
||||||
@@ -7,18 +7,19 @@ Identify ContainerWindow ファイル形式を判別
|
|||||||
Warning space color SettingsView 空き容量警告の色
|
Warning space color SettingsView 空き容量警告の色
|
||||||
Close VolumeWindow 閉じる
|
Close VolumeWindow 閉じる
|
||||||
Open OpenWithWindow 開く
|
Open OpenWithWindow 開く
|
||||||
Tracker status StatusWindow Trackerの動作状況
|
Tracker status StatusWindow Tracker の動作状況
|
||||||
Eject when unmounting AutoMounterSettings マウント解除時メディアを取り出す
|
Eject when unmounting AutoMounterSettings マウント解除時メディアを取り出す
|
||||||
Window ContainerWindow ウィンドウ
|
Window ContainerWindow ウィンドウ
|
||||||
Decrease size ContainerWindow サイズを縮小
|
Decrease size ContainerWindow サイズを小さく
|
||||||
Mini icon view VolumeWindow ミニアイコン表示
|
Mini icon view VolumeWindow ミニアイコン表示
|
||||||
You must have at least one attribute showing. PoseView 最低一つの属性を表示する必要があります。
|
You must have at least one attribute showing. PoseView 最低一つの属性を表示する必要があります。
|
||||||
Permissions InfoWindow アクセス許可
|
Permissions InfoWindow アクセス権
|
||||||
Invert selection VolumeWindow 選択範囲を反転
|
Invert selection VolumeWindow 選択範囲を反転
|
||||||
Recent documents FavoritesMenu 最近開いたドキュメント
|
Recent documents FavoritesMenu 最近開いたドキュメント
|
||||||
Modified QueryPoseView 更新日時
|
Modified QueryPoseView 更新日時
|
||||||
Created ContainerWindow 作成日時
|
Created ContainerWindow 作成日時
|
||||||
Error %error loading add-On %name. ContainerWindow %nameアドオンの読み込み中に%errorエラーが発生
|
Error %error loading add-On %name. ContainerWindow %nameアドオンの読み込み中に%errorエラーが発生
|
||||||
|
If you %ifYouDoAction the settings folder, %osName may not behave properly!\n\nAre you sure you want to do this? FSUtils settings フォルダーを%ifYouDoActionした場合、%osName が正常に動作しなくなる可能性があります!\n\n本当に続けますか?
|
||||||
contains SelectionWindow 含む
|
contains SelectionWindow 含む
|
||||||
Sorry, you can't save things at the root of your system. FilePanelPriv システムのルートフォルダーに保存は許可されていません。
|
Sorry, you can't save things at the root of your system. FilePanelPriv システムのルートフォルダーに保存は許可されていません。
|
||||||
Show shared volumes on Desktop SettingsView 共有ディスクをデスクトップに表示する
|
Show shared volumes on Desktop SettingsView 共有ディスクをデスクトップに表示する
|
||||||
@@ -69,8 +70,8 @@ Mount server error AutoMounterSettings マウントサーバーエラー
|
|||||||
Search FindPanel 検索
|
Search FindPanel 検索
|
||||||
Preparing to empty Trash… StatusWindow ごみ箱を空にする準備をしています…
|
Preparing to empty Trash… StatusWindow ごみ箱を空にする準備をしています…
|
||||||
Disks Model ディスク
|
Disks Model ディスク
|
||||||
Create link ContainerWindow 指定先にリンクを作成
|
Create link ContainerWindow リンクの作成
|
||||||
Decrease size DeskWindow サイズを縮小
|
Decrease size DeskWindow サイズを小さく
|
||||||
Size ContainerWindow サイズ
|
Size ContainerWindow サイズ
|
||||||
All disks AutoMounterSettings 全パーティション
|
All disks AutoMounterSettings 全パーティション
|
||||||
Would you like to find some other suitable application? FSUtils 他に適切なアプリケーションを検索しますか?
|
Would you like to find some other suitable application? FSUtils 他に適切なアプリケーションを検索しますか?
|
||||||
@@ -86,6 +87,7 @@ Cut FilePanelPriv 切り取り
|
|||||||
Replace FilePanelPriv 置換
|
Replace FilePanelPriv 置換
|
||||||
Select all VolumeWindow すべて選択
|
Select all VolumeWindow すべて選択
|
||||||
Opens with: InfoWindow アプリケーション:
|
Opens with: InfoWindow アプリケーション:
|
||||||
|
If you %ifYouDoAction the mime settings, %osName may not behave properly!\n\nAre you sure you want to do this? FSUtils MIME 設定を%ifYouDoActionした場合、%osName が正常に動作しなくなる可能性があります!\n\n本当に続けますか?
|
||||||
Open ContainerWindow 開く
|
Open ContainerWindow 開く
|
||||||
Error calculating folder size. InfoWindow フォルダーサイズの計算中にエラー発生。
|
Error calculating folder size. InfoWindow フォルダーサイズの計算中にエラー発生。
|
||||||
New folder FilePanelPriv 新規フォルダー
|
New folder FilePanelPriv 新規フォルダー
|
||||||
@@ -99,7 +101,7 @@ rename TextWidget As in 'if you rename this folder...' (en) 'Wird dieser Ordner
|
|||||||
You cannot replace a folder or a symbolic link with a file. FSUtils フォルダーをリンクまたはファイルと置き換えることはできません。
|
You cannot replace a folder or a symbolic link with a file. FSUtils フォルダーをリンクまたはファイルと置き換えることはできません。
|
||||||
Show space bars on volumes SettingsView ディスクの容量グラフを表示する
|
Show space bars on volumes SettingsView ディスクの容量グラフを表示する
|
||||||
Invert selection ContainerWindow 選択範囲を反転
|
Invert selection ContainerWindow 選択範囲を反転
|
||||||
Increase size DeskWindow サイズを拡大
|
Increase size DeskWindow サイズを大きく
|
||||||
Resize to fit ContainerWindow 最適な表示サイズに変更
|
Resize to fit ContainerWindow 最適な表示サイズに変更
|
||||||
%Ld bytes WidgetAttributeText %Ld バイト
|
%Ld bytes WidgetAttributeText %Ld バイト
|
||||||
Add printer… ContainerWindow プリンターの追加…
|
Add printer… ContainerWindow プリンターの追加…
|
||||||
@@ -114,6 +116,7 @@ Move to Trash ContainerWindow ごみ箱に捨てる
|
|||||||
Move to ContainerWindow 指定先に移動
|
Move to ContainerWindow 指定先に移動
|
||||||
Create %s clipping PoseView %s クリップを作成
|
Create %s clipping PoseView %s クリップを作成
|
||||||
Set new link target InfoWindow リンク先を変更
|
Set new link target InfoWindow リンク先を変更
|
||||||
|
If you %ifYouDoAction the system folder or its contents, you won't be able to boot %osName!\n\nAre you sure you want to do this?\n\nTo %toDoAction the system folder or its contents anyway, hold down the Shift key and click \"%toConfirmAction\". FSUtils システムフォルダーおよびその中身を%ifYouDoActionした場合、%osName が起動しなくなります!\n\n本当に続けますか?\n\nそれでもシステムフォルダーまたはその中身の%toDoActionを実行するなら、Shift キーを押しながら \"%toConfirmAction\" をクリックしてください。
|
||||||
Save as Query template: FindPanel クエリ雛型として保存する:
|
Save as Query template: FindPanel クエリ雛型として保存する:
|
||||||
Cancel FSUtils 中止
|
Cancel FSUtils 中止
|
||||||
move FSUtils As in 'to move this folder...' (en) Um diesen Ordner zu verschieben...' (de) 移動
|
move FSUtils As in 'to move this folder...' (en) Um diesen Ordner zu verschieben...' (de) 移動
|
||||||
@@ -136,6 +139,7 @@ Could not open \"%document\" with application \"%app\" (%error). FSUtils ア
|
|||||||
Sorry, saving more than one item is not allowed. FilePanelPriv 2 項目以上は保存できません。
|
Sorry, saving more than one item is not allowed. FilePanelPriv 2 項目以上は保存できません。
|
||||||
Searching for disks to mount… StatusWindow マウントできるディスクを探しています…
|
Searching for disks to mount… StatusWindow マウントできるディスクを探しています…
|
||||||
New folder FSUtils 新規フォルダー
|
New folder FSUtils 新規フォルダー
|
||||||
|
If you %ifYouDoAction the common folder, %osName may not behave properly!\n\nAre you sure you want to do this?\n\nTo %toDoAction the common folder anyway, hold down the Shift key and click \"%toConfirmAction\". FSUtils common フォルダーおよびその中身を%ifYouDoActionした場合、%osName が起動しなくなります!\n\n本当に続けますか?\n \n それでも common フォルダーまたはその中身の%toDoActionを実行するなら、Shift キーを押しながら \"%toConfirmAction\" をクリックしてください。
|
||||||
Free space color SettingsView 空き容量の色
|
Free space color SettingsView 空き容量の色
|
||||||
Cut ContainerWindow 切り取り
|
Cut ContainerWindow 切り取り
|
||||||
Remove FindPanel 削除
|
Remove FindPanel 削除
|
||||||
@@ -167,7 +171,6 @@ Edit favorites… FilePanelPriv お気に入りの編集…
|
|||||||
Create relative link ContainerWindow 相対リンクを作成
|
Create relative link ContainerWindow 相対リンクを作成
|
||||||
Copy ContainerWindow コピー
|
Copy ContainerWindow コピー
|
||||||
Size PoseView サイズ
|
Size PoseView サイズ
|
||||||
If you %ifYouDoAction the home folder, %osName may not behave properly! Are you sure you want to do this? To %toDoAction the home folder anyway, hold down the Shift key and click \"%toConfirmAction\". FSUtils ホームフォルダーを%ifYouDoActionすると、%osName は正しく動かなくなるかもしれません。本当に行いますか? どうしてもホームフォルダーを%toDoActionするには、シフトキーを押したまま、\"%toConfirmAction\" をクリックしてください。
|
|
||||||
Location OpenWithWindow 場所
|
Location OpenWithWindow 場所
|
||||||
Force identify ContainerWindow ファイル形式を判別
|
Force identify ContainerWindow ファイル形式を判別
|
||||||
Duplicate ContainerWindow 複製
|
Duplicate ContainerWindow 複製
|
||||||
@@ -191,7 +194,6 @@ New DeskWindow 新規作成
|
|||||||
Open InfoWindow 開く
|
Open InfoWindow 開く
|
||||||
64 x 64 ContainerWindow 64 × 64
|
64 x 64 ContainerWindow 64 × 64
|
||||||
Replace all FSUtils すべて置換
|
Replace all FSUtils すべて置換
|
||||||
The application \"%appname\" does not support the type of document you are about to open. Are you sure you want to proceed? If you know that the application supports the document type, you should contact the publisher of the application and ask them to update their application to list the type of your document as supported. OpenWithWindow アプリケーション \"%appname\" は開こうとしているドキュメントの形式をサポートしていません。進めても良いですか? アプリケーションがサポートすることがわかっている場合は、アプリケーションの製作元にドキュメントタイプをサポートに加えるように問い合わせてください。
|
|
||||||
Preparing to restore items… StatusWindow 復元の準備をしています…
|
Preparing to restore items… StatusWindow 復元の準備をしています…
|
||||||
Replace other file WidgetAttributeText 既存の項目を置き換える
|
Replace other file WidgetAttributeText 既存の項目を置き換える
|
||||||
Some of the selected items cannot be moved to the Trash. Would you like to delete them instead? (This operation cannot be reverted.) PoseView いくつかの選択項目はごみ箱に捨てられません。完全に削除してもよろしいですか?元に戻せませんので、ご注意ください。
|
Some of the selected items cannot be moved to the Trash. Would you like to delete them instead? (This operation cannot be reverted.) PoseView いくつかの選択項目はごみ箱に捨てられません。完全に削除してもよろしいですか?元に戻せませんので、ご注意ください。
|
||||||
@@ -216,7 +218,6 @@ Name PoseView 名前
|
|||||||
Group FilePermissionsView グループ
|
Group FilePermissionsView グループ
|
||||||
Version: InfoWindow バージョン:
|
Version: InfoWindow バージョン:
|
||||||
Created: InfoWindow 作成日時:
|
Created: InfoWindow 作成日時:
|
||||||
If you %ifYouDoAction the mime settings, %osName may not behave properly! Are you sure you want to do this? To %toDoAction the mime settings anyway, click \"%toConfirmAction\". FSUtils mime 設定を%ifYouDoActionすると、%osName は正しく動かなくなるかもしれません。本当に行いますか? どうしても mime 設定を%toDoActionするには、\"%toConfirmAction\" をクリックしてください。
|
|
||||||
\nShould this be fixed? FSUtils \n修復しますか?
|
\nShould this be fixed? FSUtils \n修復しますか?
|
||||||
Copying: StatusWindow コピー中:
|
Copying: StatusWindow コピー中:
|
||||||
Capacity: InfoWindow 容量:
|
Capacity: InfoWindow 容量:
|
||||||
@@ -247,6 +248,7 @@ The file \"%name\" already exists in the specified folder. Do you want to replac
|
|||||||
Cancel ContainerWindow 中止
|
Cancel ContainerWindow 中止
|
||||||
Only the boot disk AutoMounterSettings 起動ディスクのみ
|
Only the boot disk AutoMounterSettings 起動ディスクのみ
|
||||||
Trash TrackerSettingsWindow ごみ箱
|
Trash TrackerSettingsWindow ごみ箱
|
||||||
|
If you %ifYouDoAction the config folder, %osName may not behave properly!\n\nAre you sure you want to do this? FSUtils config フォルダーを%ifYouDoAction した場合、%osName が正常に動作しなくなる可能性があります!\n\n本当に続けますか?
|
||||||
Unmount ContainerWindow マウント解除
|
Unmount ContainerWindow マウント解除
|
||||||
Copy layout ContainerWindow レイアウトをコピー
|
Copy layout ContainerWindow レイアウトをコピー
|
||||||
label too long PoseView ラベルが長すぎます
|
label too long PoseView ラベルが長すぎます
|
||||||
@@ -275,7 +277,6 @@ Rename TextWidget Button label, 'Rename' (en), 'Umbenennen' (de) 名前の変更
|
|||||||
Paused: click to resume or stop StatusWindow 一時停止中:クリックで動作の再開また中断をしてください
|
Paused: click to resume or stop StatusWindow 一時停止中:クリックで動作の再開また中断をしてください
|
||||||
Preferred for %type OpenWithWindow %type対応優先アプリ
|
Preferred for %type OpenWithWindow %type対応優先アプリ
|
||||||
GiB WidgetAttributeText GiB
|
GiB WidgetAttributeText GiB
|
||||||
If you %ifYouDoAction the common folder, %osName may not behave properly! Are you sure you want to do this? To %toDoAction the common folder anyway, hold down the Shift key and click \"%toConfirmAction\". FSUtils common フォルダーを%ifYouDoActionすると、%osName は正しく動かなくなるかもしれません。本当に行いますか? どうしても common フォルダーを%toDoActionするには、シフトキーを押したまま、\"%toConfirmAction\" をクリックしてください。
|
|
||||||
There was an error deleting \"%name\":\n\t%error FSUtils \"%name\" の移動中にエラーが発生しました:\n\t%error
|
There was an error deleting \"%name\":\n\t%error FSUtils \"%name\" の移動中にエラーが発生しました:\n\t%error
|
||||||
Paste FilePanelPriv 貼り付け
|
Paste FilePanelPriv 貼り付け
|
||||||
Copy more ContainerWindow さらにコピー
|
Copy more ContainerWindow さらにコピー
|
||||||
@@ -333,6 +334,7 @@ Handles any file OpenWithWindow すべてのファイルに対応
|
|||||||
Get info FilePanelPriv 詳細情報…
|
Get info FilePanelPriv 詳細情報…
|
||||||
32 x 32 DeskWindow 32 × 32
|
32 x 32 DeskWindow 32 × 32
|
||||||
Cancel FilePanelPriv 中止
|
Cancel FilePanelPriv 中止
|
||||||
|
The application \"%appname\" does not support the type of document you are about to open.\nAre you sure you want to proceed?\n\nIf you know that the application supports the document type, you should contact the publisher of the application and ask them to update their application to list the type of your document as supported. OpenWithWindow アプリケーション \"%appname\" は開こうとしているドキュメントタイプをサポートしていません。\n本当に進めても良いですか?\n\n アプリケーションがサポートすることがわかっている場合は、アプリケーションの製作元にドキュメントタイプをサポートに加えるように問い合わせてください。
|
||||||
Disks DirMenu ディスク
|
Disks DirMenu ディスク
|
||||||
New folder %ld FSUtils 新規フォルダー %ld
|
New folder %ld FSUtils 新規フォルダー %ld
|
||||||
All BeOS disks AutoMounterSettings 全 BFS パーティション
|
All BeOS disks AutoMounterSettings 全 BFS パーティション
|
||||||
@@ -370,6 +372,7 @@ Preferences… ContainerWindow 設定…
|
|||||||
Move PoseView 移動
|
Move PoseView 移動
|
||||||
Open and make preferred OpenWithWindow 関連づけて開く
|
Open and make preferred OpenWithWindow 関連づけて開く
|
||||||
Are you sure you want to delete the selected item(s)? This operation cannot be reverted. FSUtils 選択した項目を削除してもよろしいですか?削除した項目は復元できませんので、ご注意ください。
|
Are you sure you want to delete the selected item(s)? This operation cannot be reverted. FSUtils 選択した項目を削除してもよろしいですか?削除した項目は復元できませんので、ご注意ください。
|
||||||
|
If you %ifYouDoAction the home folder, %osName may not behave properly!\n\nAre you sure you want to do this?\n\nTo %toDoAction the home folder anyway, hold down the Shift key and click \"%toConfirmAction\". FSUtils ホームフォルダーを%ifYouDoActionした場合、%osName が正常に動作しなくなる可能性があります!\n\n本当に続けますか?\n\nそれでもホームフォルダーの%toDoActionを実行するなら、Shift キーを押しながら \"%toConfirmAction\" をクリックしてください。
|
||||||
Add-ons DeskWindow アドオン
|
Add-ons DeskWindow アドオン
|
||||||
Name FindPanel 名前
|
Name FindPanel 名前
|
||||||
And FindPanel かつ
|
And FindPanel かつ
|
||||||
@@ -402,7 +405,6 @@ Select… FilePanelPriv 選択…
|
|||||||
Don't move files to Trash SettingsView ごみ箱を経由せずに削除する
|
Don't move files to Trash SettingsView ごみ箱を経由せずに削除する
|
||||||
There was an error resolving the link. Tracker リンクの解釈に失敗しました。
|
There was an error resolving the link. Tracker リンクの解釈に失敗しました。
|
||||||
%BytesPerSecond/s StatusWindow %BytesPerSecond/秒
|
%BytesPerSecond/s StatusWindow %BytesPerSecond/秒
|
||||||
If you %ifYouDoAction the system folder or its contents, you won't be able to boot %osName! Are you sure you want to do this? To %toDoAction the system folder or its contents anyway, hold down the Shift key and click \"%toConfirmAction\". FSUtils システムフォルダーやその内容を%ifYouDoActionすると、%osName は起動しなくなるでしょう。本当に行いますか? どうしてもシステムフォルダーやその内容を%toDoActionするには、シフトキーを押したまま、\"%toConfirmAction\" をクリックしてください。
|
|
||||||
You can't move or copy the trash. FSUtils ごみ箱の移動やコピーはできません。
|
You can't move or copy the trash. FSUtils ごみ箱の移動やコピーはできません。
|
||||||
ends with SelectionWindow 指定文字列で終わる
|
ends with SelectionWindow 指定文字列で終わる
|
||||||
Volume icons TrackerSettingsWindow ディスクアイコン
|
Volume icons TrackerSettingsWindow ディスクアイコン
|
||||||
@@ -424,7 +426,6 @@ Modified ContainerWindow 更新日時
|
|||||||
Edit Query template FindPanel クエリテンプレートを編集
|
Edit Query template FindPanel クエリテンプレートを編集
|
||||||
Prompt FSUtils プロンプト
|
Prompt FSUtils プロンプト
|
||||||
Edit query ContainerWindow クエリを編集
|
Edit query ContainerWindow クエリを編集
|
||||||
If you %ifYouDoAction the config folder, %osName may not behave properly! Are you sure you want to do this? To %toDoAction the config folder anyway, click \"%toConfirmAction\". FSUtils config フォルダーを%ifYouDoActionすると、%osName は正しく動かなくなるかもしれません。本当に行いますか? どうしても config フォルダーを%toDoActionするには、シフトキーを押したまま、\"%toConfirmAction\" をクリックしてください。
|
|
||||||
Find… ContainerWindow 検索…
|
Find… ContainerWindow 検索…
|
||||||
Create a Query FindPanel クエリを作成
|
Create a Query FindPanel クエリを作成
|
||||||
Move to Trash FSUtils ごみ箱に移動
|
Move to Trash FSUtils ごみ箱に移動
|
||||||
@@ -443,7 +444,6 @@ Mount ContainerWindow マウント
|
|||||||
%capacity (%used used -- %free free) InfoWindow %capacity (%used 使用中 -- %free 使用可能)
|
%capacity (%used used -- %free free) InfoWindow %capacity (%used 使用中 -- %free 使用可能)
|
||||||
Cancel FSClipBoard 中止
|
Cancel FSClipBoard 中止
|
||||||
Cut more ContainerWindow さらに切り取る
|
Cut more ContainerWindow さらに切り取る
|
||||||
If you %ifYouDoAction the settings folder, %osName may not behave properly! Are you sure you want to do this? To %toDoAction the settings folder anyway, click \"%toConfirmAction\". FSUtils settings フォルダーを%ifYouDoActionすると、%osName は正しく動かなくなるかもしれません。本当に行いますか? どうしても settings フォルダーを%toDoActionするには、シフトキーを押したまま、\"%toConfirmAction\" をクリックしてください。
|
|
||||||
Deleting: StatusWindow 削除中:
|
Deleting: StatusWindow 削除中:
|
||||||
Empty Trash InfoWindow ごみ箱を空にする
|
Empty Trash InfoWindow ごみ箱を空にする
|
||||||
Add FindPanel 追加
|
Add FindPanel 追加
|
||||||
|
|||||||
@@ -1,4 +1,4 @@
|
|||||||
1 lithuanian x-vnd.Haiku-libtracker 3695303004
|
1 lithuanian x-vnd.Haiku-libtracker 3778030996
|
||||||
common B_COMMON_DIRECTORY Bendra
|
common B_COMMON_DIRECTORY Bendra
|
||||||
OK WidgetAttributeText Gerai
|
OK WidgetAttributeText Gerai
|
||||||
Icon view VolumeWindow Rodyti piktogramas
|
Icon view VolumeWindow Rodyti piktogramas
|
||||||
@@ -171,7 +171,6 @@ Edit favorites… FilePanelPriv Tvarkyti parankinius…
|
|||||||
Create relative link ContainerWindow Kurti santykinę nuorodą
|
Create relative link ContainerWindow Kurti santykinę nuorodą
|
||||||
Copy ContainerWindow Kopijuoti
|
Copy ContainerWindow Kopijuoti
|
||||||
Size PoseView Dydis
|
Size PoseView Dydis
|
||||||
If you %ifYouDoAction the home folder, %osName may not behave properly! Are you sure you want to do this? To %toDoAction the home folder anyway, hold down the Shift key and click \"%toConfirmAction\". FSUtils Jeigu %ifYouDoAction Namų aplanką, „%osName“ elgesys taps nenuspėjamas! Ar tikrai to norite? Jeigu vis tiek norite %toDoAction Namų aplanką, spustelėkite mygtuką „%toConfirmAction“, laikydami nuspaustą Lyg2 klavišą.
|
|
||||||
Location OpenWithWindow Vieta
|
Location OpenWithWindow Vieta
|
||||||
Force identify ContainerWindow Priverstinai atpažinti
|
Force identify ContainerWindow Priverstinai atpažinti
|
||||||
Duplicate ContainerWindow Dubliuoti
|
Duplicate ContainerWindow Dubliuoti
|
||||||
@@ -195,7 +194,6 @@ New DeskWindow Naujas
|
|||||||
Open InfoWindow Atverti
|
Open InfoWindow Atverti
|
||||||
64 x 64 ContainerWindow 64×64
|
64 x 64 ContainerWindow 64×64
|
||||||
Replace all FSUtils Pakeisti visus
|
Replace all FSUtils Pakeisti visus
|
||||||
The application \"%appname\" does not support the type of document you are about to open. Are you sure you want to proceed? If you know that the application supports the document type, you should contact the publisher of the application and ask them to update their application to list the type of your document as supported. OpenWithWindow Programa „%appname“ nepalaiko bandomo atverti dokumento tipo. Ar tikrai norite tęsti? Jeigu tikrai žinote, jog ši programa palaiko šio tipo dokumentus, galbūt Jums vertėtų susisiekti su programos leidėju ir paprašyti, kad šis papildytų programos deklaruojamą ja leidžiamų atverti dokumentų tipų sąrašą, įtraukdamas į jį šio dokumento tipą.
|
|
||||||
Preparing to restore items… StatusWindow Ruošiamasi atkurti objektus…
|
Preparing to restore items… StatusWindow Ruošiamasi atkurti objektus…
|
||||||
Replace other file WidgetAttributeText Pakeisti kitą failą
|
Replace other file WidgetAttributeText Pakeisti kitą failą
|
||||||
Some of the selected items cannot be moved to the Trash. Would you like to delete them instead? (This operation cannot be reverted.) PoseView Kai kurių pažymėtų elementų išmesti Šiukšlinėn negalima. Ar norite vietoje to juos pašalinti? Neužmirškite, jog šis veiksmas negrįžtamas!
|
Some of the selected items cannot be moved to the Trash. Would you like to delete them instead? (This operation cannot be reverted.) PoseView Kai kurių pažymėtų elementų išmesti Šiukšlinėn negalima. Ar norite vietoje to juos pašalinti? Neužmirškite, jog šis veiksmas negrįžtamas!
|
||||||
@@ -220,7 +218,6 @@ Name PoseView Vardas
|
|||||||
Group FilePermissionsView Grupė
|
Group FilePermissionsView Grupė
|
||||||
Version: InfoWindow Versija:
|
Version: InfoWindow Versija:
|
||||||
Created: InfoWindow Sukūrimo data:
|
Created: InfoWindow Sukūrimo data:
|
||||||
If you %ifYouDoAction the mime settings, %osName may not behave properly! Are you sure you want to do this? To %toDoAction the mime settings anyway, click \"%toConfirmAction\". FSUtils Jeigu %ifYouDoAction MIME nuostatas, „%osName“ elgesys taps nenuspėjamas! Ar tikrai to norite? Jeigu vis tiek norite %toDoAction MIME nuostatas, spustelėkite mygtuką „%toConfirmAction“.
|
|
||||||
\nShould this be fixed? FSUtils \nAr pašalinti šį nesklandumą?
|
\nShould this be fixed? FSUtils \nAr pašalinti šį nesklandumą?
|
||||||
Copying: StatusWindow Kopijuojama:
|
Copying: StatusWindow Kopijuojama:
|
||||||
Capacity: InfoWindow Talpa:
|
Capacity: InfoWindow Talpa:
|
||||||
@@ -280,7 +277,6 @@ Rename TextWidget Button label, 'Rename' (en), 'Umbenennen' (de) Pervardinti
|
|||||||
Paused: click to resume or stop StatusWindow Pristabdyta. Galite pratęsti arba nutraukti
|
Paused: click to resume or stop StatusWindow Pristabdyta. Galite pratęsti arba nutraukti
|
||||||
Preferred for %type OpenWithWindow Numatytoji %type objektams
|
Preferred for %type OpenWithWindow Numatytoji %type objektams
|
||||||
GiB WidgetAttributeText GiB
|
GiB WidgetAttributeText GiB
|
||||||
If you %ifYouDoAction the common folder, %osName may not behave properly! Are you sure you want to do this? To %toDoAction the common folder anyway, hold down the Shift key and click \"%toConfirmAction\". FSUtils Jeigu %ifYouDoAction aplanką „Bendra“, „%osName“ elgesys taps nenuspėjamas! Ar tikrai to norite? Jeigu vis tiek norite %toDoAction aplanką „Bendra“, spustelėkite mygtuką „%toConfirmAction“, laikydami nuspaustą Lyg2 klavišą.
|
|
||||||
There was an error deleting \"%name\":\n\t%error FSUtils Šalinant „%name“ įvyko klaida:\n\t%error
|
There was an error deleting \"%name\":\n\t%error FSUtils Šalinant „%name“ įvyko klaida:\n\t%error
|
||||||
Paste FilePanelPriv Įdėti
|
Paste FilePanelPriv Įdėti
|
||||||
Copy more ContainerWindow Kopijuoti dar
|
Copy more ContainerWindow Kopijuoti dar
|
||||||
@@ -407,7 +403,6 @@ Select… FilePanelPriv Pažymėti…
|
|||||||
Don't move files to Trash SettingsView Šiukšlinėn objektų nemesti
|
Don't move files to Trash SettingsView Šiukšlinėn objektų nemesti
|
||||||
There was an error resolving the link. Tracker Nustatant nuorodos tikslą, įvyko klaida.
|
There was an error resolving the link. Tracker Nustatant nuorodos tikslą, įvyko klaida.
|
||||||
%BytesPerSecond/s StatusWindow %BytesPerSecond/s
|
%BytesPerSecond/s StatusWindow %BytesPerSecond/s
|
||||||
If you %ifYouDoAction the system folder or its contents, you won't be able to boot %osName! Are you sure you want to do this? To %toDoAction the system folder or its contents anyway, hold down the Shift key and click \"%toConfirmAction\". FSUtils Jeigu %ifYouDoAction Sistemos aplanką, „%osName“ elgesys taps nenuspėjamas! Ar tikrai to norite? Jeigu vis tiek norite %toDoAction Sistemos aplanką, spustelėkite mygtuką „%toConfirmAction“, laikydami nuspaustą Lyg2 klavišą.
|
|
||||||
You can't move or copy the trash. FSUtils Šiukšlinės negalima nei perkelti, nei nukopijuoti.
|
You can't move or copy the trash. FSUtils Šiukšlinės negalima nei perkelti, nei nukopijuoti.
|
||||||
ends with SelectionWindow baigiasi
|
ends with SelectionWindow baigiasi
|
||||||
Volume icons TrackerSettingsWindow Tomų piktogramos
|
Volume icons TrackerSettingsWindow Tomų piktogramos
|
||||||
@@ -429,7 +424,6 @@ Modified ContainerWindow Modifikavimo data
|
|||||||
Edit Query template FindPanel Taisyti užklausos šabloną
|
Edit Query template FindPanel Taisyti užklausos šabloną
|
||||||
Prompt FSUtils Klausti
|
Prompt FSUtils Klausti
|
||||||
Edit query ContainerWindow Taisyti užklausą
|
Edit query ContainerWindow Taisyti užklausą
|
||||||
If you %ifYouDoAction the config folder, %osName may not behave properly! Are you sure you want to do this? To %toDoAction the config folder anyway, click \"%toConfirmAction\". FSUtils Jeigu %ifYouDoAction Konfigūracijos aplanką, „%osName“ elgesys taps nenuspėjamas! Ar tikrai to norite? Jeigu vis tiek norite %toDoAction Konfigūracijos aplanką, spustelėkite mygtuką „%toConfirmAction“.
|
|
||||||
Find… ContainerWindow Ieškti…
|
Find… ContainerWindow Ieškti…
|
||||||
Create a Query FindPanel Kurti užklausą
|
Create a Query FindPanel Kurti užklausą
|
||||||
Move to Trash FSUtils Išmesti Šiukšlinėn
|
Move to Trash FSUtils Išmesti Šiukšlinėn
|
||||||
@@ -448,7 +442,6 @@ Mount ContainerWindow Prijungti
|
|||||||
%capacity (%used used -- %free free) InfoWindow %capacity (užpildyta %used, laisva %free)
|
%capacity (%used used -- %free free) InfoWindow %capacity (užpildyta %used, laisva %free)
|
||||||
Cancel FSClipBoard Atsisakyti
|
Cancel FSClipBoard Atsisakyti
|
||||||
Cut more ContainerWindow Iškirpti dar
|
Cut more ContainerWindow Iškirpti dar
|
||||||
If you %ifYouDoAction the settings folder, %osName may not behave properly! Are you sure you want to do this? To %toDoAction the settings folder anyway, click \"%toConfirmAction\". FSUtils Jeigu %ifYouDoAction Nuostatų aplanką, „%osName“ elgesys taps nenuspėjamas! Ar tikrai to norite? Jeigu vis tiek norite %toDoAction Nuostatų aplanką, spustelėkite mygtuką „%toConfirmAction“.
|
|
||||||
Deleting: StatusWindow Šalinama:
|
Deleting: StatusWindow Šalinama:
|
||||||
Empty Trash InfoWindow Ištuštinti šiukšlinę
|
Empty Trash InfoWindow Ištuštinti šiukšlinę
|
||||||
Add FindPanel Pridėti
|
Add FindPanel Pridėti
|
||||||
|
|||||||
@@ -1,4 +1,4 @@
|
|||||||
1 bokmål, norwegian; norwegian bokmål x-vnd.Haiku-libtracker 3603368351
|
1 bokmål, norwegian; norwegian bokmål x-vnd.Haiku-libtracker 3686096343
|
||||||
common B_COMMON_DIRECTORY felles
|
common B_COMMON_DIRECTORY felles
|
||||||
OK WidgetAttributeText OK
|
OK WidgetAttributeText OK
|
||||||
Icon view VolumeWindow Ikonvisning
|
Icon view VolumeWindow Ikonvisning
|
||||||
@@ -167,7 +167,6 @@ Edit favorites… FilePanelPriv Rediger favoritter
|
|||||||
Create relative link ContainerWindow Lag relativ lenke
|
Create relative link ContainerWindow Lag relativ lenke
|
||||||
Copy ContainerWindow Kopier
|
Copy ContainerWindow Kopier
|
||||||
Size PoseView Størrelse
|
Size PoseView Størrelse
|
||||||
If you %ifYouDoAction the home folder, %osName may not behave properly! Are you sure you want to do this? To %toDoAction the home folder anyway, hold down the Shift key and click \"%toConfirmAction\". FSUtils Dersom du gjennomfører %ifYouDoAction hjemmemappe, %osName kan opptre seg unormalt! Er du sikker på at du vil gjennomføre dette? For å %toDoAction hjemmemappe allikevel, hold ned shift tast og klikk \"%toConfirmAction\".
|
|
||||||
Location OpenWithWindow Sted
|
Location OpenWithWindow Sted
|
||||||
Force identify ContainerWindow Tving identifisering
|
Force identify ContainerWindow Tving identifisering
|
||||||
Duplicate ContainerWindow Dupliser
|
Duplicate ContainerWindow Dupliser
|
||||||
@@ -191,7 +190,6 @@ New DeskWindow Ny
|
|||||||
Open InfoWindow Åpne
|
Open InfoWindow Åpne
|
||||||
64 x 64 ContainerWindow 64 x 64
|
64 x 64 ContainerWindow 64 x 64
|
||||||
Replace all FSUtils Erstatt alle
|
Replace all FSUtils Erstatt alle
|
||||||
The application \"%appname\" does not support the type of document you are about to open. Are you sure you want to proceed? If you know that the application supports the document type, you should contact the publisher of the application and ask them to update their application to list the type of your document as supported. OpenWithWindow Programmet \"%appname\" støtter ikke den dokumenttypen du er i ferd med å åpne. Er du sikker på at du vil fortsette? Hvis du er sikker på at programmet støtter dokumenttypen bør du kontakte utgiveren av programmet og be dem om å oppdatere programmet til å oppgi at dokumenttypen er støttet.
|
|
||||||
Preparing to restore items… StatusWindow Forbereder gjenoppretting av oppføringer...
|
Preparing to restore items… StatusWindow Forbereder gjenoppretting av oppføringer...
|
||||||
Replace other file WidgetAttributeText Erstatt annen fil
|
Replace other file WidgetAttributeText Erstatt annen fil
|
||||||
Some of the selected items cannot be moved to the Trash. Would you like to delete them instead? (This operation cannot be reverted.) PoseView Noen av de valgte oppføringene kan ikke flyttes til søppelkurven. Ønsker du å slette dem i stedet? (Denne operasjonen kan ikke angres.)
|
Some of the selected items cannot be moved to the Trash. Would you like to delete them instead? (This operation cannot be reverted.) PoseView Noen av de valgte oppføringene kan ikke flyttes til søppelkurven. Ønsker du å slette dem i stedet? (Denne operasjonen kan ikke angres.)
|
||||||
@@ -216,7 +214,6 @@ Name PoseView Navn
|
|||||||
Group FilePermissionsView Gruppe
|
Group FilePermissionsView Gruppe
|
||||||
Version: InfoWindow Versjon:
|
Version: InfoWindow Versjon:
|
||||||
Created: InfoWindow Opprettet:
|
Created: InfoWindow Opprettet:
|
||||||
If you %ifYouDoAction the mime settings, %osName may not behave properly! Are you sure you want to do this? To %toDoAction the mime settings anyway, click \"%toConfirmAction\". FSUtils Dersom du gjennomfører %ifYouDoAction mime settingene, %osName kan opptre seg unormalt! Er du sikker på at du vil gjennomføre dette? For å %toDoAction mime settingsene alikevel, klikk \"%toConfirmAction\".
|
|
||||||
\nShould this be fixed? FSUtils \nSkal dette repareres?
|
\nShould this be fixed? FSUtils \nSkal dette repareres?
|
||||||
Copying: StatusWindow Kopierer:
|
Copying: StatusWindow Kopierer:
|
||||||
Capacity: InfoWindow Kapasitet:
|
Capacity: InfoWindow Kapasitet:
|
||||||
@@ -275,7 +272,6 @@ Rename TextWidget Button label, 'Rename' (en), 'Umbenennen' (de) Gi nytt navn
|
|||||||
Paused: click to resume or stop StatusWindow Pauset: klikk for å fortsette eller stoppe
|
Paused: click to resume or stop StatusWindow Pauset: klikk for å fortsette eller stoppe
|
||||||
Preferred for %type OpenWithWindow Foretrukket for %type
|
Preferred for %type OpenWithWindow Foretrukket for %type
|
||||||
GiB WidgetAttributeText GiB
|
GiB WidgetAttributeText GiB
|
||||||
If you %ifYouDoAction the common folder, %osName may not behave properly! Are you sure you want to do this? To %toDoAction the common folder anyway, hold down the Shift key and click \"%toConfirmAction\". FSUtils Dersom du gjennomfører %ifYouDoAction felles mappen, %osName kan opptre seg unormalt! Er du sikker på at du vil gjennomføre dette? For å %toDoAction felles mappe, hold ned shift tast og klikk \"%toConfirmAction\".
|
|
||||||
There was an error deleting \"%name\":\n\t%error FSUtils Det oppsto en feil ved sletting av \"%name\":\n\t%error
|
There was an error deleting \"%name\":\n\t%error FSUtils Det oppsto en feil ved sletting av \"%name\":\n\t%error
|
||||||
Paste FilePanelPriv Lim inn
|
Paste FilePanelPriv Lim inn
|
||||||
Copy more ContainerWindow Kopier flere
|
Copy more ContainerWindow Kopier flere
|
||||||
@@ -401,7 +397,6 @@ Could not update permissions of file \"%name\". %error FSUtils Kunne ikke oppda
|
|||||||
Select… FilePanelPriv Velg...
|
Select… FilePanelPriv Velg...
|
||||||
Don't move files to Trash SettingsView Ikke flytt filer til søppelkurven.
|
Don't move files to Trash SettingsView Ikke flytt filer til søppelkurven.
|
||||||
%BytesPerSecond/s StatusWindow %BytesPerSecond/s
|
%BytesPerSecond/s StatusWindow %BytesPerSecond/s
|
||||||
If you %ifYouDoAction the system folder or its contents, you won't be able to boot %osName! Are you sure you want to do this? To %toDoAction the system folder or its contents anyway, hold down the Shift key and click \"%toConfirmAction\". FSUtils Dersom du gjennomfører %ifYouDoAction system mappen eller dens innhold, vil du ikke kunne starte %osName! Are you sure you want to do this? For å %toDoAction system mappe, hold ned shift tast og klikk \"%toConfirmAction\".
|
|
||||||
You can't move or copy the trash. FSUtils Du kan ikke flytte eller kopiere søppelkurven.
|
You can't move or copy the trash. FSUtils Du kan ikke flytte eller kopiere søppelkurven.
|
||||||
ends with SelectionWindow slutter med
|
ends with SelectionWindow slutter med
|
||||||
Volume icons TrackerSettingsWindow Volumikoner
|
Volume icons TrackerSettingsWindow Volumikoner
|
||||||
@@ -422,7 +417,6 @@ less than FindPanel mindre enn
|
|||||||
Modified ContainerWindow Endret
|
Modified ContainerWindow Endret
|
||||||
Edit Query template FindPanel Rediger mal for spørringer
|
Edit Query template FindPanel Rediger mal for spørringer
|
||||||
Edit query ContainerWindow Rediger spørring
|
Edit query ContainerWindow Rediger spørring
|
||||||
If you %ifYouDoAction the config folder, %osName may not behave properly! Are you sure you want to do this? To %toDoAction the config folder anyway, click \"%toConfirmAction\". FSUtils Dersom du gjennomfører %ifYouDoAction config mappen, %osName kan opptre seg unormalt! Er du sikker på at du vil gjennomføre dette? For å %toDoAction config mappen uansett, klikk \"%toConfirmAction\".
|
|
||||||
Find… ContainerWindow Finn...
|
Find… ContainerWindow Finn...
|
||||||
Create a Query FindPanel Opprett en spørring
|
Create a Query FindPanel Opprett en spørring
|
||||||
Move to Trash FSUtils Flytt til søppelkurven
|
Move to Trash FSUtils Flytt til søppelkurven
|
||||||
@@ -441,7 +435,6 @@ Mount ContainerWindow Monter
|
|||||||
%capacity (%used used -- %free free) InfoWindow %capacity (%used brukt -- %free ledig)
|
%capacity (%used used -- %free free) InfoWindow %capacity (%used brukt -- %free ledig)
|
||||||
Cancel FSClipBoard Avbryt
|
Cancel FSClipBoard Avbryt
|
||||||
Cut more ContainerWindow Klipp mer
|
Cut more ContainerWindow Klipp mer
|
||||||
If you %ifYouDoAction the settings folder, %osName may not behave properly! Are you sure you want to do this? To %toDoAction the settings folder anyway, click \"%toConfirmAction\". FSUtils Dersom du gjennomfører %ifYouDoAction settings mappen, %osName kan opptre seg unormalt! Er du sikker på at du vil gjennomføre dette? For å %toDoAction settings mappen uansett, klikk \"%toConfirmAction\".
|
|
||||||
Deleting: StatusWindow Sletter:
|
Deleting: StatusWindow Sletter:
|
||||||
Empty Trash InfoWindow Tøm søppelkurven
|
Empty Trash InfoWindow Tøm søppelkurven
|
||||||
Add FindPanel Legg til
|
Add FindPanel Legg til
|
||||||
|
|||||||
@@ -1,4 +1,4 @@
|
|||||||
1 dutch; flemish x-vnd.Haiku-libtracker 3121200791
|
1 dutch; flemish x-vnd.Haiku-libtracker 3203928783
|
||||||
common B_COMMON_DIRECTORY algemeen
|
common B_COMMON_DIRECTORY algemeen
|
||||||
OK WidgetAttributeText OK
|
OK WidgetAttributeText OK
|
||||||
Icon view VolumeWindow Icoonweergave
|
Icon view VolumeWindow Icoonweergave
|
||||||
@@ -168,7 +168,6 @@ Edit favorites… FilePanelPriv Favorieten bewerken...
|
|||||||
Create relative link ContainerWindow Maak een relatieve link
|
Create relative link ContainerWindow Maak een relatieve link
|
||||||
Copy ContainerWindow Kopiëren
|
Copy ContainerWindow Kopiëren
|
||||||
Size PoseView Grootte
|
Size PoseView Grootte
|
||||||
If you %ifYouDoAction the home folder, %osName may not behave properly! Are you sure you want to do this? To %toDoAction the home folder anyway, hold down the Shift key and click \"%toConfirmAction\". FSUtils Als je de gebruikersmap %ifYouDoAction, kan het zijn dat %osName niet meer correct functioneert! Ben je zeker dat je dit wilt doen? Om de gebruikersmap toch te %toDoAction, druk de Shifttoets in en klik op \"%toConfirmAction\".
|
|
||||||
Location OpenWithWindow Locatie
|
Location OpenWithWindow Locatie
|
||||||
Force identify ContainerWindow Forceer identificatie
|
Force identify ContainerWindow Forceer identificatie
|
||||||
Duplicate ContainerWindow Dupliceer
|
Duplicate ContainerWindow Dupliceer
|
||||||
@@ -192,7 +191,6 @@ New DeskWindow Nieuw
|
|||||||
Open InfoWindow Openen
|
Open InfoWindow Openen
|
||||||
64 x 64 ContainerWindow 64 x64
|
64 x 64 ContainerWindow 64 x64
|
||||||
Replace all FSUtils Alles vervangen
|
Replace all FSUtils Alles vervangen
|
||||||
The application \"%appname\" does not support the type of document you are about to open. Are you sure you want to proceed? If you know that the application supports the document type, you should contact the publisher of the application and ask them to update their application to list the type of your document as supported. OpenWithWindow Het documenttype dat u wilt openen, wordt niet ondersteund door het programma \"%appname\". Bent u zeker dat u verder wilt gaan? Als u zeker weet dat de toepassing het documenttype ondersteunt, kun u contact opnemen met de uitgever van de toepassing met de vraag of ze hun toepassing zodanig willen bijwerken dat dit documenttype opgenomen wordt in de lijst van ondersteunde documenttypen.
|
|
||||||
Preparing to restore items… StatusWindow Herstel van items wordt voorbereid...
|
Preparing to restore items… StatusWindow Herstel van items wordt voorbereid...
|
||||||
Replace other file WidgetAttributeText Ander bestand vervangen
|
Replace other file WidgetAttributeText Ander bestand vervangen
|
||||||
Some of the selected items cannot be moved to the Trash. Would you like to delete them instead? (This operation cannot be reverted.) PoseView Sommige van de geselecteerde items kunnen niet naar de prullenbak verplaatst worden. Wilt u ze in plaats daarvan verwijderen? (Deze actie kan niet ongedaan gemaakt worden.)
|
Some of the selected items cannot be moved to the Trash. Would you like to delete them instead? (This operation cannot be reverted.) PoseView Sommige van de geselecteerde items kunnen niet naar de prullenbak verplaatst worden. Wilt u ze in plaats daarvan verwijderen? (Deze actie kan niet ongedaan gemaakt worden.)
|
||||||
@@ -217,7 +215,6 @@ Name PoseView Naam
|
|||||||
Group FilePermissionsView Groep
|
Group FilePermissionsView Groep
|
||||||
Version: InfoWindow Versie:
|
Version: InfoWindow Versie:
|
||||||
Created: InfoWindow Gemaakt:
|
Created: InfoWindow Gemaakt:
|
||||||
If you %ifYouDoAction the mime settings, %osName may not behave properly! Are you sure you want to do this? To %toDoAction the mime settings anyway, click \"%toConfirmAction\". FSUtils Als je de mime-instellingen %ifYouDoAction, kan het zijn dat %osName niet meer correct functioneert! Ben je zeker dat je dit wilt doen? Om de mime-instellingen toch te %toDoAction, klik \"%toConfirmAction\".
|
|
||||||
\nShould this be fixed? FSUtils \nMoet dit opgelost worden?
|
\nShould this be fixed? FSUtils \nMoet dit opgelost worden?
|
||||||
Copying: StatusWindow Aan het kopiëren:
|
Copying: StatusWindow Aan het kopiëren:
|
||||||
Capacity: InfoWindow Capaciteit:
|
Capacity: InfoWindow Capaciteit:
|
||||||
@@ -276,7 +273,6 @@ Rename TextWidget Button label, 'Rename' (en), 'Umbenennen' (de) Hernoemen
|
|||||||
Paused: click to resume or stop StatusWindow Gepauzeerd: klik om te hervatten of te stoppen
|
Paused: click to resume or stop StatusWindow Gepauzeerd: klik om te hervatten of te stoppen
|
||||||
Preferred for %type OpenWithWindow Geschikt voor %type
|
Preferred for %type OpenWithWindow Geschikt voor %type
|
||||||
GiB WidgetAttributeText GiB
|
GiB WidgetAttributeText GiB
|
||||||
If you %ifYouDoAction the common folder, %osName may not behave properly! Are you sure you want to do this? To %toDoAction the common folder anyway, hold down the Shift key and click \"%toConfirmAction\". FSUtils Als je de algemene map %ifYouDoAction, kan het zijn dat %osName niet meer correct functioneert! Ben je zeker dat je dit wilt doen? Om de algemene map toch te %toDoAction, houd de Shifttoets ingedrukt en klik op \"%toConfirmAction\".
|
|
||||||
There was an error deleting \"%name\":\n\t%error FSUtils Er is een fout opgetreden bij het verwijderen van \"%name\":\n\t%error
|
There was an error deleting \"%name\":\n\t%error FSUtils Er is een fout opgetreden bij het verwijderen van \"%name\":\n\t%error
|
||||||
Paste FilePanelPriv Plakken
|
Paste FilePanelPriv Plakken
|
||||||
Copy more ContainerWindow Meer kopiëren
|
Copy more ContainerWindow Meer kopiëren
|
||||||
@@ -403,7 +399,6 @@ Select… FilePanelPriv Selecteren...
|
|||||||
Don't move files to Trash SettingsView Verplaats geen bestanden naar de prullenbak
|
Don't move files to Trash SettingsView Verplaats geen bestanden naar de prullenbak
|
||||||
There was an error resolving the link. Tracker Er is een fout opgetreden bij het toekennen van de link.
|
There was an error resolving the link. Tracker Er is een fout opgetreden bij het toekennen van de link.
|
||||||
%BytesPerSecond/s StatusWindow %BytesPerSecond/s
|
%BytesPerSecond/s StatusWindow %BytesPerSecond/s
|
||||||
If you %ifYouDoAction the system folder or its contents, you won't be able to boot %osName! Are you sure you want to do this? To %toDoAction the system folder or its contents anyway, hold down the Shift key and click \"%toConfirmAction\". FSUtils Als je de systeemmap of haar inhoud %ifYouDoAction, zul je niet meer in staat zijn om %osName op te starten! Ben je zeker dat je dit wilt doen? Om de systeemmap of haar inhoud toch te %toDoAction, houd de Shifttoets ingedrukt en klik op \"%toConfirmAction\".
|
|
||||||
You can't move or copy the trash. FSUtils U kunt de prullenbak niet verplaatsen of kopiëren.
|
You can't move or copy the trash. FSUtils U kunt de prullenbak niet verplaatsen of kopiëren.
|
||||||
ends with SelectionWindow eindigt met
|
ends with SelectionWindow eindigt met
|
||||||
Volume icons TrackerSettingsWindow Gegevensdrager-iconen
|
Volume icons TrackerSettingsWindow Gegevensdrager-iconen
|
||||||
@@ -425,7 +420,6 @@ Modified ContainerWindow Gewijzigd
|
|||||||
Edit Query template FindPanel Zoekopdracht-sjabloon aanpassen
|
Edit Query template FindPanel Zoekopdracht-sjabloon aanpassen
|
||||||
Prompt FSUtils Bevestigen
|
Prompt FSUtils Bevestigen
|
||||||
Edit query ContainerWindow Zoekopdracht aanpassen
|
Edit query ContainerWindow Zoekopdracht aanpassen
|
||||||
If you %ifYouDoAction the config folder, %osName may not behave properly! Are you sure you want to do this? To %toDoAction the config folder anyway, click \"%toConfirmAction\". FSUtils Als je de configuratiemap %ifYouDoAction, kan het zijn dat %osName niet meer correct functioneert! Ben je zeker dat je dit wilt doen? Om de configuratiemap toch te %toDoAction, klik op \"%toConfirmAction\".
|
|
||||||
Find… ContainerWindow Zoeken...
|
Find… ContainerWindow Zoeken...
|
||||||
Create a Query FindPanel Maak een Zoekopdracht
|
Create a Query FindPanel Maak een Zoekopdracht
|
||||||
Move to Trash FSUtils Verplaats naar Prullenbak
|
Move to Trash FSUtils Verplaats naar Prullenbak
|
||||||
@@ -444,7 +438,6 @@ Mount ContainerWindow Betrekken
|
|||||||
%capacity (%used used -- %free free) InfoWindow %capacity (%used gebruikt -- %free vrij)
|
%capacity (%used used -- %free free) InfoWindow %capacity (%used gebruikt -- %free vrij)
|
||||||
Cancel FSClipBoard Annuleren
|
Cancel FSClipBoard Annuleren
|
||||||
Cut more ContainerWindow Knip meer
|
Cut more ContainerWindow Knip meer
|
||||||
If you %ifYouDoAction the settings folder, %osName may not behave properly! Are you sure you want to do this? To %toDoAction the settings folder anyway, click \"%toConfirmAction\". FSUtils Als je de instellingenmap %ifYouDoAction, kan het zijn dat %osName niet meer correct functioneert! Ben je zeker dat je dit wilt doen? Om de instellingenmap toch te %toDoAction, klik \"%toConfirmAction\".
|
|
||||||
Deleting: StatusWindow Verwijdert:
|
Deleting: StatusWindow Verwijdert:
|
||||||
Empty Trash InfoWindow Prullenbak leegmaken:
|
Empty Trash InfoWindow Prullenbak leegmaken:
|
||||||
Add FindPanel Toevoegen
|
Add FindPanel Toevoegen
|
||||||
|
|||||||
@@ -1,4 +1,4 @@
|
|||||||
1 polish x-vnd.Haiku-libtracker 3695303004
|
1 polish x-vnd.Haiku-libtracker 3778030996
|
||||||
common B_COMMON_DIRECTORY common
|
common B_COMMON_DIRECTORY common
|
||||||
OK WidgetAttributeText OK
|
OK WidgetAttributeText OK
|
||||||
Icon view VolumeWindow Widok ikon
|
Icon view VolumeWindow Widok ikon
|
||||||
@@ -171,7 +171,6 @@ Edit favorites… FilePanelPriv Edytuj ulubione…
|
|||||||
Create relative link ContainerWindow Utwórz wględny skrót
|
Create relative link ContainerWindow Utwórz wględny skrót
|
||||||
Copy ContainerWindow Kopiuj
|
Copy ContainerWindow Kopiuj
|
||||||
Size PoseView Rozmiar
|
Size PoseView Rozmiar
|
||||||
If you %ifYouDoAction the home folder, %osName may not behave properly! Are you sure you want to do this? To %toDoAction the home folder anyway, hold down the Shift key and click \"%toConfirmAction\". FSUtils Jeśli %ifYouDoAction katalogu domowego, %osName może nie zachowywać się poprawnie! Czy na pewno chcesz to zrobić? Aby %toDoAction katalogu domowego mimo wszystko, przytrzymaj klawisz Shift i kliknij \"%toConfirmAction\".
|
|
||||||
Location OpenWithWindow Lokacja
|
Location OpenWithWindow Lokacja
|
||||||
Force identify ContainerWindow Identyfikuj
|
Force identify ContainerWindow Identyfikuj
|
||||||
Duplicate ContainerWindow Zduplikuj
|
Duplicate ContainerWindow Zduplikuj
|
||||||
@@ -195,7 +194,6 @@ New DeskWindow Nowy
|
|||||||
Open InfoWindow Otwórz
|
Open InfoWindow Otwórz
|
||||||
64 x 64 ContainerWindow 64 x 64
|
64 x 64 ContainerWindow 64 x 64
|
||||||
Replace all FSUtils Zastąp wszystko
|
Replace all FSUtils Zastąp wszystko
|
||||||
The application \"%appname\" does not support the type of document you are about to open. Are you sure you want to proceed? If you know that the application supports the document type, you should contact the publisher of the application and ask them to update their application to list the type of your document as supported. OpenWithWindow Aplikacja \"%appname\" nie obsługuje typu pliku który masz zamiar otworzyć. Jesteś pewien, że chcesz kontynuować? Jeśli wiesz, że aplikacja obsługuje ten typ plików, skontaktuj się z pomocą techniczną i poinformuj o zaistniałej sytuacji.
|
|
||||||
Preparing to restore items… StatusWindow Przygotowanie do odzyskania elementów…
|
Preparing to restore items… StatusWindow Przygotowanie do odzyskania elementów…
|
||||||
Replace other file WidgetAttributeText Zastąp pozostałe pliki
|
Replace other file WidgetAttributeText Zastąp pozostałe pliki
|
||||||
Some of the selected items cannot be moved to the Trash. Would you like to delete them instead? (This operation cannot be reverted.) PoseView Część zaznaczonych plików nie może zostać przeniesiona do kosza. Czy chcesz je usunąć zamiast tego? (Ta operacja nie może zostać cofnięta)
|
Some of the selected items cannot be moved to the Trash. Would you like to delete them instead? (This operation cannot be reverted.) PoseView Część zaznaczonych plików nie może zostać przeniesiona do kosza. Czy chcesz je usunąć zamiast tego? (Ta operacja nie może zostać cofnięta)
|
||||||
@@ -220,7 +218,6 @@ Name PoseView Nazwa
|
|||||||
Group FilePermissionsView Grupa
|
Group FilePermissionsView Grupa
|
||||||
Version: InfoWindow Wersja:
|
Version: InfoWindow Wersja:
|
||||||
Created: InfoWindow Stworzono:
|
Created: InfoWindow Stworzono:
|
||||||
If you %ifYouDoAction the mime settings, %osName may not behave properly! Are you sure you want to do this? To %toDoAction the mime settings anyway, click \"%toConfirmAction\". FSUtils Jeśli %ifYouDoAction typ mime, %osName może nie zachowywać się poprawnie! Czy na pewno chcesz to zrobić? Aby %toDoAction typ mime mimo wszystko kliknij \"%toConfirmAction\".
|
|
||||||
\nShould this be fixed? FSUtils \nCzy naprawić to?
|
\nShould this be fixed? FSUtils \nCzy naprawić to?
|
||||||
Copying: StatusWindow Kopiowanie:
|
Copying: StatusWindow Kopiowanie:
|
||||||
Capacity: InfoWindow Pojemność:
|
Capacity: InfoWindow Pojemność:
|
||||||
@@ -280,7 +277,6 @@ Rename TextWidget Button label, 'Rename' (en), 'Umbenennen' (de) Zmiana nazwy
|
|||||||
Paused: click to resume or stop StatusWindow Pauza: kliknij by kontynuować lub zatrzymać
|
Paused: click to resume or stop StatusWindow Pauza: kliknij by kontynuować lub zatrzymać
|
||||||
Preferred for %type OpenWithWindow Preferowane dla %type
|
Preferred for %type OpenWithWindow Preferowane dla %type
|
||||||
GiB WidgetAttributeText GiB
|
GiB WidgetAttributeText GiB
|
||||||
If you %ifYouDoAction the common folder, %osName may not behave properly! Are you sure you want to do this? To %toDoAction the common folder anyway, hold down the Shift key and click \"%toConfirmAction\". FSUtils Jeśli %ifYouDoAction katalog common, %osName może nie zachowywać się poprawnie! Czy na pewno chcesz to zrobić? Aby %toDoAction katalog common mimo wszystko, przytrzymaj klawisz Shift i kliknij \"%toConfirmAction\".
|
|
||||||
There was an error deleting \"%name\":\n\t%error FSUtils Pojawił się błąd przy usuwaniu \"%name\":\n\t%error
|
There was an error deleting \"%name\":\n\t%error FSUtils Pojawił się błąd przy usuwaniu \"%name\":\n\t%error
|
||||||
Paste FilePanelPriv Wklej
|
Paste FilePanelPriv Wklej
|
||||||
Copy more ContainerWindow Kopiuj więcej
|
Copy more ContainerWindow Kopiuj więcej
|
||||||
@@ -407,7 +403,6 @@ Select… FilePanelPriv Wybierz…
|
|||||||
Don't move files to Trash SettingsView Nie przenoś plików do kosza
|
Don't move files to Trash SettingsView Nie przenoś plików do kosza
|
||||||
There was an error resolving the link. Tracker Pojawił się problem przy przetwarzaniu skrótu.
|
There was an error resolving the link. Tracker Pojawił się problem przy przetwarzaniu skrótu.
|
||||||
%BytesPerSecond/s StatusWindow %BytesPerSecond/s
|
%BytesPerSecond/s StatusWindow %BytesPerSecond/s
|
||||||
If you %ifYouDoAction the system folder or its contents, you won't be able to boot %osName! Are you sure you want to do this? To %toDoAction the system folder or its contents anyway, hold down the Shift key and click \"%toConfirmAction\". FSUtils Jeśli %ifYouDoAction folder systemowy lub jego zawartość, nie będziesz mógł uruchomić %osName! Czy na pewno chcesz to zrobić? Aby %toDoAction katalogu domowego mimo wszystko, przytrzymaj klawisz Shift i kliknij \"%toConfirmAction\".
|
|
||||||
You can't move or copy the trash. FSUtils nie możesz przenieść ani skopiować kosza.
|
You can't move or copy the trash. FSUtils nie możesz przenieść ani skopiować kosza.
|
||||||
ends with SelectionWindow kończy się na
|
ends with SelectionWindow kończy się na
|
||||||
Volume icons TrackerSettingsWindow Ikony dysków
|
Volume icons TrackerSettingsWindow Ikony dysków
|
||||||
@@ -429,7 +424,6 @@ Modified ContainerWindow Zmodyfikowane
|
|||||||
Edit Query template FindPanel Edytuj szablon Zapytania
|
Edit Query template FindPanel Edytuj szablon Zapytania
|
||||||
Prompt FSUtils Ostrzegaj
|
Prompt FSUtils Ostrzegaj
|
||||||
Edit query ContainerWindow Edytuj zapytanie
|
Edit query ContainerWindow Edytuj zapytanie
|
||||||
If you %ifYouDoAction the config folder, %osName may not behave properly! Are you sure you want to do this? To %toDoAction the config folder anyway, click \"%toConfirmAction\". FSUtils Jeśli %ifYouDoAction katalog config, %osName może nie zachowywać się poprawnie! Czy na pewno chcesz to zrobić? Aby %toDoAction katalog config mimo wszystko, kliknij \"%toConfirmAction\".
|
|
||||||
Find… ContainerWindow Znajdź…
|
Find… ContainerWindow Znajdź…
|
||||||
Create a Query FindPanel Stwórz zapytanie
|
Create a Query FindPanel Stwórz zapytanie
|
||||||
Move to Trash FSUtils Przenieś do kosza
|
Move to Trash FSUtils Przenieś do kosza
|
||||||
@@ -448,7 +442,6 @@ Mount ContainerWindow Zamontuj
|
|||||||
%capacity (%used used -- %free free) InfoWindow %capacity (%used zajęte -- %free wolne)
|
%capacity (%used used -- %free free) InfoWindow %capacity (%used zajęte -- %free wolne)
|
||||||
Cancel FSClipBoard Anuluj
|
Cancel FSClipBoard Anuluj
|
||||||
Cut more ContainerWindow Wytnij więcej
|
Cut more ContainerWindow Wytnij więcej
|
||||||
If you %ifYouDoAction the settings folder, %osName may not behave properly! Are you sure you want to do this? To %toDoAction the settings folder anyway, click \"%toConfirmAction\". FSUtils Jeśli %ifYouDoAction katalog settings, %osName może nie zachowywać się poprawnie! Czy na pewno chcesz to zrobić? Aby %toDoAction katalog config mimo wszystko, kliknij \"%toConfirmAction\".
|
|
||||||
Deleting: StatusWindow Usuwanie:
|
Deleting: StatusWindow Usuwanie:
|
||||||
Empty Trash InfoWindow Opróżnij kosz
|
Empty Trash InfoWindow Opróżnij kosz
|
||||||
Add FindPanel Dodaj
|
Add FindPanel Dodaj
|
||||||
|
|||||||
@@ -1,4 +1,4 @@
|
|||||||
1 russian x-vnd.Haiku-libtracker 4130438504
|
1 russian x-vnd.Haiku-libtracker 3778030996
|
||||||
common B_COMMON_DIRECTORY Общие
|
common B_COMMON_DIRECTORY Общие
|
||||||
OK WidgetAttributeText ОК
|
OK WidgetAttributeText ОК
|
||||||
Icon view VolumeWindow Большие значки
|
Icon view VolumeWindow Большие значки
|
||||||
@@ -19,6 +19,7 @@ Invert selection VolumeWindow Инвертировать
|
|||||||
Recent documents FavoritesMenu Недавние документы
|
Recent documents FavoritesMenu Недавние документы
|
||||||
Modified QueryPoseView Изменён
|
Modified QueryPoseView Изменён
|
||||||
Created ContainerWindow Создан
|
Created ContainerWindow Создан
|
||||||
|
Error %error loading add-On %name. ContainerWindow Ошибка %error при запуске дополнения %name.
|
||||||
contains SelectionWindow содержит
|
contains SelectionWindow содержит
|
||||||
Sorry, you can't save things at the root of your system. FilePanelPriv Извините, сохранение объектов в корневой папке системы невозможно.
|
Sorry, you can't save things at the root of your system. FilePanelPriv Извините, сохранение объектов в корневой папке системы невозможно.
|
||||||
Show shared volumes on Desktop SettingsView Показывать значки общих дисков
|
Show shared volumes on Desktop SettingsView Показывать значки общих дисков
|
||||||
@@ -46,7 +47,9 @@ Select all ContainerWindow Выделить все
|
|||||||
Sorry, the 'Character' attribute cannot store a multi-byte glyph. WidgetAttributeText Извините, но атрибут 'Character' не может хранить многобайтовый глиф.
|
Sorry, the 'Character' attribute cannot store a multi-byte glyph. WidgetAttributeText Извините, но атрибут 'Character' не может хранить многобайтовый глиф.
|
||||||
Clean up DeskWindow Выстроить
|
Clean up DeskWindow Выстроить
|
||||||
You cannot copy or move the root directory. FSUtils Вы не можете перемещать или копировать корневую папку.
|
You cannot copy or move the root directory. FSUtils Вы не можете перемещать или копировать корневую папку.
|
||||||
|
%SizeProcessed of %TotalSize, %BytesPerSecond/s StatusWindow %SizeProcessed из %TotalSize, %BytesPerSecond/с
|
||||||
Invert selection FilePanelPriv Инвертировать
|
Invert selection FilePanelPriv Инвертировать
|
||||||
|
Rename InfoWindow Button label, 'Rename' (en), 'Umbenennen' (de) Переименовать
|
||||||
save text FilePanelPriv сохранить текст
|
save text FilePanelPriv сохранить текст
|
||||||
Select all FilePanelPriv Выделить все
|
Select all FilePanelPriv Выделить все
|
||||||
Link to: InfoWindow Ссылка на:
|
Link to: InfoWindow Ссылка на:
|
||||||
@@ -74,6 +77,7 @@ Decrease size DeskWindow Уменьшить размер
|
|||||||
Size ContainerWindow Размер
|
Size ContainerWindow Размер
|
||||||
All disks AutoMounterSettings Все диски
|
All disks AutoMounterSettings Все диски
|
||||||
Would you like to find some other suitable application? FSUtils Хотите найти какое-нибудь другое подходящее приложение?
|
Would you like to find some other suitable application? FSUtils Хотите найти какое-нибудь другое подходящее приложение?
|
||||||
|
Finish: %time - %finishtime left StatusWindow Окончание: %time - осталось %finishtime
|
||||||
Could not open \"%document\" with application \"%app\" (Missing libraries: %library). \n FSUtils Невозможно открыть \"%document\" приложением \"%app\" (Отсутствуют библиотеки: %library). \n
|
Could not open \"%document\" with application \"%app\" (Missing libraries: %library). \n FSUtils Невозможно открыть \"%document\" приложением \"%app\" (Отсутствуют библиотеки: %library). \n
|
||||||
no items CountView нет объектов
|
no items CountView нет объектов
|
||||||
Ignore case SelectionWindow Игнорировать регистр
|
Ignore case SelectionWindow Игнорировать регистр
|
||||||
@@ -94,6 +98,7 @@ Add-ons VolumeWindow Дополнения
|
|||||||
Sorry, you can't copy items to the Trash. PoseView Извините, но вы не можете копировать объекты в корзину.
|
Sorry, you can't copy items to the Trash. PoseView Извините, но вы не можете копировать объекты в корзину.
|
||||||
List view VolumeWindow Список
|
List view VolumeWindow Список
|
||||||
matches wildcard expression SelectionWindow совпадает с шаблонным выражением
|
matches wildcard expression SelectionWindow совпадает с шаблонным выражением
|
||||||
|
rename TextWidget As in 'if you rename this folder...' (en) 'Wird dieser Ordner umbenannt...' (de) переименуете
|
||||||
You cannot replace a folder or a symbolic link with a file. FSUtils Невозможно заменить папку или символическую ссылку файлом.
|
You cannot replace a folder or a symbolic link with a file. FSUtils Невозможно заменить папку или символическую ссылку файлом.
|
||||||
Show space bars on volumes SettingsView Показывать индикаторы занятого места
|
Show space bars on volumes SettingsView Показывать индикаторы занятого места
|
||||||
Invert selection ContainerWindow Инвертировать
|
Invert selection ContainerWindow Инвертировать
|
||||||
@@ -104,6 +109,7 @@ Add printer… ContainerWindow Добавить принтер…
|
|||||||
Open VolumeWindow Открыть
|
Open VolumeWindow Открыть
|
||||||
New folder ContainerWindow Новая папка
|
New folder ContainerWindow Новая папка
|
||||||
Kind ContainerWindow Тип
|
Kind ContainerWindow Тип
|
||||||
|
rename TextWidget As in 'to rename this folder...' (en) 'Um diesen Ordner umzubenennen...' (de) переименовать
|
||||||
home B_USER_DIRECTORY Домашняя
|
home B_USER_DIRECTORY Домашняя
|
||||||
Select… ContainerWindow Выделить…
|
Select… ContainerWindow Выделить…
|
||||||
Copy to ContainerWindow Копировать в
|
Copy to ContainerWindow Копировать в
|
||||||
@@ -114,6 +120,7 @@ Set new link target InfoWindow Изменить цель ссылки
|
|||||||
Save as Query template: FindPanel Сохранить запрос как шаблон:
|
Save as Query template: FindPanel Сохранить запрос как шаблон:
|
||||||
preferences B_PREFERENCES_DIRECTORY Настройки
|
preferences B_PREFERENCES_DIRECTORY Настройки
|
||||||
Cancel FSUtils Отмена
|
Cancel FSUtils Отмена
|
||||||
|
move FSUtils As in 'to move this folder...' (en) Um diesen Ordner zu verschieben...' (de) переместить
|
||||||
Edit name ContainerWindow Переименовать
|
Edit name ContainerWindow Переименовать
|
||||||
Show volumes on Desktop SettingsView Показывать значки разделов
|
Show volumes on Desktop SettingsView Показывать значки разделов
|
||||||
KiB WidgetAttributeText Кбайт
|
KiB WidgetAttributeText Кбайт
|
||||||
@@ -126,6 +133,7 @@ OK TrackerInitialState ОК
|
|||||||
Could not open \"%name\". The file is mistakenly marked as executable. FSUtils Невозможно открыть \"%name\". Файл ошибочно помечен как исполняемый.
|
Could not open \"%name\". The file is mistakenly marked as executable. FSUtils Невозможно открыть \"%name\". Файл ошибочно помечен как исполняемый.
|
||||||
Add-ons ContainerWindow Дополнения
|
Add-ons ContainerWindow Дополнения
|
||||||
Edit templates… TemplatesMenu Изменить шаблоны…
|
Edit templates… TemplatesMenu Изменить шаблоны…
|
||||||
|
Finish: %time - Over %finishtime left StatusWindow Окончание: %time - Осталось более %finishtime
|
||||||
An item named \"%name\" already exists in this folder. Would you like to replace it with the symbolic link you are creating? FSUtils Объект с именем \"%name\" уже существует в этой папке. Заменить его ссылкой, которую вы создаёте?"
|
An item named \"%name\" already exists in this folder. Would you like to replace it with the symbolic link you are creating? FSUtils Объект с именем \"%name\" уже существует в этой папке. Заменить его ссылкой, которую вы создаёте?"
|
||||||
Sorry, there is not enough free space on the destination volume to copy the selection. FSUtils Извините, но на принимающем разделе недостаточно свободного места для копирования выделенных файлов.
|
Sorry, there is not enough free space on the destination volume to copy the selection. FSUtils Извините, но на принимающем разделе недостаточно свободного места для копирования выделенных файлов.
|
||||||
Could not open \"%document\" with application \"%app\" (%error). FSUtils Невозможно открыть \"%document\" приложением \"%app\" (%error).
|
Could not open \"%document\" with application \"%app\" (%error). FSUtils Невозможно открыть \"%document\" приложением \"%app\" (%error).
|
||||||
@@ -186,7 +194,6 @@ New DeskWindow Создать
|
|||||||
Open InfoWindow Открыть
|
Open InfoWindow Открыть
|
||||||
64 x 64 ContainerWindow 64 x 64
|
64 x 64 ContainerWindow 64 x 64
|
||||||
Replace all FSUtils Заменить все
|
Replace all FSUtils Заменить все
|
||||||
The application \"%appname\" does not support the type of document you are about to open. Are you sure you want to proceed? If you know that the application supports the document type, you should contact the publisher of the application and ask them to update their application to list the type of your document as supported. OpenWithWindow Программа \"%appname\" не поддерживает открытие документов данного типа. Вы действительно хотите открыть документ в ней? Если вы знаете, что программа поддерживает этот тип документов, то вы должны связаться с разработчиком программы и просить его обновить список типов, поддерживаемых программой.
|
|
||||||
Preparing to restore items… StatusWindow Подготовка к восстановлению файлов…
|
Preparing to restore items… StatusWindow Подготовка к восстановлению файлов…
|
||||||
Replace other file WidgetAttributeText Заменить существующий файл
|
Replace other file WidgetAttributeText Заменить существующий файл
|
||||||
Some of the selected items cannot be moved to the Trash. Would you like to delete them instead? (This operation cannot be reverted.) PoseView Некоторые из выбранных объектов не могут быть перемещены в корзину. Хотите ли вы вместо этого удалить эти объекты? (Эту операцию будет невозможно отменить)
|
Some of the selected items cannot be moved to the Trash. Would you like to delete them instead? (This operation cannot be reverted.) PoseView Некоторые из выбранных объектов не могут быть перемещены в корзину. Хотите ли вы вместо этого удалить эти объекты? (Эту операцию будет невозможно отменить)
|
||||||
@@ -197,6 +204,7 @@ Could not find application \"%appname\" OpenWithWindow Невозможно н
|
|||||||
The selected item cannot be moved to the Trash. Would you like to delete it instead? (This operation cannot be reverted.) PoseView Выбранный объект не может быть перемещён в корзину. Хотите ли вы вместо этого удалить его? (Эту операцию будет невозможно отменить)
|
The selected item cannot be moved to the Trash. Would you like to delete it instead? (This operation cannot be reverted.) PoseView Выбранный объект не может быть перемещён в корзину. Хотите ли вы вместо этого удалить его? (Эту операцию будет невозможно отменить)
|
||||||
Invert SelectionWindow Инвертировать
|
Invert SelectionWindow Инвертировать
|
||||||
Save Query as template… FindPanel Сохранить запрос как шаблон…
|
Save Query as template… FindPanel Сохранить запрос как шаблон…
|
||||||
|
rename InfoWindow As in 'if you rename this folder...' (en) 'Wird dieser Ordner umbenannt...' (de) переименуете
|
||||||
Find FindPanel Найти
|
Find FindPanel Найти
|
||||||
Move FSUtils Button label, 'Move' (en), 'Verschieben' (de) Переместить
|
Move FSUtils Button label, 'Move' (en), 'Verschieben' (de) Переместить
|
||||||
Get info ContainerWindow Информация
|
Get info ContainerWindow Информация
|
||||||
@@ -244,6 +252,7 @@ Trash TrackerSettingsWindow Корзина
|
|||||||
Unmount ContainerWindow Отключить
|
Unmount ContainerWindow Отключить
|
||||||
Copy layout ContainerWindow Копировать вид папки
|
Copy layout ContainerWindow Копировать вид папки
|
||||||
label too long PoseView слишком длинное имя
|
label too long PoseView слишком длинное имя
|
||||||
|
Finish: %time StatusWindow Осталось: %time
|
||||||
Cancel Tracker Отмена
|
Cancel Tracker Отмена
|
||||||
Sorry, you cannot edit that attribute. WidgetAttributeText Извините, но вы не можете изменить этот атрибут.
|
Sorry, you cannot edit that attribute. WidgetAttributeText Извините, но вы не можете изменить этот атрибут.
|
||||||
Name ContainerWindow Имя
|
Name ContainerWindow Имя
|
||||||
@@ -264,6 +273,7 @@ Unknown WidgetAttributeText Неизвестно
|
|||||||
Could not open \"%document\" (Missing symbol: %symbol). \n FSUtils Невозможно открыть \"%document\" (Отсутствует символ: %symbol). \n
|
Could not open \"%document\" (Missing symbol: %symbol). \n FSUtils Невозможно открыть \"%document\" (Отсутствует символ: %symbol). \n
|
||||||
by name FindPanel по имени
|
by name FindPanel по имени
|
||||||
Creating links: StatusWindow Создание ссылок:
|
Creating links: StatusWindow Создание ссылок:
|
||||||
|
Rename TextWidget Button label, 'Rename' (en), 'Umbenennen' (de) Переименовать
|
||||||
Paused: click to resume or stop StatusWindow Пауза: нажмите повторно для продолжения
|
Paused: click to resume or stop StatusWindow Пауза: нажмите повторно для продолжения
|
||||||
Preferred for %type OpenWithWindow Предпочтительный для %type
|
Preferred for %type OpenWithWindow Предпочтительный для %type
|
||||||
GiB WidgetAttributeText Гбайт
|
GiB WidgetAttributeText Гбайт
|
||||||
@@ -286,6 +296,7 @@ Previously mounted disks AutoMounterSettings Подключенные ране
|
|||||||
%Ld B WidgetAttributeText %Ld байт
|
%Ld B WidgetAttributeText %Ld байт
|
||||||
copying FSUtils копируемый
|
copying FSUtils копируемый
|
||||||
Error copying folder \"%name\":\n\t%error\n\nWould you like to continue? FSUtils Ошибка при копировании папки \"%name\":\n\t%error\n\nВы хотите продолжить?
|
Error copying folder \"%name\":\n\t%error\n\nWould you like to continue? FSUtils Ошибка при копировании папки \"%name\":\n\t%error\n\nВы хотите продолжить?
|
||||||
|
move FSUtils As in 'if you move this folder...' (en) 'Wird dieser Ordner verschoben...' (de) Переместите
|
||||||
Show Disks icon SettingsView Показывать значок дисков
|
Show Disks icon SettingsView Показывать значок дисков
|
||||||
Mount VolumeWindow Подключить
|
Mount VolumeWindow Подключить
|
||||||
Cancel PoseView Отмена
|
Cancel PoseView Отмена
|
||||||
@@ -301,6 +312,7 @@ Permissions ContainerWindow Права
|
|||||||
moving FSUtils перемещаемый
|
moving FSUtils перемещаемый
|
||||||
Identify InfoWindow Опознать
|
Identify InfoWindow Опознать
|
||||||
Recent folders ContainerWindow Недавнюю папку
|
Recent folders ContainerWindow Недавнюю папку
|
||||||
|
rename InfoWindow As in 'to rename this folder...' (en) 'Um diesen Ordner umzubenennen...' (de) переименовать
|
||||||
Close all ContainerWindow Закрыть все
|
Close all ContainerWindow Закрыть все
|
||||||
Include trash FindPanel Включая корзину
|
Include trash FindPanel Включая корзину
|
||||||
Query template FindPanel Шаблон запроса
|
Query template FindPanel Шаблон запроса
|
||||||
|
|||||||
@@ -1,4 +1,4 @@
|
|||||||
1 slovak x-vnd.Haiku-libtracker 3968420507
|
1 slovak x-vnd.Haiku-libtracker 4051148499
|
||||||
common B_COMMON_DIRECTORY spoločné
|
common B_COMMON_DIRECTORY spoločné
|
||||||
OK WidgetAttributeText OK
|
OK WidgetAttributeText OK
|
||||||
Icon view VolumeWindow Zobrazenie ikon
|
Icon view VolumeWindow Zobrazenie ikon
|
||||||
@@ -170,7 +170,6 @@ Edit favorites… FilePanelPriv Upraviť obľúbené…
|
|||||||
Create relative link ContainerWindow Vytvoriť relatívny odkaz
|
Create relative link ContainerWindow Vytvoriť relatívny odkaz
|
||||||
Copy ContainerWindow Kopírovať
|
Copy ContainerWindow Kopírovať
|
||||||
Size PoseView Veľkosť
|
Size PoseView Veľkosť
|
||||||
If you %ifYouDoAction the home folder, %osName may not behave properly! Are you sure you want to do this? To %toDoAction the home folder anyway, hold down the Shift key and click \"%toConfirmAction\". FSUtils Ak %ifYouDoAction domovský priečinok, %osName sa nemusí správať korektne! Ste si istý, že to chcete? Ak chcete napriek tomu %toDoAction domovský priečinok, podržte kláves Shift a kliknite na „%toConfirmAction“.
|
|
||||||
Location OpenWithWindow Umiestnenie
|
Location OpenWithWindow Umiestnenie
|
||||||
Force identify ContainerWindow Vynútiť identifikáciu
|
Force identify ContainerWindow Vynútiť identifikáciu
|
||||||
Duplicate ContainerWindow Duplikovať
|
Duplicate ContainerWindow Duplikovať
|
||||||
@@ -194,7 +193,6 @@ New DeskWindow Nový
|
|||||||
Open InfoWindow Otvoriť
|
Open InfoWindow Otvoriť
|
||||||
64 x 64 ContainerWindow 64 x 64
|
64 x 64 ContainerWindow 64 x 64
|
||||||
Replace all FSUtils Nahradiť všetky
|
Replace all FSUtils Nahradiť všetky
|
||||||
The application \"%appname\" does not support the type of document you are about to open. Are you sure you want to proceed? If you know that the application supports the document type, you should contact the publisher of the application and ask them to update their application to list the type of your document as supported. OpenWithWindow Aplikácia „%appname“ nepodporuje typ dokumentu, ktorý sa pokúšate otvoriť. Ste si istý, že chcete pokračovať? Ak viete, že aplikácia tento typ dokumentu podporuje, mali by ste kontaktovať dodávateľa aplikácie a požiadať ho, aby aktualizoval aplikáciu, aby uvádzala tento typ dokumentu ako podporovaný.
|
|
||||||
Preparing to restore items… StatusWindow Prebieha príprava na obnovenie položiek…
|
Preparing to restore items… StatusWindow Prebieha príprava na obnovenie položiek…
|
||||||
Replace other file WidgetAttributeText Nahradiť iný súbor
|
Replace other file WidgetAttributeText Nahradiť iný súbor
|
||||||
Some of the selected items cannot be moved to the Trash. Would you like to delete them instead? (This operation cannot be reverted.) PoseView Niektoré z vybraných položiek nemožno presunúť do Koša. Chcete ich namiesto toho zmazať? (Túto operáciu nemožno vrátiť.)
|
Some of the selected items cannot be moved to the Trash. Would you like to delete them instead? (This operation cannot be reverted.) PoseView Niektoré z vybraných položiek nemožno presunúť do Koša. Chcete ich namiesto toho zmazať? (Túto operáciu nemožno vrátiť.)
|
||||||
@@ -219,7 +217,6 @@ Name PoseView Názov
|
|||||||
Group FilePermissionsView Skupina
|
Group FilePermissionsView Skupina
|
||||||
Version: InfoWindow Verzia:
|
Version: InfoWindow Verzia:
|
||||||
Created: InfoWindow Vytvorené:
|
Created: InfoWindow Vytvorené:
|
||||||
If you %ifYouDoAction the mime settings, %osName may not behave properly! Are you sure you want to do this? To %toDoAction the mime settings anyway, click \"%toConfirmAction\". FSUtils Ak %ifYouDoAction nastavenia MIME, %osName sa nemusí správať korektne! Ste si istý, že to chcete? Ak chcete napriek tomu %toDoAction nastavenia MIME, kliknite na „%toConfirmAction“.
|
|
||||||
\nShould this be fixed? FSUtils \nMalo by sa to opraviť?
|
\nShould this be fixed? FSUtils \nMalo by sa to opraviť?
|
||||||
Copying: StatusWindow Kopíruje sa:
|
Copying: StatusWindow Kopíruje sa:
|
||||||
Capacity: InfoWindow Kapacita:
|
Capacity: InfoWindow Kapacita:
|
||||||
@@ -279,7 +276,6 @@ Rename TextWidget Button label, 'Rename' (en), 'Umbenennen' (de) Premenovať
|
|||||||
Paused: click to resume or stop StatusWindow Pozastavené: kliknutím môžete pokračovať alebo zastaviť
|
Paused: click to resume or stop StatusWindow Pozastavené: kliknutím môžete pokračovať alebo zastaviť
|
||||||
Preferred for %type OpenWithWindow Preferovaná pre %type
|
Preferred for %type OpenWithWindow Preferovaná pre %type
|
||||||
GiB WidgetAttributeText GiB
|
GiB WidgetAttributeText GiB
|
||||||
If you %ifYouDoAction the common folder, %osName may not behave properly! Are you sure you want to do this? To %toDoAction the common folder anyway, hold down the Shift key and click \"%toConfirmAction\". FSUtils Ak %ifYouDoAction spoločný priečinok, %osName sa nemusí správať korektne! Ste si istý, že to chcete? Ak chcete napriek tomu %toDoAction spoločný priečinok, podržte kláves Shift a kliknite na „%toConfirmAction“.
|
|
||||||
There was an error deleting \"%name\":\n\t%error FSUtils Vyskytla sa chyba pri mazaní „%name“:\n\t%error
|
There was an error deleting \"%name\":\n\t%error FSUtils Vyskytla sa chyba pri mazaní „%name“:\n\t%error
|
||||||
Paste FilePanelPriv Vložiť
|
Paste FilePanelPriv Vložiť
|
||||||
Copy more ContainerWindow Kopírovať viac
|
Copy more ContainerWindow Kopírovať viac
|
||||||
@@ -406,7 +402,6 @@ Select… FilePanelPriv Vybrať…
|
|||||||
Don't move files to Trash SettingsView Nepresúvať súbory do Koša
|
Don't move files to Trash SettingsView Nepresúvať súbory do Koša
|
||||||
There was an error resolving the link. Tracker Vyskytla sa chyba pri preklade odkazu.
|
There was an error resolving the link. Tracker Vyskytla sa chyba pri preklade odkazu.
|
||||||
%BytesPerSecond/s StatusWindow %BytesPerSecond/s
|
%BytesPerSecond/s StatusWindow %BytesPerSecond/s
|
||||||
If you %ifYouDoAction the system folder or its contents, you won't be able to boot %osName! Are you sure you want to do this? To %toDoAction the system folder or its contents anyway, hold down the Shift key and click \"%toConfirmAction\". FSUtils Ak %ifYouDoAction systémový priečinok, %osName sa nemusí správať korektne! Ste si istý, že to chcete? Ak chcete napriek tomu %toDoAction systémový priečinok alebo jeho obsah, podržte kláves Shift a kliknite na „%toConfirmAction“.
|
|
||||||
You can't move or copy the trash. FSUtils Nemôžete presunúť alebo skopírovať Kôš.
|
You can't move or copy the trash. FSUtils Nemôžete presunúť alebo skopírovať Kôš.
|
||||||
ends with SelectionWindow končí
|
ends with SelectionWindow končí
|
||||||
Volume icons TrackerSettingsWindow Ikony zväzkov
|
Volume icons TrackerSettingsWindow Ikony zväzkov
|
||||||
@@ -428,7 +423,6 @@ Modified ContainerWindow Zmenené
|
|||||||
Edit Query template FindPanel Upraviť šablónu Požiadavky
|
Edit Query template FindPanel Upraviť šablónu Požiadavky
|
||||||
Prompt FSUtils Výzva
|
Prompt FSUtils Výzva
|
||||||
Edit query ContainerWindow Upraviť Požiadavku
|
Edit query ContainerWindow Upraviť Požiadavku
|
||||||
If you %ifYouDoAction the config folder, %osName may not behave properly! Are you sure you want to do this? To %toDoAction the config folder anyway, click \"%toConfirmAction\". FSUtils Ak %ifYouDoAction konfiguračný priečinok, %osName sa nemusí správať korektne! Ste si istý, že to chcete? Ak chcete napriek tomu %toDoAction konfiguračný priečinok, kliknite na „%toConfirmAction“.
|
|
||||||
Find… ContainerWindow Nájsť…
|
Find… ContainerWindow Nájsť…
|
||||||
Create a Query FindPanel Vytvoriť Požiadavku
|
Create a Query FindPanel Vytvoriť Požiadavku
|
||||||
Move to Trash FSUtils Presunúť do Koša
|
Move to Trash FSUtils Presunúť do Koša
|
||||||
@@ -447,7 +441,6 @@ Mount ContainerWindow Pripojiť
|
|||||||
%capacity (%used used -- %free free) InfoWindow %capacity (%used využité -- %free voľné)
|
%capacity (%used used -- %free free) InfoWindow %capacity (%used využité -- %free voľné)
|
||||||
Cancel FSClipBoard Zrušiť
|
Cancel FSClipBoard Zrušiť
|
||||||
Cut more ContainerWindow Vystrihnúť viac
|
Cut more ContainerWindow Vystrihnúť viac
|
||||||
If you %ifYouDoAction the settings folder, %osName may not behave properly! Are you sure you want to do this? To %toDoAction the settings folder anyway, click \"%toConfirmAction\". FSUtils Ak %ifYouDoAction priečinok nastavení, %osName sa nemusí správať korektne! Ste si istý, že to chcete? Ak chcete napriek tomu %toDoAction priečinok nastavení, kliknite na „%toConfirmAction“.
|
|
||||||
Deleting: StatusWindow Maže sa:
|
Deleting: StatusWindow Maže sa:
|
||||||
Empty Trash InfoWindow Vyprázdniť Kôš
|
Empty Trash InfoWindow Vyprázdniť Kôš
|
||||||
Add FindPanel Pridať
|
Add FindPanel Pridať
|
||||||
|
|||||||
@@ -1,4 +1,4 @@
|
|||||||
1 ukrainian x-vnd.Haiku-libtracker 2162044751
|
1 ukrainian x-vnd.Haiku-libtracker 2244772743
|
||||||
common B_COMMON_DIRECTORY common
|
common B_COMMON_DIRECTORY common
|
||||||
OK WidgetAttributeText Гаразд
|
OK WidgetAttributeText Гаразд
|
||||||
Icon view VolumeWindow У вигляді іконок
|
Icon view VolumeWindow У вигляді іконок
|
||||||
@@ -167,7 +167,6 @@ Edit favorites… FilePanelPriv Редагувати вибране…
|
|||||||
Create relative link ContainerWindow Створити відносне посилання
|
Create relative link ContainerWindow Створити відносне посилання
|
||||||
Copy ContainerWindow Копіювати
|
Copy ContainerWindow Копіювати
|
||||||
Size PoseView Розмір
|
Size PoseView Розмір
|
||||||
If you %ifYouDoAction the home folder, %osName may not behave properly! Are you sure you want to do this? To %toDoAction the home folder anyway, hold down the Shift key and click \"%toConfirmAction\". FSUtils Якщо ви %ifYouDoAction теку home, %osName може працювати неправильно! Ви впевнені, що хочете це зробити? Щоб все одно %toDoAction домашню теку, клацніть \"%toConfirmAction\", утримуючи натиснутим Shift.
|
|
||||||
Location OpenWithWindow Розташування
|
Location OpenWithWindow Розташування
|
||||||
Force identify ContainerWindow Ідентифікувати примусово
|
Force identify ContainerWindow Ідентифікувати примусово
|
||||||
Duplicate ContainerWindow Дублювати
|
Duplicate ContainerWindow Дублювати
|
||||||
@@ -191,7 +190,6 @@ New DeskWindow Новий
|
|||||||
Open InfoWindow Відкрити
|
Open InfoWindow Відкрити
|
||||||
64 x 64 ContainerWindow 64 x 64
|
64 x 64 ContainerWindow 64 x 64
|
||||||
Replace all FSUtils Замінити все
|
Replace all FSUtils Замінити все
|
||||||
The application \"%appname\" does not support the type of document you are about to open. Are you sure you want to proceed? If you know that the application supports the document type, you should contact the publisher of the application and ask them to update their application to list the type of your document as supported. OpenWithWindow Програма \"%appname\" не підтримує тип документу який ви хочете відкрити. Ви впевнені що хочете продовжити? Якщо ви знаєте що додаток підтримує тип документу, вам потрібно зконтактуватися з його розробниками і запитати про обновлення списку документів що він підтримує.
|
|
||||||
Preparing to restore items… StatusWindow Підготовка до відновлення елементів…
|
Preparing to restore items… StatusWindow Підготовка до відновлення елементів…
|
||||||
Replace other file WidgetAttributeText Замінити інший файл
|
Replace other file WidgetAttributeText Замінити інший файл
|
||||||
Some of the selected items cannot be moved to the Trash. Would you like to delete them instead? (This operation cannot be reverted.) PoseView Деякі з вибраних елементів не можуть бути переміщені до корзини. Можливо ви хочете видалити їх все одно? (Операція необоротна.)
|
Some of the selected items cannot be moved to the Trash. Would you like to delete them instead? (This operation cannot be reverted.) PoseView Деякі з вибраних елементів не можуть бути переміщені до корзини. Можливо ви хочете видалити їх все одно? (Операція необоротна.)
|
||||||
@@ -216,7 +214,6 @@ Name PoseView Ім'я
|
|||||||
Group FilePermissionsView Група
|
Group FilePermissionsView Група
|
||||||
Version: InfoWindow Версія:
|
Version: InfoWindow Версія:
|
||||||
Created: InfoWindow Створений:
|
Created: InfoWindow Створений:
|
||||||
If you %ifYouDoAction the mime settings, %osName may not behave properly! Are you sure you want to do this? To %toDoAction the mime settings anyway, click \"%toConfirmAction\". FSUtils Якщо ви %ifYouDoAction параметри MIME, %osName може працювати неправильно! Ви впевнені, що хочете це зробити? Щоб все одно %toDoAction параметри MIME, клацніть \"%toConfirmAction\".
|
|
||||||
\nShould this be fixed? FSUtils \nЧи треба це виправити?
|
\nShould this be fixed? FSUtils \nЧи треба це виправити?
|
||||||
Copying: StatusWindow Копіювання:
|
Copying: StatusWindow Копіювання:
|
||||||
Capacity: InfoWindow Ємність:
|
Capacity: InfoWindow Ємність:
|
||||||
@@ -275,7 +272,6 @@ Rename TextWidget Button label, 'Rename' (en), 'Umbenennen' (de) Перейме
|
|||||||
Paused: click to resume or stop StatusWindow Зупинено: натисніть щоб відновити або зупинити
|
Paused: click to resume or stop StatusWindow Зупинено: натисніть щоб відновити або зупинити
|
||||||
Preferred for %type OpenWithWindow Бажаний для %type
|
Preferred for %type OpenWithWindow Бажаний для %type
|
||||||
GiB WidgetAttributeText GiB
|
GiB WidgetAttributeText GiB
|
||||||
If you %ifYouDoAction the common folder, %osName may not behave properly! Are you sure you want to do this? To %toDoAction the common folder anyway, hold down the Shift key and click \"%toConfirmAction\". FSUtils Якщо ви %ifYouDoAction теку common, %osName може працювати неправильно! Ви впевнені, що хочете це зробити? Щоб все одно %toDoAction спільну теку, клацніть \"%toConfirmAction\", утримуючи натиснутим Shift.
|
|
||||||
There was an error deleting \"%name\":\n\t%error FSUtils Виникла помилка при видаленні \"%name\":\n\t%error
|
There was an error deleting \"%name\":\n\t%error FSUtils Виникла помилка при видаленні \"%name\":\n\t%error
|
||||||
Paste FilePanelPriv Вставити
|
Paste FilePanelPriv Вставити
|
||||||
Copy more ContainerWindow Копіювати ще
|
Copy more ContainerWindow Копіювати ще
|
||||||
@@ -402,7 +398,6 @@ Select… FilePanelPriv Вибрати…
|
|||||||
Don't move files to Trash SettingsView Не переміщайте файли до Кошика
|
Don't move files to Trash SettingsView Не переміщайте файли до Кошика
|
||||||
There was an error resolving the link. Tracker Виникла проблема відтворення посилання.
|
There was an error resolving the link. Tracker Виникла проблема відтворення посилання.
|
||||||
%BytesPerSecond/s StatusWindow %BytesPerSecond/s
|
%BytesPerSecond/s StatusWindow %BytesPerSecond/s
|
||||||
If you %ifYouDoAction the system folder or its contents, you won't be able to boot %osName! Are you sure you want to do this? To %toDoAction the system folder or its contents anyway, hold down the Shift key and click \"%toConfirmAction\". FSUtils Якщо ви %ifYouDoAction теку system або її вміст, ви не зможете завантажити %osName! Ви впевнені, що хочете це зробити? Щоб все одно %toDoAction системну теку або ї вміст, клацніть \"%toConfirmAction\", утримуючи натиснутим Shift.
|
|
||||||
You can't move or copy the trash. FSUtils Ви не можете копіювати або переміщати Кошик.
|
You can't move or copy the trash. FSUtils Ви не можете копіювати або переміщати Кошик.
|
||||||
ends with SelectionWindow закінчити з
|
ends with SelectionWindow закінчити з
|
||||||
Volume icons TrackerSettingsWindow Іконки томів
|
Volume icons TrackerSettingsWindow Іконки томів
|
||||||
@@ -424,7 +419,6 @@ Modified ContainerWindow Змінений
|
|||||||
Edit Query template FindPanel Редагувати запит шаблону
|
Edit Query template FindPanel Редагувати запит шаблону
|
||||||
Prompt FSUtils Підказка
|
Prompt FSUtils Підказка
|
||||||
Edit query ContainerWindow Редагувати запит
|
Edit query ContainerWindow Редагувати запит
|
||||||
If you %ifYouDoAction the config folder, %osName may not behave properly! Are you sure you want to do this? To %toDoAction the config folder anyway, click \"%toConfirmAction\". FSUtils Якщо ви %ifYouDoAction теку config, %osName може працювати неправильно! Ви впевнені, що хочете це зробити? Щоб все одно %toDoAction теку конфігурації, клацніть \"%toConfirmAction\".
|
|
||||||
Find… ContainerWindow Знайти…
|
Find… ContainerWindow Знайти…
|
||||||
Create a Query FindPanel Створити запит
|
Create a Query FindPanel Створити запит
|
||||||
Move to Trash FSUtils Перемістити до Кошика
|
Move to Trash FSUtils Перемістити до Кошика
|
||||||
@@ -443,7 +437,6 @@ Mount ContainerWindow Підмонтувати
|
|||||||
%capacity (%used used -- %free free) InfoWindow %capacity (%used викор. -- %free вільно)
|
%capacity (%used used -- %free free) InfoWindow %capacity (%used викор. -- %free вільно)
|
||||||
Cancel FSClipBoard Відмінити
|
Cancel FSClipBoard Відмінити
|
||||||
Cut more ContainerWindow Вирізати ще
|
Cut more ContainerWindow Вирізати ще
|
||||||
If you %ifYouDoAction the settings folder, %osName may not behave properly! Are you sure you want to do this? To %toDoAction the settings folder anyway, click \"%toConfirmAction\". FSUtils Якщо ви %ifYouDoAction теку settings, %osName може працювати неправильно! Ви впевнені, що хочете це зробити? Щоб все одно %toDoAction теку параметрів, клацніть \"%toConfirmAction\".
|
|
||||||
Deleting: StatusWindow Видалення:
|
Deleting: StatusWindow Видалення:
|
||||||
Empty Trash InfoWindow Очистити Кошик
|
Empty Trash InfoWindow Очистити Кошик
|
||||||
Add FindPanel Додати
|
Add FindPanel Додати
|
||||||
|
|||||||
@@ -1,4 +1,4 @@
|
|||||||
1 english x-vnd.Haiku-libtracker 3343389761
|
1 english x-vnd.Haiku-libtracker 2125023871
|
||||||
common B_COMMON_DIRECTORY 常用
|
common B_COMMON_DIRECTORY 常用
|
||||||
OK WidgetAttributeText 确定
|
OK WidgetAttributeText 确定
|
||||||
Icon view VolumeWindow 图标视图
|
Icon view VolumeWindow 图标视图
|
||||||
@@ -185,7 +185,6 @@ New DeskWindow 新建
|
|||||||
Open InfoWindow 打开
|
Open InfoWindow 打开
|
||||||
64 x 64 ContainerWindow 64 x 64
|
64 x 64 ContainerWindow 64 x 64
|
||||||
Replace all FSUtils 替换所有
|
Replace all FSUtils 替换所有
|
||||||
The application \"%appname\" does not support the type of document you are about to open. Are you sure you want to proceed? If you know that the application supports the document type, you should contact the publisher of the application and ask them to update their application to list the type of your document as supported. OpenWithWindow \"%appname\" 程序不支持即将打开的文档类型。您确定要继续吗?如果您知道,此文件支持该文档类型,您应该联系程序发行商,并要求他们更新程序以支持您的文档类型。
|
|
||||||
Preparing to restore items… StatusWindow 准备恢复项目...
|
Preparing to restore items… StatusWindow 准备恢复项目...
|
||||||
Replace other file WidgetAttributeText 替换其他文件
|
Replace other file WidgetAttributeText 替换其他文件
|
||||||
Some of the selected items cannot be moved to the Trash. Would you like to delete them instead? (This operation cannot be reverted.) PoseView 某些选中项目无法移动到垃圾箱。您希望删除它们吗?(该操作将无法恢复。)
|
Some of the selected items cannot be moved to the Trash. Would you like to delete them instead? (This operation cannot be reverted.) PoseView 某些选中项目无法移动到垃圾箱。您希望删除它们吗?(该操作将无法恢复。)
|
||||||
|
|||||||
@@ -1,7 +1,8 @@
|
|||||||
1 russian x-vnd.Haiku-3DRendering 1539891217
|
1 russian x-vnd.Haiku-3DRendering 1725618140
|
||||||
List stack size: Capabilities Размер стека списка:
|
List stack size: Capabilities Размер стека списка:
|
||||||
Information InfoView Информация
|
Information InfoView Информация
|
||||||
Max. clipping planes: Capabilities Максимальное количество отсечений:
|
Max. clipping planes: Capabilities Максимальное количество отсечений:
|
||||||
|
GL version: InfoView Версия GL:
|
||||||
Max. texture units: Capabilities Максимальное количество текстурных блоков:
|
Max. texture units: Capabilities Максимальное количество текстурных блоков:
|
||||||
Renderer name: InfoView Название рендера:
|
Renderer name: InfoView Название рендера:
|
||||||
Vendor name: InfoView Имя поставщика:
|
Vendor name: InfoView Имя поставщика:
|
||||||
@@ -19,6 +20,7 @@ GLUT API version: InfoView Версия GLUT API:
|
|||||||
Texture stack size: Capabilities Размер стека текстуры:
|
Texture stack size: Capabilities Размер стека текстуры:
|
||||||
Max. evaluators equation order: Capabilities Максимальный оценочный блок команд:
|
Max. evaluators equation order: Capabilities Максимальный оценочный блок команд:
|
||||||
Max. 3D texture size: Capabilities Максимальный размер 3D текстуры:
|
Max. 3D texture size: Capabilities Максимальный размер 3D текстуры:
|
||||||
|
3D Rendering System name 3D Отрисовка
|
||||||
Capabilities Capabilities Возможности
|
Capabilities Capabilities Возможности
|
||||||
Max. recommended index elements: Capabilities Максимальное рекомендованное количество индексов:
|
Max. recommended index elements: Capabilities Максимальное рекомендованное количество индексов:
|
||||||
Available Extensions Доступно
|
Available Extensions Доступно
|
||||||
|
|||||||
@@ -1,4 +1,4 @@
|
|||||||
1 belarusian x-vnd.Haiku-Appearance 3882211276
|
1 belarusian x-vnd.Haiku-Appearance 2671941221
|
||||||
Plain font: Font view Просты шрыфт:
|
Plain font: Font view Просты шрыфт:
|
||||||
Control highlight Colors tab Выдзяленне кнопак
|
Control highlight Colors tab Выдзяленне кнопак
|
||||||
Control border Colors tab Аблямоўка кнопак
|
Control border Colors tab Аблямоўка кнопак
|
||||||
@@ -27,9 +27,11 @@ Window border Colors tab Мяжа вакна
|
|||||||
Window tab text Colors tab Тэкст загалоўку акна
|
Window tab text Colors tab Тэкст загалоўку акна
|
||||||
Document text Colors tab Тэкст дакументу
|
Document text Colors tab Тэкст дакументу
|
||||||
Navigation pulse Colors tab Колер падсветкі навігацыі
|
Navigation pulse Colors tab Колер падсветкі навігацыі
|
||||||
|
Window decorator: DecorSettingsView Дэкаратар вокнаў:
|
||||||
Selected menu item text Colors tab Тэкст пазначанага пункту меню
|
Selected menu item text Colors tab Тэкст пазначанага пункту меню
|
||||||
Menu background Colors tab Фон меню
|
Menu background Colors tab Фон меню
|
||||||
OK DecorSettingsView Так
|
OK DecorSettingsView Так
|
||||||
|
Control mark Colors tab Адзнакі кнопак
|
||||||
Size: Font Selection view Памер:
|
Size: Font Selection view Памер:
|
||||||
Panel background Colors tab Фон панэлі
|
Panel background Colors tab Фон панэлі
|
||||||
Menu font: Font view Шрыфт меню:
|
Menu font: Font view Шрыфт меню:
|
||||||
@@ -50,6 +52,7 @@ LCD subpixel AntialiasingSettingsView Субпіксельнае (LCD)
|
|||||||
Selected menu item border Colors tab Аблямоўка пазначанага пункту меню
|
Selected menu item border Colors tab Аблямоўка пазначанага пункту меню
|
||||||
Strong AntialiasingSettingsView Жырны
|
Strong AntialiasingSettingsView Жырны
|
||||||
Panel text Colors tab Тэкст панэлі
|
Panel text Colors tab Тэкст панэлі
|
||||||
|
Decorators APRWindow Дэкаратары
|
||||||
Monospaced fonts only AntialiasingSettingsView Толькі монашырынныя шрыфты
|
Monospaced fonts only AntialiasingSettingsView Толькі монашырынныя шрыфты
|
||||||
Antialiasing menu AntialiasingSettingsView Меню згладжвання
|
Antialiasing menu AntialiasingSettingsView Меню згладжвання
|
||||||
Fonts APRWindow Шрыфты
|
Fonts APRWindow Шрыфты
|
||||||
|
|||||||
@@ -1,4 +1,4 @@
|
|||||||
1 german x-vnd.Haiku-Appearance 3882211276
|
1 german x-vnd.Haiku-Appearance 1557879521
|
||||||
Plain font: Font view Normal:
|
Plain font: Font view Normal:
|
||||||
Control highlight Colors tab Steuerelement - Ausgewählt
|
Control highlight Colors tab Steuerelement - Ausgewählt
|
||||||
Control border Colors tab Steuerelement - Rahmen
|
Control border Colors tab Steuerelement - Rahmen
|
||||||
@@ -27,6 +27,7 @@ Window border Colors tab Fenster - Rahmen
|
|||||||
Window tab text Colors tab Reiter - Text
|
Window tab text Colors tab Reiter - Text
|
||||||
Document text Colors tab Dokument - Text
|
Document text Colors tab Dokument - Text
|
||||||
Navigation pulse Colors tab Navigation - Leuchtfarbe
|
Navigation pulse Colors tab Navigation - Leuchtfarbe
|
||||||
|
Window decorator: DecorSettingsView Fenster-Dekorator:
|
||||||
Selected menu item text Colors tab Menü - Text (ausgewählt)
|
Selected menu item text Colors tab Menü - Text (ausgewählt)
|
||||||
Menu background Colors tab Menü - Hintergrund
|
Menu background Colors tab Menü - Hintergrund
|
||||||
OK DecorSettingsView OK
|
OK DecorSettingsView OK
|
||||||
@@ -50,6 +51,7 @@ LCD subpixel AntialiasingSettingsView LCD-Subpixel
|
|||||||
Selected menu item border Colors tab Menü - Rahmen (ausgewählt)
|
Selected menu item border Colors tab Menü - Rahmen (ausgewählt)
|
||||||
Strong AntialiasingSettingsView Stark
|
Strong AntialiasingSettingsView Stark
|
||||||
Panel text Colors tab Fenster - Text
|
Panel text Colors tab Fenster - Text
|
||||||
|
Decorators APRWindow Dekoratoren
|
||||||
Monospaced fonts only AntialiasingSettingsView Nur nicht-proportionale Schriften
|
Monospaced fonts only AntialiasingSettingsView Nur nicht-proportionale Schriften
|
||||||
Antialiasing menu AntialiasingSettingsView Kantenglättungs-Menü
|
Antialiasing menu AntialiasingSettingsView Kantenglättungs-Menü
|
||||||
Fonts APRWindow Schriftarten
|
Fonts APRWindow Schriftarten
|
||||||
|
|||||||
@@ -1,4 +1,4 @@
|
|||||||
1 finnish x-vnd.Haiku-Appearance 3882211276
|
1 finnish x-vnd.Haiku-Appearance 1557879521
|
||||||
Plain font: Font view Pelkkä kirjasin:
|
Plain font: Font view Pelkkä kirjasin:
|
||||||
Control highlight Colors tab Kontrollin korostus
|
Control highlight Colors tab Kontrollin korostus
|
||||||
Control border Colors tab Kontrollin reuna
|
Control border Colors tab Kontrollin reuna
|
||||||
@@ -27,6 +27,7 @@ Window border Colors tab Ikkunaraja
|
|||||||
Window tab text Colors tab Ikkunakahvan teksti
|
Window tab text Colors tab Ikkunakahvan teksti
|
||||||
Document text Colors tab Dokumentin teksti
|
Document text Colors tab Dokumentin teksti
|
||||||
Navigation pulse Colors tab Navigoinnin välke
|
Navigation pulse Colors tab Navigoinnin välke
|
||||||
|
Window decorator: DecorSettingsView Ikkunan kehystäjä:
|
||||||
Selected menu item text Colors tab Valitun valikkovalinnan teksti
|
Selected menu item text Colors tab Valitun valikkovalinnan teksti
|
||||||
Menu background Colors tab Valikon tausta
|
Menu background Colors tab Valikon tausta
|
||||||
OK DecorSettingsView Valmis
|
OK DecorSettingsView Valmis
|
||||||
@@ -50,6 +51,7 @@ LCD subpixel AntialiasingSettingsView LCD alipikseli
|
|||||||
Selected menu item border Colors tab Valitun valikkovalinnan reuna
|
Selected menu item border Colors tab Valitun valikkovalinnan reuna
|
||||||
Strong AntialiasingSettingsView Vahva
|
Strong AntialiasingSettingsView Vahva
|
||||||
Panel text Colors tab Paneelin teksti
|
Panel text Colors tab Paneelin teksti
|
||||||
|
Decorators APRWindow Kehykset
|
||||||
Monospaced fonts only AntialiasingSettingsView Vain monospace-kirjasimet
|
Monospaced fonts only AntialiasingSettingsView Vain monospace-kirjasimet
|
||||||
Antialiasing menu AntialiasingSettingsView Reunanpehmennysvalikko
|
Antialiasing menu AntialiasingSettingsView Reunanpehmennysvalikko
|
||||||
Fonts APRWindow Kirjasimet
|
Fonts APRWindow Kirjasimet
|
||||||
|
|||||||
@@ -1,4 +1,4 @@
|
|||||||
1 japanese x-vnd.Haiku-Appearance 3882211276
|
1 japanese x-vnd.Haiku-Appearance 1557879521
|
||||||
Plain font: Font view 標準フォント:
|
Plain font: Font view 標準フォント:
|
||||||
Control highlight Colors tab コントロールのハイライト
|
Control highlight Colors tab コントロールのハイライト
|
||||||
Control border Colors tab コントロールの境界
|
Control border Colors tab コントロールの境界
|
||||||
@@ -27,6 +27,7 @@ Window border Colors tab ウィンドウ枠
|
|||||||
Window tab text Colors tab ウィンドウタブの文字
|
Window tab text Colors tab ウィンドウタブの文字
|
||||||
Document text Colors tab ドキュメントの文字
|
Document text Colors tab ドキュメントの文字
|
||||||
Navigation pulse Colors tab ナビゲーションの点滅
|
Navigation pulse Colors tab ナビゲーションの点滅
|
||||||
|
Window decorator: DecorSettingsView ウィンドウデコレーター:
|
||||||
Selected menu item text Colors tab メニュー選択項目の文字
|
Selected menu item text Colors tab メニュー選択項目の文字
|
||||||
Menu background Colors tab メニューの背景
|
Menu background Colors tab メニューの背景
|
||||||
OK DecorSettingsView OK
|
OK DecorSettingsView OK
|
||||||
@@ -50,6 +51,7 @@ LCD subpixel AntialiasingSettingsView LCD サブピクセル
|
|||||||
Selected menu item border Colors tab メニュー選択項目の境界
|
Selected menu item border Colors tab メニュー選択項目の境界
|
||||||
Strong AntialiasingSettingsView 強い
|
Strong AntialiasingSettingsView 強い
|
||||||
Panel text Colors tab パネルの文字
|
Panel text Colors tab パネルの文字
|
||||||
|
Decorators APRWindow デコレーター
|
||||||
Monospaced fonts only AntialiasingSettingsView 等幅フォントのみ有効
|
Monospaced fonts only AntialiasingSettingsView 等幅フォントのみ有効
|
||||||
Antialiasing menu AntialiasingSettingsView アンチエイリアスメニュー
|
Antialiasing menu AntialiasingSettingsView アンチエイリアスメニュー
|
||||||
Fonts APRWindow フォント
|
Fonts APRWindow フォント
|
||||||
|
|||||||
@@ -1,4 +1,4 @@
|
|||||||
1 dutch; flemish x-vnd.Haiku-Appearance 3882211276
|
1 dutch; flemish x-vnd.Haiku-Appearance 1933110481
|
||||||
Plain font: Font view Standaardlettertype:
|
Plain font: Font view Standaardlettertype:
|
||||||
Control highlight Colors tab Keuze-accent
|
Control highlight Colors tab Keuze-accent
|
||||||
Control border Colors tab Keuzerand
|
Control border Colors tab Keuzerand
|
||||||
@@ -27,6 +27,7 @@ Window border Colors tab Vensterrand
|
|||||||
Window tab text Colors tab Tekst venstertab
|
Window tab text Colors tab Tekst venstertab
|
||||||
Document text Colors tab Tekst document
|
Document text Colors tab Tekst document
|
||||||
Navigation pulse Colors tab Puls navigatie
|
Navigation pulse Colors tab Puls navigatie
|
||||||
|
Window decorator: DecorSettingsView Vensterdecorator:
|
||||||
Selected menu item text Colors tab Tekst geselecteerd menu-item
|
Selected menu item text Colors tab Tekst geselecteerd menu-item
|
||||||
Menu background Colors tab Achtergrond menu
|
Menu background Colors tab Achtergrond menu
|
||||||
OK DecorSettingsView OK
|
OK DecorSettingsView OK
|
||||||
|
|||||||
@@ -1,4 +1,4 @@
|
|||||||
1 polish x-vnd.Haiku-Appearance 3882211276
|
1 polish x-vnd.Haiku-Appearance 1557879521
|
||||||
Plain font: Font view Czcionka zwykła:
|
Plain font: Font view Czcionka zwykła:
|
||||||
Control highlight Colors tab Podkreślenie kontrolki
|
Control highlight Colors tab Podkreślenie kontrolki
|
||||||
Control border Colors tab Obramowanie kontrolki
|
Control border Colors tab Obramowanie kontrolki
|
||||||
@@ -27,6 +27,7 @@ Window border Colors tab Obramowanie okna
|
|||||||
Window tab text Colors tab Tekst zakładki okna
|
Window tab text Colors tab Tekst zakładki okna
|
||||||
Document text Colors tab Tekst dokumentu
|
Document text Colors tab Tekst dokumentu
|
||||||
Navigation pulse Colors tab Puls nawigacji
|
Navigation pulse Colors tab Puls nawigacji
|
||||||
|
Window decorator: DecorSettingsView Dekorator okna:
|
||||||
Selected menu item text Colors tab Tekst zaznaczonego elementu menu
|
Selected menu item text Colors tab Tekst zaznaczonego elementu menu
|
||||||
Menu background Colors tab Tło menu
|
Menu background Colors tab Tło menu
|
||||||
OK DecorSettingsView OK
|
OK DecorSettingsView OK
|
||||||
@@ -50,6 +51,7 @@ LCD subpixel AntialiasingSettingsView Podpikselowe LCD
|
|||||||
Selected menu item border Colors tab Obramowanie zaznaczonego elementu menu
|
Selected menu item border Colors tab Obramowanie zaznaczonego elementu menu
|
||||||
Strong AntialiasingSettingsView Silny
|
Strong AntialiasingSettingsView Silny
|
||||||
Panel text Colors tab Tekst panelu
|
Panel text Colors tab Tekst panelu
|
||||||
|
Decorators APRWindow Dekoratory
|
||||||
Monospaced fonts only AntialiasingSettingsView Tylko czcionki o stałej szerokości
|
Monospaced fonts only AntialiasingSettingsView Tylko czcionki o stałej szerokości
|
||||||
Antialiasing menu AntialiasingSettingsView Menu antyaliasingu
|
Antialiasing menu AntialiasingSettingsView Menu antyaliasingu
|
||||||
Fonts APRWindow Czcionki
|
Fonts APRWindow Czcionki
|
||||||
|
|||||||
@@ -1,4 +1,5 @@
|
|||||||
1 russian x-vnd.Haiku-Appearance 4135695718
|
1 russian x-vnd.Haiku-Appearance 1557879521
|
||||||
|
Plain font: Font view Простой шрифт:
|
||||||
Control highlight Colors tab Подсветка элемента
|
Control highlight Colors tab Подсветка элемента
|
||||||
Control border Colors tab Граница элемента
|
Control border Colors tab Граница элемента
|
||||||
Antialiasing type: AntialiasingSettingsView Тип сглаживания:
|
Antialiasing type: AntialiasingSettingsView Тип сглаживания:
|
||||||
@@ -12,6 +13,7 @@ Off AntialiasingSettingsView Выключить
|
|||||||
Choose Decorator DecorSettingsView Выберите декоратор
|
Choose Decorator DecorSettingsView Выберите декоратор
|
||||||
Success Colors tab Успех
|
Success Colors tab Успех
|
||||||
Inactive window tab text Colors tab Текст заголовка неактивного окна
|
Inactive window tab text Colors tab Текст заголовка неактивного окна
|
||||||
|
About Decorator DecorSettingsView Об этом декораторе
|
||||||
Failure Colors tab Неудача
|
Failure Colors tab Неудача
|
||||||
Hinting menu AntialiasingSettingsView Корректировка (хинтинг)
|
Hinting menu AntialiasingSettingsView Корректировка (хинтинг)
|
||||||
Document background Colors tab Фон документа
|
Document background Colors tab Фон документа
|
||||||
@@ -21,25 +23,36 @@ Tooltip background Colors tab Фон подсказки
|
|||||||
Selected menu item background Colors tab Фон выбранного пункта меню
|
Selected menu item background Colors tab Фон выбранного пункта меню
|
||||||
Antialiasing APRWindow Сглаживание
|
Antialiasing APRWindow Сглаживание
|
||||||
Navigation base Colors tab Основа навигации
|
Navigation base Colors tab Основа навигации
|
||||||
|
Window border Colors tab Рамка окна
|
||||||
Window tab text Colors tab Текст заголовка окна
|
Window tab text Colors tab Текст заголовка окна
|
||||||
Document text Colors tab Текст документа
|
Document text Colors tab Текст документа
|
||||||
Navigation pulse Colors tab Навигационная пульсация
|
Navigation pulse Colors tab Навигационная пульсация
|
||||||
|
Window decorator: DecorSettingsView Оконный декоратор:
|
||||||
Selected menu item text Colors tab Текст выделенного пункта меню
|
Selected menu item text Colors tab Текст выделенного пункта меню
|
||||||
Menu background Colors tab Фон меню
|
Menu background Colors tab Фон меню
|
||||||
OK DecorSettingsView ОК
|
OK DecorSettingsView ОК
|
||||||
|
Size: Font Selection view Размер:
|
||||||
Panel background Colors tab Фон панели
|
Panel background Colors tab Фон панели
|
||||||
|
Menu font: Font view Шрифт меню:
|
||||||
Colors APRWindow Цвета
|
Colors APRWindow Цвета
|
||||||
Control background Colors tab Фон элемента
|
Control background Colors tab Фон элемента
|
||||||
Inactive window tab Colors tab Заголовок неактивного окна
|
Inactive window tab Colors tab Заголовок неактивного окна
|
||||||
Appearance System name Внешний вид
|
Appearance System name Внешний вид
|
||||||
|
Fixed font: Font view Моноширинный шрифт:
|
||||||
|
The quick brown fox jumps over the lazy dog. Font Selection view Don't translate this literally ! Use a phrase showing all chars from A to Z. Эй, жлоб! Где туз? Прячь юных съёмщиц в шкаф.
|
||||||
Reduce colored edges filter strength: AntialiasingSettingsView Фильтрация цветных краев:
|
Reduce colored edges filter strength: AntialiasingSettingsView Фильтрация цветных краев:
|
||||||
|
Subpixel based anti-aliasing in combination with glyph hinting is not available in this build of Haiku to avoid possible patent issues. To enable this feature, you have to build Haiku yourself and enable certain options in the libfreetype configuration header. AntialiasingSettingsView Субпиксельное сглаживание в комбинации с уточнением глифов недоступно в этой сборке Haiku во избежание возможных патентных проблем. Для включения этой возможности вам придется собрать Haiku самостоятельно, включив особые опции в заголовке конфигурации libfreetype.
|
||||||
Control text Colors tab Текст элемента
|
Control text Colors tab Текст элемента
|
||||||
Tooltip text Colors tab Текст подсказки
|
Tooltip text Colors tab Текст подсказки
|
||||||
|
Bold font: Font view Жирный шрифт:
|
||||||
|
Inactive window border Colors tab Рамка неактивного окна
|
||||||
Menu item text Colors tab Текст пункта меню
|
Menu item text Colors tab Текст пункта меню
|
||||||
LCD subpixel AntialiasingSettingsView Субпиксельное сглаживание
|
LCD subpixel AntialiasingSettingsView Субпиксельное сглаживание
|
||||||
Selected menu item border Colors tab Рамка выделенного пункта меню
|
Selected menu item border Colors tab Рамка выделенного пункта меню
|
||||||
Strong AntialiasingSettingsView Сильная
|
Strong AntialiasingSettingsView Сильная
|
||||||
Panel text Colors tab Текст панели
|
Panel text Colors tab Текст панели
|
||||||
|
Decorators APRWindow Декораторы
|
||||||
Monospaced fonts only AntialiasingSettingsView Только моноширинные шрифты
|
Monospaced fonts only AntialiasingSettingsView Только моноширинные шрифты
|
||||||
Antialiasing menu AntialiasingSettingsView Сглаживание меню
|
Antialiasing menu AntialiasingSettingsView Сглаживание меню
|
||||||
|
Fonts APRWindow Шрифты
|
||||||
Glyph hinting: AntialiasingSettingsView Уточнение:
|
Glyph hinting: AntialiasingSettingsView Уточнение:
|
||||||
|
|||||||
@@ -1,4 +1,4 @@
|
|||||||
1 russian x-vnd.Haiku-DataTranslations 3820343452
|
1 russian x-vnd.Haiku-DataTranslations 458105477
|
||||||
DataTranslations System name Трансляция данных
|
DataTranslations System name Трансляция данных
|
||||||
Cancel DataTranslations Отмена
|
Cancel DataTranslations Отмена
|
||||||
Name: DataTranslations Имя:
|
Name: DataTranslations Имя:
|
||||||
@@ -14,5 +14,6 @@ Info DataTranslations Инфо
|
|||||||
Path: DataTranslations Путь:
|
Path: DataTranslations Путь:
|
||||||
The new translator has been installed successfully. DataTranslations Новый транслятор был успешно установлен.
|
The new translator has been installed successfully. DataTranslations Новый транслятор был успешно установлен.
|
||||||
DataTranslations - Error DataTranslations Трансляция данных - ошибка
|
DataTranslations - Error DataTranslations Трансляция данных - ошибка
|
||||||
|
Ok DataTranslations OК
|
||||||
OK DataTranslations ОК
|
OK DataTranslations ОК
|
||||||
Version: DataTranslations Версия:
|
Version: DataTranslations Версия:
|
||||||
|
|||||||
@@ -1,12 +1,16 @@
|
|||||||
1 dutch; flemish x-vnd.Haiku-Keymap 140876782
|
1 dutch; flemish x-vnd.Haiku-Keymap 247520798
|
||||||
|
Shift: Modifier keys window Shift key role name Shift:
|
||||||
Revert Modifier keys window Herstellen
|
Revert Modifier keys window Herstellen
|
||||||
Tilde trigger Keymap window Tilde-activeerder
|
Tilde trigger Keymap window Tilde-activeerder
|
||||||
Grave trigger Keymap window Accent grave-activeerder
|
Grave trigger Keymap window Accent grave-activeerder
|
||||||
|
Role Modifier keys window As in the role of a modifier key Rol
|
||||||
Select dead keys Keymap window Selecteer dode toetsen
|
Select dead keys Keymap window Selecteer dode toetsen
|
||||||
|
Cancel Modifier keys window Annuleren
|
||||||
Quit Keymap window Afsluiten
|
Quit Keymap window Afsluiten
|
||||||
Switch shortcut keys to Haiku mode Keymap window Snelkoppelingstoetsen omschakelen naar Haiku-modus
|
Switch shortcut keys to Haiku mode Keymap window Snelkoppelingstoetsen omschakelen naar Haiku-modus
|
||||||
Circumflex trigger Keymap window Circumflex-activeerder
|
Circumflex trigger Keymap window Circumflex-activeerder
|
||||||
Diaeresis trigger Keymap window Trema-activeerder
|
Diaeresis trigger Keymap window Trema-activeerder
|
||||||
|
Disabled Modifier keys window Do nothing Uitgeschakeld
|
||||||
Open… Keymap window Openen...
|
Open… Keymap window Openen...
|
||||||
System: Keymap window Systeem:
|
System: Keymap window Systeem:
|
||||||
Switch shortcut keys Keymap window Snelkoppelingstoetsen omschakelen
|
Switch shortcut keys Keymap window Snelkoppelingstoetsen omschakelen
|
||||||
|
|||||||
@@ -1,23 +1,38 @@
|
|||||||
1 russian x-vnd.Haiku-Keymap 140876782
|
1 russian x-vnd.Haiku-Keymap 4022885915
|
||||||
|
Shift: Modifier keys window Shift key role name Shift:
|
||||||
Revert Modifier keys window Вернуть
|
Revert Modifier keys window Вернуть
|
||||||
Tilde trigger Keymap window Тильда
|
Tilde trigger Keymap window Тильда
|
||||||
Grave trigger Keymap window Апостроф
|
Grave trigger Keymap window Апостроф
|
||||||
|
Role Modifier keys window As in the role of a modifier key Роль
|
||||||
Select dead keys Keymap window Выбор мертвых клавиш
|
Select dead keys Keymap window Выбор мертвых клавиш
|
||||||
|
Cancel Modifier keys window Отмена
|
||||||
Quit Keymap window Выйти
|
Quit Keymap window Выйти
|
||||||
Switch shortcut keys to Haiku mode Keymap window Переключить раскладку в режим Haiku
|
Switch shortcut keys to Haiku mode Keymap window Переключить раскладку в режим Haiku
|
||||||
Circumflex trigger Keymap window Циркумфлекс
|
Circumflex trigger Keymap window Циркумфлекс
|
||||||
Diaeresis trigger Keymap window Диерезис
|
Diaeresis trigger Keymap window Диерезис
|
||||||
|
Disabled Modifier keys window Do nothing Отключено
|
||||||
Open… Keymap window Открыть…
|
Open… Keymap window Открыть…
|
||||||
System: Keymap window Системные:
|
System: Keymap window Системные:
|
||||||
|
Set modifier keys… Keymap window Назначить клавиши-модификаторы…
|
||||||
|
Option: Modifier keys window Option key role name Option:
|
||||||
Switch shortcut keys Keymap window Переключение горячих клавиш
|
Switch shortcut keys Keymap window Переключение горячих клавиш
|
||||||
|
Shift key Modifier keys window Label of key above Ctrl, usually Shift Клавиша Shift
|
||||||
User: Keymap window Пользовательские:
|
User: Keymap window Пользовательские:
|
||||||
|
Key Modifier keys window As in a computer keyboard key Клавиша
|
||||||
|
Ctrl key Modifier keys window Label of key farthest from the spacebar, usually Ctrle.g. Strg for German keyboard Клавиша Ctrl
|
||||||
|
Control: Modifier keys window Control key role name Control:
|
||||||
Sample and clipboard: Keymap window Пример и буфер обмена:
|
Sample and clipboard: Keymap window Пример и буфер обмена:
|
||||||
|
Alt/Opt key Modifier keys window Label of Alt key (PC)/Option key (Mac) Клавиша Alt/Opt
|
||||||
Layout Keymap window Макет
|
Layout Keymap window Макет
|
||||||
Switch shortcut keys to Windows/Linux mode Keymap window Переключить раскладку в режим Windows/Linux
|
Switch shortcut keys to Windows/Linux mode Keymap window Переключить раскладку в режим Windows/Linux
|
||||||
Revert Keymap window Вернуть
|
Revert Keymap window Вернуть
|
||||||
|
Command: Modifier keys window Command key role name Command:
|
||||||
Save as… Keymap window Сохранить как…
|
Save as… Keymap window Сохранить как…
|
||||||
|
Win/Cmd key Modifier keys window Label of the \"Windows\" key (PC)/Command key (Mac) Клавиша Win/Cmd
|
||||||
File Keymap window Файл
|
File Keymap window Файл
|
||||||
(Current) Keymap window (Текущая)
|
(Current) Keymap window (Текущая)
|
||||||
Font Keymap window Шрифт
|
Font Keymap window Шрифт
|
||||||
Keymap System name Раскладка
|
Keymap System name Раскладка
|
||||||
|
Set modifier keys Modifier keys window Назначить клавиши-модификаторы
|
||||||
|
Modifier keys Modifier keys window Клавиши-модификаторы
|
||||||
Acute trigger Keymap window Аксант эгю
|
Acute trigger Keymap window Аксант эгю
|
||||||
|
|||||||
@@ -1,4 +1,4 @@
|
|||||||
1 russian x-vnd.Haiku-Mail 3957822883
|
1 russian x-vnd.Haiku-Mail 2592587573
|
||||||
Mail checking Config Window Проверка почты
|
Mail checking Config Window Проверка почты
|
||||||
Settings Config Window Настройки
|
Settings Config Window Настройки
|
||||||
Never Config Window show status window никогда
|
Never Config Window show status window никогда
|
||||||
@@ -6,6 +6,7 @@ Only when dial-up is connected Config Window Только при наличии
|
|||||||
While sending and receiving Config Window во время отправки и получения
|
While sending and receiving Config Window во время отправки и получения
|
||||||
days Config Window дней
|
days Config Window дней
|
||||||
Incoming Config Window Входящие
|
Incoming Config Window Входящие
|
||||||
|
Server name: E-Mail Имя сервера:
|
||||||
OK Config Window ОК
|
OK Config Window ОК
|
||||||
Start mail services on startup Config Window Запускать почтовые службы при загрузке
|
Start mail services on startup Config Window Запускать почтовые службы при загрузке
|
||||||
E-mail address: E-Mail E-mail адрес:
|
E-mail address: E-Mail E-mail адрес:
|
||||||
|
|||||||
@@ -1,4 +1,4 @@
|
|||||||
1 russian x-vnd.Be-PRNT 2906062670
|
1 russian x-vnd.Be-PRNT 2674539197
|
||||||
Printer: %printer_name%\nDriver: %driver%\n TestPageView Принтер: %printer_name%\nДрайвер: %driver%\n
|
Printer: %printer_name%\nDriver: %driver%\n TestPageView Принтер: %printer_name%\nДрайвер: %driver%\n
|
||||||
Waiting JobListView Ожидание
|
Waiting JobListView Ожидание
|
||||||
Print test page PrintersWindow Пробная страница
|
Print test page PrintersWindow Пробная страница
|
||||||
@@ -18,6 +18,7 @@ Processing JobListView Обрабатывается
|
|||||||
Red TestPageView Красный
|
Red TestPageView Красный
|
||||||
Printer name: AddPrinterDialog Название принтера:
|
Printer name: AddPrinterDialog Название принтера:
|
||||||
Driver: %driver% PrinterListView Драйвер: %driver%
|
Driver: %driver% PrinterListView Драйвер: %driver%
|
||||||
|
pending jobs. PrinterListView нет заданий в очереди.
|
||||||
Black TestPageView Черный
|
Black TestPageView Черный
|
||||||
Restart job PrintersWindow Перезапустить
|
Restart job PrintersWindow Перезапустить
|
||||||
Add AddPrinterDialog Добавить
|
Add AddPrinterDialog Добавить
|
||||||
|
|||||||
@@ -1,4 +1,5 @@
|
|||||||
1 russian x-vnd.Haiku-Time 472387788
|
1 russian x-vnd.Haiku-Time 3249243267
|
||||||
|
GMT (UNIX compatible) Time По Гринвичу (совместимо с UNIX)
|
||||||
OK Time ОК
|
OK Time ОК
|
||||||
Asia Time Азия
|
Asia Time Азия
|
||||||
\nNow: Time \nСейчас:
|
\nNow: Time \nСейчас:
|
||||||
@@ -13,6 +14,7 @@ Pacific Time Тихий океан
|
|||||||
Add Time Добавить
|
Add Time Добавить
|
||||||
Date and time Time Дата и время
|
Date and time Time Дата и время
|
||||||
about Time о программе
|
about Time о программе
|
||||||
|
Local time (Windows compatible) Time Местное время (совместимо с Windows)
|
||||||
Message receiving failed Time Не удалось получить данные
|
Message receiving failed Time Не удалось получить данные
|
||||||
Set time zone Time Установить часовой пояс
|
Set time zone Time Установить часовой пояс
|
||||||
Waiting for answer failed Time Истекло время ожидания
|
Waiting for answer failed Time Истекло время ожидания
|
||||||
@@ -28,6 +30,7 @@ Time System name Время
|
|||||||
America Time Америка
|
America Time Америка
|
||||||
Reset Time Сбросить
|
Reset Time Сбросить
|
||||||
Synchronize at boot Time Синхронизировать при загрузке
|
Synchronize at boot Time Синхронизировать при загрузке
|
||||||
|
Time & Date, written by:\n\n\tAndrew Edward McCall\n\tMike Berg\n\tJulun\n\tPhilippe Saint-Pierre\n\nCopyright 2004-2012, Haiku. Time Дата & Время, разработан:\n\n\t Andrew Edward McCall\n\t Mike Berg\n\t Julun\n\t Philippe Saint-Pierre\n\nВсе права защищены 2004-2012, Haiku.
|
||||||
Received invalid time Time Получено неверное время
|
Received invalid time Time Получено неверное время
|
||||||
Antarctica Time Антарктида
|
Antarctica Time Антарктида
|
||||||
The following error occured while synchronizing:r\n%s: %s Time При синхронизации произошла следующая ошибка:r\n%s: %s
|
The following error occured while synchronizing:r\n%s: %s Time При синхронизации произошла следующая ошибка:r\n%s: %s
|
||||||
|
|||||||
@@ -0,0 +1,4 @@
|
|||||||
|
1 russian x-vnd.Haiku-debug_server 1035915338
|
||||||
|
OK DebugServer ОК
|
||||||
|
Debug DebugServer Отладить
|
||||||
|
The application:\n\n %app\n\nhas encountered an error which prevents it from continuing. Haiku will terminate the application and clean up. DebugServer Программа:\n\n %app\n\nобнаружила ошибку, которая мешает продолжению её работы. Haiku завершит эту программу и немного приберется за ней.
|
||||||
@@ -0,0 +1,8 @@
|
|||||||
|
1 russian x-vnd.Be-POST 933996868
|
||||||
|
Fetching mail for %name Notifier Получение почты для %name
|
||||||
|
Check for mails only DeskbarView Только проверить почту
|
||||||
|
Send pending mails DeskbarView Отправить почту в ожидании
|
||||||
|
New Messages MailDaemon Новые Сообщения
|
||||||
|
<no accounts> DeskbarView <нет аккаунтов>
|
||||||
|
%num new messages DeskbarView %num новых сообщений
|
||||||
|
Mail status MailDaemon Статус почты
|
||||||
@@ -0,0 +1,9 @@
|
|||||||
|
1 belarusian x-vnd.Haiku-GLInfo 3678488342
|
||||||
|
Capability Capabilities Магчымасць
|
||||||
|
Information InfoView Інфармацыя
|
||||||
|
GL Info System name Инфа пра GL
|
||||||
|
Capabilities Capabilities Магчымасці
|
||||||
|
Maximum convolution Capabilities Максімальная канвалюцыя
|
||||||
|
Available extensions Extensions Наяўныя пашырэнні
|
||||||
|
Value Capabilities Значэнне
|
||||||
|
Extensions Extensions Пашырэньні
|
||||||
@@ -0,0 +1,9 @@
|
|||||||
|
1 finnish x-vnd.Haiku-GLInfo 3678488342
|
||||||
|
Capability Capabilities Kyky
|
||||||
|
Information InfoView Tiedot
|
||||||
|
GL Info System name GL-tiedot
|
||||||
|
Capabilities Capabilities Ominaisuudet
|
||||||
|
Maximum convolution Capabilities Enimmäismonimutkaisuus
|
||||||
|
Available extensions Extensions Käytettävissä olevat laajennukset
|
||||||
|
Value Capabilities Arvo
|
||||||
|
Extensions Extensions Laajennukset
|
||||||
@@ -0,0 +1,9 @@
|
|||||||
|
1 french x-vnd.Haiku-GLInfo 3678488342
|
||||||
|
Capability Capabilities Aptitude
|
||||||
|
Information InfoView Information
|
||||||
|
GL Info System name GL Info
|
||||||
|
Capabilities Capabilities Aptitudes
|
||||||
|
Maximum convolution Capabilities Nombre maximum de convolution
|
||||||
|
Available extensions Extensions Extensions disponibles
|
||||||
|
Value Capabilities Valeur
|
||||||
|
Extensions Extensions Extensions
|
||||||
@@ -0,0 +1,9 @@
|
|||||||
|
1 lithuanian x-vnd.Haiku-GLInfo 3678488342
|
||||||
|
Capability Capabilities Galimybė
|
||||||
|
Information InfoView Informacija
|
||||||
|
GL Info System name GL informacija
|
||||||
|
Capabilities Capabilities Galimybės
|
||||||
|
Maximum convolution Capabilities Didžiausias susukimas
|
||||||
|
Available extensions Extensions Galimi plėtiniai
|
||||||
|
Value Capabilities Reikšmė
|
||||||
|
Extensions Extensions Plėtiniai
|
||||||
@@ -0,0 +1,9 @@
|
|||||||
|
1 slovak x-vnd.Haiku-GLInfo 3678488342
|
||||||
|
Capability Capabilities Schopnosť
|
||||||
|
Information InfoView Informácie
|
||||||
|
GL Info System name Info GL
|
||||||
|
Capabilities Capabilities Schopnosti
|
||||||
|
Maximum convolution Capabilities Maximálna konvolúcia
|
||||||
|
Available extensions Extensions Dostupné rozšírenia
|
||||||
|
Value Capabilities Hodnota
|
||||||
|
Extensions Extensions Rozšírenia
|
||||||
@@ -260,6 +260,14 @@ TeamMonitorWindow::~TeamMonitorWindow()
|
|||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
void
|
||||||
|
TeamMonitorWindow::Show()
|
||||||
|
{
|
||||||
|
fListView->MakeFocus();
|
||||||
|
BWindow::Show();
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
void
|
void
|
||||||
TeamMonitorWindow::MessageReceived(BMessage* msg)
|
TeamMonitorWindow::MessageReceived(BMessage* msg)
|
||||||
{
|
{
|
||||||
@@ -416,8 +424,6 @@ TeamMonitorWindow::UpdateList()
|
|||||||
}
|
}
|
||||||
|
|
||||||
fRestartButton->SetEnabled(!desktopRunning);
|
fRestartButton->SetEnabled(!desktopRunning);
|
||||||
|
|
||||||
fListView->MakeFocus();
|
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
|||||||
@@ -27,6 +27,7 @@ public:
|
|||||||
virtual ~TeamMonitorWindow();
|
virtual ~TeamMonitorWindow();
|
||||||
|
|
||||||
virtual void MessageReceived(BMessage* message);
|
virtual void MessageReceived(BMessage* message);
|
||||||
|
virtual void Show();
|
||||||
virtual bool QuitRequested();
|
virtual bool QuitRequested();
|
||||||
|
|
||||||
void Enable();
|
void Enable();
|
||||||
|
|||||||
@@ -14,6 +14,7 @@ KernelAddon usb_serial :
|
|||||||
ACM.cpp
|
ACM.cpp
|
||||||
FTDI.cpp
|
FTDI.cpp
|
||||||
KLSI.cpp
|
KLSI.cpp
|
||||||
|
Option.cpp
|
||||||
Prolific.cpp
|
Prolific.cpp
|
||||||
Silicon.cpp
|
Silicon.cpp
|
||||||
;
|
;
|
||||||
|
|||||||
@@ -0,0 +1,97 @@
|
|||||||
|
/*
|
||||||
|
* Copyright 2011-2012 Haiku, Inc. All rights reserved.
|
||||||
|
* Distributed under the terms of the MIT License.
|
||||||
|
*
|
||||||
|
* Authors:
|
||||||
|
* Alexander von Gluck IV, kallisti5@unixzen.com
|
||||||
|
*/
|
||||||
|
|
||||||
|
|
||||||
|
#include "Option.h"
|
||||||
|
|
||||||
|
|
||||||
|
OptionDevice::OptionDevice(usb_device device, uint16 vendorID,
|
||||||
|
uint16 productID, const char *description)
|
||||||
|
:
|
||||||
|
ACMDevice(device, vendorID, productID, description)
|
||||||
|
{
|
||||||
|
TRACE_FUNCALLS("> OptionDevice found: %s\n", description);
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
status_t
|
||||||
|
OptionDevice::AddDevice(const usb_configuration_info *config)
|
||||||
|
{
|
||||||
|
TRACE_FUNCALLS("> OptionDevice::AddDevice(%08x, %08x)\n", this, config);
|
||||||
|
|
||||||
|
int portsFound = 0;
|
||||||
|
if (config->interface_count > 0) {
|
||||||
|
for (size_t index = 0; index < config->interface_count; index++) {
|
||||||
|
usb_interface_info *interface = config->interface[index].active;
|
||||||
|
|
||||||
|
int txEndpointID = -1;
|
||||||
|
int rxEndpointID = -1;
|
||||||
|
int irEndpointID = -1;
|
||||||
|
|
||||||
|
for (size_t i = 0; i < interface->endpoint_count; i++) {
|
||||||
|
usb_endpoint_info *endpoint = &interface->endpoint[i];
|
||||||
|
|
||||||
|
// Find our Interrupt endpoint
|
||||||
|
if (endpoint->descr->attributes == USB_ENDPOINT_ATTR_INTERRUPT
|
||||||
|
&& (endpoint->descr->endpoint_address
|
||||||
|
& USB_ENDPOINT_ADDR_DIR_IN) != 0) {
|
||||||
|
irEndpointID = i;
|
||||||
|
continue;
|
||||||
|
}
|
||||||
|
|
||||||
|
// Find our Transmit / Receive endpoints
|
||||||
|
if (endpoint->descr->attributes == USB_ENDPOINT_ATTR_BULK) {
|
||||||
|
if ((endpoint->descr->endpoint_address
|
||||||
|
& USB_ENDPOINT_ADDR_DIR_IN) != 0) {
|
||||||
|
rxEndpointID = i;
|
||||||
|
} else {
|
||||||
|
txEndpointID = i;
|
||||||
|
}
|
||||||
|
continue;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
TRACE("> OptionDevice::%s: endpoint %d, tx: %d, rx: %d, ir: %d\n",
|
||||||
|
__func__, index, txEndpointID, rxEndpointID, irEndpointID);
|
||||||
|
|
||||||
|
if (txEndpointID < 0 || rxEndpointID < 0 || irEndpointID < 0)
|
||||||
|
continue;
|
||||||
|
|
||||||
|
TRACE("> OptionDevice::%s: found port at interface %d\n", __func__,
|
||||||
|
index);
|
||||||
|
portsFound++;
|
||||||
|
|
||||||
|
usb_endpoint_info *irEndpoint = &interface->endpoint[irEndpointID];
|
||||||
|
usb_endpoint_info *txEndpoint = &interface->endpoint[txEndpointID];
|
||||||
|
usb_endpoint_info *rxEndpoint = &interface->endpoint[rxEndpointID];
|
||||||
|
SetControlPipe(irEndpoint->handle);
|
||||||
|
SetReadPipe(rxEndpoint->handle);
|
||||||
|
SetWritePipe(txEndpoint->handle);
|
||||||
|
}
|
||||||
|
|
||||||
|
// TODO: We need to handle multiple ports
|
||||||
|
// We use the last found serial port for now
|
||||||
|
if (portsFound > 0) {
|
||||||
|
if (portsFound > 1) {
|
||||||
|
TRACE_ALWAYS("> OptionDevice::%s: Warning: Found more than one "
|
||||||
|
"serial port on this device (%d). Only the last one is "
|
||||||
|
"is used.\n", __func__, portsFound);
|
||||||
|
}
|
||||||
|
return B_OK;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
return ENODEV;
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
status_t
|
||||||
|
OptionDevice::ResetDevice()
|
||||||
|
{
|
||||||
|
TRACE_FUNCALLS("> OptionDevice::ResetDevice(%08x)\n", this);
|
||||||
|
return B_OK;
|
||||||
|
}
|
||||||
@@ -0,0 +1,68 @@
|
|||||||
|
/*
|
||||||
|
* Copyright 2011-2012 Haiku, Inc. All rights reserved.
|
||||||
|
* Distributed under the terms of the MIT License.
|
||||||
|
*
|
||||||
|
* Authors:
|
||||||
|
* Alexander von Gluck IV, kallisti5@unixzen.com
|
||||||
|
*/
|
||||||
|
#ifndef _USB_OPTION_H_
|
||||||
|
#define _USB_OPTION_H_
|
||||||
|
|
||||||
|
|
||||||
|
#include "ACM.h"
|
||||||
|
|
||||||
|
|
||||||
|
/* supported vendor and product ids */
|
||||||
|
#define VENDOR_AIRPLUS 0x1011
|
||||||
|
#define VENDOR_ALCATEL 0x1bbb
|
||||||
|
#define VENDOR_ALINK 0x1e0e
|
||||||
|
#define VENDOR_AMOI 0x1614
|
||||||
|
#define VENDOR_ANYDATA 0x16d5
|
||||||
|
#define VENDOR_AXESSTEL 0x1726
|
||||||
|
#define VENDOR_BANDRICH 0x1A8D
|
||||||
|
#define VENDOR_BENQ 0x04a5
|
||||||
|
#define VENDOR_CELOT 0x211f
|
||||||
|
#define VENDOR_CMOTECH 0x16d8
|
||||||
|
#define VENDOR_DELL 0x413C
|
||||||
|
#define VENDOR_DLINK 0x1186
|
||||||
|
#define VENDOR_HAIER 0x201e
|
||||||
|
#define VENDOR_HUAWEI 0x12D1
|
||||||
|
#define VENDOR_KYOCERA 0x0c88
|
||||||
|
#define VENDOR_LG 0x1004
|
||||||
|
#define VENDOR_LONGCHEER 0x1c9e
|
||||||
|
#define VENDOR_MEDIATEK 0x0e8d
|
||||||
|
#define VENDOR_NOVATEL 0x1410
|
||||||
|
#define VENDOR_OLIVETTI 0x0b3c
|
||||||
|
#define VENDOR_ONDA 0x1ee8
|
||||||
|
#define VENDOR_OPTION 0x0AF0
|
||||||
|
#define VENDOR_QISDA 0x1da5
|
||||||
|
#define VENDOR_QUALCOMM 0x05C6
|
||||||
|
#define VENDOR_SAMSUNG 0x04e8
|
||||||
|
#define VENDOR_TELIT 0x1bc7
|
||||||
|
#define VENDOR_TLAYTECH 0x20B9
|
||||||
|
#define VENDOR_TOSHIBA 0x0930
|
||||||
|
#define VENDOR_VIETTEL 0x2262
|
||||||
|
#define VENDOR_YISO 0x0EAB
|
||||||
|
#define VENDOR_YUGA 0x257A
|
||||||
|
#define VENDOR_ZD 0x0685
|
||||||
|
#define VENDOR_ZTE 0x19d2
|
||||||
|
|
||||||
|
const usb_serial_device kOptionDevices[] = {
|
||||||
|
{VENDOR_CMOTECH, 0x6008, "CMOTECH CDMA Modem"},
|
||||||
|
{VENDOR_CMOTECH, 0x5553, "CMOTECH CDU550"},
|
||||||
|
{VENDOR_CMOTECH, 0x6512, "CMOTECH CDX650"}
|
||||||
|
};
|
||||||
|
|
||||||
|
|
||||||
|
class OptionDevice : public ACMDevice {
|
||||||
|
public:
|
||||||
|
OptionDevice(usb_device device,
|
||||||
|
uint16 vendorID, uint16 productID,
|
||||||
|
const char *description);
|
||||||
|
|
||||||
|
virtual status_t AddDevice(const usb_configuration_info *config);
|
||||||
|
virtual status_t ResetDevice();
|
||||||
|
};
|
||||||
|
|
||||||
|
|
||||||
|
#endif /*_USB_OPTION_H_ */
|
||||||
Some files were not shown because too many files have changed in this diff Show More
Reference in New Issue
Block a user