aboutsummaryrefslogtreecommitdiff
path: root/po/nb/minetest.po
Commit message (Expand)AuthorAge
* Run updatepo.shest312016-12-14
* Translated using Weblate (Norwegian Bokmål)Petter Reinholdtsen2016-12-14
* Translated using Weblate (Norwegian Bokmål)Christian Haug2016-12-14
* Translated using Weblate (Norwegian Bokmål)Petter Reinholdtsen2016-12-14
* Translated using Weblate (Norwegian Bokmål)Christian Haug2016-12-14
* Translated using Weblate (Norwegian Bokmål)Petter Reinholdtsen2016-12-14
* Translated using Weblate (Norwegian Bokmål)Christian Haug2016-12-14
* Translated using Weblate (Norwegian Bokmål)Petter Reinholdtsen2016-12-14
* Run updatepo.shest312016-08-30
* Run updatepo.shest312016-07-12
* Run updatepo.shest312016-05-05
* Update po files, minetest.conf.example and settings_translation_file.cppest312016-02-27
* Run util/updatepo.shest312015-11-08
* Run updatepo.shest312015-10-24
* Translated using Weblate (Norwegian Bokmål)Christian Haug2015-10-05
* Run updatepo.shest312015-09-12
* Run updatepo.shest312015-07-17
* Revert "Update Russian translation"Kahrl2014-12-13
* Update po filesShadowNinja2014-12-12
* Run updatepo.shPilzAdam2013-11-23
* Run updatepo.shIlya Zhuravlev2013-09-08
* Run util/updatepo.shPilzAdam2013-08-25
* Translated using Weblate (Norwegian Bokmål)sfan52013-08-25
* Fix i18n of some strings.arsdragonfly2013-07-02
* Update po filesPilzAdam2013-05-13
* Translated using Weblate (Norwegian Bokmål)Sindre Tellevik2013-05-13
* Rename "no" (Norwegian) to "nb" (Norwegian Bokmål)Ilya Zhuravlev2013-05-01
span> break; } } if(bad){ errorstream<<"FileCache: Failed to read file from cache: \"" <<path<<"\""<<std::endl; } return !bad; } bool FileCache::updateByPath(const std::string &path, const std::string &data) { std::ofstream file(path.c_str(), std::ios_base::binary | std::ios_base::trunc); if(!file.good()) { errorstream<<"FileCache: Can't write to file at " <<path<<std::endl; return false; } file.write(data.c_str(), data.length()); file.close(); return !file.fail(); } bool FileCache::update(const std::string &name, const std::string &data) { std::string path = m_dir + DIR_DELIM + name; return updateByPath(path, data); } bool FileCache::load(const std::string &name, std::ostream &os) { std::string path = m_dir + DIR_DELIM + name; return loadByPath(path, os); }