Merge branch 'master' into sam460ex
This commit is contained in:
@@ -17,11 +17,7 @@ rule ExtractCatalogEntries target : sources : signature : regexp
|
|||||||
defines = $(DEFINES) ;
|
defines = $(DEFINES) ;
|
||||||
headers = $(HAIKU_CONFIG_HEADERS) $(SEARCH_SOURCE) $(SUBDIRHDRS)
|
headers = $(HAIKU_CONFIG_HEADERS) $(SEARCH_SOURCE) $(SUBDIRHDRS)
|
||||||
$(HDRS) ;
|
$(HDRS) ;
|
||||||
|
sysHeaders = $(SUBDIRSYSHDRS) $(SYSHDRS) ;
|
||||||
# insert specific header folder containing the Catalog.h that should be
|
|
||||||
# used when collecting the catalog keys:
|
|
||||||
sysHeaders = [ FDirName $(HAIKU_TOP) headers private locale collecting ]
|
|
||||||
$(SUBDIRSYSHDRS) $(SYSHDRS) ;
|
|
||||||
|
|
||||||
if $(PLATFORM) = host {
|
if $(PLATFORM) = host {
|
||||||
sysHeaders += $(HOST_HDRS) ;
|
sysHeaders += $(HOST_HDRS) ;
|
||||||
@@ -71,7 +67,8 @@ rule ExtractCatalogEntries target : sources : signature : regexp
|
|||||||
actions ExtractCatalogEntries1
|
actions ExtractCatalogEntries1
|
||||||
{
|
{
|
||||||
$(HOST_ADD_BUILD_COMPATIBILITY_LIB_DIR)
|
$(HOST_ADD_BUILD_COMPATIBILITY_LIB_DIR)
|
||||||
cat "$(2[2-])" | $(CC) -E $(CCDEFS) $(HDRS) - > "$(1)".pre
|
cat "$(2[2-])" \
|
||||||
|
| $(CC) -E $(CCDEFS) -DB_COLLECTING_CATKEYS $(HDRS) - > "$(1)".pre
|
||||||
$(2[1]) $(HAIKU_CATALOG_REGEXP) -s $(HAIKU_CATALOG_SIGNATURE) \
|
$(2[1]) $(HAIKU_CATALOG_REGEXP) -s $(HAIKU_CATALOG_SIGNATURE) \
|
||||||
-w -o "$(1)" "$(1)".pre
|
-w -o "$(1)" "$(1)".pre
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -81,6 +81,7 @@ if $(HAIKU_ADD_ALTERNATIVE_GCC_LIBS) = 1
|
|||||||
# Pe - the powerful native Programmer's Editor
|
# Pe - the powerful native Programmer's Editor
|
||||||
# Perl - the scripting language
|
# Perl - the scripting language
|
||||||
# Python - the scripting language
|
# Python - the scripting language
|
||||||
|
# Puri - chess game
|
||||||
# Rsync - remote directory synchronization
|
# Rsync - remote directory synchronization
|
||||||
# Ruby - the programming language
|
# Ruby - the programming language
|
||||||
# Sed - the ultimate stream editor
|
# Sed - the ultimate stream editor
|
||||||
@@ -1605,6 +1606,24 @@ if [ IsOptionalHaikuImagePackageAdded Perl ] {
|
|||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
# Puri
|
||||||
|
if [ IsOptionalHaikuImagePackageAdded Puri ] {
|
||||||
|
if $(TARGET_ARCH) != x86 {
|
||||||
|
Echo "No optional package Puri available for $(TARGET_ARCH)" ;
|
||||||
|
} else {
|
||||||
|
if $(HAIKU_GCC_VERSION[1]) >= 4 {
|
||||||
|
InstallOptionalHaikuImagePackage
|
||||||
|
puri-0.3.9.1-x86-gcc4-2012-08-16.zip
|
||||||
|
: $(baseURL)/puri-0.3.9.1-x86-gcc4-2012-08-16.zip ;
|
||||||
|
} else {
|
||||||
|
Echo "No optional package Puri available for gcc2" ;
|
||||||
|
}
|
||||||
|
AddSymlinkToHaikuImage home config settings deskbar Applications
|
||||||
|
: /boot/apps/Puri/Puri ;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
# Python
|
# Python
|
||||||
if [ IsOptionalHaikuImagePackageAdded Python ] {
|
if [ IsOptionalHaikuImagePackageAdded Python ] {
|
||||||
if $(TARGET_ARCH) != x86 {
|
if $(TARGET_ARCH) != x86 {
|
||||||
@@ -1902,6 +1921,12 @@ if [ IsOptionalHaikuImagePackageAdded WebPositive ] {
|
|||||||
Echo "No optional package WebPositive available for gcc2" ;
|
Echo "No optional package WebPositive available for gcc2" ;
|
||||||
} else {
|
} else {
|
||||||
Echo "WebPositive will be compiled by gcc4 inside $(HAIKU_ALTERNATIVE_GCC_OUTPUT_DIR)" ;
|
Echo "WebPositive will be compiled by gcc4 inside $(HAIKU_ALTERNATIVE_GCC_OUTPUT_DIR)" ;
|
||||||
|
local catalogs = [ on WebPositive return $(HAIKU_CATALOG_FILES) ] ;
|
||||||
|
if $(catalogs) {
|
||||||
|
local signature = x-vnd.Haiku-WebPositive ;
|
||||||
|
AddFilesToHaikuImage system data locale catalogs $(signature)
|
||||||
|
: $(catalogs) ;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
} else if $(HAIKU_GCC_VERSION[1]) >= 4 {
|
} else if $(HAIKU_GCC_VERSION[1]) >= 4 {
|
||||||
AddFilesToHaikuHybridImage apps : WebPositive ;
|
AddFilesToHaikuHybridImage apps : WebPositive ;
|
||||||
|
|||||||
@@ -38,7 +38,7 @@ switch $(HAIKU_BUILD_PROFILE) {
|
|||||||
HAIKU_ROOT_USER_REAL_NAME = "Yourself" ;
|
HAIKU_ROOT_USER_REAL_NAME = "Yourself" ;
|
||||||
AddGroupToHaikuImage party : 101 : user sshd ;
|
AddGroupToHaikuImage party : 101 : user sshd ;
|
||||||
HAIKU_IMAGE_HOST_NAME = shredder ;
|
HAIKU_IMAGE_HOST_NAME = shredder ;
|
||||||
HAIKU_IMAGE_SIZE = 550 ;
|
HAIKU_IMAGE_SIZE = 600 ;
|
||||||
|
|
||||||
AddOptionalHaikuImagePackages Pe Nano Vision P7zip XZ-Utils ;
|
AddOptionalHaikuImagePackages Pe Nano Vision P7zip XZ-Utils ;
|
||||||
AddOptionalHaikuImagePackages Development Git OpenSSH OpenSSL ;
|
AddOptionalHaikuImagePackages Development Git OpenSSH OpenSSL ;
|
||||||
|
|||||||
@@ -23,5 +23,5 @@ Master output AudioMixer Главный выход
|
|||||||
Setup AudioMixer Настройка
|
Setup AudioMixer Настройка
|
||||||
Use non linear gain sliders (like BeOS R5) AudioMixer Использовать нелинейные ползунки управления звуком
|
Use non linear gain sliders (like BeOS R5) AudioMixer Использовать нелинейные ползунки управления звуком
|
||||||
Gain AudioMixer Усиление
|
Gain AudioMixer Усиление
|
||||||
Allow output channel remapping AudioMixer Разрешить переназначение входного канала
|
Allow output channel remapping AudioMixer Разрешить переназначение выходного канала
|
||||||
Physical input channels AudioMixer Физические входные каналы
|
Physical input channels AudioMixer Физические каналы входа
|
||||||
|
|||||||
@@ -1,4 +1,4 @@
|
|||||||
1 japanese x-vnd.Haiku-GLifeScreensaver 206066243
|
1 japanese x-vnd.Haiku-GLifeScreensaver 1707534289
|
||||||
Grid Border: %li GLife ScreenSaver グリッドの輪郭: %li
|
Grid Border: %li GLife ScreenSaver グリッドの輪郭: %li
|
||||||
Grid Width: GLife ScreenSaver グリッドの幅:
|
Grid Width: GLife ScreenSaver グリッドの幅:
|
||||||
none GLife ScreenSaver 無し
|
none GLife ScreenSaver 無し
|
||||||
@@ -10,5 +10,6 @@ Grid Width: %li GLife ScreenSaver グリッドの幅: %li
|
|||||||
Grid Height: %li GLife ScreenSaver グリッドの高さ: %li
|
Grid Height: %li GLife ScreenSaver グリッドの高さ: %li
|
||||||
Grid Life Delay: GLife ScreenSaver グリッドの生存猶予:
|
Grid Life Delay: GLife ScreenSaver グリッドの生存猶予:
|
||||||
OpenGL \"Game of Life\" GLife ScreenSaver OpenGL \"ライフゲーム\"
|
OpenGL \"Game of Life\" GLife ScreenSaver OpenGL \"ライフゲーム\"
|
||||||
|
Grid Life Delay: %s GLife ScreenSaver グリッドの生存猶予: %s
|
||||||
Grid Border: GLife ScreenSaver グリッドの境界:
|
Grid Border: GLife ScreenSaver グリッドの境界:
|
||||||
by Aaron Hill GLife ScreenSaver Aaron Hill 作
|
by Aaron Hill GLife ScreenSaver Aaron Hill 作
|
||||||
|
|||||||
@@ -1,7 +1,9 @@
|
|||||||
1 belarusian x-vnd.Haiku-EXRTranslator 2253035870
|
1 belarusian x-vnd.Haiku-EXRTranslator 106859695
|
||||||
Version %d.%d.%d, %s ConfigView Версія %d.%d.%d, %s
|
Version %d.%d.%d, %s ConfigView Версія %d.%d.%d, %s
|
||||||
EXR image translator EXRTranslator Канвертар EXR выяваў
|
EXR image translator EXRTranslator Канвертар EXR выяваў
|
||||||
Based on OpenEXR (http://www.openexr.com) ConfigView Грунтуецца на матэрыялах праекту OpenEXR (http://www.openexr.com)
|
Based on OpenEXR (http://www.openexr.com) ConfigView Грунтуецца на матэрыялах праекту OpenEXR (http://www.openexr.com)
|
||||||
EXR Settings main Наладкі EXR
|
EXR Settings main Наладкі EXR
|
||||||
|
EXR images EXRTranslator Выявы EXR
|
||||||
a division of Lucasfilm Entertainment Company Ltd ConfigView падраздяленне Lucasfilm Entertainment Company Ltd
|
a division of Lucasfilm Entertainment Company Ltd ConfigView падраздяленне Lucasfilm Entertainment Company Ltd
|
||||||
EXR image EXRTranslator Выява EXR
|
EXR image EXRTranslator Выява EXR
|
||||||
|
EXR image translator ConfigView Канвертар EXR выяваў
|
||||||
|
|||||||
@@ -1,7 +1,9 @@
|
|||||||
1 french x-vnd.Haiku-EXRTranslator 2253035870
|
1 french x-vnd.Haiku-EXRTranslator 106859695
|
||||||
Version %d.%d.%d, %s ConfigView Version %d.%d.%d, %s
|
Version %d.%d.%d, %s ConfigView Version %d.%d.%d, %s
|
||||||
EXR image translator EXRTranslator Traducteur d'images EXR
|
EXR image translator EXRTranslator Traducteur d'images EXR
|
||||||
Based on OpenEXR (http://www.openexr.com) ConfigView Basé sur OpenEXR (http://www.openexr.com)
|
Based on OpenEXR (http://www.openexr.com) ConfigView Basé sur OpenEXR (http://www.openexr.com)
|
||||||
EXR Settings main Réglages EXR
|
EXR Settings main Réglages EXR
|
||||||
|
EXR images EXRTranslator Images EXR
|
||||||
a division of Lucasfilm Entertainment Company Ltd ConfigView une division de Lucasfilm Entertainment Company Ltd
|
a division of Lucasfilm Entertainment Company Ltd ConfigView une division de Lucasfilm Entertainment Company Ltd
|
||||||
EXR image EXRTranslator Image EXR
|
EXR image EXRTranslator Image EXR
|
||||||
|
EXR image translator ConfigView Traducteur d'images EXR
|
||||||
|
|||||||
@@ -1,6 +1,8 @@
|
|||||||
1 belarusian x-vnd.Haiku-HVIFTranslator 2227623652
|
1 belarusian x-vnd.Haiku-HVIFTranslator 249304797
|
||||||
|
Haiku vector icon translator HVIFTranslator Канвертар вектарных значкаў Haiku
|
||||||
HVIF icons HVIFTranslator значкі HVIF
|
HVIF icons HVIFTranslator значкі HVIF
|
||||||
Render size: HVIFView Памер выніковай выявы:
|
Render size: HVIFView Памер выніковай выявы:
|
||||||
HVIFTranslator Settings HVIFTranslator Наладкі канвертара HVIF
|
HVIFTranslator Settings HVIFTranslator Наладкі канвертара HVIF
|
||||||
|
Haiku vector icon translator HVIFView Канвертар вектарных значкаў Haiku
|
||||||
HVIF Settings HVIFMain Наладкі HVIF
|
HVIF Settings HVIFMain Наладкі HVIF
|
||||||
Version %d.%d.%d, %s HVIFView Версія %d.%d.%d, %s
|
Version %d.%d.%d, %s HVIFView Версія %d.%d.%d, %s
|
||||||
|
|||||||
@@ -1,6 +1,8 @@
|
|||||||
1 french x-vnd.Haiku-HVIFTranslator 2227623652
|
1 french x-vnd.Haiku-HVIFTranslator 249304797
|
||||||
|
Haiku vector icon translator HVIFTranslator Traducteur d'icônes vectorielles Haiku
|
||||||
HVIF icons HVIFTranslator Icônes HVIF
|
HVIF icons HVIFTranslator Icônes HVIF
|
||||||
Render size: HVIFView Taille de rendu :
|
Render size: HVIFView Taille de rendu :
|
||||||
HVIFTranslator Settings HVIFTranslator Réglages du traducteur d'icônes HVIF
|
HVIFTranslator Settings HVIFTranslator Réglages du traducteur d'icônes HVIF
|
||||||
|
Haiku vector icon translator HVIFView Traducteur d'icônes vectorielles Haiku
|
||||||
HVIF Settings HVIFMain Réglages HVIF
|
HVIF Settings HVIFMain Réglages HVIF
|
||||||
Version %d.%d.%d, %s HVIFView Version %d.%d.%d, %s
|
Version %d.%d.%d, %s HVIFView Version %d.%d.%d, %s
|
||||||
|
|||||||
@@ -1,8 +1,9 @@
|
|||||||
1 belarusian x-vnd.Haiku-ICOTranslator 1637901496
|
1 belarusian x-vnd.Haiku-ICOTranslator 3916328565
|
||||||
Cursor ICOTranslator Курсор
|
Cursor ICOTranslator Курсор
|
||||||
Version %d.%d.%d, %s ConfigView Версія %d.%d.%d, %s
|
Version %d.%d.%d, %s ConfigView Версія %d.%d.%d, %s
|
||||||
Windows %s %ld bit image ICOTranslator Выява Windows %s %ld біт
|
Windows %s %ld bit image ICOTranslator Выява Windows %s %ld біт
|
||||||
Valid icon sizes are 16, 32, or 48 ConfigView Стандартныя памеры значкаў 16, 32 або 48
|
Valid icon sizes are 16, 32, or 48 ConfigView Стандартныя памеры значкаў 16, 32 або 48
|
||||||
|
Windows icons ICOTranslator Значкі Windows
|
||||||
Enforce valid icon sizes ConfigView Выкарыстоўваць стандартныя памеры
|
Enforce valid icon sizes ConfigView Выкарыстоўваць стандартныя памеры
|
||||||
ICO Settings main Наладкі ICO
|
ICO Settings main Наладкі ICO
|
||||||
Windows icon translator ICOTranslator Канвертар значкаў Windows
|
Windows icon translator ICOTranslator Канвертар значкаў Windows
|
||||||
@@ -10,3 +11,4 @@ pixels in either direction. ConfigView пікселяў у кожным нап
|
|||||||
Write 32 bit images on true color input ConfigView Запісать выявы ў 32 біт поўны колер
|
Write 32 bit images on true color input ConfigView Запісать выявы ў 32 біт поўны колер
|
||||||
Icon ICOTranslator Значак
|
Icon ICOTranslator Значак
|
||||||
ICOTranslator Settings ConfigView Наладкі канвертара ICO
|
ICOTranslator Settings ConfigView Наладкі канвертара ICO
|
||||||
|
Windows icon translator ConfigView Канвертар значкаў Windows
|
||||||
|
|||||||
@@ -1,8 +1,9 @@
|
|||||||
1 french x-vnd.Haiku-ICOTranslator 1637901496
|
1 french x-vnd.Haiku-ICOTranslator 3916328565
|
||||||
Cursor ICOTranslator Curseur
|
Cursor ICOTranslator Curseur
|
||||||
Version %d.%d.%d, %s ConfigView Version %d.%d.%d, %s
|
Version %d.%d.%d, %s ConfigView Version %d.%d.%d, %s
|
||||||
Windows %s %ld bit image ICOTranslator Image Windows %s %ld bits
|
Windows %s %ld bit image ICOTranslator Image Windows %s %ld bits
|
||||||
Valid icon sizes are 16, 32, or 48 ConfigView Les tailles d'icônes valides sont 16, 32 ou 48
|
Valid icon sizes are 16, 32, or 48 ConfigView Les tailles d'icônes valides sont 16, 32 ou 48
|
||||||
|
Windows icons ICOTranslator Icône Windows
|
||||||
Enforce valid icon sizes ConfigView Imposer des tailles valides aux icônes
|
Enforce valid icon sizes ConfigView Imposer des tailles valides aux icônes
|
||||||
ICO Settings main Réglages des icônes
|
ICO Settings main Réglages des icônes
|
||||||
Windows icon translator ICOTranslator Traducteur d'icônes Windows
|
Windows icon translator ICOTranslator Traducteur d'icônes Windows
|
||||||
@@ -10,3 +11,4 @@ pixels in either direction. ConfigView pixels dans n'importe quel sens.
|
|||||||
Write 32 bit images on true color input ConfigView Écrire des images 32 bits pour les entrées en vraies couleurs
|
Write 32 bit images on true color input ConfigView Écrire des images 32 bits pour les entrées en vraies couleurs
|
||||||
Icon ICOTranslator Icône
|
Icon ICOTranslator Icône
|
||||||
ICOTranslator Settings ConfigView Réglages du traducteur d'icônes
|
ICOTranslator Settings ConfigView Réglages du traducteur d'icônes
|
||||||
|
Windows icon translator ConfigView Traducteur d'icônes Windows
|
||||||
|
|||||||
@@ -1,6 +1,8 @@
|
|||||||
1 belarusian x-vnd.Haiku-PCXTranslator 2307793683
|
1 belarusian x-vnd.Haiku-PCXTranslator 938242683
|
||||||
PCX Settings main Наладкі PCX
|
PCX Settings main Наладкі PCX
|
||||||
Version %d.%d.%d, %s ConfigView Версія %d.%d.%d, %s
|
Version %d.%d.%d, %s ConfigView Версія %d.%d.%d, %s
|
||||||
PCXTranslator Settings ConfigView Наладкі канвертару PCX
|
PCXTranslator Settings ConfigView Наладкі канвертару PCX
|
||||||
|
PCX image translator PCXTranslator Канвертар выяваў PCX
|
||||||
PCX %lu bit image PCXTranslator %lu-бітная выява PCX
|
PCX %lu bit image PCXTranslator %lu-бітная выява PCX
|
||||||
PCX images PCXTranslator Выявы PCX
|
PCX images PCXTranslator Выявы PCX
|
||||||
|
PCX image translator ConfigView Канвертар выяваў PCX
|
||||||
|
|||||||
@@ -1,6 +1,8 @@
|
|||||||
1 french x-vnd.Haiku-PCXTranslator 2307793683
|
1 french x-vnd.Haiku-PCXTranslator 938242683
|
||||||
PCX Settings main Réglages PCX
|
PCX Settings main Réglages PCX
|
||||||
Version %d.%d.%d, %s ConfigView Version %d.%d.%d, %s
|
Version %d.%d.%d, %s ConfigView Version %d.%d.%d, %s
|
||||||
PCXTranslator Settings ConfigView Réglages du traducteur PCX
|
PCXTranslator Settings ConfigView Réglages du traducteur PCX
|
||||||
|
PCX image translator PCXTranslator Traducteur d'images PCX
|
||||||
PCX %lu bit image PCXTranslator Image PCX %lu bits
|
PCX %lu bit image PCXTranslator Image PCX %lu bits
|
||||||
PCX images PCXTranslator Images PCX
|
PCX images PCXTranslator Images PCX
|
||||||
|
PCX image translator ConfigView Traducteur d'images PCX
|
||||||
|
|||||||
@@ -1,4 +1,4 @@
|
|||||||
1 belarusian x-vnd.Haiku-PPMTranslator 2435270880
|
1 belarusian x-vnd.Haiku-PPMTranslator 276252412
|
||||||
PPM Settings PPMMain Наладкі PPM
|
PPM Settings PPMMain Наладкі PPM
|
||||||
Based on PPMTranslator sample code PPMTranslator Грунтуецца на зыходным тэксце прыкладу "PPMTranslator"
|
Based on PPMTranslator sample code PPMTranslator Грунтуецца на зыходным тэксце прыкладу "PPMTranslator"
|
||||||
OK PPMMain ОК
|
OK PPMMain ОК
|
||||||
@@ -9,6 +9,7 @@ RGBA 5:5:5:1 16 bits PPMTranslator RGBA 5:5:5:1 16 біт
|
|||||||
Be Bitmap Format (PPMTranslator) PPMTranslator Фармат бітмапу BeOS (Канвертар PPM)
|
Be Bitmap Format (PPMTranslator) PPMTranslator Фармат бітмапу BeOS (Канвертар PPM)
|
||||||
CMYA 8:8:8:8 32 bits PPMTranslator CMYA 8:8:8:8 32 біт
|
CMYA 8:8:8:8 32 bits PPMTranslator CMYA 8:8:8:8 32 біт
|
||||||
CMYK 8:8:8:8 32 bits PPMTranslator CMYK 8:8:8:8 32 біт
|
CMYK 8:8:8:8 32 bits PPMTranslator CMYK 8:8:8:8 32 біт
|
||||||
|
PPM image translator PPMTranslator Канвертар выяваў PPM
|
||||||
bits/space PPMTranslator бітаў/ліст
|
bits/space PPMTranslator бітаў/ліст
|
||||||
RGB 8:8:8 32 bits big-endian PPMTranslator RGB 8:8:8 32 бітаў (big-endian)
|
RGB 8:8:8 32 bits big-endian PPMTranslator RGB 8:8:8 32 бітаў (big-endian)
|
||||||
RGB 5:6:5 16 bits big-endian PPMTranslator RGB 5:6:5 16 бітаў (big-endian)
|
RGB 5:6:5 16 bits big-endian PPMTranslator RGB 5:6:5 16 бітаў (big-endian)
|
||||||
|
|||||||
@@ -1,4 +1,4 @@
|
|||||||
1 french x-vnd.Haiku-PPMTranslator 2435270880
|
1 french x-vnd.Haiku-PPMTranslator 276252412
|
||||||
PPM Settings PPMMain Réglages PPM
|
PPM Settings PPMMain Réglages PPM
|
||||||
Based on PPMTranslator sample code PPMTranslator Basé sur le code d'exemple du traducteur PPM
|
Based on PPMTranslator sample code PPMTranslator Basé sur le code d'exemple du traducteur PPM
|
||||||
OK PPMMain OK
|
OK PPMMain OK
|
||||||
@@ -9,6 +9,7 @@ RGBA 5:5:5:1 16 bits PPMTranslator RVBA 5:5:5:1 16 bits
|
|||||||
Be Bitmap Format (PPMTranslator) PPMTranslator Format Bitmap Be (Traducteur PPM)
|
Be Bitmap Format (PPMTranslator) PPMTranslator Format Bitmap Be (Traducteur PPM)
|
||||||
CMYA 8:8:8:8 32 bits PPMTranslator CMJA 8:8:8:8 32 bits
|
CMYA 8:8:8:8 32 bits PPMTranslator CMJA 8:8:8:8 32 bits
|
||||||
CMYK 8:8:8:8 32 bits PPMTranslator CMJN 8:8:8:8 32 bits
|
CMYK 8:8:8:8 32 bits PPMTranslator CMJN 8:8:8:8 32 bits
|
||||||
|
PPM image translator PPMTranslator Traducteur d'images PPM
|
||||||
bits/space PPMTranslator bits/espace
|
bits/space PPMTranslator bits/espace
|
||||||
RGB 8:8:8 32 bits big-endian PPMTranslator RVB 8:8:8 32 bits big-endian
|
RGB 8:8:8 32 bits big-endian PPMTranslator RVB 8:8:8 32 bits big-endian
|
||||||
RGB 5:6:5 16 bits big-endian PPMTranslator RVB 5:6:5 16 bits big-endian
|
RGB 5:6:5 16 bits big-endian PPMTranslator RVB 5:6:5 16 bits big-endian
|
||||||
|
|||||||
@@ -1,7 +1,6 @@
|
|||||||
1 belarusian x-vnd.Haiku-RAWTranslator 1938728039
|
1 belarusian x-vnd.Haiku-RAWTranslator 2229230003
|
||||||
RAWTranslator Settings ConfigView Наладкі канвертара RAW
|
RAWTranslator Settings ConfigView Наладкі канвертара RAW
|
||||||
Version %d.%d.%d, %s ConfigView Версія %d.%d.%d, %s
|
Version %d.%d.%d, %s ConfigView Версія %d.%d.%d, %s
|
||||||
RAW Images ConfigView Выявы RAW
|
|
||||||
RAW image translator RAWTranslator Канвертар выяваў RAW
|
RAW image translator RAWTranslator Канвертар выяваў RAW
|
||||||
RAW Settings RAWTranslator main Наладкі RAW
|
RAW Settings RAWTranslator main Наладкі RAW
|
||||||
RAW images RAWTranslator Выявы RAW
|
RAW images RAWTranslator Выявы RAW
|
||||||
|
|||||||
@@ -1,7 +1,6 @@
|
|||||||
1 german x-vnd.Haiku-RAWTranslator 1938728039
|
1 german x-vnd.Haiku-RAWTranslator 2229230003
|
||||||
RAWTranslator Settings ConfigView RAWTranslator-Einstellungen
|
RAWTranslator Settings ConfigView RAWTranslator-Einstellungen
|
||||||
Version %d.%d.%d, %s ConfigView Version %d.%d.%d, %s
|
Version %d.%d.%d, %s ConfigView Version %d.%d.%d, %s
|
||||||
RAW Images ConfigView RAW-Bilder
|
|
||||||
RAW image translator RAWTranslator RAW-Bild-Translator
|
RAW image translator RAWTranslator RAW-Bild-Translator
|
||||||
RAW Settings RAWTranslator main RAW-Einstellungen
|
RAW Settings RAWTranslator main RAW-Einstellungen
|
||||||
RAW images RAWTranslator RAW-Bilder
|
RAW images RAWTranslator RAW-Bilder
|
||||||
|
|||||||
@@ -1,7 +1,6 @@
|
|||||||
1 greek, modern (1453-) x-vnd.Haiku-RAWTranslator 1938728039
|
1 greek, modern (1453-) x-vnd.Haiku-RAWTranslator 2229230003
|
||||||
RAWTranslator Settings ConfigView Ρυθμίσεις μεταφραστή RAW
|
RAWTranslator Settings ConfigView Ρυθμίσεις μεταφραστή RAW
|
||||||
Version %d.%d.%d, %s ConfigView Έκδοση %d.%d.%d, %s
|
Version %d.%d.%d, %s ConfigView Έκδοση %d.%d.%d, %s
|
||||||
RAW Images ConfigView RAW Εικόνες
|
|
||||||
RAW image translator RAWTranslator Μεταφραστής εικόνας RAW
|
RAW image translator RAWTranslator Μεταφραστής εικόνας RAW
|
||||||
RAW Settings RAWTranslator main RAW Ρυθμίσεις
|
RAW Settings RAWTranslator main RAW Ρυθμίσεις
|
||||||
RAW images RAWTranslator RAW εικόνες
|
RAW images RAWTranslator RAW εικόνες
|
||||||
|
|||||||
@@ -1,7 +1,6 @@
|
|||||||
1 finnish x-vnd.Haiku-RAWTranslator 1938728039
|
1 finnish x-vnd.Haiku-RAWTranslator 2229230003
|
||||||
RAWTranslator Settings ConfigView RAW-muunninasetukset
|
RAWTranslator Settings ConfigView RAW-muunninasetukset
|
||||||
Version %d.%d.%d, %s ConfigView Versio %d.%d.%d, %s
|
Version %d.%d.%d, %s ConfigView Versio %d.%d.%d, %s
|
||||||
RAW Images ConfigView RAW-kuvat
|
|
||||||
RAW image translator RAWTranslator RAW-kuvamuunnin
|
RAW image translator RAWTranslator RAW-kuvamuunnin
|
||||||
RAW Settings RAWTranslator main RAW-asetukset
|
RAW Settings RAWTranslator main RAW-asetukset
|
||||||
RAW images RAWTranslator RAW-kuvat
|
RAW images RAWTranslator RAW-kuvat
|
||||||
|
|||||||
@@ -1,9 +1,8 @@
|
|||||||
1 french x-vnd.Haiku-RAWTranslator 1938728039
|
1 french x-vnd.Haiku-RAWTranslator 2229230003
|
||||||
RAWTranslator Settings ConfigView Réglages du traducteur RAW
|
RAWTranslator Settings ConfigView Réglages du traducteur RAW
|
||||||
Version %d.%d.%d, %s ConfigView Version %d.%d.%d, %s
|
Version %d.%d.%d, %s ConfigView Version %d.%d.%d, %s
|
||||||
RAW Images ConfigView Images RAW
|
|
||||||
RAW image translator RAWTranslator Traducteur d'images RAW
|
RAW image translator RAWTranslator Traducteur d'images RAW
|
||||||
RAW Settings RAWTranslator main Réglages RAW
|
RAW Settings RAWTranslator main Réglages RAW
|
||||||
RAW images RAWTranslator Images RAW
|
RAW images RAWTranslator Images RAW
|
||||||
%s RAW image RAWTranslator Parameter (%s) is the name of the manufacturer (like 'Canon') Image %s RAW
|
%s RAW image RAWTranslator Parameter (%s) is the name of the manufacturer (like 'Canon') Image brute %s
|
||||||
Based on Dave Coffin's dcraw 8.63 ConfigView Basé sur dcraw 8.63 de Dave Coffin
|
Based on Dave Coffin's dcraw 8.63 ConfigView Basé sur dcraw 8.63 de Dave Coffin
|
||||||
|
|||||||
@@ -1,7 +1,6 @@
|
|||||||
1 hindi x-vnd.Haiku-RAWTranslator 1938728039
|
1 hindi x-vnd.Haiku-RAWTranslator 2229230003
|
||||||
RAWTranslator Settings ConfigView RAWTranslator की सेत्तिंग्स
|
RAWTranslator Settings ConfigView RAWTranslator की सेत्तिंग्स
|
||||||
Version %d.%d.%d, %s ConfigView संस्करण %d.%d.%d, %s
|
Version %d.%d.%d, %s ConfigView संस्करण %d.%d.%d, %s
|
||||||
RAW Images ConfigView RAW चित्र
|
|
||||||
RAW image translator RAWTranslator RAW चित्र का अनुवादक
|
RAW image translator RAWTranslator RAW चित्र का अनुवादक
|
||||||
RAW Settings RAWTranslator main RAW की सेत्तिंग्स
|
RAW Settings RAWTranslator main RAW की सेत्तिंग्स
|
||||||
RAW images RAWTranslator RAW चित्र
|
RAW images RAWTranslator RAW चित्र
|
||||||
|
|||||||
@@ -1,7 +1,6 @@
|
|||||||
1 japanese x-vnd.Haiku-RAWTranslator 1938728039
|
1 japanese x-vnd.Haiku-RAWTranslator 2229230003
|
||||||
RAWTranslator Settings ConfigView RAW トランスレーター設定
|
RAWTranslator Settings ConfigView RAW トランスレーター設定
|
||||||
Version %d.%d.%d, %s ConfigView バージョン %d.%d.%d, %s
|
Version %d.%d.%d, %s ConfigView バージョン %d.%d.%d, %s
|
||||||
RAW Images ConfigView RAW イメージ
|
|
||||||
RAW image translator RAWTranslator RAW イメージトランスレーター
|
RAW image translator RAWTranslator RAW イメージトランスレーター
|
||||||
RAW Settings RAWTranslator main RAW 設定
|
RAW Settings RAWTranslator main RAW 設定
|
||||||
RAW images RAWTranslator RAW イメージ
|
RAW images RAWTranslator RAW イメージ
|
||||||
|
|||||||
@@ -1,7 +1,6 @@
|
|||||||
1 lithuanian x-vnd.Haiku-RAWTranslator 1938728039
|
1 lithuanian x-vnd.Haiku-RAWTranslator 2229230003
|
||||||
RAWTranslator Settings ConfigView RAW keitiklio nuostatos
|
RAWTranslator Settings ConfigView RAW keitiklio nuostatos
|
||||||
Version %d.%d.%d, %s ConfigView Versija %d.%d.%d, %s
|
Version %d.%d.%d, %s ConfigView Versija %d.%d.%d, %s
|
||||||
RAW Images ConfigView RAW paveikslai
|
|
||||||
RAW image translator RAWTranslator RAW paveikslų keitiklis
|
RAW image translator RAWTranslator RAW paveikslų keitiklis
|
||||||
RAW Settings RAWTranslator main RAW nuostatos
|
RAW Settings RAWTranslator main RAW nuostatos
|
||||||
RAW images RAWTranslator RAW paveikslai
|
RAW images RAWTranslator RAW paveikslai
|
||||||
|
|||||||
@@ -1,7 +1,6 @@
|
|||||||
1 bokmål, norwegian; norwegian bokmål x-vnd.Haiku-RAWTranslator 1938728039
|
1 bokmål, norwegian; norwegian bokmål x-vnd.Haiku-RAWTranslator 2229230003
|
||||||
RAWTranslator Settings ConfigView RAW-oversetterinnstillinger
|
RAWTranslator Settings ConfigView RAW-oversetterinnstillinger
|
||||||
Version %d.%d.%d, %s ConfigView Versjon %d.%d.%d, %s
|
Version %d.%d.%d, %s ConfigView Versjon %d.%d.%d, %s
|
||||||
RAW Images ConfigView RAW-bilder
|
|
||||||
RAW image translator RAWTranslator RAW-bildeoversetter
|
RAW image translator RAWTranslator RAW-bildeoversetter
|
||||||
RAW Settings RAWTranslator main RAW-innstillinger
|
RAW Settings RAWTranslator main RAW-innstillinger
|
||||||
RAW images RAWTranslator RAW-bilder
|
RAW images RAWTranslator RAW-bilder
|
||||||
|
|||||||
@@ -1,7 +1,6 @@
|
|||||||
1 dutch; flemish x-vnd.Haiku-RAWTranslator 1938728039
|
1 dutch; flemish x-vnd.Haiku-RAWTranslator 2229230003
|
||||||
RAWTranslator Settings ConfigView RAWTranslator Instellingen
|
RAWTranslator Settings ConfigView RAWTranslator Instellingen
|
||||||
Version %d.%d.%d, %s ConfigView Versie %d.%d.%d, %s
|
Version %d.%d.%d, %s ConfigView Versie %d.%d.%d, %s
|
||||||
RAW Images ConfigView RAW Afbeeldingen
|
|
||||||
RAW image translator RAWTranslator RAW afbeelding vertaler
|
RAW image translator RAWTranslator RAW afbeelding vertaler
|
||||||
RAW Settings RAWTranslator main RAW Instellingen
|
RAW Settings RAWTranslator main RAW Instellingen
|
||||||
RAW images RAWTranslator RAW afbeeldingen
|
RAW images RAWTranslator RAW afbeeldingen
|
||||||
|
|||||||
@@ -1,7 +1,6 @@
|
|||||||
1 polish x-vnd.Haiku-RAWTranslator 1938728039
|
1 polish x-vnd.Haiku-RAWTranslator 2229230003
|
||||||
RAWTranslator Settings ConfigView Ustawienia translatora RAW
|
RAWTranslator Settings ConfigView Ustawienia translatora RAW
|
||||||
Version %d.%d.%d, %s ConfigView Wersja %d.%d.%d, %s
|
Version %d.%d.%d, %s ConfigView Wersja %d.%d.%d, %s
|
||||||
RAW Images ConfigView Obrazy RAW
|
|
||||||
RAW image translator RAWTranslator Translator obrazów RAW
|
RAW image translator RAWTranslator Translator obrazów RAW
|
||||||
RAW Settings RAWTranslator main Ustawienia RAW
|
RAW Settings RAWTranslator main Ustawienia RAW
|
||||||
RAW images RAWTranslator Obrazy RAW
|
RAW images RAWTranslator Obrazy RAW
|
||||||
|
|||||||
@@ -1,7 +1,6 @@
|
|||||||
1 russian x-vnd.Haiku-RAWTranslator 1938728039
|
1 russian x-vnd.Haiku-RAWTranslator 2229230003
|
||||||
RAWTranslator Settings ConfigView Настройки RAW транслятора
|
RAWTranslator Settings ConfigView Настройки RAW транслятора
|
||||||
Version %d.%d.%d, %s ConfigView Версия %d.%d.%d, %s
|
Version %d.%d.%d, %s ConfigView Версия %d.%d.%d, %s
|
||||||
RAW Images ConfigView Транслятор RAW изображений
|
|
||||||
RAW image translator RAWTranslator Транслятор RAW изображений
|
RAW image translator RAWTranslator Транслятор RAW изображений
|
||||||
RAW Settings RAWTranslator main Настройки RAW транслятора
|
RAW Settings RAWTranslator main Настройки RAW транслятора
|
||||||
RAW images RAWTranslator RAW изображения
|
RAW images RAWTranslator RAW изображения
|
||||||
|
|||||||
@@ -1,7 +1,6 @@
|
|||||||
1 slovak x-vnd.Haiku-RAWTranslator 1938728039
|
1 slovak x-vnd.Haiku-RAWTranslator 2229230003
|
||||||
RAWTranslator Settings ConfigView Nastavenia Prekladača RAW
|
RAWTranslator Settings ConfigView Nastavenia Prekladača RAW
|
||||||
Version %d.%d.%d, %s ConfigView Verzia %d.%d.%d, %s
|
Version %d.%d.%d, %s ConfigView Verzia %d.%d.%d, %s
|
||||||
RAW Images ConfigView Obrázky RAW
|
|
||||||
RAW image translator RAWTranslator Prekladač obrázkov RAW
|
RAW image translator RAWTranslator Prekladač obrázkov RAW
|
||||||
RAW Settings RAWTranslator main Nastavenia RAW
|
RAW Settings RAWTranslator main Nastavenia RAW
|
||||||
RAW images RAWTranslator Obrázky RAW
|
RAW images RAWTranslator Obrázky RAW
|
||||||
|
|||||||
@@ -1,7 +1,6 @@
|
|||||||
1 swedish x-vnd.Haiku-RAWTranslator 1938728039
|
1 swedish x-vnd.Haiku-RAWTranslator 2229230003
|
||||||
RAWTranslator Settings ConfigView RAW översättare inställningar
|
RAWTranslator Settings ConfigView RAW översättare inställningar
|
||||||
Version %d.%d.%d, %s ConfigView Version %d.%d.%d, %s
|
Version %d.%d.%d, %s ConfigView Version %d.%d.%d, %s
|
||||||
RAW Images ConfigView RAW bilder
|
|
||||||
RAW image translator RAWTranslator RAW bildöversättare
|
RAW image translator RAWTranslator RAW bildöversättare
|
||||||
RAW Settings RAWTranslator main RAW inställningar
|
RAW Settings RAWTranslator main RAW inställningar
|
||||||
RAW images RAWTranslator RAW bilder
|
RAW images RAWTranslator RAW bilder
|
||||||
|
|||||||
@@ -1,7 +1,6 @@
|
|||||||
1 ukrainian x-vnd.Haiku-RAWTranslator 1938728039
|
1 ukrainian x-vnd.Haiku-RAWTranslator 2229230003
|
||||||
RAWTranslator Settings ConfigView Настройки Перетворювача RAW
|
RAWTranslator Settings ConfigView Настройки Перетворювача RAW
|
||||||
Version %d.%d.%d, %s ConfigView Версія %d.%d.%d, %s
|
Version %d.%d.%d, %s ConfigView Версія %d.%d.%d, %s
|
||||||
RAW Images ConfigView Зображення RAW
|
|
||||||
RAW image translator RAWTranslator Перетворювач зображень RAW
|
RAW image translator RAWTranslator Перетворювач зображень RAW
|
||||||
RAW Settings RAWTranslator main Настройки RAW
|
RAW Settings RAWTranslator main Настройки RAW
|
||||||
RAW images RAWTranslator Зображення RAW
|
RAW images RAWTranslator Зображення RAW
|
||||||
|
|||||||
@@ -1,7 +1,6 @@
|
|||||||
1 english x-vnd.Haiku-RAWTranslator 1938728039
|
1 english x-vnd.Haiku-RAWTranslator 2229230003
|
||||||
RAWTranslator Settings ConfigView RAW 转换器设置
|
RAWTranslator Settings ConfigView RAW 转换器设置
|
||||||
Version %d.%d.%d, %s ConfigView 版本 %d.%d.%d, %s
|
Version %d.%d.%d, %s ConfigView 版本 %d.%d.%d, %s
|
||||||
RAW Images ConfigView RAW 图像
|
|
||||||
RAW image translator RAWTranslator RAW 图像转换器
|
RAW image translator RAWTranslator RAW 图像转换器
|
||||||
RAW Settings RAWTranslator main RAW 设置
|
RAW Settings RAWTranslator main RAW 设置
|
||||||
RAW images RAWTranslator RAW 图像
|
RAW images RAWTranslator RAW 图像
|
||||||
|
|||||||
@@ -1,7 +1,9 @@
|
|||||||
1 belarusian x-vnd.Haiku-RTFTranslator 3736645044
|
1 belarusian x-vnd.Haiku-RTFTranslator 1620328626
|
||||||
Version %d.%d.%d, %s ConfigView Версія %d.%d.%d, %s
|
Version %d.%d.%d, %s ConfigView Версія %d.%d.%d, %s
|
||||||
RTF text files RTFTranslator Файлы тэксту ў RTF
|
RTF text files RTFTranslator Файлы тэксту ў RTF
|
||||||
RTF-Translator Settings ConfigView Наладкі канвертара RTF
|
RTF-Translator Settings ConfigView Наладкі канвертара RTF
|
||||||
|
Rich Text Format (RTF) translator ConfigView Канвертар Фарматаванага Тэксту (RTF)
|
||||||
RTF Settings main Наладки RTF
|
RTF Settings main Наладки RTF
|
||||||
RichTextFormat file RTFTranslator Файл RichTextFormat
|
RichTextFormat file RTFTranslator Файл RichTextFormat
|
||||||
|
Rich Text Format translator RTFTranslator Канвертар Фарматаванага Тэксту (RTF)
|
||||||
Rich Text Format translator v%d.%d.%d %s RTFTranslator Канвертар Багата Фарматаванага Тэксту (RTF) версія %d.%d.%d %s
|
Rich Text Format translator v%d.%d.%d %s RTFTranslator Канвертар Багата Фарматаванага Тэксту (RTF) версія %d.%d.%d %s
|
||||||
|
|||||||
@@ -1,7 +1,9 @@
|
|||||||
1 french x-vnd.Haiku-RTFTranslator 3736645044
|
1 french x-vnd.Haiku-RTFTranslator 1620328626
|
||||||
Version %d.%d.%d, %s ConfigView Version %d.%d.%d, %s
|
Version %d.%d.%d, %s ConfigView Version %d.%d.%d, %s
|
||||||
RTF text files RTFTranslator Fichiers textes RTF
|
RTF text files RTFTranslator Fichiers textes RTF
|
||||||
RTF-Translator Settings ConfigView Réglages du traducteur RTF
|
RTF-Translator Settings ConfigView Réglages du traducteur RTF
|
||||||
|
Rich Text Format (RTF) translator ConfigView Traducteur du Format Texte enRichi (RTF)
|
||||||
RTF Settings main Réglages RTF
|
RTF Settings main Réglages RTF
|
||||||
RichTextFormat file RTFTranslator Fichier Format Texte enRichi
|
RichTextFormat file RTFTranslator Fichier Format Texte enRichi
|
||||||
|
Rich Text Format translator RTFTranslator Traducteur du Format Texte enRichi
|
||||||
Rich Text Format translator v%d.%d.%d %s RTFTranslator Traducteur du Format Texte enRichi v%d.%d.%d %s
|
Rich Text Format translator v%d.%d.%d %s RTFTranslator Traducteur du Format Texte enRichi v%d.%d.%d %s
|
||||||
|
|||||||
@@ -1,6 +1,8 @@
|
|||||||
1 belarusian x-vnd.Haiku-STXTTranslator 3302294301
|
1 belarusian x-vnd.Haiku-STXTTranslator 274886668
|
||||||
Be styled text file STXTTranslator Тэкставы файл са стылямі (Be styled)
|
Be styled text file STXTTranslator Тэкставы файл са стылямі (Be styled)
|
||||||
Plain text file STXTTranslator Файл з простым тэкстам
|
Plain text file STXTTranslator Файл з простым тэкстам
|
||||||
STXTTranslator Settings STXTTranslator Наладкі канвертара STXT
|
STXTTranslator Settings STXTTranslator Наладкі канвертара STXT
|
||||||
|
StyledEdit file translator STXTView Канвртар файлаў StyledEdit
|
||||||
StyledEdit files STXTTranslator Файлы StyledEdit
|
StyledEdit files STXTTranslator Файлы StyledEdit
|
||||||
|
StyledEdit file translator STXTTranslator Канвeртар файлаў StyledEdit
|
||||||
STXT Settings STXTMain Наладкі STXT
|
STXT Settings STXTMain Наладкі STXT
|
||||||
|
|||||||
@@ -1,6 +1,8 @@
|
|||||||
1 french x-vnd.Haiku-STXTTranslator 3302294301
|
1 french x-vnd.Haiku-STXTTranslator 274886668
|
||||||
Be styled text file STXTTranslator Fichier texte stylé Be
|
Be styled text file STXTTranslator Fichier texte stylé Be
|
||||||
Plain text file STXTTranslator Fichier de texte brut
|
Plain text file STXTTranslator Fichier de texte brut
|
||||||
STXTTranslator Settings STXTTranslator Réglages du traducteur STXT
|
STXTTranslator Settings STXTTranslator Réglages du traducteur STXT
|
||||||
|
StyledEdit file translator STXTView Traducteur de fichiers texte stylé
|
||||||
StyledEdit files STXTTranslator Fichiers texte stylé
|
StyledEdit files STXTTranslator Fichiers texte stylé
|
||||||
|
StyledEdit file translator STXTTranslator Traducteur de fichiers texte stylé
|
||||||
STXT Settings STXTMain Réglages STXT
|
STXT Settings STXTMain Réglages STXT
|
||||||
|
|||||||
@@ -1,8 +1,7 @@
|
|||||||
1 belarusian x-vnd.Haiku-WebPTranslator 3630570850
|
1 belarusian x-vnd.Haiku-WebPTranslator 2427600890
|
||||||
Compression method: ConfigView Метад сціску:
|
Compression method: ConfigView Метад сціску:
|
||||||
Based on libwebp v0.1, ConfigView Грунтуецца на матэрыялах libwebp v0.1,
|
Based on libwebp v0.1, ConfigView Грунтуецца на матэрыялах libwebp v0.1,
|
||||||
Preset ConfigView Прадвызначаныя
|
Preset ConfigView Прадвызначаныя
|
||||||
WebP Images ConfigView Выявы WebP
|
|
||||||
WebP images WebPTranslator Выявы WebP
|
WebP images WebPTranslator Выявы WebP
|
||||||
WebPTranslator Settings ConfigView Наладкі канвертара выяваў WebP
|
WebPTranslator Settings ConfigView Наладкі канвертара выяваў WebP
|
||||||
Output quality: ConfigView Выходная якасць:
|
Output quality: ConfigView Выходная якасць:
|
||||||
|
|||||||
@@ -1,8 +1,7 @@
|
|||||||
1 german x-vnd.Haiku-WebPTranslator 3630570850
|
1 german x-vnd.Haiku-WebPTranslator 2427600890
|
||||||
Compression method: ConfigView Komprimierungsart:
|
Compression method: ConfigView Komprimierungsart:
|
||||||
Based on libwebp v0.1, ConfigView Basiert auf libwebp v0.1
|
Based on libwebp v0.1, ConfigView Basiert auf libwebp v0.1
|
||||||
Preset ConfigView Voreinstellung
|
Preset ConfigView Voreinstellung
|
||||||
WebP Images ConfigView WebP-Bilder
|
|
||||||
WebP images WebPTranslator WebP-Bilder
|
WebP images WebPTranslator WebP-Bilder
|
||||||
WebPTranslator Settings ConfigView WebPTranslator-Einstellungen
|
WebPTranslator Settings ConfigView WebPTranslator-Einstellungen
|
||||||
Output quality: ConfigView Ausgabequalität:
|
Output quality: ConfigView Ausgabequalität:
|
||||||
|
|||||||
@@ -1,8 +1,7 @@
|
|||||||
1 greek, modern (1453-) x-vnd.Haiku-WebPTranslator 3630570850
|
1 greek, modern (1453-) x-vnd.Haiku-WebPTranslator 2427600890
|
||||||
Compression method: ConfigView Μέθοδος συμπίεσης:
|
Compression method: ConfigView Μέθοδος συμπίεσης:
|
||||||
Based on libwebp v0.1, ConfigView Βασισμένο στο libwebp v0.1,
|
Based on libwebp v0.1, ConfigView Βασισμένο στο libwebp v0.1,
|
||||||
Preset ConfigView Προεπιλογή
|
Preset ConfigView Προεπιλογή
|
||||||
WebP Images ConfigView Εικόνες WebP
|
|
||||||
WebP images WebPTranslator Εικόνες WebP
|
WebP images WebPTranslator Εικόνες WebP
|
||||||
WebPTranslator Settings ConfigView Ρυθμίσεις μεταφραστή WebP
|
WebPTranslator Settings ConfigView Ρυθμίσεις μεταφραστή WebP
|
||||||
Output quality: ConfigView Ποιότητα εξόδου:
|
Output quality: ConfigView Ποιότητα εξόδου:
|
||||||
|
|||||||
@@ -1,8 +1,7 @@
|
|||||||
1 finnish x-vnd.Haiku-WebPTranslator 3630570850
|
1 finnish x-vnd.Haiku-WebPTranslator 2427600890
|
||||||
Compression method: ConfigView Tiivistysmenetelmä
|
Compression method: ConfigView Tiivistysmenetelmä
|
||||||
Based on libwebp v0.1, ConfigView Perustuu kirjastoon libwebp v0.1,
|
Based on libwebp v0.1, ConfigView Perustuu kirjastoon libwebp v0.1,
|
||||||
Preset ConfigView Esiasetus
|
Preset ConfigView Esiasetus
|
||||||
WebP Images ConfigView WebP-kuvat
|
|
||||||
WebP images WebPTranslator WebP-kuvat
|
WebP images WebPTranslator WebP-kuvat
|
||||||
WebPTranslator Settings ConfigView WebP-muunninasetukset
|
WebPTranslator Settings ConfigView WebP-muunninasetukset
|
||||||
Output quality: ConfigView Tulostuslaatu:
|
Output quality: ConfigView Tulostuslaatu:
|
||||||
|
|||||||
@@ -1,8 +1,7 @@
|
|||||||
1 french x-vnd.Haiku-WebPTranslator 3630570850
|
1 french x-vnd.Haiku-WebPTranslator 2427600890
|
||||||
Compression method: ConfigView Méthode de compression :
|
Compression method: ConfigView Méthode de compression :
|
||||||
Based on libwebp v0.1, ConfigView Basé sur libwebp v0.1,
|
Based on libwebp v0.1, ConfigView Basé sur libwebp v0.1,
|
||||||
Preset ConfigView Préréglage
|
Preset ConfigView Préréglage
|
||||||
WebP Images ConfigView Images WebP
|
|
||||||
WebP images WebPTranslator Images WebP
|
WebP images WebPTranslator Images WebP
|
||||||
WebPTranslator Settings ConfigView Réglages du traducteur WebP
|
WebPTranslator Settings ConfigView Réglages du traducteur WebP
|
||||||
Output quality: ConfigView Qualité de sortie :
|
Output quality: ConfigView Qualité de sortie :
|
||||||
|
|||||||
@@ -1,8 +1,7 @@
|
|||||||
1 hindi x-vnd.Haiku-WebPTranslator 3630570850
|
1 hindi x-vnd.Haiku-WebPTranslator 2427600890
|
||||||
Compression method: ConfigView काम्प्रेस्शन का तरीका:
|
Compression method: ConfigView काम्प्रेस्शन का तरीका:
|
||||||
Based on libwebp v0.1, ConfigView libwebp v0.1 पर आधारित,
|
Based on libwebp v0.1, ConfigView libwebp v0.1 पर आधारित,
|
||||||
Preset ConfigView प्रीसेट
|
Preset ConfigView प्रीसेट
|
||||||
WebP Images ConfigView WebP चित्र
|
|
||||||
WebP images WebPTranslator WebP चित्र
|
WebP images WebPTranslator WebP चित्र
|
||||||
WebPTranslator Settings ConfigView WebP ट्रांसलेटर सेतिनग्स
|
WebPTranslator Settings ConfigView WebP ट्रांसलेटर सेतिनग्स
|
||||||
Output quality: ConfigView आउटपुट गुणवत्ता:
|
Output quality: ConfigView आउटपुट गुणवत्ता:
|
||||||
|
|||||||
@@ -1,8 +1,7 @@
|
|||||||
1 japanese x-vnd.Haiku-WebPTranslator 3630570850
|
1 japanese x-vnd.Haiku-WebPTranslator 2427600890
|
||||||
Compression method: ConfigView 圧縮方法:
|
Compression method: ConfigView 圧縮方法:
|
||||||
Based on libwebp v0.1, ConfigView libwebp v0.1 に基づく、
|
Based on libwebp v0.1, ConfigView libwebp v0.1 に基づく、
|
||||||
Preset ConfigView プリセット:
|
Preset ConfigView プリセット:
|
||||||
WebP Images ConfigView WebP イメージ
|
|
||||||
WebP images WebPTranslator WebP イメージ
|
WebP images WebPTranslator WebP イメージ
|
||||||
WebPTranslator Settings ConfigView WebP トランスレーター設定
|
WebPTranslator Settings ConfigView WebP トランスレーター設定
|
||||||
Output quality: ConfigView 出力品質:
|
Output quality: ConfigView 出力品質:
|
||||||
|
|||||||
@@ -1,8 +1,7 @@
|
|||||||
1 lithuanian x-vnd.Haiku-WebPTranslator 3630570850
|
1 lithuanian x-vnd.Haiku-WebPTranslator 2427600890
|
||||||
Compression method: ConfigView Glaudinimo būdas:
|
Compression method: ConfigView Glaudinimo būdas:
|
||||||
Based on libwebp v0.1, ConfigView Sukurta „libwebp v0.1“ pagrindu,
|
Based on libwebp v0.1, ConfigView Sukurta „libwebp v0.1“ pagrindu,
|
||||||
Preset ConfigView Ruošinys
|
Preset ConfigView Ruošinys
|
||||||
WebP Images ConfigView WebP paveikslai
|
|
||||||
WebP images WebPTranslator WebP paveikslai
|
WebP images WebPTranslator WebP paveikslai
|
||||||
WebPTranslator Settings ConfigView WebP keitiklio nuostatos
|
WebPTranslator Settings ConfigView WebP keitiklio nuostatos
|
||||||
Output quality: ConfigView Išvesties kokybė:
|
Output quality: ConfigView Išvesties kokybė:
|
||||||
|
|||||||
@@ -1,8 +1,7 @@
|
|||||||
1 bokmål, norwegian; norwegian bokmål x-vnd.Haiku-WebPTranslator 3630570850
|
1 bokmål, norwegian; norwegian bokmål x-vnd.Haiku-WebPTranslator 2427600890
|
||||||
Compression method: ConfigView Kompresjonsmetode:
|
Compression method: ConfigView Kompresjonsmetode:
|
||||||
Based on libwebp v0.1, ConfigView Basert på libwebp v0.1,
|
Based on libwebp v0.1, ConfigView Basert på libwebp v0.1,
|
||||||
Preset ConfigView Forhåndsinstilling
|
Preset ConfigView Forhåndsinstilling
|
||||||
WebP Images ConfigView WebP-bilder
|
|
||||||
WebP images WebPTranslator WebP-bilder
|
WebP images WebPTranslator WebP-bilder
|
||||||
WebPTranslator Settings ConfigView WebP-oversetterinnstillinger
|
WebPTranslator Settings ConfigView WebP-oversetterinnstillinger
|
||||||
Output quality: ConfigView Output kvalitet:
|
Output quality: ConfigView Output kvalitet:
|
||||||
|
|||||||
@@ -1,8 +1,7 @@
|
|||||||
1 dutch; flemish x-vnd.Haiku-WebPTranslator 3630570850
|
1 dutch; flemish x-vnd.Haiku-WebPTranslator 2427600890
|
||||||
Compression method: ConfigView Compressie methode:
|
Compression method: ConfigView Compressie methode:
|
||||||
Based on libwebp v0.1, ConfigView Gebaseerd op libwebp v0.1,
|
Based on libwebp v0.1, ConfigView Gebaseerd op libwebp v0.1,
|
||||||
Preset ConfigView Voorinstelling
|
Preset ConfigView Voorinstelling
|
||||||
WebP Images ConfigView WebP Afbeeldingen
|
|
||||||
WebP images WebPTranslator WebP afbeeldingen
|
WebP images WebPTranslator WebP afbeeldingen
|
||||||
WebPTranslator Settings ConfigView WebPVertaler Instellingen
|
WebPTranslator Settings ConfigView WebPVertaler Instellingen
|
||||||
Output quality: ConfigView Uitvoerkwaliteit:
|
Output quality: ConfigView Uitvoerkwaliteit:
|
||||||
|
|||||||
@@ -1,8 +1,7 @@
|
|||||||
1 polish x-vnd.Haiku-WebPTranslator 3630570850
|
1 polish x-vnd.Haiku-WebPTranslator 2427600890
|
||||||
Compression method: ConfigView Metoda kompresji:
|
Compression method: ConfigView Metoda kompresji:
|
||||||
Based on libwebp v0.1, ConfigView Bazuje na libwebp v0.1,
|
Based on libwebp v0.1, ConfigView Bazuje na libwebp v0.1,
|
||||||
Preset ConfigView Ustawienie
|
Preset ConfigView Ustawienie
|
||||||
WebP Images ConfigView Obrazki WebP
|
|
||||||
WebP images WebPTranslator Obrazki WebP
|
WebP images WebPTranslator Obrazki WebP
|
||||||
WebPTranslator Settings ConfigView Ustawienia translatora WebP
|
WebPTranslator Settings ConfigView Ustawienia translatora WebP
|
||||||
Output quality: ConfigView Jakość wyjściowa:
|
Output quality: ConfigView Jakość wyjściowa:
|
||||||
|
|||||||
@@ -1,5 +1,4 @@
|
|||||||
1 romanian x-vnd.Haiku-WebPTranslator 1423533669
|
1 romanian x-vnd.Haiku-WebPTranslator 220563709
|
||||||
WebP Images ConfigView Imagini WebP
|
|
||||||
WebP images WebPTranslator Imagini WebP
|
WebP images WebPTranslator Imagini WebP
|
||||||
WebPTranslator Settings ConfigView Configurări TraducătorWebP
|
WebPTranslator Settings ConfigView Configurări TraducătorWebP
|
||||||
WebP Settings main Configurări WebP
|
WebP Settings main Configurări WebP
|
||||||
|
|||||||
@@ -1,8 +1,7 @@
|
|||||||
1 russian x-vnd.Haiku-WebPTranslator 3630570850
|
1 russian x-vnd.Haiku-WebPTranslator 2427600890
|
||||||
Compression method: ConfigView Метод сжатия
|
Compression method: ConfigView Метод сжатия
|
||||||
Based on libwebp v0.1, ConfigView Основано на libwebp v0.1,
|
Based on libwebp v0.1, ConfigView Основано на libwebp v0.1,
|
||||||
Preset ConfigView Пресет
|
Preset ConfigView Пресет
|
||||||
WebP Images ConfigView Транслятор WebP изображений
|
|
||||||
WebP images WebPTranslator WebP изображения
|
WebP images WebPTranslator WebP изображения
|
||||||
WebPTranslator Settings ConfigView Настройки WebP транслятора
|
WebPTranslator Settings ConfigView Настройки WebP транслятора
|
||||||
Output quality: ConfigView Качество вывода:
|
Output quality: ConfigView Качество вывода:
|
||||||
|
|||||||
@@ -1,8 +1,7 @@
|
|||||||
1 slovak x-vnd.Haiku-WebPTranslator 3630570850
|
1 slovak x-vnd.Haiku-WebPTranslator 2427600890
|
||||||
Compression method: ConfigView Spôsob kompresie:
|
Compression method: ConfigView Spôsob kompresie:
|
||||||
Based on libwebp v0.1, ConfigView Založené na libwebp v0.1,
|
Based on libwebp v0.1, ConfigView Založené na libwebp v0.1,
|
||||||
Preset ConfigView Predvoľby
|
Preset ConfigView Predvoľby
|
||||||
WebP Images ConfigView Obrázky WebP
|
|
||||||
WebP images WebPTranslator Obrázky WebP
|
WebP images WebPTranslator Obrázky WebP
|
||||||
WebPTranslator Settings ConfigView Nastavenie WebPTranslator
|
WebPTranslator Settings ConfigView Nastavenie WebPTranslator
|
||||||
Output quality: ConfigView Kvalita výstupu:
|
Output quality: ConfigView Kvalita výstupu:
|
||||||
|
|||||||
@@ -1,8 +1,7 @@
|
|||||||
1 swedish x-vnd.Haiku-WebPTranslator 3630570850
|
1 swedish x-vnd.Haiku-WebPTranslator 2427600890
|
||||||
Compression method: ConfigView Komprimeringsmetod
|
Compression method: ConfigView Komprimeringsmetod
|
||||||
Based on libwebp v0.1, ConfigView Baserat på libwebp v0.1,
|
Based on libwebp v0.1, ConfigView Baserat på libwebp v0.1,
|
||||||
Preset ConfigView Förval
|
Preset ConfigView Förval
|
||||||
WebP Images ConfigView WebP bilder
|
|
||||||
WebP images WebPTranslator WebP bilder
|
WebP images WebPTranslator WebP bilder
|
||||||
WebPTranslator Settings ConfigView WebP översättningsinställningar
|
WebPTranslator Settings ConfigView WebP översättningsinställningar
|
||||||
Output quality: ConfigView Utdatakvalité
|
Output quality: ConfigView Utdatakvalité
|
||||||
|
|||||||
@@ -1,8 +1,7 @@
|
|||||||
1 ukrainian x-vnd.Haiku-WebPTranslator 3630570850
|
1 ukrainian x-vnd.Haiku-WebPTranslator 2427600890
|
||||||
Compression method: ConfigView Метод стискання
|
Compression method: ConfigView Метод стискання
|
||||||
Based on libwebp v0.1, ConfigView На основі libwebp v0.1,
|
Based on libwebp v0.1, ConfigView На основі libwebp v0.1,
|
||||||
Preset ConfigView Набір параметрів
|
Preset ConfigView Набір параметрів
|
||||||
WebP Images ConfigView Зображення WebP
|
|
||||||
WebP images WebPTranslator Зображення WebP
|
WebP images WebPTranslator Зображення WebP
|
||||||
WebPTranslator Settings ConfigView Настройки перетворювача WebP
|
WebPTranslator Settings ConfigView Настройки перетворювача WebP
|
||||||
Output quality: ConfigView Якість виведення
|
Output quality: ConfigView Якість виведення
|
||||||
|
|||||||
@@ -1,8 +1,7 @@
|
|||||||
1 english x-vnd.Haiku-WebPTranslator 3630570850
|
1 english x-vnd.Haiku-WebPTranslator 2427600890
|
||||||
Compression method: ConfigView 压缩方法:
|
Compression method: ConfigView 压缩方法:
|
||||||
Based on libwebp v0.1, ConfigView 基于 libwebp v0.1,
|
Based on libwebp v0.1, ConfigView 基于 libwebp v0.1,
|
||||||
Preset ConfigView 预设
|
Preset ConfigView 预设
|
||||||
WebP Images ConfigView WebP 图像
|
|
||||||
WebP images WebPTranslator WebP 图像
|
WebP images WebPTranslator WebP 图像
|
||||||
WebPTranslator Settings ConfigView WebP 转换器设置
|
WebPTranslator Settings ConfigView WebP 转换器设置
|
||||||
Output quality: ConfigView 输出质量:
|
Output quality: ConfigView 输出质量:
|
||||||
|
|||||||
@@ -1,4 +1,4 @@
|
|||||||
1 french x-vnd.Haiku-CodyCam 2499223827
|
1 french x-vnd.Haiku-CodyCam 2416864674
|
||||||
Capturing Image… VideoConsumer.cpp Capture d'une image…
|
Capturing Image… VideoConsumer.cpp Capture d'une image…
|
||||||
Every 30 seconds CodyCam Toutes les 30 secondes
|
Every 30 seconds CodyCam Toutes les 30 secondes
|
||||||
File name: CodyCam Nom du fichier :
|
File name: CodyCam Nom du fichier :
|
||||||
@@ -85,6 +85,7 @@ Cannot find the media roster CodyCam Impossible de trouver le diagramme des mé
|
|||||||
Every 4 hours CodyCam Toutes les 4 heures
|
Every 4 hours CodyCam Toutes les 4 heures
|
||||||
FTP CodyCam FTP
|
FTP CodyCam FTP
|
||||||
File transmission failed VideoConsumer.cpp Erreur dans la transmission du fichier
|
File transmission failed VideoConsumer.cpp Erreur dans la transmission du fichier
|
||||||
|
Cannot seek time source! CodyCam Impossible de positionner la référence de temps !
|
||||||
File CodyCam Fichier
|
File CodyCam Fichier
|
||||||
Image Format Menu CodyCam Menu de formats d'images
|
Image Format Menu CodyCam Menu de formats d'images
|
||||||
Every 30 minutes CodyCam Toutes les 30 minutes
|
Every 30 minutes CodyCam Toutes les 30 minutes
|
||||||
|
|||||||
@@ -1,4 +1,4 @@
|
|||||||
1 french x-vnd.Haiku-Devices 2511616912
|
1 french x-vnd.Haiku-Devices 865240481
|
||||||
Manufacturer DeviceSCSI Fabricant
|
Manufacturer DeviceSCSI Fabricant
|
||||||
Order by: DevicesView Trier par :
|
Order by: DevicesView Trier par :
|
||||||
ACPI controller Device Contrôleur ACPI
|
ACPI controller Device Contrôleur ACPI
|
||||||
@@ -18,6 +18,7 @@ Detailed DevicesView Détail
|
|||||||
Category DevicesView Catégorie
|
Category DevicesView Catégorie
|
||||||
Quit DevicesView Quitter
|
Quit DevicesView Quitter
|
||||||
Device paths Device Chemin des périphériques
|
Device paths Device Chemin des périphériques
|
||||||
|
Scanner DeviceSCSI Scanner
|
||||||
Printer DeviceSCSI Imprimante
|
Printer DeviceSCSI Imprimante
|
||||||
Processor Device Microprocesseur
|
Processor Device Microprocesseur
|
||||||
Optical Drive DeviceSCSI Lecteur optique
|
Optical Drive DeviceSCSI Lecteur optique
|
||||||
@@ -40,6 +41,7 @@ Driver used Device Pilote utilisé
|
|||||||
Other DeviceSCSI Autre
|
Other DeviceSCSI Autre
|
||||||
Device Name\t\t\t\t: %Name%\nManufacturer\t\t\t: %Manufacturer%\nDriver used\t\t\t\t: %DriverUsed%\nDevice paths\t: %DevicePaths% Device Nom du périphérique\t\t\t\t\t: %Name%\nFabricant\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t: %Manufacturer%\nPilote utilisé\t\t\t\t\t\t\t\t\t\t: %DriverUsed%\nChemins du périphérique\t: %DevicePaths%
|
Device Name\t\t\t\t: %Name%\nManufacturer\t\t\t: %Manufacturer%\nDriver used\t\t\t\t: %DriverUsed%\nDevice paths\t: %DevicePaths% Device Nom du périphérique\t\t\t\t\t: %Name%\nFabricant\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t: %Manufacturer%\nPilote utilisé\t\t\t\t\t\t\t\t\t\t: %DriverUsed%\nChemins du périphérique\t: %DevicePaths%
|
||||||
ACPI Thermal Zone DeviceACPI Zone thermique ACPI
|
ACPI Thermal Zone DeviceACPI Zone thermique ACPI
|
||||||
|
Communications DeviceSCSI Communications
|
||||||
Bus DevicesView Bus
|
Bus DevicesView Bus
|
||||||
Communication controller Device Contrôleur de communication
|
Communication controller Device Contrôleur de communication
|
||||||
Manufacturer DeviceACPI Fabricant
|
Manufacturer DeviceACPI Fabricant
|
||||||
@@ -52,8 +54,10 @@ Basic information DevicesView Informations de base
|
|||||||
PCI Information DevicePCI Informations PCI
|
PCI Information DevicePCI Informations PCI
|
||||||
Manufacturer: Device Fabricant :
|
Manufacturer: Device Fabricant :
|
||||||
ACPI bus DevicesView Bus ACPI
|
ACPI bus DevicesView Bus ACPI
|
||||||
|
Changer DeviceSCSI Changeur de disques
|
||||||
ACPI System Bus DeviceACPI Bus système ACPI
|
ACPI System Bus DeviceACPI Bus système ACPI
|
||||||
Devices System name Périphériques
|
Devices System name Périphériques
|
||||||
|
Worm DeviceSCSI Disque inscriptible
|
||||||
Multimedia controller Device Contrôleur multimédia
|
Multimedia controller Device Contrôleur multimédia
|
||||||
Unknown DevicePCI Inconnu
|
Unknown DevicePCI Inconnu
|
||||||
Device name: Device Nom du périphérique :
|
Device name: Device Nom du périphérique :
|
||||||
@@ -72,6 +76,8 @@ Manufacturer DevicePCI Fabricant
|
|||||||
Intelligent controller Device Contrôleur intelligent
|
Intelligent controller Device Contrôleur intelligent
|
||||||
Satellite communications controller Device Contrôleur de communications par satellite
|
Satellite communications controller Device Contrôleur de communications par satellite
|
||||||
SCSI Information DeviceSCSI Informations SCSI
|
SCSI Information DeviceSCSI Informations SCSI
|
||||||
|
Enclosure DeviceSCSI Zone de stockage
|
||||||
|
Array DeviceSCSI Baie
|
||||||
Bridge Device Pont
|
Bridge Device Pont
|
||||||
Refresh devices DevicesView Rafraichir les périphériques
|
Refresh devices DevicesView Rafraichir les périphériques
|
||||||
Unknown device DevicesView Périphérique inconnu
|
Unknown device DevicesView Périphérique inconnu
|
||||||
|
|||||||
@@ -1,4 +1,4 @@
|
|||||||
1 french x-vnd.Haiku-DriveSetup 3496601396
|
1 french x-vnd.Haiku-DriveSetup 1372142450
|
||||||
DriveSetup System name Gestionnaire de disque
|
DriveSetup System name Gestionnaire de disque
|
||||||
Delete MainWindow Supprimer
|
Delete MainWindow Supprimer
|
||||||
Are you sure you want to write the changes back to disk now?\n\nAll data on the selected partition will be irretrievably lost if you do so! MainWindow Êtes-vous sûr de vouloir écrire les changements sur le disque ?\n\nToutes les données de la partition sélectionnée seront effacées si vous le faites !
|
Are you sure you want to write the changes back to disk now?\n\nAll data on the selected partition will be irretrievably lost if you do so! MainWindow Êtes-vous sûr de vouloir écrire les changements sur le disque ?\n\nToutes les données de la partition sélectionnée seront effacées si vous le faites !
|
||||||
@@ -11,12 +11,15 @@ There's no space on the partition where a child partition could be created. Main
|
|||||||
Unable to find the selected partition by ID. MainWindow Impossible de trouver la partition sélectionnée par son ID.
|
Unable to find the selected partition by ID. MainWindow Impossible de trouver la partition sélectionnée par son ID.
|
||||||
Select a partition from the list below. DiskView Sélectionnez une partition dans la liste ci-dessous.
|
Select a partition from the list below. DiskView Sélectionnez une partition dans la liste ci-dessous.
|
||||||
No disk devices have been recognized. DiskView Aucun périphérique disque n'a été reconnu.
|
No disk devices have been recognized. DiskView Aucun périphérique disque n'a été reconnu.
|
||||||
|
Failed to initialize the disk %s!\n MainWindow Impossible d'initialiser le disque %s !\n
|
||||||
The selected disk is read-only. MainWindow Le disque choisi est en lecture seule.
|
The selected disk is read-only. MainWindow Le disque choisi est en lecture seule.
|
||||||
Partition name: CreateParamsPanel Nom de la partition :
|
Partition name: CreateParamsPanel Nom de la partition :
|
||||||
Initialize InitParamsPanel Initialiser
|
Initialize InitParamsPanel Initialiser
|
||||||
|
Are you sure you want to format the partition \"%s\"? You will be asked again before changes are written to the disk. MainWindow Êtes-vous sûr de vouloir formater la partition « %s » ? Une confirmation vous sera à nouveau demandée avant que les changements ne soient écrits sur le disque.
|
||||||
Could not mount partition %s. MainWindow Impossible de monter la partition %s.
|
Could not mount partition %s. MainWindow Impossible de monter la partition %s.
|
||||||
|
The partition %s has been successfully formatted.\n MainWindow La partition %s a été correctement formatée.\n
|
||||||
The partition %s is already unmounted. MainWindow La partition %s est déjà démontée.
|
The partition %s is already unmounted. MainWindow La partition %s est déjà démontée.
|
||||||
Failed to delete the partition. No changes have been written to disk. MainWindow Impossible de supprimer la partition. Aucun changement n'a été enregistré sur le disque.
|
Failed to delete the partition. No changes have been written to disk. MainWindow Impossible de supprimer la partition. Aucun changement n'a été écrit sur le disque.
|
||||||
Partition type: CreateParamsPanel Type de partition :
|
Partition type: CreateParamsPanel Type de partition :
|
||||||
Could not delete the selected partition. MainWindow Impossible de supprimer la partition sélectionnée.
|
Could not delete the selected partition. MainWindow Impossible de supprimer la partition sélectionnée.
|
||||||
Initialize MainWindow Initialiser
|
Initialize MainWindow Initialiser
|
||||||
@@ -29,21 +32,25 @@ Mounted at PartitionList Montée en
|
|||||||
There was an error acquiring the partition row. MainWindow Erreur de lecture des informations de la partition.
|
There was an error acquiring the partition row. MainWindow Erreur de lecture des informations de la partition.
|
||||||
You need to select a partition entry from the list. MainWindow Sélectionnez d'abord une entrée de la table des partitions.
|
You need to select a partition entry from the list. MainWindow Sélectionnez d'abord une entrée de la table des partitions.
|
||||||
The currently selected partition does not have a parent partition. MainWindow La partition sélectionnée n'a pas de partition parente.
|
The currently selected partition does not have a parent partition. MainWindow La partition sélectionnée n'a pas de partition parente.
|
||||||
Are you sure you want to write the changes back to disk now?\n\nAll data on the selected disk will be irretrievably lost if you do so! MainWindow Êtes-vous sur de vouloir enregistrer les changements sur le disque ?\n\nToutes les données du disque seront définitivement perdues si vous le faites !
|
Are you sure you want to write the changes back to disk now?\n\nAll data on the selected disk will be irretrievably lost if you do so! MainWindow Êtes-vous sur de vouloir écrire les changements sur le disque ?\n\nToutes les données du disque seront définitivement perdues si vous le faites !
|
||||||
Offset: %ld MB Support Déplacement : %ld Mo
|
Offset: %ld MB Support Déplacement : %ld Mo
|
||||||
Write changes MainWindow Enregistrer les modifications
|
Write changes MainWindow Écrire les modifications
|
||||||
There was an error preparing the disk for modifications. MainWindow Une erreur est survenue pendant la préparation des modifications du disque.
|
There was an error preparing the disk for modifications. MainWindow Une erreur est survenue pendant la préparation des modifications du disque.
|
||||||
The partition %s is already mounted. MainWindow La partition %s est déjà montée.
|
The partition %s is already mounted. MainWindow La partition %s est déjà montée.
|
||||||
|
Are you sure you want to format the partition? You will be asked again before changes are written to the disk. MainWindow Êtes-vous sûr de vouloir formater la partition ? Une confirmation vous sera à nouveau demandée avant que les changements ne soient écrits sur le disque.
|
||||||
Are you sure you want to write the changes back to disk now?\n\nAll data on the disk %s will be irretrievably lost if you do so! MainWindow Êtes-vous sûr de vouloir écrire les modifications sur disque maintenant ?\n\nToutes les données du disque %s seront irrémédiablement perdues si vous le faites !
|
Are you sure you want to write the changes back to disk now?\n\nAll data on the disk %s will be irretrievably lost if you do so! MainWindow Êtes-vous sûr de vouloir écrire les modifications sur disque maintenant ?\n\nToutes les données du disque %s seront irrémédiablement perdues si vous le faites !
|
||||||
Are you sure you want to delete the selected partition?\n\nAll data on the partition will be irretrievably lost if you do so! MainWindow Êtes-vous sûr de vouloir supprimer la partition sélectionnée ?\n\nToutes les données sur la partition seront définitivement perdues si vous le faites !
|
Are you sure you want to delete the selected partition?\n\nAll data on the partition will be irretrievably lost if you do so! MainWindow Êtes-vous sûr de vouloir supprimer la partition sélectionnée ?\n\nToutes les données sur la partition seront définitivement perdues si vous le faites !
|
||||||
Create… MainWindow Créer…
|
Create… MainWindow Créer…
|
||||||
Disk system \"%s\"\" not found! MainWindow Le disque système « %s » est introuvable !
|
Disk system \"%s\"\" not found! MainWindow Le disque système « %s » est introuvable !
|
||||||
The disk has been successfully initialized.\n MainWindow Le disque a été correctement initialisée.\n
|
The disk has been successfully initialized.\n MainWindow Le disque a été correctement initialisée.\n
|
||||||
Could not unmount partition %s. MainWindow Impossible de démonter la partition %s.
|
Could not unmount partition %s. MainWindow Impossible de démonter la partition %s.
|
||||||
|
Failed to format the partition %s!\n MainWindow Impossible de formater la partition %s !\n
|
||||||
Mount MainWindow Monter
|
Mount MainWindow Monter
|
||||||
Create CreateParamsPanel Créer
|
Create CreateParamsPanel Créer
|
||||||
|
Are you sure you want to format a raw disk? (most people initialize the disk with a partitioning system first) You will be asked again before changes are written to the disk. MainWindow Êtes-vous sûr de vouloir formater un disque brut ? (la plus part du temps, il convient au préalable d'initialiser le disque avec un système de partitions ) Une confirmation vous sera à nouveau demandée avant que les changements ne soient écrits sur le disque.
|
||||||
Device PartitionList Périphérique
|
Device PartitionList Périphérique
|
||||||
Disk MainWindow Disque
|
Disk MainWindow Disque
|
||||||
|
Are you sure you want to initialize the selected disk? All data will be lost. You will be asked again before changes are written to the disk.\n MainWindow Êtes-vous sûr de vouloir initialiser le disque sélectionné ? Toutes les données seront perdues. Une confirmation vous sera à nouveau demandée avant que les changements ne soient écrits sur le disque.\n
|
||||||
Device DiskView Périphérique
|
Device DiskView Périphérique
|
||||||
Active PartitionList Active
|
Active PartitionList Active
|
||||||
Volume name PartitionList Nom de volume
|
Volume name PartitionList Nom de volume
|
||||||
@@ -58,6 +65,7 @@ Partition MainWindow Partition
|
|||||||
File system PartitionList Système de fichiers
|
File system PartitionList Système de fichiers
|
||||||
Validation of the given creation parameters failed. MainWindow Le contrôle des paramètres de création donnés a échoué.
|
Validation of the given creation parameters failed. MainWindow Le contrôle des paramètres de création donnés a échoué.
|
||||||
Size PartitionList Taille
|
Size PartitionList Taille
|
||||||
|
Wipe (not implemented) MainWindow Effacer (non implémenté)
|
||||||
Validation of the given initialization parameters failed. MainWindow Le contrôle des paramètres d'initialisation donnés a échoué.
|
Validation of the given initialization parameters failed. MainWindow Le contrôle des paramètres d'initialisation donnés a échoué.
|
||||||
The selected partition does not contain a partitioning system. MainWindow La partition sélectionnée ne contient pas de système de partitionnement.
|
The selected partition does not contain a partitioning system. MainWindow La partition sélectionnée ne contient pas de système de partitionnement.
|
||||||
Are you sure you want to write the changes back to disk now?\n\nAll data on the partition %s will be irretrievably lost if you do so! MainWindow Êtes-vous sûr de vouloir enregistrer les modifications sur le disque maintenant ?\n\nToutes les données sur la partition %s seront définitivement perdues si vous le faites !
|
Are you sure you want to write the changes back to disk now?\n\nAll data on the partition %s will be irretrievably lost if you do so! MainWindow Êtes-vous sûr de vouloir enregistrer les modifications sur le disque maintenant ?\n\nToutes les données sur la partition %s seront définitivement perdues si vous le faites !
|
||||||
@@ -66,7 +74,9 @@ Partition size CreateParamsPanel Taille de la partition
|
|||||||
Surface test (not implemented) MainWindow Test de surface (non implémenté)
|
Surface test (not implemented) MainWindow Test de surface (non implémenté)
|
||||||
Cancel InitParamsPanel Annuler
|
Cancel InitParamsPanel Annuler
|
||||||
Cancel CreateParamsPanel Annuler
|
Cancel CreateParamsPanel Annuler
|
||||||
|
Format MainWindow Formater
|
||||||
Parameters PartitionList Paramètres
|
Parameters PartitionList Paramètres
|
||||||
Creation of the partition has failed. MainWindow La partition n'a pas pu être créée.
|
Creation of the partition has failed. MainWindow La partition n'a pas pu être créée.
|
||||||
The currently selected partition is not empty. MainWindow La partition sélectionnée n'est pas vide.
|
The currently selected partition is not empty. MainWindow La partition sélectionnée n'est pas vide.
|
||||||
|
Failed to format the partition. No changes have been written to disk. MainWindow Impossible de formater la partition. Aucun changement n'a été écrit sur le disque.
|
||||||
Unmount MainWindow Démonter
|
Unmount MainWindow Démonter
|
||||||
|
|||||||
@@ -1,4 +1,4 @@
|
|||||||
1 french x-vnd.Haiku-FontDemo 3756411221
|
1 french x-vnd.Haiku-FontDemo 1769653414
|
||||||
Outline: ControlView Contour :
|
Outline: ControlView Contour :
|
||||||
Size: 50 ControlView Taille : 50
|
Size: 50 ControlView Taille : 50
|
||||||
Stop cycling ControlView Arrêter de boucler
|
Stop cycling ControlView Arrêter de boucler
|
||||||
@@ -11,6 +11,8 @@ Spacing: %d ControlView Espacement : %d
|
|||||||
Cycle fonts ControlView Polices en boucle
|
Cycle fonts ControlView Polices en boucle
|
||||||
Font: ControlView Police :
|
Font: ControlView Police :
|
||||||
Rotation: 0 ControlView Rotation : 0
|
Rotation: 0 ControlView Rotation : 0
|
||||||
|
Drawing mode: ControlView Mode de dessin :
|
||||||
|
FontDemo FontDemo FontDemo
|
||||||
Haiku, Inc. ControlView Haiku, Inc.
|
Haiku, Inc. ControlView Haiku, Inc.
|
||||||
Controls FontDemo Contrôles
|
Controls FontDemo Contrôles
|
||||||
Outline: %d ControlView Contour : %d
|
Outline: %d ControlView Contour : %d
|
||||||
|
|||||||
@@ -1,4 +1,4 @@
|
|||||||
1 belarusian x-vnd.Haiku-GLTeapot 2890609668
|
1 belarusian x-vnd.Haiku-GLTeapot 1569683445
|
||||||
Upper center TeapotWindow Зверху
|
Upper center TeapotWindow Зверху
|
||||||
Lighting TeapotWindow Падсветка
|
Lighting TeapotWindow Падсветка
|
||||||
Off TeapotWindow Выключыць
|
Off TeapotWindow Выключыць
|
||||||
@@ -9,11 +9,11 @@ Blue TeapotWindow Блакітны
|
|||||||
Gouraud shading TeapotWindow Адценне Gouraud
|
Gouraud shading TeapotWindow Адценне Gouraud
|
||||||
Quit TeapotWindow Выйсці
|
Quit TeapotWindow Выйсці
|
||||||
Filled polygons TeapotWindow Запоўненыя палігоны
|
Filled polygons TeapotWindow Запоўненыя палігоны
|
||||||
|
Settings TeapotWindow Наладкі
|
||||||
Fog TeapotWindow Туман
|
Fog TeapotWindow Туман
|
||||||
Backface culling TeapotWindow Адкідаць заднія
|
Backface culling TeapotWindow Адкідаць заднія
|
||||||
Z-buffered TeapotWindow Z-буферызаваны
|
Z-buffered TeapotWindow Z-буферызаваны
|
||||||
File TeapotWindow Файл
|
File TeapotWindow Файл
|
||||||
Options TeapotWindow Наладкі
|
|
||||||
Perspective TeapotWindow Перспектыва
|
Perspective TeapotWindow Перспектыва
|
||||||
GLTeapot System name GL Чайнік
|
GLTeapot System name GL Чайнік
|
||||||
Green TeapotWindow Зялёны
|
Green TeapotWindow Зялёны
|
||||||
|
|||||||
@@ -1,4 +1,4 @@
|
|||||||
1 german x-vnd.Haiku-GLTeapot 2890609668
|
1 german x-vnd.Haiku-GLTeapot 1569683445
|
||||||
Upper center TeapotWindow Mitte oben
|
Upper center TeapotWindow Mitte oben
|
||||||
Lighting TeapotWindow Beleuchtung
|
Lighting TeapotWindow Beleuchtung
|
||||||
Off TeapotWindow Aus
|
Off TeapotWindow Aus
|
||||||
@@ -9,11 +9,11 @@ Blue TeapotWindow Blau
|
|||||||
Gouraud shading TeapotWindow Gouraud Shading
|
Gouraud shading TeapotWindow Gouraud Shading
|
||||||
Quit TeapotWindow Beenden
|
Quit TeapotWindow Beenden
|
||||||
Filled polygons TeapotWindow Gefüllte Polygone
|
Filled polygons TeapotWindow Gefüllte Polygone
|
||||||
|
Settings TeapotWindow Einstellungen
|
||||||
Fog TeapotWindow Nebel
|
Fog TeapotWindow Nebel
|
||||||
Backface culling TeapotWindow Backface Culling
|
Backface culling TeapotWindow Backface Culling
|
||||||
Z-buffered TeapotWindow Z-Buffering
|
Z-buffered TeapotWindow Z-Buffering
|
||||||
File TeapotWindow Datei
|
File TeapotWindow Datei
|
||||||
Options TeapotWindow Optionen
|
|
||||||
Perspective TeapotWindow Perspektive
|
Perspective TeapotWindow Perspektive
|
||||||
GLTeapot System name GL-Teekanne
|
GLTeapot System name GL-Teekanne
|
||||||
Green TeapotWindow Grün
|
Green TeapotWindow Grün
|
||||||
|
|||||||
@@ -1,4 +1,4 @@
|
|||||||
1 greek, modern (1453-) x-vnd.Haiku-GLTeapot 2890609668
|
1 greek, modern (1453-) x-vnd.Haiku-GLTeapot 3688092856
|
||||||
Upper center TeapotWindow Πάνω κέντρο
|
Upper center TeapotWindow Πάνω κέντρο
|
||||||
Lighting TeapotWindow Φωτισμός
|
Lighting TeapotWindow Φωτισμός
|
||||||
Off TeapotWindow Κλειστό
|
Off TeapotWindow Κλειστό
|
||||||
@@ -13,7 +13,6 @@ Fog TeapotWindow Ομίχλη
|
|||||||
Backface culling TeapotWindow Κλείσιμο οπίσθιας όψης
|
Backface culling TeapotWindow Κλείσιμο οπίσθιας όψης
|
||||||
Z-buffered TeapotWindow Z-buffered
|
Z-buffered TeapotWindow Z-buffered
|
||||||
File TeapotWindow Αρχείο
|
File TeapotWindow Αρχείο
|
||||||
Options TeapotWindow Επιλογές
|
|
||||||
Perspective TeapotWindow Προοπτική
|
Perspective TeapotWindow Προοπτική
|
||||||
GLTeapot System name GL-Τσαγιέρα
|
GLTeapot System name GL-Τσαγιέρα
|
||||||
Green TeapotWindow Πράσινο
|
Green TeapotWindow Πράσινο
|
||||||
|
|||||||
@@ -1,4 +1,4 @@
|
|||||||
1 finnish x-vnd.Haiku-GLTeapot 2890609668
|
1 finnish x-vnd.Haiku-GLTeapot 3688092856
|
||||||
Upper center TeapotWindow Ylempi keskikohta
|
Upper center TeapotWindow Ylempi keskikohta
|
||||||
Lighting TeapotWindow Valaistus
|
Lighting TeapotWindow Valaistus
|
||||||
Off TeapotWindow Valot pois
|
Off TeapotWindow Valot pois
|
||||||
@@ -13,7 +13,6 @@ Fog TeapotWindow Sumu
|
|||||||
Backface culling TeapotWindow Taustakulman häivytys
|
Backface culling TeapotWindow Taustakulman häivytys
|
||||||
Z-buffered TeapotWindow Z-puskuroitu
|
Z-buffered TeapotWindow Z-puskuroitu
|
||||||
File TeapotWindow Tiedosto
|
File TeapotWindow Tiedosto
|
||||||
Options TeapotWindow Valitsimet
|
|
||||||
Perspective TeapotWindow Perspektiivi
|
Perspective TeapotWindow Perspektiivi
|
||||||
GLTeapot System name GL-teekannu
|
GLTeapot System name GL-teekannu
|
||||||
Green TeapotWindow Vihreä
|
Green TeapotWindow Vihreä
|
||||||
|
|||||||
@@ -1,4 +1,4 @@
|
|||||||
1 french x-vnd.Haiku-GLTeapot 2890609668
|
1 french x-vnd.Haiku-GLTeapot 1569683445
|
||||||
Upper center TeapotWindow En haut au centre
|
Upper center TeapotWindow En haut au centre
|
||||||
Lighting TeapotWindow Éclairage
|
Lighting TeapotWindow Éclairage
|
||||||
Off TeapotWindow Arrêt
|
Off TeapotWindow Arrêt
|
||||||
@@ -9,11 +9,11 @@ Blue TeapotWindow Bleu
|
|||||||
Gouraud shading TeapotWindow Ombrages de Gouraud
|
Gouraud shading TeapotWindow Ombrages de Gouraud
|
||||||
Quit TeapotWindow Quitter
|
Quit TeapotWindow Quitter
|
||||||
Filled polygons TeapotWindow Polygones pleins
|
Filled polygons TeapotWindow Polygones pleins
|
||||||
|
Settings TeapotWindow Réglages
|
||||||
Fog TeapotWindow Brouillard
|
Fog TeapotWindow Brouillard
|
||||||
Backface culling TeapotWindow Abattage des faces arrières
|
Backface culling TeapotWindow Abattage des faces arrières
|
||||||
Z-buffered TeapotWindow Tampon de profondeur
|
Z-buffered TeapotWindow Tampon de profondeur
|
||||||
File TeapotWindow Fichier
|
File TeapotWindow Fichier
|
||||||
Options TeapotWindow Options
|
|
||||||
Perspective TeapotWindow Perspective
|
Perspective TeapotWindow Perspective
|
||||||
GLTeapot System name GLTeapot
|
GLTeapot System name GLTeapot
|
||||||
Green TeapotWindow Vert
|
Green TeapotWindow Vert
|
||||||
|
|||||||
@@ -1,4 +1,4 @@
|
|||||||
1 hindi x-vnd.Haiku-GLTeapot 2890609668
|
1 hindi x-vnd.Haiku-GLTeapot 3688092856
|
||||||
Upper center TeapotWindow ऊपरी बीच
|
Upper center TeapotWindow ऊपरी बीच
|
||||||
Lighting TeapotWindow प्रकाश
|
Lighting TeapotWindow प्रकाश
|
||||||
Off TeapotWindow बंद
|
Off TeapotWindow बंद
|
||||||
@@ -13,7 +13,6 @@ Fog TeapotWindow कोहरा
|
|||||||
Backface culling TeapotWindow बेकफेस कल्लिंग
|
Backface culling TeapotWindow बेकफेस कल्लिंग
|
||||||
Z-buffered TeapotWindow ज़ड-बफर
|
Z-buffered TeapotWindow ज़ड-बफर
|
||||||
File TeapotWindow फ़ाइल
|
File TeapotWindow फ़ाइल
|
||||||
Options TeapotWindow विकल्पों
|
|
||||||
Perspective TeapotWindow परिप्रेक्ष्य
|
Perspective TeapotWindow परिप्रेक्ष्य
|
||||||
GLTeapot System name जीअल टीपोट
|
GLTeapot System name जीअल टीपोट
|
||||||
Green TeapotWindow हरा
|
Green TeapotWindow हरा
|
||||||
|
|||||||
@@ -1,4 +1,4 @@
|
|||||||
1 japanese x-vnd.Haiku-GLTeapot 2890609668
|
1 japanese x-vnd.Haiku-GLTeapot 1569683445
|
||||||
Upper center TeapotWindow 上中央
|
Upper center TeapotWindow 上中央
|
||||||
Lighting TeapotWindow Lighting
|
Lighting TeapotWindow Lighting
|
||||||
Off TeapotWindow オフ
|
Off TeapotWindow オフ
|
||||||
@@ -9,11 +9,11 @@ Blue TeapotWindow 青
|
|||||||
Gouraud shading TeapotWindow グローシェーディング
|
Gouraud shading TeapotWindow グローシェーディング
|
||||||
Quit TeapotWindow 終了
|
Quit TeapotWindow 終了
|
||||||
Filled polygons TeapotWindow ポリゴンを塗りつぶす
|
Filled polygons TeapotWindow ポリゴンを塗りつぶす
|
||||||
|
Settings TeapotWindow 設定
|
||||||
Fog TeapotWindow フォグ
|
Fog TeapotWindow フォグ
|
||||||
Backface culling TeapotWindow バックフェースカリング
|
Backface culling TeapotWindow バックフェースカリング
|
||||||
Z-buffered TeapotWindow Z バッファーを使用
|
Z-buffered TeapotWindow Z バッファーを使用
|
||||||
File TeapotWindow ファイル
|
File TeapotWindow ファイル
|
||||||
Options TeapotWindow オプション
|
|
||||||
Perspective TeapotWindow パースペクティブ
|
Perspective TeapotWindow パースペクティブ
|
||||||
GLTeapot System name GLTeapot
|
GLTeapot System name GLTeapot
|
||||||
Green TeapotWindow 緑
|
Green TeapotWindow 緑
|
||||||
|
|||||||
@@ -1,4 +1,4 @@
|
|||||||
1 lithuanian x-vnd.Haiku-GLTeapot 2890609668
|
1 lithuanian x-vnd.Haiku-GLTeapot 3688092856
|
||||||
Upper center TeapotWindow Viršuje centre
|
Upper center TeapotWindow Viršuje centre
|
||||||
Lighting TeapotWindow Apšvietimas
|
Lighting TeapotWindow Apšvietimas
|
||||||
Off TeapotWindow Išjungta
|
Off TeapotWindow Išjungta
|
||||||
@@ -13,7 +13,6 @@ Fog TeapotWindow Rūkas
|
|||||||
Backface culling TeapotWindow Nugarėlių atranka
|
Backface culling TeapotWindow Nugarėlių atranka
|
||||||
Z-buffered TeapotWindow Z–buferiavimas
|
Z-buffered TeapotWindow Z–buferiavimas
|
||||||
File TeapotWindow Failas
|
File TeapotWindow Failas
|
||||||
Options TeapotWindow Parinktys
|
|
||||||
Perspective TeapotWindow Perspektyva
|
Perspective TeapotWindow Perspektyva
|
||||||
GLTeapot System name Arbatinukas
|
GLTeapot System name Arbatinukas
|
||||||
Green TeapotWindow Žalia
|
Green TeapotWindow Žalia
|
||||||
|
|||||||
@@ -1,4 +1,4 @@
|
|||||||
1 dutch; flemish x-vnd.Haiku-GLTeapot 2890609668
|
1 dutch; flemish x-vnd.Haiku-GLTeapot 3688092856
|
||||||
Upper center TeapotWindow Middenboven
|
Upper center TeapotWindow Middenboven
|
||||||
Lighting TeapotWindow Verlichting
|
Lighting TeapotWindow Verlichting
|
||||||
Off TeapotWindow Uit
|
Off TeapotWindow Uit
|
||||||
@@ -13,7 +13,6 @@ Fog TeapotWindow Mist
|
|||||||
Backface culling TeapotWindow Backface culling
|
Backface culling TeapotWindow Backface culling
|
||||||
Z-buffered TeapotWindow Z-gebufferd
|
Z-buffered TeapotWindow Z-gebufferd
|
||||||
File TeapotWindow Bestand
|
File TeapotWindow Bestand
|
||||||
Options TeapotWindow Opties
|
|
||||||
Perspective TeapotWindow Perspectief
|
Perspective TeapotWindow Perspectief
|
||||||
GLTeapot System name GLTeapot
|
GLTeapot System name GLTeapot
|
||||||
Green TeapotWindow Groen
|
Green TeapotWindow Groen
|
||||||
|
|||||||
@@ -1,4 +1,4 @@
|
|||||||
1 polish x-vnd.Haiku-GLTeapot 2890609668
|
1 polish x-vnd.Haiku-GLTeapot 3688092856
|
||||||
Upper center TeapotWindow Górne
|
Upper center TeapotWindow Górne
|
||||||
Lighting TeapotWindow Oświetlenie
|
Lighting TeapotWindow Oświetlenie
|
||||||
Off TeapotWindow Wyłącz
|
Off TeapotWindow Wyłącz
|
||||||
@@ -13,7 +13,6 @@ Fog TeapotWindow Mgła
|
|||||||
Backface culling TeapotWindow Usuwanie niewidocznych powierzchni
|
Backface culling TeapotWindow Usuwanie niewidocznych powierzchni
|
||||||
Z-buffered TeapotWindow Buforowane Z
|
Z-buffered TeapotWindow Buforowane Z
|
||||||
File TeapotWindow Plik
|
File TeapotWindow Plik
|
||||||
Options TeapotWindow Opcje
|
|
||||||
Perspective TeapotWindow Perspektywa
|
Perspective TeapotWindow Perspektywa
|
||||||
GLTeapot System name GLTeapot
|
GLTeapot System name GLTeapot
|
||||||
Green TeapotWindow Zielony
|
Green TeapotWindow Zielony
|
||||||
|
|||||||
@@ -1,4 +1,4 @@
|
|||||||
1 romanian x-vnd.Haiku-GLTeapot 2878465056
|
1 romanian x-vnd.Haiku-GLTeapot 3675948244
|
||||||
Upper center TeapotWindow Centru sus
|
Upper center TeapotWindow Centru sus
|
||||||
Lighting TeapotWindow Iluminare
|
Lighting TeapotWindow Iluminare
|
||||||
Off TeapotWindow Oprit
|
Off TeapotWindow Oprit
|
||||||
@@ -11,7 +11,6 @@ Quit TeapotWindow Părăsește
|
|||||||
Filled polygons TeapotWindow Poligoane completate
|
Filled polygons TeapotWindow Poligoane completate
|
||||||
Fog TeapotWindow Ceață
|
Fog TeapotWindow Ceață
|
||||||
File TeapotWindow Fișier
|
File TeapotWindow Fișier
|
||||||
Options TeapotWindow Opțiuni
|
|
||||||
Perspective TeapotWindow Perspectivă
|
Perspective TeapotWindow Perspectivă
|
||||||
GLTeapot System name CeainicGL
|
GLTeapot System name CeainicGL
|
||||||
Green TeapotWindow Verde
|
Green TeapotWindow Verde
|
||||||
|
|||||||
@@ -1,4 +1,4 @@
|
|||||||
1 russian x-vnd.Haiku-GLTeapot 4001979038
|
1 russian x-vnd.Haiku-GLTeapot 2681052815
|
||||||
Upper center TeapotWindow Сверху на центр
|
Upper center TeapotWindow Сверху на центр
|
||||||
Lighting TeapotWindow Освещение
|
Lighting TeapotWindow Освещение
|
||||||
Off TeapotWindow Выключить
|
Off TeapotWindow Выключить
|
||||||
@@ -9,10 +9,10 @@ Blue TeapotWindow Голубой
|
|||||||
Gouraud shading TeapotWindow Метод тонирования Гуро
|
Gouraud shading TeapotWindow Метод тонирования Гуро
|
||||||
Quit TeapotWindow Выход
|
Quit TeapotWindow Выход
|
||||||
Filled polygons TeapotWindow Заполненные многоугольники
|
Filled polygons TeapotWindow Заполненные многоугольники
|
||||||
|
Settings TeapotWindow Настройки
|
||||||
Fog TeapotWindow Туман
|
Fog TeapotWindow Туман
|
||||||
Z-buffered TeapotWindow Z-буферизация
|
Z-buffered TeapotWindow Z-буферизация
|
||||||
File TeapotWindow Файл
|
File TeapotWindow Файл
|
||||||
Options TeapotWindow Опции
|
|
||||||
Perspective TeapotWindow Перспектива
|
Perspective TeapotWindow Перспектива
|
||||||
GLTeapot System name Чайник
|
GLTeapot System name Чайник
|
||||||
Green TeapotWindow Зеленый
|
Green TeapotWindow Зеленый
|
||||||
|
|||||||
@@ -1,4 +1,4 @@
|
|||||||
1 slovak x-vnd.Haiku-GLTeapot 2890609668
|
1 slovak x-vnd.Haiku-GLTeapot 3688092856
|
||||||
Upper center TeapotWindow Hore v strede
|
Upper center TeapotWindow Hore v strede
|
||||||
Lighting TeapotWindow Osvetlenie
|
Lighting TeapotWindow Osvetlenie
|
||||||
Off TeapotWindow Vypnuté
|
Off TeapotWindow Vypnuté
|
||||||
@@ -13,7 +13,6 @@ Fog TeapotWindow Dym
|
|||||||
Backface culling TeapotWindow Orezávanie zadnej strany
|
Backface culling TeapotWindow Orezávanie zadnej strany
|
||||||
Z-buffered TeapotWindow Z-buffering
|
Z-buffered TeapotWindow Z-buffering
|
||||||
File TeapotWindow Súbor
|
File TeapotWindow Súbor
|
||||||
Options TeapotWindow Možnosti
|
|
||||||
Perspective TeapotWindow Perspektíva
|
Perspective TeapotWindow Perspektíva
|
||||||
GLTeapot System name GLKonvica
|
GLTeapot System name GLKonvica
|
||||||
Green TeapotWindow Zelená
|
Green TeapotWindow Zelená
|
||||||
|
|||||||
@@ -1,4 +1,4 @@
|
|||||||
1 swedish x-vnd.Haiku-GLTeapot 2890609668
|
1 swedish x-vnd.Haiku-GLTeapot 3688092856
|
||||||
Upper center TeapotWindow Övre mitten
|
Upper center TeapotWindow Övre mitten
|
||||||
Lighting TeapotWindow Ljussättning
|
Lighting TeapotWindow Ljussättning
|
||||||
Off TeapotWindow Av
|
Off TeapotWindow Av
|
||||||
@@ -13,7 +13,6 @@ Fog TeapotWindow Dimma
|
|||||||
Backface culling TeapotWindow Filtrera bort bakåtvända polygoner
|
Backface culling TeapotWindow Filtrera bort bakåtvända polygoner
|
||||||
Z-buffered TeapotWindow Z-buffrad
|
Z-buffered TeapotWindow Z-buffrad
|
||||||
File TeapotWindow Arkiv
|
File TeapotWindow Arkiv
|
||||||
Options TeapotWindow Alternativ
|
|
||||||
Perspective TeapotWindow Perspektiv
|
Perspective TeapotWindow Perspektiv
|
||||||
GLTeapot System name GLTekanna
|
GLTeapot System name GLTekanna
|
||||||
Green TeapotWindow Grön
|
Green TeapotWindow Grön
|
||||||
|
|||||||
@@ -1,4 +1,4 @@
|
|||||||
1 ukrainian x-vnd.Haiku-GLTeapot 2890609668
|
1 ukrainian x-vnd.Haiku-GLTeapot 3688092856
|
||||||
Upper center TeapotWindow Вище центру
|
Upper center TeapotWindow Вище центру
|
||||||
Lighting TeapotWindow Свічення
|
Lighting TeapotWindow Свічення
|
||||||
Off TeapotWindow Вимкнути
|
Off TeapotWindow Вимкнути
|
||||||
@@ -13,7 +13,6 @@ Fog TeapotWindow Туман
|
|||||||
Backface culling TeapotWindow Backface culling
|
Backface culling TeapotWindow Backface culling
|
||||||
Z-buffered TeapotWindow Z-буферизація
|
Z-buffered TeapotWindow Z-буферизація
|
||||||
File TeapotWindow Файл
|
File TeapotWindow Файл
|
||||||
Options TeapotWindow Опції
|
|
||||||
Perspective TeapotWindow Перспектива
|
Perspective TeapotWindow Перспектива
|
||||||
GLTeapot System name Чайник GL
|
GLTeapot System name Чайник GL
|
||||||
Green TeapotWindow Зелений
|
Green TeapotWindow Зелений
|
||||||
|
|||||||
@@ -1,4 +1,4 @@
|
|||||||
1 english x-vnd.Haiku-GLTeapot 2890609668
|
1 english x-vnd.Haiku-GLTeapot 3688092856
|
||||||
Upper center TeapotWindow 上部中心
|
Upper center TeapotWindow 上部中心
|
||||||
Lighting TeapotWindow 灯光
|
Lighting TeapotWindow 灯光
|
||||||
Off TeapotWindow 关闭
|
Off TeapotWindow 关闭
|
||||||
@@ -13,7 +13,6 @@ Fog TeapotWindow 模糊
|
|||||||
Backface culling TeapotWindow 隐面消除
|
Backface culling TeapotWindow 隐面消除
|
||||||
Z-buffered TeapotWindow Z-缓冲
|
Z-buffered TeapotWindow Z-缓冲
|
||||||
File TeapotWindow 文件
|
File TeapotWindow 文件
|
||||||
Options TeapotWindow 选项
|
|
||||||
Perspective TeapotWindow 透视
|
Perspective TeapotWindow 透视
|
||||||
GLTeapot System name GL 茶壶
|
GLTeapot System name GL 茶壶
|
||||||
Green TeapotWindow 绿色
|
Green TeapotWindow 绿色
|
||||||
|
|||||||
@@ -1,4 +1,4 @@
|
|||||||
1 belarusian x-vnd.haiku-icon_o_matic 4233739176
|
1 belarusian x-vnd.haiku-icon_o_matic 2079362081
|
||||||
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)
|
||||||
@@ -65,6 +65,7 @@ Remove Shape Icon-O-Matic-RemoveShapesCmd Выдаліць Фігуру
|
|||||||
Reverse Icon-O-Matic-PathsList Зваротна
|
Reverse Icon-O-Matic-PathsList Зваротна
|
||||||
HVIF Source Code Icon-O-Matic-SavePanel Зыходны код HVIF
|
HVIF Source Code Icon-O-Matic-SavePanel Зыходны код HVIF
|
||||||
Reset Transformations Icon-O-Matic-ResetTransformationCmd Скінуць Трансфармацыі
|
Reset Transformations Icon-O-Matic-ResetTransformationCmd Скінуць Трансфармацыі
|
||||||
|
Settings Icon-O-Matic-Menus Наладкі
|
||||||
All Icon-O-Matic-Properties Усё
|
All Icon-O-Matic-Properties Усё
|
||||||
Multi Paste Properties Icon-O-Matic-Properties Уставіць некалькі уласцівасцяў
|
Multi Paste Properties Icon-O-Matic-Properties Уставіць некалькі уласцівасцяў
|
||||||
Undo Icon-O-Matic-Main Вярнуць
|
Undo Icon-O-Matic-Main Вярнуць
|
||||||
@@ -192,7 +193,6 @@ Overwrite Icon-O-Matic-SVGExport Перазапісаць
|
|||||||
Freeze Shapes Icon-O-Matic-FreezeTransformationCmd Замарозіць Фігуры
|
Freeze Shapes Icon-O-Matic-FreezeTransformationCmd Замарозіць Фігуры
|
||||||
Split Control Point Icon-O-Matic-SplitPointsCmd Раздзяліць Кантрольную Кропку
|
Split Control Point Icon-O-Matic-SplitPointsCmd Раздзяліць Кантрольную Кропку
|
||||||
Open… Icon-O-Matic-Menu-File Адкрыць...
|
Open… Icon-O-Matic-Menu-File Адкрыць...
|
||||||
Options Icon-O-Matic-Menus Опцыі
|
|
||||||
Color (#%02x%02x%02x) Icon-O-Matic-StyledTextImport Колер (#%02x%02x%02x)
|
Color (#%02x%02x%02x) Icon-O-Matic-StyledTextImport Колер (#%02x%02x%02x)
|
||||||
Edit Gradient Icon-O-Matic-SetGradientCmd Правіць Градыент
|
Edit Gradient Icon-O-Matic-SetGradientCmd Правіць Градыент
|
||||||
Clean Up Path Icon-O-Matic-CleanUpPathCmd Ачысціць Шлях
|
Clean Up Path Icon-O-Matic-CleanUpPathCmd Ачысціць Шлях
|
||||||
|
|||||||
@@ -1,4 +1,4 @@
|
|||||||
1 german x-vnd.haiku-icon_o_matic 4233739176
|
1 german x-vnd.haiku-icon_o_matic 2079362081
|
||||||
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)
|
||||||
@@ -65,6 +65,7 @@ Remove Shape Icon-O-Matic-RemoveShapesCmd Form entfernen
|
|||||||
Reverse Icon-O-Matic-PathsList Umkehren
|
Reverse Icon-O-Matic-PathsList Umkehren
|
||||||
HVIF Source Code Icon-O-Matic-SavePanel HVIF-Quellcode
|
HVIF Source Code Icon-O-Matic-SavePanel HVIF-Quellcode
|
||||||
Reset Transformations Icon-O-Matic-ResetTransformationCmd Transformationen zurücksetzen
|
Reset Transformations Icon-O-Matic-ResetTransformationCmd Transformationen zurücksetzen
|
||||||
|
Settings Icon-O-Matic-Menus Einstellungen
|
||||||
All Icon-O-Matic-Properties Alle
|
All Icon-O-Matic-Properties Alle
|
||||||
Multi Paste Properties Icon-O-Matic-Properties Mehrere Eigenschaften einfügen
|
Multi Paste Properties Icon-O-Matic-Properties Mehrere Eigenschaften einfügen
|
||||||
Undo Icon-O-Matic-Main Rückgängig:
|
Undo Icon-O-Matic-Main Rückgängig:
|
||||||
@@ -192,7 +193,6 @@ Overwrite Icon-O-Matic-SVGExport Überschreiben
|
|||||||
Freeze Shapes Icon-O-Matic-FreezeTransformationCmd Formen einfrieren
|
Freeze Shapes Icon-O-Matic-FreezeTransformationCmd Formen einfrieren
|
||||||
Split Control Point Icon-O-Matic-SplitPointsCmd Kontrollpunkt trennen
|
Split Control Point Icon-O-Matic-SplitPointsCmd Kontrollpunkt trennen
|
||||||
Open… Icon-O-Matic-Menu-File Öffnen…
|
Open… Icon-O-Matic-Menu-File Öffnen…
|
||||||
Options Icon-O-Matic-Menus Optionen
|
|
||||||
Color (#%02x%02x%02x) Icon-O-Matic-StyledTextImport Farbe (#%02x%02x%02x)
|
Color (#%02x%02x%02x) Icon-O-Matic-StyledTextImport Farbe (#%02x%02x%02x)
|
||||||
Edit Gradient Icon-O-Matic-SetGradientCmd Farbverlauf bearbeiten
|
Edit Gradient Icon-O-Matic-SetGradientCmd Farbverlauf bearbeiten
|
||||||
Clean Up Path Icon-O-Matic-CleanUpPathCmd Pfad aufräumen
|
Clean Up Path Icon-O-Matic-CleanUpPathCmd Pfad aufräumen
|
||||||
|
|||||||
@@ -1,4 +1,4 @@
|
|||||||
1 greek, modern (1453-) x-vnd.haiku-icon_o_matic 3736361491
|
1 greek, modern (1453-) x-vnd.haiku-icon_o_matic 2591538723
|
||||||
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)
|
||||||
@@ -191,7 +191,6 @@ Overwrite Icon-O-Matic-SVGExport Αντικατάσταση
|
|||||||
Freeze Shapes Icon-O-Matic-FreezeTransformationCmd Πάγωμα Σχημάτων
|
Freeze Shapes Icon-O-Matic-FreezeTransformationCmd Πάγωμα Σχημάτων
|
||||||
Split Control Point Icon-O-Matic-SplitPointsCmd Διαίρεση σημείου ελέγχου
|
Split Control Point Icon-O-Matic-SplitPointsCmd Διαίρεση σημείου ελέγχου
|
||||||
Open… Icon-O-Matic-Menu-File Άνοιγμα...
|
Open… Icon-O-Matic-Menu-File Άνοιγμα...
|
||||||
Options Icon-O-Matic-Menus Επιλογές
|
|
||||||
Color (#%02x%02x%02x) Icon-O-Matic-StyledTextImport Χρώμα (#%02x%02x%02x)
|
Color (#%02x%02x%02x) Icon-O-Matic-StyledTextImport Χρώμα (#%02x%02x%02x)
|
||||||
Edit Gradient Icon-O-Matic-SetGradientCmd Επεξεργασία Gradient
|
Edit Gradient Icon-O-Matic-SetGradientCmd Επεξεργασία Gradient
|
||||||
Clean Up Path Icon-O-Matic-CleanUpPathCmd Καθαρισμός Μονοπατιού
|
Clean Up Path Icon-O-Matic-CleanUpPathCmd Καθαρισμός Μονοπατιού
|
||||||
|
|||||||
@@ -1,4 +1,4 @@
|
|||||||
1 finnish x-vnd.haiku-icon_o_matic 4233739176
|
1 finnish x-vnd.haiku-icon_o_matic 3088916408
|
||||||
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)
|
||||||
@@ -192,7 +192,6 @@ Overwrite Icon-O-Matic-SVGExport Korvaa
|
|||||||
Freeze Shapes Icon-O-Matic-FreezeTransformationCmd Jähmetä hahmot
|
Freeze Shapes Icon-O-Matic-FreezeTransformationCmd Jähmetä hahmot
|
||||||
Split Control Point Icon-O-Matic-SplitPointsCmd Halkaise ohjauspiste
|
Split Control Point Icon-O-Matic-SplitPointsCmd Halkaise ohjauspiste
|
||||||
Open… Icon-O-Matic-Menu-File Avaa...
|
Open… Icon-O-Matic-Menu-File Avaa...
|
||||||
Options Icon-O-Matic-Menus Valitsimet
|
|
||||||
Color (#%02x%02x%02x) Icon-O-Matic-StyledTextImport Väri (#%02x%02x%02x)
|
Color (#%02x%02x%02x) Icon-O-Matic-StyledTextImport Väri (#%02x%02x%02x)
|
||||||
Edit Gradient Icon-O-Matic-SetGradientCmd Muokkaa kaltevuutta
|
Edit Gradient Icon-O-Matic-SetGradientCmd Muokkaa kaltevuutta
|
||||||
Clean Up Path Icon-O-Matic-CleanUpPathCmd Nollaa polku
|
Clean Up Path Icon-O-Matic-CleanUpPathCmd Nollaa polku
|
||||||
|
|||||||
@@ -1,4 +1,4 @@
|
|||||||
1 french x-vnd.haiku-icon_o_matic 3302636941
|
1 french x-vnd.haiku-icon_o_matic 2934880409
|
||||||
Select All Icon-O-Matic-PathManipulator Sélectionner tout
|
Select All Icon-O-Matic-PathManipulator Sélectionner tout
|
||||||
Add Style Icon-O-Matic-AddStylesCmd Ajouter un style
|
Add Style Icon-O-Matic-AddStylesCmd Ajouter un style
|
||||||
Color (#%02x%02x%02x) Style name after dropping a color Couleur (#%02x%02x%02x)
|
Color (#%02x%02x%02x) Style name after dropping a color Couleur (#%02x%02x%02x)
|
||||||
@@ -6,26 +6,33 @@ Add Icon-O-Matic-StylesList Ajouter
|
|||||||
Move Shape Icon-O-Matic-MoveShapesCommand Déplacer la forme
|
Move Shape Icon-O-Matic-MoveShapesCommand Déplacer la forme
|
||||||
Opening the document failed! Icon-O-Matic-Main L'ouverture du document a échoué !
|
Opening the document failed! Icon-O-Matic-Main L'ouverture du document a échoué !
|
||||||
Reset transformation Icon-O-Matic-ShapesList Annuler la transformation
|
Reset transformation Icon-O-Matic-ShapesList Annuler la transformation
|
||||||
|
Move Paths Icon-O-Matic-MovePathsCmd Déplacer les chemins
|
||||||
None Icon-O-Matic-Properties Aucun
|
None Icon-O-Matic-Properties Aucun
|
||||||
New Icon-O-Matic-Menu-File Nouveau
|
New Icon-O-Matic-Menu-File Nouveau
|
||||||
Icon-O-Matic might not have interpreted all data from the SVG when it was loaded. By overwriting the original file, this information would now be lost. Icon-O-Matic-SVGExport Icon-O-Matic peut ne pas avoir interprété toutes les données du fichier SVG lors de son importation. En sauvegardant par-dessus le fichier original, ces informations seront perdues.
|
Icon-O-Matic might not have interpreted all data from the SVG when it was loaded. By overwriting the original file, this information would now be lost. Icon-O-Matic-SVGExport Icon-O-Matic peut ne pas avoir interprété toutes les données du fichier SVG lors de son importation. En sauvegardant par-dessus le fichier original, ces informations seront perdues.
|
||||||
Paste Properties Icon-O-Matic-Properties Coller les propriétés
|
Paste Properties Icon-O-Matic-Properties Coller les propriétés
|
||||||
|
Stroke Transformation Barré
|
||||||
Save Icon Dialog title Enregistrer icône
|
Save Icon Dialog title Enregistrer icône
|
||||||
Closed Icon-O-Matic-PropertyNames Fermé
|
Closed Icon-O-Matic-PropertyNames Fermé
|
||||||
Remove Path Icon-O-Matic-RemovePathsCmd Enlever le chemin
|
Remove Path Icon-O-Matic-RemovePathsCmd Enlever le chemin
|
||||||
|
Add shape with path Icon-O-Matic-Menu-Shape Ajouter une forme avec un chemin
|
||||||
Select Icon-O-Matic-Properties Sélectionner
|
Select Icon-O-Matic-Properties Sélectionner
|
||||||
Height Icon-O-Matic-PropertyNames Hauteur
|
Height Icon-O-Matic-PropertyNames Hauteur
|
||||||
|
Remove Transformers Icon-O-Matic-RemoveTransformersCmd Enlever les Transformations
|
||||||
Width Icon-O-Matic-PropertyNames Largeur
|
Width Icon-O-Matic-PropertyNames Largeur
|
||||||
Transformation Icon-O-Matic-TransformationBoxStates Transformation
|
Transformation Icon-O-Matic-TransformationBoxStates Transformation
|
||||||
Duplicate Icon-O-Matic-ShapesList Dupliquer
|
Duplicate Icon-O-Matic-ShapesList Dupliquer
|
||||||
<unkown property> Icon-O-Matic-PropertyNames <propriétés inconnue>
|
<unkown property> Icon-O-Matic-PropertyNames <propriétés inconnue>
|
||||||
Linear Icon-O-Matic-StyleTypes Linéaire
|
Linear Icon-O-Matic-StyleTypes Linéaire
|
||||||
|
Assign Path Icon-O-Matic-AddPathsCmd Assigner un chemin
|
||||||
Move Icon-O-Matic-TransformationBoxStates Déplacer
|
Move Icon-O-Matic-TransformationBoxStates Déplacer
|
||||||
|
Flip Control Points Icon-O-Matic-FlipPointsCmd Retourner les points de contrôle
|
||||||
warning Icon-O-Matic-SVGExport alerte
|
warning Icon-O-Matic-SVGExport alerte
|
||||||
Copy Icon-O-Matic-Properties Copier
|
Copy Icon-O-Matic-Properties Copier
|
||||||
OK Icon-O-Matic-ColorPicker OK
|
OK Icon-O-Matic-ColorPicker OK
|
||||||
Remove Control Point Icon-O-Matic-RemovePointsCmd Enlever le point de contrôle
|
Remove Control Point Icon-O-Matic-RemovePointsCmd Enlever le point de contrôle
|
||||||
Add circle Icon-O-Matic-PathsList Ajouter un cercle
|
Add circle Icon-O-Matic-PathsList Ajouter un cercle
|
||||||
|
Shorten Icon-O-Matic-PropertyNames Raccourcir
|
||||||
bad news Title of error alert mauvaises nouvelles
|
bad news Title of error alert mauvaises nouvelles
|
||||||
Remove Paths Icon-O-Matic-RemovePathsCmd Enlever les chemins
|
Remove Paths Icon-O-Matic-RemovePathsCmd Enlever les chemins
|
||||||
Add Control Point Icon-O-Matic-AddPointCmd Ajouter un point de contrôle
|
Add Control Point Icon-O-Matic-AddPointCmd Ajouter un point de contrôle
|
||||||
@@ -44,11 +51,15 @@ Cancel Icon-O-Matic-SVGExport Annuler
|
|||||||
Add shape with style Icon-O-Matic-Menu-Shape Ajouter une forme avec un style
|
Add shape with style Icon-O-Matic-Menu-Shape Ajouter une forme avec un style
|
||||||
Remove Shape Icon-O-Matic-RemoveShapesCmd Enlever la forme
|
Remove Shape Icon-O-Matic-RemoveShapesCmd Enlever la forme
|
||||||
HVIF Source Code Icon-O-Matic-SavePanel Code source HVIF
|
HVIF Source Code Icon-O-Matic-SavePanel Code source HVIF
|
||||||
|
Reset Transformations Icon-O-Matic-ResetTransformationCmd Réinitialiser les Transformations
|
||||||
|
Settings Icon-O-Matic-Menus Réglages
|
||||||
All Icon-O-Matic-Properties Tout
|
All Icon-O-Matic-Properties Tout
|
||||||
Undo Icon-O-Matic-Main Annuler
|
Undo Icon-O-Matic-Main Annuler
|
||||||
Add Shape Icon-O-Matic-AddShapesCmd Ajouter une forme
|
Add Shape Icon-O-Matic-AddShapesCmd Ajouter une forme
|
||||||
Contour Transformation Contour
|
Contour Transformation Contour
|
||||||
|
<nothing to redo> Icon-O-Matic-Menu-Edit <rien à restaurer>
|
||||||
Perspective Transformation Perspective
|
Perspective Transformation Perspective
|
||||||
|
Move Transformer Icon-O-Matic-MoveTransformersCmd Déplacer la Transformation
|
||||||
Opacity Icon-O-Matic-PropertyNames Opacité
|
Opacity Icon-O-Matic-PropertyNames Opacité
|
||||||
Gradient type Icon-O-Matic-StyleTypes Type de dégradé
|
Gradient type Icon-O-Matic-StyleTypes Type de dégradé
|
||||||
Icon-O-Matic System name Icon-O-Matic
|
Icon-O-Matic System name Icon-O-Matic
|
||||||
@@ -56,6 +67,7 @@ Cancel Icon-O-Matic-Menu-Settings Annuler
|
|||||||
Modify Control Point Icon-O-Matic-ChangePointCmd Modifier le point de contrôle
|
Modify Control Point Icon-O-Matic-ChangePointCmd Modifier le point de contrôle
|
||||||
Saving your document failed! Icon-O-Matic-Exporter L'enregistrement du document a échoué !
|
Saving your document failed! Icon-O-Matic-Exporter L'enregistrement du document a échoué !
|
||||||
Split Icon-O-Matic-PathManipulator Diviser
|
Split Icon-O-Matic-PathManipulator Diviser
|
||||||
|
Nudge Control Points Icon-O-Matic-NudgePointsCommand Orner les points de contrôle
|
||||||
Remove Icon-O-Matic-StylesList Enlever
|
Remove Icon-O-Matic-StylesList Enlever
|
||||||
META:ICON Attribute Icon-O-Matic-SavePanel Attribut META:ICON
|
META:ICON Attribute Icon-O-Matic-SavePanel Attribut META:ICON
|
||||||
Rotate Icon-O-Matic-TransformationBoxStates Pivoter
|
Rotate Icon-O-Matic-TransformationBoxStates Pivoter
|
||||||
@@ -101,11 +113,13 @@ Swatches Icon-O-Matic-Menus Nuancier
|
|||||||
<unavailable> Icon-O-Matic-StyleTypes <indisponible>
|
<unavailable> Icon-O-Matic-StyleTypes <indisponible>
|
||||||
Rotation Icon-O-Matic-PropertyNames Rotation
|
Rotation Icon-O-Matic-PropertyNames Rotation
|
||||||
Add Icon-O-Matic-PathsList Ajouter
|
Add Icon-O-Matic-PathsList Ajouter
|
||||||
|
Add Shapes Icon-O-Matic-AddShapesCmd Ajouter des Formes
|
||||||
Move Style Icon-O-Matic-MoveStylesCmd Déplacer le style
|
Move Style Icon-O-Matic-MoveStylesCmd Déplacer le style
|
||||||
Snap to grid Icon-O-Matic-Menu-Settings Aligner sur la grille
|
Snap to grid Icon-O-Matic-Menu-Settings Aligner sur la grille
|
||||||
Remove Icon-O-Matic-ShapesList Enlever
|
Remove Icon-O-Matic-ShapesList Enlever
|
||||||
Yes Icon-O-Matic-StyledTextImport Oui
|
Yes Icon-O-Matic-StyledTextImport Oui
|
||||||
Transformation Icon-O-Matic-TransformersList Transformation
|
Transformation Icon-O-Matic-TransformersList Transformation
|
||||||
|
Save image Icon-O-Matic-SavePanel Enregistrer l'image
|
||||||
Add Styles Icon-O-Matic-AddStylesCmd Ajouter des styles
|
Add Styles Icon-O-Matic-AddStylesCmd Ajouter des styles
|
||||||
Remove Control Points Icon-O-Matic-RemovePointsCmd Enlever les points de contrôle
|
Remove Control Points Icon-O-Matic-RemovePointsCmd Enlever les points de contrôle
|
||||||
Format Icon-O-Matic-SavePanel Format
|
Format Icon-O-Matic-SavePanel Format
|
||||||
@@ -114,6 +128,7 @@ Duplicate Icon-O-Matic-StylesList Dupliquer
|
|||||||
too big Icon-O-Matic-StyledTextImport trop grand
|
too big Icon-O-Matic-StyledTextImport trop grand
|
||||||
Color Icon-O-Matic-PropertyNames Couleur
|
Color Icon-O-Matic-PropertyNames Couleur
|
||||||
Insert Control Point Icon-O-Matic-InsertPointCmd Insérer un point de contrôle
|
Insert Control Point Icon-O-Matic-InsertPointCmd Insérer un point de contrôle
|
||||||
|
Flip Control Point Icon-O-Matic-FlipPointsCmd Retourner le Point de Contrôle
|
||||||
Redo Icon-O-Matic-Main Rétablir
|
Redo Icon-O-Matic-Main Rétablir
|
||||||
OK Icon-O-Matic-SVGImport OK
|
OK Icon-O-Matic-SVGImport OK
|
||||||
Reset Transformation Icon-O-Matic-ResetTransformationCmd Réinitialiser la transformation
|
Reset Transformation Icon-O-Matic-ResetTransformationCmd Réinitialiser la transformation
|
||||||
@@ -124,7 +139,6 @@ Overwrite Icon-O-Matic-SVGExport Écraser
|
|||||||
Freeze Shapes Icon-O-Matic-FreezeTransformationCmd Figer les formes
|
Freeze Shapes Icon-O-Matic-FreezeTransformationCmd Figer les formes
|
||||||
Split Control Point Icon-O-Matic-SplitPointsCmd Diviser le point de contrôle
|
Split Control Point Icon-O-Matic-SplitPointsCmd Diviser le point de contrôle
|
||||||
Open… Icon-O-Matic-Menu-File Ouvrir…
|
Open… Icon-O-Matic-Menu-File Ouvrir…
|
||||||
Options Icon-O-Matic-Menus Options
|
|
||||||
Color (#%02x%02x%02x) Icon-O-Matic-StyledTextImport Couleur (#%02x%02x%02x)
|
Color (#%02x%02x%02x) Icon-O-Matic-StyledTextImport Couleur (#%02x%02x%02x)
|
||||||
Edit Gradient Icon-O-Matic-SetGradientCmd Éditer le dégadé
|
Edit Gradient Icon-O-Matic-SetGradientCmd Éditer le dégadé
|
||||||
Remove Shapes Icon-O-Matic-RemoveShapesCmd Enlever les formes
|
Remove Shapes Icon-O-Matic-RemoveShapesCmd Enlever les formes
|
||||||
|
|||||||
@@ -1,4 +1,4 @@
|
|||||||
1 japanese x-vnd.haiku-icon_o_matic 3736361491
|
1 japanese x-vnd.haiku-icon_o_matic 2591538723
|
||||||
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)
|
||||||
@@ -191,7 +191,6 @@ Overwrite Icon-O-Matic-SVGExport 上書き
|
|||||||
Freeze Shapes Icon-O-Matic-FreezeTransformationCmd シェイプを固定
|
Freeze Shapes Icon-O-Matic-FreezeTransformationCmd シェイプを固定
|
||||||
Split Control Point Icon-O-Matic-SplitPointsCmd コントロールポイントを分割
|
Split Control Point Icon-O-Matic-SplitPointsCmd コントロールポイントを分割
|
||||||
Open… Icon-O-Matic-Menu-File 開く…
|
Open… Icon-O-Matic-Menu-File 開く…
|
||||||
Options Icon-O-Matic-Menus オプション
|
|
||||||
Color (#%02x%02x%02x) Icon-O-Matic-StyledTextImport カラー (#%02x%02x%02x)
|
Color (#%02x%02x%02x) Icon-O-Matic-StyledTextImport カラー (#%02x%02x%02x)
|
||||||
Edit Gradient Icon-O-Matic-SetGradientCmd グラデーションの編集
|
Edit Gradient Icon-O-Matic-SetGradientCmd グラデーションの編集
|
||||||
Clean Up Path Icon-O-Matic-CleanUpPathCmd パスをクリーンアップ
|
Clean Up Path Icon-O-Matic-CleanUpPathCmd パスをクリーンアップ
|
||||||
|
|||||||
@@ -1,4 +1,4 @@
|
|||||||
1 lithuanian x-vnd.haiku-icon_o_matic 2985145160
|
1 lithuanian x-vnd.haiku-icon_o_matic 1840322392
|
||||||
Select All Icon-O-Matic-PathManipulator Pažymėti viską
|
Select All Icon-O-Matic-PathManipulator Pažymėti viską
|
||||||
Add Style Icon-O-Matic-AddStylesCmd Pridėti stilių
|
Add Style Icon-O-Matic-AddStylesCmd Pridėti stilių
|
||||||
Color (#%02x%02x%02x) Style name after dropping a color Spalva (#%02x%02x%02x)
|
Color (#%02x%02x%02x) Style name after dropping a color Spalva (#%02x%02x%02x)
|
||||||
@@ -189,7 +189,6 @@ Overwrite Icon-O-Matic-SVGExport Perrašyti
|
|||||||
Freeze Shapes Icon-O-Matic-FreezeTransformationCmd Fiksuoti figūras
|
Freeze Shapes Icon-O-Matic-FreezeTransformationCmd Fiksuoti figūras
|
||||||
Split Control Point Icon-O-Matic-SplitPointsCmd Perkelti valdymo tašką
|
Split Control Point Icon-O-Matic-SplitPointsCmd Perkelti valdymo tašką
|
||||||
Open… Icon-O-Matic-Menu-File Atverti…
|
Open… Icon-O-Matic-Menu-File Atverti…
|
||||||
Options Icon-O-Matic-Menus Parinktys
|
|
||||||
Color (#%02x%02x%02x) Icon-O-Matic-StyledTextImport Spalva (#%02x%02x%02x)
|
Color (#%02x%02x%02x) Icon-O-Matic-StyledTextImport Spalva (#%02x%02x%02x)
|
||||||
Edit Gradient Icon-O-Matic-SetGradientCmd Keisti gradientą
|
Edit Gradient Icon-O-Matic-SetGradientCmd Keisti gradientą
|
||||||
Clean Up Path Icon-O-Matic-CleanUpPathCmd Išvalyti kreivę
|
Clean Up Path Icon-O-Matic-CleanUpPathCmd Išvalyti kreivę
|
||||||
|
|||||||
@@ -1,4 +1,4 @@
|
|||||||
1 bokmål, norwegian; norwegian bokmål x-vnd.haiku-icon_o_matic 2755867189
|
1 bokmål, norwegian; norwegian bokmål x-vnd.haiku-icon_o_matic 1611044421
|
||||||
Select All Icon-O-Matic-PathManipulator Velg alle
|
Select All Icon-O-Matic-PathManipulator Velg alle
|
||||||
Add Style Icon-O-Matic-AddStylesCmd Legg til stil
|
Add Style Icon-O-Matic-AddStylesCmd Legg til stil
|
||||||
Color (#%02x%02x%02x) Style name after dropping a color Farge (#%02x%02x%02x)
|
Color (#%02x%02x%02x) Style name after dropping a color Farge (#%02x%02x%02x)
|
||||||
@@ -162,7 +162,6 @@ Move Path Icon-O-Matic-MovePathsCmd Flytt sti
|
|||||||
Overwrite Icon-O-Matic-SVGExport Overskriv
|
Overwrite Icon-O-Matic-SVGExport Overskriv
|
||||||
Split Control Point Icon-O-Matic-SplitPointsCmd Splitt kontrollpunkt
|
Split Control Point Icon-O-Matic-SplitPointsCmd Splitt kontrollpunkt
|
||||||
Open… Icon-O-Matic-Menu-File Åpne...
|
Open… Icon-O-Matic-Menu-File Åpne...
|
||||||
Options Icon-O-Matic-Menus Valg
|
|
||||||
Color (#%02x%02x%02x) Icon-O-Matic-StyledTextImport Farge (#%02x%02x%02x)
|
Color (#%02x%02x%02x) Icon-O-Matic-StyledTextImport Farge (#%02x%02x%02x)
|
||||||
Edit Gradient Icon-O-Matic-SetGradientCmd Endre gradient
|
Edit Gradient Icon-O-Matic-SetGradientCmd Endre gradient
|
||||||
Rounding Icon-O-Matic-PropertyNames Runding
|
Rounding Icon-O-Matic-PropertyNames Runding
|
||||||
|
|||||||
@@ -1,4 +1,4 @@
|
|||||||
1 dutch; flemish x-vnd.haiku-icon_o_matic 3736361491
|
1 dutch; flemish x-vnd.haiku-icon_o_matic 2591538723
|
||||||
Select All Icon-O-Matic-PathManipulator Alles selecteren
|
Select All Icon-O-Matic-PathManipulator Alles selecteren
|
||||||
Add Style Icon-O-Matic-AddStylesCmd Stijl toevoegen
|
Add Style Icon-O-Matic-AddStylesCmd Stijl toevoegen
|
||||||
Color (#%02x%02x%02x) Style name after dropping a color Kleur (#02x%02x%02x)
|
Color (#%02x%02x%02x) Style name after dropping a color Kleur (#02x%02x%02x)
|
||||||
@@ -191,7 +191,6 @@ Overwrite Icon-O-Matic-SVGExport Overschrijven
|
|||||||
Freeze Shapes Icon-O-Matic-FreezeTransformationCmd Vormen bevriezen
|
Freeze Shapes Icon-O-Matic-FreezeTransformationCmd Vormen bevriezen
|
||||||
Split Control Point Icon-O-Matic-SplitPointsCmd Controlepunt splitsen
|
Split Control Point Icon-O-Matic-SplitPointsCmd Controlepunt splitsen
|
||||||
Open… Icon-O-Matic-Menu-File Openen...
|
Open… Icon-O-Matic-Menu-File Openen...
|
||||||
Options Icon-O-Matic-Menus Opties
|
|
||||||
Color (#%02x%02x%02x) Icon-O-Matic-StyledTextImport Kleur (#%02x%02x%02x)
|
Color (#%02x%02x%02x) Icon-O-Matic-StyledTextImport Kleur (#%02x%02x%02x)
|
||||||
Edit Gradient Icon-O-Matic-SetGradientCmd Gradiënt aanpassen
|
Edit Gradient Icon-O-Matic-SetGradientCmd Gradiënt aanpassen
|
||||||
Clean Up Path Icon-O-Matic-CleanUpPathCmd Pad opruimen
|
Clean Up Path Icon-O-Matic-CleanUpPathCmd Pad opruimen
|
||||||
|
|||||||
@@ -1,4 +1,4 @@
|
|||||||
1 polish x-vnd.haiku-icon_o_matic 3736361491
|
1 polish x-vnd.haiku-icon_o_matic 2591538723
|
||||||
Select All Icon-O-Matic-PathManipulator Zaznacz wszystko
|
Select All Icon-O-Matic-PathManipulator Zaznacz wszystko
|
||||||
Add Style Icon-O-Matic-AddStylesCmd Dodanie stylu
|
Add Style Icon-O-Matic-AddStylesCmd Dodanie stylu
|
||||||
Color (#%02x%02x%02x) Style name after dropping a color Kolor (#%02x%02x%02x)
|
Color (#%02x%02x%02x) Style name after dropping a color Kolor (#%02x%02x%02x)
|
||||||
@@ -191,7 +191,6 @@ Overwrite Icon-O-Matic-SVGExport Nadpisz
|
|||||||
Freeze Shapes Icon-O-Matic-FreezeTransformationCmd Zamrożenie kształtów
|
Freeze Shapes Icon-O-Matic-FreezeTransformationCmd Zamrożenie kształtów
|
||||||
Split Control Point Icon-O-Matic-SplitPointsCmd Podzielenie punktów kontrolnych
|
Split Control Point Icon-O-Matic-SplitPointsCmd Podzielenie punktów kontrolnych
|
||||||
Open… Icon-O-Matic-Menu-File Otwórz…
|
Open… Icon-O-Matic-Menu-File Otwórz…
|
||||||
Options Icon-O-Matic-Menus Opcje
|
|
||||||
Color (#%02x%02x%02x) Icon-O-Matic-StyledTextImport Kolor (#%02x%02x%02x)
|
Color (#%02x%02x%02x) Icon-O-Matic-StyledTextImport Kolor (#%02x%02x%02x)
|
||||||
Edit Gradient Icon-O-Matic-SetGradientCmd Edycję gradientu
|
Edit Gradient Icon-O-Matic-SetGradientCmd Edycję gradientu
|
||||||
Clean Up Path Icon-O-Matic-CleanUpPathCmd Czyszczenie ścieżki
|
Clean Up Path Icon-O-Matic-CleanUpPathCmd Czyszczenie ścieżki
|
||||||
|
|||||||
@@ -1,4 +1,4 @@
|
|||||||
1 romanian x-vnd.haiku-icon_o_matic 2326864078
|
1 romanian x-vnd.haiku-icon_o_matic 1182041310
|
||||||
Select All Icon-O-Matic-PathManipulator Selectează tot
|
Select All Icon-O-Matic-PathManipulator Selectează tot
|
||||||
Add Style Icon-O-Matic-AddStylesCmd Adaugă stil
|
Add Style Icon-O-Matic-AddStylesCmd Adaugă stil
|
||||||
Color (#%02x%02x%02x) Style name after dropping a color Culoare (#%02x%02x%02x)
|
Color (#%02x%02x%02x) Style name after dropping a color Culoare (#%02x%02x%02x)
|
||||||
@@ -190,7 +190,6 @@ Overwrite Icon-O-Matic-SVGExport Suprascrie
|
|||||||
Freeze Shapes Icon-O-Matic-FreezeTransformationCmd Îngheață forme
|
Freeze Shapes Icon-O-Matic-FreezeTransformationCmd Îngheață forme
|
||||||
Split Control Point Icon-O-Matic-SplitPointsCmd Separă punct de control
|
Split Control Point Icon-O-Matic-SplitPointsCmd Separă punct de control
|
||||||
Open… Icon-O-Matic-Menu-File Deschide...
|
Open… Icon-O-Matic-Menu-File Deschide...
|
||||||
Options Icon-O-Matic-Menus Opțiuni
|
|
||||||
Color (#%02x%02x%02x) Icon-O-Matic-StyledTextImport Culoare (#%02x%02x%02x)
|
Color (#%02x%02x%02x) Icon-O-Matic-StyledTextImport Culoare (#%02x%02x%02x)
|
||||||
Edit Gradient Icon-O-Matic-SetGradientCmd Editează degrade
|
Edit Gradient Icon-O-Matic-SetGradientCmd Editează degrade
|
||||||
Clean Up Path Icon-O-Matic-CleanUpPathCmd Curăță cale
|
Clean Up Path Icon-O-Matic-CleanUpPathCmd Curăță cale
|
||||||
|
|||||||
@@ -1,4 +1,4 @@
|
|||||||
1 russian x-vnd.haiku-icon_o_matic 4233739176
|
1 russian x-vnd.haiku-icon_o_matic 2079362081
|
||||||
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)
|
||||||
@@ -65,6 +65,7 @@ Remove Shape Icon-O-Matic-RemoveShapesCmd Удалить форму
|
|||||||
Reverse Icon-O-Matic-PathsList Обратить
|
Reverse Icon-O-Matic-PathsList Обратить
|
||||||
HVIF Source Code Icon-O-Matic-SavePanel Исходный код HVIF
|
HVIF Source Code Icon-O-Matic-SavePanel Исходный код HVIF
|
||||||
Reset Transformations Icon-O-Matic-ResetTransformationCmd Сбросить изменения
|
Reset Transformations Icon-O-Matic-ResetTransformationCmd Сбросить изменения
|
||||||
|
Settings Icon-O-Matic-Menus Настройки
|
||||||
All Icon-O-Matic-Properties Все
|
All Icon-O-Matic-Properties Все
|
||||||
Multi Paste Properties Icon-O-Matic-Properties Вставить все свойства
|
Multi Paste Properties Icon-O-Matic-Properties Вставить все свойства
|
||||||
Undo Icon-O-Matic-Main Отменить
|
Undo Icon-O-Matic-Main Отменить
|
||||||
@@ -192,7 +193,6 @@ Overwrite Icon-O-Matic-SVGExport Перезаписать
|
|||||||
Freeze Shapes Icon-O-Matic-FreezeTransformationCmd Заморозить формы
|
Freeze Shapes Icon-O-Matic-FreezeTransformationCmd Заморозить формы
|
||||||
Split Control Point Icon-O-Matic-SplitPointsCmd Разделить точку
|
Split Control Point Icon-O-Matic-SplitPointsCmd Разделить точку
|
||||||
Open… Icon-O-Matic-Menu-File Открыть…
|
Open… Icon-O-Matic-Menu-File Открыть…
|
||||||
Options Icon-O-Matic-Menus Опции
|
|
||||||
Color (#%02x%02x%02x) Icon-O-Matic-StyledTextImport Цвет (#%02x%02x%02x)
|
Color (#%02x%02x%02x) Icon-O-Matic-StyledTextImport Цвет (#%02x%02x%02x)
|
||||||
Edit Gradient Icon-O-Matic-SetGradientCmd Изменить градиент
|
Edit Gradient Icon-O-Matic-SetGradientCmd Изменить градиент
|
||||||
Clean Up Path Icon-O-Matic-CleanUpPathCmd Очистить контур
|
Clean Up Path Icon-O-Matic-CleanUpPathCmd Очистить контур
|
||||||
|
|||||||
@@ -1,4 +1,4 @@
|
|||||||
1 slovak x-vnd.haiku-icon_o_matic 4233739176
|
1 slovak x-vnd.haiku-icon_o_matic 3088916408
|
||||||
Select All Icon-O-Matic-PathManipulator Vybrať všetky
|
Select All Icon-O-Matic-PathManipulator Vybrať všetky
|
||||||
Add Style Icon-O-Matic-AddStylesCmd Pridať štýl
|
Add Style Icon-O-Matic-AddStylesCmd Pridať štýl
|
||||||
Color (#%02x%02x%02x) Style name after dropping a color Farba (#%02x%02x%02x)
|
Color (#%02x%02x%02x) Style name after dropping a color Farba (#%02x%02x%02x)
|
||||||
@@ -192,7 +192,6 @@ Overwrite Icon-O-Matic-SVGExport Prepísať
|
|||||||
Freeze Shapes Icon-O-Matic-FreezeTransformationCmd Zmraziť tvary
|
Freeze Shapes Icon-O-Matic-FreezeTransformationCmd Zmraziť tvary
|
||||||
Split Control Point Icon-O-Matic-SplitPointsCmd Rozdeliť riadiaci bod
|
Split Control Point Icon-O-Matic-SplitPointsCmd Rozdeliť riadiaci bod
|
||||||
Open… Icon-O-Matic-Menu-File Otvoriť…
|
Open… Icon-O-Matic-Menu-File Otvoriť…
|
||||||
Options Icon-O-Matic-Menus Možnosti
|
|
||||||
Color (#%02x%02x%02x) Icon-O-Matic-StyledTextImport Farba (#%02x%02x%02x)
|
Color (#%02x%02x%02x) Icon-O-Matic-StyledTextImport Farba (#%02x%02x%02x)
|
||||||
Edit Gradient Icon-O-Matic-SetGradientCmd Upraviť farebný prechod
|
Edit Gradient Icon-O-Matic-SetGradientCmd Upraviť farebný prechod
|
||||||
Clean Up Path Icon-O-Matic-CleanUpPathCmd Vyčistiť cestu
|
Clean Up Path Icon-O-Matic-CleanUpPathCmd Vyčistiť cestu
|
||||||
|
|||||||
@@ -1,4 +1,4 @@
|
|||||||
1 swedish x-vnd.haiku-icon_o_matic 4233739176
|
1 swedish x-vnd.haiku-icon_o_matic 3088916408
|
||||||
Select All Icon-O-Matic-PathManipulator Markera allt
|
Select All Icon-O-Matic-PathManipulator Markera allt
|
||||||
Add Style Icon-O-Matic-AddStylesCmd Lägg till stil
|
Add Style Icon-O-Matic-AddStylesCmd Lägg till stil
|
||||||
Color (#%02x%02x%02x) Style name after dropping a color Färg (#%02x%02x%02x)
|
Color (#%02x%02x%02x) Style name after dropping a color Färg (#%02x%02x%02x)
|
||||||
@@ -192,7 +192,6 @@ Overwrite Icon-O-Matic-SVGExport Skriv över
|
|||||||
Freeze Shapes Icon-O-Matic-FreezeTransformationCmd Frys figurer
|
Freeze Shapes Icon-O-Matic-FreezeTransformationCmd Frys figurer
|
||||||
Split Control Point Icon-O-Matic-SplitPointsCmd Klyv kontrollpunkt
|
Split Control Point Icon-O-Matic-SplitPointsCmd Klyv kontrollpunkt
|
||||||
Open… Icon-O-Matic-Menu-File Öppna...
|
Open… Icon-O-Matic-Menu-File Öppna...
|
||||||
Options Icon-O-Matic-Menus Alternativ
|
|
||||||
Color (#%02x%02x%02x) Icon-O-Matic-StyledTextImport Färg (#%02x%02x%02x)
|
Color (#%02x%02x%02x) Icon-O-Matic-StyledTextImport Färg (#%02x%02x%02x)
|
||||||
Edit Gradient Icon-O-Matic-SetGradientCmd Redigera övergång
|
Edit Gradient Icon-O-Matic-SetGradientCmd Redigera övergång
|
||||||
Clean Up Path Icon-O-Matic-CleanUpPathCmd Rensa upp bana
|
Clean Up Path Icon-O-Matic-CleanUpPathCmd Rensa upp bana
|
||||||
|
|||||||
@@ -1,4 +1,4 @@
|
|||||||
1 ukrainian x-vnd.haiku-icon_o_matic 3736361491
|
1 ukrainian x-vnd.haiku-icon_o_matic 2591538723
|
||||||
Select All Icon-O-Matic-PathManipulator Вибрати все
|
Select All Icon-O-Matic-PathManipulator Вибрати все
|
||||||
Add Style Icon-O-Matic-AddStylesCmd Додати cтиль
|
Add Style Icon-O-Matic-AddStylesCmd Додати cтиль
|
||||||
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)
|
||||||
@@ -191,7 +191,6 @@ Overwrite Icon-O-Matic-SVGExport Перезаписати
|
|||||||
Freeze Shapes Icon-O-Matic-FreezeTransformationCmd Заморозити фігури
|
Freeze Shapes Icon-O-Matic-FreezeTransformationCmd Заморозити фігури
|
||||||
Split Control Point Icon-O-Matic-SplitPointsCmd Розділити контрольну точку
|
Split Control Point Icon-O-Matic-SplitPointsCmd Розділити контрольну точку
|
||||||
Open… Icon-O-Matic-Menu-File Відкрити…
|
Open… Icon-O-Matic-Menu-File Відкрити…
|
||||||
Options Icon-O-Matic-Menus Налаштування
|
|
||||||
Color (#%02x%02x%02x) Icon-O-Matic-StyledTextImport Колір (#%02x%02x%02x)
|
Color (#%02x%02x%02x) Icon-O-Matic-StyledTextImport Колір (#%02x%02x%02x)
|
||||||
Edit Gradient Icon-O-Matic-SetGradientCmd Редагувати градієнт
|
Edit Gradient Icon-O-Matic-SetGradientCmd Редагувати градієнт
|
||||||
Clean Up Path Icon-O-Matic-CleanUpPathCmd Очистити шлях
|
Clean Up Path Icon-O-Matic-CleanUpPathCmd Очистити шлях
|
||||||
|
|||||||
@@ -1,4 +1,4 @@
|
|||||||
1 english x-vnd.haiku-icon_o_matic 4233739176
|
1 english x-vnd.haiku-icon_o_matic 3088916408
|
||||||
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)
|
||||||
@@ -192,7 +192,6 @@ Overwrite Icon-O-Matic-SVGExport 覆盖
|
|||||||
Freeze Shapes Icon-O-Matic-FreezeTransformationCmd 冻结模型
|
Freeze Shapes Icon-O-Matic-FreezeTransformationCmd 冻结模型
|
||||||
Split Control Point Icon-O-Matic-SplitPointsCmd 分割控制点
|
Split Control Point Icon-O-Matic-SplitPointsCmd 分割控制点
|
||||||
Open… Icon-O-Matic-Menu-File 打开...
|
Open… Icon-O-Matic-Menu-File 打开...
|
||||||
Options Icon-O-Matic-Menus 选项
|
|
||||||
Color (#%02x%02x%02x) Icon-O-Matic-StyledTextImport 颜色(#%02x%02x%02x)
|
Color (#%02x%02x%02x) Icon-O-Matic-StyledTextImport 颜色(#%02x%02x%02x)
|
||||||
Edit Gradient Icon-O-Matic-SetGradientCmd 编辑渐变
|
Edit Gradient Icon-O-Matic-SetGradientCmd 编辑渐变
|
||||||
Clean Up Path Icon-O-Matic-CleanUpPathCmd 清理路径
|
Clean Up Path Icon-O-Matic-CleanUpPathCmd 清理路径
|
||||||
|
|||||||
@@ -0,0 +1,17 @@
|
|||||||
|
1 french x-vnd.Haiku-Login 3428662131
|
||||||
|
Error: %1 Login App Erreur : %1
|
||||||
|
Hide password Login View Camoufler le mot de passe
|
||||||
|
Desktop Desktop Window Bureau
|
||||||
|
Invalid login! Login View Échec de l'identification !
|
||||||
|
--edit\tLaunch in shelf editting mode to allow customizing the desktop.\n Login App --edit\tLancer en mode édition de présentoire pour permettre la personnalisation du bureau.\n
|
||||||
|
OK Login View OK
|
||||||
|
error %s\n Desktop Window A return message from fDesktopShelf->Save(). It can be \"B_OK\" erreur %s\n
|
||||||
|
Login: Login View Identifiant :
|
||||||
|
Error Login App Erreur
|
||||||
|
Unimplemented Login App Non implémenté
|
||||||
|
Welcome to Haiku Login Window Bienvenue dans Haiku
|
||||||
|
Reboot Login View Redémarrer
|
||||||
|
Halt Login View Arrêter
|
||||||
|
Password: Login View Mot de passe :
|
||||||
|
OK Login App OK
|
||||||
|
--nonmodal\tDo not make the window modal\n Login App --nonmodal\tLa fenêtre n'est pas rendue modale\n
|
||||||
@@ -1,4 +1,4 @@
|
|||||||
1 french x-vnd.Haiku-Magnify 3515889001
|
1 french x-vnd.Haiku-Magnify 283320408
|
||||||
no clip msg\n In console, when clipboard is empty after clicking Copy image aucun clip\n
|
no clip msg\n In console, when clipboard is empty after clicking Copy image aucun clip\n
|
||||||
Make square Magnify-Main Rendre carré
|
Make square Magnify-Main Rendre carré
|
||||||
Copy image Magnify-Main Copier l'image
|
Copy image Magnify-Main Copier l'image
|
||||||
@@ -6,6 +6,7 @@ Magnify help Magnify-Help Aide de la Loupe
|
|||||||
usage: magnify [size] (magnify size * size pixels)\n Console utilisation : magnify [taille] (taille d'agrandissement * taille des pixels)\n
|
usage: magnify [size] (magnify size * size pixels)\n Console utilisation : magnify [taille] (taille d'agrandissement * taille des pixels)\n
|
||||||
Stick coordinates Magnify-Main Mémoriser les coordonnées
|
Stick coordinates Magnify-Main Mémoriser les coordonnées
|
||||||
Info:\n hide/show info - hides/shows all these new features\n note: when showing, a red square will appear which signifies\n which pixel's rgb values will be displayed\n add/remove crosshairs - 2 crosshairs can be added (or removed)\n to aid in the alignment and placement of objects.\n The crosshairs are represented by blue squares and blue lines.\n hide/show grid - hides/shows the grid that separates each pixel\n Magnify-Help Informations :\n cacher/afficher les informations - cache ou affiche toutes les nouvelles fonctionnalités\n note : Lorsqu'un carré rouge apparait\n Il indique sur quel pixel la valeur de couleur RVB est mesurées\n Ajouter/Enlever un viseur - 2 viseurs peuvent être ajoutés (ou retirés...)\n pour aider à aligner et placer des objets\n les viseurs sont représentés par des carrés bleus et des lignes bleus\n montrer/cacher la grille - montre ou cache la grille séparant chaque pixel\n
|
Info:\n hide/show info - hides/shows all these new features\n note: when showing, a red square will appear which signifies\n which pixel's rgb values will be displayed\n add/remove crosshairs - 2 crosshairs can be added (or removed)\n to aid in the alignment and placement of objects.\n The crosshairs are represented by blue squares and blue lines.\n hide/show grid - hides/shows the grid that separates each pixel\n Magnify-Help Informations :\n cacher/afficher les informations - cache ou affiche toutes les nouvelles fonctionnalités\n note : Lorsqu'un carré rouge apparait\n Il indique sur quel pixel la valeur de couleur RVB est mesurées\n Ajouter/Enlever un viseur - 2 viseurs peuvent être ajoutés (ou retirés...)\n pour aider à aligner et placer des objets\n les viseurs sont représentés par des carrés bleus et des lignes bleus\n montrer/cacher la grille - montre ou cache la grille séparant chaque pixel\n
|
||||||
|
freeze - freezes/unfreezes magnification of whatever the\n cursor is currently over\n Magnify-Help freeze - gèle/dégèle le grossissement quel que soit l'endroit\n où se trouve le curseur\n
|
||||||
Hide/Show grid Magnify-Main Cacher/afficher la grille
|
Hide/Show grid Magnify-Main Cacher/afficher la grille
|
||||||
magnify: size must be a multiple of 4\n Console Loupe : la taille doit être un multiple de 4\n
|
magnify: size must be a multiple of 4\n Console Loupe : la taille doit être un multiple de 4\n
|
||||||
General:\n 32 x 32 - the top left numbers are the number of visible\n pixels (width x height)\n 8 pixels/pixel - represents the number of pixels that are\n used to magnify a pixel\n R:152 G:52 B:10 - the RGB values for the pixel under\n the red square\n Magnify-Help Général :\n 32⨯32 - les nombres dans le coin supérieur gauche représentent\n le nombre de pixels affichés (largeur ⨯ hauteur).\n 8 pixels/pixel - représente le facteur de grossissement des pixels.\n R:152 V:52 B:10 - les valeurs RVB du pixel sous le carré rouge.\n
|
General:\n 32 x 32 - the top left numbers are the number of visible\n pixels (width x height)\n 8 pixels/pixel - represents the number of pixels that are\n used to magnify a pixel\n R:152 G:52 B:10 - the RGB values for the pixel under\n the red square\n Magnify-Help Général :\n 32⨯32 - les nombres dans le coin supérieur gauche représentent\n le nombre de pixels affichés (largeur ⨯ hauteur).\n 8 pixels/pixel - représente le facteur de grossissement des pixels.\n R:152 V:52 B:10 - les valeurs RVB du pixel sous le carré rouge.\n
|
||||||
|
|||||||
@@ -1,4 +1,4 @@
|
|||||||
1 belarusian x-vnd.Be-MAIL 2834665561
|
1 belarusian x-vnd.Be-MAIL 3337401776
|
||||||
View Mail Агляд
|
View Mail Агляд
|
||||||
%d - Date Mail %d - Дата
|
%d - Date Mail %d - Дата
|
||||||
Attach attributes: Mail Атрыбуты ўкладання:
|
Attach attributes: Mail Атрыбуты ўкладання:
|
||||||
@@ -27,6 +27,7 @@ Expert Mail Поўны
|
|||||||
Reply account: Mail Акаунт для адказаў:
|
Reply account: Mail Акаунт для адказаў:
|
||||||
Discard Mail Адхіліць
|
Discard Mail Адхіліць
|
||||||
Message Mail Паведамленне
|
Message Mail Паведамленне
|
||||||
|
Settings… Mail Наладкі…
|
||||||
Reply to sender Mail Адказаць адпраўніку
|
Reply to sender Mail Адказаць адпраўніку
|
||||||
There is no installed handler for URL links. Mail Апрацоўшчык URL спасылак не ўсталяваны.
|
There is no installed handler for URL links. Mail Апрацоўшчык URL спасылак не ўсталяваны.
|
||||||
Signature Mail Подпіс
|
Signature Mail Подпіс
|
||||||
@@ -38,7 +39,6 @@ Save changes to this signature? Mail Захаваць змены подпісу
|
|||||||
Cc: Mail Cc:
|
Cc: Mail Cc:
|
||||||
Off Mail Адключыць
|
Off Mail Адключыць
|
||||||
Find Mail Шукаць
|
Find Mail Шукаць
|
||||||
Preferences… Mail Наладкі…
|
|
||||||
Undo Mail Вярнуць
|
Undo Mail Вярнуць
|
||||||
Date: Mail Дата:
|
Date: Mail Дата:
|
||||||
An error occurred trying to open this signature. Mail Памылка. Немагчыма адкрыць гэты подпіс.
|
An error occurred trying to open this signature. Mail Памылка. Немагчыма адкрыць гэты подпіс.
|
||||||
|
|||||||
@@ -1,4 +1,4 @@
|
|||||||
1 german x-vnd.Be-MAIL 2834665561
|
1 german x-vnd.Be-MAIL 3337401776
|
||||||
View Mail Ansicht
|
View Mail Ansicht
|
||||||
%d - Date Mail %d - Datum
|
%d - Date Mail %d - Datum
|
||||||
Attach attributes: Mail Attribute von Anhängen:
|
Attach attributes: Mail Attribute von Anhängen:
|
||||||
@@ -27,6 +27,7 @@ Expert Mail Experte
|
|||||||
Reply account: Mail Konto zum Beantworten:
|
Reply account: Mail Konto zum Beantworten:
|
||||||
Discard Mail Verwerfen
|
Discard Mail Verwerfen
|
||||||
Message Mail Nachricht
|
Message Mail Nachricht
|
||||||
|
Settings… Mail Einstellungen…
|
||||||
Reply to sender Mail Antwort an Absender
|
Reply to sender Mail Antwort an Absender
|
||||||
There is no installed handler for URL links. Mail URL-Verweisen ist keine Anwendung zugeordnet.
|
There is no installed handler for URL links. Mail URL-Verweisen ist keine Anwendung zugeordnet.
|
||||||
Signature Mail Signatur
|
Signature Mail Signatur
|
||||||
@@ -38,7 +39,6 @@ Save changes to this signature? Mail Änderungen an der Signatur speichern?
|
|||||||
Cc: Mail Kopie:
|
Cc: Mail Kopie:
|
||||||
Off Mail Aus
|
Off Mail Aus
|
||||||
Find Mail Suchen
|
Find Mail Suchen
|
||||||
Preferences… Mail Einstellungen…
|
|
||||||
Undo Mail Rückgängig
|
Undo Mail Rückgängig
|
||||||
Date: Mail Datum:
|
Date: Mail Datum:
|
||||||
An error occurred trying to open this signature. Mail Beim Öffnen dieser Signatur ist ein Fehler aufgetreten.
|
An error occurred trying to open this signature. Mail Beim Öffnen dieser Signatur ist ein Fehler aufgetreten.
|
||||||
|
|||||||
@@ -1,4 +1,4 @@
|
|||||||
1 finnish x-vnd.Be-MAIL 2834665561
|
1 finnish x-vnd.Be-MAIL 849531913
|
||||||
View Mail Näkymä
|
View Mail Näkymä
|
||||||
%d - Date Mail %d - Päivämäärä
|
%d - Date Mail %d - Päivämäärä
|
||||||
Attach attributes: Mail Liittämisattribuutit:
|
Attach attributes: Mail Liittämisattribuutit:
|
||||||
@@ -38,7 +38,6 @@ Save changes to this signature? Mail Tallennetaanko muutokset tähän allekirjo
|
|||||||
Cc: Mail Kopio:
|
Cc: Mail Kopio:
|
||||||
Off Mail Pois päältä
|
Off Mail Pois päältä
|
||||||
Find Mail Etsi
|
Find Mail Etsi
|
||||||
Preferences… Mail Asetukset…
|
|
||||||
Undo Mail Peru
|
Undo Mail Peru
|
||||||
Date: Mail Päivämäärä:
|
Date: Mail Päivämäärä:
|
||||||
An error occurred trying to open this signature. Mail Tapahtui virhe yritettäessä avata tätä allekirjiotusta.
|
An error occurred trying to open this signature. Mail Tapahtui virhe yritettäessä avata tätä allekirjiotusta.
|
||||||
|
|||||||
@@ -1,10 +1,11 @@
|
|||||||
1 french x-vnd.Be-MAIL 1925197549
|
1 french x-vnd.Be-MAIL 3337401776
|
||||||
View Mail Vue
|
View Mail Vue
|
||||||
%d - Date Mail %d - Date
|
%d - Date Mail %d - Date
|
||||||
Attach attributes: Mail Attributs du fichier joint :
|
Attach attributes: Mail Attributs du fichier joint :
|
||||||
Inconsistency occurred in the undo/redo buffer. Mail Une incohérence est survenue dans le tampon d'annulation.
|
Inconsistency occurred in the undo/redo buffer. Mail Une incohérence est survenue dans le tampon d'annulation.
|
||||||
An error occurred trying to save the attachment. Mail Une erreur s'est produite en essayant de sauvegarder le fichier joint.
|
An error occurred trying to save the attachment. Mail Une erreur s'est produite en essayant de sauvegarder le fichier joint.
|
||||||
Copy to new Mail Copier vers nouveau
|
Copy to new Mail Copier vers nouveau
|
||||||
|
Leave as 'New' Mail Do not translate New - this is non-localizable e-mail status Laisser en « nouveau »
|
||||||
Edit Mail Modifier
|
Edit Mail Modifier
|
||||||
Print Mail Imprimer
|
Print Mail Imprimer
|
||||||
<none> Mail <aucun>
|
<none> Mail <aucun>
|
||||||
@@ -26,6 +27,7 @@ Expert Mail Expert
|
|||||||
Reply account: Mail Compte de réponse :
|
Reply account: Mail Compte de réponse :
|
||||||
Discard Mail Ignorer
|
Discard Mail Ignorer
|
||||||
Message Mail Message
|
Message Mail Message
|
||||||
|
Settings… Mail Réglages…
|
||||||
Reply to sender Mail Répondre à l'expéditeur
|
Reply to sender Mail Répondre à l'expéditeur
|
||||||
There is no installed handler for URL links. Mail Il n'y a pas d'application d'ouvrir les liens URL.
|
There is no installed handler for URL links. Mail Il n'y a pas d'application d'ouvrir les liens URL.
|
||||||
Signature Mail Signature
|
Signature Mail Signature
|
||||||
@@ -37,7 +39,6 @@ Save changes to this signature? Mail Enregistrer les modifications apportées
|
|||||||
Cc: Mail Cc :
|
Cc: Mail Cc :
|
||||||
Off Mail Arrêt
|
Off Mail Arrêt
|
||||||
Find Mail Rechercher
|
Find Mail Rechercher
|
||||||
Preferences… Mail Préférences…
|
|
||||||
Undo Mail Annuler
|
Undo Mail Annuler
|
||||||
Date: Mail Date :
|
Date: Mail Date :
|
||||||
An error occurred trying to open this signature. Mail Une erreur est survenue en essayant d'ouvrir la signature.
|
An error occurred trying to open this signature. Mail Une erreur est survenue en essayant d'ouvrir la signature.
|
||||||
@@ -63,12 +64,14 @@ Warn unencodable: Mail Avertir si non encodable :
|
|||||||
Quit Mail Quitter
|
Quit Mail Quitter
|
||||||
%n - Full name Mail %n - Nom complet
|
%n - Full name Mail %n - Nom complet
|
||||||
Read Mail Lu
|
Read Mail Lu
|
||||||
|
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 Corbeille
|
Trash Mail Corbeille
|
||||||
Default account: Mail Compte par défaut :
|
Default account: Mail Compte par défaut :
|
||||||
Size: Mail Taille :
|
Size: Mail Taille :
|
||||||
Account from mail Mail Compte de courrier
|
Account from mail Mail Compte de courrier
|
||||||
Edit signatures… Mail Modifier les signatures…
|
Edit signatures… Mail Modifier les signatures…
|
||||||
New Mail Nouveau
|
New Mail Nouveau
|
||||||
|
Attachments: Mail Pièces jointes :
|
||||||
On Mail Marche
|
On Mail Marche
|
||||||
Set to %s Mail Changer en %s
|
Set to %s Mail Changer en %s
|
||||||
Forward Mail Transférer
|
Forward Mail Transférer
|
||||||
@@ -77,6 +80,7 @@ E-mail draft could not be saved! Mail Le brouillon n'a pas pu être sauvegardé
|
|||||||
To: Mail À :
|
To: Mail À :
|
||||||
Only files can be added as attachments. Mail Seuls des fichiers peuvent être joints à un message.
|
Only files can be added as attachments. Mail Seuls des fichiers peuvent être joints à un message.
|
||||||
Previous message Mail Message précédent
|
Previous message Mail Message précédent
|
||||||
|
Attachments: Mail Pièces jointes :
|
||||||
Title: Mail Titre :
|
Title: Mail Titre :
|
||||||
Find… Mail Chercher…
|
Find… Mail Chercher…
|
||||||
Accounts… Mail Comptes…
|
Accounts… Mail Comptes…
|
||||||
@@ -99,6 +103,7 @@ Show raw message Mail Montrer le message brut
|
|||||||
\\n - Newline Mail \\n - Nouvelle ligne
|
\\n - Newline Mail \\n - Nouvelle ligne
|
||||||
Start now Mail Démarrer maintenant
|
Start now Mail Démarrer maintenant
|
||||||
Close Mail Fermer
|
Close Mail Fermer
|
||||||
|
No matches Mail Pas de correspondances
|
||||||
The mail_daemon is not running. The message is queued and will be sent when the mail_daemon is started. Mail mail_daemon n'est pas démarré. Ce message a été placé en file d'attente et sera envoyé quand mail_daemon sera démarré.
|
The mail_daemon is not running. The message is queued and will be sent when the mail_daemon is started. Mail mail_daemon n'est pas démarré. Ce message a été placé en file d'attente et sera envoyé quand mail_daemon sera démarré.
|
||||||
Really delete this signature? This cannot be undone. Mail Voulez-vous vraiment effacer cette signature ? Ça ne pourra pas être annulé.
|
Really delete this signature? This cannot be undone. Mail Voulez-vous vraiment effacer cette signature ? Ça ne pourra pas être annulé.
|
||||||
Open Mail Ouvrir
|
Open Mail Ouvrir
|
||||||
|
|||||||
@@ -1,4 +1,4 @@
|
|||||||
1 japanese x-vnd.Be-MAIL 2834665561
|
1 japanese x-vnd.Be-MAIL 3337401776
|
||||||
View Mail 表示
|
View Mail 表示
|
||||||
%d - Date Mail %d - 日付
|
%d - Date Mail %d - 日付
|
||||||
Attach attributes: Mail 属性の添付:
|
Attach attributes: Mail 属性の添付:
|
||||||
@@ -27,6 +27,7 @@ Expert Mail 上級者
|
|||||||
Reply account: Mail 返信アカウント:
|
Reply account: Mail 返信アカウント:
|
||||||
Discard Mail 破棄
|
Discard Mail 破棄
|
||||||
Message Mail メッセージ
|
Message Mail メッセージ
|
||||||
|
Settings… Mail 設定…
|
||||||
Reply to sender Mail 差出人に返信
|
Reply to sender Mail 差出人に返信
|
||||||
There is no installed handler for URL links. Mail URL リンク用ハンドラがインストールされていません。
|
There is no installed handler for URL links. Mail URL リンク用ハンドラがインストールされていません。
|
||||||
Signature Mail 署名
|
Signature Mail 署名
|
||||||
@@ -38,7 +39,6 @@ Save changes to this signature? Mail 署名の変更を確定し保存します
|
|||||||
Cc: Mail Cc:
|
Cc: Mail Cc:
|
||||||
Off Mail オフ
|
Off Mail オフ
|
||||||
Find Mail 検索
|
Find Mail 検索
|
||||||
Preferences… Mail メールの設定…
|
|
||||||
Undo Mail 元に戻す
|
Undo Mail 元に戻す
|
||||||
Date: Mail 日付:
|
Date: Mail 日付:
|
||||||
An error occurred trying to open this signature. Mail この署名を開くときにエラーが発生しました。
|
An error occurred trying to open this signature. Mail この署名を開くときにエラーが発生しました。
|
||||||
|
|||||||
@@ -1,4 +1,4 @@
|
|||||||
1 lithuanian x-vnd.Be-MAIL 1831526878
|
1 lithuanian x-vnd.Be-MAIL 4141360526
|
||||||
View Mail Rodymas
|
View Mail Rodymas
|
||||||
%d - Date Mail %d – data
|
%d - Date Mail %d – data
|
||||||
Attach attributes: Mail Pridedamų failų požymių įtraukimas:
|
Attach attributes: Mail Pridedamų failų požymių įtraukimas:
|
||||||
@@ -37,7 +37,6 @@ Save changes to this signature? Mail Ar įrašyti šio prierašo pakeitimus?
|
|||||||
Cc: Mail Kopija:
|
Cc: Mail Kopija:
|
||||||
Off Mail Išjungti
|
Off Mail Išjungti
|
||||||
Find Mail Ieškoti
|
Find Mail Ieškoti
|
||||||
Preferences… Mail Nuostatos…
|
|
||||||
Undo Mail Atšaukti
|
Undo Mail Atšaukti
|
||||||
Date: Mail Data:
|
Date: Mail Data:
|
||||||
An error occurred trying to open this signature. Mail Bandant atverti šį prierašą, įvyko klaida.
|
An error occurred trying to open this signature. Mail Bandant atverti šį prierašą, įvyko klaida.
|
||||||
|
|||||||
@@ -1,4 +1,4 @@
|
|||||||
1 dutch; flemish x-vnd.Be-MAIL 2834665561
|
1 dutch; flemish x-vnd.Be-MAIL 849531913
|
||||||
View Mail Bekijken
|
View Mail Bekijken
|
||||||
%d - Date Mail %d - Datum
|
%d - Date Mail %d - Datum
|
||||||
Attach attributes: Mail Attributen bijvoegen:
|
Attach attributes: Mail Attributen bijvoegen:
|
||||||
@@ -38,7 +38,6 @@ Save changes to this signature? Mail Veranderingen aan dit onderschrift opslaan
|
|||||||
Cc: Mail Cc:
|
Cc: Mail Cc:
|
||||||
Off Mail Uit
|
Off Mail Uit
|
||||||
Find Mail Zoeken
|
Find Mail Zoeken
|
||||||
Preferences… Mail Voorkeuren...
|
|
||||||
Undo Mail Ongedaan maken
|
Undo Mail Ongedaan maken
|
||||||
Date: Mail Datum:
|
Date: Mail Datum:
|
||||||
An error occurred trying to open this signature. Mail Er is een fout ontstaan bij het openen van dit onderschift.
|
An error occurred trying to open this signature. Mail Er is een fout ontstaan bij het openen van dit onderschift.
|
||||||
|
|||||||
@@ -1,4 +1,4 @@
|
|||||||
1 polish x-vnd.Be-MAIL 2834665561
|
1 polish x-vnd.Be-MAIL 849531913
|
||||||
View Mail Widok
|
View Mail Widok
|
||||||
%d - Date Mail %d - Data
|
%d - Date Mail %d - Data
|
||||||
Attach attributes: Mail Dołączaj atrybuty:
|
Attach attributes: Mail Dołączaj atrybuty:
|
||||||
@@ -38,7 +38,6 @@ Save changes to this signature? Mail Czy zapisać zmiany tej sygnaturki?
|
|||||||
Cc: Mail Cc:
|
Cc: Mail Cc:
|
||||||
Off Mail Wyłącz
|
Off Mail Wyłącz
|
||||||
Find Mail Znajdź
|
Find Mail Znajdź
|
||||||
Preferences… Mail Ustawienia…
|
|
||||||
Undo Mail Cofnij
|
Undo Mail Cofnij
|
||||||
Date: Mail Data:
|
Date: Mail Data:
|
||||||
An error occurred trying to open this signature. Mail Wystąpił błąd podczas próby otwarcia tej sygnaturki.
|
An error occurred trying to open this signature. Mail Wystąpił błąd podczas próby otwarcia tej sygnaturki.
|
||||||
|
|||||||
@@ -1,4 +1,4 @@
|
|||||||
1 romanian x-vnd.Be-MAIL 1770407339
|
1 romanian x-vnd.Be-MAIL 4080240987
|
||||||
View Mail Vizualizare
|
View Mail Vizualizare
|
||||||
%d - Date Mail %d - Dată
|
%d - Date Mail %d - Dată
|
||||||
Attach attributes: Mail Atașează atribute:
|
Attach attributes: Mail Atașează atribute:
|
||||||
@@ -36,7 +36,6 @@ Save changes to this signature? Mail Se salvează modificările la această sem
|
|||||||
Cc: Mail Cc:
|
Cc: Mail Cc:
|
||||||
Off Mail Oprit
|
Off Mail Oprit
|
||||||
Find Mail Găsește
|
Find Mail Găsește
|
||||||
Preferences… Mail Preferințe...
|
|
||||||
Undo Mail Refă
|
Undo Mail Refă
|
||||||
Date: Mail Dată:
|
Date: Mail Dată:
|
||||||
An error occurred trying to open this signature. Mail A apărut o eroare când s-a încercat deschiderea acestei semnături.
|
An error occurred trying to open this signature. Mail A apărut o eroare când s-a încercat deschiderea acestei semnături.
|
||||||
|
|||||||
@@ -1,4 +1,4 @@
|
|||||||
1 russian x-vnd.Be-MAIL 2834665561
|
1 russian x-vnd.Be-MAIL 3337401776
|
||||||
View Mail Вид
|
View Mail Вид
|
||||||
%d - Date Mail %d - Дата
|
%d - Date Mail %d - Дата
|
||||||
Attach attributes: Mail Прикрепление атрибутов:
|
Attach attributes: Mail Прикрепление атрибутов:
|
||||||
@@ -27,6 +27,7 @@ Expert Mail Эксперт
|
|||||||
Reply account: Mail Ответить, используя акканут:
|
Reply account: Mail Ответить, используя акканут:
|
||||||
Discard Mail Сбросить
|
Discard Mail Сбросить
|
||||||
Message Mail Сообщение
|
Message Mail Сообщение
|
||||||
|
Settings… Mail Настройки…
|
||||||
Reply to sender Mail Ответить отправителю
|
Reply to sender Mail Ответить отправителю
|
||||||
There is no installed handler for URL links. Mail Не выбрано приложение для открытия ссылок.
|
There is no installed handler for URL links. Mail Не выбрано приложение для открытия ссылок.
|
||||||
Signature Mail Подпись
|
Signature Mail Подпись
|
||||||
@@ -38,7 +39,6 @@ Save changes to this signature? Mail Сохранить изменения в
|
|||||||
Cc: Mail Копия:
|
Cc: Mail Копия:
|
||||||
Off Mail Выключить
|
Off Mail Выключить
|
||||||
Find Mail Найти
|
Find Mail Найти
|
||||||
Preferences… Mail Настройки…
|
|
||||||
Undo Mail Отменить
|
Undo Mail Отменить
|
||||||
Date: Mail Дата:
|
Date: Mail Дата:
|
||||||
An error occurred trying to open this signature. Mail Возникла ошибка при попытке открытия этой подписи.
|
An error occurred trying to open this signature. Mail Возникла ошибка при попытке открытия этой подписи.
|
||||||
|
|||||||
Some files were not shown because too many files have changed in this diff Show More
Reference in New Issue
Block a user