From 7b0d277fda8dd6ef330b662c4fc81dfa7ef28a49 Mon Sep 17 00:00:00 2001 From: Silvan Calarco Date: Sat, 24 Mar 2012 11:56:05 +0100 Subject: [PATCH] Initial commit for mambawelcome port to PyQt4 - copied common files from old mambawelcome in desktop-base-openmamba - Makefile copied from desktop-base-openmamba and reworked to only install mambawelcome components --- Makefile | 121 +++++++++++++++++ VERSION | 1 + config.sample | 15 +++ mambawelcome-128x128.png | Bin 0 -> 3851 bytes mambawelcome-16x16.png | Bin 0 -> 613 bytes mambawelcome-22x22.png | Bin 0 -> 738 bytes mambawelcome-32x32.png | Bin 0 -> 992 bytes mambawelcome-48x48.png | Bin 0 -> 1543 bytes mambawelcome-64x64.png | Bin 0 -> 1967 bytes mambawelcome-init | 37 +++++ mambawelcome.sh | 179 +++++++++++++++++++++++++ po/es.po | 282 +++++++++++++++++++++++++++++++++++++++ po/it.po | 282 +++++++++++++++++++++++++++++++++++++++ 13 files changed, 917 insertions(+) create mode 100644 Makefile create mode 100644 VERSION create mode 100644 config.sample create mode 100644 mambawelcome-128x128.png create mode 100644 mambawelcome-16x16.png create mode 100644 mambawelcome-22x22.png create mode 100644 mambawelcome-32x32.png create mode 100644 mambawelcome-48x48.png create mode 100644 mambawelcome-64x64.png create mode 100755 mambawelcome-init create mode 100755 mambawelcome.sh create mode 100644 po/es.po create mode 100644 po/it.po diff --git a/Makefile b/Makefile new file mode 100644 index 0000000..b686078 --- /dev/null +++ b/Makefile @@ -0,0 +1,121 @@ +# Makefile for mambawelcome +# Copyright (C) 2012 by Silvan Calarco + +include VERSION + +PACKAGE = mambawelcome +DISTROID = openmamba + +RPM_VENDOR = openmamba +RPM_DISTRIBUTION = openmamba +RPM_DISTROEXT = mamba + +DISTROid = $(shell echo $(DISTROID) | tr A-Z a-z) +DISTROICON = $(DISTROid) + +DESTDIR = + +prefix = /usr +exec_prefix = ${prefix} +sysconfdir = /etc +sbindir = ${exec_prefix}/sbin +bindir = ${exec_prefix}/bin +datadir = ${prefix}/share +initrddir = ${sysconfdir}/rc.d/init.d +mandir = ${prefix}/usr/share/man +sysconfigdir= ${sysconfdir}/sysconfig +xprofiledir = ${sysconfdir}/xprofile.d +mambawelcomedatadir = ${datadir}/openmamba/mambawelcome +iconsdir = ${datadir}/icons/hicolor +kdeprefixdir = $(shell kde-config --prefix) +kdedatadir = $(kdeprefixdir)/share +kdeautostartdir = ${kdedatadir}/autostart +kdeconfigdir = ${kdedatadir}/config +kdewallpapersdir = ${kdedatadir}/wallpapers +localesdir = ${datadir}/locale +kdelocalesdir = ${kdedatadir}/locale + +xdg_appsdir = ${datadir}/applications +xdg_directorydir = ${datadir}/desktop-directories +xdg_menudir = ${sysconfdir}/xdg/menus +xdg_mergedmenudir = $(xdg_menudir)/applications-merged + +distrorootdir = ${datadir}/$(DISTROid) +distrobindir = ${distrorootdir}/bin +distrosrpmsdir = ${distrorootdir}/SRPMS +distrodesktopdir = ${distrorootdir}/desktop +srcdir = . + +INSTALL = /usr/bin/install +INSTALL_PROGRAM = ${INSTALL} -m 755 +INSTALL_DATA = ${INSTALL} -m 644 +INSTALL_DIR = ${INSTALL} -d -m 755 +INSTALL_SCRIPT = ${INSTALL_PROGRAM} + +distdir = $(PACKAGE)-$(VERSION) +dist_archive = $(distdir).tar.bz2 + +pck_catalogs := $(wildcard po/*.po) + +.po.mo:; msgfmt $< -o $@ + +locales: $(pck_catalogs:.po=.mo) + +install-locales: locales + @for f in $(pck_catalogs); do\ + lang=`echo $$f | sed 's,.*/\(.*\)\.po,\1,'`;\ + echo "installing i18n file for language \`$$lang'...";\ + dir="$(DESTDIR)$(kdelocalesdir)/$$lang/LC_MESSAGES";\ + $(INSTALL_DIR) $$dir;\ + $(INSTALL_DATA) $${f/.po/.mo} $$dir/mambawelcome.mo;\ + done + +install-kde-distro-addons: dist-update + @$(INSTALL_DIR) $(DESTDIR)$(sysconfdir) + @$(INSTALL_DIR) $(DESTDIR)$(bindir) + @$(INSTALL_DIR) $(DESTDIR)$(datadir) + @$(INSTALL_DIR) $(DESTDIR)$(sbindir) + @$(INSTALL_DIR) $(DESTDIR)$(distrobindir) + cp -r menu/icons/ $(DESTDIR)$(datadir)/icons/ + +install-icons: + @for i in 16x16 22x22 32x32 48x48 64x64 128x128; do \ + $(INSTALL_DATA) mambawelcome-$$i.png $(DESTDIR)$(iconsdir)/$$i/apps/mambawelcome.png; \ + done + +install-mambawelcome: + @$(INSTALL_DIR) $(DESTDIR)$(mambawelcomedatadir) + @$(INSTALL_DIR) $(DESTDIR)$(sysconfdir)/rc.d/{init.d,rc5.d} + @$(INSTALL_DIR) $(DESTDIR)$(kdeconfigdir) +# $(INSTALL_SCRIPT) mambawelcome/mambawelcome.kmdr $(DESTDIR)$(mambawelcomedatadir) + $(INSTALL_SCRIPT) mambawelcome.sh $(DESTDIR)$(mambawelcomedatadir) + $(INSTALL_SCRIPT) mambawelcome-init $(DESTDIR)$(sysconfdir)/rc.d/init.d/mambawelcome + $(INSTALL_DATA) gpl.html $(DESTDIR)$(mambawelcomedatadir)/gpl.html + $(INSTALL_DATA) gpl-it.html $(DESTDIR)$(mambawelcomedatadir)/gpl-it.html + $(INSTALL_DATA) gpl-es.html $(DESTDIR)$(mambawelcomedatadir)/gpl-es.html + ln -s ../init.d/mambawelcome $(DESTDIR)$(sysconfdir)/rc.d/rc5.d/S99mambawelcome + +install: $(pck_infiles:.in=) \ + install-kde-distro-addons \ + install-mambawelcome \ + install-locales \ + install-icons + +dist: clean +# @git log > ChangeLog.git + @mkdir /tmp/$(distdir) + @cp -a * /tmp/$(distdir)/ + @rm -f $(dist_archive);\ + tar cf - -C /tmp $(distdir) | bzip2 -9 -c > $(dist_archive) + @rm -rf /tmp/$(distdir) + @echo "file \`$(dist_archive)' created" + +dist-rpm: dist + @rpm_sourcedir=`rpm --eval=%{_sourcedir}`;\ + mv -f $(dist_archive) $$rpm_sourcedir;\ + echo "and saved as \`$$rpm_sourcedir/$(dist_archive)'" + +clean: + rm -f $(dist_archive) + rm -f $(pck_catalogs:.po=.mo) + diff --git a/VERSION b/VERSION new file mode 100644 index 0000000..7781946 --- /dev/null +++ b/VERSION @@ -0,0 +1 @@ +VERSION = 1.95 diff --git a/config.sample b/config.sample new file mode 100644 index 0000000..1fe4f07 --- /dev/null +++ b/config.sample @@ -0,0 +1,15 @@ +# openmamba installer configuration file + +INSTALL_DEVICE= +INSTALL_BOOTLOADER_DEVICE= +INSTALL_BOOTLOADER_DEVICE_SETBOOTABLE="true" +INSTALL_BOOTLOADER_CHAINLOAD=() +INSTALL_FSTYPE=ext3 +INSTALL_HOSTNAME="openmamba-test" +INSTALL_USER="default" +INSTALL_USER_FULLNAME="Default User" +INSTALL_USER_PASSWORD="" +INSTALL_USER_AUTOLOGIN="true" +INSTALL_ROOT_PASSWORD="" +INSTALL_HOSTNAME="openmamba" +INSTALL_DOMAIN="localdomain" diff --git a/mambawelcome-128x128.png b/mambawelcome-128x128.png new file mode 100644 index 0000000000000000000000000000000000000000..dff7adcc6661873ae95c5caece392c5ef152583b GIT binary patch literal 3851 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 N002ovPDHLkV1j080ImQ4 literal 0 HcmV?d00001 diff --git a/mambawelcome-16x16.png b/mambawelcome-16x16.png new file mode 100644 index 0000000000000000000000000000000000000000..452bd63367dff9d4e9286eb0303c69b758f992c2 GIT binary patch literal 613 zcmV-r0-F7aP)F;G#cx<8*u;t03CEi zSad^gZEa<4bO1wgWnpw>WFU8GbZ8({Xk{QrNlj4iWF>9@00GHKL_t(I%YD;Lh)z)$ z2k_tfzB9KOA1gCqSV=J!J_dyiqOQs6W#OZlg$)*#N*2aK7Dz~xjTKAXlGM#KSdbN( zkfAA*v6#&GZo2dF+T2@bZt|~F|8t)6f6jCM=Q$N6)YE7;4r4Rg^W_md#q}i49)|lX zfe^0ZnE&HU5@&tIq*jp5-dZ=V1RG!D0p6o+e5ldX+E%Gx>(p=4V{aRSm}m+Fy#YUm zlS!O4pnYw19iD7C+hk_S%<$dm9^AsWY9MM0_;4YH(U&tHCx11bX{a={sCM?&TJRmh z1n&ZVxt>Pn>uJA?LY&azn* zBysiz2l2C%U;*~vCi<}qSrH7cAc?a(SdP>AX=TjEMVy$`2lX_XhXgBeD2cQFe0>SF zp&NVAlI#9paS~@giVAjMCzj$=P|@ck&Tc1h)`N|h%tLd~6<*;>Q0At38ZG=s`LA+A z3(O4@JjZCxBiyK`QEMr|Q7p=N14HF!JdO*2U<8jafi+kk#L^_rc0t(6m#_i*@_9%8 ztYv)2f2(pIOk;mO26CqhOkogxSe?Y#ry}qd7o>`abbIrL00000NkvXXu0mjfSjP&` literal 0 HcmV?d00001 diff --git a/mambawelcome-22x22.png b/mambawelcome-22x22.png new file mode 100644 index 0000000000000000000000000000000000000000..01480f31a02101e364ff54fad69251c8b96ed4f4 GIT binary patch literal 738 zcmV<80v-K{P)F;Gzb^~YB>M^03CEi zSad^gZEa<4bO1wgWnpw>WFU8GbZ8({Xk{QrNlj4iWF>9@00KryL_t(I%dON;h*wn< z!12#-7=O$UN3k}x5Su_UkRU^JlPH>9f;4^@(WVIhtRh_K!i^i3xiAoh3DGG;+!Pnh z%`m8#QXmDk2xk#QMU-fUmNawq`D^ov$K^hUfezfoJLkObJ?EZ39WBzI>b`(?u^Fqd zxHjFx3@+j07}8AX|4sq81V^#k{8HgV9E>47Yz6nHx*dFmzJ?R|7o=oXa4mY%0O$f?;}kp#E|@OzIyo6^rK~e%nTA#b3Cd%hh1&pTsF4okFMM{ zH2%c1oe>ya(dmXy7R@eSH*~nIc;~P^gG79Ui!r1J4c{@`z(}pS7DL+5R=mjqxL=>U z{i*I1e1U0vi`Vcz?%>e>)owrH6vp#9v<*lP6L`C1FUWoDiy@tOEVyyOdhD;CrZ*3K zfW1w4r`ezN6KufQ7}8g@eiU2kv$-CSQaAmDXJSaVbMPJQ(ax!lFqIETp?(w{lwAC?Wl U7UsA_T>t<807*qoM6N<$f`fupBLDyZ literal 0 HcmV?d00001 diff --git a/mambawelcome-32x32.png b/mambawelcome-32x32.png new file mode 100644 index 0000000000000000000000000000000000000000..6c5c7509c4d902ba46157d6842867c1aa46ecb2b GIT binary patch literal 992 zcmV<610Vc}P)F+F9RiDtVI9-18qq} zK~z}7t(RMfO<@$rfBT%7?HayN( z`10VgbM1`WuMcDpk(6s@WH{fMbGDanG*0K+d(WO(FMGGv`quid{jJ-!2tkf($AA$) zsebkX3W1nb$pG(xmp}z@0eCEh@`7wzA)Lw064DQ5;zFVBRYA& z7GRSUDw9hgW^fL0ppnk&0^A5}H7Udl{8C^(O-HL8*PaB#ffn@zc{!rD{15}rfm6UU z;49Du=nPB-rvG^5r7KURt4lWIHPbSH_{UqBLqHX<6u4~!01N^8=iq06l|Z=^DxE`q zxOiFKoXV5wqhojd=bTK6D$e zgPJ;i%_q;Qt-;1)Kd?LqKs$r|Pa*F5wdawa`bG0h%KKMgt-4t8_I<5tEPeuyf&kPS zj8Ar4yJG-=i@>@kM|DPAF2~NuDusn7P7{F z0r!Dxz-8dR6e{hwb|+mmgLKL6ltO(D3!nga0(6PcbiM#*fMfdWcu{A;P@OPs8_@yp z0qdkt*CS0s$F=(a$AO`Z97sDf5HIX306+>=sptPJ9Zl4MvYOhC$F)c48D0cD09H$(-saFN1jYapfbk(0mgm60`d49P866DV1X|W(e*gwZ zp{fJEP!C{+F5e;_)e7XgD-J>?KQ~ z{s4=CZw8ejKLD={hbB6%o!3ARPYvR>egGaC4t3VqAGTsFptnK%%@4p;AZ0kX&2jAx zAu-Gax*23|i~yuiRls?}!R~GdOcFSur{5bu>HV)* zZ_{J_78WVg)G*WV2(XBzr4%q+3Kh7N0;~WYH!*0BHsd(MH$C2 zUF;GcWFU8GbZ8({Xk{QrNlj4iWF>9@00nDFL_t(&-o2S?Y*a-U zhM&DK+!`otF;Fgw0YpUzL@tU^3YdwJi$^8F8YR$(M&bn`5j7J3NkBzJ1VM>HV*Ejz zC;>bPYKo#&0WlbnDg^`)1fgKrF4OIOs(?v;*D<7AU>)EpsZ*g7 za9lAPSOp9qSbPgSt)#9Ag@EIVKENx$e8NLB@FMWCk~%m7jw^ZsUjw7)9BcvRDycL1 z45Jp#M}Q5T=sdtf!1FeSQJWV4RMPoa=D1>VK?EFE2y^ef;tJ4U(q#j1Ifq^5NEZdGnpcD15N^qOm?!4fx$pg9)B(Y@A`<55dg<_ria$Nlq$VY zoB69vLHPf?%S?MxC&}0a=z712mGedj!@#b zqQu8@D}nEbpvxyk&z6mh^ljr<95LmsF5R!68#^_yBDy(OUFe8FqlF_~ft8LcydK19 zVB*+C@zM#);yoj=_Kmug(tSi_tbE+k_z@uCl|Wst$j`!jV6)?jGLIxO`(H~n04FSL z4|^_TO6o>nucb2&0!JKIY;s&N!Q&grmjuoMpZaYjlm|z80rP+wpw4l{>y9g?JFY0s z^V}-nvmE~=O;dN#S2t=lKME8V5a>zZ5KwI#-J_(wkhM?T1nGQWkf{?jz%xqf{ROqt zjw_Y`D*|lNlE6OT6JV#3`e4?6B|x%uD^e%{0ek`68bZgJ0lo)50Nz(p*M}l09amgs zUg;3RLnH7uutG`wXBd+5Y7^9BLe>H2jjUW3h$3s1R*##}$!b7{NT38*3#>6}FqE;% zP~Zh4GJ1wcW+U*J>0pB+(27WZ;0fSNjU4~0OM@E;A_2TTLT0kHtn?ieNY zFP;b(r)B^POmVpYYz5Zmo1mG#Xp&J<(|{W+a9xZD&Sh9vv&Y#%OwPGua`7h zm1n_ujw_1%+yy0dN=f~>lKO7o9+UTNFxHBIV|?vy^{KX=>~u3BJnH-_Z+C15cyO-cP*pmU+D>@)y)9C!ri8-U}-fX%>aCG~kP4;DI=h|w}~ ttT6fgCd;~UgqCl}HNY+<^zFo@M|5002ovPDHLkV1iwzvMc}q literal 0 HcmV?d00001 diff --git a/mambawelcome-64x64.png b/mambawelcome-64x64.png new file mode 100644 index 0000000000000000000000000000000000000000..7aa0b4263da82181a5a12357687ad3ea5a509f71 GIT binary patch literal 1967 zcmV;g2T=HlP)F;GZWn;H4*>-03CEi zSad^gZEa<4bO1wgWnpw>WFU8GbZ8({Xk{QrNlj4iWF>9@00$FEL_t(|+SQwDj1)x> z$A2@+%^?UVK0uTZMG1$f$oa*`X*6i7M05m2!B>1lf}X(`-^O50jX@MOl871;qo63- z7Y*vDXbw~a!9+oPfP%;=2%ImFyS}>}KTH!Z=k4xHZ_n=fPd3@?PIp)RySlr&s>UHD z_<`pE#{wq;WAw)XMgi41nzaGzfX%?y`uj(~CMi^yhMZ0cN{<630+WFLmb(5DXaeQ~ ztE5n!6-9s_c>4kMz*WEzq>GinBfuglRJQB{_<=VCcnBCuX|WQxRtmMIECl$0R}IVq zuB3cu2X2)@Jzi1*{JIC?K*Bkg0IF8D~OTg5mr-hqPc?Vcf zfyx713fz*kk(==O34l-KVx}K>C#JFl{J`r2d=Ct!vat>rt(U^Sz#+i;To3n3(D8Le zDjxzHwTJgJ(5i(UtN$Mi)M|mdPfYmx`f%GX%d?#|S7coMOfHQ2b7OeB_D7}yZ)>N_ z+yeZ-bAe_<0)7CV0p?4geu^>HXy7tn8Ze->h0c`^bo{z=ZT65%HJc{9;W@ytT2~VSOU%fmLycX6}TUGObWHz;ItX4cJo|Qefw#h10nYo8Yk`&ILko!iBhPyOxKIHmQ}#GgU7l%j=nnM zc+9xA9!n=aaiTe#~~z zmh0h`Z^J=)QeDFECSV5eYCb*V5>S&+@YgITp8*B|WEBI$PWo?Kl^xc+H2ZT-bFSu( zo;F3GZ?OdIn^5@O76|ABws!w9+d);X1_vJF_IADhknl}Dd0f&#KTG}0iPp0=iE92j z_;~k#oF>zozIC&zcJ)5M`3q=qGHe2F?Ak{$en1jj1bk@8zi$O59(bHPd`x|2*ggm4 zKZ*y|IES9IpsEdM2}5Qyo~@SIaD{(MDEKvg;Ms7QL*R8_YTc|}4gH2Xas7~LV3^|+ zp5V9ye4S8m4|v%RylX64)h2^B>unLR%wTX2c-9ZR6@K7N@dK~Qf{*`Qg6B67#S)9Z z4Ecd~67X@63bX*v1B-yqq)_b!-r*!*Va$oUN(%M7&D-DxV7Mi7-mD`^%YYB0P+Jnn zFVYRxI5Cu7-yiAE5-HT?0IL7pn2WJ|5yZ&nlK4BAo&i0DBtwB+U{^(vQYpWtWVC6XUgpr(THrpQQ3};jG6FOS1AxWA$&?=}iE;wV zOGbbu!2=%Gp{sJEUCVMu(q&;IH|PViOK>{G!8~AklBB7v>~KGQ18nHwY%Vok1g?xr zLK^h}LR-X$a$15EYFfz&=t6`8oIn(hzn~0cguwYys5i?(Ko7^}v6_fF;1r;$1SD($ zMiz3MlDNW?fD3`cx*R{xN};|nI6_a=MAQ-05T%9Nq)-nRMSvf8Lx4B=H-**R)Ea=9 zrbSGC;Pvlf8Rrp2acx=VPr&eeS8peV@=Jh`1qOOj3RQ1u$sDf9mG~93bjQFb(h{m-#6^0 zwvgbtFb3$8V4%}=%zzY#_z^fq2TYP;lplEem=JJO!hwbuv`Ioj2T|HQX(7}A9WY5u zzp%39$2jK)?-g3bT`108*&cM5(a$3ReE^LOZ`P z0h)wGz{Ny0Kb3}efVpw2LlSL*J#30&wUace0uV^+h7b!*z26kHi**L#9P1^ z6XlDtfNs_>TJO4(Eu7zR(F8mog?g`;PHZPf4+pL#db6x11*Myb>i=H_mfLuvJgwxY zOY~Oh-i%MJCL~FmU>8wbat%?DW)rZ%=9}XH{{Z;YI` + +if [ $UID != 0 ]; then + echo "$0: must be superuser." >&2 + exit 1 +fi +. /etc/sysconfig/i18n +export LANG +export HOME=/root + +INPUT_FILE=/root/.installer.conf + +[ -e $INPUT_FILE ] || exit 0 + +. $INPUT_FILE + +[ "$INSTALL_USER" ] && exit 0 + +# restore mixer status to prevent it to be set to 0 values in case of shutdown +/usr/sbin/alsactl restore >/dev/null 2>&1 + +#xset -dpms +[ -e /opt/kde3/bin/kconf_update ] && PATH=/opt/kde3/bin:$PATH kconf_update +#/opt/kde3/bin/dcopserver +xinit /opt/kde3/bin/kmdr-executor /usr/share/openmamba/mambawelcome/mambawelcome.kmdr -- -br -dpi 100 +#/opt/kde3/bin/dcopserver_shutdown +killall -9 dcopserver + +[ -e /root/.mambawelcome-not-completed ] && { + rm -f /root/.mambawelcome-not-completed + halt +} + +exit 0 diff --git a/mambawelcome.sh b/mambawelcome.sh new file mode 100755 index 0000000..0412973 --- /dev/null +++ b/mambawelcome.sh @@ -0,0 +1,179 @@ +# openmamba mambawelcome script +# Copyright (c) 2007-2011 by Silvan Calarco +# +# Released under the terms of the GNU GPLv3 License +# +VERSION=1.1 +TEXTDOMAIN=mambawelcome +TEXTDOMAINDIR=/opt/kde3/share/locale/ +INSTALL_DATE=`date +%Y%m%d-%H%M` +INPUT_FILE=/root/.installer.conf +LOG_FILE=/var/log/mambawelcome-$INSTALL_DATE.log +KERNEL_RELEASE=`uname -r` +DCOP=/opt/kde3/bin/dcop + +function abort() { + [ "$DCOPID" ] && { + $DCOP $DCOPID KommanderIf setText progressText $"Installation aborted; press Next to see the error log." + $DCOP $DCOPID KommanderIf setText finallabel $"Installation aborted :-(" + $DCOP $DCOPID KommanderIf setEnabled next true + } + exit 1 +} + +function dcop_write() { + [ "$DCOPID" ] && { + $DCOP $DCOPID KommanderIf setText progressText "$1" + $DCOP $DCOPID KommanderIf setText progressBar $2 + } +} + + +[ "$1" = "-y" ] || { + echo $"Warning: this script is intended to be run by mambawelcome.kmdr." + echo $" Use $0 -y to actually start the operation." + exit 0 +} + +DCOPID=$2 + +echo $"\ +openmamba mambawelcome script - version $VERSION +Copyright (c) 2007-2010 by Silvan Calarco +" + +dcop_write $"Configuring..." 5 + +[ -r $INPUT_FILE ] || { + echo $"Error: cannot read input file $INPUT_FILE; aborting." >&2 + abort +} + +. $INPUT_FILE + +# now remove sensible information from input file +sed -i "/^INSTALL_ROOT_PASSWORD=.*/d" $INPUT_FILE +sed -i "/^INSTALL_USER_PASSWORD=.*/d" $INPUT_FILE + +# restore original kde config location +[ -L /opt/kde/share/config ] && { + rm -f /opt/kde/share/config + mkdir -p /opt/kde/share/config + mv /etc/opt/kde/* /opt/kde/share/config/ + rmdir /etc/opt/kde + ln -s ../../opt/kde/share/config /etc/opt/kde +} + +dcop_write $"Configuring users and host..." 50 +echo $"Configuring users and host" | tee -a $LOG_FILE +# configure user +[ "$INSTALL_USER" ] && { + useradd $INSTALL_USER \ + -c "$INSTALL_USER_FULLNAME" \ + -G audio,filesharing,sysadmin,packager,lpadmin,video,nopermfs || { + echo $"Error: could not create user; skipping." | tee -a $LOG_FILE + } + sh -c "echo $INSTALL_USER_PASSWORD | passwd $INSTALL_USER --stdin" || { + echo $"Error: could not set user password; aborting." | tee -a $LOG_FILE + abort + } + + # configure user for autologin + if [ "$INSTALL_USER_AUTOLOGIN" = "1" ]; then + echo $"Info: enabling user autologin" | tee -a $LOG_FILE + [ -e /opt/kde/share/config/kdm/kdmrc ] && { + sed -i "s|AutoLoginEnable=.*|AutoLoginEnable=true|" \ + /opt/kde/share/config/kdm/kdmrc + sed -i "s|AutoLoginUser=.*|AutoLoginUser=$INSTALL_USER|" \ + /opt/kde/share/config/kdm/kdmrc + } + [ -e /etc/lxdm/lxdm.conf ] && { + sed -i "s|[#[:space:]]*autologin=.*|autologin=$INSTALL_USER|" \ + /etc/lxdm/lxdm.conf + } + [ -e /etc/gdm/custom.conf ] && { + sed -i "s|[#[:space:]]*AutomaticLogin=.*|AutomaticLogin=$INSTALL_USER|" \ + /etc/gdm/custom.conf + sed -i "s|AutomaticLoginEnable=.*|AutomaticLoginEnable=true|" \ + /etc/gdm/custom.conf + } + else + [ -e /opt/kde/share/config/kdm/kdmrc ] && + sed -i "s|AutoLoginEnable=.*|AutoLoginEnable=false|" \ + /opt/kde/share/config/kdm/kdmrc + [ -e /etc/lxdm/lxdm.conf ] && + sed -i "s|[#[:space:]]*\(autologin.*\)|#\1|" \ + /etc/lxdm/lxdm.conf + [ -e /etc/gdm/custom.conf ] && + sed -i "s|AutomaticLoginEnable=.*|AutomaticLoginEnable=false|" \ + /etc/gdm/custom.conf + fi + + # pre-create user homedir (currently just needed to put TODO txt files on + # desktop) + cp -a /etc/skel /home/$INSTALL_USER + #mkdir /home/$INSTALL_USER/Desktop + chmod 711 /home/$INSTALL_USER + #cp /usr/share/openmamba/installer/*.txt /home/$INSTALL_USER/Desktop/ + + cp /usr/share/openmamba/mambabase/mambabase-autostart.desktop /etc/xdg/autostart/mambabase.desktop + chown $INSTALL_USER /etc/xdg/autostart/mambabase.desktop + chmod 644 /etc/xdg/autostart/mambabase.desktop + + # create home kde configuration directory + mkdir -p /home/$INSTALL_USER/.kde4/share/config + # copy global settings for localizations + [ -e /root/.kde4/share/config/kdeglobals ] && \ + cp /root/.kde4/share/config/kdeglobals /home/$INSTALL_USER/.kde4/share/config/ + [ -e /root/.kde4/share/config/kxkbrc ] && \ + cp /root/.kde4/share/config/kxkbrc /home/$INSTALL_USER/.kde4/share/config/ + # disable ktip on startup + cat > /home/$INSTALL_USER/.kde4/share/config/ktiprc << _EOF +[TipOfDay] +RunOnStart=false +_EOF + # set user permissions + chown "$INSTALL_USER".users /home/$INSTALL_USER -R +} + +# set root password +sh -c "echo $INSTALL_ROOT_PASSWORD | passwd --stdin" || { + echo $"Error: could not set user password; aborting." | tee -a $LOG_FILE + abort + } + +# set hostname and domain +[[ "$INSTALL_HOSTNAME" ]] && { + hostname $INSTALL_HOSTNAME + sed -i "s|HOSTNAME=.*|HOSTNAME=$INSTALL_HOSTNAME|" \ + /etc/sysconfig/network + + [[ "$INSTALL_DOMAIN" ]] || INSTALL_DOMAIN="localdomain" + sed -i "s|\(127\.0\.0\.1\W*\)\(.*\)|\1 $INSTALL_HOSTNAME.$INSTALL_DOMAIN $INSTALL_HOSTNAME localhost.localdomain localhost|" \ + /etc/hosts +} + +# set samba configuration file +[[ "$INSTALL_WORKGROUP" ]] && { + sed -i "s|workgroup =.*|workgroup = $INSTALL_WORKGROUP|" /etc/samba/smb.conf + sed -i "s|netbios name =.*|netbios name = $INSTALL_HOSTNAME|" /etc/samba/smb.conf +} + +# update grub device mappings and config +/usr/sbin/grub-mkdevicemap -n +/usr/sbin/update-grub + +# configure suspend (from suspend rpm post script) and recreate mkinitramfs +grep path_to_resume_device_file /etc/suspend.conf && { + SWAPLINE=`/sbin/swapon -s |grep -m1 ^/dev/` + SWAPDEV=${SWAPLINE/ */} + [ $SWAPDEV ] && sed -i "s||$SWAPDEV|" /etc/suspend.conf +} +KERNEL_RELEASE=`uname -r` +#mkinitramfs /boot/initramfs-$KERNEL_RELEASE.img $KERNEL_RELEASE -f + +dcop_write $"Installation completed." 100 +[ "$DCOPID" ] && $DCOP $DCOPID KommanderIf setEnabled next true +echo $"Installation done." | tee -a $LOG_FILE + +exit 0 diff --git a/po/es.po b/po/es.po new file mode 100644 index 0000000..ab647fb --- /dev/null +++ b/po/es.po @@ -0,0 +1,282 @@ +#: _from_rc.cc:1 +msgid "openmamba first time wizard" +msgstr "primer inicio del sistema" + +#: _from_rc.cc:2 +msgid "Welcome!" +msgstr "Bienvenido!" + +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# FIRST AUTHOR , YEAR. +# +#: _from_rc.cc:3 _from_rc.cc:7 _from_rc.cc:8 _from_rc.cc:18 _from_rc.cc:20 +#: _from_rc.cc:21 _from_rc.cc:23 _from_rc.cc:45 _from_rc.cc:48 +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: PACKAGE VERSION\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2007-12-26 22:51+0100\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language-Team: LANGUAGE \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: _from_rc.cc:4 +msgid "Welcome to openmamba GNU/Linux!" +msgstr "Bienvenido a openmamba GNU/Linux!" + +#: _from_rc.cc:11 +msgid "" +"In a few moments you will start using a high-technology " +"operating system and the most modern Open Source applications.

\n" +"openmamba is based on Free/Libre/Open Source software and is distributed " +"under the terms of the GNU GPLv3 license.
\n" +"
\n" +"The next dialogs will ask you some basic information that is required to " +"complete the installation of openmamba on this computer.
" +msgstr "" +"A continuación, vas a iniciar a utilizar un sistema operativo de " +"alta tecnología y el programa más moderno Open source.

\n" +"openmamba esta basadi en software Free/Libero/Open Source y esta distribuido " +"según los términos de la licencia GNU GPL versione 3.
\n" +"
\n" +"En los próximos textos será solicitada alguna información báscia necesaria para " +"completar la instalación de openmamba en este equipo.
" + +#: _from_rc.cc:6 +msgid "Please, press the Next button to proceed." +msgstr "Pulsa Siguiente para continuar." + +#: _from_rc.cc:9 +msgid "Version 0.4" +msgstr "" + +#: _from_rc.cc:10 +msgid "GNU/Linux" +msgstr "" + +#: _from_rc.cc:11 +msgid "" +"Copyright (c) 2007-2010 by mambaSoft di Silvan Calarco\n" +"Released under the terms of the GNU GPL v3 license" +msgstr "" +"Copyright (c) 2007-2010 by mambaSoft di Silvan Calarco\n" +"Expedido según los términos de la licencia GNU GPL versione 3" + +#: _from_rc.cc:12 +msgid "License" +msgstr "Licencia" + +#: _from_rc.cc:13 +msgid "Full license text" +msgstr "Texto completo de la licencia" + +#: _from_rc.cc:14 +msgid "&I've read and accept the licensing terms" +msgstr "&He leido y acepto los términos de la licencia" + +#: _from_rc.cc:15 +msgid "" +"The openmamba GNU/Linux distribution is released under the terms of the GNU " +"GPL v3 license." +msgstr "" +"La distribución openmamba GNU/Linux ha sido expedida según los términos de la licencia " +"GNU/GPL versión 3." + +#: _from_rc.cc:16 +msgid "Please read carefully and accept the license before proceeding." +msgstr "Por favor, lee atentamente y acepta la licencia antes de continuar." + +#: _from_rc.cc:17 +msgid "User details" +msgstr "Información sobre el usuario" + +#: _from_rc.cc:19 +msgid "User:" +msgstr "Nombre de usuario:" + +#: _from_rc.cc:22 +msgid "Autologin:" +msgstr "Acceso automático:" + +#: _from_rc.cc:24 +msgid "Password:" +msgstr "" + +#: _from_rc.cc:25 _from_rc.cc:42 +msgid "Confirm password:" +msgstr "Confirma password:" + +#: _from_rc.cc:26 +msgid "Full name:" +msgstr "Nombre y apellidos:" + +#: _from_rc.cc:27 +msgid "About yourself" +msgstr "Información sobre el usuario" + +#: _from_rc.cc:28 +msgid "" +"An user with administrator privileges will be created.\n" +"\n" +"The information requested below will be used to identify yourself as the " +"user of this system when you access the desktop. If autologin is checked the " +"system will not ask for cretentials and automatically access the desktop " +"environment when you turn on the computer." +msgstr "" +"Será creado un usuario con los privilegios de administrador.\n" +"\n" +"La información solicitada a continuación será usada para identificarte como " +"usuario de este sistema cuando accedes al desktop. Si el login automático está " +"habilitado el sistema non solicitará credenciales para el inicio y accederá automáticamente " +"al escritorio." + +#: _from_rc.cc:29 _from_rc.cc:31 +msgid "System information" +msgstr "Información sobre el sistema" + +#: _from_rc.cc:30 +msgid "About the system" +msgstr "Información sobre el sistema" + +#: _from_rc.cc:32 +msgid "Workgroup:" +msgstr "" + +#: _from_rc.cc:33 +msgid "Domain:" +msgstr "Dominio:" + +#: _from_rc.cc:34 +msgid "localdomain" +msgstr "" + +#: _from_rc.cc:35 +msgid "WORKGROUP" +msgstr "" + +#: _from_rc.cc:36 +msgid "openmamba" +msgstr "" + +#: _from_rc.cc:37 +msgid "Hostname:" +msgstr "Nombre del equipo:" + +#: _from_rc.cc:38 +msgid "Please choose a name for the system (e.g. mymachine)" +msgstr "Selecciona un nombre para el sistema (ej. miequipo)" + +#: _from_rc.cc:39 +msgid "" +"Please enter Domain and Workgroup. If you don't know these information ask " +"your network administrator or leave the default." +msgstr "" +"Introduce el dominio y el Workgropu. Si no conoces esta información pregunta " +"al administrador de tu red o deja los valores predefinidos." + +#: _from_rc.cc:40 +msgid "Superuser password" +msgstr "Password del superusuario (root)" + +#: _from_rc.cc:41 +msgid "Root password:" +msgstr "Password de root:" + +#: _from_rc.cc:43 +msgid "" +"The superuser is a special system user called root that has full " +"privileges on the system. This password is required to perform many system " +"maintenance and configuration tasks." +msgstr "" +"El superusuario es un usuario especial llamado root que tiene plenos " +"privilegios en el sistema. Este password se solicita para efectuar operaciones de " +"configuración y mantenimiento." + +#: _from_rc.cc:44 +msgid "Installation progress" +msgstr "Avance de la instalación" + +#: _from_rc.cc:46 +msgid "Launching installation script..." +msgstr "Inicio de la instalación..." + +#: _from_rc.cc:47 +msgid "System configuration in progress..." +msgstr "Configuración del sistema en curso..." + +#: _from_rc.cc:49 +msgid "" +"Thank you for providing the requested information!

\n" +"Configuration has been completed and the system is now ready for use." +"

\n" +"TIP: remember user and superuser passwords and never reveal this " +"information in order to keep your system and data safe." +msgstr "" +"¡Gracias por proporcionar la información solicitada!

\n" +"La configuración ha sido completada y el sistema está listo para su uso." +"

\n" +"SUGERENCIA: recuerda el password de usuario y de superusuario y no revelar " +"nunca esta información para mantener tu sistema y tus datos seguros." + +#: _from_rc.cc:50 +msgid "Please, press the Finish button to start using openmamba." +msgstr "Pulsa Fin para iniciar a usar openmamba." + +#: mambawelcome.kmdr:1302 +msgid "Configuration completed." +msgstr "Configuración completada." + +#: mambawelcome.sh:15 +msgid "Installation aborted; press Next to see the error log." +msgstr "Instalación anulada; pulsa Siguiente para ver los errores." +#: mambawelcome.sh:16 +msgid "Installation aborted :-(" +msgstr "Instalación anulada :-(" +#: mambawelcome.sh:31 +msgid "Warning: this script is intended to be run by mambawelcome.kmdr." +msgstr "Atención: este script debe ser ejecutado desde mambawelcome.kmdr." +#: mambawelcome.sh:32 +msgid " Use $0 -y to actually start the operation." +msgstr " Usa $0 -y para ejecutar la operación." +#: mambawelcome.sh:39 +msgid "" +"openmamba mambawelcome script - version $VERSION\n" +"Copyright (c) 2007-2008 by Silvan Calarco \n" +"" +msgstr "" +"openmamba mambawelcome script - versión $VERSION\n" +"Copyright (c) 2007-2008 by Silvan Calarco \n" +"" +#: mambawelcome.sh:44 +msgid "Configuring..." +msgstr "Configuración..." +#: mambawelcome.sh:47 +msgid "Error: cannot read input file $INPUT_FILE; aborting." +msgstr "Error: no se puede leer el fichero de input $INPUT_FILE; salir." +#: mambawelcome.sh:57 +msgid "Configuring users and host..." +msgstr "Configuración de los usuarios y del equipo..." +#: mambawelcome.sh:58 +msgid "Configuring users and host" +msgstr "Configuración de los usuarios y del equipo" +#: mambawelcome.sh:64 +msgid "Error: could not create user; aborting." +msgstr "Error: no se puede crear el usuario; salir." +#: mambawelcome.sh:68 +msgid "Error: could not set user password; aborting." +msgstr "Error: no se puede configurar el password para el usuario; salir." +#: mambawelcome.sh:74 +msgid "Info: enabling user autologin" +msgstr "Info: activación del login automático" +#: mambawelcome.sh:125 +msgid "Installation completed." +msgstr "Instalación completa." +#: mambawelcome.sh:127 +msgid "Installation done." +msgstr "Instalación completa." diff --git a/po/it.po b/po/it.po new file mode 100644 index 0000000..81be4b6 --- /dev/null +++ b/po/it.po @@ -0,0 +1,282 @@ +#: _from_rc.cc:1 +msgid "openmamba first time wizard" +msgstr "primo avvio di openmamba" + +#: _from_rc.cc:2 +msgid "Welcome!" +msgstr "Benvenuto!" + +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# FIRST AUTHOR , YEAR. +# +#: _from_rc.cc:3 _from_rc.cc:7 _from_rc.cc:8 _from_rc.cc:18 _from_rc.cc:20 +#: _from_rc.cc:21 _from_rc.cc:23 _from_rc.cc:45 _from_rc.cc:48 +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: PACKAGE VERSION\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2007-12-26 22:51+0100\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language-Team: LANGUAGE \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: _from_rc.cc:4 +msgid "Welcome to openmamba GNU/Linux!" +msgstr "Benvenuto su openmamba GNU/Linux!" + +#: _from_rc.cc:11 +msgid "" +"In a few moments you will start using a high-technology " +"operating system and the most modern Open Source applications.

\n" +"openmamba is based on Free/Libre/Open Source software and is distributed " +"under the terms of the GNU GPLv3 license.
\n" +"
\n" +"The next dialogs will ask you some basic information that is required to " +"complete the installation of openmamba on this computer.
" +msgstr "" +"Stai per iniziare ad utilizzare un sistema operativo ad " +"alta tecnologia ed i più moderni programmi Open Source.

\n" +"openmamba è basato su software Free/Libero/Open Source ed è distribuito " +"secondo i termini della libenza GNU GPL versione 3.
\n" +"
\n" +"Nei dialoghi successivi saranno richieste alcune informazioni basilari necessarie per " +"completare l'installazione di openmamba su questo computer.
" + +#: _from_rc.cc:6 +msgid "Please, press the Next button to proceed." +msgstr "Premi il pulsante Successivo per proseguire." + +#: _from_rc.cc:9 +msgid "Version 0.4" +msgstr "" + +#: _from_rc.cc:10 +msgid "GNU/Linux" +msgstr "" + +#: _from_rc.cc:11 +msgid "" +"Copyright (c) 2007-2010 by mambaSoft di Silvan Calarco\n" +"Released under the terms of the GNU GPL v3 license" +msgstr "" +"Copyright (c) 2007-2010 by mambaSoft di Silvan Calarco\n" +"Rilasciato secondo i termini della licenza GNU GPL versione 3" + +#: _from_rc.cc:12 +msgid "License" +msgstr "Licenza" + +#: _from_rc.cc:13 +msgid "Full license text" +msgstr "Testo completo della licenza" + +#: _from_rc.cc:14 +msgid "&I've read and accept the licensing terms" +msgstr "&Ho letto ed accetto i termini della licenza" + +#: _from_rc.cc:15 +msgid "" +"The openmamba GNU/Linux distribution is released under the terms of the GNU " +"GPL v3 license." +msgstr "" +"La distribuzione openmamba GNU/Linux è rilasciata secondo i termini della licenza " +"GNU/GPL versione 3." + +#: _from_rc.cc:16 +msgid "Please read carefully and accept the license before proceeding." +msgstr "Per favore, leggi attentamente ed accetta la licenza prima di proseguire." + +#: _from_rc.cc:17 +msgid "User details" +msgstr "Informazioni sull'utente" + +#: _from_rc.cc:19 +msgid "User:" +msgstr "Nome utente:" + +#: _from_rc.cc:22 +msgid "Autologin:" +msgstr "Accesso automatico:" + +#: _from_rc.cc:24 +msgid "Password:" +msgstr "" + +#: _from_rc.cc:25 _from_rc.cc:42 +msgid "Confirm password:" +msgstr "Conferma password:" + +#: _from_rc.cc:26 +msgid "Full name:" +msgstr "Nome e cognome" + +#: _from_rc.cc:27 +msgid "About yourself" +msgstr "Informazioni sull'utente" + +#: _from_rc.cc:28 +msgid "" +"An user with administrator privileges will be created.\n" +"\n" +"The information requested below will be used to identify yourself as the " +"user of this system when you access the desktop. If autologin is checked the " +"system will not ask for cretentials and automatically access the desktop " +"environment when you turn on the computer." +msgstr "" +"Verrà creato un utente con i privilegi di amministratore.\n" +"\n" +"Le informazioni richieste di seguito saranno usate per identificarti come " +"utente di questo sistema quando accedi al desktop. Se il login automatico è " +"abilitato il sistema non richiederà credenziali all'avvio ed accederà automaticamente " +"all'ambiente desktop." + +#: _from_rc.cc:29 _from_rc.cc:31 +msgid "System information" +msgstr "Informazioni sul sistema" + +#: _from_rc.cc:30 +msgid "About the system" +msgstr "Informazioni sul sistema" + +#: _from_rc.cc:32 +msgid "Workgroup:" +msgstr "" + +#: _from_rc.cc:33 +msgid "Domain:" +msgstr "Dominio:" + +#: _from_rc.cc:34 +msgid "localdomain" +msgstr "" + +#: _from_rc.cc:35 +msgid "WORKGROUP" +msgstr "" + +#: _from_rc.cc:36 +msgid "openmamba" +msgstr "" + +#: _from_rc.cc:37 +msgid "Hostname:" +msgstr "Nome macchina:" + +#: _from_rc.cc:38 +msgid "Please choose a name for the system (e.g. mymachine)" +msgstr "Scegli un nome per il sistema (es. miocomputer)" + +#: _from_rc.cc:39 +msgid "" +"Please enter Domain and Workgroup. If you don't know these information ask " +"your network administrator or leave the default." +msgstr "" +"Inserisci il dominio e workgroup. Se non conosci queste informazioni chiedi " +"all'amministratore della tua rete o lascia i valori predefiniti." + +#: _from_rc.cc:40 +msgid "Superuser password" +msgstr "Password del superutente (root)" + +#: _from_rc.cc:41 +msgid "Root password:" +msgstr "Password di root:" + +#: _from_rc.cc:43 +msgid "" +"The superuser is a special system user called root that has full " +"privileges on the system. This password is required to perform many system " +"maintenance and configuration tasks." +msgstr "" +"Il superutente è un utente speciale del sistema chiamato root che ha pieni " +"privilegi nel sistema. Questa password è richiesta per effettuare operazioni di " +"configurazione e mantenimento." + +#: _from_rc.cc:44 +msgid "Installation progress" +msgstr "Avanzamento dell'installazione" + +#: _from_rc.cc:46 +msgid "Launching installation script..." +msgstr "Avvio dell'installazione..." + +#: _from_rc.cc:47 +msgid "System configuration in progress..." +msgstr "Configurazione del sistema in corso..." + +#: _from_rc.cc:49 +msgid "" +"Thank you for providing the requested information!

\n" +"Configuration has been completed and the system is now ready for use." +"

\n" +"TIP: remember user and superuser passwords and never reveal this " +"information in order to keep your system and data safe." +msgstr "" +"Grazie per aver fornito le informazioni richieste!

\n" +"La configurazione è stata completata ed il sistema è ora pronto per l'uso." +"

\n" +"SUGGERIMENTO: ricorda le password dell'utente e del superutente e non rivelare " +"mai questa informazione per mantenere il tuo sistema ed i tuoi dati sicuri." + +#: _from_rc.cc:50 +msgid "Please, press the Finish button to start using openmamba." +msgstr "Premi il pulsante Fine per cominicare ad usare openmamba." + +#: mambawelcome.kmdr:1302 +msgid "Configuration completed." +msgstr "Configurazione completata." + +#: mambawelcome.sh:15 +msgid "Installation aborted; press Next to see the error log." +msgstr "Installazione annullata; premi Successivo per vedere gli errori." +#: mambawelcome.sh:16 +msgid "Installation aborted :-(" +msgstr "Installazione annullata :-(" +#: mambawelcome.sh:31 +msgid "Warning: this script is intended to be run by mambawelcome.kmdr." +msgstr "Attenzione: questo script dev'essere lanciato da mambawelcome.kmdr." +#: mambawelcome.sh:32 +msgid " Use $0 -y to actually start the operation." +msgstr " Usa $0 -y per lanciare l'operazione." +#: mambawelcome.sh:39 +msgid "" +"openmamba mambawelcome script - version $VERSION\n" +"Copyright (c) 2007-2008 by Silvan Calarco \n" +"" +msgstr "" +"openmamba mambawelcome script - versione $VERSION\n" +"Copyright (c) 2007-2008 by Silvan Calarco \n" +"" +#: mambawelcome.sh:44 +msgid "Configuring..." +msgstr "Configurazione..." +#: mambawelcome.sh:47 +msgid "Error: cannot read input file $INPUT_FILE; aborting." +msgstr "Errore: non posso leggere il file di input $INPUT_FILE; uscita." +#: mambawelcome.sh:57 +msgid "Configuring users and host..." +msgstr "Configurazione degli utenti e della macchina..." +#: mambawelcome.sh:58 +msgid "Configuring users and host" +msgstr "Configurazione degli utenti e della macchina" +#: mambawelcome.sh:64 +msgid "Error: could not create user; aborting." +msgstr "Errore: non posso creare l'utente; uscita." +#: mambawelcome.sh:68 +msgid "Error: could not set user password; aborting." +msgstr "Errore: non posso impostare la password per l'utente; uscita." +#: mambawelcome.sh:74 +msgid "Info: enabling user autologin" +msgstr "Info: attivazione del login automatico" +#: mambawelcome.sh:125 +msgid "Installation completed." +msgstr "Installazione completata." +#: mambawelcome.sh:127 +msgid "Installation done." +msgstr "Installazione completata."