summaryrefslogtreecommitdiffstats
path: root/perl-install/share/po/bn.po
Commit message (Expand)AuthorAgeFilesLines
* sync with codeThierry Vignaud2016-01-021-278/+284
* Subsitutions in code and translations for KDE packagesAnne Nicolas2015-12-061-2/+2
* Bug 13837: Fix typo pauvucontrol -> pavucontrolYuri Chornoivan2015-07-051-1/+1
* sync with codeThierry Vignaud2015-05-131-2/+7
* Adapt translation to modified string and unfuzzy themRémi Verschelde2015-04-131-2/+2
* Update translation catalogRémi Verschelde2015-04-131-454/+459
* Update translation catalogYuri Chornoivan2014-12-281-56/+68
* sync with codeThierry Vignaud2014-11-191-901/+870
* adapt to Colin changesThierry Vignaud2014-11-191-1/+1
* sync with codeThierry Vignaud2013-11-301-48/+45
* sync with codeThierry Vignaud2013-09-301-261/+256
* typo fix (spot by James Kerr, mga#10814)Thierry Vignaud2013-07-251-1/+1
* merge translations from mccThierry Vignaud2013-04-201-1/+1
* sync with codeThierry Vignaud2013-04-061-204/+265
* sync with codeThierry Vignaud2012-12-141-8/+13
* sync with codeThierry Vignaud2012-12-111-97/+107
* merge translations from rpmdrakeThierry Vignaud2012-09-271-1/+1
* (install_completed) split paragraphsThierry Vignaud2012-09-181-21/+18
* fix some spacing at end of lineThierry Vignaud2012-09-181-1/+1
* split license titles from their paragraphsThierry Vignaud2012-09-181-21/+39
* sync with codeThierry Vignaud2012-09-181-10/+16
* change license ownership (mga#7347)Thierry Vignaud2012-09-141-1/+1
* propagate license changeThierry Vignaud2012-09-141-8/+6
* sync with codeThierry Vignaud2012-09-141-159/+162
* remove trailling newlines (final syncing with sources)Thierry Vignaud2012-09-141-5/+5
* split translations like source wasThierry Vignaud2012-09-141-10/+21
* s/licence/license/ (mga#7347)Thierry Vignaud2012-09-141-1/+1
* fix errors:Thierry Vignaud2012-09-141-1/+1
* Update POs to fix bug #1122.Yuri Chornoivan2012-07-291-496/+495
* sync with ../../install/share/poThierry Vignaud2012-03-111-1/+1
* sync with codeThierry Vignaud2012-03-111-416/+419
* - sync with code (especially for #1011)Thierry Vignaud2011-08-051-202/+192
* sync with codeThierry Vignaud2011-04-291-13/+11
* replace Mageia Linux by MageiaAnne Nicolas2011-04-241-7/+7
* Update translation files.Anssi Hannula2011-04-171-130/+130
* - any.pm: make it easier for rebranding by using %s magicAhmad Samir2011-04-071-10/+15
* - s/Ldap/LDAP/ in the po/pot files manually so as not to fuzzy the strings un...Ahmad Samir2011-04-071-2/+2
* - s/can not/cannot/ manually in the po/pot files so as not the make the stringsAhmad Samir2011-04-071-13/+13
* - revert 's,/boot partition,separate /boot partition,', .po/pot files shouldn'tAhmad Samir2011-04-051-3/+3
* - 's!Just select your tv card parameters!Just select your TV card parameters!'Ahmad Samir2011-04-041-1/+1
* - s/api/API/Ahmad Samir2011-04-041-4/+4
* - perl -pi -e 's!trouble shoot!troubleshoot!'Ahmad Samir2011-04-041-2/+2
* - perl -pi -e 's!you can pick one in the above list!you can pick one from the...Ahmad Samir2011-04-041-1/+1
* - perl -pi -e 's!For this, create a partition!To accomplish this, create a pa...Ahmad Samir2011-04-041-1/+1
* - perl -pi -e 's!"Search new servers"!"Search for new servers"!'Ahmad Samir2011-04-041-1/+1
* - perl -pi -e 's!Something bad is happening on your drive!Something bad is ha...Ahmad Samir2011-04-041-1/+1
* - perl -pi -e 's!"Activate ethernet cards promiscuity check."!"Activate Ether...Ahmad Samir2011-04-041-1/+1
* - perl -pi -e 's!Posix!POSIX!'Ahmad Samir2011-04-041-1/+1
* - perl -pi -e 's!Hard drive!Hard disk drive!' (except install/steps_list.pm)Ahmad Samir2011-04-041-1/+1
* - perl -pi -e 's!need to reboot before the modification can take place"!"need...Ahmad Samir2011-04-041-2/+2
ndif {"File name too long", ENAMETOOLONG, "ENAMETOOLONG"}, {NULL, 0, NULL} }; int _SLerrno_errno; int SLerrno_set_errno (int sys_errno) { _SLerrno_errno = sys_errno; return 0; } char *SLerrno_strerror (int sys_errno) { Errno_Map_Type *e; e = Errno_Map; while (e->msg != NULL) { if (e->sys_errno == sys_errno) return e->msg; e++; } if (sys_errno == SL_ERRNO_NOT_IMPLEMENTED) return "System call not available for this platform"; return "Unknown error"; } static char *intrin_errno_string (int *sys_errno) { return SLerrno_strerror (*sys_errno); } int _SLerrno_init (void) { static Errno_Map_Type *e; if (e != NULL) /* already initialized */ return 0; if ((-1 == SLadd_intrinsic_function ("errno_string", (FVOID_STAR) intrin_errno_string, SLANG_STRING_TYPE, 1, SLANG_INT_TYPE)) || (-1 == SLadd_intrinsic_variable ("errno", (VOID_STAR)&_SLerrno_errno, SLANG_INT_TYPE, 1))) return -1; e = Errno_Map; while (e->msg != NULL) { if (-1 == SLadd_intrinsic_variable (e->symbolic_name, (VOID_STAR) &e->sys_errno, SLANG_INT_TYPE, 1)) return -1; e++; } return 0; }