diff --git a/TRANSLATORS.mkdn b/TRANSLATORS.mkdn index 03a38f5..b2efec7 100644 --- a/TRANSLATORS.mkdn +++ b/TRANSLATORS.mkdn @@ -1,9 +1,11 @@ Translators: ------------ * __Brazilian Portuguese (pirarucu):__ Doublepranks +* __Dutch (chubmackerel):__ Martinusbe * __French (europeanpilchard):__ -* __German (rabbitfish):__ Zanooda +* __German (rabbitfish):__ Benko111, Zanooda * __Italian (italianbleak):__ * __Japanese (bluefintuna):__ -* __Korean (koreanlamprey):__ +* __Korean (koreanlamprey):__ +* __Russian (whitefish):__ gaich * __Spanish (spanishmackerel):__ japoina92 diff --git a/build/buildandro b/build/buildandro index ff78642..05d1fea 100755 --- a/build/buildandro +++ b/build/buildandro @@ -44,17 +44,17 @@ if [ ! $SLOPPYSECONDS ]; then if [ $AUTO ]; then make clean else - echo "clean out folder?" - read -p "yes/no? " purgeout + echo $BUILDANDROCLEAN + read -p "$QUESTIONYESNO" purgeout if [ "$purgeout" == "" ]; then echo "" - echo "Did you just hit enter without a care? for that im just gonna clean the folder anyways.." + echo $BUILDANDROCLEANENTER make clean fi - if [ $purgeout == "yes" ] || [ $purgeout == "y" ]; then + if [ $purgeout == $ANSWERYES ] || [ $purgeout == $ANSWERY ]; then make clean fi fi @@ -63,19 +63,19 @@ fi #setup ccache if [ $AUTO ]; then if ( ! find ~/.ccache &> /dev/null); then - echo "Continuing without ccache use; if you want to use ccache, please set it up" + echo $BUILDANDROCCACHECONTINUEWITHOUT else - echo "Found ccache folder, will use for build" + echo $BUILDANDROCCACHEFOUND fi else if ( ! find ~/.ccache &> /dev/null); then - echo "The kitchen did not detect the ccache folder, did you want to make one now?" - echo "If ccache is located at another location type in other" + echo $BUILDANDROCCACHEDIDNOTDETECT + echo $BUILDANDROCCACHEOTHER read ccacheuse - if [ $ccacheuse == "yes" ] || [ $ccacheuse == "y" ]; then - echo "How big do you want the maximum size of ccache? suggested size is 50 - 100 gigabytes" - echo "Keep in mind the amount typed is in gigabytes" + if [ $ccacheuse == $ANSWERYES ] || [ $ccacheuse == $ANSWERY ]; then + echo $BUILDANDROCCACHEHOWBIG + echo $BUILDANDROCCACHEAMOUNTTYPED read ccachesize if ( uname -a | grep -q Darwin ); then @@ -84,7 +84,7 @@ else elif ( find prebuilt/darwin-x86/ccache/ccache &> /dev/null); then prebuilt/darwin-x86/ccache/ccache -M "$ccachesize"G else - echo "Repository does not support ccache, continuing without it" + echo $BUILDANDROCCACHEREPONOTSUPPORTED noccache=true fi else @@ -93,26 +93,26 @@ else elif ( find prebuilt/linux-x86/ccache/ccache &> /dev/null); then prebuilt/linux-x86/ccache/ccache -M "$ccachesize"G else - echo "Repository does not support ccache, continuing without it" + echo $BUILDANDROCCACHEREPONOTSUPPORTED noccache=true fi fi elif [ $ccacheuse == "other" ]; then - echo "Where is the exact location of ccache? Example of where default location is is ~/.ccache" + echo $BUILDANDROCCACHEEXACTLOCATION read ccachelocation if ( ! find $ccachelocation &> /dev/null); then - echo "Location specified was not found, continuing without it" + echo $BUILDANDROCCACHENOTFOUND noccache=true else export CCACHE_DIR=$( echo "$ccachelocation" ) fi else - echo "Continuing without ccache use" + echo $BUILDANDROCCACHECONTINUEWITHOUT noccache=true fi else - echo "Found ccache folder, will use for build" + echo $BUILDANDROCCACHEFOUND fi fi @@ -156,8 +156,8 @@ else fi if [ ! "$lunch_device" ]; then - echo "Repository not supported!" - read -p "Press Enter to continue: " done + echo $BUILDANDROREPONOTSUPPORTED + read -p "$ENTERTOCONTINUE" done exit 0 fi @@ -174,30 +174,30 @@ else fi if [ ! "$zip" ]; then - echo "Build messed up! Returning to build menu" - read -p "Press Enter to continue: " done + echo $BUILDANDROBUILDMESSEDUP + read -p "$BUILDMENURETURN" done exit 0 fi if [ $SCRIPT_REPO == "aosp" ]; then - echo "Making temporary folder for post-building $zip fixes" + echo "$BUILDANDROMAKETEMP1 $zip $BUILDANDROMAKETEMP2" mkdir -p $BUILDS/temp/zipout cp $zip $BUILDS/temp cd $BUILDS/temp/zipout - echo "Unzipping $zip" + echo "$BUILDANDROUNZIP $zip" unzip ../$zip > /dev/null - echo "Removing uneeded recovery folder and file_contexts from $zip" + echo "$BUILDANDRORMSTUFF $zip" rm -r recovery rm file_contexts if [ $SCRIPT_REPO == "aosp" ]; then cd system - echo "Adding rom manager items to $zip's build.prop" + echo "$BUILDANDROADDROM1 $zip$BUILDANDROADDROM2" echo "ro.rommanager.developerid=$(whoami)" >> build.prop - echo "ro.modversion=$newzip >> build.prop" + echo "ro.modversion=$newzip" >> build.prop cd .. fi @@ -207,17 +207,17 @@ if [ $SCRIPT_REPO == "aosp" ]; then cd $BUILDS/temp/zipout - echo "Zipping $zip back up" + echo "$BUILDANDROZIP $zip" zip -r unsignedcrap.zip . > /dev/null - echo "Signing $zip with test keys" + echo "$BUILDANDROSIGN1 $zip $BUILDANDROSIGN2" java -Xmx2048m -jar $repofolder/out/host/linux-x86/framework/signapk.jar -w $repofolder/build/target/product/security/testkey.x509.pem $repofolder/build/target/product/security/testkey.pk8 unsignedcrap.zip $zip fi if ( find $buildfolder/*$SCRIPT_DEVICE.zip &> /dev/null); then mkdir -p $buildfolder/old - echo "Moving older build to $buildfolder/old" + echo "$BUILDANDROMOVEOLD1 $buildfolder$BUILDANDROMOVEOLD2" mv $buildfolder/*$SCRIPT_DEVICE.zip $buildfolder/old mv $buildfolder/*$SCRIPT_DEVICE.zip.md5sum $buildfolder/old @@ -225,12 +225,12 @@ fi mkdir -p $buildfolder -echo "Copying to $buildfolder" +echo "$BUILDANDROCOPY $buildfolder" echo "$zip -> $newzip" cat $zip > $buildfolder/$newzip if [ $SCRIPT_REPO == "aosp" ]; then - echo "Cleaning up temporary folder" + echo "$BUILDANDROCLEANUP" cd $BUILDS rm -r temp fi @@ -239,8 +239,8 @@ cd $buildfolder md5sum $newzip md5sum $newzip > $newzip.md5sum -echo "Finished!" +echo $COMPLETEDMESSAGE if [ ! $AUTO ]; then - read -p "Press Enter to continue: " done + read -p "$BUILDMENURETURN" done fi diff --git a/build/buildauto b/build/buildauto index 116e6b0..1247b77 100755 --- a/build/buildauto +++ b/build/buildauto @@ -41,19 +41,19 @@ fi # Check to see if auto builder can run if ( ! find $LOCAL/config/$autorepo &> /dev/null ) \ && ( ! find $LOCAL/config/$autodevice &> /dev/null ); then - echo "Both Auto Builder's repository and device is not set!" - echo "Please use the Auto Builder config menu" - read -p "Press Enter to continue: " done + echo $BUILDAUTOBOTH + echo $BUILDAUTOPLEASE + read -p "$ENTERTOCONTINUE" done exit 0 elif ( ! find $LOCAL/config/$autorepo &> /dev/null ); then - echo "Auto Builder's repository is not set!" - echo "Please use the Auto Builder config menu" - read -p "Press Enter to continue: " done + echo $BUILDAUTOREPO + echo $BUILDAUTOPLEASE + read -p "$ENTERTOCONTINUE" done exit 0 elif ( ! find $LOCAL/config/$autodevice &> /dev/null ); then - echo "Auto Builder's device is not set!" - echo "Please use the Auto Builder config menu" - read -p "Press Enter to continue: " done + echo $BUILDAUTODEVICE + echo $BUILDAUTOPLEASE + read -p "$ENTERTOCONTINUE" done exit 0 fi @@ -194,9 +194,9 @@ done # Put computer to sleep ( if setup to do so ) if ( find $LOCAL/config/sleepybuildserver &> /dev/null ); then echo "" 2>&1 | $toggleout - echo "Waiting for ten minutes! this is not a countdown.." 2>&1 | $toggleout + echo $BUILDAUTOWAIT 2>&1 | $toggleout sleep 10m - echo "Sleep..." 2>&1 | $toggleout + echo $BUILDAUTOSLEEP 2>&1 | $toggleout sleeptime=$( cat $LOCAL/config/sleepybuildserver | sed -n 1p ) passy=$( cat $LOCAL/config/sleepybuildserver | sed -n 2p ) diff --git a/build/buildautomenu b/build/buildautomenu index f9d41bf..a9d6728 100755 --- a/build/buildautomenu +++ b/build/buildautomenu @@ -23,23 +23,23 @@ fi menu(){ clear -echo "Swordrune10's Android Kitchen!" -echo "==============================" -echo "Auto Builder Menu" -echo " 1. Run Auto Builder" -echo " 2. Add to auto build list" -echo " 3. Clear auto build list" -echo " 4. Toggle Auto Builder's output" -echo " 5. Toggle Auto Builder's build other repo" -echo " 6. Toggle Auto Builder's sleep function" -echo " 7. Go Back" +echo $KITCHENTITLE +echo $KITCHENUNDERLINE +echo $BUILDAUTOMENUTITLE +echo " 1. $BUILDAUTOMENU1" +echo " 2. $BUILDAUTOMENU2" +echo " 3. $BUILDAUTOMENU3" +echo " 4. $BUILDAUTOMENU4" +echo " 5. $BUILDAUTOMENU5" +echo " 6. $BUILDAUTOMENU6" +echo " 7. $MENUGOBACK" echo "" -read -p "Which one would you like to do?: " buildautoconfig +read -p "$KITCHENMENUWHICH" buildautoconfig if [ ! "$buildautoconfig" ] || ( echo $buildautoconfig | grep -q [A-Za-z] ) || [ $buildautoconfig -gt "7" ]; then echo "" - echo "You did not make a proper selection, try again!" - read -p "Press Enter to continue: " done + echo $NOTPROPERSELECTION + read -p "$ENTERTOCONTINUE" done menu fi @@ -51,27 +51,28 @@ if [ $buildautoconfig == "2" ]; then addautorepo () { clear - echo "Swordrune10's Android Kitchen!" - echo "==============================" - echo "Which android repository are we setting for auto build?" - echo " 1. Android Open Kang Project repository" - echo " 2. Android Open Source Project 4.3 repository" - echo " 3. Android Open Source Project 4.4 repository" - echo " 4. Carbon repository" - echo " 5. Cyanogenmod 10.2 repository" - echo " 6. Cyanogenmod 11 repository" - echo " 7. Evervolv repository" - echo " 8. omnirom repository" - echo " 9. PAC-man repository" - echo " 10. ParanoidAndroid repository" - echo " 11. Finished with adding repos, move on to adding devices" - echo " 12. Go Back" - read version + echo $KITCHENTITLE + echo $KITCHENUNDERLINE + echo $BUILDAUTOMENUSETAUTO + echo " 1. $BUILDREPOMENU1" + echo " 2. $BUILDREPOMENU2" + echo " 3. $BUILDREPOMENU3" + echo " 4. $BUILDREPOMENU4" + echo " 5. $BUILDREPOMENU5" + echo " 6. $BUILDREPOMENU6" + echo " 7. $BUILDREPOMENU7" + echo " 8. $BUILDREPOMENU8" + echo " 9. $BUILDREPOMENU9" + echo " 10. $BUILDREPOMENU10" + echo " 11. $BUILDAUTOMENUMOVEON" + echo " 12. $MENUGOBACK" + echo "" + read -p "$KITCHENMENUWHICH" version if [ ! "$version" ] || ( echo $version | grep -q [A-Za-z] ) || [ $version -gt "12" ]; then echo "" - echo "You did not make a proper selection, try again!" - read -p "Press Enter to continue: " done + echo $NOTPROPERSELECTION + read -p "$ENTERTOCONTINUE" done addautorepo fi @@ -131,7 +132,7 @@ if [ $buildautoconfig == "2" ]; then if [ $version == "12" ]; then echo "" - read -p "Press Enter to continue: " done + read -p "$ENTERTOCONTINUE" done menu fi @@ -147,8 +148,8 @@ if [ $buildautoconfig == "2" ]; then echo $repodefine >> $LOCAL/config/scriptautosync fi - echo "Added $repo_name repository to auto build files" - read -p "Press Enter to continue: " done + echo "$BUILDAUTOMENUADD1 $repo_name $BUILDAUTOMENUADD2" + read -p "$ENTERTOCONTINUE" done addautorepo } @@ -156,22 +157,22 @@ if [ $buildautoconfig == "2" ]; then addautodevice(){ clear - echo "Swordrune10's Android Kitchen!" - echo "==============================" - echo "Please type in Which android device are we setting for auto build" - echo "Type in list to see all supported devices" - echo "Type in exit to go back" + echo $KITCHENTITLE + echo $KITCHENUNDERLINE + echo $BUILDAUTOMENUTYPEDEVICE + echo $BUILDOTHERTYPELIST + echo $BUILDOTHERTYPEEXIT read auto_device if [ ! "$auto_device" ]; then echo "" - echo "You did not make a proper selection, try again!" - read -p "Press Enter to continue: " done + echo $NOTPROPERSELECTION + read -p "$ENTERTOCONTINUE" done addautodevice fi if [ $auto_device == "exit" ]; then - read -p "Press Enter to continue: " done + read -p "$ENTERTOCONTINUE" done menu fi @@ -181,8 +182,8 @@ if [ $buildautoconfig == "2" ]; then echo $auto_device >> $LOCAL/config/scriptdevice fi - echo "Added $auto_device to auto build files" - read -p "Press Enter to continue: " done + echo "$BUILDAUTOMENUADD1 $auto_device $BUILDAUTOMENUADD2" + read -p "$ENTERTOCONTINUE" done addautodevice } @@ -192,19 +193,19 @@ fi if [ $buildautoconfig == "3" ]; then echo "" - echo "Are you sure you want to clear auto build files?" + echo $BUILDAUTOMENUWANTTOCLEAR read clearanswer - if [ "$clearanswer" == "yes" ] || [ "$clearanswer" == "y" ]; then + if [ "$clearanswer" == $ANSWERYES ] || [ "$clearanswer" == $ANSWERY ]; then rm -rf $LOCAL/config/scriptfolder rm -rf $LOCAL/config/scriptautosync rm -rf $LOCAL/config/scriptdevice - echo "Auto build files cleared" - read -p "Press Enter to continue: " done + echo $BUILDAUTOMENUCLEARED + read -p "$ENTERTOCONTINUE" done menu else - echo "Auto build files left untouched" - read -p "Press Enter to continue: " done + echo $BUILDAUTOMENUNOTCLEARED + read -p "$ENTERTOCONTINUE" done menu fi fi @@ -213,28 +214,28 @@ if [ $buildautoconfig == "4" ]; then if ( ! find $LOCAL/config/toggleoutfile &> /dev/null ); then cd $LOCAL/config touch toggleoutfile - echo "this will output buildauto into swordkitchen script folder" - echo "unless you want it to be somewhere else?" - read -p "Type yes to output somewhere else:" answer + echo $BUILDAUTOMENUOUTPUT + echo $BUILDAUTOMENUSOMEWHERE + read -p "$BUILDAUTOMENUTYPEOUTPUT" answer - if [ "$answer" == "y" ] || [ "$answer" == "yes" ]; then - echo "Please type the absolute path of where u want the buildoutput.txt to be" + if [ "$answer" == $ANSWERYES ] || [ "$answer" == $ANSWERY ]; then + echo $BUILDAUTOMENUTYPEABSOLUTE read outfilelocation echo $outfilelocation > outfile - echo "Output will be sent to $outfilelocation" - read -p "Press Enter to continue: " done + echo "$BUILDAUTOMENUOUTPUTSENT $outfilelocation" + read -p "$ENTERTOCONTINUE" done menu else - echo "Output will be sent to $( cd $LOCAL/.. && pwd )" - read -p "Press Enter to continue: " done + echo "$BUILDAUTOMENUOUTPUTSENT $( cd $LOCAL/.. && pwd )" + read -p "$ENTERTOCONTINUE" done menu fi else rm -rf $LOCAL/config/toggleoutfile rm -rf $LOCAL/config/outfile - echo "Output file cleared, buildauto will now not output to a text file" - read -p "Press Enter to continue: " done + echo $BUILDAUTOMENUOUTPUTCLEAR + read -p "$ENTERTOCONTINUE" done menu fi fi @@ -244,25 +245,25 @@ if [ $buildautoconfig == "5" ]; then cd $LOCAL/config # ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ - echo "# Add below this line the repo folder you want to auto build, otherrepo are in the otherrepo folder, list each repo per line" > otherrepoauto + echo "# $BUILDAUTOMENUADDBELOWREPO" > otherrepoauto nano otherrepoauto sed -i "/# /d" otherrepoauto # ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ - echo "# Add below this line the device codename you want to auto build, list each device per line" > otherdeviceauto + echo "# $BUILDAUTOMENUADDBELOWDEVICE" > otherdeviceauto nano otherdeviceauto sed -i "/# /d" otherdeviceauto - echo "Auto Builder's build other repo is now on!" - read -p "Press Enter to continue: " done + echo $BUILDAUTOMENUOTHERREPOON + read -p "$ENTERTOCONTINUE" done # ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ else rm -f $LOCAL/config/otherrepoauto rm -f $LOCAL/config/otherdeviceauto - echo "Auto Builder's build other repo is now off!" - read -p "Press Enter to continue: " done + echo $BUILDAUTOMENUOTHERREPOOFF + read -p "$ENTERTOCONTINUE" done fi fi @@ -272,27 +273,27 @@ if [ $buildautoconfig == "6" ]; then sleepymenu(){ - echo "Swordrune10's Android Kitchen!" - echo "==============================" - echo "Do you want the computer to sleep for a" - echo "certain amount of hours or wake up at a certain time?" - echo " 1. Wake up at a certain time" - echo " 2. Certain amount of hours" - echo " 3. Go Back" + echo $KITCHENTITLE + echo $KITCHENUNDERLINE + echo $BUILDAUTOMENUCOMPSLEEPTIME1 + echo $BUILDAUTOMENUCOMPSLEEPTIME2 + echo " 1. $BUILDAUTOMENUSLEEPMENU1" + echo " 2. $BUILDAUTOMENUSLEEPMENU2" + echo " 3. $MENUGOBACK" echo "" - read -p "Which one would you like to do?: " kindoftime + read -p "$KITCHENMENUWHICH" kindoftime if [ ! "$kindoftime" ] || ( echo $kindoftime | grep -q [A-Za-z] ) || [ $kindoftime -gt "3" ]; then echo "" - echo "You did not make a proper selection, try again!" - read -p "Press Enter to continue: " done + echo $NOTPROPERSELECTION + read -p "$ENTERTOCONTINUE" done sleepymenu fi if [ $kindoftime == "1" ]; then timekind=$(echo "specifictime") - echo "What time do you want the build server to wake up at the next day?" - echo "24 hours configuration, Example: for 2pm put 14:00, for 7am put 07:00" + echo $BUILDAUTOMENUSPECIFIC1 + echo $BUILDAUTOMENUSPECIFIC2 read sleeptime echo $sleeptime > sleepybuildserver @@ -300,8 +301,8 @@ if [ $buildautoconfig == "6" ]; then if [ $kindoftime == "2" ]; then timekind=$(echo "hoursfromnow") - echo "How long would you like for the build server to sleep after building?" - echo "The number being inputted is in hours" + echo $BUILDAUTOMENUHOURS1 + echo $BUILDAUTOMENUHOURS2 read sleeptime echo $sleeptime > sleepybuildserver @@ -309,11 +310,11 @@ if [ $buildautoconfig == "6" ]; then if [ $kindoftime == "3" ]; then echo "" - read -p "Press Enter to continue: " done + read -p "$ENTERTOCONTINUE" done menu fi - echo "Please type in your user's password, so the build server can sleep" + echo $BUILDAUTOMENUTYPEPASSY while true; do read -p "$star" -r -s -n 1 letter star="*" @@ -329,22 +330,22 @@ if [ $buildautoconfig == "6" ]; then echo $passy >> sleepybuildserver echo $timekind >> sleepybuildserver - echo "Auto Builder's sleep function is now on!" - read -p "Press Enter to continue: " done + echo $BUILDAUTOMENUSLEEPON + read -p "$ENTERTOCONTINUE" done } sleepymenu else rm -f $LOCAL/config/sleepybuildserver - echo "Auto Builder's sleep function is now off!" - read -p "Press Enter to continue: " done + echo $BUILDAUTOMENUSLEEPOFF + read -p "$ENTERTOCONTINUE" done fi fi if [ $buildautoconfig == "7" ]; then echo "" - read -p "Returning to Main Menu, Press Enter to continue: " done + read -p "$MAINMENURETURN" done exit 0 fi menu diff --git a/build/builddevice b/build/builddevice index ddb0652..9808520 100755 --- a/build/builddevice +++ b/build/builddevice @@ -23,28 +23,29 @@ fi repomenu () { clear -echo "Swordrune10's Android Kitchen!" -echo "==============================" -echo "$devicefullname is selected to be built!" +echo $KITCHENTITLE +echo $KITCHENUNDERLINE +echo "$devicefullname $BUILDDEVICEBEBUILT" echo "" -echo "Which android repository are we building from today?" -echo " 1. Android Open Kang Project repository" -echo " 2. Android Open Source Project repository 4.3" -echo " 3. Android Open Source Project repository 4.4" -echo " 4. Carbon repository" -echo " 5. Cyanogenmod 10.2 repository" -echo " 6. Cyanogenmod 11 repository" -echo " 7. Evervolv repository" -echo " 8. omnirom repository" -echo " 9. PAC-man repository" -echo " 10. ParanoidAndroid repository" -echo " 11. Go Back" -read version +echo $BUILDDEVICEWHICHREPO +echo " 1. $BUILDREPOMENU1" +echo " 2. $BUILDREPOMENU2" +echo " 3. $BUILDREPOMENU3" +echo " 4. $BUILDREPOMENU4" +echo " 5. $BUILDREPOMENU5" +echo " 6. $BUILDREPOMENU6" +echo " 7. $BUILDREPOMENU7" +echo " 8. $BUILDREPOMENU8" +echo " 9. $BUILDREPOMENU9" +echo " 10. $BUILDREPOMENU10" +echo " 11. $MENUGOBACK" +echo "" +read -p "$KITCHENMENUWHICH" version if [ ! "$version" ] || ( echo $version | grep -q [A-Za-z] ) || [ $version -gt "11" ]; then echo "" - echo "You did not make a proper selection, try again!" - read -p "Press Enter to continue: " done + echo $NOTPROPERSELECTION + read -p "$ENTERTOCONTINUE" done menu fi @@ -69,7 +70,7 @@ if [ $version == "4" ]; then fi if [ $version == "5" ]; then - repodefine=$(echo "cm10") + repodefine=$(echo "cm11") . repodefiner fi @@ -100,14 +101,14 @@ fi if [ $version == "11" ]; then echo "" - read -p "Returning to Build Menu, Press Enter to continue: " done + read -p "$BUILDMENURETURN" done exit 0 fi if ( ! find $REPOS/$SCRIPT_REPO-$REPO_PLATFORM -maxdepth 1 &> /dev/null ); then echo "" - echo "The selected android repository is not setup!" - read -p "Press Enter to continue: " done + echo $BUILDREPONOTSETUP + read -p "$ENTERTOCONTINUE" done repomenu fi @@ -121,8 +122,8 @@ if [ $SCRIPT_REPO == "aokp" ]; then -e 's/-userdebug//' \ $REPOS/aokp-jb/vendor/aokp/vendorsetup.sh | grep -q $SCRIPT_DEVICE ); then echo "" - echo "This device is not compatible with this repository, try again!" - read -p "Returning to Build Menu, Press Enter to continue: " done + echo $BUILDDEVICENOTCOMPATIBLE + read -p "$BUILDMENURETURN" done exit 0 fi fi @@ -132,8 +133,8 @@ if [ $SCRIPT_REPO == "aosp" ]; then -e 's/-userdebug//' \ $REPOS/aosp-$REPO_PLATFORM/device/*/$SCRIPT_DEVICE/vendorsetup.sh | grep -q $SCRIPT_DEVICE ); then echo "" - echo "This device is not compatible with this repository, try again!" - read -p "Returning to Build Menu, Press Enter to continue: " done + echo $BUILDDEVICENOTCOMPATIBLE + read -p "$BUILDMENURETURN" done exit 0 fi fi @@ -143,8 +144,8 @@ if [ $SCRIPT_REPO == "carbon" ]; then -e 's/-userdebug//' \ $REPOS/carbon-kitkat/vendor/carbon/vendorsetup.sh | grep -q $SCRIPT_DEVICE ); then echo "" - echo "This device is not compatible with this repository, try again!" - read -p "Returning to Build Menu, Press Enter to continue: " done + echo $BUILDDEVICENOTCOMPATIBLE + read -p "$BUILDMENURETURN" done exit 0 fi fi @@ -152,8 +153,8 @@ fi if [ $SCRIPT_REPO == "cm" ]; then if ( ! cat $LOCAL/config/cm-master-list | grep -q $SCRIPT_DEVICE ); then echo "" - echo "This device is not compatible with this repository, try again!" - read -p "Returning to Build Menu, Press Enter to continue: " done + echo $BUILDDEVICENOTCOMPATIBLE + read -p "$BUILDMENURETURN" done exit 0 fi fi @@ -163,8 +164,8 @@ if [ $SCRIPT_REPO == "evervolv" ]; then -e 's/-userdebug//' \ $REPOS/evervolv-kitkat/vendor/ev/vendorsetup.sh | grep -q $SCRIPT_DEVICE ); then echo "" - echo "This device is not compatible with this repository, try again!" - read -p "Returning to Build Menu, Press Enter to continue: " done + echo $BUILDDEVICENOTCOMPATIBLE + read -p "$BUILDMENURETURN" done exit 0 fi fi @@ -174,8 +175,8 @@ if [ $SCRIPT_REPO == "omni" ]; then -e 's/-userdebug//' \ $REPOS/omni-kitkat/device/*/$SCRIPT_DEVICE/vendorsetup.sh | grep -q $SCRIPT_DEVICE ); then echo "" - echo "This device is not compatible with this repository, try again!" - read -p "Returning to Build Menu, Press Enter to continue: " done + echo $BUILDDEVICENOTCOMPATIBLE + read -p "$BUILDMENURETURN" done exit 0 fi fi @@ -185,8 +186,8 @@ if [ $SCRIPT_REPO == "pacman" ]; then -e 's/-userdebug//' \ $REPOS/pacman-jb/vendor/pac/vendorsetup.sh | grep -q $SCRIPT_DEVICE ); then echo "" - echo "This device is not compatible with this repository, try again!" - read -p "Returning to Build Menu, Press Enter to continue: " done + echo $BUILDDEVICENOTCOMPATIBLE + read -p "$BUILDMENURETURN" done exit 0 fi fi @@ -196,8 +197,8 @@ if [ $SCRIPT_REPO == "paranoid" ]; then -e 's/-userdebug//' \ $REPOS/paranoid-jb/vendor/pa/vendorsetup.sh | grep -q $SCRIPT_DEVICE ); then echo "" - echo "This device is not compatible with this repository, try again!" - read -p "Returning to Build Menu, Press Enter to continue: " done + echo $BUILDDEVICENOTCOMPATIBLE + read -p "$BUILDMENURETURN" done exit 0 fi fi @@ -210,31 +211,30 @@ exit 0 nexus4menu(){ clear -echo "Swordrune10's Android Kitchen!" -echo "==============================" -echo "Today's Menu:" -echo " 1. Build GSM Nexus 4" -echo " 2. Go Back" +echo $KITCHENTITLE +echo $KITCHENUNDERLINE +echo $BUILDMENUTITLE +echo " 1. $BUILDDEVICENEXUS4" +echo " 2. $MENUGOBACK" echo "" -echo "Which one would you like to do?" -read buildnexus4 +read -p "$KITCHENMENUWHICH" buildnexus4 if [ ! "$buildnexus4" ] || ( echo $buildnexus4 | grep -q [A-Za-z] ) || [ $buildnexus4 -gt "2" ]; then echo "" - echo "You did not make a proper selection, try again!" - read -p "Press Enter to continue: " done + echo $NOTPROPERSELECTION + read -p "$ENTERTOCONTINUE" done nexus4menu fi if [ $buildnexus4 == "1" ]; then - devicefullname=$(echo "GSM Nexus 4") + devicefullname=$(echo $NEXUS4) export SCRIPT_DEVICE=$(echo "mako") repomenu fi if [ $buildnexus4 == "2" ]; then echo "" - read -p "Press Enter to go back: " done + read -p "$ENTERTOCONTINUE" done exit 0 fi nexus4menu @@ -243,31 +243,30 @@ nexus4menu nexus5menu(){ clear -echo "Swordrune10's Android Kitchen!" -echo "==============================" -echo "Today's Menu:" -echo " 1. Build LTE Nexus 5" -echo " 2. Go Back" +echo $KITCHENTITLE +echo $KITCHENUNDERLINE +echo $BUILDMENUTITLE +echo " 1. $BUILDDEVICENEXUS5" +echo " 2. $MENUGOBACK" echo "" -echo "Which one would you like to do?" -read buildnexus5 +read -p "$KITCHENMENUWHICH" buildnexus5 if [ ! "$buildnexus5" ] || ( echo $buildnexus5 | grep -q [A-Za-z] ) || [ $buildnexus5 -gt "2" ]; then echo "" - echo "You did not make a proper selection, try again!" - read -p "Press Enter to continue: " done + echo $NOTPROPERSELECTION + read -p "$ENTERTOCONTINUE" done nexus5menu fi if [ $buildnexus5 == "1" ]; then - devicefullname=$(echo "LTE Nexus 5") + devicefullname=$(echo $NEXUS5) export SCRIPT_DEVICE=$(echo "hammerhead") repomenu fi if [ $buildnexus5 == "2" ]; then echo "" - read -p "Press Enter to go back: " done + read -p "$ENTERTOCONTINUE" done exit 0 fi nexus5menu @@ -276,45 +275,44 @@ nexus5menu gnexusmenu(){ clear -echo "Swordrune10's Android Kitchen!" -echo "==============================" -echo "Today's Menu:" -echo " 1. Build GSM Galaxy Nexus" -echo " 2. Build Sprint Galaxy Nexus" -echo " 3. Build Verizon Galaxy Nexus" -echo " 4. Build all above!" -echo " 5. Go Back" +echo $KITCHENTITLE +echo $KITCHENUNDERLINE +echo $BUILDMENUTITLE +echo " 1. $BUILDDEVICEGSMGNEXUS" +echo " 2. $BUILDDEVICESPRGNEXUS" +echo " 3. $BUILDDEVICEVZWGNEXUS" +echo " 4. $BUILDALLABOVE" +echo " 5. $MENUGOBACK" echo "" -echo "Which one would you like to do?" -read buildgnexus +read -p "$KITCHENMENUWHICH" buildgnexus if [ ! "$buildgnexus" ] || ( echo $buildgnexus | grep -q [A-Za-z] ) || [ $buildgnexus -gt "5" ]; then echo "" - echo "You did not make a proper selection, try again!" - read -p "Press Enter to continue: " done + echo $NOTPROPERSELECTION + read -p "$ENTERTOCONTINUE" done gnexusmenu fi if [ $buildgnexus == "1" ]; then - devicefullname=$(echo "GSM Galaxy Nexus") + devicefullname=$(echo $GSMGNEXUS) export SCRIPT_DEVICE=$(echo "maguro") repomenu fi if [ $buildgnexus == "2" ]; then - devicefullname=$(echo "Sprint Galaxy Nexus") + devicefullname=$(echo $SPRGNEXUS) export SCRIPT_DEVICE=$(echo "toroplus") repomenu fi if [ $buildgnexus == "3" ]; then - devicefullname=$(echo "Verizon Galaxy Nexus") + devicefullname=$(echo $VZWGNEXUS) export SCRIPT_DEVICE=$(echo "toro") repomenu fi if [ $buildgnexus == "4" ]; then - devicefullname=$(echo "All Galaxy Nexi") + devicefullname=$(echo $ALLGNEXUS) export SCRIPT_DEVICE=$(echo "maguro") repomenu @@ -330,7 +328,7 @@ fi if [ $buildgnexus == "5" ]; then echo "" - read -p "Press Enter to go back: " done + read -p "$ENTERTOCONTINUE" done exit 0 fi gnexusmenu @@ -340,38 +338,37 @@ gnexusmenu nexussmenu(){ clear -echo "Swordrune10's Android Kitchen!" -echo "==============================" -echo "Today's Menu:" -echo " 1. Build GSM Nexus S" -echo " 2. Build Sprint Nexus S 4G" -echo " 3. Build all above!" -echo " 4. Go Back" +echo $KITCHENTITLE +echo $KITCHENUNDERLINE +echo $BUILDMENUTITLE +echo " 1. $BUILDDEVICEGSMNEXUSS" +echo " 2. $BUILDDEVICESPRNEXUSS" +echo " 3. $BUILDALLABOVE" +echo " 4. $MENUGOBACK" echo "" -echo "Which one would you like to do?" -read buildnexuss +read -p "$KITCHENMENUWHICH" buildnexuss if [ ! "$buildnexuss" ] || ( echo $buildnexuss | grep -q [A-Za-z] ) || [ $buildnexuss -gt "4" ]; then echo "" - echo "You did not make a proper selection, try again!" - read -p "Press Enter to continue: " done + echo $NOTPROPERSELECTION + read -p "$ENTERTOCONTINUE" done nexussmenu fi if [ $buildnexuss == "1" ]; then - devicefullname=$(echo "GSM Nexus S") + devicefullname=$(echo $GSMNEXUSS) export SCRIPT_DEVICE=$(echo "crespo") repomenu fi if [ $buildnexuss == "2" ]; then - devicefullname=$(echo "Sprint Nexus S 4G") + devicefullname=$(echo $SPRNEXUSS) export SCRIPT_DEVICE=$(echo "crespo4g") repomenu fi if [ $buildnexuss == "3" ]; then - devicefullname=$(echo "All Nexus S'") + devicefullname=$(echo $ALLNEXUSS) export SCRIPT_DEVICE=$(echo "crespo") repomenu @@ -383,7 +380,7 @@ fi if [ $buildnexuss == "4" ]; then echo "" - read -p "Press Enter to go back: " done + read -p "$ENTERTOCONTINUE" done exit 0 fi nexussmenu @@ -392,41 +389,41 @@ nexussmenu nexus7menu(){ clear -echo "Swordrune10's Android Kitchen!" -echo "==============================" -echo "Today's Menu:" -echo " 1. Build Wifi Nexus 7 (2012) Tablet" -echo " 2. Build GSM Nexus 7 (2012) Tablet" -echo " 3. Build all (2012) ones!" -echo " 4. Build Wifi Nexus 7 (2013) Tablet" -echo " 5. Build LTE Nexus 7 (2013) Tablet" -echo " 6. Build all (2013) ones!" -echo " 7. Go Back" +echo $KITCHENTITLE +echo $KITCHENUNDERLINE +echo $BUILDMENUTITLE +echo " 1. $BUILDDEVICEWIFINEXUS72012" +echo " 2. $BUILDDEVICEGSMNEXUS72012" +echo " 3. $BUILDDEVICEALLNEXUS72012" +echo " 4. $BUILDDEVICEWIFINEXUS72013" +echo " 5. $BUILDDEVICELTENEXUS72013" +echo " 6. $BUILDDEVICEALLNEXUS72013" +echo " 7. $BUILDALLABOVE" +echo " 8. $MENUGOBACK" echo "" -echo "Which one would you like to do?" -read buildnexus7 +read -p "$KITCHENMENUWHICH" buildnexus7 -if [ ! "$buildnexus7" ] || ( echo $buildnexus7 | grep -q [A-Za-z] ) || [ $buildnexus7 -gt "7" ]; then +if [ ! "$buildnexus7" ] || ( echo $buildnexus7 | grep -q [A-Za-z] ) || [ $buildnexus7 -gt "8" ]; then echo "" - echo "You did not make a proper selection, try again!" - read -p "Press Enter to continue: " done + echo $NOTPROPERSELECTION + read -p "$ENTERTOCONTINUE" done nexus7menu fi if [ $buildnexus7 == "1" ]; then - devicefullname=$(echo "Wifi Nexus 7 (2012) Tablet") + devicefullname=$(echo $WIFINEXUS72012) export SCRIPT_DEVICE=$(echo "grouper") repomenu fi if [ $buildnexus7 == "2" ]; then - devicefullname=$(echo "GSM Nexus 7 (2012) Tablet") + devicefullname=$(echo $GSMNEXUS72012) export SCRIPT_DEVICE=$(echo "tilapia") repomenu fi if [ $buildnexus7 == "3" ]; then - devicefullname=$(echo "All Nexus 7 (2012) Tablet's") + devicefullname=$(echo $ALLNEXUS72012) export SCRIPT_DEVICE=$(echo "grouper") repomenu @@ -437,19 +434,19 @@ if [ $buildnexus7 == "3" ]; then fi if [ $buildnexus7 == "4" ]; then - devicefullname=$(echo "Wifi Nexus 7 (2013) Tablet") + devicefullname=$(echo $WIFINEXUS72013) export SCRIPT_DEVICE=$(echo "flo") repomenu fi if [ $buildnexus7 == "5" ]; then - devicefullname=$(echo "LTE Nexus 7 (2013) Tablet") + devicefullname=$(echo $LTENEXUS72012) export SCRIPT_DEVICE=$(echo "deb") repomenu fi if [ $buildnexus7 == "6" ]; then - devicefullname=$(echo "All Nexus 7 (2013) Tablet's") + devicefullname=$(echo $ALLNEXUS72013) export SCRIPT_DEVICE=$(echo "flo") repomenu @@ -459,9 +456,28 @@ if [ $buildnexus7 == "6" ]; then devicecheck fi +if [ $buildnexus7 == "7" ]; then + devicefullname=$(echo $ALLNEXUS7) + + export SCRIPT_DEVICE=$(echo "grouper") + repomenu + + export SCRIPT_DEVICE=$(echo "tilapia") + export SLOPPYSECONDS=true + devicecheck + + export SCRIPT_DEVICE=$(echo "flo") + export SLOPPYSECONDS=true + devicecheck + + export SCRIPT_DEVICE=$(echo "deb") + export SLOPPYSECONDS=true + devicecheck +fi + if [ $buildnexus7 == "7" ]; then echo "" - read -p "Press Enter to go back: " done + read -p "$ENTERTOCONTINUE" done exit 0 fi nexus7menu @@ -470,31 +486,30 @@ nexus7menu nexus10menu(){ clear -echo "Swordrune10's Android Kitchen!" -echo "==============================" -echo "Today's Menu:" -echo " 1. Build Wifi Nexus 10" -echo " 2. Go Back" +echo $KITCHENTITLE +echo $KITCHENUNDERLINE +echo $BUILDMENUTITLE +echo " 1. $BUILDDEVICENEXUS10" +echo " 2. $MENUGOBACK" echo "" -echo "Which one would you like to do?" -read buildnexus10 +read -p "$KITCHENMENUWHICH" buildnexus10 if [ ! "$buildnexus10" ] || ( echo $buildnexus10 | grep -q [A-Za-z] ) || [ $buildnexus10 -gt "2" ]; then echo "" - echo "You did not make a proper selection, try again!" - read -p "Press Enter to continue: " done + echo $NOTPROPERSELECTION + read -p "$ENTERTOCONTINUE" done nexus10menu fi if [ $buildnexus10 == "1" ]; then - devicefullname=$(echo "Wifi Nexus 10") + devicefullname=$(echo "$NEXUS10") export SCRIPT_DEVICE=$(echo "manta") repomenu fi if [ $buildnexus10 == "2" ]; then echo "" - read -p "Press Enter to go back: " done + read -p "$ENTERTOCONTINUE" done exit 0 fi nexus10menu @@ -503,38 +518,37 @@ nexus10menu xoommenu(){ clear -echo "Swordrune10's Android Kitchen!" -echo "==============================" -echo "Today's Menu:" -echo " 1. Build Wifi Xoom Tablet" -echo " 2. Build Verizon Xoom Tablet" -echo " 3. Build all above!" -echo " 4. Go Back" +echo $KITCHENTITLE +echo $KITCHENUNDERLINE +echo $BUILDMENUTITLE +echo " 1. $BUILDDEVICEWIFIXOOM" +echo " 2. $BUILDDEVICEVZWXOOM" +echo " 3. $BUILDALLABOVE" +echo " 4. $MENUGOBACK" echo "" -echo "Which one would you like to do?" -read buildxoom +read -p "$KITCHENMENUWHICH" buildxoom if [ ! "$buildxoom" ] || ( echo $buildxoom | grep -q [A-Za-z] ) || [ $buildxoom -gt "4" ]; then echo "" - echo "You did not make a proper selection, try again!" - read -p "Press Enter to continue: " done + echo $NOTPROPERSELECTION + read -p "$ENTERTOCONTINUE" done nexus10menu fi if [ $buildxoom == "1" ]; then - devicefullname=$(echo "Wifi Xoom Tablet") + devicefullname=$(echo $WIFIXOOM) export SCRIPT_DEVICE=$(echo "wingray") repomenu fi if [ $buildxoom == "2" ]; then - devicefullname=$(echo "Verizon Xoom Tablet") + devicefullname=$(echo $VZWXOOM) export SCRIPT_DEVICE=$(echo "stingray") repomenu fi if [ $buildxoom == "3" ]; then - devicefullname=$(echo "All Xoom Tablets") + devicefullname=$(echo $ALLXOOM) export SCRIPT_DEVICE=$(echo "stingray") repomenu @@ -546,14 +560,14 @@ fi if [ $buildxoom == "4" ]; then echo "" - read -p "Press Enter to go back: " done + read -p "$ENTERTOCONTINUE" done exit 0 fi xoommenu } allmenu(){ -devicefullname=$(echo "All Nexus Devices") +devicefullname=$(echo $ALLNEXUS) export SCRIPT_DEVICE=$(echo "mako") repomenu diff --git a/build/buildmenu b/build/buildmenu index c947a8a..1a4759a 100755 --- a/build/buildmenu +++ b/build/buildmenu @@ -35,7 +35,7 @@ echo " 6. $BUILDMENU6" echo " 7. $BUILDMENU7" echo " 8. $BUILDMENU8" echo " 9. $BUILDMENU9" -echo " 10. $$BUILDMENU10" +echo " 10. $BUILDMENU10" echo " 11. $MENUGOBACK" echo "" read -p "$KITCHENMENUWHICH" buildanswer diff --git a/build/buildother b/build/buildother index e787670..1406eee 100755 --- a/build/buildother +++ b/build/buildother @@ -23,28 +23,28 @@ fi menu () { clear -echo "Swordrune10's Android Kitchen!" -echo "==============================" -echo "Build other device is selected to be built!" +echo $KITCHENTITLE +echo $KITCHENUNDERLINE +echo $BUILDOTHERBEBUILT echo "" -echo "Which android repository are we building from today?" -echo " 1. Android Open Kang Project repository" -echo " 2. Android Open Source Project repository 4.3" -echo " 3. Android Open Source Project repository 4.4" -echo " 4. Carbon repository" -echo " 5. Cyanogenmod 10.2 repository" -echo " 6. Cyanogenmod 11 repository" -echo " 7. Evervolv repository" -echo " 8. omnirom repository" -echo " 9. PAC-man repository" -echo " 10. ParanoidAndroid repository" -echo " 11. Go Back" -read version +echo $BUILDDEVICEWHICHREPO +echo " 1. $BUILDREPOMENU1" +echo " 2. $BUILDREPOMENU2" +echo " 3. $BUILDREPOMENU3" +echo " 4. $BUILDREPOMENU4" +echo " 5. $BUILDREPOMENU5" +echo " 6. $BUILDREPOMENU6" +echo " 7. $BUILDREPOMENU7" +echo " 8. $BUILDREPOMENU8" +echo " 9. $BUILDREPOMENU9" +echo " 10. $BUILDREPOMENU10" +echo " 11. $MENUGOBACK" +read -p "$KITCHENMENUWHICH" version if [ ! "$version" ] || ( echo $version | grep -q [A-Za-z] ) || [ $version -gt "11" ]; then echo "" - echo "You did not make a proper selection, try again!" - read -p "Press Enter to continue: " done + echo $NOTPROPERSELECTION + read -p "$ENTERTOCONTINUE" done menu fi @@ -100,38 +100,38 @@ fi if [ $version == "11" ]; then echo "" - read -p "Returning to Build Menu, Press Enter to continue: " done + read -p "$BUILDMENURETURN" done exit 0 fi if ( ! find $REPOS/$SCRIPT_REPO-$REPO_PLATFORM -maxdepth 1 &> /dev/null ); then echo "" - echo "The selected android repository is not setup!" - read -p "Press Enter to continue: " done + echo $BUILDREPONOTSETUP + read -p "$ENTERTOCONTINUE" done menu fi clear -echo "Swordrune10's Android Kitchen!" -echo "==============================" -echo "Please type in which device you would like to build" -echo "Type in list to see all supported devices" -echo "Type in exit to go back" +echo $KITCHENTITLE +echo $KITCHENUNDERLINE +echo $BUILDOTHERTYPEDEVICE +echo $BUILDOTHERTYPELIST +echo $BUILDOTHERTYPEEXIT read device if [ ! "$device" ]; then echo "" - echo "You did not make a proper selection, try again!" - read -p "Press Enter to continue: " done + echo $NOTPROPERSELECTION + read -p "$ENTERTOCONTINUE" done menu fi while [ $device == "list" ]; do clear - echo "Device List" - echo "===========" + echo $BUILDOTHERBUILDTITLE + echo $BUILDOTHERBUILDUNDERLINE if [ $SCRIPT_REPO == "aokp" ]; then cat $REPOS/aokp-$REPO_PLATFORM/vendor/aokp/vendorsetup.sh | grep "add_lunch_combo" | \ @@ -186,16 +186,16 @@ while [ $device == "list" ]; do echo "" - echo "Swordrune10's Android Kitchen!" - echo "==============================" - echo "Please type in which device you would like to build" - echo "Type in list to see all supported devices" - echo "Type in exit to go to back" + echo $KITCHENTITLE + echo $KITCHENUNDERLINE + echo $BUILDOTHERTYPEDEVICE + echo $BUILDOTHERTYPELIST + echo $BUILDOTHERTYPEEXIT read device done if [ $device == "exit" ]; then - read -p "Press Enter to continue: " done + read -p "$BUILDMENURETURN" done exit 0 fi @@ -204,17 +204,17 @@ if [ $SCRIPT_REPO == "aokp" ]; then -e 's/-userdebug//' \ $REPOS/aokp-$REPO_PLATFORM/vendor/aokp/vendorsetup.sh | grep -q $device ); then echo "" - echo "This device is not compatible with this repository, build anyways?" + echo $BUILDOTHERNOTCOMPATIBLE read answer if [ $answer == "yes" ] || [ $answer == "y" ]; then - echo "Continuing the build" + echo $BUILDOTHERCONTINUE elif [ $answer == "no" ] || [ $answer == "n" ]; then - read -p "Returning to Build Menu, Press Enter to continue: " done + read -p "$BUILDMENURETURN" done exit 0 else - echo "Not a vaild answer, not going to build" - read -p "Returning to Build Menu, Press Enter to continue: " done + echo $BUILDOTHERNOTVALID + read -p "$BUILDMENURETURN" done exit 0 fi fi @@ -225,17 +225,17 @@ if [ $SCRIPT_REPO == "aosp" ]; then -e 's/-userdebug//' \ $REPOS/aosp-$REPO_PLATFORM/device/*/$device/vendorsetup.sh | grep -q $device ); then echo "" - echo "This device is not compatible with this repository, build anyways?" + echo $BUILDOTHERNOTCOMPATIBLE read answer if [ $answer == "yes" ] || [ $answer == "y" ]; then - echo "Continuing the build" + echo $BUILDOTHERCONTINUE elif [ $answer == "no" ] || [ $answer == "n" ]; then - read -p "Returning to Build Menu, Press Enter to continue: " done + read -p "$BUILDMENURETURN" done exit 0 else - echo "Not a vaild answer, not going to build" - read -p "Returning to Build Menu, Press Enter to continue: " done + echo $BUILDOTHERNOTVALID + read -p "$BUILDMENURETURN" done exit 0 fi fi @@ -246,17 +246,17 @@ if [ $SCRIPT_REPO == "carbon" ]; then -e 's/-userdebug//' \ $REPOS/carbon-$REPO_PLATFORM/vendor/carbon/vendorsetup.sh | grep -q $device ); then echo "" - echo "This device is not compatible with this repository, build anyways?" + echo $BUILDOTHERNOTCOMPATIBLE read answer if [ $answer == "yes" ] || [ $answer == "y" ]; then - echo "Continuing the build" + echo $BUILDOTHERCONTINUE elif [ $answer == "no" ] || [ $answer == "n" ]; then - read -p "Returning to Build Menu, Press Enter to continue: " done + read -p "$BUILDMENURETURN" done exit 0 else - echo "Not a vaild answer, not going to build" - read -p "Returning to Build Menu, Press Enter to continue: " done + echo $BUILDOTHERNOTVALID + read -p "$BUILDMENURETURN" done exit 0 fi fi @@ -265,17 +265,17 @@ fi if [ $SCRIPT_REPO == "cm" ]; then if ( ! cat $LOCAL/config/cm-master-list | grep -q $device ); then echo "" - echo "This device is not compatible with this repository, build anyways?" + echo $BUILDOTHERNOTCOMPATIBLE read answer if [ $answer == "yes" ] || [ $answer == "y" ]; then - echo "Continuing the build" + echo $BUILDOTHERCONTINUE elif [ $answer == "no" ] || [ $answer == "n" ]; then - read -p "Returning to Build Menu, Press Enter to continue: " done + read -p "$BUILDMENURETURN" done exit 0 else - echo "Not a vaild answer, not going to build" - read -p "Returning to Build Menu, Press Enter to continue: " done + echo $BUILDOTHERNOTVALID + read -p "$BUILDMENURETURN" done exit 0 fi fi @@ -286,17 +286,17 @@ if [ $SCRIPT_REPO == "evervolv" ]; then -e 's/-userdebug//' \ $REPOS/evervolv-$REPO_PLATFORM/vendor/ev/vendorsetup.sh | grep -q $device ); then echo "" - echo "This device is not compatible with this repository, build anyways?" + echo $BUILDOTHERNOTCOMPATIBLE read answer if [ $answer == "yes" ] || [ $answer == "y" ]; then - echo "Continuing the build" + echo $BUILDOTHERCONTINUE elif [ $answer == "no" ] || [ $answer == "n" ]; then - read -p "Returning to Build Menu, Press Enter to continue: " done + read -p "$BUILDMENURETURN" done exit 0 else - echo "Not a vaild answer, not going to build" - read -p "Returning to Build Menu, Press Enter to continue: " done + echo $BUILDOTHERNOTVALID + read -p "$BUILDMENURETURN" done exit 0 fi fi @@ -307,17 +307,17 @@ if [ $SCRIPT_REPO == "omni" ]; then -e 's/-userdebug//' \ $REPOS/omni-$REPO_PLATFORM/device/*/$device/vendorsetup.sh | grep -q $device ); then echo "" - echo "This device is not compatible with this repository, build anyways?" + echo $BUILDOTHERNOTCOMPATIBLE read answer if [ $answer == "yes" ] || [ $answer == "y" ]; then - echo "Continuing the build" + echo $BUILDOTHERCONTINUE elif [ $answer == "no" ] || [ $answer == "n" ]; then - read -p "Returning to Build Menu, Press Enter to continue: " done + read -p "$BUILDMENURETURN" done exit 0 else - echo "Not a vaild answer, not going to build" - read -p "Returning to Build Menu, Press Enter to continue: " done + echo $BUILDOTHERNOTVALID + read -p "$BUILDMENURETURN" done exit 0 fi fi @@ -328,17 +328,17 @@ if [ $SCRIPT_REPO == "pacman" ]; then -e 's/-userdebug//' \ $REPOS/pacman-$REPO_PLATFORM/vendor/pac/vendorsetup.sh | grep -q $device ); then echo "" - echo "This device is not compatible with this repository, build anyways?" + echo $BUILDOTHERNOTCOMPATIBLE read answer if [ $answer == "yes" ] || [ $answer == "y" ]; then - echo "Continuing the build" + echo $BUILDOTHERCONTINUE elif [ $answer == "no" ] || [ $answer == "n" ]; then - read -p "Returning to Build Menu, Press Enter to continue: " done + read -p "$BUILDMENURETURN" done exit 0 else - echo "Not a vaild answer, not going to build" - read -p "Returning to Build Menu, Press Enter to continue: " done + echo $BUILDOTHERNOTVALID + read -p "$BUILDMENURETURN" done exit 0 fi fi @@ -349,17 +349,17 @@ if [ $SCRIPT_REPO == "paranoid" ]; then -e 's/-userdebug//' \ $REPOS/paranoid-$REPO_PLATFORM/vendor/pa/vendorsetup.sh | grep -q $device ); then echo "" - echo "This device is not compatible with this repository, build anyways?" + echo $BUILDOTHERNOTCOMPATIBLE read answer if [ $answer == "yes" ] || [ $answer == "y" ]; then - echo "Continuing the build" + echo $BUILDOTHERCONTINUE elif [ $answer == "no" ] || [ $answer == "n" ]; then - read -p "Returning to Build Menu, Press Enter to continue: " done + read -p "$BUILDMENURETURN" done exit 0 else - echo "Not a vaild answer, not going to build" - read -p "Returning to Build Menu, Press Enter to continue: " done + echo $BUILDOTHERNOTVALID + read -p "$BUILDMENURETURN" done exit 0 fi fi diff --git a/build/buildotherrepo b/build/buildotherrepo index 46d9b98..23e1b8a 100755 --- a/build/buildotherrepo +++ b/build/buildotherrepo @@ -24,7 +24,7 @@ menu () { clear if [ ! $( cat $LOCAL/config/otherrepo ) ] || [ ! $( cat $LOCAL/config/otherreponame ) ]; then - echo "other repo file is empty, please add to file then try again!" + echo $BUILDOTHERREPOEMPTY exit 0 fi @@ -40,11 +40,11 @@ while true; do fi done -echo "Swordrune10's Android Kitchen!" -echo "==============================" -echo "Build with other repository is selected to be built!" +echo $KITCHENTITLE +echo $KITCHENUNDERLINE +echo $BUILDOTHERREPOBEBUILT echo "" -echo "Which custom android repository are we building from today?" +echo $BUILDDEVICEWHICHREPO while true; do let countdown=$countdown+1 @@ -55,7 +55,7 @@ while true; do echo " "$countdown". "${filelurkername[$countdown]} done -echo " $count. Go Back" +echo " $count. $MENUGOBACK" sed -i "/EOF/d" $LOCAL/config/otherreponame @@ -63,47 +63,47 @@ read version if [ ! "$version" ] || ( echo $version | grep -q [A-Za-z] ) || [ $version -gt $count ]; then echo "" - echo "You did not make a proper selection, try again!" - read -p "Press Enter to continue: " done + echo $NOTPROPERSELECTION + read -p "$ENTERTOCONTINUE" done menu fi if [ $version == $count ]; then echo "" - read -p "Returning to Build Menu, Press Enter to continue: " done + read -p "$BUILDMENURETURN" done exit 0 fi otherrepofolder=$(echo "$REPOS/otherrepo/"${filelurker[$version]}"") -if ( ! find $otherrepofolder/.repo &> /dev/null ); then +if ( ! find $otherrepofolder/.repo -maxdepth 1 &> /dev/null ); then echo "" - echo "The selected android repository is not setup!" - read -p "Press Enter to continue: " done + echo $BUILDREPONOTSETUP + read -p "$ENTERTOCONTINUE" done menu fi clear -echo "Swordrune10's Android Kitchen!" -echo "==============================" -echo "Please type in which device you would like to build" -echo "Type in list to see all supported devices" -echo "Type in exit to go back" +echo $KITCHENTITLE +echo $KITCHENUNDERLINE +echo $BUILDOTHERTYPEDEVICE +echo $BUILDOTHERTYPELIST +echo $BUILDOTHERTYPEEXIT read device if [ ! "$device" ]; then echo "" - echo "You did not make a proper selection, try again!" - read -p "Press Enter to continue: " done + echo $NOTPROPERSELECTION + read -p "$ENTERTOCONTINUE" done buildotherrepo exit 0 fi while [ $device == "list" ]; do - echo "Device List" - echo "===========" + echo $BUILDOTHERBUILDTITLE + echo $BUILDOTHERBUILDUNDERLINE for vendorsetup in `ls $otherrepofolder/vendor/*/vendorsetup.sh \ $otherrepofolder/vendor/*/*/vendorsetup.sh $otherrepofolder/device/*/*/vendorsetup.sh 2> /dev/null` @@ -114,24 +114,16 @@ while [ $device == "list" ]; do clear - echo "Swordrune10's Android Kitchen!" - echo "==============================" - echo "Please type in which device you would like to build" - echo "Type in list to see all supported devices" - echo "Type in exit to go to back" + echo $KITCHENTITLE + echo $KITCHENUNDERLINE + echo $BUILDOTHERTYPEDEVICE + echo $BUILDOTHERTYPELIST + echo $BUILDOTHERTYPEEXIT read device done -if [ ! "$device" ]; then - echo "" - echo "You did not make a proper selection, try again!" - read -p "Press Enter to continue: " done - buildotherrepo - exit 0 -fi - if [ $device == "exit" ]; then - read -p "Press Enter to continue: " done + read -p "$BUILDMENURETURN" done buildotherrepo exit 0 fi @@ -140,8 +132,8 @@ if ( ! cat $otherrepofolder/vendor/*/vendorsetup.sh | grep -q $device ) && \ ( ! cat $otherrepofolder/vendor/*/*/vendorsetup.sh | grep -q $device ) && \ ( ! cat $otherrepofolder/device/*/$device/vendorsetup.sh | grep -q $device ); then echo "" - echo "This device is not compatible with this repository, try again!" - read -p "Returning to Build Menu, Press Enter to continue: " done + echo $BUILDDEVICENOTCOMPATIBLE + read -p "$BUILDMENURETURN" done exit 0 fi @@ -152,7 +144,6 @@ export REPO_PLATFORM=$( echo "${filelurker[$version]}" | sed 's/.*-//' ) export SCRIPT_DEVICE=$(echo $device) buildandro -echo "Finished!" menu } menu diff --git a/repair/configkitchen b/repair/configkitchen index f007300..0aee588 100755 --- a/repair/configkitchen +++ b/repair/configkitchen @@ -25,10 +25,10 @@ clear echo $KITCHENTITLE echo $KITCHENUNDERLINE -echo $REPOSYNCMENUTITLE -echo " 1. $REPOSYNCMENU1" -echo " 2. $REPOSYNCMENU2" -echo " 3. $REPOSYNCMENU3" +echo $CONFIGKITCHENMENUTITLE +echo " 1. $CONFIGKITCHENMENU1" +echo " 2. $CONFIGKITCHENMENU2" +echo " 3. $CONFIGKITCHENMENU3" echo " 4. $MENUGOBACK" echo "" read -p "$KITCHENMENUWHICH" configs @@ -49,9 +49,9 @@ if [ $configs == "2" ]; then fi if [ $configs == "3" ]; then - read -p "$REPOSYNCOTHERREPO" done + read -p "$CONFIGKITCHENOTHERREPO" done nano $LOCAL/config/otherrepo - read -p "$REPOSYNCOTHERREPONAME" done + read -p "$CONFIGKITCHENOTHERREPONAME" done nano $LOCAL/config/otherreponame fi diff --git a/repair/fixkitchen b/repair/fixkitchen index 3e4a79b..e1850ee 100755 --- a/repair/fixkitchen +++ b/repair/fixkitchen @@ -23,28 +23,27 @@ fi menu () { clear -echo "Swordrune10's Android Kitchen!" -echo "==============================" -echo "Something is not working right? What should we do?" -echo "Purge = remove files, download from origin" -echo "Delete = delete it!" -echo " 1. Add a repo to a certain local_manifests folder" -echo " 2. Purge a certain local_manifests folder" -echo " 3. Purge or Delete a certain repository" -echo " 4. Purge or Delete all the repositories" -echo " 5. Purge or Delete the Kitchen app" -echo " 6. Delete the Kitchen app, and its dependencies" -echo " 7. Delete entire computer" -echo " 8. Delete the internet" -echo " 9. Go Back" +echo $KITCHENTITLE +echo $KITCHENUNDERLINE +echo $FIXKITCHENSOMETHINGNOT +echo $FIXKITCHENPURGE +echo $FIXKITCHENDELETE +echo " 1. $FIXKITCHENMENU1" +echo " 2. $FIXKITCHENMENU2" +echo " 3. $FIXKITCHENMENU3" +echo " 4. $FIXKITCHENMENU4" +echo " 5. $FIXKITCHENMENU5" +echo " 6. $FIXKITCHENMENU6" +echo " 7. $FIXKITCHENMENU7" +echo " 8. $FIXKITCHENMENU8" +echo " 9. $MENUGOBACK" echo "" -echo "Which one would you like to do?" -read cleananswer +read -p "$KITCHENMENUWHICH" cleananswer if [ ! "$cleananswer" ] || ( echo $cleananswer | grep -q [A-Za-z] ) || [ $cleananswer -gt "9" ]; then echo "" - echo "You did not make a proper selection, try again!" - read -p "Press Enter to continue: " done + echo $NOTPROPERSELECTION + read -p "$ENTERTOCONTINUE" done menu fi @@ -65,7 +64,7 @@ revision=\"PROJECT BRANCH\" />" > $LOCAL/../temp/addrepo nano $LOCAL/../temp/addrepo echo "" -echo "Adding repo to otherdevices.xml for $repo_name.." +echo "$FIXKITCHENADD $repo_name.." cd $local_manifests if ( ! find $local_manifests/otherdevices.xml -maxdepth 1 &> /dev/null ); then @@ -83,32 +82,33 @@ purgelocalmanifest() { export REPO_FOLDER=$( echo "$REPOS/$script_repo-$repo_platform" ) rm -rf $REPO_FOLDER/.repo/local_manifests preupdate -echo "Purged $repo_name local_manifests folder" +echo "$repo_name $FIXKITCHENPURGE" } if [ $cleananswer == "1" ]; then clear - echo "Swordrune10's Android Kitchen!" - echo "==============================" - echo "Which repo would you like to add to?" - echo " 1. Android Open Kang Project repository" - echo " 2. Android Open Source Project repository 4.3" - echo " 3. Android Open Source Project repository 4.4" - echo " 4. Carbon repository" - echo " 5. Cyanogenmod 10.2 repository" - echo " 6. Cyanogenmod 11 repository" - echo " 7. Evervolv repository" - echo " 8. omnirom repository" - echo " 9. PAC-man repository" - echo " 10. ParanoidAndroid repository" - echo " 11. Go Back" - read addrepo + echo $KITCHENTITLE + echo $KITCHENUNDERLINE + echo $FIXKITCHENWHICHADD + echo " 1. $BUILDREPOMENU1" + echo " 2. $BUILDREPOMENU2" + echo " 3. $BUILDREPOMENU3" + echo " 4. $BUILDREPOMENU4" + echo " 5. $BUILDREPOMENU5" + echo " 6. $BUILDREPOMENU6" + echo " 7. $BUILDREPOMENU7" + echo " 8. $BUILDREPOMENU8" + echo " 9. $BUILDREPOMENU9" + echo " 10. $BUILDREPOMENU10" + echo " 11. $MENUGOBACK" + echo "" + read -p "$KITCHENMENUWHICH" addrepo if [ ! "$addrepo" ] || ( echo $addrepo | grep -q [A-Za-z] ) || [ $addrepo -gt "11" ]; then echo "" - echo "You did not make a proper selection, try again!" - read -p "Press Enter to continue: " done + echo $NOTPROPERSELECTION + read -p "$ENTERTOCONTINUE" done menu fi @@ -174,38 +174,39 @@ if [ $cleananswer == "1" ]; then if [ $addrepo == "11" ]; then echo "" - read -p "Going back, Press Enter to continue: " done + read -p "$ENTERTOCONTINUE" done menu fi echo "" - echo "Finished!" - read -p "Press Enter to continue: " done + echo $COMPLETEDMESSAGE + read -p "$ENTERTOCONTINUE" done fi if [ $cleananswer == "2" ]; then clear - echo "Swordrune10's Android Kitchen!" - echo "==============================" - echo "Which repo would you like to purge its local_manifests folder?" - echo " 1. Android Open Kang Project repository" - echo " 2. Android Open Source Project repository 4.3" - echo " 3. Android Open Source Project repository 4.4" - echo " 4. Carbon repository" - echo " 5. Cyanogenmod 10.2 repository" - echo " 6. Cyanogenmod 11 repository" - echo " 7. Evervolv repository" - echo " 8. omnirom repository" - echo " 9. PAC-man repository" - echo " 10. ParanoidAndroid repository" - echo " 11. Go Back" - read cleanse + echo $KITCHENTITLE + echo $KITCHENUNDERLINE + echo $FIXKITCHENWHICHPURGE + echo " 1. $BUILDREPOMENU1" + echo " 2. $BUILDREPOMENU2" + echo " 3. $BUILDREPOMENU3" + echo " 4. $BUILDREPOMENU4" + echo " 5. $BUILDREPOMENU5" + echo " 6. $BUILDREPOMENU6" + echo " 7. $BUILDREPOMENU7" + echo " 8. $BUILDREPOMENU8" + echo " 9. $BUILDREPOMENU9" + echo " 10. $BUILDREPOMENU10" + echo " 11. $MENUGOBACK" + echo "" + read -p "$KITCHENMENUWHICH" cleanse if [ ! "$cleanse" ] || ( echo $cleanse | grep -q [A-Za-z] ) || [ $cleanse -gt "11" ]; then echo "" - echo "You did not make a proper selection, try again!" - read -p "Press Enter to continue: " done + echo $NOTPROPERSELECTION + read -p "$ENTERTOCONTINUE" done menu fi @@ -271,56 +272,55 @@ if [ $cleananswer == "2" ]; then if [ $cleanse == "11" ]; then echo "" - read -p "Going back, Press Enter to continue: " done + read -p "$ENTERTOCONTINUE" done menu fi echo "" - echo "Finished!" - read -p "Press Enter to continue: " done + echo $COMPLETEDMESSAGE + read -p "$ENTERTOCONTINUE" done fi if [ $cleananswer == "3" ]; then clear - echo "Swordrune10's Android Kitchen!" - echo "==============================" - echo "Which repo would you like to purge or delete?" - echo " 1. Android Open Kang Project repository" - echo " 2. Android Open Source Project repository 4.3" - echo " 3. Android Open Source Project repository 4.4" - echo " 4. Carbon repository" - echo " 5. Cyanogenmod 10.2 repository" - echo " 6. Cyanogenmod 11 repository" - echo " 7. Evervolv repository" - echo " 8. omnirom repository" - echo " 9. PAC-man repository" - echo " 10. ParanoidAndroid repository" - echo " 11. Go Back" - read modify + echo $KITCHENTITLE + echo $KITCHENUNDERLINE + echo $FIXKITCHENWHICHREPO + echo " 1. $BUILDREPOMENU1" + echo " 2. $BUILDREPOMENU2" + echo " 3. $BUILDREPOMENU3" + echo " 4. $BUILDREPOMENU4" + echo " 5. $BUILDREPOMENU5" + echo " 6. $BUILDREPOMENU6" + echo " 7. $BUILDREPOMENU7" + echo " 8. $BUILDREPOMENU8" + echo " 9. $BUILDREPOMENU9" + echo " 10. $BUILDREPOMENU10" + echo " 11. $MENUGOBACK" + echo "" + read -p "$KITCHENMENUWHICH" modify if [ ! "$modify" ] || ( echo $modify | grep -q [A-Za-z] ) || [ $modify -gt "11" ]; then echo "" - echo "You did not make a proper selection, try again!" - read -p "Press Enter to continue: " done + echo $NOTPROPERSELECTION + read -p "$ENTERTOCONTINUE" done menu fi echo "" - echo "Purge or Delete?" - echo "Purge = remove files, download from origin" - echo "Delete = delete it!" - echo "type exit to go to back" + echo $FIXKITCHENPURGEDELETE + echo $FIXKITCHENPURGEDELETEEXIT read remover if [ ! "$remover" ]; then echo "" - echo "You didn't type in anything.." - read -p "Press Enter to continue: " done + echo $NOTPROPERSELECTION + read -p "$ENTERTOCONTINUE" done menu elif [ $remover == "exit" ]; then echo "" - read -p "Press Enter to continue: " done + read -p "$ENTERTOCONTINUE" done menu fi @@ -377,7 +377,7 @@ if [ $cleananswer == "3" ]; then if [ $modify == "11" ]; then echo "" - read -p "Going back, Press Enter to continue: " done + read -p "$ENTERTOCONTINUE" done menu fi @@ -390,33 +390,29 @@ if [ $cleananswer == "3" ]; then fi echo "" - echo "Finished!" - read -p "Press Enter to continue: " done + echo $COMPLETEDMESSAGE + read -p "$ENTERTOCONTINUE" done fi if [ $cleananswer == "4" ]; then clear - echo "Swordrune10's Android Kitchen!" - echo "==============================" - echo "Purge or Delete all of the repositories?" - echo "Purge = remove files, download from origin" - echo "Delete = delete it!" - echo "type exit to go to back" + echo $KITCHENTITLE + echo $KITCHENUNDERLINE + echo $FIXKITCHENPURGEDELETEREPO + echo $FIXKITCHENPURGEDELETEEXIT read remover if [ ! "$remover" ]; then echo "" - echo "You didn't type in anything.." - read -p "Press Enter to continue: " done + echo $NOTPROPERSELECTION + read -p "$ENTERTOCONTINUE" done menu elif [ $remover == "exit" ]; then echo "" - read -p "Press Enter to continue: " done + read -p "$ENTERTOCONTINUE" done menu - fi - - if [ $remover == "Purge" ] || [ $remover == "purge" ]; then + elif [ $remover == "Purge" ] || [ $remover == "purge" ]; then export INIT="" reposync -p allthethings elif [ $remover == "Delete" ] || [ $remover == "delete" ]; then @@ -424,29 +420,27 @@ if [ $cleananswer == "4" ]; then fi echo "" - echo "Finished!" - read -p "Press Enter to continue: " done + echo $COMPLETEDMESSAGE + read -p "$ENTERTOCONTINUE" done fi if [ $cleananswer == "5" ]; then clear - echo "Swordrune10's Android Kitchen!" - echo "==============================" - echo "Purge or Delete the Kitchen app?" - echo "Purge = remove files, download from origin" - echo "Delete = delete it!" - echo "type exit to go back" + echo $KITCHENTITLE + echo $KITCHENUNDERLINE + echo $FIXKITCHENPURGEDELETEKITCHEN + echo $FIXKITCHENPURGEDELETEEXIT read remover if [ ! "$remover" ]; then echo "" - echo "You didn't type in anything.." - read -p "Press Enter to continue: " done + echo $NOTPROPERSELECTION + read -p "$ENTERTOCONTINUE" done menu elif [ $remover == "exit" ]; then echo "" - read -p "Press Enter to continue: " done + read -p "$ENTERTOCONTINUE" done menu fi @@ -457,38 +451,36 @@ if [ $cleananswer == "5" ]; then scriptmakir echo "" - echo "Switching to Redeemer script.." + echo $FIXKITCHENREDEEMER echo "" ./redeemer elif [ $remover == "Delete" ] || [ $remover == "delete" ]; then echo "" - echo "Are you sure you want to remove the Kitchen app?" - echo "You must type in \"yes\" to continue" + echo $FIXKITCHENDELETEKITCHEN + echo $FIXKITCHENTYPEYES echo "" - echo "Type in anything else to abort operation" - read -p "yes/no? " destroyer + echo $FIXKITCHENTYPEABORT + read -p "$QUESTIONYESNO" destroyer if [ ! "$destroyer" ]; then echo "" - echo "You didn't type in anything.." - read -p "Press Enter to continue: " done + echo $NOTPROPERSELECTION + read -p "$ENTERTOCONTINUE" done menu - elif [ ! $destroyer == "yes" ]; then - echo "" - echo "Aborting.." - read -p "Press Enter to continue: " done - fi - - if [ $destroyer == "yes" ]; then + elif [ $destroyer == $ANSWERYES ]; then export AUTHOR="destroyer" scriptmakir echo "" - echo "Thank you for using Swordrune10's Kitchen!" - echo "Switching to Destroyer script.." + echo $FIXKITCHENDESTROYERSWITCH + echo $KITCHENTHANKS echo "" ./destroyer - exit 0 + kill 0 + else + echo "" + echo $ABORTMESSAGE + read -p "$ENTERTOCONTINUE" done fi fi fi @@ -496,86 +488,82 @@ fi if [ $cleananswer == "6" ]; then clear - echo "Swordrune10's Android Kitchen!" - echo "==============================" - echo "Are you sure you want to remove the Kitchen app and its dependencies?" - echo "Please note: the builds directory will not be deleted" - echo "You must type in \"yes\" to continue" + echo $KITCHENTITLE + echo $KITCHENUNDERLINE + echo $FIXKITCHENDELETEKITCHENALL + echo $FIXKITCHENNOTDELETEBUILDS + echo $FIXKITCHENTYPEYES echo "" - echo "Type in anything else to abort operation" - read -p "yes/no? " destroyerofworlds + echo $FIXKITCHENTYPEABORT + read -p "$QUESTIONYESNO" destroyerofworlds if [ ! "$destroyerofworlds" ]; then echo "" - echo "You didn't type in anything.." - read -p "Press Enter to continue: " done + echo $NOTPROPERSELECTION + read -p "$ENTERTOCONTINUE" done menu - elif [ ! $destroyerofworlds == "yes" ]; then - echo "" - echo "Aborting.." - read -p "Press Enter to continue: " done - fi - - if [ $destroyerofworlds == "yes" ]; then + elif [ $destroyerofworlds == $ANSWERYES ]; then export AUTHOR="destroyerofworlds" scriptmakir echo "" - echo "Thank you for using Swordrune10's Kitchen!" - echo "Switching to Destroyer of Worlds script.." + echo $FIXKITCHENDESTROYEROFWORLDSSWITCH + echo $KITCHENTHANKS echo "" cd $LOCAL/.. ./destroyerofworlds - exit 0 + kill 0 + else + echo "" + echo $ABORTMESSAGE + read -p "$ENTERTOCONTINUE" done fi fi if [ $cleananswer == "7" ]; then clear - echo "Swordrune10's Android Kitchen!" - echo "==============================" - echo "Are you sure..? this will delete everything on your computer, including mounted external drives and flash drives!!" - echo "You must type in \"yes, please delete everything off of my computer\" to continue" + echo $KITCHENTITLE + echo $KITCHENUNDERLINE + echo $FIXKITCHENDELETECOMPUTER + echo $FIXKITCHENMUSTTYPEEXACTLY echo "" - echo "Type in anything else to bail out" + echo $FIXKITCHENTYPEABORT read suicidenote if [ ! "$suicidenote" ]; then echo "" - echo "You didn't type in anything.." - read -p "Press Enter to continue: " done + echo $NOTPROPERSELECTION + read -p "$ENTERTOCONTINUE" done menu - fi - - if [ ! $suicidenote == "yes, please delete everything off of my computer" ]; then + elif [ $suicidenote == $SUICIDENOTE]; then echo "" - echo "Please dont try that again..." - elif [ $suicidenote == "yes, please delete everything off of my computer" ]; then - echo "" - echo "Please type in your password to destroy everything" + echo $FIXKITCHENTYPEPASSY sudo rm -rf / + echo "" + echo $COMPLETEDMESSAGE + read -p "$ENTERTOEXIT" done + else + echo "" + echo $ABORTMESSAGE + read -p "$ENTERTOCONTINUE" done fi - - echo "" - echo "Finished!" - read -p "Press Enter to continue: " done fi if [ $cleananswer == "8" ]; then clear - echo "Trollface's Android Kitchen!" - echo "==============================" - echo "Oh man, I bet you wish it was that easy!" + echo $TROLLFACETITLE + echo $TROLLFACEUNDERLINE + echo $FIXKITCHENIBET echo "" - echo "Aborting.." - read -p "Press Enter to continue: " done + echo $ABORTMESSAGE + read -p "$ENTERTOCONTINUE" done fi if [ $cleananswer == "9" ]; then echo "" - read -p "Returning to Main Menu, Press Enter to continue: " done + read -p "$MAINMENURETURN" done exit 0 fi diff --git a/translation/bluefintuna b/translation/bluefintuna index 518ae7f..705a314 100755 --- a/translation/bluefintuna +++ b/translation/bluefintuna @@ -32,17 +32,48 @@ export ANSWERY=$( echo "y" ) export ANSWERNO=$( echo "no" ) export ANSWERN=$( echo "n" ) +## Macosxinit +export MACOSXINITRUN=$( echo "You are running Mac OS X!" ) +export MACOSXINITCANTFINDDMG=$( echo "We can't find the android image to mount, this is needed to build on mac os x +If you already have one made please put it in its proper place with its proper title +It's proper place and title is in your home folder named android.dmg, example is ~/android.dmg + +Would you like to make a new android.dmg?" ) +export MACOSXINITHOWBIG=$( echo "How big would you like android.dmg? Keep in mind it will increase its size if u need more space +Type in number in gigabytes" ) +export MACOSXINITMOUNTNEW=$( echo "Mounting new android.dmg at /Volumes/android.." ) +export MACOSXINITMOVEINTO=$( echo "Moving into android.dmg.." ) +export MACOSXINITSETUP=$( echo "Setting up kitchen.." ) +export MACOSXINITSETUP=$( echo "Setting up kitchen.." ) +export MACOSXINITFOUNDDMG=$( echo "Found your android.dmg, mounting.." ) +export MACOSXINITCANTFINDKITCHEN=$( echo "We can't find the rom kitchen in /Volumes/android + +Would you like to make install rom kitchen in /Volumes/android?" ) + ## Errors +export ERRORHEADER=$( echo "An Error Has Occurred! +======================" ) +export ERRORSIDEEFFECTS=$( echo "Side effects may include failure to build properly and lack of support +for build environment setup" ) export ERRORCONTACTINFO=$( echo "If you see this in error, please notify me at either xda or rootzwiki If you prefer email you can reach me at mishana@swordrune10.net If your also inclined, i have a freenode channel #Swordrune10Kitchen" ) +export BOUNCERPOWERPC=$( echo "PowerPC processor detected! +=========================== +Running powerpc isn't necessarily prohibited, but it is not suggested" ) +export BOUNCER32BIT=$( echo "32-bit processor detected! +========================== +Running 32-bit isn't necessarily prohibited, but it is not suggested" ) +export BOUNCERKITCHENHOME=$( echo "Kitchen not set in correct place! +================================= +Kitchen will not work correctly if placed in home folder, please move" ) export ENVIRONMENTSETUP32BIT=$( echo "32-bit not supported! ===================== Build enviroment installation only supports 64-bit Operating Systems" ) export ENVIRONMENTSETUPNOTSUPPORTED=$( echo "Operating System not supported! =============================== Supported Operating Systems (only 64-bit): -Ubuntu 10.04 - 13.10 (Full Support) +Ubuntu 10.04 - 14.04 (Full Support) Debian (General Support) Linux Mint (General Support) Arch Linux (General Support) @@ -62,6 +93,29 @@ export REPOSOMNI=$( echo "omnirom" ) export REPOSPACMAN=$( echo "PAC-man" ) export REPOSPARA=$( echo "ParanoidAndroid" ) +## Devices +export NEXUS4=$( echo "GSM Nexus 4" ) +export NEXUS5=$( echo "LTE Nexus 5" ) +export GSMGNEXUS=$( echo "GSM Galaxy Nexus" ) +export SPRGNEXUS=$( echo "Sprint Galaxy Nexus" ) +export VZWGNEXUS=$( echo "Verizon Galaxy Nexus" ) +export ALLGNEXUS=$( echo "All Galaxy Nexi" ) +export GSMNEXUSS=$( echo "GSM Nexus S" ) +export SPRNEXUSS=$( echo "Sprint Nexus S 4G" ) +export ALLNEXUSS=$( echo "All Nexus S'" ) +export WIFINEXUS72012=$( echo "Wifi Nexus 7 (2012) Tablet" ) +export GSMNEXUS72012=$( echo "GSM Nexus 7 (2012) Tablet" ) +export ALLNEXUS72012=$( echo "All Nexus 7 (2012) Tablets" ) +export WIFINEXUS72013=$( echo "Wifi Nexus 7 (2013) Tablet" ) +export LTENEXUS72013=$( echo "LTE Nexus 7 (2013) Tablet" ) +export ALLNEXUS72013=$( echo "All Nexus 7 (2013) Tablets" ) +export ALLNEXUS7=$( echo "All Nexus 7 Tablets" ) +export NEXUS10=$( echo "Wifi Nexus 10" ) +export WIFIXOOM=$( echo "Wifi Xoom Tablet" ) +export VZWXOOM=$( echo "Verizon Xoom Tablet" ) +export ALLXOOM=$( echo "All Xoom Tablets" ) +export ALLNEXUS=$( echo "All Nexus Devices" ) + ## Scriptmakir export SCRIPTMAKIRREDEEMER=$( echo "Redeemer is running!" ) export SCRIPTMAKIRRMKITCHEN=$( echo "Removing Kitchen" ) @@ -162,7 +216,7 @@ export ENVIRONMENTSETUPDEBIAN=$( echo "You are running Debian!" ) export ENVIRONMENTSETUPULMN=$( echo "You are running Ubuntu, either 10.04, 10.10, or 11.04!" ) export ENVIRONMENTSETUPUO=$( echo "You are running Ubuntu 11.10!" ) export ENVIRONMENTSETUPUPQ=$( echo "You are running Ubuntu 12.04 or 12.10!" ) -export ENVIRONMENTSETUPURS=$( echo "You are running Ubuntu 13.04 or 13.10!" ) +export ENVIRONMENTSETUPURST=$( echo "You are running Ubuntu 13.04, 13.10, or 14.04!" ) export ENVIRONMENTSETUPMINT=$( echo "You are running Linux Mint!" ) export ENVIRONMENTSETUPARCH=$( echo "You are running Arch Linux!" ) export ENVIRONMENTSETUPDARWIN=$( echo "You are running Mac OS X!" ) @@ -180,3 +234,188 @@ export PREUPDATEAOSP=$( echo "Updating $REPOSAOSP's local_manifests folder" ) export PREUPDATECM10=$( echo "Updating $REPOSCM10's local_manifests folder" ) export PREUPDATECM=$( echo "Updating $REPOSCM's local_manifests folder" ) export PREUPDATEOMNI=$( echo "Updating $REPOSOMNI's local_manifests folder" ) + +## Configkitchen +export CONFIGKITCHENMENUTITLE=$( echo "Kitchen Config Menu" ) +export CONFIGKITCHENMENU1=$( echo "Edit Gitpuller" ) +export CONFIGKITCHENMENU2=$( echo "Edit Romeditor" ) +export CONFIGKITCHENMENU3=$( echo "Create/Edit other repo list" ) +export CONFIGKITCHENOTHERREPO=$( echo "editing custom repos file location" ) +export CONFIGKITCHENOTHERREPONAME=$( echo "editing custom repos name" ) + +## Fixkitchen +export FIXKITCHENSOMETHINGNOT=$( echo "Something is not working right? What should we do?" ) +export FIXKITCHENPURGE=$( echo "Purge = remove files, download from origin" ) +export FIXKITCHENDELETE=$( echo "Delete = delete it!" ) +export FIXKITCHENMENU1=$( echo "Add a repo to a certain local_manifests folder" ) +export FIXKITCHENMENU2=$( echo "Purge a certain local_manifests folder" ) +export FIXKITCHENMENU3=$( echo "Purge or Delete a certain repository" ) +export FIXKITCHENMENU4=$( echo "Purge or Delete all the repositories" ) +export FIXKITCHENMENU5=$( echo "Purge or Delete the Kitchen app" ) +export FIXKITCHENMENU6=$( echo "Delete the Kitchen app, and its dependencies" ) +export FIXKITCHENMENU7=$( echo "Delete the contents of your computer" ) +export FIXKITCHENMENU8=$( echo "Delete the entire internet" ) +export FIXKITCHENADD=$( echo "Adding repo to otherdevices.xml for" ) +export FIXKITCHENPURGE=$( echo "local_manifests folder was purged" ) +export FIXKITCHENWHICHADD=$( echo "Which repo would you like to add to?" ) +export FIXKITCHENWHICHPURGE=$( echo "Which repo would you like to purge its local_manifests folder?" ) +export FIXKITCHENWHICHREPO=$( echo "Which repo would you like to purge or delete?" ) +export FIXKITCHENPURGEDELETE=$( echo "Purge or Delete?" ) +export FIXKITCHENPURGEDELETEEXIT=$( echo "Purge = remove files, download from origin +Delete = delete it! +type exit to go to back" ) +export FIXKITCHENPURGEDELETEREPO=$( echo "Purge or Delete all of the repositories?" ) +export FIXKITCHENPURGEDELETEKITCHEN=$( echo "Purge or Delete the Kitchen app?" ) +export FIXKITCHENREDEEMER=$( echo "Switching to Redeemer script.." ) +export FIXKITCHENDELETEKITCHEN=$( echo "Are you sure you want to remove the Kitchen app?" ) +export FIXKITCHENTYPEYES=$( echo "You must type in \"yes\" to continue" ) +export FIXKITCHENTYPEABORT=$( echo "Type in anything else to abort operation" ) +export FIXKITCHENDESTROYERSWITCH=$( echo "Switching to Destroyer script" ) +export FIXKITCHENDELETEKITCHENALL=$( echo "Are you sure you want to remove the Kitchen app and its dependencies?" ) +export FIXKITCHENNOTDELETEBUILDS=$( echo "Please note: the builds directory will not be deleted" ) +export FIXKITCHENDESTROYEROFWORLDSSWITCH=$( echo "Switching to Destroyer of Worlds script" ) +export FIXKITCHENDELETECOMPUTER=$( echo "Are you sure..? this will delete everything on your computer, including mounted external drives and flash drives!!" ) +export SUICIDENOTE=$( echo "yes, please delete everything off of my computer" ) +export FIXKITCHENMUSTTYPEEXACTLY=$( echo "You must type in exactly \"$SUICIDENOTE\" to continue" ) +export FIXKITCHENTYPEPASSY=$( echo "Please type in your password to destroy everything" ) +export TROLLFACETITLE=$( echo "Trollface's Android Kitchen!" ) +export TROLLFACEUNDERLINE=$( echo "============================" ) +export FIXKITCHENIBET=$( echo "Oh man, I bet you wish it was that easy!" ) + +## Build Common +export BUILDMENUTITLE=$( echo "Today's Lunch Menu:" ) +export BUILDREPOMENU1=$( echo "$REPOSAOKP repository" ) +export BUILDREPOMENU2=$( echo "$REPOSAOSP43 repository" ) +export BUILDREPOMENU3=$( echo "$REPOSAOSP repository" ) +export BUILDREPOMENU4=$( echo "$REPOSCARBON repository" ) +export BUILDREPOMENU5=$( echo "$REPOSCM10 repository" ) +export BUILDREPOMENU6=$( echo "$REPOSCM repository" ) +export BUILDREPOMENU7=$( echo "$REPOSEV repository" ) +export BUILDREPOMENU8=$( echo "$REPOSOMNI repository" ) +export BUILDREPOMENU9=$( echo "$REPOSPACMAN repository" ) +export BUILDREPOMENU10=$( echo "$REPOSPARA repository" ) +export BUILDALLABOVE=$( echo "Build all above!" ) +export BUILDREPONOTSETUP=$( echo "The selected android repository is not setup!" ) +export BUILDDEVICENOTCOMPATIBLE=$( echo "This device is not compatible with this repository, try again!" ) +export BUILDMENURETURN=$( echo "Returning to Build Menu, Press Enter to continue: " ) + +## Buildmenu +export BUILDMENU1=$( echo "Build Nexus 4" ) +export BUILDMENU2=$( echo "Build Nexus 5" ) +export BUILDMENU3=$( echo "Build Nexus 7" ) +export BUILDMENU4=$( echo "Build Nexus 10" ) +export BUILDMENU5=$( echo "Build Galaxy Nexus" ) +export BUILDMENU6=$( echo "Build Nexus S" ) +export BUILDMENU7=$( echo "Build Xoom Tablet" ) +export BUILDMENU8=$( echo "Build all above!" ) +export BUILDMENU9=$( echo "Build other device" ) +export BUILDMENU10=$( echo "Build with other repository" ) + +## Builddevice +export BUILDDEVICEBEBUILT=$( echo "is selected to be built!" ) +export BUILDDEVICEWHICHREPO=$( echo "Which android repository are we building from today?" ) +export BUILDDEVICENEXUS4=$( echo "Build $NEXUS4" ) +export BUILDDEVICENEXUS5=$( echo "Build $NEXUS5" ) +export BUILDDEVICEGSMGNEXUS=$( echo "Build $GSMGNEXUS" ) +export BUILDDEVICESPRGNEXUS=$( echo "Build $SPRGNEXUS" ) +export BUILDDEVICEVZWGNEXUS=$( echo "Build $VZWGNEXUS" ) +export BUILDDEVICEGSMNEXUSS=$( echo "Build $GSMNEXUSS" ) +export BUILDDEVICESPRNEXUSS=$( echo "Build $SPRNEXUSS" ) +export BUILDDEVICEWIFINEXUS72012=$( echo "Build $WIFINEXUS72012" ) +export BUILDDEVICEGSMNEXUS72012=$( echo "Build $GSMNEXUS72012" ) +export BUILDDEVICEALLNEXUS72012=$( echo "Build $ALLNEXUS72012" ) +export BUILDDEVICEWIFINEXUS72013=$( echo "Build $WIFINEXUS72013" ) +export BUILDDEVICELTENEXUS72013=$( echo "Build $LTENEXUS72013" ) +export BUILDDEVICEALLNEXUS72013=$( echo "Build $ALLNEXUS72013" ) +export BUILDDEVICENEXUS10=$( echo "Build $NEXUS10" ) +export BUILDDEVICEWIFIXOOM=$( echo "Build $WIFIXOOM" ) +export BUILDDEVICEVZWXOOM=$( echo "Build $VZWXOOM" ) + +## Buildother +export BUILDOTHERBEBUILT=$( echo "Build other device is selected to be built!" ) +export BUILDOTHERTYPEDEVICE=$( echo "Please type in which device you would like to build" ) +export BUILDOTHERTYPELIST=$( echo "Type in list to see all supported devices" ) +export BUILDOTHERTYPEEXIT=$( echo "Type in exit to go back" ) +export BUILDOTHERBUILDTITLE=$( echo "Device List" ) +export BUILDOTHERBUILDUNDERLINE=$( echo "===========" ) +export BUILDOTHERNOTCOMPATIBLE=$( echo "This device is not compatible with this repository, build anyways?" ) +export BUILDOTHERCONTINUE=$( echo "Continuing the build" ) +export BUILDOTHERNOTVALID=$( echo "Not a vaild answer, not going to build" ) + +## Buildotherrepo +export BUILDOTHERREPOEMPTY=$( echo "other repo file is empty, please add to file then try again!" ) +export BUILDOTHERREPOBEBUILT=$( echo "Build with other repository is selected to be built!" ) + +## Buildandro +export BUILDANDROCLEAN=$( echo "Clean out folder?" ) +export BUILDANDROCLEANENTER=$( echo "Did you just hit enter without a care? for that im just gonna clean the folder anyways.." ) +export BUILDANDROCCACHECONTINUEWITHOUT=$( echo "Continuing without ccache use; if you want to use ccache, please set it up" ) +export BUILDANDROCCACHEFOUND=$( echo "Found ccache folder, will use for build" ) +export BUILDANDROCCACHEDIDNOTDETECT=$( echo "The kitchen did not detect the ccache folder, did you want to make one now?" ) +export BUILDANDROCCACHEOTHER=$( echo "If ccache is located at another location type in other" ) +export BUILDANDROCCACHEHOWBIG=$( echo "How big do you want the maximum size of ccache? suggested size is 50 - 100 gigabytes" ) +export BUILDANDROCCACHEAMOUNTTYPED=$( echo "Keep in mind the amount typed is in gigabytes" ) +export BUILDANDROCCACHEREPONOTSUPPORTED=$( echo "Repository does not support ccache, continuing without it" ) +export BUILDANDROCCACHEEXACTLOCATION=$( echo "Where is the exact location of ccache? Example of where default location is is ~/.ccache" ) +export BUILDANDROCCACHENOTFOUND=$( echo "Location specified was not found, continuing without it" ) +export BUILDANDROREPONOTSUPPORTED=$( echo "Repository not supported!" ) +export BUILDANDROBUILDMESSEDUP=$( echo "Build messed up!" ) +export BUILDANDROMAKETEMP1=$( echo "Making temporary folder for post-building" ) +export BUILDANDROMAKETEMP2=$( echo "fixes" ) +export BUILDANDROUNZIP=$( echo "Unzipping" ) +export BUILDANDRORMSTUFF=$( echo "Removing uneeded recovery folder and file_contexts from" ) +export BUILDANDROADDROM1=$( echo "Adding rom manager items to" ) +export BUILDANDROADDROM2=$( echo "'s build.prop" ) +export BUILDANDROZIP=$( echo "Zipping" ) +export BUILDANDROSIGN1=$( echo "Signing" ) +export BUILDANDROSIGN2=$( echo "with test keys" ) +export BUILDANDROMOVEOLD1=$( echo "Moving older build to" ) +export BUILDANDROMOVEOLD2=$( echo "/old" ) +export BUILDANDROCOPY=$( echo "Copying to" ) +export BUILDANDROCLEANUP=$( echo "Cleaning up temporary folder" ) + +## Buildautomenu +export BUILDAUTOMENUTITLE=$( echo "Auto Builder Menu" ) +export BUILDAUTOMENU1=$( echo "Run Auto Builder" ) +export BUILDAUTOMENU2=$( echo "Add to auto build list" ) +export BUILDAUTOMENU3=$( echo "Clear auto build list" ) +export BUILDAUTOMENU4=$( echo "Toggle Auto Builder's output" ) +export BUILDAUTOMENU5=$( echo "Toggle Auto Builder's build other repo" ) +export BUILDAUTOMENU6=$( echo "Toggle Auto Builder's sleep function" ) +export BUILDAUTOMENUSETAUTO=$( echo "Which android repository are we setting for auto build?" ) +export BUILDAUTOMENUMOVEON=$( echo "Finished with adding repos, move on to adding devices" ) +export BUILDAUTOMENUADD1=$( echo "Added" ) +export BUILDAUTOMENUADD2=$( echo "to auto build files" ) +export BUILDAUTOMENUTYPEDEVICE=$( echo "Please type in Which android device are we setting for auto build" ) +export BUILDAUTOMENUWANTTOCLEAR=$( echo "Are you sure you want to clear auto build files?" ) +export BUILDAUTOMENUCLEARED=$( echo "Auto build files cleared" ) +export BUILDAUTOMENUNOTCLEARED=$( echo "Auto build files left untouched" ) +export BUILDAUTOMENUOUTPUT=$( echo "This will output buildauto into swordkitchen script folder" ) +export BUILDAUTOMENUSOMEWHERE=$( echo "Unless you want it to be somewhere else?" ) +export BUILDAUTOMENUTYPEOUTPUT=$( echo "Type yes to output somewhere else:" ) +export BUILDAUTOMENUTYPEABSOLUTE=$( echo "Please type the absolute path of where u want the buildoutput.txt to be" ) +export BUILDAUTOMENUOUTPUTSENT=$( echo "Output will be sent to" ) +export BUILDAUTOMENUOUTPUTCLEAR=$( echo "Output file cleared, buildauto will now output regularly" ) +export BUILDAUTOMENUADDBELOWREPO=$( echo "Add below this line the repo folder you want to auto build, otherrepo are in the otherrepo folder, list each repo per line" ) +export BUILDAUTOMENUADDBELOWDEVICE=$( echo "Add below this line the device codename you want to auto build, list each device per line" ) +export BUILDAUTOMENUOTHERREPOON=$( echo "Auto Builder's build other repo is now on!" ) +export BUILDAUTOMENUOTHERREPOOFF=$( echo "Auto Builder's build other repo is now off!" ) +export BUILDAUTOMENUCOMPSLEEPTIME1=$( echo "Do you want the computer to sleep for a" ) +export BUILDAUTOMENUCOMPSLEEPTIME2=$( echo "certain amount of hours or wake up at a certain time?" ) +export BUILDAUTOMENUSLEEPMENU1=$( echo "Wake up at a certain time" ) +export BUILDAUTOMENUSLEEPMENU2=$( echo "Certain amount of hours" ) +export BUILDAUTOMENUSPECIFIC1=$( echo "What time do you want the build server to wake up at the next day?" ) +export BUILDAUTOMENUSPECIFIC2=$( echo "24 hours configuration, Example: for 2pm put 14:00, for 7am put 07:00" ) +export BUILDAUTOMENUHOURS1=$( echo "How long would you like for the build server to sleep after building?" ) +export BUILDAUTOMENUHOURS2=$( echo "The number being inputted is in hours" ) +export BUILDAUTOMENUTYPEPASSY=$( echo "Please type in your user's password, so the build server can sleep" ) +export BUILDAUTOMENUSLEEPON=$( echo "Auto Builder's sleep function is now on!" ) +export BUILDAUTOMENUSLEEPOFF=$( echo "Auto Builder's sleep function is now off!" ) + +## Buildauto +export BUILDAUTOPLEASE=( echo "Please use the Auto Builder config menu" ) +export BUILDAUTOBOTH=( echo "Both Auto Builder's repository and device is not set!" ) +export BUILDAUTOREPO=( echo "Auto Builder's repository is not set!" ) +export BUILDAUTODEVICE=( echo "Auto Builder's device is not set!" ) +export BUILDAUTOWAIT=( echo "Waiting for ten minutes! this is not a countdown.." ) +export BUILDAUTOSLEEP=( echo "Sleep..." ) diff --git a/translation/chubmackerel b/translation/chubmackerel new file mode 100755 index 0000000..90897cd --- /dev/null +++ b/translation/chubmackerel @@ -0,0 +1,419 @@ +#!/bin/bash +# Copyright (C) 2014 Sean Donovan + +# Licensed under the Apache License, Version 2.0 (the "License"); +# you may not use this file except in compliance with the License. +# You may obtain a copy of the License at + +# http://www.apache.org/licenses/LICENSE-2.0 + +# Unless required by applicable law or agreed to in writing, software +# distributed under the License is distributed on an "AS IS" BASIS, +# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +# See the License for the specific language governing permissions and +# limitations under the License. + +# Dutch + +## Common +export KITCHENTITLE=$( echo "Swordrune10's Android Kitchen!" ) +export KITCHENUNDERLINE=$( echo "==============================" ) +export MENUGOBACK=$( echo "Ga terug" ) +export NOTPROPERSELECTION=$( echo "Je hebt geen geldige selectie gemaakt, probeer opnieuw!" ) +export ENTERTOCONTINUE=$( echo "Druk op Enter om door te gaan: " ) +export MAINMENURETURN=$( echo "Gaat terug naar hoofd menu, druk op Enter om door te gaan: " ) +export ABORTMESSAGE=$( echo "Afbreken.." ) +export COMPLETEDMESSAGE=$( echo "Klaar!" ) +export QUESTIONYESNO=$( echo "ja/nee? " ) +export ANSWERYES=$( echo "ja" ) +export ANSWERY=$( echo "j" ) +export ANSWERNO=$( echo "nee" ) +export ANSWERN=$( echo "n" ) + +## Macosxinit +export MACOSXINITRUN=$( echo "U draait Mac OS X!" ) +export MACOSXINITCANTFINDDMG=$( echo "We kunnen de android image om te mounten niet vinden, Dit is nodig om te bouwen op mac os x +Als je er al n hebt gemaakt zet het dan op de juiste plaats met de juiste benaming +Zijn juiste plaats en benaming is in uw home map genaamd android.dmg, voorbeeld is ~/android.dmg + +Wil je een nieuwe android.dmg maken?" ) +export MACOSXINITHOWBIG=$( echo "Hoe groot wil je android.dmg maken? Houd in gedachten dat het zijn volume zal vergroten als je meer plaats nodig hebt +Type een nummer in gigabytes" ) +export MACOSXINITMOUNTNEW=$( echo "Mounten van nieuw android.dmg in /Volumes/android.." ) +export MACOSXINITMOVEINTO=$( echo "Verhuizen naar android.dmg.." ) +export MACOSXINITSETUP=$( echo "Opzetten van keuken.." ) +export MACOSXINITSETUP=$( echo "Opzetten van keuken.." ) +export MACOSXINITFOUNDDMG=$( echo "Uw android.dmg is gevonden, mounten.." ) +export MACOSXINITCANTFINDKITCHEN=$( echo "We kunnen de rom kitchen niet vinden in /Volumes/android + +Zou je de rom kitchen willen installeren in /Volumes/android?" ) + +## Errors +export ERRORHEADER=$( echo "Er heeft zich een fout voorgedaan! +======================" ) +export ERRORSIDEEFFECTS=$( echo "Neveneffecten kunnen onmogelijkheid zijn om goed te bouwen en gebrek aan ondersteuning +Voor de bouw-omgeving set-up" ) +export ERRORCONTACTINFO=$( echo "Als u dit foutief ziet, laat het me dan weten op xda of rootzwiki +Als je liever een mailtje stuurt kan je me bereiken op mishana@swordrune10.net +Als je ook geneigd bent, ik heb een freenode kanaal #Swordrune10Kitchen" ) +export BOUNCERPOWERPC=$( echo "PowerPC processor gedetecteerd! +=========================== +Draaien van powerpc is niet echt verboden, maar het is niet aangeraden" ) +export BOUNCER32BIT=$( echo "32-bit processor gedetecteerd! +========================== +Draaien van 32-bit is niet echt verboden, maar het is niet aangeraden" ) +export BOUNCERKITCHENHOME=$( echo "Keuken is niet ingesteld op de juiste plaats! +================================= +De keuken zal niet correct werken als hij in de home map geplaatst is, verplaats alstublieft" ) +export ENVIRONMENTSETUP32BIT=$( echo "32-bit niet ondersteund! +===================== +Bouw omgeving installatie ondersteund enkel 64-bit systemen" ) +export ENVIRONMENTSETUPNOTSUPPORTED=$( echo "Besturingssysteem niet ondersteund! +=============================== +Ondersteunde besturingssystemen(enkel 64-bit): +Ubuntu 10.04 - 14.04 (Volledige ondersteuning) +Debian (Algemene ondersteuning) +Linux Mint (Algemene ondersteuning) +Arch Linux (Algemene ondersteuning) +Fedora (Algemene ondersteuning) +Mac OS X (Half-Algemene ondersteuning)" ) + +## Repos +export REPOSKITCHEN=$( echo "Kitchen app" ) +export REPOSAOKP=$( echo "Android Open Kang Project" ) +export REPOSAOSP43=$( echo "Android Open Source Project 4.3" ) +export REPOSAOSP=$( echo "Android Open Source Project 4.4" ) +export REPOSCARBON=$( echo "Carbon" ) +export REPOSCM10=$( echo "Cyanogenmod 10.2" ) +export REPOSCM=$( echo "Cyanogenmod 11" ) +export REPOSEV=$( echo "Evervolv" ) +export REPOSOMNI=$( echo "omnirom" ) +export REPOSPACMAN=$( echo "PAC-man" ) +export REPOSPARA=$( echo "ParanoidAndroid" ) + +## Devices +export NEXUS4=$( echo "GSM Nexus 4" ) +export NEXUS5=$( echo "LTE Nexus 5" ) +export GSMGNEXUS=$( echo "GSM Galaxy Nexus" ) +export SPRGNEXUS=$( echo "Sprint Galaxy Nexus" ) +export VZWGNEXUS=$( echo "Verizon Galaxy Nexus" ) +export ALLGNEXUS=$( echo "Alle Galaxy Nexi" ) +export GSMNEXUSS=$( echo "GSM Nexus S" ) +export SPRNEXUSS=$( echo "Sprint Nexus S 4G" ) +export ALLNEXUSS=$( echo "Alle Nexus S'" ) +export WIFINEXUS72012=$( echo "Wifi Nexus 7 (2012) Tablet" ) +export GSMNEXUS72012=$( echo "GSM Nexus 7 (2012) Tablet" ) +export ALLNEXUS72012=$( echo "Alle Nexus 7 (2012) Tablets" ) +export WIFINEXUS72013=$( echo "Wifi Nexus 7 (2013) Tablet" ) +export LTENEXUS72013=$( echo "LTE Nexus 7 (2013) Tablet" ) +export ALLNEXUS72013=$( echo "Alle Nexus 7 (2013) Tablets" ) +export ALLNEXUS7=$( echo "Alle Nexus 7 Tablets" ) +export NEXUS10=$( echo "Wifi Nexus 10" ) +export WIFIXOOM=$( echo "Wifi Xoom Tablet" ) +export VZWXOOM=$( echo "Verizon Xoom Tablet" ) +export ALLXOOM=$( echo "Alle Xoom Tablets" ) +export ALLNEXUS=$( echo "Alle Nexus Devices" ) + +## Scriptmakir +export SCRIPTMAKIRREDEEMER=$( echo "Verlosser loopt!" ) +export SCRIPTMAKIRRMKITCHEN=$( echo "Verwijderen vanKitchen" ) +export SCRIPTMAKIRSETUPKITCHEN=$( echo "Opzetten van Kitchen" ) +export SCRIPTMAKIRDESTROYER=$( echo "Vernietiger loopt!" ) +export SCRIPTMAKIRDESTROYEROFWORLDS=$( echo "Vernietiger van werelden loopt!" ) +export SCRIPTMAKIRRMREPO=$( echo "Verwijderen van Repository map" ) + +## Kitchen +export KITCHENMAINMENU=$( echo "Hoofd Menu:" ) +export KITCHENMENU1=$( echo "Set-up/Up-date Kitchen" ) +export KITCHENMENU2=$( echo "Configureren van Kitchen" ) +export KITCHENMENU3=$( echo "Start Kitchen" ) +export KITCHENMENU4=$( echo "Herstel Kitchen" ) +export KITCHENMENU5=$( echo "Auto Bouw Kitchen" ) +export KITCHENMENU6=$( echo "Exit" ) +export KITCHENMENUWHICH=$( echo "Welke zou je willen doen?" ) +export KITCHENTHANKS=$( echo "Bedankt voor het gebruiken van Swordrune10's Kitchen! Tot ziens.." ) +export KITCHENBORED=$( echo "Je lijkt verveeld.. wil je een filmpje kijken?" ) +export KITCHENTOUGH=$( echo "jammer!" ) + +## Reposync +# Usage and Flags +export REPOSYNCUSAGE=$( echo "repo -- programma voor het initialiseren/updaten van android repos" ) +export REPOSYNCFLAGD=$( echo "verwijder de gepaste map en verlaat het programma" ) +export REPOSYNCFLAGH=$( echo "toon deze help tekst" ) +export REPOSYNCFLAGP=$( echo "map leegmaken, herstarten, en dan updaten" ) +export REPOSYNCFLAGU=$( echo "update deze particuliere repo" ) +export REPOSYNCUPDATE1=$( echo "Update $REPOSKITCHEN" ) +export REPOSYNCUPDATE2=$( echo "Update $REPOSAOKP" ) +export REPOSYNCUPDATE3=$( echo "Update $REPOSAOSP43" ) +export REPOSYNCUPDATE4=$( echo "Update $REPOSAOSP" ) +export REPOSYNCUPDATE5=$( echo "Update $REPOSCARBON" ) +export REPOSYNCUPDATE6=$( echo "Update $REPOSCM10" ) +export REPOSYNCUPDATE7=$( echo "Update $REPOSCM" ) +export REPOSYNCUPDATE8=$( echo "Update $REPOSEV" ) +export REPOSYNCUPDATE9=$( echo "Update $REPOSOMNI" ) +export REPOSYNCUPDATE10=$( echo "Update $REPOSPACMAN" ) +export REPOSYNCUPDATE11=$( echo "Update $REPOSPARA" ) +export REPOSYNCUPDATE12=$( echo "Update all available repos" ) +export REPOSYNCUPDATE13=$( echo "Update all the repos" ) +export REPOSYNCUSAGEEXAMP=$( echo "Voorbeeld: reposync -u cm-10.2" ) +export REPOSYNCUSAGELIST1=$( echo "typen van \"reposync -u list\" zal" ) +export REPOSYNCUSAGELIST2=$( echo "je de opties lijst opnieuw geven" ) + +# Menu +export REPOSYNCMENUWHAT=$( echo "Wat zijn we aan het updaten?" ) +export REPOSYNCMENUINIT=$( echo "Als repo niet is genitialiseerd, zal het op update zijn" ) +export REPOSYNCMENU1=$( echo "Installeer de repo commando" ) +export REPOSYNCMENU2=$( echo "Instellen van de bouw omgeving" ) +export REPOSYNCMENU3=$( echo "Updaten van $REPOSKITCHEN repository" ) +export REPOSYNCMENU4=$( echo "Updaten van $REPOSAOKP repository" ) +export REPOSYNCMENU5=$( echo "Updaten van $REPOSAOSP43 repository" ) +export REPOSYNCMENU6=$( echo "Updaten van $REPOSAOSP repository" ) +export REPOSYNCMENU7=$( echo "Updaten van $REPOSCARBON repository" ) +export REPOSYNCMENU8=$( echo "Updaten van $REPOSCM10 repository" ) +export REPOSYNCMENU9=$( echo "Updaten van $REPOSCM repository" ) +export REPOSYNCMENU10=$( echo "Updaten van $REPOSEV repository" ) +export REPOSYNCMENU11=$( echo "Updaten van $REPOSOMNI repository" ) +export REPOSYNCMENU12=$( echo "Updaten van $REPOSPACMAN repository" ) +export REPOSYNCMENU13=$( echo "Updaten van $REPOSPARA repository" ) +export REPOSYNCMENU14=$( echo "Updaten van available repositories" ) +export REPOSYNCMENU15=$( echo "Update alle repos!" ) +export REPOSYNCMENU16=$( echo "Update/toevoegen andere repo" ) + +# Sync and Init +export REPOSYNCNOTINITSKIP=$( echo "niet genitialiseerd, overslaan" ) +export REPOSYNCUPDATING=$( echo "Aan het updaten" ) +export REPOSYNCBLAHSMANIFEST=$( echo "'s manifest" ) +export REPOSYNCNOTINITYET=$( echo "niet genitialiseerd, nu initialiserende" ) +export REPOSYNCNOTINITWANTTO=$( echo "niet genitialiseerd, wil je het nu initialiseren?" ) +export REPOSYNCINIT=$( echo "initialiserende" ) +export REPOSYNCNOTINIT=$( echo "ward niet genitialiseerd" ) +export REPOSYNCREPO=$( echo "repository" ) +export REPOSYNCREPOALREADY=$( echo "repo commando is reeds genstalleerd" ) +export REPOSYNCREPOINSTALL=$( echo "Installeren van het repo commando" ) +export REPOSYNCCOMPLETE=$( echo "Update Compleet!" ) + +# Otherrepo Sync and Init +export REPOSYNCADDOR=$( echo "Zijn we andere repo aan het updaten of toevoegen?" ) +export REPOSYNCOTHERMENU1=$( echo "Voeg toe aan aangepaste repo map" ) +export REPOSYNCOTHERMENU2=$( echo "Update alle aangepaste repos" ) +export REPOSYNCOTHERREPONAME=$( echo "Wat is de repo's naam?" ) +export REPOSYNCOTHERREPOSHORTNAME=$( echo "Wat is een korte naam voor deze repo? Voorbeeld: Android Open Source Project = aosp" ) +export REPOSYNCOTHERREPOURL=$( echo "Wat is de url naar de repo's manifest?" ) +export REPOSYNCOTHERREPOBRANCH=$( echo "Wat is de branch in de repo's manifest die je wil gebruiken?" ) + +## Environmentsetup +export ENVIRONMENTSETUPINIT=$( echo "Initialiseren van de bouw omgeving" ) +export ENVIRONMENTSETUPOS=$( echo "Controleren welk besturingssysteem je draait..." ) +export ENVIRONMENTSETUPINSTALL=$( echo "Installeren van benodigde paketten, geef alstublieft uw paswoord in" ) +export ENVIRONMENTSETUPDXCODE=$( echo "Is Xcode genstalleerd? We raden versie 3.1.4 aan of nieuwer" ) +export ENVIRONMENTSETUPDMACPORTS=$( echo "Is MacPorts genstalleerd?" ) + +# Platform +export ENVIRONMENTSETUPFEDORA=$( echo "Je draait Fedora of RedHat!" ) +export ENVIRONMENTSETUPDEBIAN=$( echo "Je draait Debian!" ) +export ENVIRONMENTSETUPULMN=$( echo "Je draait Ubuntu, ofwel 10.04, 10.10, or 11.04!" ) +export ENVIRONMENTSETUPUO=$( echo "Je draait Ubuntu 11.10!" ) +export ENVIRONMENTSETUPUPQ=$( echo "Je draait Ubuntu 12.04 or 12.10!" ) +export ENVIRONMENTSETUPURST=$( echo "Je draait Ubuntu 13.04, 13.10, or 14.04!" ) +export ENVIRONMENTSETUPMINT=$( echo "Je draait Linux Mint!" ) +export ENVIRONMENTSETUPARCH=$( echo "Je draait Arch Linux!" ) +export ENVIRONMENTSETUPDARWIN=$( echo "Je draait Mac OS X!" ) + +# Java +export ENVIRONMENTSETUPFLEXION=$( echo "Java installeren zal een tijdje duren, om dit legaal te doen zal de Kitchen delen gebruiken van flexion.org oab-java script" ) +export ENVIRONMENTSETUPFLEXION1=$( echo " [x] Ophalen Java SE download page" ) +export ENVIRONMENTSETUPFLEXION2=$( echo " [x] Ophalen huidige release download page" ) +export ENVIRONMENTSETUPFLEXION3=$( echo " [x] Ophalen vorige releases download page" ) +export ENVIRONMENTSETUPWEBUPD8=$( echo "Java installeren zal een tijdje duren, om dit legaal te doen zal de Kitchen webupd8's java installer gebruiken" ) + +## Preupdate +export PREUPDATEAOSP43=$( echo "Updaten $REPOSAOSP43's local_manifests map" ) +export PREUPDATEAOSP=$( echo "Updaten $REPOSAOSP's local_manifests map" ) +export PREUPDATECM10=$( echo "Updaten $REPOSCM10's local_manifests map" ) +export PREUPDATECM=$( echo "Updaten $REPOSCM's local_manifests map" ) +export PREUPDATEOMNI=$( echo "Updaten $REPOSOMNI's local_manifests map" ) + +## Configkitchen +export CONFIGKITCHENMENUTITLE=$( echo "Kitchen Configuratie Menu" ) +export CONFIGKITCHENMENU1=$( echo "Bewerk Gitpuller" ) +export CONFIGKITCHENMENU2=$( echo "Bewerk Romeditor" ) +export CONFIGKITCHENMENU3=$( echo "Creer/Bewerk andere repo lijst" ) +export CONFIGKITCHENOTHERREPO=$( echo "Bewerk aangepaste repos bestandslocatie" ) +export CONFIGKITCHENOTHERREPONAME=$( echo "Bewerken aangepaste repo's naam" ) + +## Fixkitchen +export FIXKITCHENSOMETHINGNOT=$( echo "Er is iets dat niet juist werkt? Wat zullen we doen?" ) +export FIXKITCHENPURGE=$( echo "Purge = verwijder bestanden, download van origineel" ) +export FIXKITCHENDELETE=$( echo "Delete = verwijder het!" ) +export FIXKITCHENMENU1=$( echo "Voeg een repo toe aan een bepaalde local_manifests map" ) +export FIXKITCHENMENU2=$( echo "Zuiver een bepaalde local_manifests map" ) +export FIXKITCHENMENU3=$( echo "Zuiver of Verwijder een bepaalde repository" ) +export FIXKITCHENMENU4=$( echo "Zuiver of Verwijder al de repositories" ) +export FIXKITCHENMENU5=$( echo "Zuiver of Verwijder de Kitchen app" ) +export FIXKITCHENMENU6=$( echo "Verwijder de Kitchen app, en zijn afhankelijkheden" ) +export FIXKITCHENMENU7=$( echo "Verwijder de inhoud van uw computer" ) +export FIXKITCHENMENU8=$( echo "Verwijder het gehele internet" ) +export FIXKITCHENADD=$( echo "Toevoegen van repo aan otherdevices.xml voor" ) +export FIXKITCHENPURGE=$( echo "local_manifests map werdt gezuiverd" ) +export FIXKITCHENWHICHADD=$( echo "Aan welke repo zou je willen toevoegen?" ) +export FIXKITCHENWHICHPURGE=$( echo "Van welke repo zou je de local_manifests map willen zuiveren?" ) +export FIXKITCHENWHICHREPO=$( echo "Welke repo zou je willen zuiveren of verwijderen?" ) +export FIXKITCHENPURGEDELETE=$( echo "Zuiveren of Verwijderen?" ) +export FIXKITCHENPURGEDELETEEXIT=$( echo "Zuiveren = bestanden verwijderen, downloaden van origineel +Verwijderen = Verwijder het! +type exit om terug te keren" ) +export FIXKITCHENPURGEDELETEREPO=$( echo "Zuiver of Verwijder alle repositories?" ) +export FIXKITCHENPURGEDELETEKITCHEN=$( echo "Zuiver of Verwijder de Kitchen app?" ) +export FIXKITCHENREDEEMER=$( echo "Veranderen naar herstel script.." ) +export FIXKITCHENDELETEKITCHEN=$( echo "Ben je er zeker van dat je de Kitchen app wilt verwijderen?" ) +export FIXKITCHENTYPEYES=$( echo "Je moet \"ja\" intypen om door te gaan" ) +export FIXKITCHENTYPEABORT=$( echo "Type om het even wat anders om de operatie af te blazen" ) +export FIXKITCHENDESTROYERSWITCH=$( echo "Veranderen naar Vernietiger script" ) +export FIXKITCHENDELETEKITCHENALL=$( echo "Ben je er zeker van dat je de Kitchen app en zijn afhankelijkheden wilt verwijderen?" ) +export FIXKITCHENNOTDELETEBUILDS=$( echo "Opmerking: de builds mappen worden niet verwijderd" ) +export FIXKITCHENDESTROYEROFWORLDSSWITCH=$( echo "Veranderen naar Vernietiger van Werelden script" ) +export FIXKITCHENDELETECOMPUTER=$( echo "Ben je het zeker..? Dit zal alles verwijderen op je computer, inclusief gemounte externe opslag en flash drives!!" ) +export SUICIDENOTE=$( echo "Ja, verwijder alstublieft alles van mijn computer" ) +export FIXKITCHENMUSTTYPEEXACTLY=$( echo "Je moet dit exact intypen \"$SUICIDENOTE\" om door te gaan" ) +export FIXKITCHENTYPEPASSY=$( echo "Geef alstublieft jouw paswoord in om alles te vernietigen" ) +export TROLLFACETITLE=$( echo "Trollface's Android Kitchen!" ) +export TROLLFACEUNDERLINE=$( echo "============================" ) +export FIXKITCHENIBET=$( echo "Oh jongen, Ik durf te wedden dat je wou dat het zo makkelijk was!" ) + +## Build Common +export BUILDMENUTITLE=$( echo "Lunch Menu van vandaag:" ) +export BUILDREPOMENU1=$( echo "$REPOSAOKP repository" ) +export BUILDREPOMENU2=$( echo "$REPOSAOSP43 repository" ) +export BUILDREPOMENU3=$( echo "$REPOSAOSP repository" ) +export BUILDREPOMENU4=$( echo "$REPOSCARBON repository" ) +export BUILDREPOMENU5=$( echo "$REPOSCM10 repository" ) +export BUILDREPOMENU6=$( echo "$REPOSCM repository" ) +export BUILDREPOMENU7=$( echo "$REPOSEV repository" ) +export BUILDREPOMENU8=$( echo "$REPOSOMNI repository" ) +export BUILDREPOMENU9=$( echo "$REPOSPACMAN repository" ) +export BUILDREPOMENU10=$( echo "$REPOSPARA repository" ) +export BUILDALLABOVE=$( echo "Bouw alles hierboven!" ) +export BUILDREPONOTSETUP=$( echo "De geselecteerde android repository is niet ingesteld!" ) +export BUILDDEVICENOTCOMPATIBLE=$( echo "Dit toestel is niet compatibel met deze repository, probeer opnieuw!" ) +export BUILDMENURETURN=$( echo "Terugkeren naar Bouw Menu, Druk Enter om door te gaan: " ) + +## Buildmenu +export BUILDMENU1=$( echo "Bouw Nexus 4" ) +export BUILDMENU2=$( echo "Bouw Nexus 5" ) +export BUILDMENU3=$( echo "Bouw Nexus 7" ) +export BUILDMENU4=$( echo "Bouw Nexus 10" ) +export BUILDMENU5=$( echo "Bouw Galaxy Nexus" ) +export BUILDMENU6=$( echo "Bouw Nexus S" ) +export BUILDMENU7=$( echo "Bouw Xoom Tablet" ) +export BUILDMENU8=$( echo "Bouw all above!" ) +export BUILDMENU9=$( echo "Bouw other device" ) +export BUILDMENU10=$( echo "Bouw met een andere repository" ) + +## Builddevice +export BUILDDEVICEBEBUILT=$( echo "is geselecteerd om gebouwd te worden!" ) +export BUILDDEVICEWHICHREPO=$( echo "Welke android repository zullen we vandaag gebruiken om te bouwen?" ) +export BUILDDEVICENEXUS4=$( echo "Bouw $NEXUS4" ) +export BUILDDEVICENEXUS5=$( echo "Bouw $NEXUS5" ) +export BUILDDEVICEGSMGNEXUS=$( echo "Bouw $GSMGNEXUS" ) +export BUILDDEVICESPRGNEXUS=$( echo "Bouw $SPRGNEXUS" ) +export BUILDDEVICEVZWGNEXUS=$( echo "Bouw $VZWGNEXUS" ) +export BUILDDEVICEGSMNEXUSS=$( echo "Bouw $GSMNEXUSS" ) +export BUILDDEVICESPRNEXUSS=$( echo "Bouw $SPRNEXUSS" ) +export BUILDDEVICEWIFINEXUS72012=$( echo "Bouw $WIFINEXUS72012" ) +export BUILDDEVICEGSMNEXUS72012=$( echo "Bouw $GSMNEXUS72012" ) +export BUILDDEVICEALLNEXUS72012=$( echo "Bouw $ALLNEXUS72012" ) +export BUILDDEVICEWIFINEXUS72013=$( echo "Bouw $WIFINEXUS72013" ) +export BUILDDEVICELTENEXUS72013=$( echo "Bouw $LTENEXUS72013" ) +export BUILDDEVICEALLNEXUS72013=$( echo "Bouw $ALLNEXUS72013" ) +export BUILDDEVICENEXUS10=$( echo "Bouw $NEXUS10" ) +export BUILDDEVICEWIFIXOOM=$( echo "Bouw $WIFIXOOM" ) +export BUILDDEVICEVZWXOOM=$( echo "Bouw $VZWXOOM" ) + +## Buildother +export BUILDOTHERBEBUILT=$( echo "Bouw ander toestel is geselecteerd om gebouwd te worden!" ) +export BUILDOTHERTYPEDEVICE=$( echo "Type alstublieft in voor welk toestel je wil bouwen" ) +export BUILDOTHERTYPELIST=$( echo "Type in list om alle ondersteunde toestellen te zien" ) +export BUILDOTHERTYPEEXIT=$( echo "Type in exit om terug te keren" ) +export BUILDOTHERBUILDTITLE=$( echo "Apparaat Lijst" ) +export BUILDOTHERBUILDUNDERLINE=$( echo "===========" ) +export BUILDOTHERNOTCOMPATIBLE=$( echo "Dit apparaat in niet compatibel met deze repository, toch bouwen?" ) +export BUILDOTHERCONTINUE=$( echo "Doorgaan met bouwen" ) +export BUILDOTHERNOTVALID=$( echo "Geen geldig antwoord, gaat niet bouwen" ) + +## Buildotherrepo +export BUILDOTHERREPOEMPTY=$( echo "ander repo bestand is leeg, voeg alstublieft toe aan bestand en probeer opnieuw!" ) +export BUILDOTHERREPOBEBUILT=$( echo "Bouw met andere repository is geselecteerd om gebouwd te worden!" ) + +## Buildandro +export BUILDANDROCLEAN=$( echo "Map opruimen?" ) +export BUILDANDROCLEANENTER=$( echo "Heb je nu juist op enter gedrukt zonder zorgen? daarom ga ik nu de map toch opruimen.." ) +export BUILDANDROCCACHECONTINUEWITHOUT=$( echo "Doorgaan zonder ccache gebruik; als je ccache wil gebruiken, stel het dan in" ) +export BUILDANDROCCACHEFOUND=$( echo "Gevonden ccache map, zal gebruikt worden om te bouwen" ) +export BUILDANDROCCACHEDIDNOTDETECT=$( echo "De kitchen heeft de ccache map niet gedecteerd, wil je er nu een maken?" ) +export BUILDANDROCCACHEOTHER=$( echo "Als ccache gelocaliseerd is op een andere locatie type in other" ) +export BUILDANDROCCACHEHOWBIG=$( echo "Hoe groot wil je de maximum grootte van ccache? voorgestelde grootte is 50 - 100 gigabytes" ) +export BUILDANDROCCACHEAMOUNTTYPED=$( echo "Denk eraan dat het ingetypte getal in gigabytes is" ) +export BUILDANDROCCACHEREPONOTSUPPORTED=$( echo "Repository ondersteunt ccache niet, gaat door zonder" ) +export BUILDANDROCCACHEEXACTLOCATION=$( echo "Wat is de exacte locatie van ccache? Een voorbeeld van een locatie is ~/.ccache" ) +export BUILDANDROCCACHENOTFOUND=$( echo "Gespecificeerde locatie werd niet gevonden, gaat door zonder" ) +export BUILDANDROREPONOTSUPPORTED=$( echo "Repository niet ondersteund!" ) +export BUILDANDROBUILDMESSEDUP=$( echo "Bouw verknoeid!" ) +export BUILDANDROMAKETEMP1=$( echo "Tijdelijke map maken voor post-bouwen" ) +export BUILDANDROMAKETEMP2=$( echo "reparaties" ) +export BUILDANDROUNZIP=$( echo "Unzippen" ) +export BUILDANDRORMSTUFF=$( echo "Verwijderen van onnodige herstel map en bestand_contexts van" ) +export BUILDANDROADDROM1=$( echo "Toevoegen rom manager items aan" ) +export BUILDANDROADDROM2=$( echo "'s build.prop" ) +export BUILDANDROZIP=$( echo "Zippen" ) +export BUILDANDROSIGN1=$( echo "Signeren" ) +export BUILDANDROSIGN2=$( echo "met test keys" ) +export BUILDANDROMOVEOLD1=$( echo "Oudere bouw verplaatsen naar" ) +export BUILDANDROMOVEOLD2=$( echo "/oud" ) +export BUILDANDROCOPY=$( echo "Kopiren naar" ) +export BUILDANDROCLEANUP=$( echo "Opruimen van tijdelijke map" ) + +## Buildautomenu +export BUILDAUTOMENUTITLE=$( echo "Auto Bouwer Menu" ) +export BUILDAUTOMENU1=$( echo "Draai Auto Bouwer" ) +export BUILDAUTOMENU2=$( echo "Voeg toe aan auto bouw lijst" ) +export BUILDAUTOMENU3=$( echo "Wis auto bouw lijst" ) +export BUILDAUTOMENU4=$( echo "Inschakelen Auto Bouwers's output" ) +export BUILDAUTOMENU5=$( echo "Inschakelen Auto Bouwer's bouw andere repo" ) +export BUILDAUTOMENU6=$( echo "Inschakelen Auto Bouwers's slaap functie" ) +export BUILDAUTOMENUSETAUTO=$( echo "Welke android repository stellen we in voor auto bouw?" ) +export BUILDAUTOMENUMOVEON=$( echo "Klaar met toevoegen van repo's, ga door naar apparaten toevoegen" ) +export BUILDAUTOMENUADD1=$( echo "toegevoegd" ) +export BUILDAUTOMENUADD2=$( echo "aan auto bouw bestanden" ) +export BUILDAUTOMENUTYPEDEVICE=$( echo "Type alstublieft in Welk android toestel we instellen voor auto bouw" ) +export BUILDAUTOMENUWANTTOCLEAR=$( echo "Bent je er zeker van dat je auto bouw bestanden wil wissen?" ) +export BUILDAUTOMENUCLEARED=$( echo "Auto bouw bestanden gewist" ) +export BUILDAUTOMENUNOTCLEARED=$( echo "Auto bouw bestanden onveranderd gelaten" ) +export BUILDAUTOMENUOUTPUT=$( echo "Dit zal buildauto in de swordkitchen script map plaatsen" ) +export BUILDAUTOMENUSOMEWHERE=$( echo "Als je het niet ergens anders wilt?" ) +export BUILDAUTOMENUTYPEOUTPUT=$( echo "Type ja om het ergens anders te plaatsen:" ) +export BUILDAUTOMENUTYPEABSOLUTE=$( echo "Type alstublieft het exacte pad waar je de buildoutput.txt wil opslaan" ) +export BUILDAUTOMENUOUTPUTSENT=$( echo "Output word gezonden naar" ) +export BUILDAUTOMENUOUTPUTCLEAR=$( echo "Output bestand gewist, bouwauto zal nu regelmatig opslaan" ) +export BUILDAUTOMENUADDBELOWREPO=$( echo "Voeg onder deze lijn de repo map toe die je wil auto bouwen, andererepo zijn in de andererepo map, maak een lijst van en repo per lijn" ) +export BUILDAUTOMENUADDBELOWDEVICE=$( echo "Voeg onder deze lijn de codenaam toe van het apparaat waarvoor je wil auto bouwen, en apparaat per lijn" ) +export BUILDAUTOMENUOTHERREPOON=$( echo "Auto Bouwer's bouw andere repo is nu aan!" ) +export BUILDAUTOMENUOTHERREPOOFF=$( echo "Auto Bouwers's bouw andere repo is nu uit!" ) +export BUILDAUTOMENUCOMPSLEEPTIME1=$( echo "Wil je dat de computer slaapt voor" ) +export BUILDAUTOMENUCOMPSLEEPTIME2=$( echo "een bepaald aantal uren of op een bepaald tijdstip ontwaakt?" ) +export BUILDAUTOMENUSLEEPMENU1=$( echo "Ontwaken op een bepaalde tijd" ) +export BUILDAUTOMENUSLEEPMENU2=$( echo "Een bepaald aantal uren" ) +export BUILDAUTOMENUSPECIFIC1=$( echo "Welk tijdstip wil je dat de bouw server ontwaakt de volgende dag?" ) +export BUILDAUTOMENUSPECIFIC2=$( echo "24 uurs configuratie, Voorbeeld: voor 2pm zet 14:00, voor 7am zet 07:00" ) +export BUILDAUTOMENUHOURS1=$( echo "Hoe lang wil je dat de bouw server slaapt na het bouwen?" ) +export BUILDAUTOMENUHOURS2=$( echo "Het ingegeven getal is in uren" ) +export BUILDAUTOMENUTYPEPASSY=$( echo "Geef alstublieft uw gebruiker paswoord in, zodat de bouw server kan slapen" ) +export BUILDAUTOMENUSLEEPON=$( echo "Auto Bouwers's slaap functie is nu aan!" ) +export BUILDAUTOMENUSLEEPOFF=$( echo "Auto Bouwer's slaap functie is ne uit!" ) + +## Buildauto +export BUILDAUTOPLEASE=( echo "Gebruik alstublieft het auto bouwer configuratie menu" ) +export BUILDAUTOBOTH=( echo "Beide Auto Bouwer's repository en apparaat zijn niet ingesteld!" ) +export BUILDAUTOREPO=( echo "Auto Bouwer's repository is niet ingesteld!" ) +export BUILDAUTODEVICE=( echo "Auto Bouwerr's apparaat is niet ingesteld!" ) +export BUILDAUTOWAIT=( echo "Wachten voor tien minuten! dit is geen aftelling.." ) +export BUILDAUTOSLEEP=( echo "Slaap..." ) diff --git a/translation/europeanpilchard b/translation/europeanpilchard index f833918..9296dd1 100755 --- a/translation/europeanpilchard +++ b/translation/europeanpilchard @@ -32,17 +32,48 @@ export ANSWERY=$( echo "y" ) export ANSWERNO=$( echo "no" ) export ANSWERN=$( echo "n" ) +## Macosxinit +export MACOSXINITRUN=$( echo "You are running Mac OS X!" ) +export MACOSXINITCANTFINDDMG=$( echo "We can't find the android image to mount, this is needed to build on mac os x +If you already have one made please put it in its proper place with its proper title +It's proper place and title is in your home folder named android.dmg, example is ~/android.dmg + +Would you like to make a new android.dmg?" ) +export MACOSXINITHOWBIG=$( echo "How big would you like android.dmg? Keep in mind it will increase its size if u need more space +Type in number in gigabytes" ) +export MACOSXINITMOUNTNEW=$( echo "Mounting new android.dmg at /Volumes/android.." ) +export MACOSXINITMOVEINTO=$( echo "Moving into android.dmg.." ) +export MACOSXINITSETUP=$( echo "Setting up kitchen.." ) +export MACOSXINITSETUP=$( echo "Setting up kitchen.." ) +export MACOSXINITFOUNDDMG=$( echo "Found your android.dmg, mounting.." ) +export MACOSXINITCANTFINDKITCHEN=$( echo "We can't find the rom kitchen in /Volumes/android + +Would you like to make install rom kitchen in /Volumes/android?" ) + ## Errors +export ERRORHEADER=$( echo "An Error Has Occurred! +======================" ) +export ERRORSIDEEFFECTS=$( echo "Side effects may include failure to build properly and lack of support +for build environment setup" ) export ERRORCONTACTINFO=$( echo "If you see this in error, please notify me at either xda or rootzwiki If you prefer email you can reach me at mishana@swordrune10.net If your also inclined, i have a freenode channel #Swordrune10Kitchen" ) +export BOUNCERPOWERPC=$( echo "PowerPC processor detected! +=========================== +Running powerpc isn't necessarily prohibited, but it is not suggested" ) +export BOUNCER32BIT=$( echo "32-bit processor detected! +========================== +Running 32-bit isn't necessarily prohibited, but it is not suggested" ) +export BOUNCERKITCHENHOME=$( echo "Kitchen not set in correct place! +================================= +Kitchen will not work correctly if placed in home folder, please move" ) export ENVIRONMENTSETUP32BIT=$( echo "32-bit not supported! ===================== Build enviroment installation only supports 64-bit Operating Systems" ) export ENVIRONMENTSETUPNOTSUPPORTED=$( echo "Operating System not supported! =============================== Supported Operating Systems (only 64-bit): -Ubuntu 10.04 - 13.10 (Full Support) +Ubuntu 10.04 - 14.04 (Full Support) Debian (General Support) Linux Mint (General Support) Arch Linux (General Support) @@ -62,6 +93,29 @@ export REPOSOMNI=$( echo "omnirom" ) export REPOSPACMAN=$( echo "PAC-man" ) export REPOSPARA=$( echo "ParanoidAndroid" ) +## Devices +export NEXUS4=$( echo "GSM Nexus 4" ) +export NEXUS5=$( echo "LTE Nexus 5" ) +export GSMGNEXUS=$( echo "GSM Galaxy Nexus" ) +export SPRGNEXUS=$( echo "Sprint Galaxy Nexus" ) +export VZWGNEXUS=$( echo "Verizon Galaxy Nexus" ) +export ALLGNEXUS=$( echo "All Galaxy Nexi" ) +export GSMNEXUSS=$( echo "GSM Nexus S" ) +export SPRNEXUSS=$( echo "Sprint Nexus S 4G" ) +export ALLNEXUSS=$( echo "All Nexus S'" ) +export WIFINEXUS72012=$( echo "Wifi Nexus 7 (2012) Tablet" ) +export GSMNEXUS72012=$( echo "GSM Nexus 7 (2012) Tablet" ) +export ALLNEXUS72012=$( echo "All Nexus 7 (2012) Tablets" ) +export WIFINEXUS72013=$( echo "Wifi Nexus 7 (2013) Tablet" ) +export LTENEXUS72013=$( echo "LTE Nexus 7 (2013) Tablet" ) +export ALLNEXUS72013=$( echo "All Nexus 7 (2013) Tablets" ) +export ALLNEXUS7=$( echo "All Nexus 7 Tablets" ) +export NEXUS10=$( echo "Wifi Nexus 10" ) +export WIFIXOOM=$( echo "Wifi Xoom Tablet" ) +export VZWXOOM=$( echo "Verizon Xoom Tablet" ) +export ALLXOOM=$( echo "All Xoom Tablets" ) +export ALLNEXUS=$( echo "All Nexus Devices" ) + ## Scriptmakir export SCRIPTMAKIRREDEEMER=$( echo "Redeemer is running!" ) export SCRIPTMAKIRRMKITCHEN=$( echo "Removing Kitchen" ) @@ -162,7 +216,7 @@ export ENVIRONMENTSETUPDEBIAN=$( echo "You are running Debian!" ) export ENVIRONMENTSETUPULMN=$( echo "You are running Ubuntu, either 10.04, 10.10, or 11.04!" ) export ENVIRONMENTSETUPUO=$( echo "You are running Ubuntu 11.10!" ) export ENVIRONMENTSETUPUPQ=$( echo "You are running Ubuntu 12.04 or 12.10!" ) -export ENVIRONMENTSETUPURS=$( echo "You are running Ubuntu 13.04 or 13.10!" ) +export ENVIRONMENTSETUPURST=$( echo "You are running Ubuntu 13.04, 13.10, or 14.04!" ) export ENVIRONMENTSETUPMINT=$( echo "You are running Linux Mint!" ) export ENVIRONMENTSETUPARCH=$( echo "You are running Arch Linux!" ) export ENVIRONMENTSETUPDARWIN=$( echo "You are running Mac OS X!" ) @@ -180,3 +234,188 @@ export PREUPDATEAOSP=$( echo "Updating $REPOSAOSP's local_manifests folder" ) export PREUPDATECM10=$( echo "Updating $REPOSCM10's local_manifests folder" ) export PREUPDATECM=$( echo "Updating $REPOSCM's local_manifests folder" ) export PREUPDATEOMNI=$( echo "Updating $REPOSOMNI's local_manifests folder" ) + +## Configkitchen +export CONFIGKITCHENMENUTITLE=$( echo "Kitchen Config Menu" ) +export CONFIGKITCHENMENU1=$( echo "Edit Gitpuller" ) +export CONFIGKITCHENMENU2=$( echo "Edit Romeditor" ) +export CONFIGKITCHENMENU3=$( echo "Create/Edit other repo list" ) +export CONFIGKITCHENOTHERREPO=$( echo "editing custom repos file location" ) +export CONFIGKITCHENOTHERREPONAME=$( echo "editing custom repos name" ) + +## Fixkitchen +export FIXKITCHENSOMETHINGNOT=$( echo "Something is not working right? What should we do?" ) +export FIXKITCHENPURGE=$( echo "Purge = remove files, download from origin" ) +export FIXKITCHENDELETE=$( echo "Delete = delete it!" ) +export FIXKITCHENMENU1=$( echo "Add a repo to a certain local_manifests folder" ) +export FIXKITCHENMENU2=$( echo "Purge a certain local_manifests folder" ) +export FIXKITCHENMENU3=$( echo "Purge or Delete a certain repository" ) +export FIXKITCHENMENU4=$( echo "Purge or Delete all the repositories" ) +export FIXKITCHENMENU5=$( echo "Purge or Delete the Kitchen app" ) +export FIXKITCHENMENU6=$( echo "Delete the Kitchen app, and its dependencies" ) +export FIXKITCHENMENU7=$( echo "Delete the contents of your computer" ) +export FIXKITCHENMENU8=$( echo "Delete the entire internet" ) +export FIXKITCHENADD=$( echo "Adding repo to otherdevices.xml for" ) +export FIXKITCHENPURGE=$( echo "local_manifests folder was purged" ) +export FIXKITCHENWHICHADD=$( echo "Which repo would you like to add to?" ) +export FIXKITCHENWHICHPURGE=$( echo "Which repo would you like to purge its local_manifests folder?" ) +export FIXKITCHENWHICHREPO=$( echo "Which repo would you like to purge or delete?" ) +export FIXKITCHENPURGEDELETE=$( echo "Purge or Delete?" ) +export FIXKITCHENPURGEDELETEEXIT=$( echo "Purge = remove files, download from origin +Delete = delete it! +type exit to go to back" ) +export FIXKITCHENPURGEDELETEREPO=$( echo "Purge or Delete all of the repositories?" ) +export FIXKITCHENPURGEDELETEKITCHEN=$( echo "Purge or Delete the Kitchen app?" ) +export FIXKITCHENREDEEMER=$( echo "Switching to Redeemer script.." ) +export FIXKITCHENDELETEKITCHEN=$( echo "Are you sure you want to remove the Kitchen app?" ) +export FIXKITCHENTYPEYES=$( echo "You must type in \"yes\" to continue" ) +export FIXKITCHENTYPEABORT=$( echo "Type in anything else to abort operation" ) +export FIXKITCHENDESTROYERSWITCH=$( echo "Switching to Destroyer script" ) +export FIXKITCHENDELETEKITCHENALL=$( echo "Are you sure you want to remove the Kitchen app and its dependencies?" ) +export FIXKITCHENNOTDELETEBUILDS=$( echo "Please note: the builds directory will not be deleted" ) +export FIXKITCHENDESTROYEROFWORLDSSWITCH=$( echo "Switching to Destroyer of Worlds script" ) +export FIXKITCHENDELETECOMPUTER=$( echo "Are you sure..? this will delete everything on your computer, including mounted external drives and flash drives!!" ) +export SUICIDENOTE=$( echo "yes, please delete everything off of my computer" ) +export FIXKITCHENMUSTTYPEEXACTLY=$( echo "You must type in exactly \"$SUICIDENOTE\" to continue" ) +export FIXKITCHENTYPEPASSY=$( echo "Please type in your password to destroy everything" ) +export TROLLFACETITLE=$( echo "Trollface's Android Kitchen!" ) +export TROLLFACEUNDERLINE=$( echo "============================" ) +export FIXKITCHENIBET=$( echo "Oh man, I bet you wish it was that easy!" ) + +## Build Common +export BUILDMENUTITLE=$( echo "Today's Lunch Menu:" ) +export BUILDREPOMENU1=$( echo "$REPOSAOKP repository" ) +export BUILDREPOMENU2=$( echo "$REPOSAOSP43 repository" ) +export BUILDREPOMENU3=$( echo "$REPOSAOSP repository" ) +export BUILDREPOMENU4=$( echo "$REPOSCARBON repository" ) +export BUILDREPOMENU5=$( echo "$REPOSCM10 repository" ) +export BUILDREPOMENU6=$( echo "$REPOSCM repository" ) +export BUILDREPOMENU7=$( echo "$REPOSEV repository" ) +export BUILDREPOMENU8=$( echo "$REPOSOMNI repository" ) +export BUILDREPOMENU9=$( echo "$REPOSPACMAN repository" ) +export BUILDREPOMENU10=$( echo "$REPOSPARA repository" ) +export BUILDALLABOVE=$( echo "Build all above!" ) +export BUILDREPONOTSETUP=$( echo "The selected android repository is not setup!" ) +export BUILDDEVICENOTCOMPATIBLE=$( echo "This device is not compatible with this repository, try again!" ) +export BUILDMENURETURN=$( echo "Returning to Build Menu, Press Enter to continue: " ) + +## Buildmenu +export BUILDMENU1=$( echo "Build Nexus 4" ) +export BUILDMENU2=$( echo "Build Nexus 5" ) +export BUILDMENU3=$( echo "Build Nexus 7" ) +export BUILDMENU4=$( echo "Build Nexus 10" ) +export BUILDMENU5=$( echo "Build Galaxy Nexus" ) +export BUILDMENU6=$( echo "Build Nexus S" ) +export BUILDMENU7=$( echo "Build Xoom Tablet" ) +export BUILDMENU8=$( echo "Build all above!" ) +export BUILDMENU9=$( echo "Build other device" ) +export BUILDMENU10=$( echo "Build with other repository" ) + +## Builddevice +export BUILDDEVICEBEBUILT=$( echo "is selected to be built!" ) +export BUILDDEVICEWHICHREPO=$( echo "Which android repository are we building from today?" ) +export BUILDDEVICENEXUS4=$( echo "Build $NEXUS4" ) +export BUILDDEVICENEXUS5=$( echo "Build $NEXUS5" ) +export BUILDDEVICEGSMGNEXUS=$( echo "Build $GSMGNEXUS" ) +export BUILDDEVICESPRGNEXUS=$( echo "Build $SPRGNEXUS" ) +export BUILDDEVICEVZWGNEXUS=$( echo "Build $VZWGNEXUS" ) +export BUILDDEVICEGSMNEXUSS=$( echo "Build $GSMNEXUSS" ) +export BUILDDEVICESPRNEXUSS=$( echo "Build $SPRNEXUSS" ) +export BUILDDEVICEWIFINEXUS72012=$( echo "Build $WIFINEXUS72012" ) +export BUILDDEVICEGSMNEXUS72012=$( echo "Build $GSMNEXUS72012" ) +export BUILDDEVICEALLNEXUS72012=$( echo "Build $ALLNEXUS72012" ) +export BUILDDEVICEWIFINEXUS72013=$( echo "Build $WIFINEXUS72013" ) +export BUILDDEVICELTENEXUS72013=$( echo "Build $LTENEXUS72013" ) +export BUILDDEVICEALLNEXUS72013=$( echo "Build $ALLNEXUS72013" ) +export BUILDDEVICENEXUS10=$( echo "Build $NEXUS10" ) +export BUILDDEVICEWIFIXOOM=$( echo "Build $WIFIXOOM" ) +export BUILDDEVICEVZWXOOM=$( echo "Build $VZWXOOM" ) + +## Buildother +export BUILDOTHERBEBUILT=$( echo "Build other device is selected to be built!" ) +export BUILDOTHERTYPEDEVICE=$( echo "Please type in which device you would like to build" ) +export BUILDOTHERTYPELIST=$( echo "Type in list to see all supported devices" ) +export BUILDOTHERTYPEEXIT=$( echo "Type in exit to go back" ) +export BUILDOTHERBUILDTITLE=$( echo "Device List" ) +export BUILDOTHERBUILDUNDERLINE=$( echo "===========" ) +export BUILDOTHERNOTCOMPATIBLE=$( echo "This device is not compatible with this repository, build anyways?" ) +export BUILDOTHERCONTINUE=$( echo "Continuing the build" ) +export BUILDOTHERNOTVALID=$( echo "Not a vaild answer, not going to build" ) + +## Buildotherrepo +export BUILDOTHERREPOEMPTY=$( echo "other repo file is empty, please add to file then try again!" ) +export BUILDOTHERREPOBEBUILT=$( echo "Build with other repository is selected to be built!" ) + +## Buildandro +export BUILDANDROCLEAN=$( echo "Clean out folder?" ) +export BUILDANDROCLEANENTER=$( echo "Did you just hit enter without a care? for that im just gonna clean the folder anyways.." ) +export BUILDANDROCCACHECONTINUEWITHOUT=$( echo "Continuing without ccache use; if you want to use ccache, please set it up" ) +export BUILDANDROCCACHEFOUND=$( echo "Found ccache folder, will use for build" ) +export BUILDANDROCCACHEDIDNOTDETECT=$( echo "The kitchen did not detect the ccache folder, did you want to make one now?" ) +export BUILDANDROCCACHEOTHER=$( echo "If ccache is located at another location type in other" ) +export BUILDANDROCCACHEHOWBIG=$( echo "How big do you want the maximum size of ccache? suggested size is 50 - 100 gigabytes" ) +export BUILDANDROCCACHEAMOUNTTYPED=$( echo "Keep in mind the amount typed is in gigabytes" ) +export BUILDANDROCCACHEREPONOTSUPPORTED=$( echo "Repository does not support ccache, continuing without it" ) +export BUILDANDROCCACHEEXACTLOCATION=$( echo "Where is the exact location of ccache? Example of where default location is is ~/.ccache" ) +export BUILDANDROCCACHENOTFOUND=$( echo "Location specified was not found, continuing without it" ) +export BUILDANDROREPONOTSUPPORTED=$( echo "Repository not supported!" ) +export BUILDANDROBUILDMESSEDUP=$( echo "Build messed up!" ) +export BUILDANDROMAKETEMP1=$( echo "Making temporary folder for post-building" ) +export BUILDANDROMAKETEMP2=$( echo "fixes" ) +export BUILDANDROUNZIP=$( echo "Unzipping" ) +export BUILDANDRORMSTUFF=$( echo "Removing uneeded recovery folder and file_contexts from" ) +export BUILDANDROADDROM1=$( echo "Adding rom manager items to" ) +export BUILDANDROADDROM2=$( echo "'s build.prop" ) +export BUILDANDROZIP=$( echo "Zipping" ) +export BUILDANDROSIGN1=$( echo "Signing" ) +export BUILDANDROSIGN2=$( echo "with test keys" ) +export BUILDANDROMOVEOLD1=$( echo "Moving older build to" ) +export BUILDANDROMOVEOLD2=$( echo "/old" ) +export BUILDANDROCOPY=$( echo "Copying to" ) +export BUILDANDROCLEANUP=$( echo "Cleaning up temporary folder" ) + +## Buildautomenu +export BUILDAUTOMENUTITLE=$( echo "Auto Builder Menu" ) +export BUILDAUTOMENU1=$( echo "Run Auto Builder" ) +export BUILDAUTOMENU2=$( echo "Add to auto build list" ) +export BUILDAUTOMENU3=$( echo "Clear auto build list" ) +export BUILDAUTOMENU4=$( echo "Toggle Auto Builder's output" ) +export BUILDAUTOMENU5=$( echo "Toggle Auto Builder's build other repo" ) +export BUILDAUTOMENU6=$( echo "Toggle Auto Builder's sleep function" ) +export BUILDAUTOMENUSETAUTO=$( echo "Which android repository are we setting for auto build?" ) +export BUILDAUTOMENUMOVEON=$( echo "Finished with adding repos, move on to adding devices" ) +export BUILDAUTOMENUADD1=$( echo "Added" ) +export BUILDAUTOMENUADD2=$( echo "to auto build files" ) +export BUILDAUTOMENUTYPEDEVICE=$( echo "Please type in Which android device are we setting for auto build" ) +export BUILDAUTOMENUWANTTOCLEAR=$( echo "Are you sure you want to clear auto build files?" ) +export BUILDAUTOMENUCLEARED=$( echo "Auto build files cleared" ) +export BUILDAUTOMENUNOTCLEARED=$( echo "Auto build files left untouched" ) +export BUILDAUTOMENUOUTPUT=$( echo "This will output buildauto into swordkitchen script folder" ) +export BUILDAUTOMENUSOMEWHERE=$( echo "Unless you want it to be somewhere else?" ) +export BUILDAUTOMENUTYPEOUTPUT=$( echo "Type yes to output somewhere else:" ) +export BUILDAUTOMENUTYPEABSOLUTE=$( echo "Please type the absolute path of where u want the buildoutput.txt to be" ) +export BUILDAUTOMENUOUTPUTSENT=$( echo "Output will be sent to" ) +export BUILDAUTOMENUOUTPUTCLEAR=$( echo "Output file cleared, buildauto will now output regularly" ) +export BUILDAUTOMENUADDBELOWREPO=$( echo "Add below this line the repo folder you want to auto build, otherrepo are in the otherrepo folder, list each repo per line" ) +export BUILDAUTOMENUADDBELOWDEVICE=$( echo "Add below this line the device codename you want to auto build, list each device per line" ) +export BUILDAUTOMENUOTHERREPOON=$( echo "Auto Builder's build other repo is now on!" ) +export BUILDAUTOMENUOTHERREPOOFF=$( echo "Auto Builder's build other repo is now off!" ) +export BUILDAUTOMENUCOMPSLEEPTIME1=$( echo "Do you want the computer to sleep for a" ) +export BUILDAUTOMENUCOMPSLEEPTIME2=$( echo "certain amount of hours or wake up at a certain time?" ) +export BUILDAUTOMENUSLEEPMENU1=$( echo "Wake up at a certain time" ) +export BUILDAUTOMENUSLEEPMENU2=$( echo "Certain amount of hours" ) +export BUILDAUTOMENUSPECIFIC1=$( echo "What time do you want the build server to wake up at the next day?" ) +export BUILDAUTOMENUSPECIFIC2=$( echo "24 hours configuration, Example: for 2pm put 14:00, for 7am put 07:00" ) +export BUILDAUTOMENUHOURS1=$( echo "How long would you like for the build server to sleep after building?" ) +export BUILDAUTOMENUHOURS2=$( echo "The number being inputted is in hours" ) +export BUILDAUTOMENUTYPEPASSY=$( echo "Please type in your user's password, so the build server can sleep" ) +export BUILDAUTOMENUSLEEPON=$( echo "Auto Builder's sleep function is now on!" ) +export BUILDAUTOMENUSLEEPOFF=$( echo "Auto Builder's sleep function is now off!" ) + +## Buildauto +export BUILDAUTOPLEASE=( echo "Please use the Auto Builder config menu" ) +export BUILDAUTOBOTH=( echo "Both Auto Builder's repository and device is not set!" ) +export BUILDAUTOREPO=( echo "Auto Builder's repository is not set!" ) +export BUILDAUTODEVICE=( echo "Auto Builder's device is not set!" ) +export BUILDAUTOWAIT=( echo "Waiting for ten minutes! this is not a countdown.." ) +export BUILDAUTOSLEEP=( echo "Sleep..." ) diff --git a/translation/italianbleak b/translation/italianbleak index 14ca330..8dd497e 100755 --- a/translation/italianbleak +++ b/translation/italianbleak @@ -32,17 +32,48 @@ export ANSWERY=$( echo "y" ) export ANSWERNO=$( echo "no" ) export ANSWERN=$( echo "n" ) +## Macosxinit +export MACOSXINITRUN=$( echo "You are running Mac OS X!" ) +export MACOSXINITCANTFINDDMG=$( echo "We can't find the android image to mount, this is needed to build on mac os x +If you already have one made please put it in its proper place with its proper title +It's proper place and title is in your home folder named android.dmg, example is ~/android.dmg + +Would you like to make a new android.dmg?" ) +export MACOSXINITHOWBIG=$( echo "How big would you like android.dmg? Keep in mind it will increase its size if u need more space +Type in number in gigabytes" ) +export MACOSXINITMOUNTNEW=$( echo "Mounting new android.dmg at /Volumes/android.." ) +export MACOSXINITMOVEINTO=$( echo "Moving into android.dmg.." ) +export MACOSXINITSETUP=$( echo "Setting up kitchen.." ) +export MACOSXINITSETUP=$( echo "Setting up kitchen.." ) +export MACOSXINITFOUNDDMG=$( echo "Found your android.dmg, mounting.." ) +export MACOSXINITCANTFINDKITCHEN=$( echo "We can't find the rom kitchen in /Volumes/android + +Would you like to make install rom kitchen in /Volumes/android?" ) + ## Errors +export ERRORHEADER=$( echo "An Error Has Occurred! +======================" ) +export ERRORSIDEEFFECTS=$( echo "Side effects may include failure to build properly and lack of support +for build environment setup" ) export ERRORCONTACTINFO=$( echo "If you see this in error, please notify me at either xda or rootzwiki If you prefer email you can reach me at mishana@swordrune10.net If your also inclined, i have a freenode channel #Swordrune10Kitchen" ) +export BOUNCERPOWERPC=$( echo "PowerPC processor detected! +=========================== +Running powerpc isn't necessarily prohibited, but it is not suggested" ) +export BOUNCER32BIT=$( echo "32-bit processor detected! +========================== +Running 32-bit isn't necessarily prohibited, but it is not suggested" ) +export BOUNCERKITCHENHOME=$( echo "Kitchen not set in correct place! +================================= +Kitchen will not work correctly if placed in home folder, please move" ) export ENVIRONMENTSETUP32BIT=$( echo "32-bit not supported! ===================== Build enviroment installation only supports 64-bit Operating Systems" ) export ENVIRONMENTSETUPNOTSUPPORTED=$( echo "Operating System not supported! =============================== Supported Operating Systems (only 64-bit): -Ubuntu 10.04 - 13.10 (Full Support) +Ubuntu 10.04 - 14.04 (Full Support) Debian (General Support) Linux Mint (General Support) Arch Linux (General Support) @@ -62,6 +93,29 @@ export REPOSOMNI=$( echo "omnirom" ) export REPOSPACMAN=$( echo "PAC-man" ) export REPOSPARA=$( echo "ParanoidAndroid" ) +## Devices +export NEXUS4=$( echo "GSM Nexus 4" ) +export NEXUS5=$( echo "LTE Nexus 5" ) +export GSMGNEXUS=$( echo "GSM Galaxy Nexus" ) +export SPRGNEXUS=$( echo "Sprint Galaxy Nexus" ) +export VZWGNEXUS=$( echo "Verizon Galaxy Nexus" ) +export ALLGNEXUS=$( echo "All Galaxy Nexi" ) +export GSMNEXUSS=$( echo "GSM Nexus S" ) +export SPRNEXUSS=$( echo "Sprint Nexus S 4G" ) +export ALLNEXUSS=$( echo "All Nexus S'" ) +export WIFINEXUS72012=$( echo "Wifi Nexus 7 (2012) Tablet" ) +export GSMNEXUS72012=$( echo "GSM Nexus 7 (2012) Tablet" ) +export ALLNEXUS72012=$( echo "All Nexus 7 (2012) Tablets" ) +export WIFINEXUS72013=$( echo "Wifi Nexus 7 (2013) Tablet" ) +export LTENEXUS72013=$( echo "LTE Nexus 7 (2013) Tablet" ) +export ALLNEXUS72013=$( echo "All Nexus 7 (2013) Tablets" ) +export ALLNEXUS7=$( echo "All Nexus 7 Tablets" ) +export NEXUS10=$( echo "Wifi Nexus 10" ) +export WIFIXOOM=$( echo "Wifi Xoom Tablet" ) +export VZWXOOM=$( echo "Verizon Xoom Tablet" ) +export ALLXOOM=$( echo "All Xoom Tablets" ) +export ALLNEXUS=$( echo "All Nexus Devices" ) + ## Scriptmakir export SCRIPTMAKIRREDEEMER=$( echo "Redeemer is running!" ) export SCRIPTMAKIRRMKITCHEN=$( echo "Removing Kitchen" ) @@ -162,7 +216,7 @@ export ENVIRONMENTSETUPDEBIAN=$( echo "You are running Debian!" ) export ENVIRONMENTSETUPULMN=$( echo "You are running Ubuntu, either 10.04, 10.10, or 11.04!" ) export ENVIRONMENTSETUPUO=$( echo "You are running Ubuntu 11.10!" ) export ENVIRONMENTSETUPUPQ=$( echo "You are running Ubuntu 12.04 or 12.10!" ) -export ENVIRONMENTSETUPURS=$( echo "You are running Ubuntu 13.04 or 13.10!" ) +export ENVIRONMENTSETUPURST=$( echo "You are running Ubuntu 13.04, 13.10, or 14.04!" ) export ENVIRONMENTSETUPMINT=$( echo "You are running Linux Mint!" ) export ENVIRONMENTSETUPARCH=$( echo "You are running Arch Linux!" ) export ENVIRONMENTSETUPDARWIN=$( echo "You are running Mac OS X!" ) @@ -180,3 +234,188 @@ export PREUPDATEAOSP=$( echo "Updating $REPOSAOSP's local_manifests folder" ) export PREUPDATECM10=$( echo "Updating $REPOSCM10's local_manifests folder" ) export PREUPDATECM=$( echo "Updating $REPOSCM's local_manifests folder" ) export PREUPDATEOMNI=$( echo "Updating $REPOSOMNI's local_manifests folder" ) + +## Configkitchen +export CONFIGKITCHENMENUTITLE=$( echo "Kitchen Config Menu" ) +export CONFIGKITCHENMENU1=$( echo "Edit Gitpuller" ) +export CONFIGKITCHENMENU2=$( echo "Edit Romeditor" ) +export CONFIGKITCHENMENU3=$( echo "Create/Edit other repo list" ) +export CONFIGKITCHENOTHERREPO=$( echo "editing custom repos file location" ) +export CONFIGKITCHENOTHERREPONAME=$( echo "editing custom repos name" ) + +## Fixkitchen +export FIXKITCHENSOMETHINGNOT=$( echo "Something is not working right? What should we do?" ) +export FIXKITCHENPURGE=$( echo "Purge = remove files, download from origin" ) +export FIXKITCHENDELETE=$( echo "Delete = delete it!" ) +export FIXKITCHENMENU1=$( echo "Add a repo to a certain local_manifests folder" ) +export FIXKITCHENMENU2=$( echo "Purge a certain local_manifests folder" ) +export FIXKITCHENMENU3=$( echo "Purge or Delete a certain repository" ) +export FIXKITCHENMENU4=$( echo "Purge or Delete all the repositories" ) +export FIXKITCHENMENU5=$( echo "Purge or Delete the Kitchen app" ) +export FIXKITCHENMENU6=$( echo "Delete the Kitchen app, and its dependencies" ) +export FIXKITCHENMENU7=$( echo "Delete the contents of your computer" ) +export FIXKITCHENMENU8=$( echo "Delete the entire internet" ) +export FIXKITCHENADD=$( echo "Adding repo to otherdevices.xml for" ) +export FIXKITCHENPURGE=$( echo "local_manifests folder was purged" ) +export FIXKITCHENWHICHADD=$( echo "Which repo would you like to add to?" ) +export FIXKITCHENWHICHPURGE=$( echo "Which repo would you like to purge its local_manifests folder?" ) +export FIXKITCHENWHICHREPO=$( echo "Which repo would you like to purge or delete?" ) +export FIXKITCHENPURGEDELETE=$( echo "Purge or Delete?" ) +export FIXKITCHENPURGEDELETEEXIT=$( echo "Purge = remove files, download from origin +Delete = delete it! +type exit to go to back" ) +export FIXKITCHENPURGEDELETEREPO=$( echo "Purge or Delete all of the repositories?" ) +export FIXKITCHENPURGEDELETEKITCHEN=$( echo "Purge or Delete the Kitchen app?" ) +export FIXKITCHENREDEEMER=$( echo "Switching to Redeemer script.." ) +export FIXKITCHENDELETEKITCHEN=$( echo "Are you sure you want to remove the Kitchen app?" ) +export FIXKITCHENTYPEYES=$( echo "You must type in \"yes\" to continue" ) +export FIXKITCHENTYPEABORT=$( echo "Type in anything else to abort operation" ) +export FIXKITCHENDESTROYERSWITCH=$( echo "Switching to Destroyer script" ) +export FIXKITCHENDELETEKITCHENALL=$( echo "Are you sure you want to remove the Kitchen app and its dependencies?" ) +export FIXKITCHENNOTDELETEBUILDS=$( echo "Please note: the builds directory will not be deleted" ) +export FIXKITCHENDESTROYEROFWORLDSSWITCH=$( echo "Switching to Destroyer of Worlds script" ) +export FIXKITCHENDELETECOMPUTER=$( echo "Are you sure..? this will delete everything on your computer, including mounted external drives and flash drives!!" ) +export SUICIDENOTE=$( echo "yes, please delete everything off of my computer" ) +export FIXKITCHENMUSTTYPEEXACTLY=$( echo "You must type in exactly \"$SUICIDENOTE\" to continue" ) +export FIXKITCHENTYPEPASSY=$( echo "Please type in your password to destroy everything" ) +export TROLLFACETITLE=$( echo "Trollface's Android Kitchen!" ) +export TROLLFACEUNDERLINE=$( echo "============================" ) +export FIXKITCHENIBET=$( echo "Oh man, I bet you wish it was that easy!" ) + +## Build Common +export BUILDMENUTITLE=$( echo "Today's Lunch Menu:" ) +export BUILDREPOMENU1=$( echo "$REPOSAOKP repository" ) +export BUILDREPOMENU2=$( echo "$REPOSAOSP43 repository" ) +export BUILDREPOMENU3=$( echo "$REPOSAOSP repository" ) +export BUILDREPOMENU4=$( echo "$REPOSCARBON repository" ) +export BUILDREPOMENU5=$( echo "$REPOSCM10 repository" ) +export BUILDREPOMENU6=$( echo "$REPOSCM repository" ) +export BUILDREPOMENU7=$( echo "$REPOSEV repository" ) +export BUILDREPOMENU8=$( echo "$REPOSOMNI repository" ) +export BUILDREPOMENU9=$( echo "$REPOSPACMAN repository" ) +export BUILDREPOMENU10=$( echo "$REPOSPARA repository" ) +export BUILDALLABOVE=$( echo "Build all above!" ) +export BUILDREPONOTSETUP=$( echo "The selected android repository is not setup!" ) +export BUILDDEVICENOTCOMPATIBLE=$( echo "This device is not compatible with this repository, try again!" ) +export BUILDMENURETURN=$( echo "Returning to Build Menu, Press Enter to continue: " ) + +## Buildmenu +export BUILDMENU1=$( echo "Build Nexus 4" ) +export BUILDMENU2=$( echo "Build Nexus 5" ) +export BUILDMENU3=$( echo "Build Nexus 7" ) +export BUILDMENU4=$( echo "Build Nexus 10" ) +export BUILDMENU5=$( echo "Build Galaxy Nexus" ) +export BUILDMENU6=$( echo "Build Nexus S" ) +export BUILDMENU7=$( echo "Build Xoom Tablet" ) +export BUILDMENU8=$( echo "Build all above!" ) +export BUILDMENU9=$( echo "Build other device" ) +export BUILDMENU10=$( echo "Build with other repository" ) + +## Builddevice +export BUILDDEVICEBEBUILT=$( echo "is selected to be built!" ) +export BUILDDEVICEWHICHREPO=$( echo "Which android repository are we building from today?" ) +export BUILDDEVICENEXUS4=$( echo "Build $NEXUS4" ) +export BUILDDEVICENEXUS5=$( echo "Build $NEXUS5" ) +export BUILDDEVICEGSMGNEXUS=$( echo "Build $GSMGNEXUS" ) +export BUILDDEVICESPRGNEXUS=$( echo "Build $SPRGNEXUS" ) +export BUILDDEVICEVZWGNEXUS=$( echo "Build $VZWGNEXUS" ) +export BUILDDEVICEGSMNEXUSS=$( echo "Build $GSMNEXUSS" ) +export BUILDDEVICESPRNEXUSS=$( echo "Build $SPRNEXUSS" ) +export BUILDDEVICEWIFINEXUS72012=$( echo "Build $WIFINEXUS72012" ) +export BUILDDEVICEGSMNEXUS72012=$( echo "Build $GSMNEXUS72012" ) +export BUILDDEVICEALLNEXUS72012=$( echo "Build $ALLNEXUS72012" ) +export BUILDDEVICEWIFINEXUS72013=$( echo "Build $WIFINEXUS72013" ) +export BUILDDEVICELTENEXUS72013=$( echo "Build $LTENEXUS72013" ) +export BUILDDEVICEALLNEXUS72013=$( echo "Build $ALLNEXUS72013" ) +export BUILDDEVICENEXUS10=$( echo "Build $NEXUS10" ) +export BUILDDEVICEWIFIXOOM=$( echo "Build $WIFIXOOM" ) +export BUILDDEVICEVZWXOOM=$( echo "Build $VZWXOOM" ) + +## Buildother +export BUILDOTHERBEBUILT=$( echo "Build other device is selected to be built!" ) +export BUILDOTHERTYPEDEVICE=$( echo "Please type in which device you would like to build" ) +export BUILDOTHERTYPELIST=$( echo "Type in list to see all supported devices" ) +export BUILDOTHERTYPEEXIT=$( echo "Type in exit to go back" ) +export BUILDOTHERBUILDTITLE=$( echo "Device List" ) +export BUILDOTHERBUILDUNDERLINE=$( echo "===========" ) +export BUILDOTHERNOTCOMPATIBLE=$( echo "This device is not compatible with this repository, build anyways?" ) +export BUILDOTHERCONTINUE=$( echo "Continuing the build" ) +export BUILDOTHERNOTVALID=$( echo "Not a vaild answer, not going to build" ) + +## Buildotherrepo +export BUILDOTHERREPOEMPTY=$( echo "other repo file is empty, please add to file then try again!" ) +export BUILDOTHERREPOBEBUILT=$( echo "Build with other repository is selected to be built!" ) + +## Buildandro +export BUILDANDROCLEAN=$( echo "Clean out folder?" ) +export BUILDANDROCLEANENTER=$( echo "Did you just hit enter without a care? for that im just gonna clean the folder anyways.." ) +export BUILDANDROCCACHECONTINUEWITHOUT=$( echo "Continuing without ccache use; if you want to use ccache, please set it up" ) +export BUILDANDROCCACHEFOUND=$( echo "Found ccache folder, will use for build" ) +export BUILDANDROCCACHEDIDNOTDETECT=$( echo "The kitchen did not detect the ccache folder, did you want to make one now?" ) +export BUILDANDROCCACHEOTHER=$( echo "If ccache is located at another location type in other" ) +export BUILDANDROCCACHEHOWBIG=$( echo "How big do you want the maximum size of ccache? suggested size is 50 - 100 gigabytes" ) +export BUILDANDROCCACHEAMOUNTTYPED=$( echo "Keep in mind the amount typed is in gigabytes" ) +export BUILDANDROCCACHEREPONOTSUPPORTED=$( echo "Repository does not support ccache, continuing without it" ) +export BUILDANDROCCACHEEXACTLOCATION=$( echo "Where is the exact location of ccache? Example of where default location is is ~/.ccache" ) +export BUILDANDROCCACHENOTFOUND=$( echo "Location specified was not found, continuing without it" ) +export BUILDANDROREPONOTSUPPORTED=$( echo "Repository not supported!" ) +export BUILDANDROBUILDMESSEDUP=$( echo "Build messed up!" ) +export BUILDANDROMAKETEMP1=$( echo "Making temporary folder for post-building" ) +export BUILDANDROMAKETEMP2=$( echo "fixes" ) +export BUILDANDROUNZIP=$( echo "Unzipping" ) +export BUILDANDRORMSTUFF=$( echo "Removing uneeded recovery folder and file_contexts from" ) +export BUILDANDROADDROM1=$( echo "Adding rom manager items to" ) +export BUILDANDROADDROM2=$( echo "'s build.prop" ) +export BUILDANDROZIP=$( echo "Zipping" ) +export BUILDANDROSIGN1=$( echo "Signing" ) +export BUILDANDROSIGN2=$( echo "with test keys" ) +export BUILDANDROMOVEOLD1=$( echo "Moving older build to" ) +export BUILDANDROMOVEOLD2=$( echo "/old" ) +export BUILDANDROCOPY=$( echo "Copying to" ) +export BUILDANDROCLEANUP=$( echo "Cleaning up temporary folder" ) + +## Buildautomenu +export BUILDAUTOMENUTITLE=$( echo "Auto Builder Menu" ) +export BUILDAUTOMENU1=$( echo "Run Auto Builder" ) +export BUILDAUTOMENU2=$( echo "Add to auto build list" ) +export BUILDAUTOMENU3=$( echo "Clear auto build list" ) +export BUILDAUTOMENU4=$( echo "Toggle Auto Builder's output" ) +export BUILDAUTOMENU5=$( echo "Toggle Auto Builder's build other repo" ) +export BUILDAUTOMENU6=$( echo "Toggle Auto Builder's sleep function" ) +export BUILDAUTOMENUSETAUTO=$( echo "Which android repository are we setting for auto build?" ) +export BUILDAUTOMENUMOVEON=$( echo "Finished with adding repos, move on to adding devices" ) +export BUILDAUTOMENUADD1=$( echo "Added" ) +export BUILDAUTOMENUADD2=$( echo "to auto build files" ) +export BUILDAUTOMENUTYPEDEVICE=$( echo "Please type in Which android device are we setting for auto build" ) +export BUILDAUTOMENUWANTTOCLEAR=$( echo "Are you sure you want to clear auto build files?" ) +export BUILDAUTOMENUCLEARED=$( echo "Auto build files cleared" ) +export BUILDAUTOMENUNOTCLEARED=$( echo "Auto build files left untouched" ) +export BUILDAUTOMENUOUTPUT=$( echo "This will output buildauto into swordkitchen script folder" ) +export BUILDAUTOMENUSOMEWHERE=$( echo "Unless you want it to be somewhere else?" ) +export BUILDAUTOMENUTYPEOUTPUT=$( echo "Type yes to output somewhere else:" ) +export BUILDAUTOMENUTYPEABSOLUTE=$( echo "Please type the absolute path of where u want the buildoutput.txt to be" ) +export BUILDAUTOMENUOUTPUTSENT=$( echo "Output will be sent to" ) +export BUILDAUTOMENUOUTPUTCLEAR=$( echo "Output file cleared, buildauto will now output regularly" ) +export BUILDAUTOMENUADDBELOWREPO=$( echo "Add below this line the repo folder you want to auto build, otherrepo are in the otherrepo folder, list each repo per line" ) +export BUILDAUTOMENUADDBELOWDEVICE=$( echo "Add below this line the device codename you want to auto build, list each device per line" ) +export BUILDAUTOMENUOTHERREPOON=$( echo "Auto Builder's build other repo is now on!" ) +export BUILDAUTOMENUOTHERREPOOFF=$( echo "Auto Builder's build other repo is now off!" ) +export BUILDAUTOMENUCOMPSLEEPTIME1=$( echo "Do you want the computer to sleep for a" ) +export BUILDAUTOMENUCOMPSLEEPTIME2=$( echo "certain amount of hours or wake up at a certain time?" ) +export BUILDAUTOMENUSLEEPMENU1=$( echo "Wake up at a certain time" ) +export BUILDAUTOMENUSLEEPMENU2=$( echo "Certain amount of hours" ) +export BUILDAUTOMENUSPECIFIC1=$( echo "What time do you want the build server to wake up at the next day?" ) +export BUILDAUTOMENUSPECIFIC2=$( echo "24 hours configuration, Example: for 2pm put 14:00, for 7am put 07:00" ) +export BUILDAUTOMENUHOURS1=$( echo "How long would you like for the build server to sleep after building?" ) +export BUILDAUTOMENUHOURS2=$( echo "The number being inputted is in hours" ) +export BUILDAUTOMENUTYPEPASSY=$( echo "Please type in your user's password, so the build server can sleep" ) +export BUILDAUTOMENUSLEEPON=$( echo "Auto Builder's sleep function is now on!" ) +export BUILDAUTOMENUSLEEPOFF=$( echo "Auto Builder's sleep function is now off!" ) + +## Buildauto +export BUILDAUTOPLEASE=( echo "Please use the Auto Builder config menu" ) +export BUILDAUTOBOTH=( echo "Both Auto Builder's repository and device is not set!" ) +export BUILDAUTOREPO=( echo "Auto Builder's repository is not set!" ) +export BUILDAUTODEVICE=( echo "Auto Builder's device is not set!" ) +export BUILDAUTOWAIT=( echo "Waiting for ten minutes! this is not a countdown.." ) +export BUILDAUTOSLEEP=( echo "Sleep..." ) diff --git a/translation/koreanlamprey b/translation/koreanlamprey index 076964a..2e28678 100755 --- a/translation/koreanlamprey +++ b/translation/koreanlamprey @@ -32,17 +32,48 @@ export ANSWERY=$( echo "y" ) export ANSWERNO=$( echo "no" ) export ANSWERN=$( echo "n" ) +## Macosxinit +export MACOSXINITRUN=$( echo "You are running Mac OS X!" ) +export MACOSXINITCANTFINDDMG=$( echo "We can't find the android image to mount, this is needed to build on mac os x +If you already have one made please put it in its proper place with its proper title +It's proper place and title is in your home folder named android.dmg, example is ~/android.dmg + +Would you like to make a new android.dmg?" ) +export MACOSXINITHOWBIG=$( echo "How big would you like android.dmg? Keep in mind it will increase its size if u need more space +Type in number in gigabytes" ) +export MACOSXINITMOUNTNEW=$( echo "Mounting new android.dmg at /Volumes/android.." ) +export MACOSXINITMOVEINTO=$( echo "Moving into android.dmg.." ) +export MACOSXINITSETUP=$( echo "Setting up kitchen.." ) +export MACOSXINITSETUP=$( echo "Setting up kitchen.." ) +export MACOSXINITFOUNDDMG=$( echo "Found your android.dmg, mounting.." ) +export MACOSXINITCANTFINDKITCHEN=$( echo "We can't find the rom kitchen in /Volumes/android + +Would you like to make install rom kitchen in /Volumes/android?" ) + ## Errors +export ERRORHEADER=$( echo "An Error Has Occurred! +======================" ) +export ERRORSIDEEFFECTS=$( echo "Side effects may include failure to build properly and lack of support +for build environment setup" ) export ERRORCONTACTINFO=$( echo "If you see this in error, please notify me at either xda or rootzwiki If you prefer email you can reach me at mishana@swordrune10.net If your also inclined, i have a freenode channel #Swordrune10Kitchen" ) +export BOUNCERPOWERPC=$( echo "PowerPC processor detected! +=========================== +Running powerpc isn't necessarily prohibited, but it is not suggested" ) +export BOUNCER32BIT=$( echo "32-bit processor detected! +========================== +Running 32-bit isn't necessarily prohibited, but it is not suggested" ) +export BOUNCERKITCHENHOME=$( echo "Kitchen not set in correct place! +================================= +Kitchen will not work correctly if placed in home folder, please move" ) export ENVIRONMENTSETUP32BIT=$( echo "32-bit not supported! ===================== Build enviroment installation only supports 64-bit Operating Systems" ) export ENVIRONMENTSETUPNOTSUPPORTED=$( echo "Operating System not supported! =============================== Supported Operating Systems (only 64-bit): -Ubuntu 10.04 - 13.10 (Full Support) +Ubuntu 10.04 - 14.04 (Full Support) Debian (General Support) Linux Mint (General Support) Arch Linux (General Support) @@ -62,6 +93,29 @@ export REPOSOMNI=$( echo "omnirom" ) export REPOSPACMAN=$( echo "PAC-man" ) export REPOSPARA=$( echo "ParanoidAndroid" ) +## Devices +export NEXUS4=$( echo "GSM Nexus 4" ) +export NEXUS5=$( echo "LTE Nexus 5" ) +export GSMGNEXUS=$( echo "GSM Galaxy Nexus" ) +export SPRGNEXUS=$( echo "Sprint Galaxy Nexus" ) +export VZWGNEXUS=$( echo "Verizon Galaxy Nexus" ) +export ALLGNEXUS=$( echo "All Galaxy Nexi" ) +export GSMNEXUSS=$( echo "GSM Nexus S" ) +export SPRNEXUSS=$( echo "Sprint Nexus S 4G" ) +export ALLNEXUSS=$( echo "All Nexus S'" ) +export WIFINEXUS72012=$( echo "Wifi Nexus 7 (2012) Tablet" ) +export GSMNEXUS72012=$( echo "GSM Nexus 7 (2012) Tablet" ) +export ALLNEXUS72012=$( echo "All Nexus 7 (2012) Tablets" ) +export WIFINEXUS72013=$( echo "Wifi Nexus 7 (2013) Tablet" ) +export LTENEXUS72013=$( echo "LTE Nexus 7 (2013) Tablet" ) +export ALLNEXUS72013=$( echo "All Nexus 7 (2013) Tablets" ) +export ALLNEXUS7=$( echo "All Nexus 7 Tablets" ) +export NEXUS10=$( echo "Wifi Nexus 10" ) +export WIFIXOOM=$( echo "Wifi Xoom Tablet" ) +export VZWXOOM=$( echo "Verizon Xoom Tablet" ) +export ALLXOOM=$( echo "All Xoom Tablets" ) +export ALLNEXUS=$( echo "All Nexus Devices" ) + ## Scriptmakir export SCRIPTMAKIRREDEEMER=$( echo "Redeemer is running!" ) export SCRIPTMAKIRRMKITCHEN=$( echo "Removing Kitchen" ) @@ -162,7 +216,7 @@ export ENVIRONMENTSETUPDEBIAN=$( echo "You are running Debian!" ) export ENVIRONMENTSETUPULMN=$( echo "You are running Ubuntu, either 10.04, 10.10, or 11.04!" ) export ENVIRONMENTSETUPUO=$( echo "You are running Ubuntu 11.10!" ) export ENVIRONMENTSETUPUPQ=$( echo "You are running Ubuntu 12.04 or 12.10!" ) -export ENVIRONMENTSETUPURS=$( echo "You are running Ubuntu 13.04 or 13.10!" ) +export ENVIRONMENTSETUPURST=$( echo "You are running Ubuntu 13.04, 13.10, or 14.04!" ) export ENVIRONMENTSETUPMINT=$( echo "You are running Linux Mint!" ) export ENVIRONMENTSETUPARCH=$( echo "You are running Arch Linux!" ) export ENVIRONMENTSETUPDARWIN=$( echo "You are running Mac OS X!" ) @@ -180,3 +234,188 @@ export PREUPDATEAOSP=$( echo "Updating $REPOSAOSP's local_manifests folder" ) export PREUPDATECM10=$( echo "Updating $REPOSCM10's local_manifests folder" ) export PREUPDATECM=$( echo "Updating $REPOSCM's local_manifests folder" ) export PREUPDATEOMNI=$( echo "Updating $REPOSOMNI's local_manifests folder" ) + +## Configkitchen +export CONFIGKITCHENMENUTITLE=$( echo "Kitchen Config Menu" ) +export CONFIGKITCHENMENU1=$( echo "Edit Gitpuller" ) +export CONFIGKITCHENMENU2=$( echo "Edit Romeditor" ) +export CONFIGKITCHENMENU3=$( echo "Create/Edit other repo list" ) +export CONFIGKITCHENOTHERREPO=$( echo "editing custom repos file location" ) +export CONFIGKITCHENOTHERREPONAME=$( echo "editing custom repos name" ) + +## Fixkitchen +export FIXKITCHENSOMETHINGNOT=$( echo "Something is not working right? What should we do?" ) +export FIXKITCHENPURGE=$( echo "Purge = remove files, download from origin" ) +export FIXKITCHENDELETE=$( echo "Delete = delete it!" ) +export FIXKITCHENMENU1=$( echo "Add a repo to a certain local_manifests folder" ) +export FIXKITCHENMENU2=$( echo "Purge a certain local_manifests folder" ) +export FIXKITCHENMENU3=$( echo "Purge or Delete a certain repository" ) +export FIXKITCHENMENU4=$( echo "Purge or Delete all the repositories" ) +export FIXKITCHENMENU5=$( echo "Purge or Delete the Kitchen app" ) +export FIXKITCHENMENU6=$( echo "Delete the Kitchen app, and its dependencies" ) +export FIXKITCHENMENU7=$( echo "Delete the contents of your computer" ) +export FIXKITCHENMENU8=$( echo "Delete the entire internet" ) +export FIXKITCHENADD=$( echo "Adding repo to otherdevices.xml for" ) +export FIXKITCHENPURGE=$( echo "local_manifests folder was purged" ) +export FIXKITCHENWHICHADD=$( echo "Which repo would you like to add to?" ) +export FIXKITCHENWHICHPURGE=$( echo "Which repo would you like to purge its local_manifests folder?" ) +export FIXKITCHENWHICHREPO=$( echo "Which repo would you like to purge or delete?" ) +export FIXKITCHENPURGEDELETE=$( echo "Purge or Delete?" ) +export FIXKITCHENPURGEDELETEEXIT=$( echo "Purge = remove files, download from origin +Delete = delete it! +type exit to go to back" ) +export FIXKITCHENPURGEDELETEREPO=$( echo "Purge or Delete all of the repositories?" ) +export FIXKITCHENPURGEDELETEKITCHEN=$( echo "Purge or Delete the Kitchen app?" ) +export FIXKITCHENREDEEMER=$( echo "Switching to Redeemer script.." ) +export FIXKITCHENDELETEKITCHEN=$( echo "Are you sure you want to remove the Kitchen app?" ) +export FIXKITCHENTYPEYES=$( echo "You must type in \"yes\" to continue" ) +export FIXKITCHENTYPEABORT=$( echo "Type in anything else to abort operation" ) +export FIXKITCHENDESTROYERSWITCH=$( echo "Switching to Destroyer script" ) +export FIXKITCHENDELETEKITCHENALL=$( echo "Are you sure you want to remove the Kitchen app and its dependencies?" ) +export FIXKITCHENNOTDELETEBUILDS=$( echo "Please note: the builds directory will not be deleted" ) +export FIXKITCHENDESTROYEROFWORLDSSWITCH=$( echo "Switching to Destroyer of Worlds script" ) +export FIXKITCHENDELETECOMPUTER=$( echo "Are you sure..? this will delete everything on your computer, including mounted external drives and flash drives!!" ) +export SUICIDENOTE=$( echo "yes, please delete everything off of my computer" ) +export FIXKITCHENMUSTTYPEEXACTLY=$( echo "You must type in exactly \"$SUICIDENOTE\" to continue" ) +export FIXKITCHENTYPEPASSY=$( echo "Please type in your password to destroy everything" ) +export TROLLFACETITLE=$( echo "Trollface's Android Kitchen!" ) +export TROLLFACEUNDERLINE=$( echo "============================" ) +export FIXKITCHENIBET=$( echo "Oh man, I bet you wish it was that easy!" ) + +## Build Common +export BUILDMENUTITLE=$( echo "Today's Lunch Menu:" ) +export BUILDREPOMENU1=$( echo "$REPOSAOKP repository" ) +export BUILDREPOMENU2=$( echo "$REPOSAOSP43 repository" ) +export BUILDREPOMENU3=$( echo "$REPOSAOSP repository" ) +export BUILDREPOMENU4=$( echo "$REPOSCARBON repository" ) +export BUILDREPOMENU5=$( echo "$REPOSCM10 repository" ) +export BUILDREPOMENU6=$( echo "$REPOSCM repository" ) +export BUILDREPOMENU7=$( echo "$REPOSEV repository" ) +export BUILDREPOMENU8=$( echo "$REPOSOMNI repository" ) +export BUILDREPOMENU9=$( echo "$REPOSPACMAN repository" ) +export BUILDREPOMENU10=$( echo "$REPOSPARA repository" ) +export BUILDALLABOVE=$( echo "Build all above!" ) +export BUILDREPONOTSETUP=$( echo "The selected android repository is not setup!" ) +export BUILDDEVICENOTCOMPATIBLE=$( echo "This device is not compatible with this repository, try again!" ) +export BUILDMENURETURN=$( echo "Returning to Build Menu, Press Enter to continue: " ) + +## Buildmenu +export BUILDMENU1=$( echo "Build Nexus 4" ) +export BUILDMENU2=$( echo "Build Nexus 5" ) +export BUILDMENU3=$( echo "Build Nexus 7" ) +export BUILDMENU4=$( echo "Build Nexus 10" ) +export BUILDMENU5=$( echo "Build Galaxy Nexus" ) +export BUILDMENU6=$( echo "Build Nexus S" ) +export BUILDMENU7=$( echo "Build Xoom Tablet" ) +export BUILDMENU8=$( echo "Build all above!" ) +export BUILDMENU9=$( echo "Build other device" ) +export BUILDMENU10=$( echo "Build with other repository" ) + +## Builddevice +export BUILDDEVICEBEBUILT=$( echo "is selected to be built!" ) +export BUILDDEVICEWHICHREPO=$( echo "Which android repository are we building from today?" ) +export BUILDDEVICENEXUS4=$( echo "Build $NEXUS4" ) +export BUILDDEVICENEXUS5=$( echo "Build $NEXUS5" ) +export BUILDDEVICEGSMGNEXUS=$( echo "Build $GSMGNEXUS" ) +export BUILDDEVICESPRGNEXUS=$( echo "Build $SPRGNEXUS" ) +export BUILDDEVICEVZWGNEXUS=$( echo "Build $VZWGNEXUS" ) +export BUILDDEVICEGSMNEXUSS=$( echo "Build $GSMNEXUSS" ) +export BUILDDEVICESPRNEXUSS=$( echo "Build $SPRNEXUSS" ) +export BUILDDEVICEWIFINEXUS72012=$( echo "Build $WIFINEXUS72012" ) +export BUILDDEVICEGSMNEXUS72012=$( echo "Build $GSMNEXUS72012" ) +export BUILDDEVICEALLNEXUS72012=$( echo "Build $ALLNEXUS72012" ) +export BUILDDEVICEWIFINEXUS72013=$( echo "Build $WIFINEXUS72013" ) +export BUILDDEVICELTENEXUS72013=$( echo "Build $LTENEXUS72013" ) +export BUILDDEVICEALLNEXUS72013=$( echo "Build $ALLNEXUS72013" ) +export BUILDDEVICENEXUS10=$( echo "Build $NEXUS10" ) +export BUILDDEVICEWIFIXOOM=$( echo "Build $WIFIXOOM" ) +export BUILDDEVICEVZWXOOM=$( echo "Build $VZWXOOM" ) + +## Buildother +export BUILDOTHERBEBUILT=$( echo "Build other device is selected to be built!" ) +export BUILDOTHERTYPEDEVICE=$( echo "Please type in which device you would like to build" ) +export BUILDOTHERTYPELIST=$( echo "Type in list to see all supported devices" ) +export BUILDOTHERTYPEEXIT=$( echo "Type in exit to go back" ) +export BUILDOTHERBUILDTITLE=$( echo "Device List" ) +export BUILDOTHERBUILDUNDERLINE=$( echo "===========" ) +export BUILDOTHERNOTCOMPATIBLE=$( echo "This device is not compatible with this repository, build anyways?" ) +export BUILDOTHERCONTINUE=$( echo "Continuing the build" ) +export BUILDOTHERNOTVALID=$( echo "Not a vaild answer, not going to build" ) + +## Buildotherrepo +export BUILDOTHERREPOEMPTY=$( echo "other repo file is empty, please add to file then try again!" ) +export BUILDOTHERREPOBEBUILT=$( echo "Build with other repository is selected to be built!" ) + +## Buildandro +export BUILDANDROCLEAN=$( echo "Clean out folder?" ) +export BUILDANDROCLEANENTER=$( echo "Did you just hit enter without a care? for that im just gonna clean the folder anyways.." ) +export BUILDANDROCCACHECONTINUEWITHOUT=$( echo "Continuing without ccache use; if you want to use ccache, please set it up" ) +export BUILDANDROCCACHEFOUND=$( echo "Found ccache folder, will use for build" ) +export BUILDANDROCCACHEDIDNOTDETECT=$( echo "The kitchen did not detect the ccache folder, did you want to make one now?" ) +export BUILDANDROCCACHEOTHER=$( echo "If ccache is located at another location type in other" ) +export BUILDANDROCCACHEHOWBIG=$( echo "How big do you want the maximum size of ccache? suggested size is 50 - 100 gigabytes" ) +export BUILDANDROCCACHEAMOUNTTYPED=$( echo "Keep in mind the amount typed is in gigabytes" ) +export BUILDANDROCCACHEREPONOTSUPPORTED=$( echo "Repository does not support ccache, continuing without it" ) +export BUILDANDROCCACHEEXACTLOCATION=$( echo "Where is the exact location of ccache? Example of where default location is is ~/.ccache" ) +export BUILDANDROCCACHENOTFOUND=$( echo "Location specified was not found, continuing without it" ) +export BUILDANDROREPONOTSUPPORTED=$( echo "Repository not supported!" ) +export BUILDANDROBUILDMESSEDUP=$( echo "Build messed up!" ) +export BUILDANDROMAKETEMP1=$( echo "Making temporary folder for post-building" ) +export BUILDANDROMAKETEMP2=$( echo "fixes" ) +export BUILDANDROUNZIP=$( echo "Unzipping" ) +export BUILDANDRORMSTUFF=$( echo "Removing uneeded recovery folder and file_contexts from" ) +export BUILDANDROADDROM1=$( echo "Adding rom manager items to" ) +export BUILDANDROADDROM2=$( echo "'s build.prop" ) +export BUILDANDROZIP=$( echo "Zipping" ) +export BUILDANDROSIGN1=$( echo "Signing" ) +export BUILDANDROSIGN2=$( echo "with test keys" ) +export BUILDANDROMOVEOLD1=$( echo "Moving older build to" ) +export BUILDANDROMOVEOLD2=$( echo "/old" ) +export BUILDANDROCOPY=$( echo "Copying to" ) +export BUILDANDROCLEANUP=$( echo "Cleaning up temporary folder" ) + +## Buildautomenu +export BUILDAUTOMENUTITLE=$( echo "Auto Builder Menu" ) +export BUILDAUTOMENU1=$( echo "Run Auto Builder" ) +export BUILDAUTOMENU2=$( echo "Add to auto build list" ) +export BUILDAUTOMENU3=$( echo "Clear auto build list" ) +export BUILDAUTOMENU4=$( echo "Toggle Auto Builder's output" ) +export BUILDAUTOMENU5=$( echo "Toggle Auto Builder's build other repo" ) +export BUILDAUTOMENU6=$( echo "Toggle Auto Builder's sleep function" ) +export BUILDAUTOMENUSETAUTO=$( echo "Which android repository are we setting for auto build?" ) +export BUILDAUTOMENUMOVEON=$( echo "Finished with adding repos, move on to adding devices" ) +export BUILDAUTOMENUADD1=$( echo "Added" ) +export BUILDAUTOMENUADD2=$( echo "to auto build files" ) +export BUILDAUTOMENUTYPEDEVICE=$( echo "Please type in Which android device are we setting for auto build" ) +export BUILDAUTOMENUWANTTOCLEAR=$( echo "Are you sure you want to clear auto build files?" ) +export BUILDAUTOMENUCLEARED=$( echo "Auto build files cleared" ) +export BUILDAUTOMENUNOTCLEARED=$( echo "Auto build files left untouched" ) +export BUILDAUTOMENUOUTPUT=$( echo "This will output buildauto into swordkitchen script folder" ) +export BUILDAUTOMENUSOMEWHERE=$( echo "Unless you want it to be somewhere else?" ) +export BUILDAUTOMENUTYPEOUTPUT=$( echo "Type yes to output somewhere else:" ) +export BUILDAUTOMENUTYPEABSOLUTE=$( echo "Please type the absolute path of where u want the buildoutput.txt to be" ) +export BUILDAUTOMENUOUTPUTSENT=$( echo "Output will be sent to" ) +export BUILDAUTOMENUOUTPUTCLEAR=$( echo "Output file cleared, buildauto will now output regularly" ) +export BUILDAUTOMENUADDBELOWREPO=$( echo "Add below this line the repo folder you want to auto build, otherrepo are in the otherrepo folder, list each repo per line" ) +export BUILDAUTOMENUADDBELOWDEVICE=$( echo "Add below this line the device codename you want to auto build, list each device per line" ) +export BUILDAUTOMENUOTHERREPOON=$( echo "Auto Builder's build other repo is now on!" ) +export BUILDAUTOMENUOTHERREPOOFF=$( echo "Auto Builder's build other repo is now off!" ) +export BUILDAUTOMENUCOMPSLEEPTIME1=$( echo "Do you want the computer to sleep for a" ) +export BUILDAUTOMENUCOMPSLEEPTIME2=$( echo "certain amount of hours or wake up at a certain time?" ) +export BUILDAUTOMENUSLEEPMENU1=$( echo "Wake up at a certain time" ) +export BUILDAUTOMENUSLEEPMENU2=$( echo "Certain amount of hours" ) +export BUILDAUTOMENUSPECIFIC1=$( echo "What time do you want the build server to wake up at the next day?" ) +export BUILDAUTOMENUSPECIFIC2=$( echo "24 hours configuration, Example: for 2pm put 14:00, for 7am put 07:00" ) +export BUILDAUTOMENUHOURS1=$( echo "How long would you like for the build server to sleep after building?" ) +export BUILDAUTOMENUHOURS2=$( echo "The number being inputted is in hours" ) +export BUILDAUTOMENUTYPEPASSY=$( echo "Please type in your user's password, so the build server can sleep" ) +export BUILDAUTOMENUSLEEPON=$( echo "Auto Builder's sleep function is now on!" ) +export BUILDAUTOMENUSLEEPOFF=$( echo "Auto Builder's sleep function is now off!" ) + +## Buildauto +export BUILDAUTOPLEASE=( echo "Please use the Auto Builder config menu" ) +export BUILDAUTOBOTH=( echo "Both Auto Builder's repository and device is not set!" ) +export BUILDAUTOREPO=( echo "Auto Builder's repository is not set!" ) +export BUILDAUTODEVICE=( echo "Auto Builder's device is not set!" ) +export BUILDAUTOWAIT=( echo "Waiting for ten minutes! this is not a countdown.." ) +export BUILDAUTOSLEEP=( echo "Sleep..." ) diff --git a/translation/mahimahi b/translation/mahimahi index 1e29146..9b7ba49 100755 --- a/translation/mahimahi +++ b/translation/mahimahi @@ -32,19 +32,48 @@ export ANSWERY=$( echo "y" ) export ANSWERNO=$( echo "no" ) export ANSWERN=$( echo "n" ) +## Macosxinit +export MACOSXINITRUN=$( echo "You are running Mac OS X!" ) +export MACOSXINITCANTFINDDMG=$( echo "We can't find the android image to mount, this is needed to build on mac os x +If you already have one made please put it in its proper place with its proper title +It's proper place and title is in your home folder named android.dmg, example is ~/android.dmg + +Would you like to make a new android.dmg?" ) +export MACOSXINITHOWBIG=$( echo "How big would you like android.dmg? Keep in mind it will increase its size if u need more space +Type in number in gigabytes" ) +export MACOSXINITMOUNTNEW=$( echo "Mounting new android.dmg at /Volumes/android.." ) +export MACOSXINITMOVEINTO=$( echo "Moving into android.dmg.." ) +export MACOSXINITSETUP=$( echo "Setting up kitchen.." ) +export MACOSXINITSETUP=$( echo "Setting up kitchen.." ) +export MACOSXINITFOUNDDMG=$( echo "Found your android.dmg, mounting.." ) +export MACOSXINITCANTFINDKITCHEN=$( echo "We can't find the rom kitchen in /Volumes/android + +Would you like to make install rom kitchen in /Volumes/android?" ) + ## Errors export ERRORHEADER=$( echo "An Error Has Occurred! ======================" ) +export ERRORSIDEEFFECTS=$( echo "Side effects may include failure to build properly and lack of support +for build environment setup" ) export ERRORCONTACTINFO=$( echo "If you see this in error, please notify me at either xda or rootzwiki If you prefer email you can reach me at mishana@swordrune10.net If your also inclined, i have a freenode channel #Swordrune10Kitchen" ) +export BOUNCERPOWERPC=$( echo "PowerPC processor detected! +=========================== +Running powerpc isn't necessarily prohibited, but it is not suggested" ) +export BOUNCER32BIT=$( echo "32-bit processor detected! +========================== +Running 32-bit isn't necessarily prohibited, but it is not suggested" ) +export BOUNCERKITCHENHOME=$( echo "Kitchen not set in correct place! +================================= +Kitchen will not work correctly if placed in home folder, please move" ) export ENVIRONMENTSETUP32BIT=$( echo "32-bit not supported! ===================== Build enviroment installation only supports 64-bit Operating Systems" ) export ENVIRONMENTSETUPNOTSUPPORTED=$( echo "Operating System not supported! =============================== Supported Operating Systems (only 64-bit): -Ubuntu 10.04 - 13.10 (Full Support) +Ubuntu 10.04 - 14.04 (Full Support) Debian (General Support) Linux Mint (General Support) Arch Linux (General Support) @@ -64,6 +93,29 @@ export REPOSOMNI=$( echo "omnirom" ) export REPOSPACMAN=$( echo "PAC-man" ) export REPOSPARA=$( echo "ParanoidAndroid" ) +## Devices +export NEXUS4=$( echo "GSM Nexus 4" ) +export NEXUS5=$( echo "LTE Nexus 5" ) +export GSMGNEXUS=$( echo "GSM Galaxy Nexus" ) +export SPRGNEXUS=$( echo "Sprint Galaxy Nexus" ) +export VZWGNEXUS=$( echo "Verizon Galaxy Nexus" ) +export ALLGNEXUS=$( echo "All Galaxy Nexi" ) +export GSMNEXUSS=$( echo "GSM Nexus S" ) +export SPRNEXUSS=$( echo "Sprint Nexus S 4G" ) +export ALLNEXUSS=$( echo "All Nexus S'" ) +export WIFINEXUS72012=$( echo "Wifi Nexus 7 (2012) Tablet" ) +export GSMNEXUS72012=$( echo "GSM Nexus 7 (2012) Tablet" ) +export ALLNEXUS72012=$( echo "All Nexus 7 (2012) Tablets" ) +export WIFINEXUS72013=$( echo "Wifi Nexus 7 (2013) Tablet" ) +export LTENEXUS72013=$( echo "LTE Nexus 7 (2013) Tablet" ) +export ALLNEXUS72013=$( echo "All Nexus 7 (2013) Tablets" ) +export ALLNEXUS7=$( echo "All Nexus 7 Tablets" ) +export NEXUS10=$( echo "Wifi Nexus 10" ) +export WIFIXOOM=$( echo "Wifi Xoom Tablet" ) +export VZWXOOM=$( echo "Verizon Xoom Tablet" ) +export ALLXOOM=$( echo "All Xoom Tablets" ) +export ALLNEXUS=$( echo "All Nexus Devices" ) + ## Scriptmakir export SCRIPTMAKIRREDEEMER=$( echo "Redeemer is running!" ) export SCRIPTMAKIRRMKITCHEN=$( echo "Removing Kitchen" ) @@ -163,7 +215,7 @@ export ENVIRONMENTSETUPDEBIAN=$( echo "You are running Debian!" ) export ENVIRONMENTSETUPULMN=$( echo "You are running Ubuntu, either 10.04, 10.10, or 11.04!" ) export ENVIRONMENTSETUPUO=$( echo "You are running Ubuntu 11.10!" ) export ENVIRONMENTSETUPUPQ=$( echo "You are running Ubuntu 12.04 or 12.10!" ) -export ENVIRONMENTSETUPURS=$( echo "You are running Ubuntu 13.04 or 13.10!" ) +export ENVIRONMENTSETUPURST=$( echo "You are running Ubuntu 13.04, 13.10, or 14.04!" ) export ENVIRONMENTSETUPMINT=$( echo "You are running Linux Mint!" ) export ENVIRONMENTSETUPARCH=$( echo "You are running Arch Linux!" ) export ENVIRONMENTSETUPDARWIN=$( echo "You are running Mac OS X!" ) @@ -183,15 +235,70 @@ export PREUPDATECM=$( echo "Updating $REPOSCM's local_manifests folder" ) export PREUPDATEOMNI=$( echo "Updating $REPOSOMNI's local_manifests folder" ) ## Configkitchen -export REPOSYNCMENUTITLE=$( echo "Kitchen Config Menu" ) -export REPOSYNCMENU1=$( echo "Edit Gitpuller" ) -export REPOSYNCMENU2=$( echo "Edit Romeditor" ) -export REPOSYNCMENU3=$( echo "Create/Edit other repo list" ) -export REPOSYNCOTHERREPO=$( echo "editing custom repos file location" ) -export REPOSYNCOTHERREPONAME=$( echo "editing custom repos name" ) +export CONFIGKITCHENMENUTITLE=$( echo "Kitchen Config Menu" ) +export CONFIGKITCHENMENU1=$( echo "Edit Gitpuller" ) +export CONFIGKITCHENMENU2=$( echo "Edit Romeditor" ) +export CONFIGKITCHENMENU3=$( echo "Create/Edit other repo list" ) +export CONFIGKITCHENOTHERREPO=$( echo "editing custom repos file location" ) +export CONFIGKITCHENOTHERREPONAME=$( echo "editing custom repos name" ) -## Buildmenu +## Fixkitchen +export FIXKITCHENSOMETHINGNOT=$( echo "Something is not working right? What should we do?" ) +export FIXKITCHENPURGE=$( echo "Purge = remove files, download from origin" ) +export FIXKITCHENDELETE=$( echo "Delete = delete it!" ) +export FIXKITCHENMENU1=$( echo "Add a repo to a certain local_manifests folder" ) +export FIXKITCHENMENU2=$( echo "Purge a certain local_manifests folder" ) +export FIXKITCHENMENU3=$( echo "Purge or Delete a certain repository" ) +export FIXKITCHENMENU4=$( echo "Purge or Delete all the repositories" ) +export FIXKITCHENMENU5=$( echo "Purge or Delete the Kitchen app" ) +export FIXKITCHENMENU6=$( echo "Delete the Kitchen app, and its dependencies" ) +export FIXKITCHENMENU7=$( echo "Delete the contents of your computer" ) +export FIXKITCHENMENU8=$( echo "Delete the entire internet" ) +export FIXKITCHENADD=$( echo "Adding repo to otherdevices.xml for" ) +export FIXKITCHENPURGE=$( echo "local_manifests folder was purged" ) +export FIXKITCHENWHICHADD=$( echo "Which repo would you like to add to?" ) +export FIXKITCHENWHICHPURGE=$( echo "Which repo would you like to purge its local_manifests folder?" ) +export FIXKITCHENWHICHREPO=$( echo "Which repo would you like to purge or delete?" ) +export FIXKITCHENPURGEDELETE=$( echo "Purge or Delete?" ) +export FIXKITCHENPURGEDELETEEXIT=$( echo "Purge = remove files, download from origin +Delete = delete it! +type exit to go to back" ) +export FIXKITCHENPURGEDELETEREPO=$( echo "Purge or Delete all of the repositories?" ) +export FIXKITCHENPURGEDELETEKITCHEN=$( echo "Purge or Delete the Kitchen app?" ) +export FIXKITCHENREDEEMER=$( echo "Switching to Redeemer script.." ) +export FIXKITCHENDELETEKITCHEN=$( echo "Are you sure you want to remove the Kitchen app?" ) +export FIXKITCHENTYPEYES=$( echo "You must type in \"yes\" to continue" ) +export FIXKITCHENTYPEABORT=$( echo "Type in anything else to abort operation" ) +export FIXKITCHENDESTROYERSWITCH=$( echo "Switching to Destroyer script" ) +export FIXKITCHENDELETEKITCHENALL=$( echo "Are you sure you want to remove the Kitchen app and its dependencies?" ) +export FIXKITCHENNOTDELETEBUILDS=$( echo "Please note: the builds directory will not be deleted" ) +export FIXKITCHENDESTROYEROFWORLDSSWITCH=$( echo "Switching to Destroyer of Worlds script" ) +export FIXKITCHENDELETECOMPUTER=$( echo "Are you sure..? this will delete everything on your computer, including mounted external drives and flash drives!!" ) +export SUICIDENOTE=$( echo "yes, please delete everything off of my computer" ) +export FIXKITCHENMUSTTYPEEXACTLY=$( echo "You must type in exactly \"$SUICIDENOTE\" to continue" ) +export FIXKITCHENTYPEPASSY=$( echo "Please type in your password to destroy everything" ) +export TROLLFACETITLE=$( echo "Trollface's Android Kitchen!" ) +export TROLLFACEUNDERLINE=$( echo "============================" ) +export FIXKITCHENIBET=$( echo "Oh man, I bet you wish it was that easy!" ) + +## Build Common export BUILDMENUTITLE=$( echo "Today's Lunch Menu:" ) +export BUILDREPOMENU1=$( echo "$REPOSAOKP repository" ) +export BUILDREPOMENU2=$( echo "$REPOSAOSP43 repository" ) +export BUILDREPOMENU3=$( echo "$REPOSAOSP repository" ) +export BUILDREPOMENU4=$( echo "$REPOSCARBON repository" ) +export BUILDREPOMENU5=$( echo "$REPOSCM10 repository" ) +export BUILDREPOMENU6=$( echo "$REPOSCM repository" ) +export BUILDREPOMENU7=$( echo "$REPOSEV repository" ) +export BUILDREPOMENU8=$( echo "$REPOSOMNI repository" ) +export BUILDREPOMENU9=$( echo "$REPOSPACMAN repository" ) +export BUILDREPOMENU10=$( echo "$REPOSPARA repository" ) +export BUILDALLABOVE=$( echo "Build all above!" ) +export BUILDREPONOTSETUP=$( echo "The selected android repository is not setup!" ) +export BUILDDEVICENOTCOMPATIBLE=$( echo "This device is not compatible with this repository, try again!" ) +export BUILDMENURETURN=$( echo "Returning to Build Menu, Press Enter to continue: " ) + +## Buildmenu export BUILDMENU1=$( echo "Build Nexus 4" ) export BUILDMENU2=$( echo "Build Nexus 5" ) export BUILDMENU3=$( echo "Build Nexus 7" ) @@ -202,3 +309,112 @@ export BUILDMENU7=$( echo "Build Xoom Tablet" ) export BUILDMENU8=$( echo "Build all above!" ) export BUILDMENU9=$( echo "Build other device" ) export BUILDMENU10=$( echo "Build with other repository" ) + +## Builddevice +export BUILDDEVICEBEBUILT=$( echo "is selected to be built!" ) +export BUILDDEVICEWHICHREPO=$( echo "Which android repository are we building from today?" ) +export BUILDDEVICENEXUS4=$( echo "Build $NEXUS4" ) +export BUILDDEVICENEXUS5=$( echo "Build $NEXUS5" ) +export BUILDDEVICEGSMGNEXUS=$( echo "Build $GSMGNEXUS" ) +export BUILDDEVICESPRGNEXUS=$( echo "Build $SPRGNEXUS" ) +export BUILDDEVICEVZWGNEXUS=$( echo "Build $VZWGNEXUS" ) +export BUILDDEVICEGSMNEXUSS=$( echo "Build $GSMNEXUSS" ) +export BUILDDEVICESPRNEXUSS=$( echo "Build $SPRNEXUSS" ) +export BUILDDEVICEWIFINEXUS72012=$( echo "Build $WIFINEXUS72012" ) +export BUILDDEVICEGSMNEXUS72012=$( echo "Build $GSMNEXUS72012" ) +export BUILDDEVICEALLNEXUS72012=$( echo "Build $ALLNEXUS72012" ) +export BUILDDEVICEWIFINEXUS72013=$( echo "Build $WIFINEXUS72013" ) +export BUILDDEVICELTENEXUS72013=$( echo "Build $LTENEXUS72013" ) +export BUILDDEVICEALLNEXUS72013=$( echo "Build $ALLNEXUS72013" ) +export BUILDDEVICENEXUS10=$( echo "Build $NEXUS10" ) +export BUILDDEVICEWIFIXOOM=$( echo "Build $WIFIXOOM" ) +export BUILDDEVICEVZWXOOM=$( echo "Build $VZWXOOM" ) + +## Buildother +export BUILDOTHERBEBUILT=$( echo "Build other device is selected to be built!" ) +export BUILDOTHERTYPEDEVICE=$( echo "Please type in which device you would like to build" ) +export BUILDOTHERTYPELIST=$( echo "Type in list to see all supported devices" ) +export BUILDOTHERTYPEEXIT=$( echo "Type in exit to go back" ) +export BUILDOTHERBUILDTITLE=$( echo "Device List" ) +export BUILDOTHERBUILDUNDERLINE=$( echo "===========" ) +export BUILDOTHERNOTCOMPATIBLE=$( echo "This device is not compatible with this repository, build anyways?" ) +export BUILDOTHERCONTINUE=$( echo "Continuing the build" ) +export BUILDOTHERNOTVALID=$( echo "Not a vaild answer, not going to build" ) + +## Buildotherrepo +export BUILDOTHERREPOEMPTY=$( echo "other repo file is empty, please add to file then try again!" ) +export BUILDOTHERREPOBEBUILT=$( echo "Build with other repository is selected to be built!" ) + +## Buildandro +export BUILDANDROCLEAN=$( echo "Clean out folder?" ) +export BUILDANDROCLEANENTER=$( echo "Did you just hit enter without a care? for that im just gonna clean the folder anyways.." ) +export BUILDANDROCCACHECONTINUEWITHOUT=$( echo "Continuing without ccache use; if you want to use ccache, please set it up" ) +export BUILDANDROCCACHEFOUND=$( echo "Found ccache folder, will use for build" ) +export BUILDANDROCCACHEDIDNOTDETECT=$( echo "The kitchen did not detect the ccache folder, did you want to make one now?" ) +export BUILDANDROCCACHEOTHER=$( echo "If ccache is located at another location type in other" ) +export BUILDANDROCCACHEHOWBIG=$( echo "How big do you want the maximum size of ccache? suggested size is 50 - 100 gigabytes" ) +export BUILDANDROCCACHEAMOUNTTYPED=$( echo "Keep in mind the amount typed is in gigabytes" ) +export BUILDANDROCCACHEREPONOTSUPPORTED=$( echo "Repository does not support ccache, continuing without it" ) +export BUILDANDROCCACHEEXACTLOCATION=$( echo "Where is the exact location of ccache? Example of where default location is is ~/.ccache" ) +export BUILDANDROCCACHENOTFOUND=$( echo "Location specified was not found, continuing without it" ) +export BUILDANDROREPONOTSUPPORTED=$( echo "Repository not supported!" ) +export BUILDANDROBUILDMESSEDUP=$( echo "Build messed up!" ) +export BUILDANDROMAKETEMP1=$( echo "Making temporary folder for post-building" ) +export BUILDANDROMAKETEMP2=$( echo "fixes" ) +export BUILDANDROUNZIP=$( echo "Unzipping" ) +export BUILDANDRORMSTUFF=$( echo "Removing uneeded recovery folder and file_contexts from" ) +export BUILDANDROADDROM1=$( echo "Adding rom manager items to" ) +export BUILDANDROADDROM2=$( echo "'s build.prop" ) +export BUILDANDROZIP=$( echo "Zipping" ) +export BUILDANDROSIGN1=$( echo "Signing" ) +export BUILDANDROSIGN2=$( echo "with test keys" ) +export BUILDANDROMOVEOLD1=$( echo "Moving older build to" ) +export BUILDANDROMOVEOLD2=$( echo "/old" ) +export BUILDANDROCOPY=$( echo "Copying to" ) +export BUILDANDROCLEANUP=$( echo "Cleaning up temporary folder" ) + +## Buildautomenu +export BUILDAUTOMENUTITLE=$( echo "Auto Builder Menu" ) +export BUILDAUTOMENU1=$( echo "Run Auto Builder" ) +export BUILDAUTOMENU2=$( echo "Add to auto build list" ) +export BUILDAUTOMENU3=$( echo "Clear auto build list" ) +export BUILDAUTOMENU4=$( echo "Toggle Auto Builder's output" ) +export BUILDAUTOMENU5=$( echo "Toggle Auto Builder's build other repo" ) +export BUILDAUTOMENU6=$( echo "Toggle Auto Builder's sleep function" ) +export BUILDAUTOMENUSETAUTO=$( echo "Which android repository are we setting for auto build?" ) +export BUILDAUTOMENUMOVEON=$( echo "Finished with adding repos, move on to adding devices" ) +export BUILDAUTOMENUADD1=$( echo "Added" ) +export BUILDAUTOMENUADD2=$( echo "to auto build files" ) +export BUILDAUTOMENUTYPEDEVICE=$( echo "Please type in Which android device are we setting for auto build" ) +export BUILDAUTOMENUWANTTOCLEAR=$( echo "Are you sure you want to clear auto build files?" ) +export BUILDAUTOMENUCLEARED=$( echo "Auto build files cleared" ) +export BUILDAUTOMENUNOTCLEARED=$( echo "Auto build files left untouched" ) +export BUILDAUTOMENUOUTPUT=$( echo "This will output buildauto into swordkitchen script folder" ) +export BUILDAUTOMENUSOMEWHERE=$( echo "Unless you want it to be somewhere else?" ) +export BUILDAUTOMENUTYPEOUTPUT=$( echo "Type yes to output somewhere else:" ) +export BUILDAUTOMENUTYPEABSOLUTE=$( echo "Please type the absolute path of where u want the buildoutput.txt to be" ) +export BUILDAUTOMENUOUTPUTSENT=$( echo "Output will be sent to" ) +export BUILDAUTOMENUOUTPUTCLEAR=$( echo "Output file cleared, buildauto will now output regularly" ) +export BUILDAUTOMENUADDBELOWREPO=$( echo "Add below this line the repo folder you want to auto build, otherrepo are in the otherrepo folder, list each repo per line" ) +export BUILDAUTOMENUADDBELOWDEVICE=$( echo "Add below this line the device codename you want to auto build, list each device per line" ) +export BUILDAUTOMENUOTHERREPOON=$( echo "Auto Builder's build other repo is now on!" ) +export BUILDAUTOMENUOTHERREPOOFF=$( echo "Auto Builder's build other repo is now off!" ) +export BUILDAUTOMENUCOMPSLEEPTIME1=$( echo "Do you want the computer to sleep for a" ) +export BUILDAUTOMENUCOMPSLEEPTIME2=$( echo "certain amount of hours or wake up at a certain time?" ) +export BUILDAUTOMENUSLEEPMENU1=$( echo "Wake up at a certain time" ) +export BUILDAUTOMENUSLEEPMENU2=$( echo "Certain amount of hours" ) +export BUILDAUTOMENUSPECIFIC1=$( echo "What time do you want the build server to wake up at the next day?" ) +export BUILDAUTOMENUSPECIFIC2=$( echo "24 hours configuration, Example: for 2pm put 14:00, for 7am put 07:00" ) +export BUILDAUTOMENUHOURS1=$( echo "How long would you like for the build server to sleep after building?" ) +export BUILDAUTOMENUHOURS2=$( echo "The number being inputted is in hours" ) +export BUILDAUTOMENUTYPEPASSY=$( echo "Please type in your user's password, so the build server can sleep" ) +export BUILDAUTOMENUSLEEPON=$( echo "Auto Builder's sleep function is now on!" ) +export BUILDAUTOMENUSLEEPOFF=$( echo "Auto Builder's sleep function is now off!" ) + +## Buildauto +export BUILDAUTOPLEASE=( echo "Please use the Auto Builder config menu" ) +export BUILDAUTOBOTH=( echo "Both Auto Builder's repository and device is not set!" ) +export BUILDAUTOREPO=( echo "Auto Builder's repository is not set!" ) +export BUILDAUTODEVICE=( echo "Auto Builder's device is not set!" ) +export BUILDAUTOWAIT=( echo "Waiting for ten minutes! this is not a countdown.." ) +export BUILDAUTOSLEEP=( echo "Sleep..." ) diff --git a/translation/pirarucu b/translation/pirarucu index fa96faa..8b2d0d1 100755 --- a/translation/pirarucu +++ b/translation/pirarucu @@ -15,7 +15,7 @@ # Brazilian Portuguese -## V1.0 Translated by: Doublepranks ## +## V1.5 Translated by: Doublepranks ## ## Common export KITCHENTITLE=$( echo "Swordrune10's Android Kitchen!" ) @@ -37,18 +37,51 @@ export ANSWERY=$( echo "s" ) export ANSWERNO=$( echo "Nao" ) export ANSWERN=$( echo "n" ) +## Macosxinit +## NEEDS TRANSLATION! +export MACOSXINITRUN=$( echo "You are running Mac OS X!" ) +export MACOSXINITCANTFINDDMG=$( echo "We can't find the android image to mount, this is needed to build on mac os x +If you already have one made please put it in its proper place with its proper title +It's proper place and title is in your home folder named android.dmg, example is ~/android.dmg + +Would you like to make a new android.dmg?" ) +export MACOSXINITHOWBIG=$( echo "How big would you like android.dmg? Keep in mind it will increase its size if u need more space +Type in number in gigabytes" ) +export MACOSXINITMOUNTNEW=$( echo "Mounting new android.dmg at /Volumes/android.." ) +export MACOSXINITMOVEINTO=$( echo "Moving into android.dmg.." ) +export MACOSXINITSETUP=$( echo "Setting up kitchen.." ) +export MACOSXINITSETUP=$( echo "Setting up kitchen.." ) +export MACOSXINITFOUNDDMG=$( echo "Found your android.dmg, mounting.." ) +export MACOSXINITCANTFINDKITCHEN=$( echo "We can't find the rom kitchen in /Volumes/android + +Would you like to make install rom kitchen in /Volumes/android?" ) +## NEEDS TRANSLATION! + ## Errors ## NEEDS TRANSLATION! +export ERRORHEADER=$( echo "An Error Has Occurred! +======================" ) +export ERRORSIDEEFFECTS=$( echo "Side effects may include failure to build properly and lack of support +for build environment setup" ) export ERRORCONTACTINFO=$( echo "If you see this in error, please notify me at either xda or rootzwiki If you prefer email you can reach me at mishana@swordrune10.net If your also inclined, i have a freenode channel #Swordrune10Kitchen" ) +export BOUNCERPOWERPC=$( echo "PowerPC processor detected! +=========================== +Running powerpc isn't necessarily prohibited, but it is not suggested" ) +export BOUNCER32BIT=$( echo "32-bit processor detected! +========================== +Running 32-bit isn't necessarily prohibited, but it is not suggested" ) +export BOUNCERKITCHENHOME=$( echo "Kitchen not set in correct place! +================================= +Kitchen will not work correctly if placed in home folder, please move" ) export ENVIRONMENTSETUP32BIT=$( echo "32-bit not supported! ===================== Build enviroment installation only supports 64-bit Operating Systems" ) export ENVIRONMENTSETUPNOTSUPPORTED=$( echo "Operating System not supported! =============================== Supported Operating Systems (only 64-bit): -Ubuntu 10.04 - 13.10 (Full Support) +Ubuntu 10.04 - 14.04 (Full Support) Debian (General Support) Linux Mint (General Support) Arch Linux (General Support) @@ -69,6 +102,31 @@ export REPOSOMNI=$( echo "omnirom" ) export REPOSPACMAN=$( echo "PAC-man" ) export REPOSPARA=$( echo "ParanoidAndroid" ) +## Devices +## NEEDS TRANSLATION! +export NEXUS4=$( echo "GSM Nexus 4" ) +export NEXUS5=$( echo "LTE Nexus 5" ) +export GSMGNEXUS=$( echo "GSM Galaxy Nexus" ) +export SPRGNEXUS=$( echo "Sprint Galaxy Nexus" ) +export VZWGNEXUS=$( echo "Verizon Galaxy Nexus" ) +export ALLGNEXUS=$( echo "All Galaxy Nexi" ) +export GSMNEXUSS=$( echo "GSM Nexus S" ) +export SPRNEXUSS=$( echo "Sprint Nexus S 4G" ) +export ALLNEXUSS=$( echo "All Nexus S'" ) +export WIFINEXUS72012=$( echo "Wifi Nexus 7 (2012) Tablet" ) +export GSMNEXUS72012=$( echo "GSM Nexus 7 (2012) Tablet" ) +export ALLNEXUS72012=$( echo "All Nexus 7 (2012) Tablets" ) +export WIFINEXUS72013=$( echo "Wifi Nexus 7 (2013) Tablet" ) +export LTENEXUS72013=$( echo "LTE Nexus 7 (2013) Tablet" ) +export ALLNEXUS72013=$( echo "All Nexus 7 (2013) Tablets" ) +export ALLNEXUS7=$( echo "All Nexus 7 Tablets" ) +export NEXUS10=$( echo "Wifi Nexus 10" ) +export WIFIXOOM=$( echo "Wifi Xoom Tablet" ) +export VZWXOOM=$( echo "Verizon Xoom Tablet" ) +export ALLXOOM=$( echo "All Xoom Tablets" ) +export ALLNEXUS=$( echo "All Nexus Devices" ) +## NEEDS TRANSLATION! + ## Scriptmakir ## NEEDS TRANSLATION! export SCRIPTMAKIRREDEEMER=$( echo "Redeemer is running!" ) @@ -160,24 +218,24 @@ export REPOSYNCOTHERREPOBRANCH=$( echo "A qual branch o repositorio deve ser atr ## EVERYTHING BELOW NEEDS TRANSLATION! ## Environmentsetup -export ENVIRONMENTSETUPINIT=$( echo "Initilizing the build environment" ) -export ENVIRONMENTSETUPOS=$( echo "Checking what Operating System you are running.." ) -export ENVIRONMENTSETUPINSTALL=$( echo "Installing packages needed, please enter your password" ) -export ENVIRONMENTSETUPDXCODE=$( echo "Is Xcode installed? We recommend version 3.1.4 or newer" ) -export ENVIRONMENTSETUPDMACPORTS=$( echo "Is MacPorts installed?" ) +export ENVIRONMENTSETUPINIT=$( echo "Iniciando embiente de compilacao" ) +export ENVIRONMENTSETUPOS=$( echo "Verificando sistema operacional.." ) +export ENVIRONMENTSETUPINSTALL=$( echo "Instalando pacotes, por favor insira sua senha root." ) +export ENVIRONMENTSETUPDXCODE=$( echo "Ja tem o xcode? versao 3.1.4 ou posterior" ) +export ENVIRONMENTSETUPDMACPORTS=$( echo "Ja tem o MacPorts?" ) # Platform -export ENVIRONMENTSETUPFEDORA=$( echo "You are running Fedora or RedHat!" ) -export ENVIRONMENTSETUPDEBIAN=$( echo "You are running Debian!" ) -export ENVIRONMENTSETUPULMN=$( echo "You are running Ubuntu, either 10.04, 10.10, or 11.04!" ) -export ENVIRONMENTSETUPUO=$( echo "You are running Ubuntu 11.10!" ) -export ENVIRONMENTSETUPUPQ=$( echo "You are running Ubuntu 12.04 or 12.10!" ) -export ENVIRONMENTSETUPURS=$( echo "You are running Ubuntu 13.04 or 13.10!" ) -export ENVIRONMENTSETUPMINT=$( echo "You are running Linux Mint!" ) -export ENVIRONMENTSETUPARCH=$( echo "You are running Arch Linux!" ) -export ENVIRONMENTSETUPDARWIN=$( echo "You are running Mac OS X!" ) - -# Java +export ENVIRONMENTSETUPFEDORA=$( echo "sistema operacional detectado, Fedora / RedHat!" ) +export ENVIRONMENTSETUPDEBIAN=$( echo "sistema operacional detectado, Debian!" ) +export ENVIRONMENTSETUPULMN=$( echo "sistema operacional detectado, Ubuntu 10.04 / 10.10 / 11.04!" ) +export ENVIRONMENTSETUPUO=$( echo "sistema operacional detectado, Ubuntu 11.10!" ) +export ENVIRONMENTSETUPUPQ=$( echo "sistema operacional detectado, 12.04 / 12.10!" ) +export ENVIRONMENTSETUPURST=$( echo "sistema operacional detectado, Ubuntu 13.04 / 13.10 / 14.04!" ) +export ENVIRONMENTSETUPMINT=$( echo "sistema operacional detectado, Linux Mint!" ) +export ENVIRONMENTSETUPARCH=$( echo "sistema operacional detectado, Arch Linux!" ) +export ENVIRONMENTSETUPDARWIN=$( echo "sistema operacional detectado, Mac OS X!" ) + +# Java # I recommend leaving this section as it is. export ENVIRONMENTSETUPFLEXION=$( echo "Installing java will take a while, to do this legally the Kitchen app will use exerpts from flexion.org oab-java script" ) export ENVIRONMENTSETUPFLEXION1=$( echo " [x] Getting Java SE download page" ) export ENVIRONMENTSETUPFLEXION2=$( echo " [x] Getting current release download page" ) @@ -185,22 +243,80 @@ export ENVIRONMENTSETUPFLEXION3=$( echo " [x] Getting previous releases download export ENVIRONMENTSETUPWEBUPD8=$( echo "Installing java will take a while, to do this legally the Kitchen app will use webupd8's java installer" ) ## Preupdate -export PREUPDATEAOSP43=$( echo "Updating $REPOSAOSP43's local_manifests folder" ) -export PREUPDATEAOSP=$( echo "Updating $REPOSAOSP's local_manifests folder" ) -export PREUPDATECM10=$( echo "Updating $REPOSCM10's local_manifests folder" ) -export PREUPDATECM=$( echo "Updating $REPOSCM's local_manifests folder" ) -export PREUPDATEOMNI=$( echo "Updating $REPOSOMNI's local_manifests folder" ) +export PREUPDATEAOSP43=$( echo "Atualizando $REPOSAOSP43's local_manifests folder" ) +export PREUPDATEAOSP=$( echo "Atualizando $REPOSAOSP's local_manifests folder" ) +export PREUPDATECM10=$( echo "Atualizando $REPOSCM10's local_manifests folder" ) +export PREUPDATECM=$( echo "Atualizando $REPOSCM's local_manifests folder" ) +export PREUPDATEOMNI=$( echo "Atualizando $REPOSOMNI's local_manifests folder" ) ## Configkitchen -export REPOSYNCMENUTITLE=$( echo "Kitchen Config Menu" ) -export REPOSYNCMENU1=$( echo "Edit Gitpuller" ) -export REPOSYNCMENU2=$( echo "Edit Romeditor" ) -export REPOSYNCMENU3=$( echo "Create/Edit other repo list" ) -export REPOSYNCOTHERREPO=$( echo "editing custom repos file location" ) -export REPOSYNCOTHERREPONAME=$( echo "editing custom repos name" ) +export CONFIGKITCHENMENUTITLE=$( echo "Kitchen Config Menu" ) +export CONFIGKITCHENMENU1=$( echo "Editar Gitpuller" ) +export CONFIGKITCHENMENU2=$( echo "Editar Romeditor" ) +export CONFIGKITCHENMENU3=$( echo "Criar/Editar outro repo list" ) +export CONFIGKITCHENOTHERREPO=$( echo "Editando outro repos, arquivo ou local " ) +export CONFIGKITCHENOTHERREPONAME=$( echo "Editando outro repos " ) -## Buildmenu +## Fixkitchen +export FIXKITCHENSOMETHINGNOT=$( echo "Algo deu errado! E agora?" ) +export FIXKITCHENPURGE=$( echo "Purge = remover arquivos, baixar de origin" ) +export FIXKITCHENDELETE=$( echo "Delete = deletar?!" ) +export FIXKITCHENMENU1=$( echo "Addicionar arquivo repo a uma pasta local_manifests" ) +export FIXKITCHENMENU2=$( echo "Purge uma pasta local_manifests" ) +export FIXKITCHENMENU3=$( echo "Purge ou deletar um repositorio" ) +export FIXKITCHENMENU4=$( echo "Purge ou deletar todos os repositorios" ) +export FIXKITCHENMENU5=$( echo "Purge or Delete the Kitchen app(Cuidado)" ) +export FIXKITCHENMENU6=$( echo "Delete the Kitchen app, and its dependencies(Cuidado)" ) +export FIXKITCHENMENU7=$( echo "Delete the contents of your computer(Cuidado)" ) +export FIXKITCHENMENU8=$( echo "Delete the entire internet(:o N faz isso n vei '-')" ) +export FIXKITCHENADD=$( echo "Adicionando repo otherdevices.xml " ) +export FIXKITCHENPURGE=$( echo "local_manifests purged" ) +export FIXKITCHENWHICHADD=$( echo "Para qual repositorio adicionar?" ) +export FIXKITCHENWHICHPURGE=$( echo "Para qual repo adicionar esta pasta local_manifests ?" ) +export FIXKITCHENWHICHREPO=$( echo "Qual repositorio gostaria de Purge/Delete?" ) +export FIXKITCHENPURGEDELETE=$( echo "Purge ou Delete?" ) +export FIXKITCHENPURGEDELETEEXIT=$( echo "Purge = remover arquivos, baixar de origin +Delete = deletar?! +Digite exit para sair" ) + +############ Coffee break ;) + +export FIXKITCHENPURGEDELETEREPO=$( echo "Purge or Delete all of the repositories?" ) +export FIXKITCHENPURGEDELETEKITCHEN=$( echo "Purge or Delete the Kitchen app?" ) +export FIXKITCHENREDEEMER=$( echo "Switching to Redeemer script.." ) +export FIXKITCHENDELETEKITCHEN=$( echo "Are you sure you want to remove the Kitchen app?" ) +export FIXKITCHENTYPEYES=$( echo "You must type in \"yes\" to continue" ) +export FIXKITCHENTYPEABORT=$( echo "Type in anything else to abort operation" ) +export FIXKITCHENDESTROYERSWITCH=$( echo "Switching to Destroyer script" ) +export FIXKITCHENDELETEKITCHENALL=$( echo "Are you sure you want to remove the Kitchen app and its dependencies?" ) +export FIXKITCHENNOTDELETEBUILDS=$( echo "Please note: the builds directory will not be deleted" ) +export FIXKITCHENDESTROYEROFWORLDSSWITCH=$( echo "Switching to Destroyer of Worlds script" ) +export FIXKITCHENDELETECOMPUTER=$( echo "Are you sure..? this will delete everything on your computer, including mounted external drives and flash drives!!" ) +export SUICIDENOTE=$( echo "yes, please delete everything off of my computer" ) +export FIXKITCHENMUSTTYPEEXACTLY=$( echo "You must type in exactly \"$SUICIDENOTE\" to continue" ) +export FIXKITCHENTYPEPASSY=$( echo "Please type in your password to destroy everything" ) +export TROLLFACETITLE=$( echo "Trollface's Android Kitchen!" ) +export TROLLFACEUNDERLINE=$( echo "============================" ) +export FIXKITCHENIBET=$( echo "Oh man, I bet you wish it was that easy!" ) + +## Build Common export BUILDMENUTITLE=$( echo "Today's Lunch Menu:" ) +export BUILDREPOMENU1=$( echo "$REPOSAOKP repository" ) +export BUILDREPOMENU2=$( echo "$REPOSAOSP43 repository" ) +export BUILDREPOMENU3=$( echo "$REPOSAOSP repository" ) +export BUILDREPOMENU4=$( echo "$REPOSCARBON repository" ) +export BUILDREPOMENU5=$( echo "$REPOSCM10 repository" ) +export BUILDREPOMENU6=$( echo "$REPOSCM repository" ) +export BUILDREPOMENU7=$( echo "$REPOSEV repository" ) +export BUILDREPOMENU8=$( echo "$REPOSOMNI repository" ) +export BUILDREPOMENU9=$( echo "$REPOSPACMAN repository" ) +export BUILDREPOMENU10=$( echo "$REPOSPARA repository" ) +export BUILDALLABOVE=$( echo "Build all above!" ) +export BUILDREPONOTSETUP=$( echo "The selected android repository is not setup!" ) +export BUILDDEVICENOTCOMPATIBLE=$( echo "This device is not compatible with this repository, try again!" ) +export BUILDMENURETURN=$( echo "Returning to Build Menu, Press Enter to continue: " ) + +## Buildmenu export BUILDMENU1=$( echo "Build Nexus 4" ) export BUILDMENU2=$( echo "Build Nexus 5" ) export BUILDMENU3=$( echo "Build Nexus 7" ) @@ -211,3 +327,112 @@ export BUILDMENU7=$( echo "Build Xoom Tablet" ) export BUILDMENU8=$( echo "Build all above!" ) export BUILDMENU9=$( echo "Build other device" ) export BUILDMENU10=$( echo "Build with other repository" ) + +## Builddevice +export BUILDDEVICEBEBUILT=$( echo "is selected to be built!" ) +export BUILDDEVICEWHICHREPO=$( echo "Which android repository are we building from today?" ) +export BUILDDEVICENEXUS4=$( echo "Build $NEXUS4" ) +export BUILDDEVICENEXUS5=$( echo "Build $NEXUS5" ) +export BUILDDEVICEGSMGNEXUS=$( echo "Build $GSMGNEXUS" ) +export BUILDDEVICESPRGNEXUS=$( echo "Build $SPRGNEXUS" ) +export BUILDDEVICEVZWGNEXUS=$( echo "Build $VZWGNEXUS" ) +export BUILDDEVICEGSMNEXUSS=$( echo "Build $GSMNEXUSS" ) +export BUILDDEVICESPRNEXUSS=$( echo "Build $SPRNEXUSS" ) +export BUILDDEVICEWIFINEXUS72012=$( echo "Build $WIFINEXUS72012" ) +export BUILDDEVICEGSMNEXUS72012=$( echo "Build $GSMNEXUS72012" ) +export BUILDDEVICEALLNEXUS72012=$( echo "Build $ALLNEXUS72012" ) +export BUILDDEVICEWIFINEXUS72013=$( echo "Build $WIFINEXUS72013" ) +export BUILDDEVICELTENEXUS72013=$( echo "Build $LTENEXUS72013" ) +export BUILDDEVICEALLNEXUS72013=$( echo "Build $ALLNEXUS72013" ) +export BUILDDEVICENEXUS10=$( echo "Build $NEXUS10" ) +export BUILDDEVICEWIFIXOOM=$( echo "Build $WIFIXOOM" ) +export BUILDDEVICEVZWXOOM=$( echo "Build $VZWXOOM" ) + +## Buildother +export BUILDOTHERBEBUILT=$( echo "Build other device is selected to be built!" ) +export BUILDOTHERTYPEDEVICE=$( echo "Please type in which device you would like to build" ) +export BUILDOTHERTYPELIST=$( echo "Type in list to see all supported devices" ) +export BUILDOTHERTYPEEXIT=$( echo "Type in exit to go back" ) +export BUILDOTHERBUILDTITLE=$( echo "Device List" ) +export BUILDOTHERBUILDUNDERLINE=$( echo "===========" ) +export BUILDOTHERNOTCOMPATIBLE=$( echo "This device is not compatible with this repository, build anyways?" ) +export BUILDOTHERCONTINUE=$( echo "Continuing the build" ) +export BUILDOTHERNOTVALID=$( echo "Not a vaild answer, not going to build" ) + +## Buildotherrepo +export BUILDOTHERREPOEMPTY=$( echo "other repo file is empty, please add to file then try again!" ) +export BUILDOTHERREPOBEBUILT=$( echo "Build with other repository is selected to be built!" ) + +## Buildandro +export BUILDANDROCLEAN=$( echo "Clean out folder?" ) +export BUILDANDROCLEANENTER=$( echo "Did you just hit enter without a care? for that im just gonna clean the folder anyways.." ) +export BUILDANDROCCACHECONTINUEWITHOUT=$( echo "Continuing without ccache use; if you want to use ccache, please set it up" ) +export BUILDANDROCCACHEFOUND=$( echo "Found ccache folder, will use for build" ) +export BUILDANDROCCACHEDIDNOTDETECT=$( echo "The kitchen did not detect the ccache folder, did you want to make one now?" ) +export BUILDANDROCCACHEOTHER=$( echo "If ccache is located at another location type in other" ) +export BUILDANDROCCACHEHOWBIG=$( echo "How big do you want the maximum size of ccache? suggested size is 50 - 100 gigabytes" ) +export BUILDANDROCCACHEAMOUNTTYPED=$( echo "Keep in mind the amount typed is in gigabytes" ) +export BUILDANDROCCACHEREPONOTSUPPORTED=$( echo "Repository does not support ccache, continuing without it" ) +export BUILDANDROCCACHEEXACTLOCATION=$( echo "Where is the exact location of ccache? Example of where default location is is ~/.ccache" ) +export BUILDANDROCCACHENOTFOUND=$( echo "Location specified was not found, continuing without it" ) +export BUILDANDROREPONOTSUPPORTED=$( echo "Repository not supported!" ) +export BUILDANDROBUILDMESSEDUP=$( echo "Build messed up!" ) +export BUILDANDROMAKETEMP1=$( echo "Making temporary folder for post-building" ) +export BUILDANDROMAKETEMP2=$( echo "fixes" ) +export BUILDANDROUNZIP=$( echo "Unzipping" ) +export BUILDANDRORMSTUFF=$( echo "Removing uneeded recovery folder and file_contexts from" ) +export BUILDANDROADDROM1=$( echo "Adding rom manager items to" ) +export BUILDANDROADDROM2=$( echo "'s build.prop" ) +export BUILDANDROZIP=$( echo "Zipping" ) +export BUILDANDROSIGN1=$( echo "Signing" ) +export BUILDANDROSIGN2=$( echo "with test keys" ) +export BUILDANDROMOVEOLD1=$( echo "Moving older build to" ) +export BUILDANDROMOVEOLD2=$( echo "/old" ) +export BUILDANDROCOPY=$( echo "Copying to" ) +export BUILDANDROCLEANUP=$( echo "Cleaning up temporary folder" ) + +## Buildautomenu +export BUILDAUTOMENUTITLE=$( echo "Auto Builder Menu" ) +export BUILDAUTOMENU1=$( echo "Run Auto Builder" ) +export BUILDAUTOMENU2=$( echo "Add to auto build list" ) +export BUILDAUTOMENU3=$( echo "Clear auto build list" ) +export BUILDAUTOMENU4=$( echo "Toggle Auto Builder's output" ) +export BUILDAUTOMENU5=$( echo "Toggle Auto Builder's build other repo" ) +export BUILDAUTOMENU6=$( echo "Toggle Auto Builder's sleep function" ) +export BUILDAUTOMENUSETAUTO=$( echo "Which android repository are we setting for auto build?" ) +export BUILDAUTOMENUMOVEON=$( echo "Finished with adding repos, move on to adding devices" ) +export BUILDAUTOMENUADD1=$( echo "Added" ) +export BUILDAUTOMENUADD2=$( echo "to auto build files" ) +export BUILDAUTOMENUTYPEDEVICE=$( echo "Please type in Which android device are we setting for auto build" ) +export BUILDAUTOMENUWANTTOCLEAR=$( echo "Are you sure you want to clear auto build files?" ) +export BUILDAUTOMENUCLEARED=$( echo "Auto build files cleared" ) +export BUILDAUTOMENUNOTCLEARED=$( echo "Auto build files left untouched" ) +export BUILDAUTOMENUOUTPUT=$( echo "This will output buildauto into swordkitchen script folder" ) +export BUILDAUTOMENUSOMEWHERE=$( echo "Unless you want it to be somewhere else?" ) +export BUILDAUTOMENUTYPEOUTPUT=$( echo "Type yes to output somewhere else:" ) +export BUILDAUTOMENUTYPEABSOLUTE=$( echo "Please type the absolute path of where u want the buildoutput.txt to be" ) +export BUILDAUTOMENUOUTPUTSENT=$( echo "Output will be sent to" ) +export BUILDAUTOMENUOUTPUTCLEAR=$( echo "Output file cleared, buildauto will now output regularly" ) +export BUILDAUTOMENUADDBELOWREPO=$( echo "Add below this line the repo folder you want to auto build, otherrepo are in the otherrepo folder, list each repo per line" ) +export BUILDAUTOMENUADDBELOWDEVICE=$( echo "Add below this line the device codename you want to auto build, list each device per line" ) +export BUILDAUTOMENUOTHERREPOON=$( echo "Auto Builder's build other repo is now on!" ) +export BUILDAUTOMENUOTHERREPOOFF=$( echo "Auto Builder's build other repo is now off!" ) +export BUILDAUTOMENUCOMPSLEEPTIME1=$( echo "Do you want the computer to sleep for a" ) +export BUILDAUTOMENUCOMPSLEEPTIME2=$( echo "certain amount of hours or wake up at a certain time?" ) +export BUILDAUTOMENUSLEEPMENU1=$( echo "Wake up at a certain time" ) +export BUILDAUTOMENUSLEEPMENU2=$( echo "Certain amount of hours" ) +export BUILDAUTOMENUSPECIFIC1=$( echo "What time do you want the build server to wake up at the next day?" ) +export BUILDAUTOMENUSPECIFIC2=$( echo "24 hours configuration, Example: for 2pm put 14:00, for 7am put 07:00" ) +export BUILDAUTOMENUHOURS1=$( echo "How long would you like for the build server to sleep after building?" ) +export BUILDAUTOMENUHOURS2=$( echo "The number being inputted is in hours" ) +export BUILDAUTOMENUTYPEPASSY=$( echo "Please type in your user's password, so the build server can sleep" ) +export BUILDAUTOMENUSLEEPON=$( echo "Auto Builder's sleep function is now on!" ) +export BUILDAUTOMENUSLEEPOFF=$( echo "Auto Builder's sleep function is now off!" ) + +## Buildauto +export BUILDAUTOPLEASE=( echo "Please use the Auto Builder config menu" ) +export BUILDAUTOBOTH=( echo "Both Auto Builder's repository and device is not set!" ) +export BUILDAUTOREPO=( echo "Auto Builder's repository is not set!" ) +export BUILDAUTODEVICE=( echo "Auto Builder's device is not set!" ) +export BUILDAUTOWAIT=( echo "Waiting for ten minutes! this is not a countdown.." ) +export BUILDAUTOSLEEP=( echo "Sleep..." ) diff --git a/translation/rabbitfish b/translation/rabbitfish index fb097e7..69d87e1 100755 --- a/translation/rabbitfish +++ b/translation/rabbitfish @@ -18,43 +18,64 @@ ## Common export KITCHENTITLE=$( echo "Swordrune10 Android Kitchen!" ) export KITCHENUNDERLINE=$( echo "===========================" ) -## NEEDS TO BE TRANSLATED! ## -export MENUGOBACK=$( echo "Go Back" ) -## NEEDS TO BE TRANSLATED! ## -export NOTPROPERSELECTION=$( echo "Sie haben keine gültige Option gewählt, versuchen Sie es erneut!" ) -export ENTERTOCONTINUE=$( echo "Drücken Sie die Eingabetaste, um fortzufahren: " ) -## NEEDS TO BE TRANSLATED! ## -export MAINMENURETURN=$( echo "Returning to Main Menu, Press Enter to continue: " ) -export ABORTMESSAGE=$( echo "Aborting.." ) -export COMPLETEDMESSAGE=$( echo "Finished!" ) -## NEEDS TO BE TRANSLATED! ## -export ANSWERYES=$( echo "ja" ) +export MENUGOBACK=$( echo "Zurück" ) +export NOTPROPERSELECTION=$( echo "Es wurde keine gültige Auswahl getroffen, bitte erneut versuchen!" ) +export ENTERTOCONTINUE=$( echo "Eingabetaste drücken um fortzufahren: " ) +export MAINMENURETURN=$( echo "Zurück zum Hauptmenü, mit Eingabetaste fortfahren: " ) +export ABORTMESSAGE=$( echo "Abbruch..." ) +export COMPLETEDMESSAGE=$( echo "Fertig!" ) +export ANSWERYES=$( echo "Ja" ) export ANSWERY=$( echo "j" ) -export ANSWERNO=$( echo "nein" ) +export ANSWERNO=$( echo "Nein" ) export ANSWERN=$( echo "n" ) +## Macosxinit +export MACOSXINITRUN=$( echo "Sie verwenden Mac OS X!" ) +export MACOSXINITCANTFINDDMG=$( echo "Es wurde kein Android-Image zum mounten gefunden, dies wird jedoch zur Builderstellung unter Mac OS X benötigt. +Wenn ein eigenes Build verwendet werden soll, muss dieses korrekt benannt in das richtige Verzeichnis kopiert werden. +Benennung und Ordnerstruktur kann beispielhaft im Homeverzeichnis unter android.dmg eingesehen werden (Beispiel: ~/android.dmg) + +Soll jetzt ein neues Image erstellt werden?" ) +export MACOSXINITHOWBIG=$( echo "Wie groß soll android.dmg sein? Beachte, dass die Größe des Images angepasst wird wenn mehr Platz benötigt wird. +Größe in GB angeben" ) +export MACOSXINITMOUNTNEW=$( echo "Neues android.dmg wird in /volumes/android/ gemounted..." ) +export MACOSXINITMOVEINTO=$( echo "Wechsel zu android.dmg..." ) +export MACOSXINITSETUP=$( echo "Küche wird eingerichtet..." ) +export MACOSXINITSETUP=$( echo "Küche wird eingerichtet..." ) +export MACOSXINITFOUNDDMG=$( echo "Android.dmg gefunden, wird gemounted..." ) +export MACOSXINITCANTFINDKITCHEN=$( echo "ROM Küche kann in /volumes/android/ nicht gefunden werden + +Soll die Küche in /volumes/android installiert werden?" ) + ## Errors -## NEEDS TRANSLATION! -export ERRORCONTACTINFO=$( echo "If you see this in error, please notify me at either xda or rootzwiki -If you prefer email you can reach me at mishana@swordrune10.net -If your also inclined, i have a freenode channel #Swordrune10Kitchen" ) -export ENVIRONMENTSETUP32BIT=$( echo "32-bit not supported! +export ERRORHEADER=$( echo "Ein Fehler ist aufgetreten! +======================" ) +export ERRORSIDEEFFECTS=$( echo "Bei Problemen könnten fehlerhafte Builds erstellt werden, auch die Unterstützung der Kücheneinrichtungsumgebung könnte fehlerhaft sein" ) +export ERRORCONTACTINFO=$( echo "Bitte informiert mich unbedingt beim Auftreten dieses Fehlers auf XDA oder Rootzwiki, gerne auch per E-Mail unter mishana@swordrune10.net oder auf meinem Freenodekanal unter #Swordrune10Kitchen" ) +export BOUNCERPOWERPC=$( echo "PowerPC-Prozessor erkannt! +=========================== +Von dem Betrieb dieser Software auf einem PowerPC wird abgeraten" ) +export BOUNCER32BIT=$( echo "32-bit-Prozessor erkannt! +========================== +Von dem Betrieb dieser Software auf einem 32-bit-System wird abgeraten" ) +export BOUNCERKITCHENHOME=$( echo "Küche nicht in korrektem Verzeichnis! +================================= +Küche wird im Homeverzeichnis nicht korrekt funktionieren, bitte verschieben" ) +export ENVIRONMENTSETUP32BIT=$( echo "32-bit nicht unterstützt! ===================== -Build enviroment installation only supports 64-bit Operating Systems" ) -export ENVIRONMENTSETUPNOTSUPPORTED=$( echo "Operating System not supported! +Umgebungsinstallation unterstützt ausschliesslich 64-bit-Systeme" ) +export ENVIRONMENTSETUPNOTSUPPORTED=$( echo "Betriebssystem nicht unterstützt! =============================== -Supported Operating Systems (only 64-bit): -Ubuntu 10.04 - 13.10 (Full Support) -Debian (General Support) -Linux Mint (General Support) -Arch Linux (General Support) -Fedora (General Support) -Mac OS X (Semi-General Support)" ) -## NEEDS TRANSLATION! +Unterstützte Betriebssysteme (nur 64-bit): +Ubuntu 10.04 - 14.04 (Voll unterstützt) +Debian (Grundunterstützung) +Linux Mint (Grundunterstützung) +Arch Linux (Grundunterstützung) +Fedora (Grundunterstützung) +Mac OS X (Teilweise grundunterstützt)" ) ## Repos -## NEEDS TO BE TRANSLATED! ## -export REPOSKITCHEN=$( echo "Kitchen app" ) +export REPOSKITCHEN=$( echo "Küchen App" ) export REPOSAOKP=$( echo "Android Open Kang Project" ) export REPOSAOSP43=$( echo "Android Open Source Project 4.3" ) export REPOSAOSP=$( echo "Android Open Source Project 4.4" ) @@ -62,136 +83,217 @@ export REPOSCARBON=$( echo "Carbon" ) export REPOSCM10=$( echo "Cyanogenmod 10.2" ) export REPOSCM=$( echo "Cyanogenmod 11" ) export REPOSEV=$( echo "Evervolv" ) -export REPOSOMNI=$( echo "omnirom" ) -export REPOSPACMAN=$( echo "PAC-man" ) +export REPOSOMNI=$( echo "Omnirom" ) +export REPOSPACMAN=$( echo "PAC-Man" ) export REPOSPARA=$( echo "ParanoidAndroid" ) -## NEEDS TO BE TRANSLATED! ## + +## Devices +export NEXUS4=$( echo "GSM Nexus 4" ) +export NEXUS5=$( echo "LTE Nexus 5" ) +export GSMGNEXUS=$( echo "GSM Galaxy Nexus" ) +export SPRGNEXUS=$( echo "Sprint Galaxy Nexus" ) +export VZWGNEXUS=$( echo "Verizon Galaxy Nexus" ) +export ALLGNEXUS=$( echo "Alle Galaxy Nexus" ) +export GSMNEXUSS=$( echo "GSM Nexus S" ) +export SPRNEXUSS=$( echo "Sprint Nexus S 4G" ) +export ALLNEXUSS=$( echo "Alle Nexus S'" ) +export WIFINEXUS72012=$( echo "Wifi Nexus 7 (2012) Tablet" ) +export GSMNEXUS72012=$( echo "GSM Nexus 7 (2012) Tablet" ) +export ALLNEXUS72012=$( echo "Alle Nexus 7 (2012) Tablets" ) +export WIFINEXUS72013=$( echo "Wifi Nexus 7 (2013) Tablet" ) +export LTENEXUS72013=$( echo "LTE Nexus 7 (2013) Tablet" ) +export ALLNEXUS72013=$( echo "Alle Nexus 7 (2013) Tablets" ) +export ALLNEXUS7=$( echo "Alle Nexus 7 Tablets" ) +export NEXUS10=$( echo "Wifi Nexus 10" ) +export WIFIXOOM=$( echo "Wifi Xoom Tablet" ) +export VZWXOOM=$( echo "Verizon Xoom Tablet" ) +export ALLXOOM=$( echo "Alle Xoom Tablets" ) +export ALLNEXUS=$( echo "Alle Nexus-Geräte" ) ## Scriptmakir -## NEEDS TRANSLATION! -export SCRIPTMAKIRREDEEMER=$( echo "Redeemer is running!" ) -export SCRIPTMAKIRRMKITCHEN=$( echo "Removing Kitchen" ) -export SCRIPTMAKIRSETUPKITCHEN=$( echo "Settng Up Kitchen" ) -export SCRIPTMAKIRDESTROYER=$( echo "Destroyer is running!" ) -export SCRIPTMAKIRDESTROYEROFWORLDS=$( echo "Destroyer of Worlds is running!" ) -export SCRIPTMAKIRRMREPO=$( echo "Removing Repository folder" ) -## NEEDS TRANSLATION! +export SCRIPTMAKIRREDEEMER=$( echo "Redeemer läuft!" ) +export SCRIPTMAKIRRMKITCHEN=$( echo "Küche wird entfernt" ) +export SCRIPTMAKIRSETUPKITCHEN=$( echo "Küche wird eingerichtet" ) +export SCRIPTMAKIRDESTROYER=$( echo "Destroyer läuft!" ) +export SCRIPTMAKIRDESTROYEROFWORLDS=$( echo "Der Weltenzerstörer arbeitet!" ) +export SCRIPTMAKIRRMREPO=$( echo "Repo-Verzeichnis wird entfernt" ) ## Kitchen export KITCHENMAINMENU=$( echo "Hauptmenü:" ) -export KITCHENMENU1=$( echo "Kitchen Einrichten / aktualisieren" ) -export KITCHENMENU2=$( echo "Kitchen Konfigurieren" ) +export KITCHENMENU1=$( echo "Küche einrichten/aktualisieren" ) +export KITCHENMENU2=$( echo "Küche konfigurieren" ) export KITCHENMENU3=$( echo "Starten" ) -export KITCHENMENU4=$( echo "Kitchen reparieren" ) +export KITCHENMENU4=$( echo "Küche reparieren" ) export KITCHENMENU5=$( echo "Autobuild" ) -export KITCHENMENU6=$( echo "Ausgang" ) -export KITCHENMENUWHICH=$( echo "Was möchten Sie tun?" ) -export KITCHENTHANKS=$( echo "Wir danken für die Nutzung des Swordrune10 Kitchen! Auf Wiedersehen.." ) -export KITCHENBORED=$( echo "Sie scheinen gelangweilt .. möchten Sie einen Film schauen?" ) -export KITCHENTOUGH=$( echo "super!" ) - -## EVERYTHING BELOW THIS LINE NEEDS TO BE TRANSLATED! ## +export KITCHENMENU6=$( echo "Beenden" ) +export KITCHENMENUWHICH=$( echo "Was möchtest du tun?" ) +export KITCHENTHANKS=$( echo "Vielen Dank für die Nutzung der Swordrune10 ROM-Küche! Auf Wiedersehen..." ) +export KITCHENBORED=$( echo "Du scheinst dich zu langweilen...möchtest du einen Film anschauen?" ) +export KITCHENTOUGH=$( echo "Super!" ) ## Reposync # Usage and Flags -export REPOSYNCUSAGE=$( echo "repo -- program to initialize/update android repos" ) -export REPOSYNCFLAGD=$( echo "delete the appropriate folder and then exit program" ) -export REPOSYNCFLAGH=$( echo "show this help text" ) -export REPOSYNCFLAGP=$( echo "purge folder, reinit, and then update" ) -export REPOSYNCFLAGU=$( echo "update this particular repo" ) -export REPOSYNCUPDATE1=$( echo "Update $REPOSKITCHEN" ) -export REPOSYNCUPDATE2=$( echo "Update $REPOSAOKP" ) -export REPOSYNCUPDATE3=$( echo "Update $REPOSAOSP43" ) -export REPOSYNCUPDATE4=$( echo "Update $REPOSAOSP" ) -export REPOSYNCUPDATE5=$( echo "Update $REPOSCARBON" ) -export REPOSYNCUPDATE6=$( echo "Update $REPOSCM10" ) -export REPOSYNCUPDATE7=$( echo "Update $REPOSCM" ) -export REPOSYNCUPDATE8=$( echo "Update $REPOSEV" ) -export REPOSYNCUPDATE9=$( echo "Update $REPOSOMNI" ) -export REPOSYNCUPDATE10=$( echo "Update $REPOSPACMAN" ) -export REPOSYNCUPDATE11=$( echo "Update $REPOSPARA" ) -export REPOSYNCUPDATE12=$( echo "Update all available repos" ) -export REPOSYNCUPDATE13=$( echo "Update all the repos" ) -export REPOSYNCUSAGEEXAMP=$( echo "Example: reposync -u cm-10.2" ) -export REPOSYNCUSAGELIST1=$( echo "typing \"reposync -u list\" will give" ) -export REPOSYNCUSAGELIST2=$( echo "you the options list again" ) +export REPOSYNCUSAGE=$( echo "Repo -- Programm zur Initialisierung/Aktualisierung von Android-Repositorien" ) +export REPOSYNCFLAGD=$( echo "Das entsprechende Verzeichnis löschen und Programm verlassen" ) +export REPOSYNCFLAGH=$( echo "Diesen Hilfetext anzeigen" ) +export REPOSYNCFLAGP=$( echo "Verzeichnis aufräumen, neu initialisieren und dann aktualisieren" ) +export REPOSYNCFLAGU=$( echo "Dieses Repositorium aktualisieren" ) +export REPOSYNCUPDATE1=$( echo "Aktualisiere $REPOSKITCHEN" ) +export REPOSYNCUPDATE2=$( echo "Aktualisiere $REPOSAOKP" ) +export REPOSYNCUPDATE3=$( echo "Aktualisiere $REPOSAOSP43" ) +export REPOSYNCUPDATE4=$( echo "Aktualisiere $REPOSAOSP" ) +export REPOSYNCUPDATE5=$( echo "Aktualisiere $REPOSCARBON" ) +export REPOSYNCUPDATE6=$( echo "Aktualisiere $REPOSCM10" ) +export REPOSYNCUPDATE7=$( echo "Aktualisiere $REPOSCM" ) +export REPOSYNCUPDATE8=$( echo "Aktualisiere $REPOSEV" ) +export REPOSYNCUPDATE9=$( echo "Aktualisiere $REPOSOMNI" ) +export REPOSYNCUPDATE10=$( echo "Aktualisiere $REPOSPACMAN" ) +export REPOSYNCUPDATE11=$( echo "Aktualisiere $REPOSPARA" ) +export REPOSYNCUPDATE12=$( echo "Alle verfügbaren Repositorien aktualisieren" ) +export REPOSYNCUPDATE13=$( echo "Alle Repositorien aktualisieren" ) +export REPOSYNCUSAGEEXAMP=$( echo "Beispiel: reposync -u cm-10.2" ) +export REPOSYNCUSAGELIST1=$( echo "Eingabe von \"reposync -u list\" gibt aus" ) +export REPOSYNCUSAGELIST2=$( echo "Menüauswahl erneut anzeigen" ) # Menu -export REPOSYNCMENUWHAT=$( echo "What are we updating?" ) -export REPOSYNCMENUINIT=$( echo "If repo isn't initialized, it will be on update" ) -export REPOSYNCMENU1=$( echo "Install the repo command" ) -export REPOSYNCMENU2=$( echo "Setup the build enviroment" ) -export REPOSYNCMENU3=$( echo "Update the $REPOSKITCHEN repository" ) -export REPOSYNCMENU4=$( echo "Update the $REPOSAOKP repository" ) -export REPOSYNCMENU5=$( echo "Update the $REPOSAOSP43 repository" ) -export REPOSYNCMENU6=$( echo "Update the $REPOSAOSP repository" ) -export REPOSYNCMENU7=$( echo "Update the $REPOSCARBON repository" ) -export REPOSYNCMENU8=$( echo "Update the $REPOSCM10 repository" ) -export REPOSYNCMENU9=$( echo "Update the $REPOSCM repository" ) -export REPOSYNCMENU10=$( echo "Update the $REPOSEV repository" ) -export REPOSYNCMENU11=$( echo "Update the $REPOSOMNI repository" ) -export REPOSYNCMENU12=$( echo "Update the $REPOSPACMAN repository" ) -export REPOSYNCMENU13=$( echo "Update the $REPOSPARA repository" ) -export REPOSYNCMENU14=$( echo "Update all available repositories" ) -export REPOSYNCMENU15=$( echo "Update all the repos!" ) -export REPOSYNCMENU16=$( echo "Update/add otherrepo" ) +export REPOSYNCMENUWHAT=$( echo "Was soll aktualisiert werden?" ) +export REPOSYNCMENUINIT=$( echo "Sollte das Repo noch nicht initialisiert sein, erfolgt dies bei der Aktualisierung" ) +export REPOSYNCMENU1=$( echo "Repo installieren-Befehl" ) +export REPOSYNCMENU2=$( echo "Builtumgebung einrichten" ) +export REPOSYNCMENU3=$( echo "Aktualisiere $REPOSKITCHEN Repositorium" ) +export REPOSYNCMENU4=$( echo "Aktualisiere $REPOSAOKP Repositorium" ) +export REPOSYNCMENU5=$( echo "Aktualisiere $REPOSAOSP43 Repositorium" ) +export REPOSYNCMENU6=$( echo "Aktualisiere $REPOSAOSP Repositorium" ) +export REPOSYNCMENU7=$( echo "Aktualisiere $REPOSCARBON Repositorium" ) +export REPOSYNCMENU8=$( echo "Aktualisiere $REPOSCM10 Repositorium" ) +export REPOSYNCMENU9=$( echo "Aktualisiere $REPOSCM Repositorium" ) +export REPOSYNCMENU10=$( echo "Aktualisiere $REPOSEV Repositorium" ) +export REPOSYNCMENU11=$( echo "Aktualisiere $REPOSOMNI Repositorium" ) +export REPOSYNCMENU12=$( echo "Aktualisiere $REPOSPACMAN Repositorium" ) +export REPOSYNCMENU13=$( echo "Aktualisiere $REPOSPARA Repositorium" ) +export REPOSYNCMENU14=$( echo "Aktualisiere available Repositorium" ) +export REPOSYNCMENU15=$( echo "Aktualisiere alle Repositorien" ) +export REPOSYNCMENU16=$( echo "Aktualisiere/Erstelle weiteres Repo" ) # Sync and Init -export REPOSYNCNOTINITSKIP=$( echo "not initialized, skipping" ) -export REPOSYNCUPDATING=$( echo "Updating" ) -export REPOSYNCBLAHSMANIFEST=$( echo "'s manifest" ) -export REPOSYNCNOTINITYET=$( echo "not initialized, initializing now" ) -export REPOSYNCNOTINITWANTTO=$( echo "not initialized, do you want to initialize it?" ) -export REPOSYNCINIT=$( echo "initializing" ) -export REPOSYNCNOTINIT=$( echo "wasn't initialized" ) -export REPOSYNCREPO=$( echo "repository" ) -export REPOSYNCREPOALREADY=$( echo "repo command is already installed" ) -export REPOSYNCREPOINSTALL=$( echo "Installing the repo command" ) -export REPOSYNCCOMPLETE=$( echo "Update Complete!" ) +export REPOSYNCNOTINITSKIP=$( echo "Nicht initialisiert, überspringe" ) +export REPOSYNCUPDATING=$( echo "Aktualisiere" ) +export REPOSYNCBLAHSMANIFEST=$( echo "'s Manifest" ) +export REPOSYNCNOTINITYET=$( echo "Nicht initialisiert, jetzt initialisieren" ) +export REPOSYNCNOTINITWANTTO=$( echo "Nicht initialisiert, soll jetzt initialisiert werden?" ) +export REPOSYNCINIT=$( echo "Initialisiere" ) +export REPOSYNCNOTINIT=$( echo "war nicht initialisiert" ) +export REPOSYNCREPO=$( echo "Repositorium" ) +export REPOSYNCREPOALREADY=$( echo "Repo-Befehl bereits installiert" ) +export REPOSYNCREPOINSTALL=$( echo "Repo-Befehl wird installiert" ) +export REPOSYNCCOMPLETE=$( echo "Aktualisierung erfolgreich!" ) # Otherrepo Sync and Init -export REPOSYNCADDOR=$( echo "Are we adding or updating otherrepo?" ) -export REPOSYNCOTHERMENU1=$( echo "Add to custom repo folder" ) -export REPOSYNCOTHERMENU2=$( echo "Update all the custom repos" ) -export REPOSYNCOTHERREPONAME=$( echo "What is the repo's name?" ) -export REPOSYNCOTHERREPOSHORTNAME=$( echo "What is a short name for this repo? Example: Android Open Source Project = aosp" ) -export REPOSYNCOTHERREPOURL=$( echo "What is the url to the repo's manifest?" ) -export REPOSYNCOTHERREPOBRANCH=$( echo "What is the branch the repo's manifest you want to use?" ) +export REPOSYNCADDOR=$( echo "Erstellen oder aktualisieren eines anderen Repo?" ) +export REPOSYNCOTHERMENU1=$( echo "Zu benutzerdefiniertem Repo-Verzeichnis hinzufügen" ) +export REPOSYNCOTHERMENU2=$( echo "Alle benutzerdefinierten Repos aktualisieren" ) +export REPOSYNCOTHERREPONAME=$( echo "Name des Repos eingeben" ) +export REPOSYNCOTHERREPOSHORTNAME=$( echo "Bitte Kurzbezeichnung angeben, Beispiel: Android Open Source Project = AOSP" ) +export REPOSYNCOTHERREPOURL=$( echo "URL zum Manifest des Repos eingeben" ) +export REPOSYNCOTHERREPOBRANCH=$( echo "Welcher Branch des Repo-Manifests soll verwendet werden?" ) ## Environmentsetup -export ENVIRONMENTSETUPINIT=$( echo "Initilizing the build environment" ) -export ENVIRONMENTSETUPOS=$( echo "Checking what Operating System you are running.." ) -export ENVIRONMENTSETUPINSTALL=$( echo "Installing packages needed, please enter your password" ) -export ENVIRONMENTSETUPDXCODE=$( echo "Is Xcode installed? We recommend version 3.1.4 or newer" ) -export ENVIRONMENTSETUPDMACPORTS=$( echo "Is MacPorts installed?" ) +export ENVIRONMENTSETUPINIT=$( echo "Entwicklungsumgebung wird initialisiert" ) +export ENVIRONMENTSETUPOS=$( echo "Prüfe verwendetes Betriebssystem..." ) +export ENVIRONMENTSETUPINSTALL=$( echo "Installationspakete fehlen, bitte Passwort eingeben" ) +export ENVIRONMENTSETUPDXCODE=$( echo "Ist Xcode installiert? Wir empfehlen Version 3.1.4 oder neuer" ) +export ENVIRONMENTSETUPDMACPORTS=$( echo "Ist MacPorts installiert?" ) # Platform -export ENVIRONMENTSETUPFEDORA=$( echo "You are running Fedora or RedHat!" ) -export ENVIRONMENTSETUPDEBIAN=$( echo "You are running Debian!" ) -export ENVIRONMENTSETUPULMN=$( echo "You are running Ubuntu, either 10.04, 10.10, or 11.04!" ) -export ENVIRONMENTSETUPUO=$( echo "You are running Ubuntu 11.10!" ) -export ENVIRONMENTSETUPUPQ=$( echo "You are running Ubuntu 12.04 or 12.10!" ) -export ENVIRONMENTSETUPURS=$( echo "You are running Ubuntu 13.04 or 13.10!" ) -export ENVIRONMENTSETUPMINT=$( echo "You are running Linux Mint!" ) -export ENVIRONMENTSETUPARCH=$( echo "You are running Arch Linux!" ) -export ENVIRONMENTSETUPDARWIN=$( echo "You are running Mac OS X!" ) +export ENVIRONMENTSETUPFEDORA=$( echo "Auf diesem System läuft Fedora oder RedHat!" ) +export ENVIRONMENTSETUPDEBIAN=$( echo "Auf diesem System läuft Debian!" ) +export ENVIRONMENTSETUPULMN=$( echo "Auf diesem System läuft Ubuntu, entweder 10.04, 10.10, oder 11.04!" ) +export ENVIRONMENTSETUPUO=$( echo "Auf diesem System läuft Ubuntu 11.10!" ) +export ENVIRONMENTSETUPUPQ=$( echo "Auf diesem System läuft Ubuntu 12.04 oder 12.10!" ) +export ENVIRONMENTSETUPURST=$( echo "Auf diesem System läuft Ubuntu 13.04, 13.10, oder 14.04!" ) +export ENVIRONMENTSETUPMINT=$( echo "Auf diesem System läuft Linux Mint!" ) +export ENVIRONMENTSETUPARCH=$( echo "Auf diesem System läuft Arch Linux!" ) +export ENVIRONMENTSETUPDARWIN=$( echo "Auf diesem System läuft Mac OS X!" ) # Java -export ENVIRONMENTSETUPFLEXION=$( echo "Installing java will take a while, to do this legally the Kitchen app will use exerpts from flexion.org oab-java script" ) -export ENVIRONMENTSETUPFLEXION1=$( echo " [x] Getting Java SE download page" ) -export ENVIRONMENTSETUPFLEXION2=$( echo " [x] Getting current release download page" ) -export ENVIRONMENTSETUPFLEXION3=$( echo " [x] Getting previous releases download page" ) -export ENVIRONMENTSETUPWEBUPD8=$( echo "Installing java will take a while, to do this legally the Kitchen app will use webupd8's java installer" ) +export ENVIRONMENTSETUPFLEXION=$( echo "Die Java-Installation benötigt einen Moment. Um eine rechtlich einwandfreie Nutzung zu gewährleisten verwendet die ROM-Küche Auszüge von Flexion.org OAB-Java Script" ) +export ENVIRONMENTSETUPFLEXION1=$( echo " [x] Java SE Download-Seite aufrufen" ) +export ENVIRONMENTSETUPFLEXION2=$( echo " [x] Download-Seite der installierten Version aufrufen" ) +export ENVIRONMENTSETUPFLEXION3=$( echo " [x] Download-Seite früherer Versionen aufrufen" ) +export ENVIRONMENTSETUPWEBUPD8=$( echo "Die Java-Installation benötigt einen Moment. Um eine rechtlich einwandfreie Nutzung zu gewährleisten verwendet die ROM-Küche Webupd8's Java Installer" ) ## Preupdate -export PREUPDATEAOSP43=$( echo "Updating $REPOSAOSP43's local_manifests folder" ) -export PREUPDATEAOSP=$( echo "Updating $REPOSAOSP's local_manifests folder" ) -export PREUPDATECM10=$( echo "Updating $REPOSCM10's local_manifests folder" ) -export PREUPDATECM=$( echo "Updating $REPOSCM's local_manifests folder" ) -export PREUPDATEOMNI=$( echo "Updating $REPOSOMNI's local_manifests folder" ) +export PREUPDATEAOSP43=$( echo "Aktualisiere $REPOSAOSP43's local_manifests folder" ) +export PREUPDATEAOSP=$( echo "Aktualisiere $REPOSAOSP's local_manifests folder" ) +export PREUPDATECM10=$( echo "Aktualisiere $REPOSCM10's local_manifests folder" ) +export PREUPDATECM=$( echo "Aktualisiere $REPOSCM's local_manifests folder" ) +export PREUPDATEOMNI=$( echo "Aktualisiere $REPOSOMNI's local_manifests folder" ) + +## Configkitchen +export CONFIGKITCHENMENUTITLE=$( echo "Einstellungsmenü" ) +export CONFIGKITCHENMENU1=$( echo "Bearbeite Gitpuller" ) +export CONFIGKITCHENMENU2=$( echo "Bearbeite Romeditor" ) +export CONFIGKITCHENMENU3=$( echo "Erstelle/Bearbeite 'andere Repos'-Liste" ) +export CONFIGKITCHENOTHERREPO=$( echo "Dateiverzeichnis der benutzerdefinierten Repos bearbeiten" ) +export CONFIGKITCHENOTHERREPONAME=$( echo "Bearbeite Bezeichnung des benutzerefinierten Repo" ) + +## Fixkitchen +export FIXKITCHENSOMETHINGNOT=$( echo "Irgendwas funktioniert nicht richtig? Was kann ich tun?" ) +export FIXKITCHENPURGE=$( echo "Aufräumen = Dateien löschen und von Qriginalquelle neu laden" ) +export FIXKITCHENDELETE=$( echo "Löschen = Jetzt löschen!" ) +export FIXKITCHENMENU1=$( echo "Repo zu einem ausgewählten local_manifests-Verzeichnis hinzufügen" ) +export FIXKITCHENMENU2=$( echo "Ausgewähltes local_manifests-Verzeichnis aufräumen" ) +export FIXKITCHENMENU3=$( echo "Ausgwähltes Repositorium aufräumen oder entfernen" ) +export FIXKITCHENMENU4=$( echo "Alle Repositorien aufräumen oder entfernen" ) +export FIXKITCHENMENU5=$( echo "ROM-Küche aufräumen oder entfernen" ) +export FIXKITCHENMENU6=$( echo "ROM-Küche mit allen Abhängigkeiten entfernen" ) +export FIXKITCHENMENU7=$( echo "Den Inhalt des Computers löschen" ) +export FIXKITCHENMENU8=$( echo "Gesamtes Internet löschen" ) +export FIXKITCHENADD=$( echo "Repo zu otherdevices.xml hinzufügen" ) +export FIXKITCHENPURGE=$( echo "local_manifests-Verzeichnis aufgeräumt" ) +export FIXKITCHENWHICHADD=$( echo "Welches Repo soll hinzugefügt werden?" ) +export FIXKITCHENWHICHPURGE=$( echo "Von welchem Repo soll das local_manifests-Verzeichnis aufgeräumt werden?" ) +export FIXKITCHENWHICHREPO=$( echo "Welches Repo soll aufgeräumt oder entfernt werden?" ) +export FIXKITCHENPURGEDELETE=$( echo "Aufräumen oder löschen?" ) +export FIXKITCHENPURGEDELETEEXIT=$( echo "Aufräumen = löscht Dateien und ladet neu von Originalquelle +Löschen = Jetzt löschen! +Exit eingeben um zurückzukehren" ) +export FIXKITCHENPURGEDELETEREPO=$( echo "Alle Repositorien aufräumen oder entfernen?" ) +export FIXKITCHENPURGEDELETEKITCHEN=$( echo "ROM-Kücke aufräumen oder löschen?" ) +export FIXKITCHENREDEEMER=$( echo "Zu Redeemer-Skript wechseln" ) +export FIXKITCHENDELETEKITCHEN=$( echo "Soll die ROM-Küche wirklich entfernt werden?" ) +export FIXKITCHENTYPEYES=$( echo "Mit \"yes\" bestätigen um fortzufahren" ) +export FIXKITCHENTYPEABORT=$( echo "Die Eingabe jeder anderen Taste bricht die Operation ab" ) +export FIXKITCHENDESTROYERSWITCH=$( echo "Zu Destroyer-Skript wechseln" ) +export FIXKITCHENDELETEKITCHENALL=$( echo "Soll die ROM-Küche mit allen Abhängigkeiten wirklich entfernt werden?" ) +export FIXKITCHENNOTDELETEBUILDS=$( echo "Achtung: das Builds-Verzeichnis wird nicht gelöscht" ) +export FIXKITCHENDESTROYEROFWORLDSSWITCH=$( echo "Zu Weltenzerstörer-Skript wechseln" ) +export FIXKITCHENDELETECOMPUTER=$( echo "Bist Du sicher? Dies löscht alle Inhalte Deines Computers, inklusive aller angeschlossenen Flashlaufwerke und anderer externen Laufwerke!" ) +export SUICIDENOTE=$( echo "Ja, bitte alles von meinem Computer löschen" ) +export FIXKITCHENMUSTTYPEEXACTLY=$( echo "Mit \"$SUICIDENOTE\" bestätigen um fortzufahren" ) +export FIXKITCHENTYPEPASSY=$( echo "Bitte Passwort eingeben um ALLES zu zerstören" ) +export TROLLFACETITLE=$( echo "Trollface's Android Kitchen!" ) +export TROLLFACEUNDERLINE=$( echo "============================" ) +export FIXKITCHENIBET=$( echo "Oh man, I bet you wish it was that easy!" ) + +## Build Common +export BUILDMENUTITLE=$( echo "Die heutige Lunch-Karte:" ) +export BUILDREPOMENU1=$( echo "$REPOSAOKP Repositorium" ) +export BUILDREPOMENU2=$( echo "$REPOSAOSP43 Repositorium" ) +export BUILDREPOMENU3=$( echo "$REPOSAOSP Repositorium" ) +export BUILDREPOMENU4=$( echo "$REPOSCARBON Repositorium" ) +export BUILDREPOMENU5=$( echo "$REPOSCM10 Repositorium" ) +export BUILDREPOMENU6=$( echo "$REPOSCM Repositorium" ) +export BUILDREPOMENU7=$( echo "$REPOSEV Repositorium" ) +export BUILDREPOMENU8=$( echo "$REPOSOMNI Repositorium" ) +export BUILDREPOMENU9=$( echo "$REPOSPACMAN Repositorium" ) +export BUILDREPOMENU10=$( echo "$REPOSPARA Repositorium" ) +export BUILDALLABOVE=$( echo "Alle oben genannten Builds!" ) +export BUILDREPONOTSETUP=$( echo "Das ausgewählte Android Repositorium ist nicht eingerichtet!" ) +export BUILDDEVICENOTCOMPATIBLE=$( echo "Das Gerät ist mit dem ausgewählten Repositorium nicht kompatibel, erneut versuchen!" ) +export BUILDMENURETURN=$( echo "Zurück zum Buildmenü, Eingabe drücken um fortzufahren: " ) ## Buildmenu -export BUILDMENUTITLE=$( echo "Today's Lunch Menu:" ) export BUILDMENU1=$( echo "Build Nexus 4" ) export BUILDMENU2=$( echo "Build Nexus 5" ) export BUILDMENU3=$( echo "Build Nexus 7" ) @@ -199,6 +301,115 @@ export BUILDMENU4=$( echo "Build Nexus 10" ) export BUILDMENU5=$( echo "Build Galaxy Nexus" ) export BUILDMENU6=$( echo "Build Nexus S" ) export BUILDMENU7=$( echo "Build Xoom Tablet" ) -export BUILDMENU8=$( echo "Build all above!" ) -export BUILDMENU9=$( echo "Build other device" ) -export BUILDMENU10=$( echo "Build with other repository" ) +export BUILDMENU8=$( echo "Build alle obigen" ) +export BUILDMENU9=$( echo "Build weitere Geräte" ) +export BUILDMENU10=$( echo "Build mit weiterem Repositorium" ) + +## Builddevice +export BUILDDEVICEBEBUILT=$( echo "ist zur Erstellung ausgewählt!" ) +export BUILDDEVICEWHICHREPO=$( echo "Von welchem Repositorium wollen wir heute Builds erstellen?" ) +export BUILDDEVICENEXUS4=$( echo "Build $NEXUS4" ) +export BUILDDEVICENEXUS5=$( echo "Build $NEXUS5" ) +export BUILDDEVICEGSMGNEXUS=$( echo "Build $GSMGNEXUS" ) +export BUILDDEVICESPRGNEXUS=$( echo "Build $SPRGNEXUS" ) +export BUILDDEVICEVZWGNEXUS=$( echo "Build $VZWGNEXUS" ) +export BUILDDEVICEGSMNEXUSS=$( echo "Build $GSMNEXUSS" ) +export BUILDDEVICESPRNEXUSS=$( echo "Build $SPRNEXUSS" ) +export BUILDDEVICEWIFINEXUS72012=$( echo "Build $WIFINEXUS72012" ) +export BUILDDEVICEGSMNEXUS72012=$( echo "Build $GSMNEXUS72012" ) +export BUILDDEVICEALLNEXUS72012=$( echo "Build $ALLNEXUS72012" ) +export BUILDDEVICEWIFINEXUS72013=$( echo "Build $WIFINEXUS72013" ) +export BUILDDEVICELTENEXUS72013=$( echo "Build $LTENEXUS72013" ) +export BUILDDEVICEALLNEXUS72013=$( echo "Build $ALLNEXUS72013" ) +export BUILDDEVICENEXUS10=$( echo "Build $NEXUS10" ) +export BUILDDEVICEWIFIXOOM=$( echo "Build $WIFIXOOM" ) +export BUILDDEVICEVZWXOOM=$( echo "Build $VZWXOOM" ) + +## Buildother +export BUILDOTHERBEBUILT=$( echo "Build für 'andere Geräte' wurde ausgewählt!" ) +export BUILDOTHERTYPEDEVICE=$( echo "Bitte eingeben für welches Gerät der Build sein soll" ) +export BUILDOTHERTYPELIST=$( echo "Mit 'List' alle unterstützten Geräte anzeigen" ) +export BUILDOTHERTYPEEXIT=$( echo "Mit 'exit' zurückkehren" ) +export BUILDOTHERBUILDTITLE=$( echo "Geräteliste" ) +export BUILDOTHERBUILDUNDERLINE=$( echo "===========" ) +export BUILDOTHERNOTCOMPATIBLE=$( echo "Das gewählte Gerät ist mit dem Repositorium nicht kompatibel, Build trotzdem erstellen?" ) +export BUILDOTHERCONTINUE=$( echo "Mit dem gewählten Build fortfahren" ) +export BUILDOTHERNOTVALID=$( echo "Keine gültige Antwort, Build wird nicht erstellt" ) + +## Buildotherrepo +export BUILDOTHERREPOEMPTY=$( echo "Datei für weitere Repos ist leer, hinzufügen und erneut versuchen!" ) +export BUILDOTHERREPOBEBUILT=$( echo "Build für 'anderes Repositorium' ausgewählt!" ) + +## Buildandro +export BUILDANDROCLEAN=$( echo "Verzeichnis aufräumen?" ) +export BUILDANDROCLEANENTER=$( echo "Hast Du gerade unabsichtlich Eingabe gedrückt? Verzeichnis wird trotzdem gesäubert..." ) +export BUILDANDROCCACHECONTINUEWITHOUT=$( echo "Es wird ohne Ccache fortgefahren, falls gewünscht Ccache jetzt einrichten" ) +export BUILDANDROCCACHEFOUND=$( echo "Ccache-Verzeichnis gefunden, wird für Build verwendet" ) +export BUILDANDROCCACHEDIDNOTDETECT=$( echo "Die Küche konnte kein Ccache-Verzeichnis finden, soll dies jetzt erstellt werden?" ) +export BUILDANDROCCACHEOTHER=$( echo "Wenn sich Ccache in einem anderen Verzeichnis befindet jetzt 'other' eingeben" ) +export BUILDANDROCCACHEHOWBIG=$( echo "Wie groß soll das Ccache-Verzeichnis maximal sein? Empfohlen werden 50-100 Gigabytes" ) +export BUILDANDROCCACHEAMOUNTTYPED=$( echo "Denke daran das die Eingabe sich auf Gigybytes bezieht" ) +export BUILDANDROCCACHEREPONOTSUPPORTED=$( echo "Repositorium unterstützt kein Ccache, es wird ohne Ccache fortgefahren" ) +export BUILDANDROCCACHEEXACTLOCATION=$( echo "Wo befindet sich das Ccache-Verzeichnis? Beispiel für das Standardverzeichnis wäre ~/.ccache" ) +export BUILDANDROCCACHENOTFOUND=$( echo "Das angegebene Verzeichnis wurde nicht gefunden, es wird ohne Ccache fortgefahren" ) +export BUILDANDROREPONOTSUPPORTED=$( echo "Repositorim nicht unterstützt!" ) +export BUILDANDROBUILDMESSEDUP=$( echo "Build ist korrupt!" ) +export BUILDANDROMAKETEMP1=$( echo "Temporäres Verzeichnis für Post-Building wird erstellt" ) +export BUILDANDROMAKETEMP2=$( echo "fixes" ) +export BUILDANDROUNZIP=$( echo "Entpacken" ) +export BUILDANDRORMSTUFF=$( echo "Unnötiges Recovery-Verzeichnis und file_contexts wird entfernt von" ) +export BUILDANDROADDROM1=$( echo "ROM Manager-Attribute werden hinzugefügt zu" ) +export BUILDANDROADDROM2=$( echo "'s build.prop" ) +export BUILDANDROZIP=$( echo "Packe" ) +export BUILDANDROSIGN1=$( echo "Signing" ) +export BUILDANDROSIGN2=$( echo "mit test keys" ) +export BUILDANDROMOVEOLD1=$( echo "Verschiebe älteres Build nach" ) +export BUILDANDROMOVEOLD2=$( echo "/alt" ) +export BUILDANDROCOPY=$( echo "Kopiere nach" ) +export BUILDANDROCLEANUP=$( echo "Temporäres Verzeichnis wird aufgeräumt" ) + +## Buildautomenu +export BUILDAUTOMENUTITLE=$( echo "Auto Builder-Menü" ) +export BUILDAUTOMENU1=$( echo "Starte Auto Builder" ) +export BUILDAUTOMENU2=$( echo "Hinzufügen zu Auto Build-Liste" ) +export BUILDAUTOMENU3=$( echo "Lösche Auto Build-Liste" ) +export BUILDAUTOMENU4=$( echo "Verwende Auto Builder-Ausgabe" ) +export BUILDAUTOMENU5=$( echo "Verwende Auto Builder-Funktion 'Build anderes Repo'" ) +export BUILDAUTOMENU6=$( echo "Verwende Auto Builders 'Sleep-Funktion'" ) +export BUILDAUTOMENUSETAUTO=$( echo "Welches Android-Repo soll mit Auto Build bearbeitet werden?" ) +export BUILDAUTOMENUMOVEON=$( echo "Fertig mit dem Hinzufügen der Repos, weiter zum Hinzufügen der Geräte" ) +export BUILDAUTOMENUADD1=$( echo "Hinzugefügt" ) +export BUILDAUTOMENUADD2=$( echo "zu Auto Build-Dateien" ) +export BUILDAUTOMENUTYPEDEVICE=$( echo "Eingeben welches Gerät mit Auto Build bearbeitet werden soll" ) +export BUILDAUTOMENUWANTTOCLEAR=$( echo "Sollen die Auto Build-Dateien wirklich gelöscht werden?" ) +export BUILDAUTOMENUCLEARED=$( echo "Auto Build-Dateien gelöscht" ) +export BUILDAUTOMENUNOTCLEARED=$( echo "Auto Build-Dateien wurden nicht angefasst" ) +export BUILDAUTOMENUOUTPUT=$( echo "Die Buildauto-Ausgabe erfolgt im swordkitchen script-Verzeichnis" ) +export BUILDAUTOMENUSOMEWHERE=$( echo "Sofern jetzt kein anderer Ort angegeben wird?" ) +export BUILDAUTOMENUTYPEOUTPUT=$( echo "Mit 'yes' ein anderes Verzeichnis festlegen:" ) +export BUILDAUTOMENUTYPEABSOLUTE=$( echo "Gewünschten Pfad zur Ausgabe der buildauto.txt eingeben" ) +export BUILDAUTOMENUOUTPUTSENT=$( echo "Ausgabe wird kopiert nach" ) +export BUILDAUTOMENUOUTPUTCLEAR=$( echo "Ausgabe-Datei gelöscht, wird von Buildauto nun regelmässig erstellt" ) +export BUILDAUTOMENUADDBELOWREPO=$( echo "Repo-Verzeichnis für Autobuild in der nächsten Zeile eingeben, otherrepo befindet sich im otherrepo-Verzeichnis; ein Repo pro Zeile" ) +export BUILDAUTOMENUADDBELOWDEVICE=$( echo "Geräte-Codenamen für Autobuild in der nächsten Zeile eingeben, für jedes Gerät eine neue Zeile" ) +export BUILDAUTOMENUOTHERREPOON=$( echo "Auto Builders 'Built anderes Repo' ist aktiv!" ) +export BUILDAUTOMENUOTHERREPOOFF=$( echo "Auto Builders 'Built anderes Repo' ist inaktiv!" ) +export BUILDAUTOMENUCOMPSLEEPTIME1=$( echo "Soll der Computer schlafen für einige" ) +export BUILDAUTOMENUCOMPSLEEPTIME2=$( echo "festgelegte Stunden oder zu einer bestimmten Zeit aufwachen?" ) +export BUILDAUTOMENUSLEEPMENU1=$( echo "Zu einer bestimmten Zeit aufwachen" ) +export BUILDAUTOMENUSLEEPMENU2=$( echo "Einige festgelgte Stunden" ) +export BUILDAUTOMENUSPECIFIC1=$( echo "Zu welchem Zeitpunkt soll der Build-Server am nächsten Tag aufwachen?" ) +export BUILDAUTOMENUSPECIFIC2=$( echo "24-Stunden-Konfiguration, Beispiel: für 19.00 Uhr verwende 19:00, for 7.00 Uhr verwende 07:00" ) +export BUILDAUTOMENUHOURS1=$( echo "Wie lange soll der Build-Server nach Beendigung schlafen?" ) +export BUILDAUTOMENUHOURS2=$( echo "Bitte Anzahl der Stunden eingeben" ) +export BUILDAUTOMENUTYPEPASSY=$( echo "Benutzerpasswort eingeben damit der Build-Server schlafen kann" ) +export BUILDAUTOMENUSLEEPON=$( echo "Auto Builder Schlaffunktion ist jetzt aktiv!" ) +export BUILDAUTOMENUSLEEPOFF=$( echo "Auto Builder Schlaffunktion ist jetzt inaktiv!" ) + +## Buildauto +export BUILDAUTOPLEASE=( echo "Bitte das Auto Builder-Einstellungsmenü verwenden" ) +export BUILDAUTOBOTH=( echo "Weder Repositorium noch Gerät festgelegt!" ) +export BUILDAUTOREPO=( echo "Kein Repositorium für Auto Builder festgelegt" ) +export BUILDAUTODEVICE=( echo "Kein Gerät für Auto Builder festgelegt!" ) +export BUILDAUTOWAIT=( echo "Warte zehn Minuten! Dies ist kein Countdown..." ) +export BUILDAUTOSLEEP=( echo "Schlafe..." ) diff --git a/translation/spanishmackerel b/translation/spanishmackerel index 52d8690..ccf5a31 100755 --- a/translation/spanishmackerel +++ b/translation/spanishmackerel @@ -22,33 +22,66 @@ export MENUGOBACK=$( echo "Volver Atras" ) export NOTPROPERSELECTION=$( echo "No hiciste la selección adecuada, vuelve a intentarlo!" ) export ENTERTOCONTINUE=$( echo "Pulse Intro para continuar: " ) export MAINMENURETURN=$( echo "Volviendo al Menú Principal, Presiona Intro para Continuar: " ) -## NEEDS TRANSLATION! export ABORTMESSAGE=$( echo "Aborting.." ) -## NEEDS TRANSLATION! export COMPLETEDMESSAGE=$( echo "Finalizado!" ) export ANSWERYES=$( echo "sí" ) export ANSWERY=$( echo "s" ) export ANSWERNO=$( echo "no" ) export ANSWERN=$( echo "n" ) +## Macosxinit +## NEEDS TRANSLATION! +export MACOSXINITRUN=$( echo "You are running Mac OS X!" ) +export MACOSXINITCANTFINDDMG=$( echo "We can't find the android image to mount, this is needed to build on mac os x +If you already have one made please put it in its proper place with its proper title +It's proper place and title is in your home folder named android.dmg, example is ~/android.dmg + +Would you like to make a new android.dmg?" ) +export MACOSXINITHOWBIG=$( echo "How big would you like android.dmg? Keep in mind it will increase its size if u need more space +Type in number in gigabytes" ) +export MACOSXINITMOUNTNEW=$( echo "Mounting new android.dmg at /Volumes/android.." ) +export MACOSXINITMOVEINTO=$( echo "Moving into android.dmg.." ) +export MACOSXINITSETUP=$( echo "Setting up kitchen.." ) +export MACOSXINITSETUP=$( echo "Setting up kitchen.." ) +export MACOSXINITFOUNDDMG=$( echo "Found your android.dmg, mounting.." ) +export MACOSXINITCANTFINDKITCHEN=$( echo "We can't find the rom kitchen in /Volumes/android + +Would you like to make install rom kitchen in /Volumes/android?" ) +## NEEDS TRANSLATION! + ## Errors ## NEEDS TRANSLATION! +export ERRORHEADER=$( echo "An Error Has Occurred! +======================" ) +export ERRORSIDEEFFECTS=$( echo "Side effects may include failure to build properly and lack of support +for build environment setup" ) +## NEEDS TRANSLATION! export ERRORCONTACTINFO=$( echo "Si usted ve este error, por favor notificar ya sea xda o RootzWiki Si prefiere por Email puedes encontrarme en: mishana@swordrune10.net Si también está inclinado, tengo un canal freenode #Swordrune10Kitchen" ) +## NEEDS TRANSLATION! +export BOUNCERPOWERPC=$( echo "PowerPC processor detected! +=========================== +Running powerpc isn't necessarily prohibited, but it is not suggested" ) +export BOUNCER32BIT=$( echo "32-bit processor detected! +========================== +Running 32-bit isn't necessarily prohibited, but it is not suggested" ) +export BOUNCERKITCHENHOME=$( echo "Kitchen not set in correct place! +================================= +Kitchen will not work correctly if placed in home folder, please move" ) +## NEEDS TRANSLATION! export ENVIRONMENTSETUP32BIT=$( echo "32-bit no soportado! ===================== El Entorno de compilacion solo soporta Sistemas Operativos de 64-bit " ) export ENVIRONMENTSETUPNOTSUPPORTED=$( echo "Sistema Operativo NO soportado! =============================== Sistemas Operativos Soportados (SOLO 64-bit): -Ubuntu 10.04 - 13.10 (Soporte Completo) +Ubuntu 10.04 - 14.04 (Soporte Completo) Debian (Soporte General) Linux Mint (Soporte General) Arch Linux (Soporte General) Fedora (Soporte General) Mac OS X (Soporte Semi-General)" ) -## NEEDS TRANSLATION! ## Repos export REPOSKITCHEN=$( echo "Aplicacion De Cocina" ) @@ -63,15 +96,38 @@ export REPOSOMNI=$( echo "omnirom" ) export REPOSPACMAN=$( echo "PAC-man" ) export REPOSPARA=$( echo "ParanoidAndroid" ) -## Scriptmakir +## Devices +## NEEDS TRANSLATION! +export NEXUS4=$( echo "GSM Nexus 4" ) +export NEXUS5=$( echo "LTE Nexus 5" ) +export GSMGNEXUS=$( echo "GSM Galaxy Nexus" ) +export SPRGNEXUS=$( echo "Sprint Galaxy Nexus" ) +export VZWGNEXUS=$( echo "Verizon Galaxy Nexus" ) +export ALLGNEXUS=$( echo "All Galaxy Nexi" ) +export GSMNEXUSS=$( echo "GSM Nexus S" ) +export SPRNEXUSS=$( echo "Sprint Nexus S 4G" ) +export ALLNEXUSS=$( echo "All Nexus S'" ) +export WIFINEXUS72012=$( echo "Wifi Nexus 7 (2012) Tablet" ) +export GSMNEXUS72012=$( echo "GSM Nexus 7 (2012) Tablet" ) +export ALLNEXUS72012=$( echo "All Nexus 7 (2012) Tablets" ) +export WIFINEXUS72013=$( echo "Wifi Nexus 7 (2013) Tablet" ) +export LTENEXUS72013=$( echo "LTE Nexus 7 (2013) Tablet" ) +export ALLNEXUS72013=$( echo "All Nexus 7 (2013) Tablets" ) +export ALLNEXUS7=$( echo "All Nexus 7 Tablets" ) +export NEXUS10=$( echo "Wifi Nexus 10" ) +export WIFIXOOM=$( echo "Wifi Xoom Tablet" ) +export VZWXOOM=$( echo "Verizon Xoom Tablet" ) +export ALLXOOM=$( echo "All Xoom Tablets" ) +export ALLNEXUS=$( echo "All Nexus Devices" ) ## NEEDS TRANSLATION! + +## Scriptmakir export SCRIPTMAKIRREDEEMER=$( echo "Redeemer se está ejecutando!" ) export SCRIPTMAKIRRMKITCHEN=$( echo "Eliminación de Cocina" ) export SCRIPTMAKIRSETUPKITCHEN=$( echo "Configurando Cocina" ) export SCRIPTMAKIRDESTROYER=$( echo "Destructor se esta Ejecutando!" ) export SCRIPTMAKIRDESTROYEROFWORLDS=$( echo "Destructor del Mundo esta Ejecutando!" ) export SCRIPTMAKIRRMREPO=$( echo "Eliminando Carpeta de Repositorio" ) -## NEEDS TRANSLATION! ## Kitchen export KITCHENMAINMENU=$( echo "Menú Principal:" ) @@ -152,8 +208,6 @@ export REPOSYNCOTHERREPOSHORTNAME=$( echo "Cual es la abreviatura de este Reposi export REPOSYNCOTHERREPOURL=$( echo "Cual es la url hasta el manifiesto del repositorio?" ) export REPOSYNCOTHERREPOBRANCH=$( echo "¿Cuál es la rama del manifiesto que desea utilizar?" ) -## EVERYTHING BELOW NEEDS TRANSLATION! - ## Environmentsetup export ENVIRONMENTSETUPINIT=$( echo "Inicializando el entorno de Compilacion" ) export ENVIRONMENTSETUPOS=$( echo "Verificando que Sistema Operativo estas Usando" ) @@ -167,7 +221,7 @@ export ENVIRONMENTSETUPDEBIAN=$( echo "Estas Usando Debian!" ) export ENVIRONMENTSETUPULMN=$( echo "Estas Usando Ubuntu, Cualquier 10.04, 10.10, or 11.04!" ) export ENVIRONMENTSETUPUO=$( echo "Estas Usando Ubuntu 11.10!" ) export ENVIRONMENTSETUPUPQ=$( echo "Estas Usando Ubuntu 12.04 or 12.10!" ) -export ENVIRONMENTSETUPURS=$( echo "Estas Usando Ubuntu 13.04 or 13.10!" ) +export ENVIRONMENTSETUPURST=$( echo "You are running Ubuntu 13.04, 13.10, or 14.04!" ) export ENVIRONMENTSETUPMINT=$( echo "Estas Usando Linux Mint!" ) export ENVIRONMENTSETUPARCH=$( echo "Estas Usando Arch Linux!" ) export ENVIRONMENTSETUPDARWIN=$( echo "Estas Usando Mac OS X!" ) @@ -185,3 +239,190 @@ export PREUPDATEAOSP=$( echo "Actualizando $REPOSAOSP's local_manifests Carpeta" export PREUPDATECM10=$( echo "Actualizando $REPOSCM10's local_manifests Carpeta" ) export PREUPDATECM=$( echo "Actualizando $REPOSCM's local_manifests Carpeta" ) export PREUPDATEOMNI=$( echo "Actualizando $REPOSOMNI's local_manifests Carpeta" ) + +## EVERYTHING BELOW NEEDS TRANSLATION! + +## Configkitchen +export CONFIGKITCHENMENUTITLE=$( echo "Kitchen Config Menu" ) +export CONFIGKITCHENMENU1=$( echo "Edit Gitpuller" ) +export CONFIGKITCHENMENU2=$( echo "Edit Romeditor" ) +export CONFIGKITCHENMENU3=$( echo "Create/Edit other repo list" ) +export CONFIGKITCHENOTHERREPO=$( echo "editing custom repos file location" ) +export CONFIGKITCHENOTHERREPONAME=$( echo "editing custom repos name" ) + +## Fixkitchen +export FIXKITCHENSOMETHINGNOT=$( echo "Something is not working right? What should we do?" ) +export FIXKITCHENPURGE=$( echo "Purge = remove files, download from origin" ) +export FIXKITCHENDELETE=$( echo "Delete = delete it!" ) +export FIXKITCHENMENU1=$( echo "Add a repo to a certain local_manifests folder" ) +export FIXKITCHENMENU2=$( echo "Purge a certain local_manifests folder" ) +export FIXKITCHENMENU3=$( echo "Purge or Delete a certain repository" ) +export FIXKITCHENMENU4=$( echo "Purge or Delete all the repositories" ) +export FIXKITCHENMENU5=$( echo "Purge or Delete the Kitchen app" ) +export FIXKITCHENMENU6=$( echo "Delete the Kitchen app, and its dependencies" ) +export FIXKITCHENMENU7=$( echo "Delete the contents of your computer" ) +export FIXKITCHENMENU8=$( echo "Delete the entire internet" ) +export FIXKITCHENADD=$( echo "Adding repo to otherdevices.xml for" ) +export FIXKITCHENPURGE=$( echo "local_manifests folder was purged" ) +export FIXKITCHENWHICHADD=$( echo "Which repo would you like to add to?" ) +export FIXKITCHENWHICHPURGE=$( echo "Which repo would you like to purge its local_manifests folder?" ) +export FIXKITCHENWHICHREPO=$( echo "Which repo would you like to purge or delete?" ) +export FIXKITCHENPURGEDELETE=$( echo "Purge or Delete?" ) +export FIXKITCHENPURGEDELETEEXIT=$( echo "Purge = remove files, download from origin +Delete = delete it! +type exit to go to back" ) +export FIXKITCHENPURGEDELETEREPO=$( echo "Purge or Delete all of the repositories?" ) +export FIXKITCHENPURGEDELETEKITCHEN=$( echo "Purge or Delete the Kitchen app?" ) +export FIXKITCHENREDEEMER=$( echo "Switching to Redeemer script.." ) +export FIXKITCHENDELETEKITCHEN=$( echo "Are you sure you want to remove the Kitchen app?" ) +export FIXKITCHENTYPEYES=$( echo "You must type in \"yes\" to continue" ) +export FIXKITCHENTYPEABORT=$( echo "Type in anything else to abort operation" ) +export FIXKITCHENDESTROYERSWITCH=$( echo "Switching to Destroyer script" ) +export FIXKITCHENDELETEKITCHENALL=$( echo "Are you sure you want to remove the Kitchen app and its dependencies?" ) +export FIXKITCHENNOTDELETEBUILDS=$( echo "Please note: the builds directory will not be deleted" ) +export FIXKITCHENDESTROYEROFWORLDSSWITCH=$( echo "Switching to Destroyer of Worlds script" ) +export FIXKITCHENDELETECOMPUTER=$( echo "Are you sure..? this will delete everything on your computer, including mounted external drives and flash drives!!" ) +export SUICIDENOTE=$( echo "yes, please delete everything off of my computer" ) +export FIXKITCHENMUSTTYPEEXACTLY=$( echo "You must type in exactly \"$SUICIDENOTE\" to continue" ) +export FIXKITCHENTYPEPASSY=$( echo "Please type in your password to destroy everything" ) +export TROLLFACETITLE=$( echo "Trollface's Android Kitchen!" ) +export TROLLFACEUNDERLINE=$( echo "============================" ) +export FIXKITCHENIBET=$( echo "Oh man, I bet you wish it was that easy!" ) + +## Build Common +export BUILDMENUTITLE=$( echo "Today's Lunch Menu:" ) +export BUILDREPOMENU1=$( echo "$REPOSAOKP repository" ) +export BUILDREPOMENU2=$( echo "$REPOSAOSP43 repository" ) +export BUILDREPOMENU3=$( echo "$REPOSAOSP repository" ) +export BUILDREPOMENU4=$( echo "$REPOSCARBON repository" ) +export BUILDREPOMENU5=$( echo "$REPOSCM10 repository" ) +export BUILDREPOMENU6=$( echo "$REPOSCM repository" ) +export BUILDREPOMENU7=$( echo "$REPOSEV repository" ) +export BUILDREPOMENU8=$( echo "$REPOSOMNI repository" ) +export BUILDREPOMENU9=$( echo "$REPOSPACMAN repository" ) +export BUILDREPOMENU10=$( echo "$REPOSPARA repository" ) +export BUILDALLABOVE=$( echo "Build all above!" ) +export BUILDREPONOTSETUP=$( echo "The selected android repository is not setup!" ) +export BUILDDEVICENOTCOMPATIBLE=$( echo "This device is not compatible with this repository, try again!" ) +export BUILDMENURETURN=$( echo "Returning to Build Menu, Press Enter to continue: " ) + +## Buildmenu +export BUILDMENU1=$( echo "Build Nexus 4" ) +export BUILDMENU2=$( echo "Build Nexus 5" ) +export BUILDMENU3=$( echo "Build Nexus 7" ) +export BUILDMENU4=$( echo "Build Nexus 10" ) +export BUILDMENU5=$( echo "Build Galaxy Nexus" ) +export BUILDMENU6=$( echo "Build Nexus S" ) +export BUILDMENU7=$( echo "Build Xoom Tablet" ) +export BUILDMENU8=$( echo "Build all above!" ) +export BUILDMENU9=$( echo "Build other device" ) +export BUILDMENU10=$( echo "Build with other repository" ) + +## Builddevice +export BUILDDEVICEBEBUILT=$( echo "is selected to be built!" ) +export BUILDDEVICEWHICHREPO=$( echo "Which android repository are we building from today?" ) +export BUILDDEVICENEXUS4=$( echo "Build $NEXUS4" ) +export BUILDDEVICENEXUS5=$( echo "Build $NEXUS5" ) +export BUILDDEVICEGSMGNEXUS=$( echo "Build $GSMGNEXUS" ) +export BUILDDEVICESPRGNEXUS=$( echo "Build $SPRGNEXUS" ) +export BUILDDEVICEVZWGNEXUS=$( echo "Build $VZWGNEXUS" ) +export BUILDDEVICEGSMNEXUSS=$( echo "Build $GSMNEXUSS" ) +export BUILDDEVICESPRNEXUSS=$( echo "Build $SPRNEXUSS" ) +export BUILDDEVICEWIFINEXUS72012=$( echo "Build $WIFINEXUS72012" ) +export BUILDDEVICEGSMNEXUS72012=$( echo "Build $GSMNEXUS72012" ) +export BUILDDEVICEALLNEXUS72012=$( echo "Build $ALLNEXUS72012" ) +export BUILDDEVICEWIFINEXUS72013=$( echo "Build $WIFINEXUS72013" ) +export BUILDDEVICELTENEXUS72013=$( echo "Build $LTENEXUS72013" ) +export BUILDDEVICEALLNEXUS72013=$( echo "Build $ALLNEXUS72013" ) +export BUILDDEVICENEXUS10=$( echo "Build $NEXUS10" ) +export BUILDDEVICEWIFIXOOM=$( echo "Build $WIFIXOOM" ) +export BUILDDEVICEVZWXOOM=$( echo "Build $VZWXOOM" ) + +## Buildother +export BUILDOTHERBEBUILT=$( echo "Build other device is selected to be built!" ) +export BUILDOTHERTYPEDEVICE=$( echo "Please type in which device you would like to build" ) +export BUILDOTHERTYPELIST=$( echo "Type in list to see all supported devices" ) +export BUILDOTHERTYPEEXIT=$( echo "Type in exit to go back" ) +export BUILDOTHERBUILDTITLE=$( echo "Device List" ) +export BUILDOTHERBUILDUNDERLINE=$( echo "===========" ) +export BUILDOTHERNOTCOMPATIBLE=$( echo "This device is not compatible with this repository, build anyways?" ) +export BUILDOTHERCONTINUE=$( echo "Continuing the build" ) +export BUILDOTHERNOTVALID=$( echo "Not a vaild answer, not going to build" ) + +## Buildotherrepo +export BUILDOTHERREPOEMPTY=$( echo "other repo file is empty, please add to file then try again!" ) +export BUILDOTHERREPOBEBUILT=$( echo "Build with other repository is selected to be built!" ) + +## Buildandro +export BUILDANDROCLEAN=$( echo "Clean out folder?" ) +export BUILDANDROCLEANENTER=$( echo "Did you just hit enter without a care? for that im just gonna clean the folder anyways.." ) +export BUILDANDROCCACHECONTINUEWITHOUT=$( echo "Continuing without ccache use; if you want to use ccache, please set it up" ) +export BUILDANDROCCACHEFOUND=$( echo "Found ccache folder, will use for build" ) +export BUILDANDROCCACHEDIDNOTDETECT=$( echo "The kitchen did not detect the ccache folder, did you want to make one now?" ) +export BUILDANDROCCACHEOTHER=$( echo "If ccache is located at another location type in other" ) +export BUILDANDROCCACHEHOWBIG=$( echo "How big do you want the maximum size of ccache? suggested size is 50 - 100 gigabytes" ) +export BUILDANDROCCACHEAMOUNTTYPED=$( echo "Keep in mind the amount typed is in gigabytes" ) +export BUILDANDROCCACHEREPONOTSUPPORTED=$( echo "Repository does not support ccache, continuing without it" ) +export BUILDANDROCCACHEEXACTLOCATION=$( echo "Where is the exact location of ccache? Example of where default location is is ~/.ccache" ) +export BUILDANDROCCACHENOTFOUND=$( echo "Location specified was not found, continuing without it" ) +export BUILDANDROREPONOTSUPPORTED=$( echo "Repository not supported!" ) +export BUILDANDROBUILDMESSEDUP=$( echo "Build messed up!" ) +export BUILDANDROMAKETEMP1=$( echo "Making temporary folder for post-building" ) +export BUILDANDROMAKETEMP2=$( echo "fixes" ) +export BUILDANDROUNZIP=$( echo "Unzipping" ) +export BUILDANDRORMSTUFF=$( echo "Removing uneeded recovery folder and file_contexts from" ) +export BUILDANDROADDROM1=$( echo "Adding rom manager items to" ) +export BUILDANDROADDROM2=$( echo "'s build.prop" ) +export BUILDANDROZIP=$( echo "Zipping" ) +export BUILDANDROSIGN1=$( echo "Signing" ) +export BUILDANDROSIGN2=$( echo "with test keys" ) +export BUILDANDROMOVEOLD1=$( echo "Moving older build to" ) +export BUILDANDROMOVEOLD2=$( echo "/old" ) +export BUILDANDROCOPY=$( echo "Copying to" ) +export BUILDANDROCLEANUP=$( echo "Cleaning up temporary folder" ) + +## Buildautomenu +export BUILDAUTOMENUTITLE=$( echo "Auto Builder Menu" ) +export BUILDAUTOMENU1=$( echo "Run Auto Builder" ) +export BUILDAUTOMENU2=$( echo "Add to auto build list" ) +export BUILDAUTOMENU3=$( echo "Clear auto build list" ) +export BUILDAUTOMENU4=$( echo "Toggle Auto Builder's output" ) +export BUILDAUTOMENU5=$( echo "Toggle Auto Builder's build other repo" ) +export BUILDAUTOMENU6=$( echo "Toggle Auto Builder's sleep function" ) +export BUILDAUTOMENUSETAUTO=$( echo "Which android repository are we setting for auto build?" ) +export BUILDAUTOMENUMOVEON=$( echo "Finished with adding repos, move on to adding devices" ) +export BUILDAUTOMENUADD1=$( echo "Added" ) +export BUILDAUTOMENUADD2=$( echo "to auto build files" ) +export BUILDAUTOMENUTYPEDEVICE=$( echo "Please type in Which android device are we setting for auto build" ) +export BUILDAUTOMENUWANTTOCLEAR=$( echo "Are you sure you want to clear auto build files?" ) +export BUILDAUTOMENUCLEARED=$( echo "Auto build files cleared" ) +export BUILDAUTOMENUNOTCLEARED=$( echo "Auto build files left untouched" ) +export BUILDAUTOMENUOUTPUT=$( echo "This will output buildauto into swordkitchen script folder" ) +export BUILDAUTOMENUSOMEWHERE=$( echo "Unless you want it to be somewhere else?" ) +export BUILDAUTOMENUTYPEOUTPUT=$( echo "Type yes to output somewhere else:" ) +export BUILDAUTOMENUTYPEABSOLUTE=$( echo "Please type the absolute path of where u want the buildoutput.txt to be" ) +export BUILDAUTOMENUOUTPUTSENT=$( echo "Output will be sent to" ) +export BUILDAUTOMENUOUTPUTCLEAR=$( echo "Output file cleared, buildauto will now output regularly" ) +export BUILDAUTOMENUADDBELOWREPO=$( echo "Add below this line the repo folder you want to auto build, otherrepo are in the otherrepo folder, list each repo per line" ) +export BUILDAUTOMENUADDBELOWDEVICE=$( echo "Add below this line the device codename you want to auto build, list each device per line" ) +export BUILDAUTOMENUOTHERREPOON=$( echo "Auto Builder's build other repo is now on!" ) +export BUILDAUTOMENUOTHERREPOOFF=$( echo "Auto Builder's build other repo is now off!" ) +export BUILDAUTOMENUCOMPSLEEPTIME1=$( echo "Do you want the computer to sleep for a" ) +export BUILDAUTOMENUCOMPSLEEPTIME2=$( echo "certain amount of hours or wake up at a certain time?" ) +export BUILDAUTOMENUSLEEPMENU1=$( echo "Wake up at a certain time" ) +export BUILDAUTOMENUSLEEPMENU2=$( echo "Certain amount of hours" ) +export BUILDAUTOMENUSPECIFIC1=$( echo "What time do you want the build server to wake up at the next day?" ) +export BUILDAUTOMENUSPECIFIC2=$( echo "24 hours configuration, Example: for 2pm put 14:00, for 7am put 07:00" ) +export BUILDAUTOMENUHOURS1=$( echo "How long would you like for the build server to sleep after building?" ) +export BUILDAUTOMENUHOURS2=$( echo "The number being inputted is in hours" ) +export BUILDAUTOMENUTYPEPASSY=$( echo "Please type in your user's password, so the build server can sleep" ) +export BUILDAUTOMENUSLEEPON=$( echo "Auto Builder's sleep function is now on!" ) +export BUILDAUTOMENUSLEEPOFF=$( echo "Auto Builder's sleep function is now off!" ) + +## Buildauto +export BUILDAUTOPLEASE=( echo "Please use the Auto Builder config menu" ) +export BUILDAUTOBOTH=( echo "Both Auto Builder's repository and device is not set!" ) +export BUILDAUTOREPO=( echo "Auto Builder's repository is not set!" ) +export BUILDAUTODEVICE=( echo "Auto Builder's device is not set!" ) +export BUILDAUTOWAIT=( echo "Waiting for ten minutes! this is not a countdown.." ) +export BUILDAUTOSLEEP=( echo "Sleep..." ) diff --git a/translation/whitefish b/translation/whitefish new file mode 100755 index 0000000..a90a276 --- /dev/null +++ b/translation/whitefish @@ -0,0 +1,420 @@ +#!/bin/bash +# Copyright (C) 2014 Sean Donovan + +# Licensed under the Apache License, Version 2.0 (the "License"); +# you may not use this file except in compliance with the License. +# You may obtain a copy of the License at + +# http://www.apache.org/licenses/LICENSE-2.0 + +# Unless required by applicable law or agreed to in writing, software +# distributed under the License is distributed on an "AS IS" BASIS, +# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +# See the License for the specific language governing permissions and +# limitations under the License. + +# Russian + +## Common +export KITCHENTITLE=$( echo "Swordrune10's Android Kitchen!" ) +export KITCHENUNDERLINE=$( echo "==============================" ) +export KITCHENMENUWHICH=$( echo "Что Вы хотите сделать?: " ) +export MENUGOBACK=$( echo "Назад" ) +export NOTPROPERSELECTION=$( echo "Вы не сделали выбор, попытайтесь снова!" ) +export ENTERTOCONTINUE=$( echo "Нажмите ввод для продолжения: " ) +export MAINMENURETURN=$( echo "Возврат в основное меню, нажмите ввод для продолжения: " ) +export ENTERTOEXIT=$( echo "Нажмите ввод для выхода: " ) +export ABORTMESSAGE=$( echo "Отмена.." ) +export COMPLETEDMESSAGE=$( echo "Готово!" ) +export QUESTIONYESNO=$( echo "да/нет? " ) +export ANSWERYES=$( echo "да" ) +export ANSWERY=$( echo "д" ) +export ANSWERNO=$( echo "нет" ) +export ANSWERN=$( echo "н" ) + +## Macosxinit +export MACOSXINITRUN=$( echo "Обнаружена Mac OS X!" ) +export MACOSXINITCANTFINDDMG=$( echo "Невозможно найти образ android для установки, сборка должна быть на mac os x +Если Вы это уже выполнили, пожалуйста, вставьте в правильное место с правильным названием +Правильное место и название - Ваша домашняя папка с именем android.dmg, например ~/android.dmg + +Хотите создать новый android.dmg?" ) +export MACOSXINITHOWBIG=$( echo "Насколько большим должен быть android.dmg? Учитывайте, что при увеличении размера Вам понадобится больше места +Введите число в гигабайтах" ) +export MACOSXINITMOUNTNEW=$( echo "Установка нового android.dmg в /Volumes/android.." ) +export MACOSXINITMOVEINTO=$( echo "Перемещение в android.dmg.." ) +export MACOSXINITSETUP=$( echo "Настройка kitchen.." ) +export MACOSXINITSETUP=$( echo "Настройка kitchen.." ) +export MACOSXINITFOUNDDMG=$( echo "Найден Ваш android.dmg, установка.." ) +export MACOSXINITCANTFINDKITCHEN=$( echo "Невозможно найти rom kitchen в /Volumes/android + +Хотите произвести установку rom kitchen в /Volumes/android?" ) + +## Errors +export ERRORHEADER=$( echo "Произошла ошибка! +======================" ) +export ERRORSIDEEFFECTS=$( echo "Побочные эффекты могут включать сбой корректной сборки и отсутствие поддержки +for build environment setup" ) +export ERRORCONTACTINFO=$( echo "Если Вы видите эту ошибку, пожалуйста, сообщите мне на xda или rootzwiki +Если предпочитаете почту, напишите на mishana@swordrune10.net +Помимо этого, у меня есть канал на freenode #Swordrune10Kitchen" ) +export BOUNCERPOWERPC=$( echo "Обнаружен процессор PowerPC! +=========================== +Использование powerpc не обязательно запрещено, но не рекомендуется" ) +export BOUNCER32BIT=$( echo "Обнаружен процессор 32-бит! +========================== +Использование 32-бит не обязательно запрещено, но не рекомендуется" ) +export BOUNCERKITCHENHOME=$( echo "Kitchen установлена в неправильное место! +================================= +Kitchen не будет корректно работать при установке в домашнюю папку, пожалуйста, переместите" ) +export ENVIRONMENTSETUP32BIT=$( echo "32-бит не поддерживается! +===================== +Установка сборки поддерживает только операционные системы 64-бит" ) +export ENVIRONMENTSETUPNOTSUPPORTED=$( echo "Операционная система не поддерживается! +=============================== +Поддерживаемые операционные системы (только 64-бит): +Ubuntu 10.04 - 14.04 (полная поддержка) +Debian (общая поддержка) +Linux Mint (общая поддержка) +Arch Linux (общая поддержка) +Fedora (общая поддержка) +Mac OS X (общая поддержка)" ) + +## Repos +export REPOSKITCHEN=$( echo "Kitchen app" ) +export REPOSAOKP=$( echo "Android Open Kang Project" ) +export REPOSAOSP43=$( echo "Android Open Source Project 4.3" ) +export REPOSAOSP=$( echo "Android Open Source Project 4.4" ) +export REPOSCARBON=$( echo "Carbon" ) +export REPOSCM10=$( echo "Cyanogenmod 10.2" ) +export REPOSCM=$( echo "Cyanogenmod 11" ) +export REPOSEV=$( echo "Evervolv" ) +export REPOSOMNI=$( echo "omnirom" ) +export REPOSPACMAN=$( echo "PAC-man" ) +export REPOSPARA=$( echo "ParanoidAndroid" ) + +## Devices +export NEXUS4=$( echo "GSM Nexus 4" ) +export NEXUS5=$( echo "LTE Nexus 5" ) +export GSMGNEXUS=$( echo "GSM Galaxy Nexus" ) +export SPRGNEXUS=$( echo "Sprint Galaxy Nexus" ) +export VZWGNEXUS=$( echo "Verizon Galaxy Nexus" ) +export ALLGNEXUS=$( echo "Все Galaxy Nexi" ) +export GSMNEXUSS=$( echo "GSM Nexus S" ) +export SPRNEXUSS=$( echo "Sprint Nexus S 4G" ) +export ALLNEXUSS=$( echo "Все Nexus S'" ) +export WIFINEXUS72012=$( echo "Планшет Wifi Nexus 7 (2012)" ) +export GSMNEXUS72012=$( echo "Планшет GSM Nexus 7 (2012)" ) +export ALLNEXUS72012=$( echo "Все планшеты Nexus 7 (2012)" ) +export WIFINEXUS72013=$( echo "Планшет Wifi Nexus 7 (2013)" ) +export LTENEXUS72013=$( echo "Планшет LTE Nexus 7 (2013)" ) +export ALLNEXUS72013=$( echo "Все планшеты Nexus 7 (2013)" ) +export ALLNEXUS7=$( echo "Все планшеты Nexus 7" ) +export NEXUS10=$( echo "Wifi Nexus 10" ) +export WIFIXOOM=$( echo "Планшет Wifi Xoom" ) +export VZWXOOM=$( echo "Планшет Verizon Xoom" ) +export ALLXOOM=$( echo "Все планшеты Xoom" ) +export ALLNEXUS=$( echo "Все устройства Nexus" ) + +## Scriptmakir +export SCRIPTMAKIRREDEEMER=$( echo "Redeemer запущен!" ) +export SCRIPTMAKIRRMKITCHEN=$( echo "Удаление Kitchen" ) +export SCRIPTMAKIRSETUPKITCHEN=$( echo "Настройка Kitchen" ) +export SCRIPTMAKIRDESTROYER=$( echo "Destroyer запущен!" ) +export SCRIPTMAKIRDESTROYEROFWORLDS=$( echo "Destroyer of Worlds запущен!" ) +export SCRIPTMAKIRRMREPO=$( echo "Удаление папки репозитория" ) + +## Kitchen +export KITCHENMAINMENU=$( echo "Главное меню:" ) +export KITCHENMENU1=$( echo "Настройка/обновление Kitchen" ) +export KITCHENMENU2=$( echo "Конфигурация Kitchen" ) +export KITCHENMENU3=$( echo "Запустить Kitchen" ) +export KITCHENMENU4=$( echo "Исправить Kitchen" ) +export KITCHENMENU5=$( echo "Автосборка Kitchen" ) +export KITCHENMENU6=$( echo "Выход" ) +export KITCHENTHANKS=$( echo "Спасибо за использование Swordrune10's Kitchen! До свидания.." ) +export KITCHENBORED=$( echo "Похоже, Вам скучно.. хотите посмотреть кино?" ) +export KITCHENTOUGH=$( echo "Облом!" ) + +## Reposync +# Usage and Flags +export REPOSYNCUSAGE=$( echo "repo -- программа для инициализации/обновления репозиториев android" ) +export REPOSYNCFLAGD=$( echo "удалить соответствующую папку и выйти из программы" ) +export REPOSYNCFLAGH=$( echo "показать эту справку" ) +export REPOSYNCFLAGP=$( echo "очистить папку, реинициализировать, после чего обновить" ) +export REPOSYNCFLAGU=$( echo "обновить этот отдельный репозиторий" ) +export REPOSYNCUPDATE1=$( echo "Обновить $REPOSKITCHEN" ) +export REPOSYNCUPDATE2=$( echo "Обновить $REPOSAOKP" ) +export REPOSYNCUPDATE3=$( echo "Обновить $REPOSAOSP43" ) +export REPOSYNCUPDATE4=$( echo "Обновить $REPOSAOSP" ) +export REPOSYNCUPDATE5=$( echo "Обновить $REPOSCARBON" ) +export REPOSYNCUPDATE6=$( echo "Обновить $REPOSCM10" ) +export REPOSYNCUPDATE7=$( echo "Обновить $REPOSCM" ) +export REPOSYNCUPDATE8=$( echo "Обновить $REPOSEV" ) +export REPOSYNCUPDATE9=$( echo "Обновить $REPOSOMNI" ) +export REPOSYNCUPDATE10=$( echo "Обновить $REPOSPACMAN" ) +export REPOSYNCUPDATE11=$( echo "Обновить $REPOSPARA" ) +export REPOSYNCUPDATE12=$( echo "Обновить все доступные репозитории" ) +export REPOSYNCUPDATE13=$( echo "Обновить все репозитории" ) +export REPOSYNCUSAGEEXAMP=$( echo "Пример: reposync -u cm-10.2" ) +export REPOSYNCUSAGELIST1=$( echo "ввод \"reposync -u list\" переместит" ) +export REPOSYNCUSAGELIST2=$( echo "Вас опять в список опций" ) + +# Menu +export REPOSYNCMENUWHAT=$( echo "Что вы обновляете?" ) +export REPOSYNCMENUINIT=$( echo "Если репозиторий не инициализирован, он будет on update" ) +export REPOSYNCMENU1=$( echo "Установить команду repo" ) +export REPOSYNCMENU2=$( echo "Установить среду сборки" ) +export REPOSYNCMENU3=$( echo "Обновить репозиторий $REPOSKITCHEN" ) +export REPOSYNCMENU4=$( echo "Обновить репозиторий $REPOSAOKP" ) +export REPOSYNCMENU5=$( echo "Обновить репозиторий $REPOSAOSP43" ) +export REPOSYNCMENU6=$( echo "Обновить репозиторий $REPOSAOSP" ) +export REPOSYNCMENU7=$( echo "Обновить репозиторий $REPOSCARBON" ) +export REPOSYNCMENU8=$( echo "Обновить репозиторий $REPOSCM10" ) +export REPOSYNCMENU9=$( echo "Обновить репозиторий $REPOSCM" ) +export REPOSYNCMENU10=$( echo "Обновить репозиторий $REPOSEV" ) +export REPOSYNCMENU11=$( echo "Обновить репозиторий $REPOSOMNIy" ) +export REPOSYNCMENU12=$( echo "Обновить репозиторий $REPOSPACMAN" ) +export REPOSYNCMENU13=$( echo "Обновить репозиторий $REPOSPARA" ) +export REPOSYNCMENU14=$( echo "Обновить все доступные репозитории" ) +export REPOSYNCMENU15=$( echo "Обновить все репозитории!" ) +export REPOSYNCMENU16=$( echo "Обновить/добавить otherrepo" ) + +# Sync and Init +export REPOSYNCNOTINITSKIP=$( echo "не инициализировано, пропуск" ) +export REPOSYNCUPDATING=$( echo "Обновление" ) +export REPOSYNCBLAHSMANIFEST=$( echo "манифест" ) +export REPOSYNCNOTINITYET=$( echo "не инициализировано, инициализация сейчас" ) +export REPOSYNCNOTINITWANTTO=$( echo "не инициализировано, хотите инициализировать?" ) +export REPOSYNCINIT=$( echo "инициализация" ) +export REPOSYNCNOTINIT=$( echo "не было инициализировано" ) +export REPOSYNCREPO=$( echo "репозиторий" ) +export REPOSYNCREPOALREADY=$( echo "Команда repo уже установлена" ) +export REPOSYNCREPOINSTALL=$( echo "Установка команды repo" ) +export REPOSYNCCOMPLETE=$( echo "Обновление завершено!" ) + +# Otherrepo Sync and Init +export REPOSYNCADDOR=$( echo "Мы добавляем или обновляем otherrepo?" ) +export REPOSYNCOTHERMENU1=$( echo "Добавить в пользовательскую папку репозитория" ) +export REPOSYNCOTHERMENU2=$( echo "Обновить все пользовательские репозитории" ) +export REPOSYNCOTHERREPONAME=$( echo "Какое имя у репозитория?" ) +export REPOSYNCOTHERREPOSHORTNAME=$( echo "Какое короткое имя у этого репозитория? Пример: Android Open Source Project = aosp" ) +export REPOSYNCOTHERREPOURL=$( echo "Какой url к манифесту репозитория?" ) +export REPOSYNCOTHERREPOBRANCH=$( echo "Какую ветвь манифеста репозитория Вы хотите использовать?" ) + +## Environmentsetup +export ENVIRONMENTSETUPINIT=$( echo "Инициализация среды сборки" ) +export ENVIRONMENTSETUPOS=$( echo "Определение операционной системы.." ) +export ENVIRONMENTSETUPINSTALL=$( echo "Установка необходимых пакетов, пожалуйста, введите пароль" ) +export ENVIRONMENTSETUPDXCODE=$( echo "Xcode установлен? Рекомендуем версию 3.1.4 или новее" ) +export ENVIRONMENTSETUPDMACPORTS=$( echo "MacPorts установлен?" ) + +# Platform +export ENVIRONMENTSETUPFEDORA=$( echo "У Вас Fedora или RedHat!" ) +export ENVIRONMENTSETUPDEBIAN=$( echo "У Вас Debian!" ) +export ENVIRONMENTSETUPULMN=$( echo "У Вас Ubuntu, либо 10.04, 10.10, либо 11.04!" ) +export ENVIRONMENTSETUPUO=$( echo "У Вас Ubuntu 11.10!" ) +export ENVIRONMENTSETUPUPQ=$( echo "У Вас Ubuntu 12.04 или 12.10!" ) +export ENVIRONMENTSETUPURST=$( echo "У Вас Ubuntu 13.04, 13.10, либо 14.04!" ) +export ENVIRONMENTSETUPMINT=$( echo "У Вас Linux Mint!" ) +export ENVIRONMENTSETUPARCH=$( echo "У Вас Arch Linux!" ) +export ENVIRONMENTSETUPDARWIN=$( echo "У Вас Mac OS X!" ) + +# Java +export ENVIRONMENTSETUPFLEXION=$( echo "Установка java займёт некоторое время, для соблюдения формальностей приложение Kitchen будет использовать данные из скрипта oab-java с flexion.org" ) +export ENVIRONMENTSETUPFLEXION1=$( echo " [x] Получение страницы загрузки Java SE" ) +export ENVIRONMENTSETUPFLEXION2=$( echo " [x] Получение страницы загрузки текущего релиза" ) +export ENVIRONMENTSETUPFLEXION3=$( echo " [x] Получение страницы загрузки предыдущих релизов" ) +export ENVIRONMENTSETUPWEBUPD8=$( echo "Установка java займёт некоторое время, для соблюдения формальностей приложение Kitchen будет использовать установщик java webupd8" ) + +## Preupdate +export PREUPDATEAOSP43=$( echo "Обновление папки local_manifests $REPOSAOSP43" ) +export PREUPDATEAOSP=$( echo "Обновление папки local_manifests $REPOSAOSP" ) +export PREUPDATECM10=$( echo "Обновление папки local_manifests $REPOSCM10" ) +export PREUPDATECM=$( echo "Обновление папки local_manifests $REPOSCM" ) +export PREUPDATEOMNI=$( echo "Обновление папки local_manifests $REPOSOMNI" ) + +## Configkitchen +export CONFIGKITCHENMENUTITLE=$( echo "Меню конфигупации Kitchen" ) +export CONFIGKITCHENMENU1=$( echo "Редактировать Gitpuller" ) +export CONFIGKITCHENMENU2=$( echo "Редактировать Romeditor" ) +export CONFIGKITCHENMENU3=$( echo "Создать/редактировать список other repo" ) +export CONFIGKITCHENOTHERREPO=$( echo "редактирование расположений файлов пользовательских репозиториев" ) +export CONFIGKITCHENOTHERREPONAME=$( echo "редактирование названий пользовательских репозиториев" ) + +## Fixkitchen +export FIXKITCHENSOMETHINGNOT=$( echo "Что-то работает неправильно? Что делать?" ) +export FIXKITCHENPURGE=$( echo "Purge = удалить файлы, загрузить снова" ) +export FIXKITCHENDELETE=$( echo "Delete = удалить это!" ) +export FIXKITCHENMENU1=$( echo "Добавить репо к определённой папке local_manifests" ) +export FIXKITCHENMENU2=$( echo "Очистить определённую папку local_manifests" ) +export FIXKITCHENMENU3=$( echo "Очистить или удалить определённый репозиторий" ) +export FIXKITCHENMENU4=$( echo "Очистить или удалить все репозитории" ) +export FIXKITCHENMENU5=$( echo "Очистить или удалить приложение Kitchen" ) +export FIXKITCHENMENU6=$( echo "Удалить приложение Kitchen и его зависимости" ) +export FIXKITCHENMENU7=$( echo "Удалить содержание Вашего компьютера" ) +export FIXKITCHENMENU8=$( echo "Удалить весь интернет" ) +export FIXKITCHENADD=$( echo "Добавление репозитория для otherdevices.xml для" ) +export FIXKITCHENPURGE=$( echo "папка local_manifests была очищена" ) +export FIXKITCHENWHICHADD=$( echo "В какой репозиторий Вы хотите добавить?" ) +export FIXKITCHENWHICHPURGE=$( echo "В каком репозитории Вы хотите очистить папку local_manifests?" ) +export FIXKITCHENWHICHREPO=$( echo "Какой репозиторий Вы хотите очистить или удалить?" ) +export FIXKITCHENPURGEDELETE=$( echo "Purge или Delete?" ) +export FIXKITCHENPURGEDELETEEXIT=$( echo "Purge = удалить файлы, загрузить снова +Delete = удалить это! +введите exit для возврата назад" ) +export FIXKITCHENPURGEDELETEREPO=$( echo "Очистить или удалить все репозитории?" ) +export FIXKITCHENPURGEDELETEKITCHEN=$( echo "Очистить или удалить приложение Kitchen?" ) +export FIXKITCHENREDEEMER=$( echo "Переключение на скрипт Redeemer.." ) +export FIXKITCHENDELETEKITCHEN=$( echo "Уверены, что хотите удалить приложение Kitchen?" ) +export FIXKITCHENTYPEYES=$( echo "Нужно ввести \"да\" для продолжения" ) +export FIXKITCHENTYPEABORT=$( echo "Введите что-нибудь ещё для отмены операции" ) +export FIXKITCHENDESTROYERSWITCH=$( echo "Переключение на скрипт Destroyer" ) +export FIXKITCHENDELETEKITCHENALL=$( echo "Уверены, что хотите удалить приложение Kitchen и его зависимости?" ) +export FIXKITCHENNOTDELETEBUILDS=$( echo "Пожалуйста, учтите: каталог сборки не будет удалён" ) +export FIXKITCHENDESTROYEROFWORLDSSWITCH=$( echo "Переключение на скрипт Destroyer of Worlds" ) +export FIXKITCHENDELETECOMPUTER=$( echo "Уверены..? Это удалит всё с Вашего компьютера, включая подключенные внешние диски и флэш-накопители!!" ) +export SUICIDENOTE=$( echo "да, пожалуйста, удалите всё с моего компьютера" ) +export FIXKITCHENMUSTTYPEEXACTLY=$( echo "Вы должны точно ввести \"$SUICIDENOTE\" для продолжения" ) +export FIXKITCHENTYPEPASSY=$( echo "Пожалуйста, введите Ваш пароль для уничтожения всего" ) +export TROLLFACETITLE=$( echo "Android Kitchen-тролль!" ) +export TROLLFACEUNDERLINE=$( echo "============================" ) +export FIXKITCHENIBET=$( echo "Да, старина, спорю, тебе жаль, что это не так легко!" ) + +## Build Common +export BUILDMENUTITLE=$( echo "Меню сегодняшнего ланча:" ) +export BUILDREPOMENU1=$( echo "Репозиторий $REPOSAOKP" ) +export BUILDREPOMENU2=$( echo "Репозиторий $REPOSAOSP43y" ) +export BUILDREPOMENU3=$( echo "Репозиторий $REPOSAOSP" ) +export BUILDREPOMENU4=$( echo "Репозиторий $REPOSCARBON" ) +export BUILDREPOMENU5=$( echo "Репозиторий $REPOSCM10" ) +export BUILDREPOMENU6=$( echo "Репозиторий $REPOSCM" ) +export BUILDREPOMENU7=$( echo "Репозиторий $REPOSEV" ) +export BUILDREPOMENU8=$( echo "Репозиторий $REPOSOMNI" ) +export BUILDREPOMENU9=$( echo "Репозиторий $REPOSPACMAN" ) +export BUILDREPOMENU10=$( echo "Репозиторий $REPOSPARA" ) +export BUILDALLABOVE=$( echo "Собрать всё выше!" ) +export BUILDREPONOTSETUP=$( echo "Выбранный репозиторий android не является установкой!" ) +export BUILDDEVICENOTCOMPATIBLE=$( echo "Это устройство несовместимо с данным репозиторием, попытайтесь снова!" ) +export BUILDMENURETURN=$( echo "Возврат к меню сборки, нажмите ввод для продолжения: " ) + +## Buildmenu +export BUILDMENU1=$( echo "Собрать Nexus 4" ) +export BUILDMENU2=$( echo "Собрать Nexus 5" ) +export BUILDMENU3=$( echo "Собрать Nexus 7" ) +export BUILDMENU4=$( echo "Собрать Nexus 10" ) +export BUILDMENU5=$( echo "Собрать Galaxy Nexus" ) +export BUILDMENU6=$( echo "Собрать Nexus S" ) +export BUILDMENU7=$( echo "Собрать планшет Xoom" ) +export BUILDMENU8=$( echo "Собрать всё выше!" ) +export BUILDMENU9=$( echo "Собрать другое устройство" ) +export BUILDMENU10=$( echo "Собрать с другим репозиторием" ) + +## Builddevice +export BUILDDEVICEBEBUILT=$( echo "выбрано для сборки!" ) +export BUILDDEVICEWHICHREPO=$( echo "Какой репозиторий android мы будем собирать сегодня?" ) +export BUILDDEVICENEXUS4=$( echo "Собрать $NEXUS4" ) +export BUILDDEVICENEXUS5=$( echo "Собрать $NEXUS5" ) +export BUILDDEVICEGSMGNEXUS=$( echo "Собрать $GSMGNEXUS" ) +export BUILDDEVICESPRGNEXUS=$( echo "Собрать $SPRGNEXUS" ) +export BUILDDEVICEVZWGNEXUS=$( echo "Собрать $VZWGNEXUS" ) +export BUILDDEVICEGSMNEXUSS=$( echo "Собрать $GSMNEXUSS" ) +export BUILDDEVICESPRNEXUSS=$( echo "Собрать $SPRNEXUSS" ) +export BUILDDEVICEWIFINEXUS72012=$( echo "Собрать $WIFINEXUS72012" ) +export BUILDDEVICEGSMNEXUS72012=$( echo "Собрать $GSMNEXUS72012" ) +export BUILDDEVICEALLNEXUS72012=$( echo "Собрать $ALLNEXUS72012" ) +export BUILDDEVICEWIFINEXUS72013=$( echo "Собрать $WIFINEXUS72013" ) +export BUILDDEVICELTENEXUS72013=$( echo "Собрать $LTENEXUS72013" ) +export BUILDDEVICEALLNEXUS72013=$( echo "Собрать $ALLNEXUS72013" ) +export BUILDDEVICENEXUS10=$( echo "Собрать $NEXUS10" ) +export BUILDDEVICEWIFIXOOM=$( echo "Собрать $WIFIXOOM" ) +export BUILDDEVICEVZWXOOM=$( echo "Собрать $VZWXOOM" ) + +## Buildother +export BUILDOTHERBEBUILT=$( echo "Сборка другого устройства выбрана для сборки!" ) +export BUILDOTHERTYPEDEVICE=$( echo "Пожалуйста, введите устройство для сборки" ) +export BUILDOTHERTYPELIST=$( echo "Введите list для просмотра всех поддерживаемых устройств" ) +export BUILDOTHERTYPEEXIT=$( echo "Введите exit для возврата" ) +export BUILDOTHERBUILDTITLE=$( echo "Список устройств" ) +export BUILDOTHERBUILDUNDERLINE=$( echo "===========" ) +export BUILDOTHERNOTCOMPATIBLE=$( echo "Это устройство несовместимо с данным репозиторием, всё равно собрать?" ) +export BUILDOTHERCONTINUE=$( echo "Продолжаем сборку" ) +export BUILDOTHERNOTVALID=$( echo "Неправильный ответ, сборка невозможна" ) + +## Buildotherrepo +export BUILDOTHERREPOEMPTY=$( echo "Файл other repo пустой, пожалуйста, добавьте файл и попытайтесь снова!" ) +export BUILDOTHERREPOBEBUILT=$( echo "Сборка с другим репозиторием выбрана для сборки!" ) + +## Buildandro +export BUILDANDROCLEAN=$( echo "Очистить папку?" ) +export BUILDANDROCLEANENTER=$( echo "Вы сейчас нажали enter просто так? Ладно, я всё равно очищу папку.." ) +export BUILDANDROCCACHECONTINUEWITHOUT=$( echo "Продолжаем без использования ccache; если хотите использовать ccache, пожалуйста, установите его" ) +export BUILDANDROCCACHEFOUND=$( echo "Найдена папка ccache, будет использована для сборки" ) +export BUILDANDROCCACHEDIDNOTDETECT=$( echo "Kitchen не обнаружила папки ccache, хотите создать её сейчас?" ) +export BUILDANDROCCACHEOTHER=$( echo "Может, ccache расположен в другом месте, тогда введите other" ) +export BUILDANDROCCACHEHOWBIG=$( echo "Какой максимальный размер ccache Вы хотите? Рекомендуемый размер 50 - 100 гигабайт" ) +export BUILDANDROCCACHEAMOUNTTYPED=$( echo "Учтите, что величину нужно ввести в гигабайтах" ) +export BUILDANDROCCACHEREPONOTSUPPORTED=$( echo "Репозиторий не поддерживает ccache, продолжаем без него" ) +export BUILDANDROCCACHEEXACTLOCATION=$( echo "Каково точное место размещения ccache? Пример расположения по умолчанию ~/.ccache" ) +export BUILDANDROCCACHENOTFOUND=$( echo "Указанное расположение не найдено, продолжаем без него" ) +export BUILDANDROREPONOTSUPPORTED=$( echo "Репозиторий не поддерживается!" ) +export BUILDANDROBUILDMESSEDUP=$( echo "Сбой сборки!" ) +export BUILDANDROMAKETEMP1=$( echo "Создание временной папки для пост-сборки" ) +export BUILDANDROMAKETEMP2=$( echo "Исправление" ) +export BUILDANDROUNZIP=$( echo "Распаковка" ) +export BUILDANDRORMSTUFF=$( echo "Удаление ненужной папки восстановления и file_contexts из" ) +export BUILDANDROADDROM1=$( echo "Добавление элементов rom manager для" ) +export BUILDANDROADDROM2=$( echo "build.prop" ) +export BUILDANDROZIP=$( echo "Упаковка" ) +export BUILDANDROSIGN1=$( echo "Подпись" ) +export BUILDANDROSIGN2=$( echo "с тестовыми ключами" ) +export BUILDANDROMOVEOLD1=$( echo "Перемещение старой сборки в" ) +export BUILDANDROMOVEOLD2=$( echo "/old" ) +export BUILDANDROCOPY=$( echo "Копирование в" ) +export BUILDANDROCLEANUP=$( echo "Очистка временной папки" ) + +## Buildautomenu +export BUILDAUTOMENUTITLE=$( echo "Меню автосборщика" ) +export BUILDAUTOMENU1=$( echo "Запуск автосборщика" ) +export BUILDAUTOMENU2=$( echo "Добавление в список автосборки" ) +export BUILDAUTOMENU3=$( echo "Очистка списка автосборки" ) +export BUILDAUTOMENU4=$( echo "Вкл выход автосборщика" ) +export BUILDAUTOMENU5=$( echo "Вкл сборку other repo автосборщика" ) +export BUILDAUTOMENU6=$( echo "Вкл функцию сна автосборщика" ) +export BUILDAUTOMENUSETAUTO=$( echo "Какой репозиторий android мы устанавливаем для автосборки?" ) +export BUILDAUTOMENUMOVEON=$( echo "Завершение добавления репозиториев, переход к добавлению устройств" ) +export BUILDAUTOMENUADD1=$( echo "Добавлено" ) +export BUILDAUTOMENUADD2=$( echo "к файлам автосборки" ) +export BUILDAUTOMENUTYPEDEVICE=$( echo "Пожалуйста. введите устройство android, которое мы устанавливаем для автосборки" ) +export BUILDAUTOMENUWANTTOCLEAR=$( echo "Уверены, что хотите очистить файлы автосборки?" ) +export BUILDAUTOMENUCLEARED=$( echo "Файлы автосборки очищены" ) +export BUILDAUTOMENUNOTCLEARED=$( echo "Файлы автосборки оставлены без измененийd" ) +export BUILDAUTOMENUOUTPUT=$( echo "Это определит выход buildauto в папку скрипта swordkitchen" ) +export BUILDAUTOMENUSOMEWHERE=$( echo "Или Вы хотите определить другое?" ) +export BUILDAUTOMENUTYPEOUTPUT=$( echo "Введите yes для определения выхода в другое место:" ) +export BUILDAUTOMENUTYPEABSOLUTE=$( echo "Пожалуйста, введите точный путь где бы Вы хотели, чтобы находился buildoutput.txt" ) +export BUILDAUTOMENUOUTPUTSENT=$( echo "Выход будет отправлен" ) +export BUILDAUTOMENUOUTPUTCLEAR=$( echo "Файл выхода очищен, buildauto будет регулярно выпускаться" ) +export BUILDAUTOMENUADDBELOWREPO=$( echo "Добавьте ниже данной строчки папку repo для автосборки, otherrepo в папке otherrepo, каждый repo в одной строке" ) +export BUILDAUTOMENUADDBELOWDEVICE=$( echo "Добавьте ниже данной строчки кодовое имя устройства для автосборки, каждое устройство в одной строке" ) +export BUILDAUTOMENUOTHERREPOON=$( echo "other repo сборки автосборщика включен!" ) +export BUILDAUTOMENUOTHERREPOOFF=$( echo "other repo сборки автосборщика выключен!" ) +export BUILDAUTOMENUCOMPSLEEPTIME1=$( echo "Хотите, чтобы компьютер перешёл в сон на" ) +export BUILDAUTOMENUCOMPSLEEPTIME2=$( echo "некоторое количество часов, или пробудился в определённое время?" ) +export BUILDAUTOMENUSLEEPMENU1=$( echo "Пробудить в определённое время" ) +export BUILDAUTOMENUSLEEPMENU2=$( echo "Некоторое количество часов" ) +export BUILDAUTOMENUSPECIFIC1=$( echo "В какое время Вы хотите, чтобы сервер сборки проснулся на следующий день?" ) +export BUILDAUTOMENUSPECIFIC2=$( echo "Конфигуращия 24 часа, например: для 2pm введите 14:00, для 7am - 07:00" ) +export BUILDAUTOMENUHOURS1=$( echo "Как долго Вы хотите, чтобы сервер спал после сборки?" ) +export BUILDAUTOMENUHOURS2=$( echo "Число вводится в часах" ) +export BUILDAUTOMENUTYPEPASSY=$( echo "Пожалуйста, введите пароль пользователя, чтобы включить сон сервера сборки" ) +export BUILDAUTOMENUSLEEPON=$( echo "Функция сна автосборщика включена!" ) +export BUILDAUTOMENUSLEEPOFF=$( echo "Функция сна автосборщика выключена!" ) + +## Buildauto +export BUILDAUTOPLEASE=( echo "Пожалуйста, используйте меню конфигурации автосборщика" ) +export BUILDAUTOBOTH=( echo "Репозиторий и устройство автосборщика не установлены!" ) +export BUILDAUTOREPO=( echo "Репозиторий автосборщика не установлено!" ) +export BUILDAUTODEVICE=( echo "Устройство автосборщика не установлено!" ) +export BUILDAUTOWAIT=( echo "Ожидание 10 минут! Это не обратный отсчёт.." ) +export BUILDAUTOSLEEP=( echo "Сон..." ) diff --git a/update/environmentsetup b/update/environmentsetup index 69167d4..e733351 100755 --- a/update/environmentsetup +++ b/update/environmentsetup @@ -154,9 +154,9 @@ if ( uname -a | grep -q Linux ); then sudo ln -s /usr/lib/i386-linux-gnu/mesa/libGL.so.1 /usr/lib/i386-linux-gnu/libGL.so fi - # Ubuntu 13.04 and 13.10 - if ( lsb_release -c | grep -q raring ) || ( lsb_release -c | grep -q saucy ); then - echo $ENVIRONMENTSETUPURS + # Ubuntu 13.04, 13.10, 14.04, and 14.10 + if ( lsb_release -c | grep -q raring ) || ( lsb_release -c | grep -q saucy ) || ( lsb_release -c | grep -q trusty ) || ( lsb_release -c | grep -q utopic ); then + echo $ENVIRONMENTSETUPURST echo $ENVIRONMENTSETUPINSTALL sudo apt-get install git-core gnupg flex bison gperf build-essential \ zip curl libc6-dev libncurses5-dev:i386 x11proto-core-dev \ diff --git a/update/preupdate b/update/preupdate index 910737e..747d725 100755 --- a/update/preupdate +++ b/update/preupdate @@ -43,22 +43,22 @@ if [ $SCRIPT_REPO == "cna" ]; then rm -rf vendor/cna fi -if [ $SCRIPT_REPO == "cm" ] && [ $REPO_PLATFORM == "10.2" ]; then +if [ $SCRIPT_REPO == "cm" ] && [ $REPO_PLATFORM == "11" ]; then rm -rf vendor/cm echo "" - echo $PREUPDATECM10 + echo $PREUPDATECM export AUTHOR="xml" scriptmakir - cp -f $LOCAL/xml/cm10.2-local_manifest.xml $localmanifests/proprietary.xml + cp -f $LOCAL/xml/cm11-local_manifest.xml $localmanifests/proprietary.xml fi -if [ $SCRIPT_REPO == "cm" ] && [ $REPO_PLATFORM == "11" ]; then +if [ $SCRIPT_REPO == "cm" ] && [ $REPO_PLATFORM == "12" ]; then rm -rf vendor/cm echo "" echo $PREUPDATECM export AUTHOR="xml" scriptmakir - cp -f $LOCAL/xml/cm11-local_manifest.xml $localmanifests/proprietary.xml + cp -f $LOCAL/xml/cm12-local_manifest.xml $localmanifests/proprietary.xml fi if [ $SCRIPT_REPO == "carbon" ]; then diff --git a/update/reposync b/update/reposync index c4524c5..d3c5469 100755 --- a/update/reposync +++ b/update/reposync @@ -104,7 +104,8 @@ if [ ! "$AUTO" ]; then echo " 15. $REPOSYNCMENU15" echo " 16. $REPOSYNCMENU16" echo " 17. $MENUGOBACK" - read setupanswer + echo "" + read -p "$KITCHENMENUWHICH" setupanswer if [ ! "$setupanswer" ] || ( echo $setupanswer | grep -q [A-Za-z] ) || [ $setupanswer -gt "17" ]; then echo "" @@ -121,7 +122,7 @@ if [ "$PLATFORM" ]; then echo "aosp43 = $REPOSYNCUPDATE3" echo "aosp = $REPOSYNCUPDATE4" echo "carbon = $REPOSYNCUPDATE5" - echo "cm10 =$REPOSYNCUPDATE6" + echo "cm11 =$REPOSYNCUPDATE6" echo "cm = $REPOSYNCUPDATE7" echo "evervolv = $REPOSYNCUPDATE8" echo "omni = $REPOSYNCUPDATE9" @@ -152,7 +153,7 @@ if [ "$PLATFORM" ]; then setupanswer="7" fi - if [ $PLATFORM == "cm10" ]; then + if [ $PLATFORM == "cm11" ]; then setupanswer="8" fi @@ -342,7 +343,7 @@ if [ $setupanswer == "7" ]; then fi if [ $setupanswer == "8" ]; then - repodefine=$(echo "cm10") + repodefine=$(echo "cm11") . repodefiner done=true setupcheck @@ -404,7 +405,7 @@ if [ $setupanswer == "14" ] || [ $setupanswer == "15" ]; then . repodefiner setupcheck - repodefine=$(echo "cm10") + repodefine=$(echo "cm11") . repodefiner setupcheck diff --git a/utility/bouncer b/utility/bouncer index 7382664..fd69ecc 100755 --- a/utility/bouncer +++ b/utility/bouncer @@ -13,37 +13,27 @@ # See the License for the specific language governing permissions and # limitations under the License. +. ./retardedbabelfish + if ( ! uname -a | grep -q x86_64 ); then if ( uname -a | grep -q powerpc ); then clear - echo "powerpc processor detected!" - echo "===================" - echo "Running powerpc isn't necessarily prohibited, but it is not suggested" + echo $BOUNCERPOWERPC echo "" - echo "Side effects may include failure to build properly and lack of support" - echo "for build environment setup" + echo $ERRORSIDEEFFECTS echo "" - echo "If you see this in error, please notify me at either xda or rootzwiki" - echo "if you prefer email you can reach me at mishana@swordrune10.net" - echo "if your also inclined, i have a freenode channel #Swordrune10Kitchen" - echo "Press enter to continue.." - read done + echo $ERRORCONTACTINFO + read -p "$ENTERTOCONTINUE" done else clear - echo "32-bit OS detected!" - echo "===================" - echo "Running 32-bit isn't necessarily prohibited, but it is not suggested" + echo $BOUNCER32BIT echo "" - echo "Side effects may include failure to build properly and lack of support" - echo "for build environment setup" + echo $ERRORSIDEEFFECTS echo "" - echo "If you see this in error, please notify me at either xda or rootzwiki" - echo "if you prefer email you can reach me at mishana@swordrune10.net" - echo "if your also inclined, i have a freenode channel #Swordrune10Kitchen" - echo "Press enter to continue.." - read done + echo $ERRORCONTACTINFO + read -p "$ENTERTOCONTINUE" done fi fi @@ -52,14 +42,9 @@ homecheck=$( cd $(dirname $0) && cd ../.. && pwd ) if [ $homecheck == $HOME ]; then clear - echo "Kitchen not set in correct place!" - echo "=================================" - echo "Kitchen will not work correctly if placed in home folder, please move" + echo $BOUNCERKITCHENHOME echo "" - echo "If you see this in error, please notify me at either xda or rootzwiki" - echo "if you prefer email you can reach me at mishana@swordrune10.net" - echo "if your also inclined, i have a freenode channel #Swordrune10Kitchen" - echo "Press enter to exit.." - read done + echo $ERRORCONTACTINFO + read -p "$ENTERTOEXIT" done kill 0 fi diff --git a/utility/headerfile b/utility/headerfile index 9bd9c91..ff88ea5 100755 --- a/utility/headerfile +++ b/utility/headerfile @@ -126,11 +126,8 @@ elif [ "$SCRIPT" ]; then else clear - echo "An Error Has Occurred!" - echo "======================" - echo "If you see this in error, please notify me at either xda or rootzwiki" - echo "if you prefer email you can reach me at mishana@swordrune10.net" - echo "if your also inclined, i have a freenode channel #Swordrune10Kitchen" - read -p "Press Enter to exit.." done + echo $ERRORHEADER + echo $ERRORCONTACTINFO + read -p "$ENTERTOEXIT" done kill 0 fi diff --git a/utility/kitchen b/utility/kitchen index 6d3b7ca..9f2a135 100755 --- a/utility/kitchen +++ b/utility/kitchen @@ -26,14 +26,14 @@ clear echo $KITCHENTITLE echo $KITCHENUNDERLINE echo $KITCHENMAINMENU -echo " 1. "$KITCHENMENU1 -echo " 2. "$KITCHENMENU2 -echo " 3. "$KITCHENMENU3 -echo " 4. "$KITCHENMENU4 -echo " 5. "$KITCHENMENU5 -echo " 6. "$KITCHENMENU6 +echo " 1. $KITCHENMENU1" +echo " 2. $KITCHENMENU2" +echo " 3. $KITCHENMENU3" +echo " 4. $KITCHENMENU4" +echo " 5. $KITCHENMENU5" +echo " 6. $KITCHENMENU6" echo "" -read -P "$KITCHENMENUWHICH" answer +read -p "$KITCHENMENUWHICH" answer if [ ! "$answer" ] || ( echo $answer | grep -q [A-Za-z] ) || [ $answer -gt "10" ]; then echo "" diff --git a/utility/macosxinit b/utility/macosxinit index d1bacad..9a6ec71 100755 --- a/utility/macosxinit +++ b/utility/macosxinit @@ -17,50 +17,43 @@ clear export POSIXLY_CORRECT=1 -echo "You are running Mac OS X!" +echo $MACOSXINITRUN xinit() { if ( ! find ~/android.dmg &> /dev/null ); then echo "" - echo "We can't find the android image to mount, this is needed to build on mac os x" - echo "If you already have one made please put it in its proper place with its proper title" - echo "It's proper place and title is in your home folder named android.dmg, example is ~/android.dmg" - echo "" - echo "Would you like to make a new android.dmg?" - read diskimage + echo $MACOSXINITCANTFINDDMG + read -p "$QUESTIONYESNO" diskimage if [ ! "$diskimage" ]; then echo "" - echo "You didn't type in anything.." - read -p "Press Enter to continue" done + echo $NOTPROPERSELECTION + read -p "$ENTERTOCONTINUE" done xinit exit 0 - fi - - if [ $diskimage == "no" ] || [ $diskimage == "n" ]; then + elif [ $diskimage == $ANSWERNO ] || [ $diskimage == $ANSWERN ]; then echo "" - echo "Exiting for now.." - read -p "Press Enter to exit" done + echo $ABORTMESSAGE + read -p "$ENTERTOEXIT" done - exit 0 + kill 0 fi echo "" - echo "How big would you like android.dmg? Keep in mind it will increase its size if u need more space" - echo "Type in number in gigabytes" + echo $MACOSXINITHOWBIG read gigs hdiutil create -type SPARSE -fs 'Case-sensitive Journaled HFS+' -size "$gigs"g ~/android.dmg echo "" - echo "Mounting new android.dmg at /Volumes/android.." + echo $MACOSXINITMOUNTNEW hdiutil attach ~/android.dmg -mountpoint /Volumes/android if ( ! find ~/bin/repo &> /dev/null ); then echo "" - echo "Installing the repo command.." + echo $REPOSYNCREPOINSTALL if ( ! find ~/bin &> /dev/null ); then mkdir ~/bin @@ -71,30 +64,28 @@ if ( ! find ~/android.dmg &> /dev/null ); then fi echo "" - echo "Moving into android.dmg.." + echo $MACOSXINITMOVEINTO cd /Volumes/android mkdir -p swordkitchen cd swordkitchen - echo "Setting up kitchen.." + echo $MACOSXINITSETUP ~/bin/repo init -u http://github.com/TeamKeyblade/kitchen_manifest.git -b master ~/bin/repo sync -j4 else - echo "Found your android.dmg, mounting.." + echo $MACOSXINITFOUNDDMG hdiutil attach ~/android.dmg -mountpoint /Volumes/android if ( ! find /Volumes/android/swordkitchen &> /dev/null ); then echo "" - echo "We can't find the rom kitchen in /Volumes/android" - echo "" - echo "Would you like to make install rom kitchen in /Volumes/android?" + echo $MACOSXINITCANTFINDKITCHEN read androidvolume if [ ! "$androidvolume" ]; then echo "" - echo "You didn't type in anything.." - echo "Press Enter to continue" + echo $NOTPROPERSELECTION + read -p "$ENTERTOCONTINUE" done read done xinit @@ -103,16 +94,15 @@ else if [ $androidvolume == "no" ] || [ $androidvolume == "n" ]; then echo "" - echo "Exiting for now.." - echo "Press Enter to exit" - read done + echo $ABORTMESSAGE + read -p "$ENTERTOEXIT" done - exit 0 + kill 0 fi if ( ! find ~/bin/repo &> /dev/null ); then echo "" - echo "Installing the repo command.." + echo $REPOSYNCREPOINSTALL if ( ! find ~/bin &> /dev/null ); then mkdir ~/bin @@ -123,12 +113,12 @@ else fi echo "" - echo "Moving into android.dmg.." + echo $MACOSXINITMOVEINTO cd /Volumes/android mkdir -p swordkitchen cd swordkitchen - echo "Setting up kitchen.." + echo $MACOSXINITSETUP ~/bin/repo init -u http://github.com/TeamKeyblade/kitchen_manifest.git -b master ~/bin/repo sync -j4 else diff --git a/utility/repodefiner b/utility/repodefiner index 9e33532..a8c553b 100755 --- a/utility/repodefiner +++ b/utility/repodefiner @@ -31,19 +31,19 @@ if [ $repodefine == "aokp" ]; then manifest_name=$(echo "default.xml") fi -if [ $repodefine == "aosp43" ]; then +if [ $repodefine == "aosp44" ]; then export SCRIPT_REPO=$(echo "aosp") - export REPO_PLATFORM=$(echo "jb") - repo_branch=$(echo "android-4.3.1_r1") - repo_name=$(echo $REPOSAOSP43) + export REPO_PLATFORM=$(echo "kitkat") + repo_branch=$(echo "android-4.4.4_r1") + repo_name=$(echo $REPOSAOSP) repo_url=$(echo "https://android.googlesource.com/platform/manifest") manifest_name=$(echo "default.xml") fi if [ $repodefine == "aosp" ]; then export SCRIPT_REPO=$(echo "aosp") - export REPO_PLATFORM=$(echo "kitkat") - repo_branch=$(echo "android-4.4.2_r1") + export REPO_PLATFORM=$(echo "lollipop") + repo_branch=$(echo "android-5.0.0_r2") repo_name=$(echo $REPOSAOSP) repo_url=$(echo "https://android.googlesource.com/platform/manifest") manifest_name=$(echo "default.xml") @@ -58,19 +58,19 @@ if [ $repodefine == "carbon" ]; then manifest_name=$(echo "default.xml") fi -if [ $repodefine == "cm10" ]; then +if [ $repodefine == "cm11" ]; then export SCRIPT_REPO=$(echo "cm") - export REPO_PLATFORM=$(echo "10.2") - repo_branch=$(echo "stable/cm-10.2") - repo_name=$(echo $REPOSCM10) + export REPO_PLATFORM=$(echo "11") + repo_branch=$(echo "cm-11.0") + repo_name=$(echo $REPOSCM) repo_url=$(echo "http://github.com/CyanogenMod/android.git") - manifest_name=$(echo "cm-10.2.0.xml") + manifest_name=$(echo "default.xml") fi if [ $repodefine == "cm" ]; then export SCRIPT_REPO=$(echo "cm") - export REPO_PLATFORM=$(echo "11") - repo_branch=$(echo "cm-11.0") + export REPO_PLATFORM=$(echo "12") + repo_branch=$(echo "cm-12.0") repo_name=$(echo $REPOSCM) repo_url=$(echo "http://github.com/CyanogenMod/android.git") manifest_name=$(echo "default.xml") diff --git a/utility/retardedbabelfish b/utility/retardedbabelfish index 4e957ff..f20818d 100755 --- a/utility/retardedbabelfish +++ b/utility/retardedbabelfish @@ -20,14 +20,18 @@ langselect () { echo " 1. English" # Spanish echo " 2. español" +# Russian +echo " 3. Русский" # German -echo " 3. Deutsch" +echo " 4. Deutsch" +# Dutch +echo " 5. Nederlands" # Brazilian Portuguese -echo " 4. Brazilian Portuguese" -echo " 5. None of the above" +echo " 6. Brazilian Portuguese" +echo " 7. None of the above" read answer -if [ ! "$answer" ] || ( echo $answer | grep -q [A-Za-z] ) || [ $answer -gt "5" ]; then +if [ ! "$answer" ] || ( echo $answer | grep -q [A-Za-z] ) || [ $answer -gt "7" ]; then echo "" echo $notproperselection read -p $entertocontinue done @@ -50,23 +54,39 @@ if [ $answer == "2" ]; then read -p "$entertocontinue" done fi -# German +# Russian if [ $answer == "3" ]; then + echo "ru" > $LOCAL/config/language + echo "" + echo $langsaved + read -p "$entertocontinue" done +fi + +# German +if [ $answer == "4" ]; then echo "de" > $LOCAL/config/language echo "" echo $langsaved read -p "$entertocontinue" done fi +# Dutch +if [ $answer == "5" ]; then + echo "nl" > $LOCAL/config/language + echo "" + echo $langsaved + read -p "$entertocontinue" done +fi + # Brazilian Portuguese -if [ $answer == "4" ]; then +if [ $answer == "6" ]; then echo "ptbr" > $LOCAL/config/language echo "" echo $langsaved read -p "$entertocontinue" done fi -if [ $answer == "5" ]; then +if [ $answer == "7" ]; then clear echo "The Language You Want Is Not Supported!" @@ -160,6 +180,33 @@ elif ( echo $LANG | grep -q "es_" ); then # read -p "$entertocontinue" done # initlang # fi +# Russian +elif ( echo $LANG | grep -q "ru_" ); then + langsaved=$( echo "Установлен русский язык" ) + notproperselection=$( echo "Вы не сделали выбор, попытайтесь ещё!" ) + entertocontinue=$( echo "Нажмите ввод для продолжения: " ) + + clear + echo "Мы обнаружили, что Ваша система установлена на русский язык" + echo "Хотите, чтобы rom kitchen работала с этим языком?" + + read -p "да/нет?" answer + + if [ "$answer" == "да" ] || [ "$answer" == "д" ]; then + echo "ru" > $LOCAL/config/language + echo "" + echo $langsaved + read -p "$entertocontinue" done + elif [ "$answer" == "нет" ] || [ "$answer" == "н" ]; then + echo "" + echo "Какой язык Вы хотите использовать вместо этого?" + langselect + else + echo "" + echo $notproperselection + read -p "$entertocontinue" done + initlang + fi # German elif ( echo $LANG | grep -q "de_" ); then langsaved=$( echo "Die Sprache Deutsch wurde gespeichert" ) @@ -187,6 +234,33 @@ elif ( echo $LANG | grep -q "de_" ); then read -p "$entertocontinue" done initlang fi +# Dutch +elif ( echo $LANG | grep -q "nl_" ); then + langsaved=$( echo "Taal bewaard als Nederlands" ) + notproperselection=$( echo "Je maakte geen geldige selectie, probeer opnieuw!" ) + entertocontinue=$( echo "Press Enter to continue: " ) + + clear + echo "We hebben gedetecteerd dat je systeem in het Nederlands is" + echo "Is dit de taal die je wil gebruiken in de rom keuken?" + + read -p "ja/nee?" answer + + if [ "$answer" == "ja" ] || [ "$answer" == "j" ]; then + echo "nl" > $LOCAL/config/language + echo "" + echo $langsaved + read -p "$entertocontinue" done + elif [ "$answer" == "nee" ] || [ "$answer" == "n" ]; then + echo "" + echo "Welke taal wil je in de plaats gebruiken?" + langselect + else + echo "" + echo $notproperselection + read -p "$entertocontinue" done + initlang + fi # Brazilian Portuguese ## V 1.0 Translated by : Doublepranks ## elif ( echo $LANG | grep -q "pt_BR" ); then @@ -339,6 +413,7 @@ if [ ! "$INIT" ]; then fi if ( ! find $LOCAL/config/language &> /dev/null ); then + mkdir -p $LOCAL/config initlang fi @@ -352,9 +427,15 @@ elif ( cat $LOCAL/config/language | grep -q "es" ); then ## NOT ACTIVE elif ( cat $LOCAL/config/language | grep -q "fr" ); then . $LOCAL/translation/europeanpilchard +# Russian +elif ( cat $LOCAL/config/language | grep -q "ru" ); then + . $LOCAL/translation/whitefish # German elif ( cat $LOCAL/config/language | grep -q "de" ); then . $LOCAL/translation/rabbitfish +# Dutch +elif ( cat $LOCAL/config/language | grep -q "nl" ); then + . $LOCAL/translation/chubmackerel # Brazilian Portuguese elif ( cat $LOCAL/config/language | grep -q "ptbr" ); then . $LOCAL/translation/pirarucu diff --git a/utility/scriptmakir b/utility/scriptmakir index f93246d..1190eae 100755 --- a/utility/scriptmakir +++ b/utility/scriptmakir @@ -17,55 +17,6 @@ if [ $AUTHOR == "xml" ]; then rm -rf $LOCAL/xml/* &> /dev/null -cat << EOF > $LOCAL/xml/cm10.2-local_manifest.xml - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -EOF - cat << EOF > $LOCAL/xml/cm11-local_manifest.xml @@ -83,7 +34,7 @@ cat << EOF > $LOCAL/xml/cm11-local_manifest.xml - + @@ -118,6 +69,56 @@ cat << EOF > $LOCAL/xml/cm11-local_manifest.xml EOF +cat << EOF > $LOCAL/xml/cm12-local_manifest.xml + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +EOF + cat << EOF > $LOCAL/xml/aosp-jb-local_manifest.xml