From 62d06ff5bb3cea489bc3d4db10fb8642a61c0a9f Mon Sep 17 00:00:00 2001 From: dnk-88 Date: Sun, 20 Feb 2011 15:00:15 +0200 Subject: [PATCH] Changed: #1193 Added Qt translation files. --- .../3d/object_viewer_qt/src/CMakeLists.txt | 22 +- .../tools/3d/object_viewer_qt/src/main.cpp | 20 +- .../object_viewer_qt/src/object_viewer_qt.qrc | 119 +- .../src/translations/object_viewer_qt_de.qm | Bin 0 -> 23 bytes .../src/translations/object_viewer_qt_de.ts | 4908 ++++++++++++++++ .../src/translations/object_viewer_qt_en.qm | Bin 0 -> 23 bytes .../src/translations/object_viewer_qt_en.ts | 4908 ++++++++++++++++ .../src/translations/object_viewer_qt_fr.qm | Bin 0 -> 23 bytes .../src/translations/object_viewer_qt_fr.ts | 4908 ++++++++++++++++ .../src/translations/object_viewer_qt_ru.qm | Bin 0 -> 40561 bytes .../src/translations/object_viewer_qt_ru.ts | 4964 +++++++++++++++++ 11 files changed, 19783 insertions(+), 66 deletions(-) create mode 100644 code/nel/tools/3d/object_viewer_qt/src/translations/object_viewer_qt_de.qm create mode 100644 code/nel/tools/3d/object_viewer_qt/src/translations/object_viewer_qt_de.ts create mode 100644 code/nel/tools/3d/object_viewer_qt/src/translations/object_viewer_qt_en.qm create mode 100644 code/nel/tools/3d/object_viewer_qt/src/translations/object_viewer_qt_en.ts create mode 100644 code/nel/tools/3d/object_viewer_qt/src/translations/object_viewer_qt_fr.qm create mode 100644 code/nel/tools/3d/object_viewer_qt/src/translations/object_viewer_qt_fr.ts create mode 100644 code/nel/tools/3d/object_viewer_qt/src/translations/object_viewer_qt_ru.qm create mode 100644 code/nel/tools/3d/object_viewer_qt/src/translations/object_viewer_qt_ru.ts diff --git a/code/nel/tools/3d/object_viewer_qt/src/CMakeLists.txt b/code/nel/tools/3d/object_viewer_qt/src/CMakeLists.txt index 6bfa4eb96..01e9251bc 100644 --- a/code/nel/tools/3d/object_viewer_qt/src/CMakeLists.txt +++ b/code/nel/tools/3d/object_viewer_qt/src/CMakeLists.txt @@ -5,7 +5,7 @@ FILE(GLOB OBJECT_VIEWER_SRC configuration.h entity.h object_viewer.h particle_ed particle_node.h ps_initial_pos.h dup_ps.h vegetable_editor.h vegetable_node.h extension_system/iplugin_spec.h extension_system/plugin_spec.h extension_system/*.cpp *.cpp) - + SET(OBJECT_VIEWER_HDR main_window.h graphics_viewport.h animation_dialog.h animation_set_dialog.h settings_dialog.h setup_fog_dialog.h slot_manager_dialog.h particle_control_dialog.h particle_workspace_dialog.h @@ -40,6 +40,8 @@ SET(OBJECT_VIEWER_UIS animation_form.ui animation_set_form.ui settings_form.ui SET(OBJECT_VIEWER_RCS object_viewer_qt.qrc) +SET(LANGUAGES en fr de ru) + SET(QT_USE_QTGUI TRUE) SET(QT_USE_QTOPENGL TRUE) @@ -47,11 +49,27 @@ QT4_ADD_RESOURCES( OBJECT_VIEWER_RC_SRCS ${OBJECT_VIEWER_RCS} ) QT4_WRAP_CPP( OBJECT_VIEWER_MOC_SRCS ${OBJECT_VIEWER_HDR} ) QT4_WRAP_UI( OBJECT_VIEWER_UI_HDRS ${OBJECT_VIEWER_UIS} ) +FOREACH(LANGUAGE ${LANGUAGES}) + SET (TS ${CMAKE_CURRENT_SOURCE_DIR}/translations/object_viewer_qt_${LANGUAGE}.ts) + SET (QM ${CMAKE_CURRENT_SOURCE_DIR}/translations/object_viewer_qt_${LANGUAGE}.qm) + SET (TRANSLATIONS ${TRANSLATIONS} ${TS}) + SET (TRANSLATIONS_BINARY ${TRANSLATIONS_BINARY} ${QM}) + ADD_CUSTOM_COMMAND (OUTPUT ${QM} COMMAND ${QT_LRELEASE_EXECUTABLE} ${TS} MAIN_DEPENDENCY ${TS}) +ENDFOREACH() + +ADD_CUSTOM_TARGET (translations COMMAND ${QT_LUPDATE_EXECUTABLE} ${CMAKE_CURRENT_SOURCE_DIR} -recursive -ts ${TRANSLATIONS}) +ADD_CUSTOM_COMMAND (TARGET translations COMMAND ${QT_LRELEASE_EXECUTABLE} ${TRANSLATIONS}) + SOURCE_GROUP(QtResources FILES ${OBJECT_VIEWER_UIS} ${OBJECT_VIEWER_RCS}) SOURCE_GROUP(QtGeneratedUiHdr FILES ${OBJECT_VIEWER_UI_HDRS}) SOURCE_GROUP(QtGeneratedMocSrc FILES ${OBJECT_VIEWER_MOC_SRCS}) -ADD_EXECUTABLE(object_viewer_qt WIN32 MACOSX_BUNDLE ${OBJECT_VIEWER_SRC} ${OBJECT_VIEWER_MOC_SRCS} ${OBJECT_VIEWER_RC_SRCS} ${OBJECT_VIEWER_UI_HDRS}) +ADD_EXECUTABLE(object_viewer_qt WIN32 MACOSX_BUNDLE + ${OBJECT_VIEWER_SRC} + ${OBJECT_VIEWER_MOC_SRCS} + ${OBJECT_VIEWER_RC_SRCS} + ${OBJECT_VIEWER_UI_HDRS} + ${TRANSLATIONS}) TARGET_LINK_LIBRARIES(object_viewer_qt nelmisc diff --git a/code/nel/tools/3d/object_viewer_qt/src/main.cpp b/code/nel/tools/3d/object_viewer_qt/src/main.cpp index 3eb2049d3..b394711b1 100644 --- a/code/nel/tools/3d/object_viewer_qt/src/main.cpp +++ b/code/nel/tools/3d/object_viewer_qt/src/main.cpp @@ -21,6 +21,9 @@ // Qt includes #include +#include +#include +#include #include #include #include @@ -102,23 +105,30 @@ sint main(int argc, char **argv) #endif nlinfo("Welcome to NeL Object Viewer Qt!"); - - NLMISC::CPath::remapExtension("tga", "png", true); } - QApplication app(argc, argv); QSplashScreen *splash = new QSplashScreen(); splash->setPixmap(QPixmap(":/images/nel_ide_load.png")); splash->show(); + QSettings *settings = new QSettings(QSettings::IniFormat, QSettings::UserScope, + QLatin1String("Ryzom Core"), QLatin1String("ObjectViewerQt")); + + QTranslator translator; + QTranslator qtTranslator; + QString locale = settings->value("Language", QLocale::system().name()).toString(); + QString qtTrPath = QLibraryInfo::location(QLibraryInfo::TranslationsPath); + translator.load("object_viewer_qt_" + locale, ":/translations"); + qtTranslator.load("qt_" + locale, qtTrPath); + app.installTranslator(&translator); + app.installTranslator(&qtTranslator); + #if defined(NL_OS_MAC) QDir::setCurrent(qApp->applicationDirPath() + QString("/../Resources")); CLibrary::addLibPath((qApp->applicationDirPath() + QString("/../PlugIns/nel")).toStdString()); #endif Modules::init(); - QSettings *settings = new QSettings(QSettings::IniFormat, QSettings::UserScope, - QLatin1String("Ryzom Core"), QLatin1String("ObjectViewerQt")); Modules::plugMan().setSettings(settings); diff --git a/code/nel/tools/3d/object_viewer_qt/src/object_viewer_qt.qrc b/code/nel/tools/3d/object_viewer_qt/src/object_viewer_qt.qrc index 1957bf1ea..7839fd539 100644 --- a/code/nel/tools/3d/object_viewer_qt/src/object_viewer_qt.qrc +++ b/code/nel/tools/3d/object_viewer_qt/src/object_viewer_qt.qrc @@ -1,61 +1,62 @@ - - images/nel.png - images/open-file.png - images/go-down.png - images/go-up.png - images/list-add.png - images/list-remove.png - images/play.png - images/pause.png - images/stop.png - images/seek-backward.png - images/seek-forward.png - images/skip-backward.png - images/skip-forward.png - images/preferences.png - images/time.png - images/anim.png - images/animset.png - images/dqynight.png - images/mixer.png - images/pqrticles.png - images/sound.png - images/veget.png - images/water.png - images/wind.png - images/ico_bgcolor.png - images/ico_framedelay.png - images/ico_skelscale.png - images/ico_mrm_mesh.png - images/ico_light_group.png - images/clear.png - images/insert.png - images/new.png - images/refresh.png - images/save-as.png - images/save.png - images/insert-horizontal.png - images/polymode.png - images/rmfill.png - images/rmline.png - images/rmpoints.png - images/cam_del.png - images/cam_add.png - - images/Emitter.bmp - images/Force.bmp - - images/nel_ide_load.png - - images/bad_particle_system_item.png - images/particle_system_item.png - images/instance_item.png - images/light_item.png - images/located_item.png - images/particle_item.png - images/sound_item.png - images/workspace_item.png - images/collision_zone_item.png - + + images/nel.png + images/open-file.png + images/go-down.png + images/go-up.png + images/list-add.png + images/list-remove.png + images/play.png + images/pause.png + images/stop.png + images/seek-backward.png + images/seek-forward.png + images/skip-backward.png + images/skip-forward.png + images/preferences.png + images/time.png + images/anim.png + images/animset.png + images/dqynight.png + images/mixer.png + images/pqrticles.png + images/sound.png + images/veget.png + images/water.png + images/wind.png + images/ico_bgcolor.png + images/ico_framedelay.png + images/ico_skelscale.png + images/ico_mrm_mesh.png + images/ico_light_group.png + images/clear.png + images/insert.png + images/new.png + images/refresh.png + images/save-as.png + images/save.png + images/insert-horizontal.png + images/polymode.png + images/rmfill.png + images/rmline.png + images/rmpoints.png + images/cam_del.png + images/cam_add.png + images/Emitter.bmp + images/Force.bmp + images/nel_ide_load.png + images/bad_particle_system_item.png + images/particle_system_item.png + images/instance_item.png + images/light_item.png + images/located_item.png + images/particle_item.png + images/sound_item.png + images/workspace_item.png + images/collision_zone_item.png + translations/object_viewer_qt_en.qm + translations/object_viewer_qt_fr.qm + translations/object_viewer_qt_de.qm + translations/object_viewer_qt_ru.qm + diff --git a/code/nel/tools/3d/object_viewer_qt/src/translations/object_viewer_qt_de.qm b/code/nel/tools/3d/object_viewer_qt/src/translations/object_viewer_qt_de.qm new file mode 100644 index 0000000000000000000000000000000000000000..9dad8dffceb9623e88f8b96d9cd0caf25574c6fa GIT binary patch literal 23 fcmcE7ks@*G{hX<16=n7(EZlpygMop8iIEWihQJ9+ literal 0 HcmV?d00001 diff --git a/code/nel/tools/3d/object_viewer_qt/src/translations/object_viewer_qt_de.ts b/code/nel/tools/3d/object_viewer_qt/src/translations/object_viewer_qt_de.ts new file mode 100644 index 000000000..abb41a9f0 --- /dev/null +++ b/code/nel/tools/3d/object_viewer_qt/src/translations/object_viewer_qt_de.ts @@ -0,0 +1,4908 @@ + + + + + Application + + + Object Viewer Qt - Plugin loader messages + + + + + CAnimationDialog + + + Animation control + + + + + Loop + + + + + In place + + + + + Increment pos + + + + + Use the PlayList + + + + + Use the Mixer + + + + + Play/Pause + + + + + Stop + + + + + CAnimationSetDialog + + + Animation set manager + + + + + Edited object: + + + + + Animations: + + + + + Add anim + + + + + Skeleton weight template: + + + + + Add swt + + + + + Animations playlist: + + + + + Unload all anim and swt files + + + + + Add anim in PlayList + + + + + Delete anim from PlayList + + + + + Set duration of time in Animation control + + + + + CAttribWidget + + + GroupBox + + + + + Constant + + + + + Scheme + + + + + Input mutliplier: + + + + + Clamp + + + + + E + + + + + Src: + + + + + Date + + + + + Position + + + + + Inverse Mass + + + + + Speed + + + + + Random + + + + + User param + + + + + LOD + + + + + Square LOD + + + + + Clamped LOD + + + + + Camped square LOD + + + + + U + + + + + P + + + + + G + + + + + CAutoLODDialog + + + Auto LOD + + + + + Start percent DIST: + + + + + Max dist BIAS: + + + + + Degradation exponent: + + + + + Skip particles + + + + + CBasicEditWidget + + + Form + + + + + Psi + + + + + Theta + + + + + Phi + + + + + CColorEditWidget + + + Form + + + + + Browse + + + + + CConstraintMeshWidget + + + Form + + + + + Force stage modulation + + + + + Stage 0 + + + + + Stage 1 + + + + + Stage 2 + + + + + Stage 3 + + + + + Force vertex color lighting + + + + + Texture anim type: + + + + + None + + + + + Global + + + + + Reinit when new element is created + + + + + Stage: + + + + + Translation + + + + + + V Start: + + + + + + U Speed: + + + + + + V Speed: + + + + + + U Accel: + + + + + + V Accel: + + + + + + U Start: + + + + + Scale + + + + + Rotation + + + + + Speed: + + + + + Accel: + + + + + CDayNightDialog + + + Day/Night + + + + + Day + + + + + Night + + + + + CDirectionWidget + + + Form + + + + + Direction: + + + + + +I + + + + + +J + + + + + +K + + + + + -I + + + + + -J + + + + + -K + + + + + Global + + + + + CEditRangeFloatWidget + + + Form + + + + + CEditRangeUIntWidget + + + Form + + + + + CEmitterPage + + + Form + + + + + General + + + + + Emitted type: + + + + + Type of emission: + + + + + Regular + + + + + On death + + + + + Once + + + + + On bounce + + + + + External only + + + + + Direction: + + + + + Default + + + + + Direction is aligned on the emitter direction + + + + + Direction is in world + + + + + Direction is local to the system + + + + + User + + + + + Force consistent emission + + + + + Bypass Auto-LOD + + + + + Speed inheritance factor: + + + + + Delayed emission: + + + + + Max Emission Count: + + + + + Radius: + + + + + + Emission period + + + + + Emission quantity/Speed + + + + + Emission quantity + + + + + Strenght modulation + + + + + CExampleSettingsPage + + + Form + + + + + GroupBox + + + + + + PushButton + + + + + + RadioButton + + + + + CheckBox + + + + + CForcePage + + + Form + + + + + Targets: + + + + + Avaible targets: + + + + + < + + + + + > + + + + + Parametric factor: + + + + + Radial viscosity: + + + + + Tangential viscosity: + + + + + Force intensity + + + + + CGlobalWindDialog + + + Weather + + + + + Power: + + + + + CLightPage + + + Form + + + + + Light color + + + + + Attenuation start/end + + + + + Attenuation start + + + + + Attenuation end + + + + + CLocatedBindablePage + + + Form + + + + + Blending mode: + + + + + Add + + + + + Modulate + + + + + Alpha blend + + + + + Alpha test + + + + + No AutoLOD + + + + + Global color lighting + + + + + Z-Test + + + + + ZBias: + + + + + Color + + + + + Independent size + + + + + Height + + + + + Width + + + + + Size + + + + + Angle 2D + + + + + Rotation + + + + + hint / precomputed rotations + + + + + Rot speed min: + + + + + Rot speed max: + + + + + Nb models: + + + + + Align on motion + + + + + Z-Align + + + + + Fake motion blur coeff.: + + + + + Fake motion blur treshold: + + + + + Radius cut: + + + + + + Number of segments: + + + + + Duration segment: + + + + + + Texture U factor: + + + + + Number fan light: + + + + + Phase smoothnes: + + + + + Fan light speed: + + + + + Fan light intensity: + + + + + Texture V factor: + + + + + Non parametric anim only + + + + + Force constant length(m): + + + + + LOD degradation: + + + + + Trail coord. system: + + + + + Local + + + + + World + + + + + User + + + + + Father coord. system + + + + + Use hermitte interpolation + + + + + CLocatedPage + + + Form + + + + + General + + + + + Coord system: + + + + + Particles are local to the system + + + + + Particles are in world + + + + + User + + + + + Disgrade with lod + + + + + Parametric motion + + + + + Max number of particles: + + + + + Set current count particles + + + + + Life time + + + + + Limited life time + + + + + Triger on death + + + + + Edit + + + + + Particle mass + + + + + CLogPlugin + + + Log + + + + + CMeshWidget + + + GroupBox + + + + + Shape: + + + + + Browse + + + + + Shape not loaded + + + + + Morph + + + + + Edit + + + + + CMorphMeshDialog + + + Morph mesh edit + + + + + Add + + + + + Change + + + + + Insert + + + + + Remove + + + + + Up + + + + + Down + + + + + Warning: Shapes not found and incompatibles !! + + + + + CMultiTexDialog + + + Multitexturing + + + + + Main tex + + + + + + U speed 1: + + + + + + V speed 1: + + + + + + U speed 2: + + + + + + V speed 2: + + + + + Bump factor: + + + + + Use particle data + + + + + + Tex op: + + + + + + Add + + + + + + Modulate + + + + + + Decal + + + + + EnvBumpMap + + + + + Alternate tex + + + + + Use particle data all + + + + + Force basic caps + + + + + Enable alternate + + + + + CPSMoverPage + + + Form + + + + + Position: + + + + + X: + + + + + Y: + + + + + Z: + + + + + Sub component: + + + + + Scale X: + + + + + Scale Y: + + + + + Scale Z: + + + + + Scale: + + + + + CParticleControlDialog + + + Particles system control + + + + + Loop + + + + + Display helpers + + + + + Enable auto count + + + + + Display box + + + + + All particle system + + + + + Reset auto count + + + + + Link play to scene play + + + + + Link to skeleton + + + + + Unlink + + + + + Restick all objects + + + + + Set anim + + + + + Clear anim + + + + + General + + + + + Additional + + + + + Num particles:9999999 + + + + + Num wanted faces:9999999 + + + + + System time:99999999999 + + + + + CParticleLinkDialog + + + Link to skeleton + + + + + Choose bone to stick particle system + + + + + Link + + + + + Unlink + + + + + CParticleSystemPage + + + Form + + + + + Integration + + + + + Enable load balancing + + + + + Accurate integration + + + + + Enable motion slowDown + + + + + Time threshold: + + + + + Max steps: + + + + + Lock + + + + + User param + + + + + User param1: + + + + + + + + Global + + + + + User param2: + + + + + User param3: + + + + + User param4: + + + + + PBBox / LOD param + + + + + Enable Precomputed Bounding Box + + + + + Auto + + + + + Reset + + + + + X: + + + + + Y: + + + + + Z: + + + + + +10 % + + + + + -10 % + + + + + Sharable + + + + + Auto-LOD + + + + + Settings + + + + + Max view dist: + + + + + LOD Ratio: + + + + + Global color + + + + + Force global lighting + + + + + Edit global color + + + + + Wrn: Bypass multitex, not supported by all types + + + + + Life mgt param + + + + + Life mgt presets: + + + + + Environment FX + + + + + Running Environment FX + + + + + Spell FX + + + + + Looping Spell FX + + + + + Minor transitory FX + + + + + User defined + + + + + Moving Looping FX + + + + + Spawned Environment FX + + + + + Ground FX + + + + + Projectile FX + + + + + Model removed when out of range + + + + + PS resource removed when not visible + + + + + Force life time update + + + + + No max nb steps + + + + + Anim type: + + + + + Die on event: + + + + + When visible + + + + + When in visible clusters + + + + + Always + + + + + Disabled + + + + + No more particles + + + + + No more particles/emitters + + + + + Apply after delay: + + + + + s + + + + + Auto delay + + + + + CParticleTextureAnimWidget + + + Form + + + + + Enable texture anim + + + + + Texture grouped + + + + + Multitexturing + + + + + Edit + + + + + CParticleTextureWidget + + + Form + + + + + Choose texture + + + + + Remove + + + + + Name: + + + + + Size: + + + + + Depth: + + + + + CParticleWorkspaceDialog + + + Tree workspace + + + + + CPluginSpec + + + File does not exist: %1 + + + + + Could not open file for read: %1 + + + + + Loading the library failed because state != Resolved + + + + + Plugin is not valid (does not derive from IPlugin) + + + + + Initializing the plugin failed because state != Loaded) + + + + + Internal error: have no plugin instance to initialize + + + + + Plugin initialization failed: %1 + + + + + Cannot perform extensionsInitialized because state != Initialized + + + + + Internal error: have no plugin instance to perform extensionsInitialized + + + + + CPluginView + + + About plugins + + + + + State + + + + + Name + + + + + Version + + + + + Vendor + + + + + Location + + + + + Details + + + + + Error details + + + + + Close + + + + + All objects list + + + + + CSearchPathsSettingsPage + + + Form + + + + + Search paths + + + + + + + + ... + + + + + CSettingsDialog + + + + Settings + + + + + 0 + + + + + Graphics + + + + + Sound + + + + + Paths + + + + + Vegetable + + + + + Graphics settings + + + + + + Driver + + + + + Bloom effect + + + + + Bloom density + + + + + Square bloom + + + + + Enable bloom effect + + + + + Qt Style + + + + + Style + + + + + Use style's standard palette + + + + + Sound settings + + + + + SoundAutoLoadSample + + + + + SoundEnableOccludeObstruct + + + + + SoundEnableReverb + + + + + SoundManualRolloff + + + + + SoundForceSoftware + + + + + SoundUseADPCM + + + + + SoundMaxTrack + + + + + Search paths + + + + + + + + + + + + + ... + + + + + Setup Landscape + + + + + Tile bank: + + + + + Tile far bank: + + + + + Vegetable texture: + + + + + Landscape zones: + + + + + CSetupFog + + + Setup fog + + + + + Start: + + + + + End: + + + + + Enable fog + + + + + Color + + + + + Apply + + + + + CSkeletonScaleDialog + + + Skeleton scale edition + + + + + Bone scale + + + + + + X: + + + + + + + + + + + + + + + + % + + + + + + Y: + + + + + + Z: + + + + + Skin scale (slower) + + + + + Mirror selected + + + + + Undo + + + + + Redo + + + + + Save .skel + + + + + Save as + + + + + Load .scale + + + + + Save .scale + + + + + CSlotGroupBox + + + GroupBox + + + + + Slot _:empty + + + + + Start blend + + + + + End blend + + + + + Offset frame + + + + + Speed x + + + + + Start frame + + + + + End frame + + + + + Smooth + + + + + Wrap mode: + + + + + Clamp + + + + + Repeat + + + + + Disable + + + + + Set anim + + + + + Set skel + + + + + Align blend + + + + + Enable + + + + + Invert skeleton weight + + + + + CSoundPage + + + Form + + + + + General + + + + + Sound name + + + + + Browse + + + + + Play + + + + + Spawn + + + + + Mute + + + + + Keep original pitch + + + + + Emission percent: + + + + + Sound volume + + + + + Sound pitch + + + + + CSunColorDialog + + + Sun color + + + + + Diffuse: + + + + + Ambient + + + + + Specular: + + + + + CTailParticleWidget + + + Form + + + + + Ribbon orientation + + + + + Follow Path + + + + + Follow Path XY + + + + + Identity + + + + + Tail shape + + + + + Triangle + + + + + Quad + + + + + Octogon + + + + + Pentagram + + + + + Simple segment X + + + + + Simple segment Y + + + + + Simple segment Z + + + + + Simple brace + + + + + Tail fading + + + + + CTuneMRMDialog + + + Tune MRM (The maximum faces in scene) + + + + + Max (specify the max value) + + + + + Current (real final max polygon value) + + + + + CTuneTimerDialog + + + Time interval update render + + + + + ms + + + + + CVegetNoiseValueWidget + + + GroupBox + + + + + AbsValue: + + + + + *3 + + + + + 100% + + + + + /3 + + + + + RandValue: + + + + + Frequency: + + + + + CVegetableApperancePage + + + Form + + + + + Bend Phase + + + + + Bend Factor + + + + + Color Noise + + + + + Color setup + + + + + Double cliclk to change color + + + + + Get List from other + + + + + CVegetableDensityPage + + + Form + + + + + Vegetable mesh selection + + + + + Browse + + + + + Distance of creation + + + + + 0 m + + + + + Density + + + + + MaxDensity + + + + + MaxDensity enabled + + + + + Angle setup + + + + + Angle Mode: + + + + + Floor + + + + + Wall + + + + + Ceiling + + + + + AngleMin + + + + + AngleMax + + + + + CVegetableDialog + + + Vegetable editor + + + + + Vegetables: + + + + + List edition + + + + + Add vegetable + + + + + Insert vegetable + + + + + Remove vegetable + + + + + Clear all vegetables + + + + + Copy Vegetable + + + + + Load .vegetdesc + + + + + Save .vegetdesc + + + + + List Save/Load + + + + + Load .vegetset + + + + + Append .vegetset + + + + + Save .vegetset + + + + + Display Vegetables + + + + + Landscape + + + + + General/Density + + + + + Appearance + + + + + Scale + + + + + Rotation + + + + + CVegetableLandscapePage + + + Form + + + + + Setup Wind + + + + + Power: + + + + + Bend Start: + + + + + Frequency + + + + + Ambient color + + + + + Diffuse color + + + + + Show Vegetable Lands + + + + + Snap Camera To Ground + + + + + CVegetableRotatePage + + + Form + + + + + Rotate X + + + + + Rotate Y + + + + + Rotate Z + + + + + CVegetableScalePage + + + Form + + + + + Scale X/Y + + + + + Scale Z + + + + + Bend Frequency Factor + + + + + CWaterPoolDialog + + + Water pool editor + + + + + Pool ID List: + + + + + Add + + + + + Delete + + + + + Name... + + + + + Size: + + + + + 16 + + + + + 32 + + + + + 64 + + + + + 128 + + + + + 256 + + + + + 512 + + + + + Water Unit Size: + + + + + Damping: + + + + + Filter weight: + + + + + Propagation time: + + + + + Enable automatic waves generation + + + + + Waves + + + + + Impulsion strenght: + + + + + Period: + + + + + Impulsion radius: + + + + + Generate on border only + + + + + Load + + + + + Save + + + + + CWorkspacePage + + + Form + + + + + Particle system editor + + + + + Workspace: + + + + + New + + + + + Load + + + + + Save + + + + + Save As + + + + + Particle system: + + + + + Insert New + + + + + Create New + + + + + Reset all + + + + + CZonePage + + + Form + + + + + Targets: + + + + + Avaible targets: + + + + + < + + + + + > + + + + + Bounce + + + + + Destroy + + + + + Bounce factor: + + + + + Core::CMainWindow + + + Object Viewer Qt + + + + + About Object Viewer Qt + + + + + <h2>Object Viewer Qt NG</h2><p> Author: dnk-88 <p>Compiled on %1 %2 + + + + + &Open... + + + + + Open an existing file + + + + + E&xit + + + + + Ctrl+Q + + + + + Exit the application + + + + + &Settings + + + + + Open the settings dialog + + + + + &About + + + + + Show the application's About box + + + + + About &Qt + + + + + Show the Qt library's About box + + + + + About &Plugins + + + + + Show the plugin view dialog + + + + + &File + + + + + &Edit + + + + + &View + + + + + &Tools + + + + + &Help + + + + + StatusReady + + + + + Core::CSearchPathsSettingsPage + + + Search Paths + + + + + General + + + + + Core::CorePlugin + + + New settings + + + + + About plugins + + + + + CurveEditDialog + + + Curve edit + + + + + Left click to add points. +Right click to remove points. + + + + + Zoom: + + + + + Scale curve + + + + + Translate: + + + + + Position curve + + + + + Num samples: + + + + + Last=First + + + + + First=Last + + + + + Display interpolation + + + + + Smoothing + + + + + Ok + + + + + Dialog + + + Dialog + + + + + Browse + + + + + Reload + + + + + End + + + + + Form + + + Form + + + + + Graphics settings + + + + + + Driver + + + + + Qt Style + + + + + Style + + + + + Use style's standard palette + + + + + Use WinAero + + + + + Sound settings + + + + + SoundAutoLoadSample + + + + + SoundEnableOccludeObstruct + + + + + SoundEnableReverb + + + + + SoundManualRolloff + + + + + SoundForceSoftware + + + + + SoundUseADPCM + + + + + SoundMaxTrack + + + + + NLQT::CAnimationSetDialog + + + + Open NeL anim file + + + + + NeL anim files (*.anim);; + + + + + NeL Skeleton Weight Template files (*.swt);; + + + + + NLQT::CAttribFloatWidget + + + value blender + + + + + values gradient + + + + + curve + + + + + value computed from emitter + + + + + binary operator + + + + + NLQT::CAttribIntWidget + + + value exact blender + + + + + values gradient + + + + + value computed from emitter + + + + + binary operator + + + + + NLQT::CAttribPlaneBasisWidget + + + basis gradient + + + + + follow path + + + + + spinner + + + + + values computed from emitter + + + + + binary operator + + + + + NLQT::CAttribRGBAWidget + + + color sampled blender + + + + + color gradient + + + + + color exact blender + + + + + values computed from emitter + + + + + binary operator + + + + + NLQT::CAttribUIntWidget + + + value blender + + + + + values gradient + + + + + value computed from emitter + + + + + binary operator + + + + + NLQT::CAttribWidget + + + Set user param + + + + + NLQT::CBinOpDialog + + + Bin operator + + + + + Arg1 + + + + + Arg2 + + + + + NLQT::CBinOpDialogT + + + Select Arg1 + + + + + Select Arg2 + + + + + Modulate + + + + + Add + + + + + Subtract + + + + + NLQT::CCameraControl + + + CameraControl + + + + + Fly + + + + + Set firstPerson camera mode + + + + + Edit + + + + + Set edit3d camera mode + + + + + Render Mode + + + + + Point mode + + + + + Set point render mode + + + + + Line mode + + + + + Set line render mode + + + + + Fill mode + + + + + Set fill render mode + + + + + Speed: + + + + + Create camera + + + + + Create new camera + + + + + Delete camera + + + + + Delete current camera + + + + + defaultCamera + + + + + Reset camera + + + + + Reset current camera + + + + + %1_Camera + + + + + NLQT::CColorGradientWrapper + + + Color gradient dialog + + + + + NLQT::CDirectionWidget + + + Enter Name + + + + + NLQT::CEmitterPage + + + + + + NeL Particle Editor + + + + + Can't perform operation : the system is flagged with 'No max nb steps' or uses the preset 'Spell FX',and thus, should have a finite duration. This operation create a loop in the system, and so is forbidden. + + + + + Loops with emitters are forbidden. + + + + + + Can't perform operation : the system is flagged with 'No max nb steps' or uses the preset 'Spell FX', and thus, should have a finite duration. Please remove that flag first. + + + + + no emission + + + + + NLQT::CFloatGradientWrapper + + + Float values gradient dialog + + + + + NLQT::CFollowPathDialog + + + Follow path param + + + + + Projection plane: + + + + + No projection + + + + + XY plane + + + + + XZ plane + + + + + YZ plane + + + + + NLQT::CForcePage + + + NeL particle system editor + + + + + The target object last forever. Applying a force on such an object may result in instability in the system after a while. Continue ? (clue : you've been warned..) + + + + + NLQT::CGradientDialog + + + Num samples: + + + + + NLQT::CIntGradientWrapper + + + Int values gradient dialog + + + + + NLQT::CLocatedBindablePage + + + Material + + + + + Size/Angle 2D + + + + + Rotations + + + + + Look At param + + + + + Shock wave param + + + + + Fan Light param + + + + + Tail param + + + + + Mesh param + + + + + + Texture param + + + + + Width + + + + + Height + + + + + Size + + + + + NLQT::CLocatedPage + + + + NeL particle system editor + + + + + The object has force(s) applied on it. If it last forever, its motion can become instable after a while. Continue anyway ? (clue : you've been warned ..) + + + + + Can't perform operation : the system is flagged with 'No max nb steps' or uses the preset 'Spell FX', and thus, should have a finite duration. Please remove that flag first. + + + + + Set the extern ID + + + + + 0 means no extern access. + + + + + NLQT::CMainWindow + + + Open NeL data file + + + + + All NeL files (*.shape *.ps *.ig);;NeL shape files (*.shape);;NeL particle system files (*.ps)NeL Instance Group files (*.ig) + + + + + Open skeleton file + + + + + NeL skeleton file (*.skel) + + + + + About Object Viewer Qt + + + + + <h2>Object Viewer Qt 8-)</h2><p> Authors: dnk-88, sfb, Kaetemi, kervala <p>Compiled on %1 %2 + + + + + &Open... + + + + + Open an existing file + + + + + E&xit + + + + + Ctrl+Q + + + + + Exit the application + + + + + Set &background color + + + + + Set background color + + + + + Reset camera + + + + + Ctrl+R + + + + + Reset current camera + + + + + Ctrl+M + + + + + Change render mode (Line, Point, Filled) + + + + + &Reset scene + + + + + Reset current scene + + + + + + Reload textures + + + + + Save &Screenshot + + + + + Make a screenshot of the current viewport and save + + + + + &Settings + + + + + Settings + + + + + &About + + + + + Show the application's About box + + + + + About &Qt + + + + + Show the Qt library's About box + + + + + + &File + + + + + &View + + + + + &Scene + + + + + + &Tools + + + + + &Help + + + + + StatusReady + + + + + Loading canceled + + + + + File loaded + + + + + NLQT::CMeshWidget + + + Open NeL data file + + + + + NeL shape file (*.shape) + + + + + Shape loading error + + + + + Error in morph meshes + + + + + Not a mesh + + + + + Shape not loaded + + + + + Too much vertices + + + + + NLQT::CMorphMeshDialog + + + vertices + + + + + (%1 vertices) + + + + + + + Open NeL data file + + + + + + + NeL shape files (*.shape) + + + + + NLQT::CParticleControlDialog + + + Num particles: + + + + + Num wanted faces: + + + + + System time: + + + + + Num particles: %1 + + + + + Num wanted faces: %1 + + + + + System time: %1 + + + + + NLQT::CParticleSystemPage + + + Are you sure? + + + + + Load balancing on/off + + + + + Can't perform operation : the system is flagged with 'No max nb steps' or uses the preset 'Spell FX', and thus, should have a finite duration. Please remove that flag first. + + + + + The system must have a finite duration for this setting! Please check that the following object doesn't live forever or doesn't create a loop in the system : + + + + + The system must have a finite duration for this setting! Please check that. + + + + + NLQT::CParticleTextureWidget + + + Open texture file + + + + + Image file (*.tga *.png) + + + + + Texture loading error + + + + + Name: + + + + + Size: + + + + + Depth: + + + + + Name: %1 + + + + + Size: %1x%2 + + + + + Depth: %1 + + + + + NLQT::CParticleWorkspaceDialog + + + Set as active particle system + + + + + Save + + + + + Save as + + + + + Clear content + + + + + Remove from workspace + + + + + Merge + + + + + New located + + + + + Paste located + + + + + Force ZBias + + + + + Instanciate + + + + + Copy located + + + + + Copy bindable + + + + + Paste bindable + + + + + Delete + + + + + All LOD + + + + + LOD 1 + + + + + LOD 2 + + + + + extern ID + + + + + + + + + NeL particle system editor + + + + + uses auto count feature, and it has been modified. You should run the system entirely at least once at full detail before saving so that the editor can compute the number of particles in the system. If user params are used to modify system aspect, you should run the system for extreme cases before saving. + + + + + Save as ps file + + + + + ps files (*.ps) + + + + + Clear content ? + + + + + + Can't perform operation : the system is flagged with 'No max nb steps' or uses the preset 'Spell FX', and thus, should have a finite duration. Please remove that flag first. + + + + + The system is flagged with 'No max Nb steps', or uses the preset 'Spell FX'.System must have finite duration. Can't add object. To solve this, set a limited life time for the father. + + + + + All object force ZBias + + + + + Set the extern ID + + + + + 0 means no extern access. + + + + + Bind particle... + + + + + Bind force... + + + + + Bind zone... + + + + + Bind emitter... + + + + + NLQT::CPlaneBasisGradientWrapper + + + Plane basis gradient dialog + + + + + NLQT::CPropertyDialog + + + Property editor + + + + + NLQT::CSettingsDialog + + + Settings + + + + + Graphics and sound settings take after restart the program + + + + + Set new tile bank + + + + + Tile Bank file (*.smallbank *.bank);; + + + + + Set new tile far bank + + + + + Tile Far Bank file (*.farbank);; + + + + + Set MicroVegetable texture + + + + + Texture file (*.tga *.png *.jpg *.dds);; + + + + + Add zone files + + + + + Zonel files (*.zonel *.zone);; + + + + + NLQT::CSkeletonScaleDialog + + + + + + + + + Skeleton scale editor + + + + + + + Failed to open file for write! + + + + + Save As Skeleton File + + + + + Skeleton files (*.skel);; + + + + + Open Skeleton Scale File + + + + + + SkelScale files (*.scale);; + + + + + Failed to open file for read! + + + + + Save As Skeleton Scale File + + + + + + Failed to save file! + + + + + Failed to load file! + + + + + NLQT::CSlotGroupBox + + + + + Slot %1 : + + + + + + empty + + + + + Select your anim + + + + + Animation: + + + + + Select your skel + + + + + Skeleton weight template: + + + + + NLQT::CSlotManagerDialog + + + Slot %1 : empty : empty + + + + + Slot %1 + + + + + Slot manager + + + + + NLQT::CSoundPage + + + Select your sound + + + + + Sound: + + + + + NLQT::CSpinnerDialog + + + Edit spinner + + + + + Nb samples: + + + + + NLQT::CTextureGradientInterface + + + Texture grouped dialog + + + + + NLQT::CUIntGradientWrapper + + + UInt values gradient dialog + + + + + NLQT::CValueBlenderDialog + + + Value blender + + + + + Start value: + + + + + End value: + + + + + NLQT::CValueFromEmitterDialog + + + Value from emitter + + + + + NLQT::CVegetableApperancePage + + + Select on other vegetables + + + + + Select the other vegetable to copy color. + + + + + NLQT::CVegetableDensityPage + + + Open Vegetable Shape + + + + + veget files (*.veget);; + + + + + NLQT::CVegetableDialog + + + Load a new vegetset file + + + + + + vegetset files (*.vegetset);; + + + + + Append vegetset file + + + + + Save Vegetable Set + + + + + VegetSetFiles (*.vegetset);; + + + + + Open Vegetable Descriptor + + + + + vegetdesc files (*.vegetdesc);; + + + + + Save Vegetable Descriptor + + + + + VegetDescFiles (*.vegetdesc);; + + + + + NLQT::CWorkspacePage + + + Create new pws file + + + + + + pws files (*.pws) + + + + + + Open NeL data file + + + + + Particle Workspace file (*.pws);; + + + + + Save as pws file + + + + + Particle System file (*.ps);; + + + + + + + NeL particle system editor + + + + + Create new particle system file + + + + + ps files (*.ps) + + + + + Failed to create new particle system + + + + + Plugin::CCoreListener + + + Example close event hook + + + + + Do you want to close window? + + + + + Plugin::CExampleAppPage + + + SimpleViewer + + + + + Plugin::CExampleSettingsPage + + + Example page + + + + + General + + + + + Plugin::MyPlugin + + + Not found QMainWindow Object Viewer Qt. + + + + + Not found QMenu Help. + + + + + Plugin::SheetBuilderPlugin + + + Not found MainWindow Object Viewer Qt. + + + + + Not found QMenu Tools. + + + + + SheetBuilderConfigDialog + + + Paths: + + + + + + Add + + + + + + Delete + + + + + Output file: + + + + + Browse... + + + + + Allowed extensions: + + + + + OK + + + + + Cancel + + + + + Sheet builder configuration + + + + + Choose output file + + + + + SheetBuilderDialog + + + Make sheet + + + + + Close + + + + + Clean unwanted types from input + + + + + Show/Hide details... + + + + + Settings + + + + + Sheet builder + + + + diff --git a/code/nel/tools/3d/object_viewer_qt/src/translations/object_viewer_qt_en.qm b/code/nel/tools/3d/object_viewer_qt/src/translations/object_viewer_qt_en.qm new file mode 100644 index 0000000000000000000000000000000000000000..9dad8dffceb9623e88f8b96d9cd0caf25574c6fa GIT binary patch literal 23 fcmcE7ks@*G{hX<16=n7(EZlpygMop8iIEWihQJ9+ literal 0 HcmV?d00001 diff --git a/code/nel/tools/3d/object_viewer_qt/src/translations/object_viewer_qt_en.ts b/code/nel/tools/3d/object_viewer_qt/src/translations/object_viewer_qt_en.ts new file mode 100644 index 000000000..af528c687 --- /dev/null +++ b/code/nel/tools/3d/object_viewer_qt/src/translations/object_viewer_qt_en.ts @@ -0,0 +1,4908 @@ + + + + + Application + + + Object Viewer Qt - Plugin loader messages + + + + + CAnimationDialog + + + Animation control + + + + + Loop + + + + + In place + + + + + Increment pos + + + + + Use the PlayList + + + + + Use the Mixer + + + + + Play/Pause + + + + + Stop + + + + + CAnimationSetDialog + + + Animation set manager + + + + + Edited object: + + + + + Animations: + + + + + Add anim + + + + + Skeleton weight template: + + + + + Add swt + + + + + Animations playlist: + + + + + Unload all anim and swt files + + + + + Add anim in PlayList + + + + + Delete anim from PlayList + + + + + Set duration of time in Animation control + + + + + CAttribWidget + + + GroupBox + + + + + Constant + + + + + Scheme + + + + + Input mutliplier: + + + + + Clamp + + + + + E + + + + + Src: + + + + + Date + + + + + Position + + + + + Inverse Mass + + + + + Speed + + + + + Random + + + + + User param + + + + + LOD + + + + + Square LOD + + + + + Clamped LOD + + + + + Camped square LOD + + + + + U + + + + + P + + + + + G + + + + + CAutoLODDialog + + + Auto LOD + + + + + Start percent DIST: + + + + + Max dist BIAS: + + + + + Degradation exponent: + + + + + Skip particles + + + + + CBasicEditWidget + + + Form + + + + + Psi + + + + + Theta + + + + + Phi + + + + + CColorEditWidget + + + Form + + + + + Browse + + + + + CConstraintMeshWidget + + + Form + + + + + Force stage modulation + + + + + Stage 0 + + + + + Stage 1 + + + + + Stage 2 + + + + + Stage 3 + + + + + Force vertex color lighting + + + + + Texture anim type: + + + + + None + + + + + Global + + + + + Reinit when new element is created + + + + + Stage: + + + + + Translation + + + + + + V Start: + + + + + + U Speed: + + + + + + V Speed: + + + + + + U Accel: + + + + + + V Accel: + + + + + + U Start: + + + + + Scale + + + + + Rotation + + + + + Speed: + + + + + Accel: + + + + + CDayNightDialog + + + Day/Night + + + + + Day + + + + + Night + + + + + CDirectionWidget + + + Form + + + + + Direction: + + + + + +I + + + + + +J + + + + + +K + + + + + -I + + + + + -J + + + + + -K + + + + + Global + + + + + CEditRangeFloatWidget + + + Form + + + + + CEditRangeUIntWidget + + + Form + + + + + CEmitterPage + + + Form + + + + + General + + + + + Emitted type: + + + + + Type of emission: + + + + + Regular + + + + + On death + + + + + Once + + + + + On bounce + + + + + External only + + + + + Direction: + + + + + Default + + + + + Direction is aligned on the emitter direction + + + + + Direction is in world + + + + + Direction is local to the system + + + + + User + + + + + Force consistent emission + + + + + Bypass Auto-LOD + + + + + Speed inheritance factor: + + + + + Delayed emission: + + + + + Max Emission Count: + + + + + Radius: + + + + + + Emission period + + + + + Emission quantity/Speed + + + + + Emission quantity + + + + + Strenght modulation + + + + + CExampleSettingsPage + + + Form + + + + + GroupBox + + + + + + PushButton + + + + + + RadioButton + + + + + CheckBox + + + + + CForcePage + + + Form + + + + + Targets: + + + + + Avaible targets: + + + + + < + + + + + > + + + + + Parametric factor: + + + + + Radial viscosity: + + + + + Tangential viscosity: + + + + + Force intensity + + + + + CGlobalWindDialog + + + Weather + + + + + Power: + + + + + CLightPage + + + Form + + + + + Light color + + + + + Attenuation start/end + + + + + Attenuation start + + + + + Attenuation end + + + + + CLocatedBindablePage + + + Form + + + + + Blending mode: + + + + + Add + + + + + Modulate + + + + + Alpha blend + + + + + Alpha test + + + + + No AutoLOD + + + + + Global color lighting + + + + + Z-Test + + + + + ZBias: + + + + + Color + + + + + Independent size + + + + + Height + + + + + Width + + + + + Size + + + + + Angle 2D + + + + + Rotation + + + + + hint / precomputed rotations + + + + + Rot speed min: + + + + + Rot speed max: + + + + + Nb models: + + + + + Align on motion + + + + + Z-Align + + + + + Fake motion blur coeff.: + + + + + Fake motion blur treshold: + + + + + Radius cut: + + + + + + Number of segments: + + + + + Duration segment: + + + + + + Texture U factor: + + + + + Number fan light: + + + + + Phase smoothnes: + + + + + Fan light speed: + + + + + Fan light intensity: + + + + + Texture V factor: + + + + + Non parametric anim only + + + + + Force constant length(m): + + + + + LOD degradation: + + + + + Trail coord. system: + + + + + Local + + + + + World + + + + + User + + + + + Father coord. system + + + + + Use hermitte interpolation + + + + + CLocatedPage + + + Form + + + + + General + + + + + Coord system: + + + + + Particles are local to the system + + + + + Particles are in world + + + + + User + + + + + Disgrade with lod + + + + + Parametric motion + + + + + Max number of particles: + + + + + Set current count particles + + + + + Life time + + + + + Limited life time + + + + + Triger on death + + + + + Edit + + + + + Particle mass + + + + + CLogPlugin + + + Log + + + + + CMeshWidget + + + GroupBox + + + + + Shape: + + + + + Browse + + + + + Shape not loaded + + + + + Morph + + + + + Edit + + + + + CMorphMeshDialog + + + Morph mesh edit + + + + + Add + + + + + Change + + + + + Insert + + + + + Remove + + + + + Up + + + + + Down + + + + + Warning: Shapes not found and incompatibles !! + + + + + CMultiTexDialog + + + Multitexturing + + + + + Main tex + + + + + + U speed 1: + + + + + + V speed 1: + + + + + + U speed 2: + + + + + + V speed 2: + + + + + Bump factor: + + + + + Use particle data + + + + + + Tex op: + + + + + + Add + + + + + + Modulate + + + + + + Decal + + + + + EnvBumpMap + + + + + Alternate tex + + + + + Use particle data all + + + + + Force basic caps + + + + + Enable alternate + + + + + CPSMoverPage + + + Form + + + + + Position: + + + + + X: + + + + + Y: + + + + + Z: + + + + + Sub component: + + + + + Scale X: + + + + + Scale Y: + + + + + Scale Z: + + + + + Scale: + + + + + CParticleControlDialog + + + Particles system control + + + + + Loop + + + + + Display helpers + + + + + Enable auto count + + + + + Display box + + + + + All particle system + + + + + Reset auto count + + + + + Link play to scene play + + + + + Link to skeleton + + + + + Unlink + + + + + Restick all objects + + + + + Set anim + + + + + Clear anim + + + + + General + + + + + Additional + + + + + Num particles:9999999 + + + + + Num wanted faces:9999999 + + + + + System time:99999999999 + + + + + CParticleLinkDialog + + + Link to skeleton + + + + + Choose bone to stick particle system + + + + + Link + + + + + Unlink + + + + + CParticleSystemPage + + + Form + + + + + Integration + + + + + Enable load balancing + + + + + Accurate integration + + + + + Enable motion slowDown + + + + + Time threshold: + + + + + Max steps: + + + + + Lock + + + + + User param + + + + + User param1: + + + + + + + + Global + + + + + User param2: + + + + + User param3: + + + + + User param4: + + + + + PBBox / LOD param + + + + + Enable Precomputed Bounding Box + + + + + Auto + + + + + Reset + + + + + X: + + + + + Y: + + + + + Z: + + + + + +10 % + + + + + -10 % + + + + + Sharable + + + + + Auto-LOD + + + + + Settings + + + + + Max view dist: + + + + + LOD Ratio: + + + + + Global color + + + + + Force global lighting + + + + + Edit global color + + + + + Wrn: Bypass multitex, not supported by all types + + + + + Life mgt param + + + + + Life mgt presets: + + + + + Environment FX + + + + + Running Environment FX + + + + + Spell FX + + + + + Looping Spell FX + + + + + Minor transitory FX + + + + + User defined + + + + + Moving Looping FX + + + + + Spawned Environment FX + + + + + Ground FX + + + + + Projectile FX + + + + + Model removed when out of range + + + + + PS resource removed when not visible + + + + + Force life time update + + + + + No max nb steps + + + + + Anim type: + + + + + Die on event: + + + + + When visible + + + + + When in visible clusters + + + + + Always + + + + + Disabled + + + + + No more particles + + + + + No more particles/emitters + + + + + Apply after delay: + + + + + s + + + + + Auto delay + + + + + CParticleTextureAnimWidget + + + Form + + + + + Enable texture anim + + + + + Texture grouped + + + + + Multitexturing + + + + + Edit + + + + + CParticleTextureWidget + + + Form + + + + + Choose texture + + + + + Remove + + + + + Name: + + + + + Size: + + + + + Depth: + + + + + CParticleWorkspaceDialog + + + Tree workspace + + + + + CPluginSpec + + + File does not exist: %1 + + + + + Could not open file for read: %1 + + + + + Loading the library failed because state != Resolved + + + + + Plugin is not valid (does not derive from IPlugin) + + + + + Initializing the plugin failed because state != Loaded) + + + + + Internal error: have no plugin instance to initialize + + + + + Plugin initialization failed: %1 + + + + + Cannot perform extensionsInitialized because state != Initialized + + + + + Internal error: have no plugin instance to perform extensionsInitialized + + + + + CPluginView + + + About plugins + + + + + State + + + + + Name + + + + + Version + + + + + Vendor + + + + + Location + + + + + Details + + + + + Error details + + + + + Close + + + + + All objects list + + + + + CSearchPathsSettingsPage + + + Form + + + + + Search paths + + + + + + + + ... + + + + + CSettingsDialog + + + + Settings + + + + + 0 + + + + + Graphics + + + + + Sound + + + + + Paths + + + + + Vegetable + + + + + Graphics settings + + + + + + Driver + + + + + Bloom effect + + + + + Bloom density + + + + + Square bloom + + + + + Enable bloom effect + + + + + Qt Style + + + + + Style + + + + + Use style's standard palette + + + + + Sound settings + + + + + SoundAutoLoadSample + + + + + SoundEnableOccludeObstruct + + + + + SoundEnableReverb + + + + + SoundManualRolloff + + + + + SoundForceSoftware + + + + + SoundUseADPCM + + + + + SoundMaxTrack + + + + + Search paths + + + + + + + + + + + + + ... + + + + + Setup Landscape + + + + + Tile bank: + + + + + Tile far bank: + + + + + Vegetable texture: + + + + + Landscape zones: + + + + + CSetupFog + + + Setup fog + + + + + Start: + + + + + End: + + + + + Enable fog + + + + + Color + + + + + Apply + + + + + CSkeletonScaleDialog + + + Skeleton scale edition + + + + + Bone scale + + + + + + X: + + + + + + + + + + + + + + + + % + + + + + + Y: + + + + + + Z: + + + + + Skin scale (slower) + + + + + Mirror selected + + + + + Undo + + + + + Redo + + + + + Save .skel + + + + + Save as + + + + + Load .scale + + + + + Save .scale + + + + + CSlotGroupBox + + + GroupBox + + + + + Slot _:empty + + + + + Start blend + + + + + End blend + + + + + Offset frame + + + + + Speed x + + + + + Start frame + + + + + End frame + + + + + Smooth + + + + + Wrap mode: + + + + + Clamp + + + + + Repeat + + + + + Disable + + + + + Set anim + + + + + Set skel + + + + + Align blend + + + + + Enable + + + + + Invert skeleton weight + + + + + CSoundPage + + + Form + + + + + General + + + + + Sound name + + + + + Browse + + + + + Play + + + + + Spawn + + + + + Mute + + + + + Keep original pitch + + + + + Emission percent: + + + + + Sound volume + + + + + Sound pitch + + + + + CSunColorDialog + + + Sun color + + + + + Diffuse: + + + + + Ambient + + + + + Specular: + + + + + CTailParticleWidget + + + Form + + + + + Ribbon orientation + + + + + Follow Path + + + + + Follow Path XY + + + + + Identity + + + + + Tail shape + + + + + Triangle + + + + + Quad + + + + + Octogon + + + + + Pentagram + + + + + Simple segment X + + + + + Simple segment Y + + + + + Simple segment Z + + + + + Simple brace + + + + + Tail fading + + + + + CTuneMRMDialog + + + Tune MRM (The maximum faces in scene) + + + + + Max (specify the max value) + + + + + Current (real final max polygon value) + + + + + CTuneTimerDialog + + + Time interval update render + + + + + ms + + + + + CVegetNoiseValueWidget + + + GroupBox + + + + + AbsValue: + + + + + *3 + + + + + 100% + + + + + /3 + + + + + RandValue: + + + + + Frequency: + + + + + CVegetableApperancePage + + + Form + + + + + Bend Phase + + + + + Bend Factor + + + + + Color Noise + + + + + Color setup + + + + + Double cliclk to change color + + + + + Get List from other + + + + + CVegetableDensityPage + + + Form + + + + + Vegetable mesh selection + + + + + Browse + + + + + Distance of creation + + + + + 0 m + + + + + Density + + + + + MaxDensity + + + + + MaxDensity enabled + + + + + Angle setup + + + + + Angle Mode: + + + + + Floor + + + + + Wall + + + + + Ceiling + + + + + AngleMin + + + + + AngleMax + + + + + CVegetableDialog + + + Vegetable editor + + + + + Vegetables: + + + + + List edition + + + + + Add vegetable + + + + + Insert vegetable + + + + + Remove vegetable + + + + + Clear all vegetables + + + + + Copy Vegetable + + + + + Load .vegetdesc + + + + + Save .vegetdesc + + + + + List Save/Load + + + + + Load .vegetset + + + + + Append .vegetset + + + + + Save .vegetset + + + + + Display Vegetables + + + + + Landscape + + + + + General/Density + + + + + Appearance + + + + + Scale + + + + + Rotation + + + + + CVegetableLandscapePage + + + Form + + + + + Setup Wind + + + + + Power: + + + + + Bend Start: + + + + + Frequency + + + + + Ambient color + + + + + Diffuse color + + + + + Show Vegetable Lands + + + + + Snap Camera To Ground + + + + + CVegetableRotatePage + + + Form + + + + + Rotate X + + + + + Rotate Y + + + + + Rotate Z + + + + + CVegetableScalePage + + + Form + + + + + Scale X/Y + + + + + Scale Z + + + + + Bend Frequency Factor + + + + + CWaterPoolDialog + + + Water pool editor + + + + + Pool ID List: + + + + + Add + + + + + Delete + + + + + Name... + + + + + Size: + + + + + 16 + + + + + 32 + + + + + 64 + + + + + 128 + + + + + 256 + + + + + 512 + + + + + Water Unit Size: + + + + + Damping: + + + + + Filter weight: + + + + + Propagation time: + + + + + Enable automatic waves generation + + + + + Waves + + + + + Impulsion strenght: + + + + + Period: + + + + + Impulsion radius: + + + + + Generate on border only + + + + + Load + + + + + Save + + + + + CWorkspacePage + + + Form + + + + + Particle system editor + + + + + Workspace: + + + + + New + + + + + Load + + + + + Save + + + + + Save As + + + + + Particle system: + + + + + Insert New + + + + + Create New + + + + + Reset all + + + + + CZonePage + + + Form + + + + + Targets: + + + + + Avaible targets: + + + + + < + + + + + > + + + + + Bounce + + + + + Destroy + + + + + Bounce factor: + + + + + Core::CMainWindow + + + Object Viewer Qt + + + + + About Object Viewer Qt + + + + + <h2>Object Viewer Qt NG</h2><p> Author: dnk-88 <p>Compiled on %1 %2 + + + + + &Open... + + + + + Open an existing file + + + + + E&xit + + + + + Ctrl+Q + + + + + Exit the application + + + + + &Settings + + + + + Open the settings dialog + + + + + &About + + + + + Show the application's About box + + + + + About &Qt + + + + + Show the Qt library's About box + + + + + About &Plugins + + + + + Show the plugin view dialog + + + + + &File + + + + + &Edit + + + + + &View + + + + + &Tools + + + + + &Help + + + + + StatusReady + + + + + Core::CSearchPathsSettingsPage + + + Search Paths + + + + + General + + + + + Core::CorePlugin + + + New settings + + + + + About plugins + + + + + CurveEditDialog + + + Curve edit + + + + + Left click to add points. +Right click to remove points. + + + + + Zoom: + + + + + Scale curve + + + + + Translate: + + + + + Position curve + + + + + Num samples: + + + + + Last=First + + + + + First=Last + + + + + Display interpolation + + + + + Smoothing + + + + + Ok + + + + + Dialog + + + Dialog + + + + + Browse + + + + + Reload + + + + + End + + + + + Form + + + Form + + + + + Graphics settings + + + + + + Driver + + + + + Qt Style + + + + + Style + + + + + Use style's standard palette + + + + + Use WinAero + + + + + Sound settings + + + + + SoundAutoLoadSample + + + + + SoundEnableOccludeObstruct + + + + + SoundEnableReverb + + + + + SoundManualRolloff + + + + + SoundForceSoftware + + + + + SoundUseADPCM + + + + + SoundMaxTrack + + + + + NLQT::CAnimationSetDialog + + + + Open NeL anim file + + + + + NeL anim files (*.anim);; + + + + + NeL Skeleton Weight Template files (*.swt);; + + + + + NLQT::CAttribFloatWidget + + + value blender + + + + + values gradient + + + + + curve + + + + + value computed from emitter + + + + + binary operator + + + + + NLQT::CAttribIntWidget + + + value exact blender + + + + + values gradient + + + + + value computed from emitter + + + + + binary operator + + + + + NLQT::CAttribPlaneBasisWidget + + + basis gradient + + + + + follow path + + + + + spinner + + + + + values computed from emitter + + + + + binary operator + + + + + NLQT::CAttribRGBAWidget + + + color sampled blender + + + + + color gradient + + + + + color exact blender + + + + + values computed from emitter + + + + + binary operator + + + + + NLQT::CAttribUIntWidget + + + value blender + + + + + values gradient + + + + + value computed from emitter + + + + + binary operator + + + + + NLQT::CAttribWidget + + + Set user param + + + + + NLQT::CBinOpDialog + + + Bin operator + + + + + Arg1 + + + + + Arg2 + + + + + NLQT::CBinOpDialogT + + + Select Arg1 + + + + + Select Arg2 + + + + + Modulate + + + + + Add + + + + + Subtract + + + + + NLQT::CCameraControl + + + CameraControl + + + + + Fly + + + + + Set firstPerson camera mode + + + + + Edit + + + + + Set edit3d camera mode + + + + + Render Mode + + + + + Point mode + + + + + Set point render mode + + + + + Line mode + + + + + Set line render mode + + + + + Fill mode + + + + + Set fill render mode + + + + + Speed: + + + + + Create camera + + + + + Create new camera + + + + + Delete camera + + + + + Delete current camera + + + + + defaultCamera + + + + + Reset camera + + + + + Reset current camera + + + + + %1_Camera + + + + + NLQT::CColorGradientWrapper + + + Color gradient dialog + + + + + NLQT::CDirectionWidget + + + Enter Name + + + + + NLQT::CEmitterPage + + + + + + NeL Particle Editor + + + + + Can't perform operation : the system is flagged with 'No max nb steps' or uses the preset 'Spell FX',and thus, should have a finite duration. This operation create a loop in the system, and so is forbidden. + + + + + Loops with emitters are forbidden. + + + + + + Can't perform operation : the system is flagged with 'No max nb steps' or uses the preset 'Spell FX', and thus, should have a finite duration. Please remove that flag first. + + + + + no emission + + + + + NLQT::CFloatGradientWrapper + + + Float values gradient dialog + + + + + NLQT::CFollowPathDialog + + + Follow path param + + + + + Projection plane: + + + + + No projection + + + + + XY plane + + + + + XZ plane + + + + + YZ plane + + + + + NLQT::CForcePage + + + NeL particle system editor + + + + + The target object last forever. Applying a force on such an object may result in instability in the system after a while. Continue ? (clue : you've been warned..) + + + + + NLQT::CGradientDialog + + + Num samples: + + + + + NLQT::CIntGradientWrapper + + + Int values gradient dialog + + + + + NLQT::CLocatedBindablePage + + + Material + + + + + Size/Angle 2D + + + + + Rotations + + + + + Look At param + + + + + Shock wave param + + + + + Fan Light param + + + + + Tail param + + + + + Mesh param + + + + + + Texture param + + + + + Width + + + + + Height + + + + + Size + + + + + NLQT::CLocatedPage + + + + NeL particle system editor + + + + + The object has force(s) applied on it. If it last forever, its motion can become instable after a while. Continue anyway ? (clue : you've been warned ..) + + + + + Can't perform operation : the system is flagged with 'No max nb steps' or uses the preset 'Spell FX', and thus, should have a finite duration. Please remove that flag first. + + + + + Set the extern ID + + + + + 0 means no extern access. + + + + + NLQT::CMainWindow + + + Open NeL data file + + + + + All NeL files (*.shape *.ps *.ig);;NeL shape files (*.shape);;NeL particle system files (*.ps)NeL Instance Group files (*.ig) + + + + + Open skeleton file + + + + + NeL skeleton file (*.skel) + + + + + About Object Viewer Qt + + + + + <h2>Object Viewer Qt 8-)</h2><p> Authors: dnk-88, sfb, Kaetemi, kervala <p>Compiled on %1 %2 + + + + + &Open... + + + + + Open an existing file + + + + + E&xit + + + + + Ctrl+Q + + + + + Exit the application + + + + + Set &background color + + + + + Set background color + + + + + Reset camera + + + + + Ctrl+R + + + + + Reset current camera + + + + + Ctrl+M + + + + + Change render mode (Line, Point, Filled) + + + + + &Reset scene + + + + + Reset current scene + + + + + + Reload textures + + + + + Save &Screenshot + + + + + Make a screenshot of the current viewport and save + + + + + &Settings + + + + + Settings + + + + + &About + + + + + Show the application's About box + + + + + About &Qt + + + + + Show the Qt library's About box + + + + + + &File + + + + + &View + + + + + &Scene + + + + + + &Tools + + + + + &Help + + + + + StatusReady + + + + + Loading canceled + + + + + File loaded + + + + + NLQT::CMeshWidget + + + Open NeL data file + + + + + NeL shape file (*.shape) + + + + + Shape loading error + + + + + Error in morph meshes + + + + + Not a mesh + + + + + Shape not loaded + + + + + Too much vertices + + + + + NLQT::CMorphMeshDialog + + + vertices + + + + + (%1 vertices) + + + + + + + Open NeL data file + + + + + + + NeL shape files (*.shape) + + + + + NLQT::CParticleControlDialog + + + Num particles: + + + + + Num wanted faces: + + + + + System time: + + + + + Num particles: %1 + + + + + Num wanted faces: %1 + + + + + System time: %1 + + + + + NLQT::CParticleSystemPage + + + Are you sure? + + + + + Load balancing on/off + + + + + Can't perform operation : the system is flagged with 'No max nb steps' or uses the preset 'Spell FX', and thus, should have a finite duration. Please remove that flag first. + + + + + The system must have a finite duration for this setting! Please check that the following object doesn't live forever or doesn't create a loop in the system : + + + + + The system must have a finite duration for this setting! Please check that. + + + + + NLQT::CParticleTextureWidget + + + Open texture file + + + + + Image file (*.tga *.png) + + + + + Texture loading error + + + + + Name: + + + + + Size: + + + + + Depth: + + + + + Name: %1 + + + + + Size: %1x%2 + + + + + Depth: %1 + + + + + NLQT::CParticleWorkspaceDialog + + + Set as active particle system + + + + + Save + + + + + Save as + + + + + Clear content + + + + + Remove from workspace + + + + + Merge + + + + + New located + + + + + Paste located + + + + + Force ZBias + + + + + Instanciate + + + + + Copy located + + + + + Copy bindable + + + + + Paste bindable + + + + + Delete + + + + + All LOD + + + + + LOD 1 + + + + + LOD 2 + + + + + extern ID + + + + + + + + + NeL particle system editor + + + + + uses auto count feature, and it has been modified. You should run the system entirely at least once at full detail before saving so that the editor can compute the number of particles in the system. If user params are used to modify system aspect, you should run the system for extreme cases before saving. + + + + + Save as ps file + + + + + ps files (*.ps) + + + + + Clear content ? + + + + + + Can't perform operation : the system is flagged with 'No max nb steps' or uses the preset 'Spell FX', and thus, should have a finite duration. Please remove that flag first. + + + + + The system is flagged with 'No max Nb steps', or uses the preset 'Spell FX'.System must have finite duration. Can't add object. To solve this, set a limited life time for the father. + + + + + All object force ZBias + + + + + Set the extern ID + + + + + 0 means no extern access. + + + + + Bind particle... + + + + + Bind force... + + + + + Bind zone... + + + + + Bind emitter... + + + + + NLQT::CPlaneBasisGradientWrapper + + + Plane basis gradient dialog + + + + + NLQT::CPropertyDialog + + + Property editor + + + + + NLQT::CSettingsDialog + + + Settings + + + + + Graphics and sound settings take after restart the program + + + + + Set new tile bank + + + + + Tile Bank file (*.smallbank *.bank);; + + + + + Set new tile far bank + + + + + Tile Far Bank file (*.farbank);; + + + + + Set MicroVegetable texture + + + + + Texture file (*.tga *.png *.jpg *.dds);; + + + + + Add zone files + + + + + Zonel files (*.zonel *.zone);; + + + + + NLQT::CSkeletonScaleDialog + + + + + + + + + Skeleton scale editor + + + + + + + Failed to open file for write! + + + + + Save As Skeleton File + + + + + Skeleton files (*.skel);; + + + + + Open Skeleton Scale File + + + + + + SkelScale files (*.scale);; + + + + + Failed to open file for read! + + + + + Save As Skeleton Scale File + + + + + + Failed to save file! + + + + + Failed to load file! + + + + + NLQT::CSlotGroupBox + + + + + Slot %1 : + + + + + + empty + + + + + Select your anim + + + + + Animation: + + + + + Select your skel + + + + + Skeleton weight template: + + + + + NLQT::CSlotManagerDialog + + + Slot %1 : empty : empty + + + + + Slot %1 + + + + + Slot manager + + + + + NLQT::CSoundPage + + + Select your sound + + + + + Sound: + + + + + NLQT::CSpinnerDialog + + + Edit spinner + + + + + Nb samples: + + + + + NLQT::CTextureGradientInterface + + + Texture grouped dialog + + + + + NLQT::CUIntGradientWrapper + + + UInt values gradient dialog + + + + + NLQT::CValueBlenderDialog + + + Value blender + + + + + Start value: + + + + + End value: + + + + + NLQT::CValueFromEmitterDialog + + + Value from emitter + + + + + NLQT::CVegetableApperancePage + + + Select on other vegetables + + + + + Select the other vegetable to copy color. + + + + + NLQT::CVegetableDensityPage + + + Open Vegetable Shape + + + + + veget files (*.veget);; + + + + + NLQT::CVegetableDialog + + + Load a new vegetset file + + + + + + vegetset files (*.vegetset);; + + + + + Append vegetset file + + + + + Save Vegetable Set + + + + + VegetSetFiles (*.vegetset);; + + + + + Open Vegetable Descriptor + + + + + vegetdesc files (*.vegetdesc);; + + + + + Save Vegetable Descriptor + + + + + VegetDescFiles (*.vegetdesc);; + + + + + NLQT::CWorkspacePage + + + Create new pws file + + + + + + pws files (*.pws) + + + + + + Open NeL data file + + + + + Particle Workspace file (*.pws);; + + + + + Save as pws file + + + + + Particle System file (*.ps);; + + + + + + + NeL particle system editor + + + + + Create new particle system file + + + + + ps files (*.ps) + + + + + Failed to create new particle system + + + + + Plugin::CCoreListener + + + Example close event hook + + + + + Do you want to close window? + + + + + Plugin::CExampleAppPage + + + SimpleViewer + + + + + Plugin::CExampleSettingsPage + + + Example page + + + + + General + + + + + Plugin::MyPlugin + + + Not found QMainWindow Object Viewer Qt. + + + + + Not found QMenu Help. + + + + + Plugin::SheetBuilderPlugin + + + Not found MainWindow Object Viewer Qt. + + + + + Not found QMenu Tools. + + + + + SheetBuilderConfigDialog + + + Paths: + + + + + + Add + + + + + + Delete + + + + + Output file: + + + + + Browse... + + + + + Allowed extensions: + + + + + OK + + + + + Cancel + + + + + Sheet builder configuration + + + + + Choose output file + + + + + SheetBuilderDialog + + + Make sheet + + + + + Close + + + + + Clean unwanted types from input + + + + + Show/Hide details... + + + + + Settings + + + + + Sheet builder + + + + diff --git a/code/nel/tools/3d/object_viewer_qt/src/translations/object_viewer_qt_fr.qm b/code/nel/tools/3d/object_viewer_qt/src/translations/object_viewer_qt_fr.qm new file mode 100644 index 0000000000000000000000000000000000000000..c02994cafb69a42d7f77c4004edd5eae08bb0f3b GIT binary patch literal 23 fcmcE7ks@*G{hX<16=n7(EZlpygMop8iJ1`qhQtX? literal 0 HcmV?d00001 diff --git a/code/nel/tools/3d/object_viewer_qt/src/translations/object_viewer_qt_fr.ts b/code/nel/tools/3d/object_viewer_qt/src/translations/object_viewer_qt_fr.ts new file mode 100644 index 000000000..73aa384c0 --- /dev/null +++ b/code/nel/tools/3d/object_viewer_qt/src/translations/object_viewer_qt_fr.ts @@ -0,0 +1,4908 @@ + + + + + Application + + + Object Viewer Qt - Plugin loader messages + + + + + CAnimationDialog + + + Animation control + + + + + Loop + + + + + In place + + + + + Increment pos + + + + + Use the PlayList + + + + + Use the Mixer + + + + + Play/Pause + + + + + Stop + + + + + CAnimationSetDialog + + + Animation set manager + + + + + Edited object: + + + + + Animations: + + + + + Add anim + + + + + Skeleton weight template: + + + + + Add swt + + + + + Animations playlist: + + + + + Unload all anim and swt files + + + + + Add anim in PlayList + + + + + Delete anim from PlayList + + + + + Set duration of time in Animation control + + + + + CAttribWidget + + + GroupBox + + + + + Constant + + + + + Scheme + + + + + Input mutliplier: + + + + + Clamp + + + + + E + + + + + Src: + + + + + Date + + + + + Position + + + + + Inverse Mass + + + + + Speed + + + + + Random + + + + + User param + + + + + LOD + + + + + Square LOD + + + + + Clamped LOD + + + + + Camped square LOD + + + + + U + + + + + P + + + + + G + + + + + CAutoLODDialog + + + Auto LOD + + + + + Start percent DIST: + + + + + Max dist BIAS: + + + + + Degradation exponent: + + + + + Skip particles + + + + + CBasicEditWidget + + + Form + + + + + Psi + + + + + Theta + + + + + Phi + + + + + CColorEditWidget + + + Form + + + + + Browse + + + + + CConstraintMeshWidget + + + Form + + + + + Force stage modulation + + + + + Stage 0 + + + + + Stage 1 + + + + + Stage 2 + + + + + Stage 3 + + + + + Force vertex color lighting + + + + + Texture anim type: + + + + + None + + + + + Global + + + + + Reinit when new element is created + + + + + Stage: + + + + + Translation + + + + + + V Start: + + + + + + U Speed: + + + + + + V Speed: + + + + + + U Accel: + + + + + + V Accel: + + + + + + U Start: + + + + + Scale + + + + + Rotation + + + + + Speed: + + + + + Accel: + + + + + CDayNightDialog + + + Day/Night + + + + + Day + + + + + Night + + + + + CDirectionWidget + + + Form + + + + + Direction: + + + + + +I + + + + + +J + + + + + +K + + + + + -I + + + + + -J + + + + + -K + + + + + Global + + + + + CEditRangeFloatWidget + + + Form + + + + + CEditRangeUIntWidget + + + Form + + + + + CEmitterPage + + + Form + + + + + General + + + + + Emitted type: + + + + + Type of emission: + + + + + Regular + + + + + On death + + + + + Once + + + + + On bounce + + + + + External only + + + + + Direction: + + + + + Default + + + + + Direction is aligned on the emitter direction + + + + + Direction is in world + + + + + Direction is local to the system + + + + + User + + + + + Force consistent emission + + + + + Bypass Auto-LOD + + + + + Speed inheritance factor: + + + + + Delayed emission: + + + + + Max Emission Count: + + + + + Radius: + + + + + + Emission period + + + + + Emission quantity/Speed + + + + + Emission quantity + + + + + Strenght modulation + + + + + CExampleSettingsPage + + + Form + + + + + GroupBox + + + + + + PushButton + + + + + + RadioButton + + + + + CheckBox + + + + + CForcePage + + + Form + + + + + Targets: + + + + + Avaible targets: + + + + + < + + + + + > + + + + + Parametric factor: + + + + + Radial viscosity: + + + + + Tangential viscosity: + + + + + Force intensity + + + + + CGlobalWindDialog + + + Weather + + + + + Power: + + + + + CLightPage + + + Form + + + + + Light color + + + + + Attenuation start/end + + + + + Attenuation start + + + + + Attenuation end + + + + + CLocatedBindablePage + + + Form + + + + + Blending mode: + + + + + Add + + + + + Modulate + + + + + Alpha blend + + + + + Alpha test + + + + + No AutoLOD + + + + + Global color lighting + + + + + Z-Test + + + + + ZBias: + + + + + Color + + + + + Independent size + + + + + Height + + + + + Width + + + + + Size + + + + + Angle 2D + + + + + Rotation + + + + + hint / precomputed rotations + + + + + Rot speed min: + + + + + Rot speed max: + + + + + Nb models: + + + + + Align on motion + + + + + Z-Align + + + + + Fake motion blur coeff.: + + + + + Fake motion blur treshold: + + + + + Radius cut: + + + + + + Number of segments: + + + + + Duration segment: + + + + + + Texture U factor: + + + + + Number fan light: + + + + + Phase smoothnes: + + + + + Fan light speed: + + + + + Fan light intensity: + + + + + Texture V factor: + + + + + Non parametric anim only + + + + + Force constant length(m): + + + + + LOD degradation: + + + + + Trail coord. system: + + + + + Local + + + + + World + + + + + User + + + + + Father coord. system + + + + + Use hermitte interpolation + + + + + CLocatedPage + + + Form + + + + + General + + + + + Coord system: + + + + + Particles are local to the system + + + + + Particles are in world + + + + + User + + + + + Disgrade with lod + + + + + Parametric motion + + + + + Max number of particles: + + + + + Set current count particles + + + + + Life time + + + + + Limited life time + + + + + Triger on death + + + + + Edit + + + + + Particle mass + + + + + CLogPlugin + + + Log + + + + + CMeshWidget + + + GroupBox + + + + + Shape: + + + + + Browse + + + + + Shape not loaded + + + + + Morph + + + + + Edit + + + + + CMorphMeshDialog + + + Morph mesh edit + + + + + Add + + + + + Change + + + + + Insert + + + + + Remove + + + + + Up + + + + + Down + + + + + Warning: Shapes not found and incompatibles !! + + + + + CMultiTexDialog + + + Multitexturing + + + + + Main tex + + + + + + U speed 1: + + + + + + V speed 1: + + + + + + U speed 2: + + + + + + V speed 2: + + + + + Bump factor: + + + + + Use particle data + + + + + + Tex op: + + + + + + Add + + + + + + Modulate + + + + + + Decal + + + + + EnvBumpMap + + + + + Alternate tex + + + + + Use particle data all + + + + + Force basic caps + + + + + Enable alternate + + + + + CPSMoverPage + + + Form + + + + + Position: + + + + + X: + + + + + Y: + + + + + Z: + + + + + Sub component: + + + + + Scale X: + + + + + Scale Y: + + + + + Scale Z: + + + + + Scale: + + + + + CParticleControlDialog + + + Particles system control + + + + + Loop + + + + + Display helpers + + + + + Enable auto count + + + + + Display box + + + + + All particle system + + + + + Reset auto count + + + + + Link play to scene play + + + + + Link to skeleton + + + + + Unlink + + + + + Restick all objects + + + + + Set anim + + + + + Clear anim + + + + + General + + + + + Additional + + + + + Num particles:9999999 + + + + + Num wanted faces:9999999 + + + + + System time:99999999999 + + + + + CParticleLinkDialog + + + Link to skeleton + + + + + Choose bone to stick particle system + + + + + Link + + + + + Unlink + + + + + CParticleSystemPage + + + Form + + + + + Integration + + + + + Enable load balancing + + + + + Accurate integration + + + + + Enable motion slowDown + + + + + Time threshold: + + + + + Max steps: + + + + + Lock + + + + + User param + + + + + User param1: + + + + + + + + Global + + + + + User param2: + + + + + User param3: + + + + + User param4: + + + + + PBBox / LOD param + + + + + Enable Precomputed Bounding Box + + + + + Auto + + + + + Reset + + + + + X: + + + + + Y: + + + + + Z: + + + + + +10 % + + + + + -10 % + + + + + Sharable + + + + + Auto-LOD + + + + + Settings + + + + + Max view dist: + + + + + LOD Ratio: + + + + + Global color + + + + + Force global lighting + + + + + Edit global color + + + + + Wrn: Bypass multitex, not supported by all types + + + + + Life mgt param + + + + + Life mgt presets: + + + + + Environment FX + + + + + Running Environment FX + + + + + Spell FX + + + + + Looping Spell FX + + + + + Minor transitory FX + + + + + User defined + + + + + Moving Looping FX + + + + + Spawned Environment FX + + + + + Ground FX + + + + + Projectile FX + + + + + Model removed when out of range + + + + + PS resource removed when not visible + + + + + Force life time update + + + + + No max nb steps + + + + + Anim type: + + + + + Die on event: + + + + + When visible + + + + + When in visible clusters + + + + + Always + + + + + Disabled + + + + + No more particles + + + + + No more particles/emitters + + + + + Apply after delay: + + + + + s + + + + + Auto delay + + + + + CParticleTextureAnimWidget + + + Form + + + + + Enable texture anim + + + + + Texture grouped + + + + + Multitexturing + + + + + Edit + + + + + CParticleTextureWidget + + + Form + + + + + Choose texture + + + + + Remove + + + + + Name: + + + + + Size: + + + + + Depth: + + + + + CParticleWorkspaceDialog + + + Tree workspace + + + + + CPluginSpec + + + File does not exist: %1 + + + + + Could not open file for read: %1 + + + + + Loading the library failed because state != Resolved + + + + + Plugin is not valid (does not derive from IPlugin) + + + + + Initializing the plugin failed because state != Loaded) + + + + + Internal error: have no plugin instance to initialize + + + + + Plugin initialization failed: %1 + + + + + Cannot perform extensionsInitialized because state != Initialized + + + + + Internal error: have no plugin instance to perform extensionsInitialized + + + + + CPluginView + + + About plugins + + + + + State + + + + + Name + + + + + Version + + + + + Vendor + + + + + Location + + + + + Details + + + + + Error details + + + + + Close + + + + + All objects list + + + + + CSearchPathsSettingsPage + + + Form + + + + + Search paths + + + + + + + + ... + + + + + CSettingsDialog + + + + Settings + + + + + 0 + + + + + Graphics + + + + + Sound + + + + + Paths + + + + + Vegetable + + + + + Graphics settings + + + + + + Driver + + + + + Bloom effect + + + + + Bloom density + + + + + Square bloom + + + + + Enable bloom effect + + + + + Qt Style + + + + + Style + + + + + Use style's standard palette + + + + + Sound settings + + + + + SoundAutoLoadSample + + + + + SoundEnableOccludeObstruct + + + + + SoundEnableReverb + + + + + SoundManualRolloff + + + + + SoundForceSoftware + + + + + SoundUseADPCM + + + + + SoundMaxTrack + + + + + Search paths + + + + + + + + + + + + + ... + + + + + Setup Landscape + + + + + Tile bank: + + + + + Tile far bank: + + + + + Vegetable texture: + + + + + Landscape zones: + + + + + CSetupFog + + + Setup fog + + + + + Start: + + + + + End: + + + + + Enable fog + + + + + Color + + + + + Apply + + + + + CSkeletonScaleDialog + + + Skeleton scale edition + + + + + Bone scale + + + + + + X: + + + + + + + + + + + + + + + + % + + + + + + Y: + + + + + + Z: + + + + + Skin scale (slower) + + + + + Mirror selected + + + + + Undo + + + + + Redo + + + + + Save .skel + + + + + Save as + + + + + Load .scale + + + + + Save .scale + + + + + CSlotGroupBox + + + GroupBox + + + + + Slot _:empty + + + + + Start blend + + + + + End blend + + + + + Offset frame + + + + + Speed x + + + + + Start frame + + + + + End frame + + + + + Smooth + + + + + Wrap mode: + + + + + Clamp + + + + + Repeat + + + + + Disable + + + + + Set anim + + + + + Set skel + + + + + Align blend + + + + + Enable + + + + + Invert skeleton weight + + + + + CSoundPage + + + Form + + + + + General + + + + + Sound name + + + + + Browse + + + + + Play + + + + + Spawn + + + + + Mute + + + + + Keep original pitch + + + + + Emission percent: + + + + + Sound volume + + + + + Sound pitch + + + + + CSunColorDialog + + + Sun color + + + + + Diffuse: + + + + + Ambient + + + + + Specular: + + + + + CTailParticleWidget + + + Form + + + + + Ribbon orientation + + + + + Follow Path + + + + + Follow Path XY + + + + + Identity + + + + + Tail shape + + + + + Triangle + + + + + Quad + + + + + Octogon + + + + + Pentagram + + + + + Simple segment X + + + + + Simple segment Y + + + + + Simple segment Z + + + + + Simple brace + + + + + Tail fading + + + + + CTuneMRMDialog + + + Tune MRM (The maximum faces in scene) + + + + + Max (specify the max value) + + + + + Current (real final max polygon value) + + + + + CTuneTimerDialog + + + Time interval update render + + + + + ms + + + + + CVegetNoiseValueWidget + + + GroupBox + + + + + AbsValue: + + + + + *3 + + + + + 100% + + + + + /3 + + + + + RandValue: + + + + + Frequency: + + + + + CVegetableApperancePage + + + Form + + + + + Bend Phase + + + + + Bend Factor + + + + + Color Noise + + + + + Color setup + + + + + Double cliclk to change color + + + + + Get List from other + + + + + CVegetableDensityPage + + + Form + + + + + Vegetable mesh selection + + + + + Browse + + + + + Distance of creation + + + + + 0 m + + + + + Density + + + + + MaxDensity + + + + + MaxDensity enabled + + + + + Angle setup + + + + + Angle Mode: + + + + + Floor + + + + + Wall + + + + + Ceiling + + + + + AngleMin + + + + + AngleMax + + + + + CVegetableDialog + + + Vegetable editor + + + + + Vegetables: + + + + + List edition + + + + + Add vegetable + + + + + Insert vegetable + + + + + Remove vegetable + + + + + Clear all vegetables + + + + + Copy Vegetable + + + + + Load .vegetdesc + + + + + Save .vegetdesc + + + + + List Save/Load + + + + + Load .vegetset + + + + + Append .vegetset + + + + + Save .vegetset + + + + + Display Vegetables + + + + + Landscape + + + + + General/Density + + + + + Appearance + + + + + Scale + + + + + Rotation + + + + + CVegetableLandscapePage + + + Form + + + + + Setup Wind + + + + + Power: + + + + + Bend Start: + + + + + Frequency + + + + + Ambient color + + + + + Diffuse color + + + + + Show Vegetable Lands + + + + + Snap Camera To Ground + + + + + CVegetableRotatePage + + + Form + + + + + Rotate X + + + + + Rotate Y + + + + + Rotate Z + + + + + CVegetableScalePage + + + Form + + + + + Scale X/Y + + + + + Scale Z + + + + + Bend Frequency Factor + + + + + CWaterPoolDialog + + + Water pool editor + + + + + Pool ID List: + + + + + Add + + + + + Delete + + + + + Name... + + + + + Size: + + + + + 16 + + + + + 32 + + + + + 64 + + + + + 128 + + + + + 256 + + + + + 512 + + + + + Water Unit Size: + + + + + Damping: + + + + + Filter weight: + + + + + Propagation time: + + + + + Enable automatic waves generation + + + + + Waves + + + + + Impulsion strenght: + + + + + Period: + + + + + Impulsion radius: + + + + + Generate on border only + + + + + Load + + + + + Save + + + + + CWorkspacePage + + + Form + + + + + Particle system editor + + + + + Workspace: + + + + + New + + + + + Load + + + + + Save + + + + + Save As + + + + + Particle system: + + + + + Insert New + + + + + Create New + + + + + Reset all + + + + + CZonePage + + + Form + + + + + Targets: + + + + + Avaible targets: + + + + + < + + + + + > + + + + + Bounce + + + + + Destroy + + + + + Bounce factor: + + + + + Core::CMainWindow + + + Object Viewer Qt + + + + + About Object Viewer Qt + + + + + <h2>Object Viewer Qt NG</h2><p> Author: dnk-88 <p>Compiled on %1 %2 + + + + + &Open... + + + + + Open an existing file + + + + + E&xit + + + + + Ctrl+Q + + + + + Exit the application + + + + + &Settings + + + + + Open the settings dialog + + + + + &About + + + + + Show the application's About box + + + + + About &Qt + + + + + Show the Qt library's About box + + + + + About &Plugins + + + + + Show the plugin view dialog + + + + + &File + + + + + &Edit + + + + + &View + + + + + &Tools + + + + + &Help + + + + + StatusReady + + + + + Core::CSearchPathsSettingsPage + + + Search Paths + + + + + General + + + + + Core::CorePlugin + + + New settings + + + + + About plugins + + + + + CurveEditDialog + + + Curve edit + + + + + Left click to add points. +Right click to remove points. + + + + + Zoom: + + + + + Scale curve + + + + + Translate: + + + + + Position curve + + + + + Num samples: + + + + + Last=First + + + + + First=Last + + + + + Display interpolation + + + + + Smoothing + + + + + Ok + + + + + Dialog + + + Dialog + + + + + Browse + + + + + Reload + + + + + End + + + + + Form + + + Form + + + + + Graphics settings + + + + + + Driver + + + + + Qt Style + + + + + Style + + + + + Use style's standard palette + + + + + Use WinAero + + + + + Sound settings + + + + + SoundAutoLoadSample + + + + + SoundEnableOccludeObstruct + + + + + SoundEnableReverb + + + + + SoundManualRolloff + + + + + SoundForceSoftware + + + + + SoundUseADPCM + + + + + SoundMaxTrack + + + + + NLQT::CAnimationSetDialog + + + + Open NeL anim file + + + + + NeL anim files (*.anim);; + + + + + NeL Skeleton Weight Template files (*.swt);; + + + + + NLQT::CAttribFloatWidget + + + value blender + + + + + values gradient + + + + + curve + + + + + value computed from emitter + + + + + binary operator + + + + + NLQT::CAttribIntWidget + + + value exact blender + + + + + values gradient + + + + + value computed from emitter + + + + + binary operator + + + + + NLQT::CAttribPlaneBasisWidget + + + basis gradient + + + + + follow path + + + + + spinner + + + + + values computed from emitter + + + + + binary operator + + + + + NLQT::CAttribRGBAWidget + + + color sampled blender + + + + + color gradient + + + + + color exact blender + + + + + values computed from emitter + + + + + binary operator + + + + + NLQT::CAttribUIntWidget + + + value blender + + + + + values gradient + + + + + value computed from emitter + + + + + binary operator + + + + + NLQT::CAttribWidget + + + Set user param + + + + + NLQT::CBinOpDialog + + + Bin operator + + + + + Arg1 + + + + + Arg2 + + + + + NLQT::CBinOpDialogT + + + Select Arg1 + + + + + Select Arg2 + + + + + Modulate + + + + + Add + + + + + Subtract + + + + + NLQT::CCameraControl + + + CameraControl + + + + + Fly + + + + + Set firstPerson camera mode + + + + + Edit + + + + + Set edit3d camera mode + + + + + Render Mode + + + + + Point mode + + + + + Set point render mode + + + + + Line mode + + + + + Set line render mode + + + + + Fill mode + + + + + Set fill render mode + + + + + Speed: + + + + + Create camera + + + + + Create new camera + + + + + Delete camera + + + + + Delete current camera + + + + + defaultCamera + + + + + Reset camera + + + + + Reset current camera + + + + + %1_Camera + + + + + NLQT::CColorGradientWrapper + + + Color gradient dialog + + + + + NLQT::CDirectionWidget + + + Enter Name + + + + + NLQT::CEmitterPage + + + + + + NeL Particle Editor + + + + + Can't perform operation : the system is flagged with 'No max nb steps' or uses the preset 'Spell FX',and thus, should have a finite duration. This operation create a loop in the system, and so is forbidden. + + + + + Loops with emitters are forbidden. + + + + + + Can't perform operation : the system is flagged with 'No max nb steps' or uses the preset 'Spell FX', and thus, should have a finite duration. Please remove that flag first. + + + + + no emission + + + + + NLQT::CFloatGradientWrapper + + + Float values gradient dialog + + + + + NLQT::CFollowPathDialog + + + Follow path param + + + + + Projection plane: + + + + + No projection + + + + + XY plane + + + + + XZ plane + + + + + YZ plane + + + + + NLQT::CForcePage + + + NeL particle system editor + + + + + The target object last forever. Applying a force on such an object may result in instability in the system after a while. Continue ? (clue : you've been warned..) + + + + + NLQT::CGradientDialog + + + Num samples: + + + + + NLQT::CIntGradientWrapper + + + Int values gradient dialog + + + + + NLQT::CLocatedBindablePage + + + Material + + + + + Size/Angle 2D + + + + + Rotations + + + + + Look At param + + + + + Shock wave param + + + + + Fan Light param + + + + + Tail param + + + + + Mesh param + + + + + + Texture param + + + + + Width + + + + + Height + + + + + Size + + + + + NLQT::CLocatedPage + + + + NeL particle system editor + + + + + The object has force(s) applied on it. If it last forever, its motion can become instable after a while. Continue anyway ? (clue : you've been warned ..) + + + + + Can't perform operation : the system is flagged with 'No max nb steps' or uses the preset 'Spell FX', and thus, should have a finite duration. Please remove that flag first. + + + + + Set the extern ID + + + + + 0 means no extern access. + + + + + NLQT::CMainWindow + + + Open NeL data file + + + + + All NeL files (*.shape *.ps *.ig);;NeL shape files (*.shape);;NeL particle system files (*.ps)NeL Instance Group files (*.ig) + + + + + Open skeleton file + + + + + NeL skeleton file (*.skel) + + + + + About Object Viewer Qt + + + + + <h2>Object Viewer Qt 8-)</h2><p> Authors: dnk-88, sfb, Kaetemi, kervala <p>Compiled on %1 %2 + + + + + &Open... + + + + + Open an existing file + + + + + E&xit + + + + + Ctrl+Q + + + + + Exit the application + + + + + Set &background color + + + + + Set background color + + + + + Reset camera + + + + + Ctrl+R + + + + + Reset current camera + + + + + Ctrl+M + + + + + Change render mode (Line, Point, Filled) + + + + + &Reset scene + + + + + Reset current scene + + + + + + Reload textures + + + + + Save &Screenshot + + + + + Make a screenshot of the current viewport and save + + + + + &Settings + + + + + Settings + + + + + &About + + + + + Show the application's About box + + + + + About &Qt + + + + + Show the Qt library's About box + + + + + + &File + + + + + &View + + + + + &Scene + + + + + + &Tools + + + + + &Help + + + + + StatusReady + + + + + Loading canceled + + + + + File loaded + + + + + NLQT::CMeshWidget + + + Open NeL data file + + + + + NeL shape file (*.shape) + + + + + Shape loading error + + + + + Error in morph meshes + + + + + Not a mesh + + + + + Shape not loaded + + + + + Too much vertices + + + + + NLQT::CMorphMeshDialog + + + vertices + + + + + (%1 vertices) + + + + + + + Open NeL data file + + + + + + + NeL shape files (*.shape) + + + + + NLQT::CParticleControlDialog + + + Num particles: + + + + + Num wanted faces: + + + + + System time: + + + + + Num particles: %1 + + + + + Num wanted faces: %1 + + + + + System time: %1 + + + + + NLQT::CParticleSystemPage + + + Are you sure? + + + + + Load balancing on/off + + + + + Can't perform operation : the system is flagged with 'No max nb steps' or uses the preset 'Spell FX', and thus, should have a finite duration. Please remove that flag first. + + + + + The system must have a finite duration for this setting! Please check that the following object doesn't live forever or doesn't create a loop in the system : + + + + + The system must have a finite duration for this setting! Please check that. + + + + + NLQT::CParticleTextureWidget + + + Open texture file + + + + + Image file (*.tga *.png) + + + + + Texture loading error + + + + + Name: + + + + + Size: + + + + + Depth: + + + + + Name: %1 + + + + + Size: %1x%2 + + + + + Depth: %1 + + + + + NLQT::CParticleWorkspaceDialog + + + Set as active particle system + + + + + Save + + + + + Save as + + + + + Clear content + + + + + Remove from workspace + + + + + Merge + + + + + New located + + + + + Paste located + + + + + Force ZBias + + + + + Instanciate + + + + + Copy located + + + + + Copy bindable + + + + + Paste bindable + + + + + Delete + + + + + All LOD + + + + + LOD 1 + + + + + LOD 2 + + + + + extern ID + + + + + + + + + NeL particle system editor + + + + + uses auto count feature, and it has been modified. You should run the system entirely at least once at full detail before saving so that the editor can compute the number of particles in the system. If user params are used to modify system aspect, you should run the system for extreme cases before saving. + + + + + Save as ps file + + + + + ps files (*.ps) + + + + + Clear content ? + + + + + + Can't perform operation : the system is flagged with 'No max nb steps' or uses the preset 'Spell FX', and thus, should have a finite duration. Please remove that flag first. + + + + + The system is flagged with 'No max Nb steps', or uses the preset 'Spell FX'.System must have finite duration. Can't add object. To solve this, set a limited life time for the father. + + + + + All object force ZBias + + + + + Set the extern ID + + + + + 0 means no extern access. + + + + + Bind particle... + + + + + Bind force... + + + + + Bind zone... + + + + + Bind emitter... + + + + + NLQT::CPlaneBasisGradientWrapper + + + Plane basis gradient dialog + + + + + NLQT::CPropertyDialog + + + Property editor + + + + + NLQT::CSettingsDialog + + + Settings + + + + + Graphics and sound settings take after restart the program + + + + + Set new tile bank + + + + + Tile Bank file (*.smallbank *.bank);; + + + + + Set new tile far bank + + + + + Tile Far Bank file (*.farbank);; + + + + + Set MicroVegetable texture + + + + + Texture file (*.tga *.png *.jpg *.dds);; + + + + + Add zone files + + + + + Zonel files (*.zonel *.zone);; + + + + + NLQT::CSkeletonScaleDialog + + + + + + + + + Skeleton scale editor + + + + + + + Failed to open file for write! + + + + + Save As Skeleton File + + + + + Skeleton files (*.skel);; + + + + + Open Skeleton Scale File + + + + + + SkelScale files (*.scale);; + + + + + Failed to open file for read! + + + + + Save As Skeleton Scale File + + + + + + Failed to save file! + + + + + Failed to load file! + + + + + NLQT::CSlotGroupBox + + + + + Slot %1 : + + + + + + empty + + + + + Select your anim + + + + + Animation: + + + + + Select your skel + + + + + Skeleton weight template: + + + + + NLQT::CSlotManagerDialog + + + Slot %1 : empty : empty + + + + + Slot %1 + + + + + Slot manager + + + + + NLQT::CSoundPage + + + Select your sound + + + + + Sound: + + + + + NLQT::CSpinnerDialog + + + Edit spinner + + + + + Nb samples: + + + + + NLQT::CTextureGradientInterface + + + Texture grouped dialog + + + + + NLQT::CUIntGradientWrapper + + + UInt values gradient dialog + + + + + NLQT::CValueBlenderDialog + + + Value blender + + + + + Start value: + + + + + End value: + + + + + NLQT::CValueFromEmitterDialog + + + Value from emitter + + + + + NLQT::CVegetableApperancePage + + + Select on other vegetables + + + + + Select the other vegetable to copy color. + + + + + NLQT::CVegetableDensityPage + + + Open Vegetable Shape + + + + + veget files (*.veget);; + + + + + NLQT::CVegetableDialog + + + Load a new vegetset file + + + + + + vegetset files (*.vegetset);; + + + + + Append vegetset file + + + + + Save Vegetable Set + + + + + VegetSetFiles (*.vegetset);; + + + + + Open Vegetable Descriptor + + + + + vegetdesc files (*.vegetdesc);; + + + + + Save Vegetable Descriptor + + + + + VegetDescFiles (*.vegetdesc);; + + + + + NLQT::CWorkspacePage + + + Create new pws file + + + + + + pws files (*.pws) + + + + + + Open NeL data file + + + + + Particle Workspace file (*.pws);; + + + + + Save as pws file + + + + + Particle System file (*.ps);; + + + + + + + NeL particle system editor + + + + + Create new particle system file + + + + + ps files (*.ps) + + + + + Failed to create new particle system + + + + + Plugin::CCoreListener + + + Example close event hook + + + + + Do you want to close window? + + + + + Plugin::CExampleAppPage + + + SimpleViewer + + + + + Plugin::CExampleSettingsPage + + + Example page + + + + + General + + + + + Plugin::MyPlugin + + + Not found QMainWindow Object Viewer Qt. + + + + + Not found QMenu Help. + + + + + Plugin::SheetBuilderPlugin + + + Not found MainWindow Object Viewer Qt. + + + + + Not found QMenu Tools. + + + + + SheetBuilderConfigDialog + + + Paths: + + + + + + Add + + + + + + Delete + + + + + Output file: + + + + + Browse... + + + + + Allowed extensions: + + + + + OK + + + + + Cancel + + + + + Sheet builder configuration + + + + + Choose output file + + + + + SheetBuilderDialog + + + Make sheet + + + + + Close + + + + + Clean unwanted types from input + + + + + Show/Hide details... + + + + + Settings + + + + + Sheet builder + + + + diff --git a/code/nel/tools/3d/object_viewer_qt/src/translations/object_viewer_qt_ru.qm b/code/nel/tools/3d/object_viewer_qt/src/translations/object_viewer_qt_ru.qm new file mode 100644 index 0000000000000000000000000000000000000000..ae1f9a911bdea237f15d292db12348dfa68b9a7f GIT binary patch literal 40561 zcmeHwdwg6~wf|0XW-^&f9&OV$w4t1q(xx>{)AW^wG$oxheI)5Cp`}s4Npg}5oy>%p zNt0B$Ac7)RK=dN`z!xA-#RtgK2LcK|@p`#l_{s05{8admr+^@+uG-+bq1AN+|FCBw{LP=`&Vuk zUd63i%ZR25XSHH+@>mqKq-O26tCT@3j>n-pnymrO7?ZJHMeb2ev_P)aH zzAL#sv`_e&x`kNzobatr3(@Q6cK6xBx8a>a6t!`?;%&mWW4#cYb_ib&=+`w%_zrBt z{I3+gVXRTjCxkDFb?NF7z7K-VXUr46Yq2)H9o+8u2Dk73zVLn4C&bCk+@5z-_-+Od zl?@BuZ8Y9J!uK%xcU&xdk3A&B+@EuM@^83ZvP7(;_1eEmto-3=Xh*n>-zQeS)P(n+ z;5Pn>c-y~$5BfgM?Zmsp_Gi(r|Et`lip7qpO<31jv1qCYwYK6^#nwD~VagpeM^EL40i{ilL|1Ct@xHx#< zdoli#;;hFW7NX&Kap+p$TT#L7u61Idn)-i&+unC`d+~3@z~Qff9;?JatW${1=ZFE~ z*G>5TTj;;}d2R=Gh=G?r3x52TIQvgG3$f^QZV#U?&WQrwMU&#ZlRk&_cv+nH;P
g`8g&6+e062_dcsiZ?F50_*tc zqN)|`Sg*rHRUNkq@vg5F?OIqP#OkV|$kqKqoVtYDqt_N`10NM)%~?gU##YGFg+=KD zpo9OOqAMOL65{ed6n$#ZHq7_OMR)uT<4pam=)TK=*MT&*Gv^k)@%#%y>{(N+oKgZj zMRDcnb3n&RZVyctul^#&Yki}*`8(jVdAAi0Klii{=av>viZe0KJBu&6=IcV7`KjXT z8vh_f^5WvpU59yA{-F5tpI#uu-qVY}a1GXB-;3PFr;G1cFobmva(h;=_})(fzr;6+ z?;lx!Y3SoOP- z2k*tYZMn1L+5dV@2<0&)BnF`$zpX5I@_ZrQU7@_Q59@#CE^a69R)&9$al0m!RL6th zmrruLYFL^1#2=L(h3BUhDKozU{Xck2x$yGqh0vZ=u4qaN@xBq|nuoy;dw;52 z7e^a>f!ifla=Yz4-0r-T+p|8dTz|=bV!fYJZg02|`s4|2-yh`m%0DQ#9|gTv-^uMo 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 Wfm14G6}`El{I4~|%9{ + + + + Application + + + Object Viewer Qt - Plugin loader messages + Object Viewer Qt - Сообщения загрузчика плагинов + + + + CAnimationDialog + + + Animation control + + + + + Loop + Повтор + + + + In place + На месте + + + + Increment pos + Приращение позиций + + + + Use the PlayList + Использовать плейлист + + + + Use the Mixer + Использовать микшер + + + + Play/Pause + Играть/Пауза + + + + Stop + Стоп + + + + CAnimationSetDialog + + + Animation set manager + Менеджер анимаций + + + + Edited object: + Текущий объект: + + + + Animations: + Список анимаций: + + + + Add anim + Загрузить *.anim файлы + + + + Skeleton weight template: + Шаблоны весов скелета: + + + + Add swt + Загрузить *.swt файлы + + + + Animations playlist: + Плейлист: + + + + Unload all anim and swt files + Выгрузить все anim и swt файлы + + + + Add anim in PlayList + Добавить анимацию в плейлист + + + + Delete anim from PlayList + Удалить анимацию из плейлиста + + + + Set duration of time in Animation control + Установить продолжительность времени проигрывания + + + + CAttribWidget + + + GroupBox + + + + + Constant + Константа + + + + Scheme + Схема + + + + Input mutliplier: + Входной множитель: + + + + Clamp + + + + + E + + + + + Src: + Источник: + + + + Date + Время + + + + Position + Позиция + + + + Inverse Mass + Ивертированная масса + + + + Speed + Скорость + + + + Random + Случайные значения + + + + User param + Пользовательский + + + + LOD + + + + + Square LOD + + + + + Clamped LOD + + + + + Camped square LOD + + + + + U + + + + + P + + + + + G + + + + + CAutoLODDialog + + + Auto LOD + + + + + Start percent DIST: + + + + + Max dist BIAS: + + + + + Degradation exponent: + + + + + Skip particles + Пропускать частицы + + + + CBasicEditWidget + + + Form + Форма + + + + Psi + + + + + Theta + + + + + Phi + + + + + CColorEditWidget + + + Form + Форма + + + + Browse + Обзор + + + + CConstraintMeshWidget + + + Form + Форма + + + + Force stage modulation + + + + + Stage 0 + Стадия 0 + + + + Stage 1 + Стадия 1 + + + + Stage 2 + Стадия 2 + + + + Stage 3 + Стадия 3 + + + + Force vertex color lighting + Принудительное освещение вершин + + + + Texture anim type: + Тип текстурной анимаций: + + + + None + Никакой + + + + Global + Мировой + + + + Reinit when new element is created + + + + + Stage: + Стадия: + + + + Translation + Перенос + + + + + V Start: + + + + + + U Speed: + + + + + + V Speed: + + + + + + U Accel: + + + + + + V Accel: + + + + + + U Start: + + + + + Scale + Шасштаб + + + + Rotation + Вращение + + + + Speed: + Скорость: + + + + Accel: + Ускорение: + + + + CDayNightDialog + + + Day/Night + День/Ночь + + + + Day + День + + + + Night + Ночь + + + + CDirectionWidget + + + Form + Форма + + + + Direction: + Направление: + + + + +I + + + + + +J + + + + + +K + + + + + -I + + + + + -J + + + + + -K + + + + + Global + Мировой + + + + CEditRangeFloatWidget + + + Form + Форма + + + + CEditRangeUIntWidget + + + Form + Форма + + + + CEmitterPage + + + Form + Форма + + + + General + Главное + + + + Emitted type: + Излучаемые частицы: + + + + Type of emission: + Тип излучения: + + + + Regular + Постоянный + + + + On death + После уничтожения + + + + Once + Одиночный + + + + On bounce + После отскока + + + + External only + + + + + Direction: + Направление: + + + + Default + По умолчанию + + + + Direction is aligned on the emitter direction + + + + + Direction is in world + + + + + Direction is local to the system + + + + + User + Пользовательский + + + + Force consistent emission + + + + + Bypass Auto-LOD + + + + + Speed inheritance factor: + + + + + Delayed emission: + Задержка излучения: + + + + Max Emission Count: + + + + + Radius: + Радиус: + + + + + Emission period + Период излучения + + + + Emission quantity/Speed + + + + + Emission quantity + + + + + Strenght modulation + Сила излучения + + + + CExampleSettingsPage + + + Form + Форма + + + + GroupBox + + + + + + PushButton + + + + + + RadioButton + + + + + CheckBox + + + + + CForcePage + + + Form + Форма + + + + Targets: + Цели: + + + + Avaible targets: + Доступные цели: + + + + < + + + + + > + + + + + Parametric factor: + Параметрический коэффициент: + + + + Radial viscosity: + Радиальное ускорение: + + + + Tangential viscosity: + Тангенциальное ускорение: + + + + Force intensity + Интенсивность силы + + + + CGlobalWindDialog + + + Weather + Погода + + + + Power: + Сила ветра: + + + + CLightPage + + + Form + Форма + + + + Light color + Цвет освещения + + + + Attenuation start/end + + + + + Attenuation start + + + + + Attenuation end + + + + + CLocatedBindablePage + + + Form + Форма + + + + Blending mode: + Режим смешивания: + + + + Add + Сложение + + + + Modulate + Перемножение + + + + Alpha blend + Альфа смешивание + + + + Alpha test + Альфа тест + + + + No AutoLOD + + + + + Global color lighting + Глобальное освещение + + + + Z-Test + Z-Тест + + + + ZBias: + Z- Смещение: + + + + Color + Цвет + + + + Independent size + + + + + Height + Высота + + + + Width + Ширина + + + + Size + Размер + + + + Angle 2D + Угол 2D + + + + Rotation + Вращение + + + + hint / precomputed rotations + + + + + Rot speed min: + + + + + Rot speed max: + + + + + Nb models: + + + + + Align on motion + + + + + Z-Align + Z-Выравнивание + + + + Fake motion blur coeff.: + + + + + Fake motion blur treshold: + + + + + Radius cut: + + + + + + Number of segments: + + + + + Duration segment: + + + + + + Texture U factor: + + + + + Number fan light: + + + + + Phase smoothnes: + + + + + Fan light speed: + + + + + Fan light intensity: + + + + + Texture V factor: + + + + + Non parametric anim only + + + + + Force constant length(m): + + + + + LOD degradation: + + + + + Trail coord. system: + + + + + Local + Локальный + + + + World + Мировой + + + + User + Пользовательский + + + + Father coord. system + Родительская система координат + + + + Use hermitte interpolation + Использовать интерполяцию эрмита + + + + CLocatedPage + + + Form + Форма + + + + General + Главное + + + + Coord system: + Система координат: + + + + Particles are local to the system + + + + + Particles are in world + + + + + User + Пользовательский + + + + Disgrade with lod + + + + + Parametric motion + + + + + Max number of particles: + Максимальное количество частиц: + + + + Set current count particles + + + + + Life time + Время жизни + + + + Limited life time + Ограниченное время жизни + + + + Triger on death + Тригер для уничтожения + + + + Edit + Правка + + + + Particle mass + Масса частиц + + + + CLogPlugin + + + Log + Лог + + + + CMeshWidget + + + GroupBox + + + + + Shape: + Модель: + + + + Browse + Обзор + + + + Shape not loaded + Модель не загружена + + + + Morph + Морфинг + + + + Edit + Правка + + + + CMorphMeshDialog + + + Morph mesh edit + + + + + Add + Добавить + + + + Change + Изменить + + + + Insert + Вставить + + + + Remove + Удалить + + + + Up + Вверх + + + + Down + Вниз + + + + Warning: Shapes not found and incompatibles !! + Внимание: Модель не найдена или несовместима !! + + + + CMultiTexDialog + + + Multitexturing + Мультитекстурирование + + + + Main tex + Главная текстура + + + + + U speed 1: + + + + + + V speed 1: + + + + + + U speed 2: + + + + + + V speed 2: + + + + + Bump factor: + + + + + Use particle data + + + + + + Tex op: + + + + + + Add + Сложение + + + + + Modulate + Перемножение + + + + + Decal + + + + + EnvBumpMap + + + + + Alternate tex + + + + + Use particle data all + + + + + Force basic caps + + + + + Enable alternate + + + + + CPSMoverPage + + + Form + Форма + + + + Position: + Позиция: + + + + X: + + + + + Y: + + + + + Z: + + + + + Sub component: + + + + + Scale X: + + + + + Scale Y: + + + + + Scale Z: + + + + + Scale: + Шасштаб: + + + + CParticleControlDialog + + + Particles system control + + + + + Loop + Повтор + + + + Display helpers + + + + + Enable auto count + Включить авто подсчет + + + + Display box + + + + + All particle system + Все системы частиц + + + + Reset auto count + Сбросить авто подсчет + + + + Link play to scene play + + + + + Link to skeleton + + + + + Unlink + + + + + Restick all objects + + + + + Set anim + Выбрать anim + + + + Clear anim + + + + + General + Главное + + + + Additional + Дополнительное + + + + Num particles:9999999 + Кол-во частиц:9999999 + + + + Num wanted faces:9999999 + + + + + System time:99999999999 + Время:99999999999 + + + + CParticleLinkDialog + + + Link to skeleton + + + + + Choose bone to stick particle system + + + + + Link + Присоединить + + + + Unlink + + + + + CParticleSystemPage + + + Form + Форма + + + + Integration + + + + + Enable load balancing + + + + + Accurate integration + + + + + Enable motion slowDown + + + + + Time threshold: + + + + + Max steps: + + + + + Lock + + + + + User param + Пользовательский + + + + User param1: + + + + + + + + Global + Мировой + + + + User param2: + + + + + User param3: + + + + + User param4: + + + + + PBBox / LOD param + + + + + Enable Precomputed Bounding Box + + + + + Auto + Авто + + + + Reset + Сбросить + + + + X: + + + + + Y: + + + + + Z: + + + + + +10 % + + + + + -10 % + + + + + Sharable + + + + + Auto-LOD + + + + + Settings + Настройки + + + + Max view dist: + + + + + LOD Ratio: + + + + + Global color + Глобальный цвет + + + + Force global lighting + Принудительное глобальное освещение + + + + Edit global color + + + + + Wrn: Bypass multitex, not supported by all types + + + + + Life mgt param + + + + + Life mgt presets: + + + + + Environment FX + + + + + Running Environment FX + + + + + Spell FX + + + + + Looping Spell FX + + + + + Minor transitory FX + + + + + User defined + + + + + Moving Looping FX + + + + + Spawned Environment FX + + + + + Ground FX + + + + + Projectile FX + + + + + Model removed when out of range + + + + + PS resource removed when not visible + + + + + Force life time update + + + + + No max nb steps + + + + + Anim type: + + + + + Die on event: + + + + + When visible + + + + + When in visible clusters + + + + + Always + + + + + Disabled + Отключить + + + + No more particles + + + + + No more particles/emitters + + + + + Apply after delay: + + + + + s + + + + + Auto delay + + + + + CParticleTextureAnimWidget + + + Form + Форма + + + + Enable texture anim + Включить анимацию текстуры + + + + Texture grouped + Группа текстур + + + + Multitexturing + Мультитекстурирование + + + + Edit + Правка + + + + CParticleTextureWidget + + + Form + Форма + + + + Choose texture + Выбрать + + + + Remove + Удалить + + + + Name: + Имя: + + + + Size: + Размер: + + + + Depth: + Цвет: + + + + CParticleWorkspaceDialog + + + Tree workspace + Испектор объектов редактора частиц + + + + CPluginSpec + + + File does not exist: %1 + Файл не существует: %1 + + + + Could not open file for read: %1 + Не удалось открыть файл для чтения: %1 + + + + Loading the library failed because state != Resolved + Загрузка библиотеки не удалась, потому что не разрешены зависимости + + + + Plugin is not valid (does not derive from IPlugin) + Плагин не действительный (не является производным от IPlugin) + + + + Initializing the plugin failed because state != Loaded) + Инициализировать плагин не удалось, потому что плагин не загружен + + + + Internal error: have no plugin instance to initialize + Внутренняя ошибка: нет экземпляра плагина для инициализации + + + + Plugin initialization failed: %1 + Плагин не удалось инициализировать: %1 + + + + Cannot perform extensionsInitialized because state != Initialized + Невозможно выполнить extensionsInitialized потому что плагин не инициализирован + + + + Internal error: have no plugin instance to perform extensionsInitialized + Внутренняя ошибка: нет экземпляра плагина для extensionsInitialized + + + + CPluginView + + + About plugins + О модулях + + + + State + Состояние + + + + Name + Название + + + + Version + Версия + + + + Vendor + Поставщик + + + + Location + Расположение + + + + Details + Подробнее + + + + Error details + Подробнее об ошибке + + + + Close + Закрыть + + + + All objects list + + + + + CSearchPathsSettingsPage + + + Form + Форма + + + + Search paths + Пути поиска + + + + + + + ... + + + + + CSettingsDialog + + + + Settings + Настройки + + + + 0 + + + + + Graphics + Графика + + + + Sound + Звук + + + + Paths + Пути + + + + Vegetable + + + + + Graphics settings + Графические настройки + + + + + Driver + Драйвер + + + + Bloom effect + Блум эффект + + + + Bloom density + Плотность блума + + + + Square bloom + + + + + Enable bloom effect + Включить блум эффект + + + + Qt Style + Qt стиль + + + + Style + Стиль + + + + Use style's standard palette + + + + + Sound settings + Звуковые настройки + + + + SoundAutoLoadSample + + + + + SoundEnableOccludeObstruct + + + + + SoundEnableReverb + + + + + SoundManualRolloff + + + + + SoundForceSoftware + + + + + SoundUseADPCM + + + + + SoundMaxTrack + + + + + Search paths + Пути поиска + + + + + + + + + + + + ... + + + + + Setup Landscape + + + + + Tile bank: + + + + + Tile far bank: + + + + + Vegetable texture: + + + + + Landscape zones: + + + + + CSetupFog + + + Setup fog + Настройка тумана + + + + Start: + Начало: + + + + End: + Конец: + + + + Enable fog + Включить туман + + + + Color + Цвет + + + + Apply + Применить + + + + CSkeletonScaleDialog + + + Skeleton scale edition + Редактор размеров скелета + + + + Bone scale + Масштаб кости + + + + + X: + + + + + + + + + + + + + + + + % + + + + + + Y: + + + + + + Z: + + + + + Skin scale (slower) + Масштаб оболочки (медленно) + + + + Mirror selected + Зеркалировать выбранное + + + + Undo + Отменить + + + + Redo + Повторить + + + + Save .skel + + + + + Save as + Сохранить как + + + + Load .scale + + + + + Save .scale + + + + + CSlotGroupBox + + + GroupBox + + + + + Slot _:empty + Слот _:пустой + + + + Start blend + Начало смешивания + + + + End blend + Конец смешивания + + + + Offset frame + Смещение кадра + + + + Speed x + Скорость + + + + Start frame + Начальный кадр + + + + End frame + Конечный кадр + + + + Smooth + Плавность + + + + Wrap mode: + + + + + Clamp + + + + + Repeat + Повтор + + + + Disable + Отключить + + + + Set anim + Выбрать anim + + + + Set skel + Выбрать skel + + + + Align blend + + + + + Enable + Включить + + + + Invert skeleton weight + Ивертировать веса скелета + + + + CSoundPage + + + Form + Форма + + + + General + Главное + + + + Sound name + Имя звука + + + + Browse + Обзор + + + + Play + Играть + + + + Spawn + + + + + Mute + Выключить + + + + Keep original pitch + + + + + Emission percent: + + + + + Sound volume + Громкость + + + + Sound pitch + + + + + CSunColorDialog + + + Sun color + Цвет солнца + + + + Diffuse: + + + + + Ambient + + + + + Specular: + + + + + CTailParticleWidget + + + Form + Форма + + + + Ribbon orientation + + + + + Follow Path + + + + + Follow Path XY + + + + + Identity + + + + + Tail shape + + + + + Triangle + + + + + Quad + + + + + Octogon + + + + + Pentagram + + + + + Simple segment X + + + + + Simple segment Y + + + + + Simple segment Z + + + + + Simple brace + + + + + Tail fading + + + + + CTuneMRMDialog + + + Tune MRM (The maximum faces in scene) + + + + + Max (specify the max value) + Макс.(укажите макс. значение) + + + + Current (real final max polygon value) + Текущее(реальное макс.значение количества полигонов) + + + + CTuneTimerDialog + + + Time interval update render + Временной интервал обновления рендера + + + + ms + мсек + + + + CVegetNoiseValueWidget + + + GroupBox + + + + + AbsValue: + + + + + *3 + + + + + 100% + + + + + /3 + + + + + RandValue: + + + + + Frequency: + + + + + CVegetableApperancePage + + + Form + Форма + + + + Bend Phase + + + + + Bend Factor + + + + + Color Noise + + + + + Color setup + + + + + Double cliclk to change color + + + + + Get List from other + + + + + CVegetableDensityPage + + + Form + Форма + + + + Vegetable mesh selection + + + + + Browse + Обзор + + + + Distance of creation + + + + + 0 m + + + + + Density + + + + + MaxDensity + + + + + MaxDensity enabled + + + + + Angle setup + + + + + Angle Mode: + + + + + Floor + + + + + Wall + + + + + Ceiling + + + + + AngleMin + + + + + AngleMax + + + + + CVegetableDialog + + + Vegetable editor + + + + + Vegetables: + + + + + List edition + + + + + Add vegetable + + + + + Insert vegetable + + + + + Remove vegetable + + + + + Clear all vegetables + + + + + Copy Vegetable + + + + + Load .vegetdesc + + + + + Save .vegetdesc + + + + + List Save/Load + + + + + Load .vegetset + + + + + Append .vegetset + + + + + Save .vegetset + + + + + Display Vegetables + + + + + Landscape + + + + + General/Density + + + + + Appearance + + + + + Scale + Шасштаб + + + + Rotation + Вращение + + + + CVegetableLandscapePage + + + Form + Форма + + + + Setup Wind + Настройки ветра + + + + Power: + Сила ветра: + + + + Bend Start: + + + + + Frequency + Частота + + + + Ambient color + + + + + Diffuse color + + + + + Show Vegetable Lands + Показать ландшафт + + + + Snap Camera To Ground + + + + + CVegetableRotatePage + + + Form + Форма + + + + Rotate X + + + + + Rotate Y + + + + + Rotate Z + + + + + CVegetableScalePage + + + Form + Форма + + + + Scale X/Y + + + + + Scale Z + + + + + Bend Frequency Factor + + + + + CWaterPoolDialog + + + Water pool editor + + + + + Pool ID List: + + + + + Add + Сложение + + + + Delete + Удалить + + + + Name... + + + + + Size: + Размер: + + + + 16 + + + + + 32 + + + + + 64 + + + + + 128 + + + + + 256 + + + + + 512 + + + + + Water Unit Size: + + + + + Damping: + + + + + Filter weight: + + + + + Propagation time: + + + + + Enable automatic waves generation + + + + + Waves + + + + + Impulsion strenght: + + + + + Period: + + + + + Impulsion radius: + + + + + Generate on border only + + + + + Load + Загрузить + + + + Save + Сохранить + + + + CWorkspacePage + + + Form + Форма + + + + Particle system editor + Редактор системы частиц + + + + Workspace: + Рабочее пространство: + + + + New + Создать + + + + Load + Загрузить + + + + Save + Сохранить + + + + Save As + Сохранить как + + + + Particle system: + Система частиц: + + + + Insert New + Вставить + + + + Create New + Создать + + + + Reset all + Сбросить + + + + CZonePage + + + Form + Форма + + + + Targets: + Цели: + + + + Avaible targets: + Доступные цели: + + + + < + + + + + > + + + + + Bounce + Отскок + + + + Destroy + Уничтожение + + + + Bounce factor: + Сила отскока: + + + + Core::CMainWindow + + + Object Viewer Qt + + + + + About Object Viewer Qt + О Object Viewer Qt + + + + <h2>Object Viewer Qt NG</h2><p> Author: dnk-88 <p>Compiled on %1 %2 + + + + + &Open... + &Открыть... + + + + Open an existing file + Открыть файл + + + + E&xit + В&ыход + + + + Ctrl+Q + + + + + Exit the application + Выйти из приложения + + + + &Settings + &Настройки + + + + Open the settings dialog + Открыть диалог настроек + + + + &About + О программе + + + + Show the application's About box + Открыть диалог О программе + + + + About &Qt + О &Qt + + + + Show the Qt library's About box + Открыть диалог О Qt + + + + About &Plugins + О &модулях + + + + Show the plugin view dialog + Показать диалог списка плагинов + + + + &File + &Файл + + + + &Edit + &Правка + + + + &View + &Вид + + + + &Tools + &Иструменты + + + + &Help + &Справка + + + + StatusReady + + + + + Core::CSearchPathsSettingsPage + + + Search Paths + Пути поиска + + + + General + Главное + + + + Core::CorePlugin + + + New settings + + + + + About plugins + О модулях + + + + CurveEditDialog + + + Curve edit + Редактор кривых + + + + Left click to add points. +Right click to remove points. + + + + + Zoom: + + + + + Scale curve + + + + + Translate: + + + + + Position curve + + + + + Num samples: + + + + + Last=First + + + + + First=Last + + + + + Display interpolation + + + + + Smoothing + + + + + Ok + + + + + Dialog + + + Dialog + + + + + Browse + Обзор + + + + Reload + Перегрузить + + + + End + Выход + + + + Form + + + Form + Форма + + + + Graphics settings + Графические настройки + + + + + Driver + Драйвер + + + + Qt Style + Qt стиль + + + + Style + Стиль + + + + Use style's standard palette + + + + + Use WinAero + + + + + Sound settings + Звуковые настройки + + + + SoundAutoLoadSample + + + + + SoundEnableOccludeObstruct + + + + + SoundEnableReverb + + + + + SoundManualRolloff + + + + + SoundForceSoftware + + + + + SoundUseADPCM + + + + + SoundMaxTrack + + + + + NLQT + + Point + Точка + + + Ribbon + Лента + + + Mesh + Модель + + + ConstraintMesh + Ограниченная модель + + + Face + Грань + + + Gravity + Гравитация + + + Spring + Пружина + + + Plane + Плоскость + + + Sphere + Сфера + + + Rectangle + Прямоугольник + + + Disc + Диск + + + Cylinder + Цилиндр + + + + NLQT::CAnimationSetDialog + + + + Open NeL anim file + + + + + NeL anim files (*.anim);; + + + + + NeL Skeleton Weight Template files (*.swt);; + + + + + NLQT::CAttribFloatWidget + + + value blender + + + + + values gradient + + + + + curve + + + + + value computed from emitter + + + + + binary operator + + + + + NLQT::CAttribIntWidget + + + value exact blender + + + + + values gradient + + + + + value computed from emitter + + + + + binary operator + + + + + NLQT::CAttribPlaneBasisWidget + + + basis gradient + + + + + follow path + + + + + spinner + + + + + values computed from emitter + + + + + binary operator + + + + + NLQT::CAttribRGBAWidget + + + color sampled blender + + + + + color gradient + + + + + color exact blender + + + + + values computed from emitter + + + + + binary operator + + + + + NLQT::CAttribUIntWidget + + + value blender + + + + + values gradient + + + + + value computed from emitter + + + + + binary operator + + + + + NLQT::CAttribWidget + + + Set user param + + + + + NLQT::CBinOpDialog + + + Bin operator + + + + + Arg1 + + + + + Arg2 + + + + + NLQT::CBinOpDialogT + + + Select Arg1 + Выбрать Arg1 + + + + Select Arg2 + Выбрать Arg2 + + + + Modulate + Перемножить + + + + Add + Сложить + + + + Subtract + Вычитать + + + + NLQT::CCameraControl + + + CameraControl + + + + + Fly + + + + + Set firstPerson camera mode + + + + + Edit + Правка + + + + Set edit3d camera mode + + + + + Render Mode + Режим отображения + + + + Point mode + + + + + Set point render mode + + + + + Line mode + + + + + Set line render mode + + + + + Fill mode + + + + + Set fill render mode + + + + + Speed: + Скорость: + + + + Create camera + Создать камеру + + + + Create new camera + Создать новую камеру + + + + Delete camera + Удалить камеру + + + + Delete current camera + Удалить текущую камеру + + + + defaultCamera + + + + + Reset camera + Сбросить камеру + + + + Reset current camera + Сбросить текущую камеру + + + + %1_Camera + %1_Камера + + + + NLQT::CColorGradientWrapper + + + Color gradient dialog + Цветовой градиент + + + + NLQT::CDirectionWidget + + + Enter Name + Введите название + + + + NLQT::CEmitterPage + + + + + + NeL Particle Editor + Редактор системы частиц + + + + Can't perform operation : the system is flagged with 'No max nb steps' or uses the preset 'Spell FX',and thus, should have a finite duration. This operation create a loop in the system, and so is forbidden. + Невозможно выполнить операцию: система частиц помечена флагом "No max nb steps" или использует заданный "Spell FX, +и, таким образом, должна иметь конечную длительность. Эта операция создает цикл в системе частиц, и это запрещено. + + + + Loops with emitters are forbidden. + Петли с эмиттерами запрещены. + + + + + Can't perform operation : the system is flagged with 'No max nb steps' or uses the preset 'Spell FX', and thus, should have a finite duration. Please remove that flag first. + Невозможно выполнить операцию: система частиц помечен флагом "No max nb steps" или использует "Spell FX, +и, таким образом, должна иметь конечную длительность. Пожалуйста, удалите этот флаг в первую очередь. + + + + no emission + Не излучать + + + + NLQT::CFloatGradientWrapper + + + Float values gradient dialog + + + + + NLQT::CFollowPathDialog + + + Follow path param + + + + + Projection plane: + + + + + No projection + + + + + XY plane + XY плоскость + + + + XZ plane + XZ плоскость + + + + YZ plane + YZ плоскость + + + + NLQT::CForcePage + + + NeL particle system editor + Редактор системы частиц + + + + The target object last forever. Applying a force on such an object may result in instability in the system after a while. Continue ? (clue : you've been warned..) + Целевой объект длиться вечно. Применяя силу к такому объекту может привести к нестабильности в системе через некоторое время. Продолжить? + + + + NLQT::CGradientDialog + + + Num samples: + + + + + NLQT::CIntGradientWrapper + + + Int values gradient dialog + + + + + NLQT::CLocatedBindablePage + + + Material + Материал + + + + Size/Angle 2D + Размер/Угол 2D + + + + Rotations + Вращение + + + + Look At param + + + + + Shock wave param + + + + + Fan Light param + + + + + Tail param + + + + + Mesh param + Параметры модели + + + + + Texture param + Параметры текстуры + + + + Width + Ширина + + + + Height + Высота + + + + Size + Размер + + + + NLQT::CLocatedPage + + + + NeL particle system editor + Редактор системы частиц + + + + The object has force(s) applied on it. If it last forever, its motion can become instable after a while. Continue anyway ? (clue : you've been warned ..) + + + + + Can't perform operation : the system is flagged with 'No max nb steps' or uses the preset 'Spell FX', and thus, should have a finite duration. Please remove that flag first. + Невозможно выполнить операцию: система помечена "No max nb steps" или использует "Spell FX, +и, таким образом, должна иметь конечную длительность. Пожалуйста, удалите этот флаг в первую очередь. + + + + Set the extern ID + + + + + 0 means no extern access. + + + + + NLQT::CMainWindow + + + Open NeL data file + Открыть NeL файлы + + + + All NeL files (*.shape *.ps *.ig);;NeL shape files (*.shape);;NeL particle system files (*.ps)NeL Instance Group files (*.ig) + + + + + Open skeleton file + + + + + NeL skeleton file (*.skel) + файл NeL скелета (*.skel) + + + + About Object Viewer Qt + О Object Viewer Qt + + + + <h2>Object Viewer Qt 8-)</h2><p> Authors: dnk-88, sfb, Kaetemi, kervala <p>Compiled on %1 %2 + <h2>Object Viewer Qt 8-)</h2><p> Авторы: dnk-88, sfb, Kaetemi, kervala <p>Compiled on %1 %2 + + + + &Open... + &Открыть... + + + + Open an existing file + Открыть файл + + + + E&xit + В&ыход + + + + Ctrl+Q + + + + + Exit the application + Выйти из приложения + + + + Set &background color + &Установить фоновый цвет + + + + Set background color + Установить фоновый цвет + + + + Reset camera + Сбросить камеру + + + + Ctrl+R + + + + + Reset current camera + Сбросить текущую камеру + + + + Ctrl+M + + + + + Change render mode (Line, Point, Filled) + Переключить режим рендера + + + + &Reset scene + С&бросить сцену + + + + Reset current scene + Сбросить текукщую сцену + + + + + Reload textures + Перегрузить текстуры + + + + Save &Screenshot + Сохранить с&криншот + + + + Make a screenshot of the current viewport and save + Создать скриншот окна просмотра и сохранить + + + + &Settings + &Настройки + + + + Settings + Настройки + + + + &About + О программе + + + + Show the application's About box + Открыть диалог О программе + + + + About &Qt + О &Qt + + + + Show the Qt library's About box + Открыть диалог О Qt + + + + + &File + &Файл + + + + &View + &Вид + + + + &Scene + С&цена + + + + + &Tools + &Иструменты + + + + &Help + &Справка + + + + StatusReady + + + + + Loading canceled + Загрузка отменена + + + + File loaded + Файл загружен + + + + NLQT::CMeshWidget + + + Open NeL data file + Открыть NeL файлы + + + + NeL shape file (*.shape) + + + + + Shape loading error + Ошибка загрузка модели + + + + Error in morph meshes + + + + + Not a mesh + + + + + Shape not loaded + Модель не загружена + + + + Too much vertices + Слишком много вершин + + + + NLQT::CMorphMeshDialog + + + vertices + + + + + (%1 vertices) + + + + + + + Open NeL data file + Открыть NeL файлы + + + + + + NeL shape files (*.shape) + + + + + NLQT::CParticleControlDialog + + + Num particles: + Кол-во частиц: + + + + Num wanted faces: + + + + + System time: + Время: + + + + Num particles: %1 + Кол-во частиц: %1 + + + + Num wanted faces: %1 + + + + + System time: %1 + Время: %1 + + + + NLQT::CParticleSystemPage + + + Are you sure? + Вы уверены? + + + + Load balancing on/off + + + + + Can't perform operation : the system is flagged with 'No max nb steps' or uses the preset 'Spell FX', and thus, should have a finite duration. Please remove that flag first. + Невозможно выполнить операцию: система помечена "No max nb steps" или использует "Spell FX, +и, таким образом, должна иметь конечную длительность. Пожалуйста, удалите этот флаг в первую очередь. + + + + The system must have a finite duration for this setting! Please check that the following object doesn't live forever or doesn't create a loop in the system : + + + + + The system must have a finite duration for this setting! Please check that. + Система частиц должна иметь конечную продолжительность этого параметра! Пожалуйста, проверьте. + + + + NLQT::CParticleTextureWidget + + + Open texture file + Открыть файл текстуры + + + + Image file (*.tga *.png) + Файл изображения (*.tga *.png) + + + + Texture loading error + Ошибка загрузки текстуры + + + + Name: + Имя: + + + + Size: + Размер: + + + + Depth: + Цвет: + + + + Name: %1 + Имя: %1 + + + + Size: %1x%2 + Размер: %1x%2 + + + + Depth: %1 + Цвет: %1 + + + + NLQT::CParticleWorkspaceDialog + + + Set as active particle system + + + + + Save + Сохранить + + + + Save as + Сохранить как + + + + Clear content + Очистить + + + + Remove from workspace + + + + + Merge + + + + + New located + + + + + Paste located + + + + + Force ZBias + + + + + Instanciate + + + + + Copy located + + + + + Copy bindable + + + + + Paste bindable + + + + + Delete + Удалить + + + + All LOD + + + + + LOD 1 + + + + + LOD 2 + + + + + extern ID + + + + + + + + + NeL particle system editor + Редактор системы частиц + + + + uses auto count feature, and it has been modified. You should run the system entirely at least once at full detail before saving so that the editor can compute the number of particles in the system. If user params are used to modify system aspect, you should run the system for extreme cases before saving. + + + + + Save as ps file + + + + + ps files (*.ps) + + + + + Clear content ? + Очистить? + + + + + Can't perform operation : the system is flagged with 'No max nb steps' or uses the preset 'Spell FX', and thus, should have a finite duration. Please remove that flag first. + Невозможно выполнить операцию: система помечена "No max nb steps" или использует "Spell FX, +и, таким образом, должна иметь конечную длительность. Пожалуйста, удалите этот флаг в первую очередь. + + + + The system is flagged with 'No max Nb steps', or uses the preset 'Spell FX'.System must have finite duration. Can't add object. To solve this, set a limited life time for the father. + + + + + All object force ZBias + + + + + Set the extern ID + + + + + 0 means no extern access. + + + + + Bind particle... + + + + + Bind force... + + + + + Bind zone... + + + + + Bind emitter... + + + + + NLQT::CPlaneBasisGradientWrapper + + + Plane basis gradient dialog + + + + + NLQT::CPropertyDialog + + + Property editor + Редактор свойств + + + + NLQT::CSettingsDialog + + + Settings + Настройки + + + + Graphics and sound settings take after restart the program + настройки графики и звука будут применены после перезапуска программы + + + + Set new tile bank + + + + + Tile Bank file (*.smallbank *.bank);; + + + + + Set new tile far bank + + + + + Tile Far Bank file (*.farbank);; + + + + + Set MicroVegetable texture + + + + + Texture file (*.tga *.png *.jpg *.dds);; + + + + + Add zone files + + + + + Zonel files (*.zonel *.zone);; + + + + + NLQT::CSkeletonScaleDialog + + + + + + + + + Skeleton scale editor + + + + + + + Failed to open file for write! + Не удалось открыть файл для записи! + + + + Save As Skeleton File + + + + + Skeleton files (*.skel);; + + + + + Open Skeleton Scale File + + + + + + SkelScale files (*.scale);; + + + + + Failed to open file for read! + Не удалось открыть файл для чтения! + + + + Save As Skeleton Scale File + + + + + + Failed to save file! + Не удалось сохранить файл! + + + + Failed to load file! + Не удалось открыть файл! + + + + NLQT::CSlotGroupBox + + + + + Slot %1 : + + + + + + empty + + + + + Select your anim + + + + + Animation: + + + + + Select your skel + + + + + Skeleton weight template: + Шаблоны весов скелета: + + + + NLQT::CSlotManagerDialog + + + Slot %1 : empty : empty + Слот %1 : пусто : пусто + + + + Slot %1 + Пусто %1 + + + + Slot manager + Микшер + + + + NLQT::CSoundPage + + + Select your sound + + + + + Sound: + Звук: + + + + NLQT::CSpinnerDialog + + + Edit spinner + + + + + Nb samples: + + + + + NLQT::CTextureGradientInterface + + + Texture grouped dialog + + + + + NLQT::CUIntGradientWrapper + + + UInt values gradient dialog + + + + + NLQT::CValueBlenderDialog + + + Value blender + + + + + Start value: + + + + + End value: + + + + + NLQT::CValueFromEmitterDialog + + + Value from emitter + Значение из эмитера + + + + NLQT::CVegetableApperancePage + + + Select on other vegetables + + + + + Select the other vegetable to copy color. + + + + + NLQT::CVegetableDensityPage + + + Open Vegetable Shape + + + + + veget files (*.veget);; + + + + + NLQT::CVegetableDialog + + + Load a new vegetset file + + + + + + vegetset files (*.vegetset);; + + + + + Append vegetset file + + + + + Save Vegetable Set + + + + + VegetSetFiles (*.vegetset);; + + + + + Open Vegetable Descriptor + + + + + vegetdesc files (*.vegetdesc);; + + + + + Save Vegetable Descriptor + + + + + VegetDescFiles (*.vegetdesc);; + + + + + NLQT::CWorkspacePage + + + Create new pws file + + + + + + pws files (*.pws) + + + + + + Open NeL data file + Открыть NeL файлы + + + + Particle Workspace file (*.pws);; + + + + + Save as pws file + + + + + Particle System file (*.ps);; + + + + + + + NeL particle system editor + Редактор системы частиц + + + + Create new particle system file + + + + + ps files (*.ps) + + + + + Failed to create new particle system + Не удалось создать новую систему частиц + + + + Plugin::CCoreListener + + + Example close event hook + + + + + Do you want to close window? + + + + + Plugin::CExampleAppPage + + + SimpleViewer + + + + + Plugin::CExampleSettingsPage + + + Example page + + + + + General + Главное + + + + Plugin::MyPlugin + + + Not found QMainWindow Object Viewer Qt. + + + + + Not found QMenu Help. + + + + + Plugin::SheetBuilderPlugin + + + Not found MainWindow Object Viewer Qt. + + + + + Not found QMenu Tools. + + + + + SheetBuilderConfigDialog + + + Paths: + + + + + + Add + Сложение + + + + + Delete + Удалить + + + + Output file: + + + + + Browse... + + + + + Allowed extensions: + + + + + OK + + + + + Cancel + + + + + Sheet builder configuration + + + + + Choose output file + + + + + SheetBuilderDialog + + + Make sheet + + + + + Close + Закрыть + + + + Clean unwanted types from input + + + + + Show/Hide details... + + + + + Settings + Настройки + + + + Sheet builder + + + +