Merge branch 'master' into sam460ex

This commit is contained in:
François Revol
2012-11-29 16:06:28 +01:00
1095 changed files with 21545 additions and 9452 deletions
+8 -3
View File
@@ -1749,9 +1749,7 @@ if [ IsOptionalHaikuImagePackageAdded Puri ] {
# Python
if [ IsOptionalHaikuImagePackageAdded Python ] {
if $(TARGET_ARCH) != x86 {
Echo "No optional package Python available for $(TARGET_ARCH)" ;
} else {
if $(TARGET_ARCH) = x86 {
if $(HAIKU_GCC_VERSION[1]) >= 4 {
InstallOptionalHaikuImagePackage
python-2.6.8-r1a4-x86-gcc4-2012-09-03.zip
@@ -1763,6 +1761,13 @@ if [ IsOptionalHaikuImagePackageAdded Python ] {
: $(baseURL)/python-2.6.8-r1a4-x86-gcc2-2012-08-30.zip
: : true ;
}
} else if $(TARGET_ARCH) = x86_64 {
InstallOptionalHaikuImagePackage
python-2.6.8-x86_64-2012-11-28.zip
: $(baseURL)/python-2.6.8-x86_64-2012-11-28.zip
: : true ;
} else {
Echo "No optional package Python available for $(TARGET_ARCH)" ;
}
}
+5
View File
@@ -9,6 +9,11 @@ HAIKU_BOOT_PLATFORM = raspberrypi_arm ;
HAIKU_BOARD_LOADER_BASE = 0x0 ;
HAIKU_BOARD_BOOT_ARCHIVE_BASE = 0x04000000 ;
HAIKU_BOARD_BOOT_ARCHIVE_SIZE = 0x00400000 ;
# TODO: needs to be configured in the config.txt
# ramfsfile=haiku-floppyboot.tgz and ramfsaddr=x
#
# Flash image
#
+12 -25
View File
@@ -1,37 +1,24 @@
##### Overclocking
# WARNING: Don't adjust unless you know what you are doing!
#arm_freq=800
#gpu_freq=350
#core_freq=250
#h264_freq=250
#isp_freq=250
#v3d_freq=250
#sdram_freq=250
#over_voltage=0
#over_voltage_sdram=0
#over_voltage_sdram_c=0
#over_voltage_sdram_i=0
#over_voltage_sdram_p=0
##### CPU Speed
#arm_freq 700
##### Memory layout
#gpu_mem 64
##### Video
#sdtv_mode=0
#sdtv_aspect=1
#hdmi_mode=19
#hdmi_drive=
#test_mode=0
#disable_overscan=0
enable_l2cache=1
# Memory based on model.. overrides gpu_mem
#gpu_mem_256 64
#gpu_mem_512 64
##### Low level
kernel=haiku_loader
kernel_address=0x0
ramfsfile=haiku-floppyboot.tgz
ramfsaddr=0x04000000
# Skip boot tags for non-linux platforms
disable_commandline_tags=1
#kernel_address=
#device_tree=bcm2835.dtb
#device_tree_address=0x100
##### UART Settings
# Default is 115200
#init_uart_baud=9600
+14 -13
View File
@@ -1,33 +1,34 @@
Setting up the Haiku boot partition
-------------------------------------
partition 1 -- FAT32, bootable flag, type 'c'
partition 2 -- BeFS, Haiku filesystem, type 'eb'
The boot partition must contain the following files to boot Haiku:
* bootcode.bin : 2nd stage bootloader, starts with SDRAM disabled
* loader.bin : 3rd stage bootloader, starts with SDRAM enabled
* start.elf: The GPU binary firmware image, provided by the foundation.
* bootcode.bin : 2nd stage bootloader
* start.elf: The GPU binary firmware image
* haiku_loader: Haiku Loader
* haiku-floppyboot.tgz: Compressed image with Haiku kernel
* config.txt: A configuration file read by the GPU.
Optional files:
* vlls directory: Additional GPU code, e.g. extra codecs.
Additional GPU firmware images, rename over start.elf to use them:
* arm128_start.elf : 128M ARM, 128M GPU split
- use this for heavy 3D work, possibly also required for some video decoding)
* arm192_start.elf : 192M ARM, 64M GPU split
- this is the default
* arm224_start.elf : 224M ARM, 32M GPU split
- (use this for Linux only with no 3D or video processing.
Enough for the 1080p framebuffer, but not much else)
Building
-------------------------------------
jam -q -sHAIKU_BOOT_BOARD=raspberry_pi -sHAIKU_BOOT_PLATFORM=raspberrypi_arm haiku_loader
jam -q -sHAIKU_BOOT_BOARD=raspberry_pi -sHAIKU_BOOT_PLATFORM=raspberrypi_arm haiku-floppyboot.tgz
config.txt options
-------------------------------------
kernel=haiku_loader
kernel_address=0x0
disable_commandline_tags=1
ramfsfile=haiku-floppyboot.tgz
ramfsaddr=0x04000000
Additional information
-------------------------------------
* Latest Raspberry Pi firmware:
http://github.com/raspberrypi/firmware/tree/master/boot
* config.txt options:
http://www.elinux.org/RPiconfig
+8 -2
View File
@@ -92,12 +92,18 @@ mkdir -p $installDir/lib/gcc-lib/i586-pc-haiku/$haikuRequiredLegacyGCCVersion
# force the POSIX locale, as the build (makeinfo) might choke otherwise
export LC_ALL=POSIX
# drop an multiple job arguments from MAKEFLAGS
if [ ! -z "$MAKEFLAGS" ]; then
export MAKEFLAGS=$(echo $MAKEFLAGS | sed -e 's/-j\s*[0-9][0-9]*//g')
fi
# build binutils
cd $binutilsObjDir
CFLAGS="-O2" CXXFLAGS="-O2" $buildToolsDir/binutils/configure \
--prefix=$installDir --target=i586-pc-haiku --disable-nls \
--enable-shared=yes --disable-werror || exit 1
make -j1 $additionalMakeArgs || exit 1
make $additionalMakeArgs || exit 1
make $additionalMakeArgs install || exit 1
PATH=$PATH:$installDir/bin
@@ -157,7 +163,7 @@ eval "sed $sedExpr Makefile.bak > Makefile" || exit 1
rm Makefile.bak
# make gcc
make -j1 cross || {
make cross || {
echo "ERROR: Building gcc failed." >&2
exit 1
}
+2
View File
@@ -435,6 +435,8 @@ function DetectSystemConfiguration()
# Determine the Architecture.
if [ `uname -m` == "BePC" ] ; then
TARGET_ARCH='x86'
elif [ `uname -m` == "x86_64" ] ; then
TARGET_ARCH='x86_64'
else
echo "Sorry, x86 only for now."
exit 1
@@ -1,8 +1,8 @@
1 hungarian application/x-vnd.Haiku-BFSAddOn 1074880496
1024 (Mostly small files) BFS_Initialize_Parameter 1024 (nagyrészt kis fájlok)
1 hungarian x-vnd.Haiku-BFSAddOn 1074880496
Enable query support BFS_Initialize_Parameter Lekérdezéstámogatás engedélyezése
2048 (Recommended) BFS_Initialize_Parameter 2048 (ajánlott)
8192 (Mostly large files) BFS_Initialize_Parameter 8192 (nagyrészt nagy fájlok)
Disabling query support may speed up certain file system operations, but should only be used if one is absolutely certain that one will not need queries.\nAny volume that is intended for booting Haiku must have query support enabled. BFS_Initialize_Parameter A lekérdezések támogatásának letiltása felgyorsíthat bizonyos fájlműveleteket, de csak akkor ajánlott használni, ha biztos, hogy nem lesz szükség a lekérdezésekre.\nMinden Haiku rendszerindító lemeznek támogatnia kell a lekérdezéseket.
1024 (Mostly small files) BFS_Initialize_Parameter 1024 (nagyrészt kis fájlok)
Blocksize: BFS_Initialize_Parameter Blokkméret:
Disabling query support may speed up certain file system operations, but should only be used if one is absolutely certain that one will not need queries.\nAny volume that is intended for booting Haiku must have query support enabled. BFS_Initialize_Parameter A lekérdezések támogatásának letiltása felgyorsíthat bizonyos fájlműveleteket, de csak akkor ajánlott használni, ha biztos, hogy nem lesz szükség a lekérdezésekre.\nMinden Haiku rendszerindító kötetnek támogatnia kell a lekérdezéseket.
Enable query support BFS_Initialize_Parameter Lekérdezéstámogatás engedélyezése
Name: BFS_Initialize_Parameter Név:
@@ -1,8 +1,8 @@
1 japanese x-vnd.Haiku-BFSAddOn 1074880496
Enable query support BFS_Initialize_Parameter クエリを有効にする
Enable query support BFS_Initialize_Parameter クエリを有効にする
2048 (Recommended) BFS_Initialize_Parameter 2048 (推奨)
8192 (Mostly large files) BFS_Initialize_Parameter 8192 (主に大きいファイル用)
Disabling query support may speed up certain file system operations, but should only be used if one is absolutely certain that one will not need queries.\nAny volume that is intended for booting Haiku must have query support enabled. BFS_Initialize_Parameter クエリを無効にすると、特定のファイルシステム操作は早くなるでしょう。しかし、完全にクエリを必要としないことを確信している場合のみ使うべきです。\nHaikuのブート対象のボリュームは、クエリを有効にする必要があります。
Disabling query support may speed up certain file system operations, but should only be used if one is absolutely certain that one will not need queries.\nAny volume that is intended for booting Haiku must have query support enabled. BFS_Initialize_Parameter クエリを無効にすると、特定のファイルシステム操作は早くなるでしょう。しかし、完全にクエリを必要としないことを確信している場合のみ使うべきです。\nHaiku のブート対象のボリュームは、クエリを有効にする必要があります。
1024 (Mostly small files) BFS_Initialize_Parameter 1024 (主に小さいファイル用)
Blocksize: BFS_Initialize_Parameter ブロックサイズ:
Name: BFS_Initialize_Parameter ボリューム名:
@@ -1,8 +1,8 @@
1 dutch; flemish x-vnd.Haiku-BFSAddOn 1074880496
Enable query support BFS_Initialize_Parameter Activeer query-ondersteuning
2048 (Recommended) BFS_Initialize_Parameter 2048 (Aanbevolen)
8192 (Mostly large files) BFS_Initialize_Parameter 8192 (Vooral grote bestanden)
Disabling query support may speed up certain file system operations, but should only be used if one is absolutely certain that one will not need queries.\nAny volume that is intended for booting Haiku must have query support enabled. BFS_Initialize_Parameter Het uitschakelen van query's ondersteuning kan bepaald de werking van het systeem versnellen, maar moet alleen worden gebruikt als een absoluut zeker is dat men queries niet nodig zal hebben.\n Elk volume dat bedoeld is voor het opstarten van Haiku moet query ondersteuning geactiveerd hebben.
1024 (Mostly small files) BFS_Initialize_Parameter 1024 (vooral kleine bestanden)
Blocksize: BFS_Initialize_Parameter Blokgrootte:
Name: BFS_Initialize_Parameter Naam:
Enable query support BFS_Initialize_Parameter Slå på støtte for søk
2048 (Recommended) BFS_Initialize_Parameter 2048 (anbefalt)
8192 (Mostly large files) BFS_Initialize_Parameter 8192 (hovedsaklig store filer)
Disabling query support may speed up certain file system operations, but should only be used if one is absolutely certain that one will not need queries.\nAny volume that is intended for booting Haiku must have query support enabled. BFS_Initialize_Parameter Å slå av støtte for søk kan gjøre at noen filsystemoperasjoner går raskere, men bør bare brukes hvis man er helt sikker på at man ikke kommer til å få bruk for søk.\nVolumer som skal brukes som oppstartsvolum for Haiku må ha støtte for søk slått på.
1024 (Mostly small files) BFS_Initialize_Parameter 1024 (hovedsaklig små filer)
Blocksize: BFS_Initialize_Parameter Blokkstørelse:
Name: BFS_Initialize_Parameter Navn:
@@ -0,0 +1,8 @@
1 portuguese (brazil) x-vnd.Haiku-BFSAddOn 1074880496
Enable query support BFS_Initialize_Parameter Habilitar suporte a consultas
2048 (Recommended) BFS_Initialize_Parameter 2048 (Recomendado)
8192 (Mostly large files) BFS_Initialize_Parameter 8192 (Arquivos grandes em maioria)
Disabling query support may speed up certain file system operations, but should only be used if one is absolutely certain that one will not need queries.\nAny volume that is intended for booting Haiku must have query support enabled. BFS_Initialize_Parameter Disabilitar o suporte a consultas pode aumentar a velocidade de certas operações do sistema, mas somente deve ser utilizado se estiver absolutamente certo de que não irá precisar de consultas.\nQualquer volume que for necessário para inicializar o Haiku precisa ter suporte a consultas habilitado.
1024 (Mostly small files) BFS_Initialize_Parameter 1024 (Arquivos pequenos em maioria)
Blocksize: BFS_Initialize_Parameter Tamanho do bloco:
Name: BFS_Initialize_Parameter Nome:
@@ -0,0 +1,8 @@
1 english x-vnd.Haiku-BFSAddOn 1074880496
Enable query support BFS_Initialize_Parameter 启用查询支持
2048 (Recommended) BFS_Initialize_Parameter 2048(推荐使用)
8192 (Mostly large files) BFS_Initialize_Parameter 8192(大文件使用)
Disabling query support may speed up certain file system operations, but should only be used if one is absolutely certain that one will not need queries.\nAny volume that is intended for booting Haiku must have query support enabled. BFS_Initialize_Parameter 禁用查询支持可能会加速某些文件系统操作,但是除非确定不再使用查询,否则应该启用。\n任何用于引导 Haiku 的卷必须启用查询支持。
1024 (Mostly small files) BFS_Initialize_Parameter 1024(小文件使用)
Blocksize: BFS_Initialize_Parameter 块大小:
Name: BFS_Initialize_Parameter 名称:
@@ -1,2 +1,2 @@
1 hungarian application/x-vnd.Haiku-IntelDiskAddOn 4191422532
1 hungarian x-vnd.Haiku-IntelDiskAddOn 4191422532
Active partition BFS_Creation_Parameter Aktív partíció
@@ -0,0 +1,2 @@
1 portuguese (brazil) x-vnd.Haiku-IntelDiskAddOn 4191422532
Active partition BFS_Creation_Parameter Partição ativa
@@ -0,0 +1,2 @@
1 english x-vnd.Haiku-IntelDiskAddOn 4191422532
Active partition BFS_Creation_Parameter 激活分区
@@ -1,10 +1,10 @@
1 belarusian x-vnd.Haiku-KeyboardInputServerDevice 2536418998
Kill application Team monitor Знішчыць праграму
Quit application Team monitor Спыніць праграму
Select an application from the list above and click one of the buttons 'Kill application' and 'Quit application' in order to close it.\n\nHold CONTROL+ALT+DELETE for %ld seconds to reboot. Team monitor Абярыце праграму ў спісе і націсніце кнопку 'Знішчыць праграму' альбо 'Спыніць праграму' каб яе спыніць.\n\nНацісніце і трымайце CTRL-ALT-DELETE %ld сэкунд каб перагрузіць сістэму.
Select an application from the list above and click one of the buttons 'Kill application' and 'Quit application' in order to close it.\n\nHold CONTROL+ALT+DELETE for %ld seconds to reboot. Team monitor Абярыце праграму ў спісе і націсніце кнопку 'Знішчыць праграму' альбо 'Спыніць праграму' каб яе спыніць.\n\nНацісніце і трымайце CONTROL+ALT+DELETE %ld сэкунд каб перагрузіць сістэму.
If the application will not quit you may have to kill it. Team monitor Калі праграма не спыніцца вам магчыма прыдзецца знішчыць яе.
Force reboot Team monitor Перагрузіць
Team monitor Team monitor Манітор працэсаў
(This team is a system component) Team monitor (гэта сістэмны працэс)
(This team is a system component) Team monitor (Гэта сістэмны працэс)
Restart the desktop Team monitor Перазапусціць дэсктоп
Cancel Team monitor Скасаваць
@@ -1,7 +1,7 @@
1 finnish x-vnd.Haiku-KeyboardInputServerDevice 2536418998
Kill application Team monitor Lopeta sovellus
Quit application Team monitor Poistu sovelluksesta
Select an application from the list above and click one of the buttons 'Kill application' and 'Quit application' in order to close it.\n\nHold CONTROL+ALT+DELETE for %ld seconds to reboot. Team monitor Valitse sovellus yllä olevasta luettelosta ja napsauta yhtä painikkeista Lopeta sovellus ja Poistu sovelluksesta sen sulkemiseksi.\n\nAlkulatauksen suorittamiseksi uudelleen pidä alhaalla Ctrl+Alt+Del -näppäimiä %ld sekuntia.
Select an application from the list above and click one of the buttons 'Kill application' and 'Quit application' in order to close it.\n\nHold CONTROL+ALT+DELETE for %ld seconds to reboot. Team monitor Valitse sovellus yllä olevasta luettelosta ja napsauta yhtä painikkeista Tuhoa sovellus ja Lopeta sovellus sen sulkemiseksi.\n\nAlkulatauksen suorittamiseksi uudelleen pidä alhaalla Ctrl+Alt+Del -näppäimiä %ld sekuntia.
If the application will not quit you may have to kill it. Team monitor Jos sovellus ei sulkeudu, se on ehkä lopetettava se kill-komennolla.
Force reboot Team monitor Pakota uudelleenkäynnistys
Team monitor Team monitor Ryhmävalvonta
@@ -1,10 +1,10 @@
1 hungarian x-vnd.Haiku-KeyboardInputServerDevice 2536418998
Kill application Team monitor Program megszakítása
Quit application Team monitor Program leállítása
Select an application from the list above and click one of the buttons 'Kill application' and 'Quit application' in order to close it.\n\nHold CONTROL+ALT+DELETE for %ld seconds to reboot. Team monitor Egy program bezárásához válassza ki azt a fenti listában, majd nyomja meg az „Program megszakítása”, majd pedig a „Program leállítása” gombot.\n\nA „Ctrl+Alt+Del” %ld másodpercig való lenyomva tartásával újraindíthatja a számítógépet.
If the application will not quit you may have to kill it. Team monitor Ha a program nem lép ki magától, lehet, hogy szükséges megszakítani azt.
Force reboot Team monitor Újraindítás mindenáron
Team monitor Team monitor Folyamatfigyelő
(This team is a system component) Team monitor (Ez a csapat a rendszer egy komponense)
Cancel Team monitor Mégse
Force reboot Team monitor Újraindítás kikényszerítése
If the application will not quit you may have to kill it. Team monitor Ha az alkalmazás nem lép ki magától, lehet, hogy szükséges megszakítani azt.
Kill application Team monitor Alkalmazás megszakítása
Quit application Team monitor Kilépés az alkalmazásból
Restart the desktop Team monitor Asztal újraindítása
Select an application from the list above and click one of the buttons 'Kill application' and 'Quit application' in order to close it.\n\nHold CONTROL+ALT+DELETE for %ld seconds to reboot. Team monitor Egy alkalmazás bezárásához válassza ki a fenti listában, majd nyomja meg az 'Alkalmazás megszakítása', majd pedig a 'Kilépés az alkalamzásból' gombot.\n\nA CONTROL+ALT+DELETE %ld másodpercig való lenyomva tartásával újraindíthatja a számítógépet.
Team monitor Team monitor Csapat monitor
Cancel Team monitor Mégse
@@ -4,7 +4,7 @@ Quit application Team monitor アプリケーションを終了
Select an application from the list above and click one of the buttons 'Kill application' and 'Quit application' in order to close it.\n\nHold CONTROL+ALT+DELETE for %ld seconds to reboot. Team monitor アプリケーションを選んで、「アプリケーションの強制終了」か「アプリケーションの終了」のどちらかのボタンを押して閉じてください。\n\nCONTROL+ALT+DELETE を %ld 秒間押して再起動してください。
If the application will not quit you may have to kill it. Team monitor アプリケーションが終了しない場合は、強制終了しないといけないかもしれません。
Force reboot Team monitor 強制再起動
Team monitor Team monitor チームモニタ
Team monitor Team monitor チームモニタ
(This team is a system component) Team monitor (このチームはシステムの構成要素です)
Restart the desktop Team monitor デスクトップを再起動
Cancel Team monitor 中止
@@ -0,0 +1,10 @@
1 portuguese (brazil) x-vnd.Haiku-KeyboardInputServerDevice 2536418998
Kill application Team monitor Matar aplicação
Quit application Team monitor Fechar aplicativo
Select an application from the list above and click one of the buttons 'Kill application' and 'Quit application' in order to close it.\n\nHold CONTROL+ALT+DELETE for %ld seconds to reboot. Team monitor Selecione uma aplicação da lista acima e clique um dos botões 'Matar aplicativo' e 'Fechar aplicativo' de maneira a fechá-lo.\n\nPressione CONTROL+ALT+DELETE por %ld segundos para reiniciar.
If the application will not quit you may have to kill it. Team monitor Se a aplicação não fechar, você deve matá-la.
Force reboot Team monitor Forçar a reinicialização
Team monitor Team monitor Monitor de equipe
(This team is a system component) Team monitor (Esta equipe é um componente do sistema)
Restart the desktop Team monitor Reiniciar a área de trabalho
Cancel Team monitor Cancelar
@@ -1,7 +1,7 @@
1 russian x-vnd.Haiku-KeyboardInputServerDevice 2536418998
Kill application Team monitor Убить приложение
Quit application Team monitor Завершить приложение
Select an application from the list above and click one of the buttons 'Kill application' and 'Quit application' in order to close it.\n\nHold CONTROL+ALT+DELETE for %ld seconds to reboot. Team monitor Для того, чтобы закрыть приложение выберите его из списка выше и нажмите на кнопку 'Убить приложение' или 'Завершить приложение'.\n\nЗажмите CONTROL+ALT+DELETE на %ld секунд для перезагрузки.
Select an application from the list above and click one of the buttons 'Kill application' and 'Quit application' in order to close it.\n\nHold CONTROL+ALT+DELETE for %ld seconds to reboot. Team monitor Чтобы закрыть приложение выберите его из списка и нажмите на кнопку 'Убить приложение' или 'Завершить приложение'.\n\nЗажмите CONTROL+ALT+DELETE на %ld секунд для перезагрузки.
If the application will not quit you may have to kill it. Team monitor Если приложение не завершится, возможно вам понадобится убить его.
Force reboot Team monitor Перезагрузить насильно
Team monitor Team monitor Монитор процессов
@@ -0,0 +1,10 @@
1 english x-vnd.Haiku-KeyboardInputServerDevice 2536418998
Kill application Team monitor 杀死应用
Quit application Team monitor 退出程序
Select an application from the list above and click one of the buttons 'Kill application' and 'Quit application' in order to close it.\n\nHold CONTROL+ALT+DELETE for %ld seconds to reboot. Team monitor 从上面的列表中选择程序,然后点击 "杀死应用"或者"退出程序" 将其关闭。\n\n按下 Ctrl + Alt + Del 持续 %ld 秒以重启系统。
If the application will not quit you may have to kill it. Team monitor 如果该程序无法退出,您可能需要将其杀死。
Force reboot Team monitor 强制重启
Team monitor Team monitor 组管理器
(This team is a system component) Team monitor (该组属于系统组件)
Restart the desktop Team monitor 重启桌面
Cancel Team monitor 取消
@@ -1,15 +1,15 @@
1 belarusian x-vnd.Haiku-MatchHeader 1205906732
<Choose action> ConfigView <абярыце аперацыю>
<Choose action> ConfigView <Абярыце аперацыю>
has ConfigView меў
Move to ConfigView Перасунуць у
Then ConfigView Then
Then ConfigView Тады
value (use REGEX: in from of regular expressions like *spam*) ConfigView параметр (выкарыстайце REGEX: у выглядзе regular expressions, напрыклад *spam*)
this field is based on the action ConfigView гэты параметр грунтуецца на аперацыі
Delete message ConfigView Выдаліць паведамленне
Rule filter RuleFilter Правіла фільтра
<Choose account> ConfigView <абярыце рахунак>
<Choose account> ConfigView <Абярыце рахунак>
Set flags to ConfigView Меткі паведамлення ў
Set as read ConfigView Пазначыць як прагледжанае
Reply with ConfigView Адказаць з
If ConfigView If
If ConfigView Калі
header (e.g. Subject) ConfigView загаловак (Subject)
@@ -1,15 +1,15 @@
1 hungarian x-vnd.Haiku-MatchHeader 1205906732
<Choose account> ConfigView <Válassza ki a fiókot>
<Choose action> ConfigView <Válassza ki a műveletet>
Delete message ConfigView Üzenet törlése
If ConfigView Ha:
Move to ConfigView Áthelyzés
Reply with ConfigView Válaszolás ezzel
Rule filter RuleFilter Szabályszűrő
Set as read ConfigView Olvasottnak jelölés
Set flags to ConfigView Jelzések állítása erre:
Then ConfigView Akkor:
has ConfigView van benne:
header (e.g. Subject) ConfigView fejléc (pl. tárgy)
this field is based on the action ConfigView ez a mező a műveleten alapszik
has ConfigView tartalmaz
Move to ConfigView mozgatás ide:
Then ConfigView Akkor
value (use REGEX: in from of regular expressions like *spam*) ConfigView érték (RegEx használatával, mint például *spam*)
this field is based on the action ConfigView ez a mező a műveleten alapszik
Delete message ConfigView az üzenet törlése
Rule filter RuleFilter Szabályszűrő
<Choose account> ConfigView <Válassza ki a fiókot>
Set flags to ConfigView megjelölés:
Set as read ConfigView olvasottnak jelölés
Reply with ConfigView válaszolás:
If ConfigView Ha:
header (e.g. Subject) ConfigView fejléc (pl. tárgy)
@@ -12,4 +12,4 @@ Set flags to ConfigView フラグを指定する
Set as read ConfigView 既読にする
Reply with ConfigView 返事を書く
If ConfigView 条件:
header (e.g. Subject) ConfigView ヘッダ(たとえばSubject)
header (e.g. Subject) ConfigView ヘッダ(たとえば Subject)
@@ -0,0 +1,15 @@
1 portuguese (brazil) x-vnd.Haiku-MatchHeader 1205906732
<Choose action> ConfigView <Escolher ação>
has ConfigView tem
Move to ConfigView Mover para
Then ConfigView Então
value (use REGEX: in from of regular expressions like *spam*) ConfigView valor (usar REGEX: a partir de expressões regulares como *spam*)
this field is based on the action ConfigView este campo é baseado na ação
Delete message ConfigView Apagar mensagem
Rule filter RuleFilter Filtro de regra
<Choose account> ConfigView <Escolher conta>
Set flags to ConfigView Definir bandeiras para
Set as read ConfigView Marcar como lida
Reply with ConfigView Responder com
If ConfigView Se
header (e.g. Subject) ConfigView cabeçalho (por ex., Assunto)
@@ -12,4 +12,4 @@ Set flags to ConfigView Установить флаги в
Set as read ConfigView Отметить как прочитанное
Reply with ConfigView Ответить с
If ConfigView Если
header (e.g. Subject) ConfigView заголовок (например Тема)
header (e.g. Subject) ConfigView заголовок (Subject)
@@ -0,0 +1,15 @@
1 english 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 值(使用 REGEX:利用正则表达式,如 *spam*)
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 邮件头(如 主题)
@@ -2,8 +2,8 @@
%num new message filter %num новae паведамленнe
%num new messages filter %num новых паведамленняў
Keyboard LEDs ConfigView Клавіятурныя LED
You have %num new messages for %name. filter Вы маеце %num новых паведамленняў для %name
You have %num new message for %name. filter Вы маеце %num новae паведамленнe для %name
You have %num new messages for %name. filter Вы маеце %num новых паведамленняў для %name.
You have %num new message for %name. filter Вы маеце %num новae паведамленнe для %name.
Log window ConfigView Вакно пратаколу
Central beep ConfigView Цэнтральны гук
Beep ConfigView Біп
@@ -1,16 +1,16 @@
1 hungarian x-vnd.Haiku-NewMailNotification 3624191291
%num new message filter %num új üzenet
%num new messages filter %num új üzenet
Alert ConfigView Jelzés
Beep ConfigView Sípolás
Central alert ConfigView Központi jelzés
Central beep ConfigView Központi sípolás
Keyboard LEDs ConfigView Billentyűzet LEDjei
Log window ConfigView Naplóablak
Method: ConfigView Mód:
New mails notification ConfigView Új üzenet értesítés
New messages filter Új üzenetek
OK filter OK
You have %num new message for %name. filter %num új üzenet érkezett %name számára.
Keyboard LEDs ConfigView billentyűzet-villogás
You have %num new messages for %name. filter %num új üzenet érkezett %name számára.
You have %num new message for %name. filter %num új üzenet érkezett %name számára.
Log window ConfigView naplóablak
Central beep ConfigView központi hangjelzés
Beep ConfigView hangjelzés
Method: ConfigView Művelet:
Central alert ConfigView központi jelzés
Alert ConfigView jelzés
none ConfigView nincs
New messages filter Új üzenetek
New mails notification ConfigView Új üzenet értesítés
OK filter Rendben
@@ -4,7 +4,7 @@
Keyboard LEDs ConfigView キーボードLED
You have %num new messages for %name. filter %name より\n%num 通のメッセージが届きました。
You have %num new message for %name. filter %name より\n%num 通のメッセージが届きました。
Log window ConfigView ログウンドウ
Log window ConfigView ログウンドウ
Central beep ConfigView ビープ音 (すべてのアカウント)
Beep ConfigView ビープ音
Method: ConfigView 方法:
@@ -0,0 +1,16 @@
1 portuguese (brazil) x-vnd.Haiku-NewMailNotification 3624191291
%num new message filter %num nova mensagem
%num new messages filter %num novas mensagens
Keyboard LEDs ConfigView LEDs do teclado
You have %num new messages for %name. filter Você tem %num novas mensagens para %name.
You have %num new message for %name. filter Você tem %num nova mensagem para %name.
Log window ConfigView Janela de registro
Central beep ConfigView Alarme sonoro central
Beep ConfigView Alarme sonoro
Method: ConfigView Método:
Central alert ConfigView Alerta central
Alert ConfigView Alerta
none ConfigView nenhum
New messages filter Novas mensagens
New mails notification ConfigView Notificação de novas mensagens
OK filter OK
@@ -9,7 +9,7 @@ Central beep ConfigView Центральный звуковой сигнал
Beep ConfigView Звуковой сигнал
Method: ConfigView Метод:
Central alert ConfigView Центральное оповещение
Alert ConfigView Оповещение
Alert ConfigView Окно предупрежния
none ConfigView нет
New messages filter Новое сообщение
New mails notification ConfigView Уведомление о новой почте
@@ -0,0 +1,16 @@
1 english x-vnd.Haiku-NewMailNotification 3624191291
%num new message filter %num 新消息
%num new messages filter %num 新消息
Keyboard LEDs ConfigView 键盘LED
You have %num new messages for %name. filter %name 有 %num 个新邮件。
You have %num new message for %name. filter %name 有 %num 个新邮件。
Log window ConfigView 日志窗口
Central beep ConfigView 中部蜂鸣
Beep ConfigView 蜂鸣
Method: ConfigView 方法:
Central alert ConfigView 中部警告
Alert ConfigView 警告
none ConfigView 无
New messages filter 新消息
New mails notification ConfigView 新邮件通知
OK filter 确定
@@ -5,5 +5,5 @@ Genuine below and uncertain above: SpamFilterConfig Aito alla ja epävarma yll
Spam above: SpamFilterConfig Roskaposti yllä:
Add spam rating to start of subject SpamFilterConfig Lisää roskapostiarvosana aiheen alkuun
Learn from all incoming e-mail SpamFilterConfig Opi kaikesta tulevasta sähköpostista
Sorry, unable to launch the spamdbm program to let you edit the server settings. SpamFilterConfig Ei kyetä käynnistämään spamdb-ohjelmaa palvelinasetusten muokkaamiseksi.
Sorry, unable to launch the spamdbm program to let you edit the server settings. SpamFilterConfig Spamdb-ohjelman käynnistäminen palvelinasetusten muokkaamiseksi epäonnistui.
Close SpamFilterConfig Sulje
@@ -1,9 +1,9 @@
1 hungarian x-vnd.Haiku-SpamFilter 1975155212
Add spam rating to start of subject SpamFilterConfig Spam kiértékelés hozzáillesztése a tárgy elejéhez
Close SpamFilterConfig Bezárás
Genuine below and uncertain above: SpamFilterConfig Engedélyezett ezalatt és bizonytalan efölött:
Learn from all incoming e-mail SpamFilterConfig Tanulás minden bejövő e-mailből
Sorry, unable to launch the spamdbm program to let you edit the server settings. SpamFilterConfig Sajnáljuk, nem sikerült elindítani a spamdbm programot, amivel a kiszolgáló beállításait lehetne módosítani.
Spam Filter (AGMS Bayesian) SpamFilter Spamszűrő (AGMS Bayesian)
or empty e-mail SpamFilterConfig vagy üres levél
Spam Filter (AGMS Bayesian) SpamFilter Kéretlen levél szűrő (AGMS Bayesian)
Genuine below and uncertain above: SpamFilterConfig Valódi ezalatt és bizonytalan efölött:
Spam above: SpamFilterConfig Spam efölött:
or empty e-mail SpamFilterConfig vagy üres e-mail
Add spam rating to start of subject SpamFilterConfig Spam kiértékelés hozzáillesztése a tárgy elejéhez
Learn from all incoming e-mail SpamFilterConfig Tanulás minden bejövő levélből
Sorry, unable to launch the spamdbm program to let you edit the server settings. SpamFilterConfig Sajnálom, nem sikerült elindítani a spamdbm programot, amivel a kiszolgáló beállításait lehetne módosítani.
Close SpamFilterConfig Bezárás
@@ -0,0 +1,9 @@
1 portuguese (brazil) x-vnd.Haiku-SpamFilter 1975155212
or empty e-mail SpamFilterConfig ou correio eletrônico vazio
Spam Filter (AGMS Bayesian) SpamFilter Filtro de Spam (AGMS Bayesiano)
Genuine below and uncertain above: SpamFilterConfig Genuíno abaixo e incerto acima:
Spam above: SpamFilterConfig Spam acima:
Add spam rating to start of subject SpamFilterConfig Adicionar classificação de spam para o início do assunto
Learn from all incoming e-mail SpamFilterConfig Aprender com todos os correios recebidos
Sorry, unable to launch the spamdbm program to let you edit the server settings. SpamFilterConfig Desculpe, não é possível carregar o programa gerenciador de banco de dados de spam para permití-lo editar a configuração do servidor.
Close SpamFilterConfig Fechar
@@ -0,0 +1,9 @@
1 english x-vnd.Haiku-SpamFilter 1975155212
or empty e-mail SpamFilterConfig 或者清空邮箱
Spam Filter (AGMS Bayesian) SpamFilter 垃圾邮件过滤器(AGMS 贝叶斯法)
Genuine below and uncertain above: SpamFilterConfig 根据确定性排序:
Spam above: SpamFilterConfig 垃圾邮件:
Add spam rating to start of subject SpamFilterConfig 在条目前添加垃圾邮件排名
Learn from all incoming e-mail SpamFilterConfig 从所有收件箱中学习
Sorry, unable to launch the spamdbm program to let you edit the server settings. SpamFilterConfig 对不起,无法启动垃圾过滤程序以编辑服务器设置。
Close SpamFilterConfig 关闭
@@ -6,4 +6,4 @@ IMAP Folders imap_config Папкі IMAP
Fetching IMAP folders, have patience... IMAPFolderConfig Атрыманне IMAP папак, пачакайце...
IMAP Folders IMAPFolderConfig IMAP папкі
Subcribe / Unsuscribe IMAP folders, have patience... IMAPFolderConfig Апрацоўка IMAP папак, пачакайце...
Failed to fetch available storage. IMAPFolderConfig Памылка падчас атрымання дадзеных
Failed to fetch available storage. IMAPFolderConfig Памылка падчас атрымання дадзеных.
@@ -1,9 +1,9 @@
1 hungarian x-vnd.Haiku-IMAP 3892875357
Apply IMAPFolderConfig Alkalmazás
Destination: imap_config Cél:
Failed to fetch available storage. IMAPFolderConfig Nem sikerült letölteni az elérhető tárhely mennyiségét.
Fetching IMAP folders, have patience... IMAPFolderConfig IMAP mappák letöltése, kis türelmet...
IMAP Folders IMAPFolderConfig IMAP mappák
IMAP Folders imap_config IMAP mappák
Subcribe / Unsuscribe IMAP folders, have patience... IMAPFolderConfig Feliratkozás / leiratkozás IMAP mappákról, kis türelmet...
Destination: imap_config Mappa:
status IMAPFolderConfig állapot
Apply IMAPFolderConfig Alkalmaz
IMAP Folders imap_config IMAP mappák
Fetching IMAP folders, have patience... IMAPFolderConfig IMAP mappák letöltése, kis türelmet…
IMAP Folders IMAPFolderConfig IMAP mappák
Subcribe / Unsuscribe IMAP folders, have patience... IMAPFolderConfig Feliratkozás / leiratkozás IMAP mappákról, kis türelmet…
Failed to fetch available storage. IMAPFolderConfig Nem sikerült letölteni az elérhető tárhely mennyiségét.
@@ -0,0 +1,9 @@
1 portuguese (brazil) x-vnd.Haiku-IMAP 3892875357
Destination: imap_config Destino:
status IMAPFolderConfig status
Apply IMAPFolderConfig Aplicar
IMAP Folders imap_config Pastas IMAP
Fetching IMAP folders, have patience... IMAPFolderConfig Buscando pastas IMAP, tenha paciência...
IMAP Folders IMAPFolderConfig Pastas IMAP
Subcribe / Unsuscribe IMAP folders, have patience... IMAPFolderConfig Assinando / Cancelando assinatura de pastas IMAP, tenha paciência...
Failed to fetch available storage. IMAPFolderConfig Falhou ao buscar armazenamento disponível.
@@ -1,4 +1,5 @@
1 russian x-vnd.Haiku-IMAP 4105475134
1 russian x-vnd.Haiku-IMAP 3892875357
Destination: imap_config Папка:
status IMAPFolderConfig статус
Apply IMAPFolderConfig Применить
IMAP Folders imap_config IMAP папки
@@ -0,0 +1,9 @@
1 english x-vnd.Haiku-IMAP 3892875357
Destination: imap_config 目标位置:
status IMAPFolderConfig 状态
Apply IMAPFolderConfig 应用
IMAP Folders imap_config IMAP 目录
Fetching IMAP folders, have patience... IMAPFolderConfig 获取 IMAP 目录,请耐心等待...
IMAP Folders IMAPFolderConfig IMAP 目录
Subcribe / Unsuscribe IMAP folders, have patience... IMAPFolderConfig 注册/注销 IMAP 目录,请耐心等待...
Failed to fetch available storage. IMAPFolderConfig 获取可用存储失败
@@ -8,7 +8,7 @@ Connecting to POP3 server… pop3 Далучэнне да POP3 сервера
Getting UniqueIDs… pop3 Атрыманне ідэнтыфікатараў…
: No reply.\n pop3 : Няма адказу.\n
: Connection refused or host not found pop3 : Адмова ў далучэнні альбо хост не знойдзены
Error while connecting to server %serv pop3 Памылка падчас далучэння %user да сервера
Error while connecting to server %serv pop3 Памылка падчас далучэння %serv да сервера
Error while authenticating user %user pop3 Памылка падчас аўтэнтыфікацыі %user
Destination: ConfigView Прызначэнне:
APOP ConfigView APOP
@@ -1,18 +1,17 @@
1 hungarian x-vnd.Haiku-POP3 1324485597
. The server said:\n pop3 . A szerver válasza:\n
: Connection refused or host not found pop3 : Kapcsolat visszautasítva, vagy a kiszolgáló nem található
: Could not allocate socket. pop3 : Socket nem hozzárendelhető.
: No reply.\n pop3 : Nincs válasz.\n
: The server does not support APOP. pop3 : A kiszolgáló nem támogatja az APOP-ot.
APOP ConfigView APOP
Connect to server… pop3 Csatlakozás a kiszolgálóhoz...
Connecting to POP3 server… pop3 Csatlakozás a POP3 kiszolgálóhoz...
Destination: ConfigView Cél:
Error while authenticating user %user pop3 Hiba történt a következő felhasználó bejelentkeztetése során: %user
Error while connecting to server %serv pop3 Hiba történt a következő kiszolgálóhoz való csatlakozás során: %serv
Getting UniqueIDs… pop3 Egyedi azonosítók letöltése...
Getting mailbox size… pop3 Postafiók méretének letöltése...
1 hungarian x-vnd.Haiku-POP3 672805158
Plain text ConfigView Sima szöveg
Sending APOP authentication… pop3 APOP hitelesítés küldése...
Sending password… pop3 Jelszó küldése...
Sending username… pop3 Felhasználónév küldése...
Sending APOP authentication… pop3 APOP hitelesítés küldése
Sending username… pop3 Felhasználónév küldése
: The server does not support APOP. pop3 : A kiszolgáló nem támogatja az APOP-ot.
Getting mailbox size… pop3 Postafiók méretének letöltése…
Connecting to POP3 server… pop3 Csatlakozás a POP3 kiszolgálóhoz…
Getting UniqueIDs… pop3 Egyedi azonosítók letöltése…
: No reply.\n pop3 : Nincs válasz.\n
: Connection refused or host not found pop3 : Kapcsolat visszautasítva, vagy a kiszolgáló nem található
Error while connecting to server %serv pop3 Hiba történt a következő kiszolgálóhoz való csatlakozás során: %serv
Error while authenticating user %user pop3 Hiba történt a következő felhasználó bejelentkeztetése során: %user
Destination: ConfigView Mappa:
APOP ConfigView APOP
Sending password… pop3 Jelszó küldése…
Connect to server… pop3 Csatlakozás a kiszolgálóhoz…
. The server said:\n pop3 . A szerver válasza:\n
@@ -1,17 +1,17 @@
1 japanese x-vnd.Haiku-POP3 672805158
Plain text ConfigView 平文
Sending APOP authentication… pop3 APOP認証情報を送信中...
Sending username… pop3 ユーザーID送信中...
: The server does not support APOP. pop3 サーバーはAPOPをサポートしていません
Getting mailbox size… pop3 メールボックスのサイズを取得しています...
Connecting to POP3 server… pop3 POP3サーバーに接続しています...
Getting UniqueIDs… pop3 固有のIDを取得中...
Sending APOP authentication… pop3 APOP認証情報を送信中
Sending username… pop3 ユーザーID送信中
: The server does not support APOP. pop3 サーバーは APOP をサポートしていません
Getting mailbox size… pop3 メールボックスのサイズを取得しています
Connecting to POP3 server… pop3 POP3サーバーに接続しています
Getting UniqueIDs… pop3 固有のIDを取得中
: No reply.\n pop3 返答がありません。\n
: Connection refused or host not found pop3 接続が拒否されたかサーバーが見つかりません。
Error while connecting to server %serv pop3 サーバー %serv に接続中にエラーが発生しました
Error while authenticating user %user pop3 ユーザー %user 認証中にエラーが発生しました
Destination: ConfigView メッセージの保存先:
APOP ConfigView APOP
Sending password… pop3 パスワード送信中...
Sending password… pop3 パスワード送信中
Connect to server… pop3 サーバーに接続しました…
. The server said:\n pop3 サーバーからのメッセージです\n
@@ -0,0 +1,17 @@
1 portuguese (brazil) x-vnd.Haiku-POP3 672805158
Plain text ConfigView Texto plano
Sending APOP authentication… pop3 Enviando autenticação APOP...
Sending username… pop3 Enviando nome de usuário...
: The server does not support APOP. pop3 : O servidor não suporta APOP.
Getting mailbox size… pop3 Obtendo tamanho da caixa de correio...
Connecting to POP3 server… pop3 Conectando ao servidor POP3...
Getting UniqueIDs… pop3 Obtendo UniqueIDs...
: No reply.\n pop3 : Sem resposta.\n
: Connection refused or host not found pop3 : Conexão recusada ou computador não encontrado
Error while connecting to server %serv pop3 Erro ao conectar ao servidor %serv
Error while authenticating user %user pop3 Erro ao autenticar o usuário %user
Destination: ConfigView Destino:
APOP ConfigView APOP
Sending password… pop3 Enviando senha…
Connect to server… pop3 Conectar ao servidor…
. The server said:\n pop3 . O servidor disse:\n
@@ -1,4 +1,4 @@
1 russian x-vnd.Haiku-POP3 4247002942
1 russian x-vnd.Haiku-POP3 672805158
Plain text ConfigView Обычный текст
Sending APOP authentication… pop3 Отправка APOP аутентификации…
Sending username… pop3 Отправка имени пользователя…
@@ -10,6 +10,7 @@ Getting UniqueIDs… pop3 Получение уникальных иденти
: Connection refused or host not found pop3 : В соединении отказано или сервер не найден
Error while connecting to server %serv pop3 Ошибка при соединении с сервером %serv
Error while authenticating user %user pop3 Ошибка при авторизации пользователя %user
Destination: ConfigView Папка:
APOP ConfigView APOP
Sending password… pop3 Отправка пароля…
Connect to server… pop3 Подключение к серверу…
@@ -1,17 +1,17 @@
1 swedish x-vnd.Haiku-POP3 672805158
Plain text ConfigView Klartext
Sending APOP authentication… pop3 Skickar APOP verifiering...
Sending username… pop3 Skickar användarnamn...
Sending APOP authentication… pop3 Skickar APOP verifiering
Sending username… pop3 Skickar användarnamn
: The server does not support APOP. pop3 : Servern stöder inte APOP.
Getting mailbox size… pop3 Hämtar e-postkontots storlek...
Connecting to POP3 server… pop3 Ansluter till POP3 servern...
Getting UniqueIDs… pop3 Hämtar unika id'n...
Getting mailbox size… pop3 Hämtar e-postkontots storlek
Connecting to POP3 server… pop3 Ansluter till POP3 servern
Getting UniqueIDs… pop3 Hämtar unika id'n
: No reply.\n pop3 : Inget svar.\n
: Connection refused or host not found pop3 : Anslutningen nekades eller så saknas värden
Error while connecting to server %serv pop3 Fel vid anslutning till %serv
Error while authenticating user %user pop3 Fel vid verifiering av användaren %user
Destination: ConfigView Mål:
APOP ConfigView APOP
Sending password… pop3 Skickar lösenord...
Connect to server… pop3 Anslut till server...
Sending password… pop3 Skickar lösenord
Connect to server… pop3 Anslut till server
. The server said:\n pop3 . Servern sa:\n
@@ -0,0 +1,17 @@
1 english x-vnd.Haiku-POP3 672805158
Plain text ConfigView 纯文本
Sending APOP authentication… pop3 发送 APOP 认证...
Sending username… pop3 发送用户名...
: The server does not support APOP. pop3 :服务器不支持 APOP。
Getting mailbox size… pop3 获取邮箱大小...
Connecting to POP3 server… pop3 连接到 POP3 服务器...
Getting UniqueIDs… pop3 获取特别ID...
: No reply.\n pop3 :无回复。\n
: Connection refused or host not found pop3 :连接被拒绝,或未发现主机
Error while connecting to server %serv pop3 连接到服务器 %serv 失败
Error while authenticating user %user pop3 认证用户 %user 失败
Destination: ConfigView 目标:
APOP ConfigView APOP
Sending password… pop3 发送密码...
Connect to server… pop3 连接到服务器...
. The server said:\n pop3 。服务器回复:\n
@@ -1,4 +1,4 @@
1 hungarian x-vnd.Haiku-Fortune 1292458430
Fortune cookie says:\n\n ConfigView A szerencsesüti az írja:\n\n
Fortune file: ConfigView Szerencsefájl:
Fortune cookie says:\n\n ConfigView A szerencsesüti az írja:\n\n
Tag line: ConfigView Cimkesor:
@@ -1,4 +1,4 @@
1 japanese x-vnd.Haiku-Fortune 1292458430
Fortune file: ConfigView Fortuneファイル:
Fortune cookie says:\n\n ConfigView フォーチュンクッキーは語る\n\n
Fortune cookie says:\n\n ConfigView フォーチュンクッキーは語る:\n\n
Tag line: ConfigView 見出し:
@@ -0,0 +1,4 @@
1 portuguese (brazil) x-vnd.Haiku-Fortune 1292458430
Fortune file: ConfigView Arquivo Fortuna:
Fortune cookie says:\n\n ConfigView Biscoito da sorte disse:\n\n
Tag line: ConfigView Linha de marcador:
@@ -1,2 +1,4 @@
1 russian x-vnd.Haiku-Fortune 1971417927
1 russian x-vnd.Haiku-Fortune 1292458430
Fortune file: ConfigView Файл цитат:
Fortune cookie says:\n\n ConfigView Печенье с предсказанием говорит:\n\n
Tag line: ConfigView Заголовок:
@@ -0,0 +1,4 @@
1 english x-vnd.Haiku-Fortune 1292458430
Fortune file: ConfigView Fortune 文件:
Fortune cookie says:\n\n ConfigView Fortune cookie 如是说:\n\n
Tag line: ConfigView 标记行:
@@ -7,7 +7,7 @@ Unencrypted ConfigView Некрыптаваны
ESMTP ConfigView ESMTP
Connecting to server… smtp Далучэнне да сервера…
Error while opening connection to %serv smtp Памылка падчас далучэння да %serv
POP3 authentication failed. The server said:\n smtp Аўтэнтыфікацыя не ўдалася. Паведамленне сервера:\n
POP3 authentication failed. The server said:\n smtp Аўтэнтыфікацыя POP3 не ўдалася. Паведамленне сервера:\n
Destination: ConfigView Прызначэнне:
: Connection refused or host not found. smtp : Адмоўлена ў злучэнні ці сервер не знойдзены.
None ConfigView Няма
@@ -1,16 +1,16 @@
1 hungarian x-vnd.Haiku-SMTP 2740407895
. The server said:\n smtp . A kiszolgáló válasza:\n
. The server says:\n smtp . A kiszolgáló válasza:\n
: Connection refused or host not found. smtp : kapcsolat visszautasítva, vagy a kiszolgáló nem található.
Connecting to server… smtp Csatlakozás a kiszolgálóhoz...
Destination: ConfigView Cél:
ESMTP ConfigView ESMTP
Error while logging in to %serv smtp Hiba történt a %serv kiszolgálóra való bejelentkezés közben
Error while opening connection to %serv smtp Hiba történt a %serv kiszolgálóval való kapcsolat nyitása közben
None ConfigView Nincs
POP3 authentication failed. The server said:\n smtp A POP3 hitelesítés sikertelen volt. A kiszolgáló válasza:\n
POP3 before SMTP ConfigView POP3 az SMTP előtt
SMTP server: ConfigView SMTP kiszolgáló:
SSL ConfigView SSL
SMTP server: ConfigView Kiszolgáló:
STARTTLS ConfigView STARTTLS
Error while logging in to %serv smtp Hiba történt a %serv kiszolgálóra való bejelentkezés közben
Unencrypted ConfigView Titkosítatlan
. The server says:\n smtp . A kiszolgáló válasza:\n
ESMTP ConfigView ESMTP
Connecting to server… smtp Csatlakozás a kiszolgálóhoz…
Error while opening connection to %serv smtp Hiba történt a %serv kiszolgálóval való kapcsolat nyitása közben
POP3 authentication failed. The server said:\n smtp A POP3 hitelesítés sikertelen volt. A kiszolgáló válasza:\n
Destination: ConfigView Mappa:
: Connection refused or host not found. smtp : kapcsolat visszautasítva, vagy a kiszolgáló nem található.
None ConfigView Nincs
POP3 before SMTP ConfigView POP3 az SMTP előtt
SSL ConfigView SSL
. The server said:\n smtp . A kiszolgáló válasza:\n
@@ -2,7 +2,7 @@
SMTP server: ConfigView SMTPサーバー:
STARTTLS ConfigView STARTTLS
Error while logging in to %serv smtp %serv へのログイン中にエラーが発生しました
Unencrypted ConfigView 暗号化
Unencrypted ConfigView 暗号化
. The server says:\n smtp サーバーからのメッセージです\n
ESMTP ConfigView ESMTP
Connecting to server… smtp 接続中...
@@ -1,6 +1,8 @@
1 lithuanian x-vnd.Haiku-SMTP 1052586247
1 lithuanian x-vnd.Haiku-SMTP 2740407895
SMTP server: ConfigView SMTP serveris:
STARTTLS ConfigView STARTTLS
Error while logging in to %serv smtp Klaida registruojantis į seansą su %serv
Unencrypted ConfigView Nešifruotas
. The server says:\n smtp . Serveris atsakė:\n
ESMTP ConfigView ESMTP
Connecting to server… smtp Jungiamasi prie serverio…
@@ -10,4 +12,5 @@ Destination: ConfigView Paskirties aplankas:
: Connection refused or host not found. smtp : ryšys atmestas arba serverio nepavyko rasti
None ConfigView joks
POP3 before SMTP ConfigView POP3 prieš SMTP
SSL ConfigView SSL
. The server said:\n smtp . Serveris atsakė:\n
@@ -0,0 +1,16 @@
1 portuguese (brazil) x-vnd.Haiku-SMTP 2740407895
SMTP server: ConfigView Servidor SMTP:
STARTTLS ConfigView STARTTLS
Error while logging in to %serv smtp Erro ao logar ao %serv
Unencrypted ConfigView Não criptografado
. The server says:\n smtp . O servidor disse:\n
ESMTP ConfigView ESMTP
Connecting to server… smtp Conectando ao servidor...
Error while opening connection to %serv smtp Erro ao abrir conexão a %serv
POP3 authentication failed. The server said:\n smtp Autenticação POP3 falhou. O servidor disse:\n
Destination: ConfigView Destino:
: Connection refused or host not found. smtp : Conexão recusada ou computador não encontrado.
None ConfigView Nenhum
POP3 before SMTP ConfigView POP3 antes de SMTP
SSL ConfigView SSL
. The server said:\n smtp . O servidor disse:\n
@@ -1,2 +1,16 @@
1 russian x-vnd.Haiku-SMTP 3465529429
1 russian x-vnd.Haiku-SMTP 2740407895
SMTP server: ConfigView SMTP-сервер:
STARTTLS ConfigView STARTTLS
Error while logging in to %serv smtp Ошибка при входе в %serv
Unencrypted ConfigView Без шифрования
. The server says:\n smtp . Сообщение сервера:\n
ESMTP ConfigView ESMTP
Connecting to server… smtp Соединение с сервером…
Error while opening connection to %serv smtp Ошибка при открытии соединения с %serv
POP3 authentication failed. The server said:\n smtp Аутентификация по POP3 не удалась. Сервер сообщил:\n
Destination: ConfigView Папка:
: Connection refused or host not found. smtp : Отказ в соединении или хост не найден.
None ConfigView Нет
POP3 before SMTP ConfigView POP3 перед SMTP
SSL ConfigView SSL
. The server said:\n smtp . Сообщение сервера:\n
@@ -0,0 +1,16 @@
1 english x-vnd.Haiku-SMTP 2740407895
SMTP server: ConfigView SMTP 服务器:
STARTTLS ConfigView STARTTLS
Error while logging in to %serv smtp 登陆服务器 %serv 失败
Unencrypted ConfigView 未加密
. The server says:\n smtp 。服务器回复:\n
ESMTP ConfigView ESMTP
Connecting to server… smtp 连接到服务器...
Error while opening connection to %serv smtp 连接服务器 %serv 失败
POP3 authentication failed. The server said:\n smtp POP3 认证失败。服务器回复:\n
Destination: ConfigView 目标:
: Connection refused or host not found. smtp :连接被拒绝,或者未发现主机。
None ConfigView 无
POP3 before SMTP ConfigView POP3 位于 SMTP 之前
SSL ConfigView SSL
. The server said:\n smtp 。服务器回复:\n
@@ -7,9 +7,9 @@ Output mapping AudioMixer Мапа вывадаў
Allow input channel remapping AudioMixer Дазволiць перапрызначэнне ўваходнага канала
Resampling algorithm AudioMixer Алгарытм рэсэмплінгу
Attenuate mixer output by 3dB (like BeOS R5) AudioMixer Аслабiць выхад мiксеру на 3дБ(як у BeOS R5)
Display balance control for stereo connections AudioMixer Паказать рэгулятар балансу для стэрэа злучэнняў
To output AudioMixer Выхад
not connected AudioMixer Ня злучана
Display balance control for stereo connections AudioMixer Паказаць рэгулятар балансу для стэрэа злучэнняў
To output AudioMixer Выводзіць
not connected AudioMixer ня злучана
Refuse input format changes AudioMixer Адмова змен ўваходнага фармату
Drop/repeat samples AudioMixer Прапусцiць/паўтарыць сэмплы
Output channel sources AudioMixer Крыніцы выхаднога каналу
@@ -1,27 +1,27 @@
1 hungarian x-vnd.Haiku-mixer.media_addon 3450667169
Input gain controls represent AudioMixer A bemeneti előerősítés beállításai ezt jelentik:
Linear interpolation AudioMixer Lineáris interpoláció
Virtual output channels AudioMixer Virtuális kimeneti csatornák
Refuse output format changes AudioMixer Kimeneti formátum változtatásainak visszautasítása
Output mapping AudioMixer Kimenet leképezése
Allow input channel remapping AudioMixer Bemeneti csatorna újraképezésének az engedélyezése
Allow output channel remapping AudioMixer Kimeneti csatorna újraképezésének az engedélyezése
Resampling algorithm AudioMixer Újramintavételezési algoritmus
Attenuate mixer output by 3dB (like BeOS R5) AudioMixer A keverő kimenetének 3dB-lel való gyengítése (mint a BeOS R5-ben)
Display balance control for stereo connections AudioMixer Sztereó kapcsolatok egyensúlycsúszkáinak megjelenítése
Drop/repeat samples AudioMixer Minták átugrása/ismétlése
Gain AudioMixer Előerősítés
Gain controls AudioMixer Előerősítés beállításai
Input channel destinations AudioMixer Bemeneti csatornák céljai
Input gain controls represent AudioMixer A bemeneti előerősítés beállításai ezt jelentik:
Input mapping AudioMixer Bemenet leképezése
Linear interpolation AudioMixer Lineáris interpoláció
Master output AudioMixer Master kimenet
Mute AudioMixer Elnémítás
Output channel sources AudioMixer Kimeneti csatorna forrásai
Output mapping AudioMixer Kimenet leképezése
Physical input channels AudioMixer Fizikai bemeneti csatornák
Refuse input format changes AudioMixer Bemeneti formátum változtatásainak visszautasítása
Refuse output format changes AudioMixer Kimeneti formátum változtatásainak visszautasítása
Resampling algorithm AudioMixer Újramintavételezési algoritmus
Setup AudioMixer Beállítás
To master AudioMixer Masterre
To output AudioMixer Kimenetre
Use non linear gain sliders (like BeOS R5) AudioMixer Nem lineáris előerősítés csúszkák használata (mint a BeOS R5-ben)
Virtual output channels AudioMixer Virtuális kimeneti csatornák
dB AudioMixer dB
not connected AudioMixer nincs csatlakoztatva
Refuse input format changes AudioMixer Bemeneti formátum változtatásainak visszautasítása
Drop/repeat samples AudioMixer Minták átugrása/ismétlése
Output channel sources AudioMixer Kimeneti csatorna forrásai
dB AudioMixer dB
Gain controls AudioMixer Előerősítés beállításai
Input mapping AudioMixer Bemenet leképezése
Mute AudioMixer Elnémítás
Input channel destinations AudioMixer Bemeneti csatornák céljai
To master AudioMixer Masterre
Master output AudioMixer Master kimenet
Setup AudioMixer Beállítás
Use non linear gain sliders (like BeOS R5) AudioMixer Nem lineáris előerősítés csúszkák használata (mint a BeOS R5-ben)
Gain AudioMixer Előerősítés
Allow output channel remapping AudioMixer Kimeneti csatorna újraképezésének az engedélyezése
Physical input channels AudioMixer Fizikai bemeneti csatornák
@@ -0,0 +1,27 @@
1 portuguese (brazil) x-vnd.Haiku-mixer.media_addon 3450667169
Input gain controls represent AudioMixer Controles de ganho de entrada representam
Linear interpolation AudioMixer Interpolação linear
Virtual output channels AudioMixer Canais virtuais de saída
Refuse output format changes AudioMixer Recusar mudanças de formato de saída
Output mapping AudioMixer Mapeamento de saída
Allow input channel remapping AudioMixer Permitir remapeamento do canal de entrada
Resampling algorithm AudioMixer Algoritmo de reamostragem
Attenuate mixer output by 3dB (like BeOS R5) AudioMixer Atenuar saída do mixer em 3dB (como BeOS R5)
Display balance control for stereo connections AudioMixer Mostrar controle de balanço para conexões estéreo
To output AudioMixer Para saída
not connected AudioMixer desconectado
Refuse input format changes AudioMixer Recusar mudanças no formato de entrada
Drop/repeat samples AudioMixer Parar/repetir amostras
Output channel sources AudioMixer Fontes do canal de saída
dB AudioMixer dB
Gain controls AudioMixer Controles de ganho
Input mapping AudioMixer Mapear entrada
Mute AudioMixer Mudo
Input channel destinations AudioMixer Destinos do canal de entrada
To master AudioMixer Ao mestre
Master output AudioMixer Saída principal
Setup AudioMixer Configuração
Use non linear gain sliders (like BeOS R5) AudioMixer Usar botões deslizantes de ganho não linear (como BeOS R5)
Gain AudioMixer Ganho
Allow output channel remapping AudioMixer Permitir remapeamento do canal de saída
Physical input channels AudioMixer Canais de entrada físicos
@@ -0,0 +1,27 @@
1 english x-vnd.Haiku-mixer.media_addon 3450667169
Input gain controls represent AudioMixer 输入增益控制表示
Linear interpolation AudioMixer 线性插补
Virtual output channels AudioMixer 虚拟输出通道
Refuse output format changes AudioMixer 禁止改变输出格式
Output mapping AudioMixer 输出映射
Allow input channel remapping AudioMixer 启用输入频道重映射
Resampling algorithm AudioMixer 重采样算法
Attenuate mixer output by 3dB (like BeOS R5) AudioMixer 将输出音量衰减 3dB (类似 BeOS R5)
Display balance control for stereo connections AudioMixer 为立体声系统显示均衡控制器
To output AudioMixer 输出
not connected AudioMixer 未连接
Refuse input format changes AudioMixer 禁止输入格式改变
Drop/repeat samples AudioMixer 拽入/重复采样
Output channel sources AudioMixer 输出通道源
dB AudioMixer 分贝
Gain controls AudioMixer 增益控制
Input mapping AudioMixer 输入映射
Mute AudioMixer 静音
Input channel destinations AudioMixer 目标输入通道
To master AudioMixer 到主音量
Master output AudioMixer 主音量输出
Setup AudioMixer 配置
Use non linear gain sliders (like BeOS R5) AudioMixer 使用非线性增益滚动条( 类似 BeOS R5 )
Gain AudioMixer 增益
Allow output channel remapping AudioMixer 启用输出频道重映射
Physical input channels AudioMixer 物理输入频道
@@ -1,2 +1,2 @@
1 hungarian x-vnd.Haiku-ButterflyScreensaver 3604552753
by Geoffry Song Screensaver Butterfly Készítette Geoffry Song
by Geoffry Song Screensaver Butterfly Készítette: Geoffry Song
@@ -0,0 +1,2 @@
1 portuguese (brazil) x-vnd.Haiku-ButterflyScreensaver 3604552753
by Geoffry Song Screensaver Butterfly por Geoffry Song
@@ -0,0 +1,2 @@
1 english x-vnd.Haiku-ButterflyScreensaver 3604552753
by Geoffry Song Screensaver Butterfly 由 Geoffry Song 编写
@@ -1,2 +1,2 @@
1 hungarian x-vnd.Haiku-DebugNowScreensaver 822203648
by Ryan Leavengood Screensaver DebugNow Ryan Leavengood által
by Ryan Leavengood Screensaver DebugNow Készítette: Ryan Leavengood
@@ -0,0 +1,2 @@
1 portuguese (brazil) x-vnd.Haiku-DebugNowScreensaver 822203648
by Ryan Leavengood Screensaver DebugNow por Ryan Leavengood
@@ -0,0 +1,2 @@
1 english x-vnd.Haiku-DebugNowScreensaver 822203648
by Ryan Leavengood Screensaver DebugNow 由 Ryan Leavengood 编写
@@ -1,2 +1,2 @@
1 hungarian x-vnd.Haiku-Flurry 3686556109
Flurry System name Flurry
Flurry System name Fénycsóva
@@ -0,0 +1,2 @@
1 portuguese (brazil) x-vnd.Haiku-Flurry 3686556109
Flurry System name Flurry
@@ -0,0 +1,2 @@
1 english x-vnd.Haiku-Flurry 3686556109
Flurry System name 飘雪
@@ -2,7 +2,7 @@
Grid Border: %li GLife ScreenSaver Мяжа сеткі: %li
Grid Width: GLife ScreenSaver Шырыня сеткі:
none GLife ScreenSaver няма
Grid Height: GLife ScreenSaver Вышыня сеткі:
Grid Height: GLife ScreenSaver Вышыня сеткі:
%sx GLife ScreenSaver This is a factor: the x represents 'times' %sx
None GLife ScreenSaver Няма
4x GLife ScreenSaver This is a factor: the x represents 'times' 4x
@@ -0,0 +1,15 @@
1 hungarian x-vnd.Haiku-GLifeScreensaver 1707534289
Grid Border: %li GLife ScreenSaver Rács határ: %li
Grid Width: GLife ScreenSaver Rácsszélesség:
none GLife ScreenSaver nincs
Grid Height: GLife ScreenSaver Rácsmagasság
%sx GLife ScreenSaver This is a factor: the x represents 'times' %sx
None GLife ScreenSaver Nincs
4x GLife ScreenSaver This is a factor: the x represents 'times' 4x
Grid Width: %li GLife ScreenSaver Rács szélessége: %li
Grid Height: %li GLife ScreenSaver Rács magassága: %li
Grid Life Delay: GLife ScreenSaver Késleltetés:
OpenGL \"Game of Life\" GLife ScreenSaver OpenGL „Életjáték”
Grid Life Delay: %s GLife ScreenSaver Késleltetés: %s
Grid Border: GLife ScreenSaver Keret:
by Aaron Hill GLife ScreenSaver Készítette: Aaron Hill
@@ -0,0 +1,15 @@
1 lithuanian x-vnd.Haiku-GLifeScreensaver 1707534289
Grid Border: %li GLife ScreenSaver Tinklelio rėmelis: %li
Grid Width: GLife ScreenSaver Tinklelio plotis:
none GLife ScreenSaver nėra
Grid Height: GLife ScreenSaver Tinklelio aukštis:
%sx GLife ScreenSaver This is a factor: the x represents 'times' %sx
None GLife ScreenSaver Nėra
4x GLife ScreenSaver This is a factor: the x represents 'times' 4x
Grid Width: %li GLife ScreenSaver Tinklelio plotis: %li
Grid Height: %li GLife ScreenSaver Tinklelio aukštis: %li
Grid Life Delay: GLife ScreenSaver Tinklelio kaitos delsa:
OpenGL \"Game of Life\" GLife ScreenSaver „OpenGL“ „Gyvenimo žaidimas“
Grid Life Delay: %s GLife ScreenSaver Tinklelio kaitos delsa: %s
Grid Border: GLife ScreenSaver Tinklelio rėmelis:
by Aaron Hill GLife ScreenSaver Sukurtas Aaron'o Hill'o
@@ -0,0 +1,15 @@
1 dutch; flemish x-vnd.Haiku-GLifeScreensaver 1707534289
Grid Border: %li GLife ScreenSaver Rasterrand: %li
Grid Width: GLife ScreenSaver Rasterbreedte:
none GLife ScreenSaver geen
Grid Height: GLife ScreenSaver Rasterhoogte:
%sx GLife ScreenSaver This is a factor: the x represents 'times' %sx
None GLife ScreenSaver Geen
4x GLife ScreenSaver This is a factor: the x represents 'times' 4x
Grid Width: %li GLife ScreenSaver Rasterbreedte: %li
Grid Height: %li GLife ScreenSaver Rasterhoogte: %li
Grid Life Delay: GLife ScreenSaver Vertraging levensduur raster:
OpenGL \"Game of Life\" GLife ScreenSaver OpenGL \"Game of Life\"
Grid Life Delay: %s GLife ScreenSaver Vertraging van levensduur van raster: %s
Grid Border: GLife ScreenSaver Rasterrand:
by Aaron Hill GLife ScreenSaver door Aaron Hill
@@ -0,0 +1,15 @@
1 polish x-vnd.Haiku-GLifeScreensaver 1707534289
Grid Border: %li GLife ScreenSaver Granica Siatki: %li
Grid Width: GLife ScreenSaver Szerokość Siatki:
none GLife ScreenSaver brak
Grid Height: GLife ScreenSaver Wysokość Siatki:
%sx GLife ScreenSaver This is a factor: the x represents 'times' %sx
None GLife ScreenSaver Brak
4x GLife ScreenSaver This is a factor: the x represents 'times' 4x
Grid Width: %li GLife ScreenSaver Szerokość Siatki: %li
Grid Height: %li GLife ScreenSaver Wysokość Siatki: %li
Grid Life Delay: GLife ScreenSaver Opóźnienie pomiędzy pokoleniami:
OpenGL \"Game of Life\" GLife ScreenSaver OpenGL \"Gra w Życie\"
Grid Life Delay: %s GLife ScreenSaver Opóźnienie pomiędzy pokoleniami: %s
Grid Border: GLife ScreenSaver Granica Siatki:
by Aaron Hill GLife ScreenSaver stworzył Aaron Hill
@@ -0,0 +1,15 @@
1 portuguese (brazil) x-vnd.Haiku-GLifeScreensaver 1707534289
Grid Border: %li GLife ScreenSaver Limite da grade: %li
Grid Width: GLife ScreenSaver Largura da grade
none GLife ScreenSaver nenhum
Grid Height: GLife ScreenSaver Altura da grade
%sx GLife ScreenSaver This is a factor: the x represents 'times' %sx
None GLife ScreenSaver Nenhum
4x GLife ScreenSaver This is a factor: the x represents 'times' 4x
Grid Width: %li GLife ScreenSaver Largura da grade: %li
Grid Height: %li GLife ScreenSaver Altura da grade: %li
Grid Life Delay: GLife ScreenSaver Atraso de suspensão da grade:
OpenGL \"Game of Life\" GLife ScreenSaver OpenGL \"Jogo da Vida\"
Grid Life Delay: %s GLife ScreenSaver Atraso de Suspensão da grade: %s
Grid Border: GLife ScreenSaver Limite da grade:
by Aaron Hill GLife ScreenSaver por Aaron Hill
@@ -0,0 +1,15 @@
1 russian x-vnd.Haiku-GLifeScreensaver 1707534289
Grid Border: %li GLife ScreenSaver Граница сетки: %li
Grid Width: GLife ScreenSaver Ширина сетки:
none GLife ScreenSaver нет
Grid Height: GLife ScreenSaver Высота сетки:
%sx GLife ScreenSaver This is a factor: the x represents 'times' %sx
None GLife ScreenSaver Нет
4x GLife ScreenSaver This is a factor: the x represents 'times' 4x
Grid Width: %li GLife ScreenSaver Ширина сетки: %li
Grid Height: %li GLife ScreenSaver Высота сетки: %li
Grid Life Delay: GLife ScreenSaver Задержка сетки Жизнь:
OpenGL \"Game of Life\" GLife ScreenSaver OpenGL \"Игра Жизнь\"
Grid Life Delay: %s GLife ScreenSaver Задержка сетки Жизнь: %s
Grid Border: GLife ScreenSaver Граница сетки:
by Aaron Hill GLife ScreenSaver разработал Aaron Hill
@@ -0,0 +1,15 @@
1 english x-vnd.Haiku-GLifeScreensaver 1707534289
Grid Border: %li GLife ScreenSaver 栅栏边界:%li
Grid Width: GLife ScreenSaver 栅栏宽度:%li
none GLife ScreenSaver 无
Grid Height: GLife ScreenSaver 栅栏高度:
%sx GLife ScreenSaver This is a factor: the x represents 'times' %sx
None GLife ScreenSaver 无
4x GLife ScreenSaver This is a factor: the x represents 'times' 4x
Grid Width: %li GLife ScreenSaver 栅栏宽度:%li
Grid Height: %li GLife ScreenSaver 栅栏高度:%li
Grid Life Delay: GLife ScreenSaver 栅栏显示延迟:
OpenGL \"Game of Life\" GLife ScreenSaver OpenGL \"游戏人生\"
Grid Life Delay: %s GLife ScreenSaver 栅栏显示延迟:
Grid Border: GLife ScreenSaver 栅栏边界:
by Aaron Hill GLife ScreenSaver 由 Aaron Hill 编写
@@ -1,2 +1,2 @@
1 hungarian x-vnd.Haiku-HaikuScreensaver 1031480431
by Marcus Overhagen Screensaver Haiku írta: Marcus Overhagen
by Marcus Overhagen Screensaver Haiku Készítette: Marcus Overhagen
@@ -0,0 +1,2 @@
1 portuguese (brazil) x-vnd.Haiku-HaikuScreensaver 1031480431
by Marcus Overhagen Screensaver Haiku por Marcus Overhagen
@@ -0,0 +1,2 @@
1 english x-vnd.Haiku-HaikuScreensaver 1031480431
by Marcus Overhagen Screensaver Haiku 由 Marcus Overhagen 编写
@@ -0,0 +1,2 @@
1 portuguese (brazil) x-vnd.Haiku-IconsScreensaver 3278763328
by Vincent Duvert Screensaver Icons por Vincent Duvert
@@ -0,0 +1,2 @@
1 english x-vnd.Haiku-IconsScreensaver 3278763328
by Vincent Duvert Screensaver Icons 由 Vincent Duvert 编写
@@ -2,4 +2,4 @@
Iterated Function System Screensaver IFS Iteroitu funktiojärjestelmä
Morphing speed: Screensaver IFS Muodonmuunnosnopeus:
%screenSaverName%\n\n© 1997 Massimino Pascal\n\nxscreensaver port by Stephan Aßmus\n<[email protected]> Screensaver IFS %screenSaverName%\n\n© 1997 Massimino Pascal\n\nxscreensaver-sovittaja: Stephan Aßmus\n<[email protected]>
Render dots additive Screensaver IFS Renderöi pisteet
Render dots additive Screensaver IFS Renderöi pisteet
@@ -1,5 +1,5 @@
1 hungarian x-vnd.Haiku-IFSScreensaver 2018309174
%screenSaverName%\n\n© 1997 Massimino Pascal\n\nxscreensaver port by Stephan Aßmus\n<[email protected]> Screensaver IFS %screenSaverName%\n\n© 1997 Massimino Pascal\n\nxképernyővédő portolva Stephan Aßmus által\n<[email protected]>
Iterated Function System Screensaver IFS Iterált Funkciórendszer
Morphing speed: Screensaver IFS Átalakítás sebessége:
%screenSaverName%\n\n© 1997 Massimino Pascal\n\nxscreensaver port by Stephan Aßmus\n<[email protected]> Screensaver IFS %screenSaverName%\n\n© 1997 Massimino Pascal\n\nxképernyővédő portolva Stephan Aßmus által\n<[email protected]>
Render dots additive Screensaver IFS Pontok renderelése hozzáadással
@@ -0,0 +1,5 @@
1 portuguese (brazil) x-vnd.Haiku-IFSScreensaver 2018309174
Iterated Function System Screensaver IFS Sistema de Função Iterada
Morphing speed: Screensaver IFS Velocidade de transformação:
%screenSaverName%\n\n© 1997 Massimino Pascal\n\nxscreensaver port by Stephan Aßmus\n<[email protected]> Screensaver IFS %screenSaverName%\n\n© 1997 Massimino Pascal\n\nporte do xscreensaver por Stephan Aßmus\n<[email protected]>
Render dots additive Screensaver IFS Aditivo de pontos de renderização
@@ -0,0 +1,5 @@
1 english x-vnd.Haiku-IFSScreensaver 2018309174
Iterated Function System Screensaver IFS 迭代功能系统
Morphing speed: Screensaver IFS 变换频率:
%screenSaverName%\n\n© 1997 Massimino Pascal\n\nxscreensaver port by Stephan Aßmus\n<[email protected]> Screensaver IFS %screenSaverName%\n\n© 1997 Massimino Pascal\n\nxscreensaver 由 Stephan Aßmus 移植\n<[email protected]>
Render dots additive Screensaver IFS 附加渲染点
@@ -3,4 +3,4 @@ Drop rate: Leaves Хуткасць:
Size variation: Leaves Памер:
Leaves Leaves Лістапад
Leaf size: Leaves Памер ліста:
by Deyan Genovski, Geoffry Song Leaves Аўтары: Deyan Genovski, Geoffry Song
by Deyan Genovski, Geoffry Song Leaves аўтары: Deyan Genovski, Geoffry Song
@@ -1,6 +1,6 @@
1 hungarian x-vnd.Haiku-LeavesScreensaver 3469951032
Drop rate: Leaves Esési gyakoriság:
Leaf size: Leaves Levelek mérete:
Leaves Leaves Levelek
Size variation: Leaves Méretbéli változatosság:
by Deyan Genovski, Geoffry Song Leaves készítette: Deyan Genovski és Geoffry Song
Leaves Leaves Levelek
Leaf size: Leaves Levelek mérete:
by Deyan Genovski, Geoffry Song Leaves Készítette: Deyan Genovski és Geoffry Song
@@ -0,0 +1,6 @@
1 portuguese (brazil) x-vnd.Haiku-LeavesScreensaver 3469951032
Drop rate: Leaves Taxa de queda:
Size variation: Leaves Variação de tamanho:
Leaves Leaves Folhas
Leaf size: Leaves Tamanho da folha:
by Deyan Genovski, Geoffry Song Leaves por Deyan Genovski, Geoffry Song
@@ -0,0 +1,6 @@
1 english x-vnd.Haiku-LeavesScreensaver 3469951032
Drop rate: Leaves 掉落速度:
Size variation: Leaves 尺寸变化:
Leaves Leaves 树叶
Leaf size: Leaves 树叶尺寸:
by Deyan Genovski, Geoffry Song Leaves 编写者 Deyan GenovskiGeoffry Song。
@@ -1,3 +1,3 @@
1 hungarian x-vnd.Haiku-MessageScreensaver 854294461
Insert clever anecdote or phrase here! Screensaver Message Ide kerüljön valami vicces anekdota vagy mondás.
by Ryan Leavengood Screensaver Message készítette: Ryan Leavengood
by Ryan Leavengood Screensaver Message Készítette: Ryan Leavengood
@@ -0,0 +1,3 @@
1 portuguese (brazil) x-vnd.Haiku-MessageScreensaver 854294461
Insert clever anecdote or phrase here! Screensaver Message Insira uma anedota esperta ou frase aqui!
by Ryan Leavengood Screensaver Message por Ryan Leavengood
@@ -0,0 +1,3 @@
1 english x-vnd.Haiku-MessageScreensaver 854294461
Insert clever anecdote or phrase here! Screensaver Message 在这里插入趣闻轶事!
by Ryan Leavengood Screensaver Message 由 Ryan Leavengood 编写
@@ -0,0 +1,2 @@
1 portuguese (brazil) x-vnd.Haiku-SimpleClock 3791523607
SimpleClock System name SimpleClock
@@ -0,0 +1,2 @@
1 english x-vnd.Haiku-SimpleClock 3791523607
SimpleClock System name 简易时钟

Some files were not shown because too many files have changed in this diff Show More