aboutsummaryrefslogtreecommitdiff
path: root/po/ro/minetest.po
Commit message (Expand)AuthorAge
* Update translation filesupdatepo.sh2020-04-03
* Translated using Weblate (Romanian)Gmail a - 2 - a Boxa2020-04-03
* Update translation sourcesrubenwardy2020-01-24
* Update translation stringsupdatepo.sh2019-10-12
* Update from Weblate (hacky)Translators2019-10-12
* Update translation stringsupdatepo.sh2019-09-09
* Run updatepo.shTranslations2019-02-24
* Update minetest.conf.example, settings strings and locale files (#8230)Wuzzy2019-02-14
* Run updatepo.shTranslation2019-02-14
* Cleanup translation filesLoïc Blot2019-01-28
* Update translationsTranslations2019-01-27
* Run updatepo.shTranslations2019-01-06
* Update translations from WeblateTranslations2019-01-06
* Update minetest.conf.example and run updatepo.sh (#7947)Update Script2018-12-09
* Add translation of LANG_CODE in all languagesEkdohibs2017-08-24
* Fix updatepo.sh and run it.Ekdohibs2017-08-24
* Run updatepo.shLoic Blot2017-05-21
* Footsteps without view bobbing (#5645)Louis Pearson2017-04-25
* Run updatepo.shest312016-12-14
* Run updatepo.shest312016-08-30
* Run updatepo.shest312016-07-12
* Run updatepo.shest312016-05-05
* Translated using Weblate (Romanian)Lordmusic Player2016-03-25
* Update po files, minetest.conf.example and settings_translation_file.cppest312016-02-27
* Run util/updatepo.shest312015-11-08
* Translated using Weblate (Romanian)PilzAdam2015-11-08
* Run updatepo.shest312015-10-24
* Run updatepo.shest312015-09-12
* Run updatepo.shest312015-07-17
* Revert "Update Russian translation"Kahrl2014-12-13
* Update po filesShadowNinja2014-12-12
* Translated using Weblate (Romanian)King Artur2014-02-16
* Translated using Weblate (Romanian)Mitchell Ward2014-02-16
* Run updatepo.shPilzAdam2013-11-23
* Translated using Weblate (Romanian)King Artur2013-11-23
* Run updatepo.shIlya Zhuravlev2013-09-08
* Run util/updatepo.shPilzAdam2013-08-25
* Fix *.po errors caused by rebase.Ilya Zhuravlev2013-08-25
* Fix i18n of some strings.arsdragonfly2013-07-02
* Update po filesPilzAdam2013-05-13
* Update po filesPilzAdam2013-03-30
* Translate key functions in key change menuPilzAdam2013-01-30
* Add Spanish, Russian, Polish and Romanian languages.Ilya Zhuravlev2013-01-29
="hl opt">&color) { m_selection_mesh_color = color; } void setSelectedFaceNormal(const v3f &face_normal) { m_selected_face_normal = face_normal; } bool hasElementOfType(HudElementType type); void drawLuaElements(const v3s16 &camera_offset); private: bool calculateScreenPos(const v3s16 &camera_offset, HudElement *e, v2s32 *pos); void drawStatbar(v2s32 pos, u16 corner, u16 drawdir, const std::string &texture, const std::string& bgtexture, s32 count, s32 maxcount, v2s32 offset, v2s32 size = v2s32()); void drawItems(v2s32 upperleftpos, v2s32 screen_offset, s32 itemcount, s32 inv_offset, InventoryList *mainlist, u16 selectitem, u16 direction); void drawItem(const ItemStack &item, const core::rect<s32> &rect, bool selected); void drawCompassTranslate(HudElement *e, video::ITexture *texture, const core::rect<s32> &rect, int way); void drawCompassRotate(HudElement *e, video::ITexture *texture, const core::rect<s32> &rect, int way); float m_hud_scaling; // cached minetest setting float m_scale_factor; v3s16 m_camera_offset; v2u32 m_screensize; v2s32 m_displaycenter; s32 m_hotbar_imagesize; // Takes hud_scaling into account, updated by resizeHotbar() s32 m_padding; // Takes hud_scaling into account, updated by resizeHotbar() video::SColor hbar_colors[4]; std::vector<aabb3f> m_selection_boxes; std::vector<aabb3f> m_halo_boxes; v3f m_selection_pos; v3f m_selection_pos_with_offset; scene::IMesh *m_selection_mesh = nullptr; video::SColor m_selection_mesh_color; v3f m_selected_face_normal; video::SMaterial m_selection_material; scene::SMeshBuffer m_rotation_mesh_buffer; enum { HIGHLIGHT_BOX, HIGHLIGHT_HALO, HIGHLIGHT_NONE } m_mode; }; enum ItemRotationKind { IT_ROT_SELECTED, IT_ROT_HOVERED, IT_ROT_DRAGGED, IT_ROT_OTHER, IT_ROT_NONE, // Must be last, also serves as number }; void drawItemStack(video::IVideoDriver *driver, gui::IGUIFont *font, const ItemStack &item, const core::rect<s32> &rect, const core::rect<s32> *clip, Client *client, ItemRotationKind rotation_kind); void drawItemStack( video::IVideoDriver *driver, gui::IGUIFont *font, const ItemStack &item, const core::rect<s32> &rect, const core::rect<s32> *clip, Client *client, ItemRotationKind rotation_kind, const v3s16 &angle, const v3s16 &rotation_speed);