diff --git a/TRANSLATORS.mkdn b/TRANSLATORS.mkdn new file mode 100644 index 0000000..b2efec7 --- /dev/null +++ b/TRANSLATORS.mkdn @@ -0,0 +1,11 @@ +Translators: +------------ +* __Brazilian Portuguese (pirarucu):__ Doublepranks +* __Dutch (chubmackerel):__ Martinusbe +* __French (europeanpilchard):__ +* __German (rabbitfish):__ Benko111, Zanooda +* __Italian (italianbleak):__ +* __Japanese (bluefintuna):__ +* __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 9ed07c9..1a4759a 100755 --- a/build/buildmenu +++ b/build/buildmenu @@ -23,28 +23,27 @@ fi menu () { clear -echo "Swordrune10's Android Kitchen!" -echo "==============================" -echo "Today's Menu:" -echo " 1. Build Nexus 4" -echo " 2. Build Nexus 5" -echo " 3. Build Nexus 7" -echo " 4. Build Nexus 10" -echo " 5. Build Galaxy Nexus" -echo " 6. Build Nexus S" -echo " 7. Build Xoom Tablet" -echo " 8. Build all above!" -echo " 9. Build other device" -echo " 10. Build with other repository" -echo " 11. Go Back" +echo $KITCHENTITLE +echo $KITCHENUNDERLINE +echo $BUILDMENUTITLE +echo " 1. $BUILDMENU1" +echo " 2. $BUILDMENU2" +echo " 3. $BUILDMENU3" +echo " 4. $BUILDMENU4" +echo " 5. $BUILDMENU5" +echo " 6. $BUILDMENU6" +echo " 7. $BUILDMENU7" +echo " 8. $BUILDMENU8" +echo " 9. $BUILDMENU9" +echo " 10. $BUILDMENU10" +echo " 11. $MENUGOBACK" echo "" -echo "Which one would you like to do?" -read buildanswer +read -p "$KITCHENMENUWHICH" buildanswer if [ ! "$buildanswer" ] || ( echo $buildanswer | grep -q [A-Za-z] ) || [ $buildanswer -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 @@ -98,7 +97,7 @@ fi if [ $buildanswer == "11" ]; then echo "" - read -p "Returning to Main Menu, Press Enter to continue: " done + read -p "$MAINMENURETURN" done exit 0 fi 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 b4e2d94..0aee588 100755 --- a/repair/configkitchen +++ b/repair/configkitchen @@ -23,44 +23,41 @@ fi menu () { clear -echo "Swordrune10's Android Kitchen!" -echo "==============================" -echo "Kitchen Config Menu" -echo " 1. Edit Gitpuller" -echo " 2. Edit Romeditor" -echo " 3. Create/Edit other repo list" -echo " 4. Go Back" +echo $KITCHENTITLE +echo $KITCHENUNDERLINE +echo $CONFIGKITCHENMENUTITLE +echo " 1. $CONFIGKITCHENMENU1" +echo " 2. $CONFIGKITCHENMENU2" +echo " 3. $CONFIGKITCHENMENU3" +echo " 4. $MENUGOBACK" echo "" -read -p "Which one would you like to do?: " configs +read -p "$KITCHENMENUWHICH" configs if [ ! "$configs" ] || ( echo $configs | grep -q [A-Za-z] ) || [ $configs -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 menu fi if [ $configs == "1" ]; then - cd $LOCAL/config - nano gitpuller + nano $LOCAL/config/gitpuller fi if [ $configs == "2" ]; then - cd $LOCAL/config - nano romeditor + nano $LOCAL/config/romeditor fi if [ $configs == "3" ]; then - cd $LOCAL/config - read -p "editing custom repos file location.." done - nano otherrepo - read -p "editing custom repos name" done - nano otherreponame + read -p "$CONFIGKITCHENOTHERREPO" done + nano $LOCAL/config/otherrepo + read -p "$CONFIGKITCHENOTHERREPONAME" done + nano $LOCAL/config/otherreponame fi if [ $configs == "4" ]; then echo "" - read -p "Returning to Main Menu, Press Enter to continue: " done + read -p "$MAINMENURETURN" done exit 0 fi diff --git a/repair/fixkitchen b/repair/fixkitchen index 9ba0189..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,43 +451,36 @@ if [ $cleananswer == "5" ]; then scriptmakir echo "" - echo "Switching to Redeemer script.." + echo $FIXKITCHENREDEEMER echo "" ./redeemer - rm -rf $LOCAL/../redeemer - - echo "" - echo "Finished!" - read -p "Press Enter to continue: " done 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 @@ -501,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 e05fbbc..705a314 100755 --- a/translation/bluefintuna +++ b/translation/bluefintuna @@ -15,25 +15,407 @@ # Japanese -# Common -export KITCHENTITLE=$( echo "Swordrune10のアンドロイドキッチン!" ) +## THIS WHOLE FILE NEEDS TO BE TRANSLATED! ## + +## Common +export KITCHENTITLE=$( echo "Swordrune10's Android Kitchen!" ) export KITCHENUNDERLINE=$( echo "==============================" ) -export NOTPROPERSELECTION=$( echo "あなたが適切な選択をしなかった、もう一度試してみてください!" ) -export ENTERTOCONTINUE=$( echo "Enterキーを押して続行します: " ) -export ANSWERYES=$( echo "はい" ) -export ANSWERY=$( echo "h" ) -export ANSWERNO=$( echo "いいえ" ) -export ANSWERN=$( echo "ī" ) - -# Kitchen -export KITCHENMAINMENU=$( echo "メインメニュー:" ) -export KITCHENMENU1=$( echo " 1. セットアップ/更新キッチン" ) -export KITCHENMENU2=$( echo " 2. を構成キッチン" ) -export KITCHENMENU3=$( echo " 3. ランキッチン" ) -export KITCHENMENU4=$( echo " 4. キッチンを修正しました" ) -export KITCHENMENU5=$( echo " 5. 自動的にキッチンを構築" ) -export KITCHENMENU6=$( echo " 6. 出口" ) -export KITCHENMENUWHICH=$( echo "あなたはどちらが必要ですか?" ) -export KITCHENTHANKS=$( echo "Swordrune10のキッチンをご利用いただきありがとうございます!さよなら.." ) -export KITCHENBORED=$( echo "あなたは退屈に見える..たくは映画を見る?" ) -export KITCHENTOUGH=$( echo "タフ!" ) +export MENUGOBACK=$( echo "Go Back" ) +export NOTPROPERSELECTION=$( echo "You did not make a proper selection, try again!" ) +export ENTERTOCONTINUE=$( echo "Press Enter to continue: " ) +export MAINMENURETURN=$( echo "Returning to Main Menu, Press Enter to continue: " ) +export ABORTMESSAGE=$( echo "Aborting.." ) +export COMPLETEDMESSAGE=$( echo "Finished!" ) +export QUESTIONYESNO=$( echo "yes/no? " ) +export ANSWERYES=$( echo "yes" ) +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 - 14.04 (Full Support) +Debian (General Support) +Linux Mint (General Support) +Arch Linux (General Support) +Fedora (General Support) +Mac OS X (Semi-General Support)" ) + +## 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 "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" ) +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" ) + +## Kitchen +export KITCHENMAINMENU=$( echo "Main Menu:" ) +export KITCHENMENU1=$( echo "Setup/Update Kitchen" ) +export KITCHENMENU2=$( echo "Configure Kitchen" ) +export KITCHENMENU3=$( echo "Run Kitchen" ) +export KITCHENMENU4=$( echo "Fix Kitchen" ) +export KITCHENMENU5=$( echo "Auto Build Kitchen" ) +export KITCHENMENU6=$( echo "Exit" ) +export KITCHENMENUWHICH=$( echo "Which one would you like to do?" ) +export KITCHENTHANKS=$( echo "Thank you for using Swordrune10's Kitchen! Good bye.." ) +export KITCHENBORED=$( echo "You seem bored.. wanna watch a movie?" ) +export KITCHENTOUGH=$( echo "tough!" ) + +## 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" ) + +# 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 environment" ) +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" ) + +# 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!" ) + +# 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?" ) + +## 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?" ) + +# 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 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!" ) + +# 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" ) + +## 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" ) + +## 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 cf127de..9296dd1 100755 --- a/translation/europeanpilchard +++ b/translation/europeanpilchard @@ -15,25 +15,407 @@ # French -# Common -export KITCHENTITLE=$( echo "Cuisine Androïde de Swordrune10!" ) -export KITCHENUNDERLINE=$( echo "================================" ) -export NOTPROPERSELECTION=$( echo "Vous n'avez pas fait une sélection, essayez de nouveau!" ) -export ENTERTOCONTINUE=$( echo "Appuyez sur Entrée pour continuer: " ) -export ANSWERYES=$( echo "oui" ) +## THIS WHOLE FILE NEEDS TO BE TRANSLATED! ## + +## Common +export KITCHENTITLE=$( echo "Swordrune10's Android Kitchen!" ) +export KITCHENUNDERLINE=$( echo "==============================" ) +export MENUGOBACK=$( echo "Go Back" ) +export NOTPROPERSELECTION=$( echo "You did not make a proper selection, try again!" ) +export ENTERTOCONTINUE=$( echo "Press Enter to continue: " ) +export MAINMENURETURN=$( echo "Returning to Main Menu, Press Enter to continue: " ) +export ABORTMESSAGE=$( echo "Aborting.." ) +export COMPLETEDMESSAGE=$( echo "Finished!" ) +export QUESTIONYESNO=$( echo "yes/no? " ) +export ANSWERYES=$( echo "yes" ) export ANSWERY=$( echo "y" ) -export ANSWERNO=$( echo "non" ) +export ANSWERNO=$( echo "no" ) export ANSWERN=$( echo "n" ) -# Kitchen -export KITCHENMAINMENU=$( echo "Menu principal:" ) -export KITCHENMENU1=$( echo " 1. Configuration/mise à jour de cuisine" ) -export KITCHENMENU2=$( echo " 2. Configurer Cuisine" ) -export KITCHENMENU3=$( echo " 3. Exécuter Cuisine" ) -export KITCHENMENU4=$( echo " 4. Fixer Cuisine" ) -export KITCHENMENU5=$( echo " 5. Auto construction Cuisine" ) -export KITCHENMENU6=$( echo " 6. Quitter" ) -export KITCHENMENUWHICH=$( echo "Lequel voulez-vous faire?" ) -export KITCHENTHANKS=$( echo "Merci d'utiliser la cuisine de Swordrune10! Au revoir.." ) -export KITCHENBORED=$( echo "Vous semblez s'ennuyer.. veux regarder un film?" ) -export KITCHENTOUGH=$( echo "dur!" ) +## 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 - 14.04 (Full Support) +Debian (General Support) +Linux Mint (General Support) +Arch Linux (General Support) +Fedora (General Support) +Mac OS X (Semi-General Support)" ) + +## 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 "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" ) +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" ) + +## Kitchen +export KITCHENMAINMENU=$( echo "Main Menu:" ) +export KITCHENMENU1=$( echo "Setup/Update Kitchen" ) +export KITCHENMENU2=$( echo "Configure Kitchen" ) +export KITCHENMENU3=$( echo "Run Kitchen" ) +export KITCHENMENU4=$( echo "Fix Kitchen" ) +export KITCHENMENU5=$( echo "Auto Build Kitchen" ) +export KITCHENMENU6=$( echo "Exit" ) +export KITCHENMENUWHICH=$( echo "Which one would you like to do?" ) +export KITCHENTHANKS=$( echo "Thank you for using Swordrune10's Kitchen! Good bye.." ) +export KITCHENBORED=$( echo "You seem bored.. wanna watch a movie?" ) +export KITCHENTOUGH=$( echo "tough!" ) + +## 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" ) + +# 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 environment" ) +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" ) + +# 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!" ) + +# 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?" ) + +## 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?" ) + +# 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 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!" ) + +# 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" ) + +## 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" ) + +## 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 7b22f7d..8dd497e 100755 --- a/translation/italianbleak +++ b/translation/italianbleak @@ -15,25 +15,407 @@ # Italian -# Common -export KITCHENTITLE=$( echo "Swordrune10 di Androide Cucina!" ) -export KITCHENUNDERLINE=$( echo "===============================" ) -export NOTPROPERSELECTION=$( echo "Non hai fatto una selezione corretta, provare di nuovo!" ) -export ENTERTOCONTINUE=$( echo "Premere Invio per continuare: " ) -export ANSWERYES=$( echo "sì" ) -export ANSWERY=$( echo "s" ) +## THIS WHOLE FILE NEEDS TO BE TRANSLATED! ## + +## Common +export KITCHENTITLE=$( echo "Swordrune10's Android Kitchen!" ) +export KITCHENUNDERLINE=$( echo "==============================" ) +export MENUGOBACK=$( echo "Go Back" ) +export NOTPROPERSELECTION=$( echo "You did not make a proper selection, try again!" ) +export ENTERTOCONTINUE=$( echo "Press Enter to continue: " ) +export MAINMENURETURN=$( echo "Returning to Main Menu, Press Enter to continue: " ) +export ABORTMESSAGE=$( echo "Aborting.." ) +export COMPLETEDMESSAGE=$( echo "Finished!" ) +export QUESTIONYESNO=$( echo "yes/no? " ) +export ANSWERYES=$( echo "yes" ) +export ANSWERY=$( echo "y" ) export ANSWERNO=$( echo "no" ) export ANSWERN=$( echo "n" ) -# Kitchen -export KITCHENMAINMENU=$( echo "Menu principale:" ) -export KITCHENMENU1=$( echo " 1. Installazione/Aggiornamento Cucina" ) -export KITCHENMENU2=$( echo " 2. Configura Cucina" ) -export KITCHENMENU3=$( echo " 3. Eseguire Cucina" ) -export KITCHENMENU4=$( echo " 4. Fissare Cucina" ) -export KITCHENMENU5=$( echo " 5. Costruire Automatico Cucina" ) -export KITCHENMENU6=$( echo " 6. Uscire" ) -export KITCHENMENUWHICH=$( echo "Quale vorresti fare?" ) -export KITCHENTHANKS=$( echo "Grazie per aver scelto di Swordrune10 Cucina! Addio.." ) -export KITCHENBORED=$( echo "Lei sembra annoiato.. Vuoi guardare un film?" ) -export KITCHENTOUGH=$( echo "dura!" ) +## 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 - 14.04 (Full Support) +Debian (General Support) +Linux Mint (General Support) +Arch Linux (General Support) +Fedora (General Support) +Mac OS X (Semi-General Support)" ) + +## 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 "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" ) +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" ) + +## Kitchen +export KITCHENMAINMENU=$( echo "Main Menu:" ) +export KITCHENMENU1=$( echo "Setup/Update Kitchen" ) +export KITCHENMENU2=$( echo "Configure Kitchen" ) +export KITCHENMENU3=$( echo "Run Kitchen" ) +export KITCHENMENU4=$( echo "Fix Kitchen" ) +export KITCHENMENU5=$( echo "Auto Build Kitchen" ) +export KITCHENMENU6=$( echo "Exit" ) +export KITCHENMENUWHICH=$( echo "Which one would you like to do?" ) +export KITCHENTHANKS=$( echo "Thank you for using Swordrune10's Kitchen! Good bye.." ) +export KITCHENBORED=$( echo "You seem bored.. wanna watch a movie?" ) +export KITCHENTOUGH=$( echo "tough!" ) + +## 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" ) + +# 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 environment" ) +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" ) + +# 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!" ) + +# 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?" ) + +## 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?" ) + +# 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 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!" ) + +# 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" ) + +## 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" ) + +## 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 f8f66a3..2e28678 100755 --- a/translation/koreanlamprey +++ b/translation/koreanlamprey @@ -14,3 +14,408 @@ # limitations under the License. # Korean + +## THIS WHOLE FILE NEEDS TO BE TRANSLATED! ## + +## Common +export KITCHENTITLE=$( echo "Swordrune10's Android Kitchen!" ) +export KITCHENUNDERLINE=$( echo "==============================" ) +export MENUGOBACK=$( echo "Go Back" ) +export NOTPROPERSELECTION=$( echo "You did not make a proper selection, try again!" ) +export ENTERTOCONTINUE=$( echo "Press Enter to continue: " ) +export MAINMENURETURN=$( echo "Returning to Main Menu, Press Enter to continue: " ) +export ABORTMESSAGE=$( echo "Aborting.." ) +export COMPLETEDMESSAGE=$( echo "Finished!" ) +export QUESTIONYESNO=$( echo "yes/no? " ) +export ANSWERYES=$( echo "yes" ) +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 - 14.04 (Full Support) +Debian (General Support) +Linux Mint (General Support) +Arch Linux (General Support) +Fedora (General Support) +Mac OS X (Semi-General Support)" ) + +## 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 "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" ) +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" ) + +## Kitchen +export KITCHENMAINMENU=$( echo "Main Menu:" ) +export KITCHENMENU1=$( echo "Setup/Update Kitchen" ) +export KITCHENMENU2=$( echo "Configure Kitchen" ) +export KITCHENMENU3=$( echo "Run Kitchen" ) +export KITCHENMENU4=$( echo "Fix Kitchen" ) +export KITCHENMENU5=$( echo "Auto Build Kitchen" ) +export KITCHENMENU6=$( echo "Exit" ) +export KITCHENMENUWHICH=$( echo "Which one would you like to do?" ) +export KITCHENTHANKS=$( echo "Thank you for using Swordrune10's Kitchen! Good bye.." ) +export KITCHENBORED=$( echo "You seem bored.. wanna watch a movie?" ) +export KITCHENTOUGH=$( echo "tough!" ) + +## 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" ) + +# 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 environment" ) +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" ) + +# 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!" ) + +# 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?" ) + +## 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?" ) + +# 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 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!" ) + +# 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" ) + +## 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" ) + +## 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 ff436a2..9b7ba49 100755 --- a/translation/mahimahi +++ b/translation/mahimahi @@ -15,25 +15,406 @@ # English -# Common +## Common export KITCHENTITLE=$( echo "Swordrune10's Android Kitchen!" ) export KITCHENUNDERLINE=$( echo "==============================" ) +export KITCHENMENUWHICH=$( echo "Which one would you like to do?: " ) +export MENUGOBACK=$( echo "Go Back" ) export NOTPROPERSELECTION=$( echo "You did not make a proper selection, try again!" ) export ENTERTOCONTINUE=$( echo "Press Enter to continue: " ) +export MAINMENURETURN=$( echo "Returning to Main Menu, Press Enter to continue: " ) +export ENTERTOEXIT=$( echo "Press Enter to exit: " ) +export ABORTMESSAGE=$( echo "Aborting.." ) +export COMPLETEDMESSAGE=$( echo "Finished!" ) +export QUESTIONYESNO=$( echo "yes/no? " ) export ANSWERYES=$( echo "yes" ) export ANSWERY=$( echo "y" ) export ANSWERNO=$( echo "no" ) export ANSWERN=$( echo "n" ) -# Kitchen +## 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 - 14.04 (Full Support) +Debian (General Support) +Linux Mint (General Support) +Arch Linux (General Support) +Fedora (General Support) +Mac OS X (Semi-General Support)" ) + +## 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 "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" ) +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" ) + +## Kitchen export KITCHENMAINMENU=$( echo "Main Menu:" ) -export KITCHENMENU1=$( echo " 1. Setup/Update Kitchen" ) -export KITCHENMENU2=$( echo " 2. Configure Kitchen" ) -export KITCHENMENU3=$( echo " 3. Run Kitchen" ) -export KITCHENMENU4=$( echo " 4. Fix Kitchen" ) -export KITCHENMENU5=$( echo " 5. Auto Build Kitchen" ) -export KITCHENMENU6=$( echo " 6. Exit" ) -export KITCHENMENUWHICH=$( echo "Which one would you like to do?" ) +export KITCHENMENU1=$( echo "Setup/Update Kitchen" ) +export KITCHENMENU2=$( echo "Configure Kitchen" ) +export KITCHENMENU3=$( echo "Run Kitchen" ) +export KITCHENMENU4=$( echo "Fix Kitchen" ) +export KITCHENMENU5=$( echo "Auto Build Kitchen" ) +export KITCHENMENU6=$( echo "Exit" ) export KITCHENTHANKS=$( echo "Thank you for using Swordrune10's Kitchen! Good bye.." ) export KITCHENBORED=$( echo "You seem bored.. wanna watch a movie?" ) export KITCHENTOUGH=$( echo "tough!" ) + +## 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" ) + +# 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 environment" ) +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" ) + +# 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!" ) + +# 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?" ) + +## 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?" ) + +# 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 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!" ) + +# 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" ) + +## 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" ) + +## 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/pirarucu b/translation/pirarucu new file mode 100755 index 0000000..8b2d0d1 --- /dev/null +++ b/translation/pirarucu @@ -0,0 +1,438 @@ +#!/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. + +# Brazilian Portuguese + +## V1.5 Translated by: Doublepranks ## + +## Common +export KITCHENTITLE=$( echo "Swordrune10's Android Kitchen!" ) +export KITCHENUNDERLINE=$( echo "==============================" ) +## NEEDS TRANSLATION! +export KITCHENMENUWHICH=$( echo "Which one would you like to do?: " ) +## NEEDS TRANSLATION! +export MENUGOBACK=$( echo "Voltar" ) +export NOTPROPERSELECTION=$( echo "Comando invalido, tente novamente!" ) +export ENTERTOCONTINUE=$( echo "Pressione enter para continuar: " ) +export MAINMENURETURN=$( echo "Retornando ao menu principal, pressione enter para continuar: " ) +## NEEDS TRANSLATION! +export ABORTMESSAGE=$( echo "Aborting.." ) +## NEEDS TRANSLATION! +export COMPLETEDMESSAGE=$( echo "Concluido!" ) +export QUESTIONYESNO=$( echo "sim/nao? " ) +export ANSWERYES=$( echo "Sim" ) +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 - 14.04 (Full Support) +Debian (General Support) +Linux Mint (General Support) +Arch Linux (General Support) +Fedora (General Support) +Mac OS X (Semi-General Support)" ) +## NEEDS TRANSLATION! + +## 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 +## 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!" ) +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! + +## Kitchen +export KITCHENMAINMENU=$( echo "Menu principal:" ) +export KITCHENMENU1=$( echo "Abrir novo/Atualizar Kitchen" ) +export KITCHENMENU2=$( echo "Configurar Kitchen" ) +export KITCHENMENU3=$( echo "Iniciar Kitchen" ) +export KITCHENMENU4=$( echo "Reparar Kitchen" ) +export KITCHENMENU5=$( echo "Auto criar Kitchen" ) +export KITCHENMENU6=$( echo "Sair" ) +export KITCHENTHANKS=$( echo "Volte sempre ;-)" ) +export KITCHENBORED=$( echo "Voce parece intediado.. quer assistir um filme?" ) +export KITCHENTOUGH=$( echo "ops! Tarde demais..." ) + +## Reposync +# Usage and Flags +export REPOSYNCUSAGE=$( echo "repo -- Usado para iniciar/atualizar um repositorio" ) +export REPOSYNCFLAGD=$( echo "deleta o diretorio alvo e encerra o programa" ) +export REPOSYNCFLAGH=$( echo "show this help text" ) +export REPOSYNCFLAGP=$( echo "purge folder, reinit, and then update" ) +export REPOSYNCFLAGU=$( echo "atualiza o repositorio selecionado 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 "Atualiza todos os repositorios disponiveis" ) +export REPOSYNCUPDATE13=$( echo "Atualiza todos os repositorios" ) +export REPOSYNCUSAGEEXAMP=$( echo "Exemplo: reposync -u cm-10.2" ) +export REPOSYNCUSAGELIST1=$( echo "Digitar \"reposync -u list\" mostra" ) +export REPOSYNCUSAGELIST2=$( echo "o menu de opção" ) + +# Menu +export REPOSYNCMENUWHAT=$( echo "O que vamos atualizar?" ) +export REPOSYNCMENUINIT=$( echo "repo sera iniciado durante a atualizacao" ) +export REPOSYNCMENU1=$( echo "instalar software repo" ) +export REPOSYNCMENU2=$( echo "iniciar ambiente de criacao" ) +export REPOSYNCMENU3=$( echo "Atualizar $REPOSKITCHEN" ) +export REPOSYNCMENU4=$( echo "Atualizar $REPOSAOKP" ) +export REPOSYNCMENU5=$( echo "Atualizar $REPOSAOSP43" ) +export REPOSYNCMENU6=$( echo "Atualizar $REPOSAOSP" ) +export REPOSYNCMENU7=$( echo "Atualizar $REPOSCARBON" ) +export REPOSYNCMENU8=$( echo "Atualizar $REPOSCM10" ) +export REPOSYNCMENU9=$( echo "Atualizar $REPOSCM" ) +export REPOSYNCMENU10=$( echo "Atualizar $REPOSEV" ) +export REPOSYNCMENU11=$( echo "Atualizar $REPOSOMNI" ) +export REPOSYNCMENU12=$( echo "Atualizar $REPOSPACMAN" ) +export REPOSYNCMENU13=$( echo "Atualizar $REPOSPARA" ) +export REPOSYNCMENU14=$( echo "Atualizar repositorios disponiveis" ) +export REPOSYNCMENU15=$( echo "Atualizar todos!" ) +export REPOSYNCMENU16=$( echo "Atualizar/adicionar outro" ) + +# Sync and Init +export REPOSYNCNOTINITSKIP=$( echo "Nao iciado, ignorando" ) +export REPOSYNCUPDATING=$( echo "Atualizando" ) +export REPOSYNCBLAHSMANIFEST=$( echo "'s manifest" ) +export REPOSYNCNOTINITYET=$( echo "Nao inicializado, iniciando" ) +export REPOSYNCNOTINITWANTTO=$( echo "Nao inicializado, iniciar?" ) +export REPOSYNCINIT=$( echo "inicializando" ) +export REPOSYNCNOTINIT=$( echo "Nao estava inicializado" ) +export REPOSYNCREPO=$( echo "repositorio" ) +export REPOSYNCREPOALREADY=$( echo "software repo ja existente" ) +export REPOSYNCREPOINSTALL=$( echo "instalando o software repo" ) +export REPOSYNCCOMPLETE=$( echo "Atualizacao concluida!" ) + +# Otherrepo Sync and Init +export REPOSYNCADDOR=$( echo "Adicionar/atualizar outro repositorio?" ) +export REPOSYNCOTHERMENU1=$( echo "Adicionar a um diretorio pessoal" ) +export REPOSYNCOTHERMENU2=$( echo "Atualizar todos os repositorios pessoais" ) +export REPOSYNCOTHERREPONAME=$( echo "Qual o nome do repositorio?" ) +export REPOSYNCOTHERREPOSHORTNAME=$( echo "Adicione um codenome ao repositorio? Exemplo: Android Open Source Project = aosp" ) +export REPOSYNCOTHERREPOURL=$( echo "URL do arquivo manifest?" ) +export REPOSYNCOTHERREPOBRANCH=$( echo "A qual branch o repositorio deve ser atrelado?" ) + +## EVERYTHING BELOW NEEDS TRANSLATION! + +## Environmentsetup +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 "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" ) +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" ) + +## Preupdate +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 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 " ) + +## 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" ) +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/rabbitfish b/translation/rabbitfish index 91e1ef5..69d87e1 100755 --- a/translation/rabbitfish +++ b/translation/rabbitfish @@ -15,25 +15,401 @@ # German -# Common -export KITCHENTITLE=$( echo "Swordrune10 Androide Küche!" ) +## Common +export KITCHENTITLE=$( echo "Swordrune10 Android Kitchen!" ) export KITCHENUNDERLINE=$( echo "===========================" ) -export NOTPROPERSELECTION=$( echo "Sie haben eine richtige Auswahl treffen, versuchen Sie es erneut!" ) -export ENTERTOCONTINUE=$( echo "Drücken Sie die Eingabetaste, um fortzufahren: " ) -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" ) -# Kitchen +## 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 +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! +===================== +Umgebungsinstallation unterstützt ausschliesslich 64-bit-Systeme" ) +export ENVIRONMENTSETUPNOTSUPPORTED=$( echo "Betriebssystem nicht unterstützt! +=============================== +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 +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" ) +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 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 +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 " 1. Geräte/Aktualisierung Küche" ) -export KITCHENMENU2=$( echo " 2. Konfigurieren Küche" ) -export KITCHENMENU3=$( echo " 3. Lauf Küche" ) -export KITCHENMENU4=$( echo " 4. Fixieren Küche" ) -export KITCHENMENU5=$( echo " 5. Automatisch Bauen Küche" ) -export KITCHENMENU6=$( echo " 6. Ausgang" ) -export KITCHENMENUWHICH=$( echo "Welches würden Sie tun?" ) -export KITCHENTHANKS=$( echo "Wir danken für Swordrune10 der Küche! Wiedersehen.." ) -export KITCHENBORED=$( echo "Sie scheinen gelangweilt .. will einen Film ansehen?" ) -export KITCHENTOUGH=$( echo "hart!" ) +export KITCHENMENU1=$( echo "Küche einrichten/aktualisieren" ) +export KITCHENMENU2=$( echo "Küche konfigurieren" ) +export KITCHENMENU3=$( echo "Starten" ) +export KITCHENMENU4=$( echo "Küche reparieren" ) +export KITCHENMENU5=$( echo "Autobuild" ) +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 -- 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 "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 "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 "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 "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 "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 "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 "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 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 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 4be8987..ccf5a31 100755 --- a/translation/spanishmackerel +++ b/translation/spanishmackerel @@ -15,25 +15,414 @@ # Spanish -# Common -export KITCHENTITLE=$( echo "De Swordrune10 Cocina Android!" ) +## Common +export KITCHENTITLE=$( echo " Cocina Android De Swordrune10!" ) export KITCHENUNDERLINE=$( echo "==============================" ) -export NOTPROPERSELECTION=$( echo "No hiciste una adecuada selección, vuelve a intentarlo!" ) +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: " ) +export ABORTMESSAGE=$( echo "Aborting.." ) +export COMPLETEDMESSAGE=$( echo "Finalizado!" ) export ANSWERYES=$( echo "sí" ) export ANSWERY=$( echo "s" ) export ANSWERNO=$( echo "no" ) export ANSWERN=$( echo "n" ) -# Kitchen +## 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 - 14.04 (Soporte Completo) +Debian (Soporte General) +Linux Mint (Soporte General) +Arch Linux (Soporte General) +Fedora (Soporte General) +Mac OS X (Soporte Semi-General)" ) + +## Repos +export REPOSKITCHEN=$( echo "Aplicacion De Cocina" ) +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 +## 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" ) + +## Kitchen export KITCHENMAINMENU=$( echo "Menú Principal:" ) -export KITCHENMENU1=$( echo " 1. Configuración/Actualización Cocina" ) -export KITCHENMENU2=$( echo " 2. Configurar Cocina" ) -export KITCHENMENU3=$( echo " 3. Cocina Ejecutar" ) -export KITCHENMENU4=$( echo " 4. Fijar Cocina" ) -export KITCHENMENU5=$( echo " 5. Cocina Generación Automática" ) -export KITCHENMENU6=$( echo " 6. Salida" ) -export KITCHENMENUWHICH=$( echo "¿Cuál te gusta hacer?" ) -export KITCHENTHANKS=$( echo "Gracias por utilizar la cocina del Swordrune10 usted! Adiós.." ) +export KITCHENMENU1=$( echo "Configuración/Actualizar Cocina" ) +export KITCHENMENU2=$( echo "Configurar Cocina" ) +export KITCHENMENU3=$( echo "Ejecutar Cocina " ) +export KITCHENMENU4=$( echo "Reparar Cocina" ) +export KITCHENMENU5=$( echo "Generar la Cocina Automáticamente" ) +export KITCHENMENU6=$( echo "Salir" ) +export KITCHENMENUWHICH=$( echo "¿Cuál quieres hacer?" ) +export KITCHENTHANKS=$( echo "Gracias por utilizar la cocina de Swordrune10! Adiós.." ) export KITCHENBORED=$( echo "Pareces aburrido .. ¿Quieres ver una película?" ) -export KITCHENTOUGH=$( echo "difícil!" ) +export KITCHENTOUGH=$( echo "Complicado!" ) + +## Reposync +# Usage and Flags +export REPOSYNCUSAGE=$( echo "repo -- programa para inicializar/actualizar repositorio Android" ) +export REPOSYNCFLAGD=$( echo "eliminar la carpeta apropiada y salir del programa" ) +export REPOSYNCFLAGH=$( echo "mostrar texto de ayuda" ) +export REPOSYNCFLAGP=$( echo "purgar carpeta, reiniciar y entonces actualizar" ) +export REPOSYNCFLAGU=$( echo "actualizar repositorio en particular" ) +export REPOSYNCUPDATE1=$( echo "Actualizar $REPOSKITCHEN" ) +export REPOSYNCUPDATE2=$( echo "Actualizar $REPOSAOKP" ) +export REPOSYNCUPDATE3=$( echo "Actualizar $REPOSAOSP43" ) +export REPOSYNCUPDATE4=$( echo "Actualizar $REPOSAOSP" ) +export REPOSYNCUPDATE5=$( echo "Actualizar $REPOSCARBON" ) +export REPOSYNCUPDATE6=$( echo "Actualizar $REPOSCM10" ) +export REPOSYNCUPDATE7=$( echo "Actualizar $REPOSCM" ) +export REPOSYNCUPDATE8=$( echo "Actualizar $REPOSEV" ) +export REPOSYNCUPDATE9=$( echo "Actualizar $REPOSOMNI" ) +export REPOSYNCUPDATE10=$( echo "Actualizar $REPOSPACMAN" ) +export REPOSYNCUPDATE11=$( echo "Actualizar $REPOSPARA" ) +export REPOSYNCUPDATE12=$( echo "Actualizar todos los repositorios disponibles" ) +export REPOSYNCUPDATE13=$( echo "Actualizar todos los repositorios" ) +export REPOSYNCUSAGEEXAMP=$( echo "Ejemplo: reposync -u cm-10.2" ) +export REPOSYNCUSAGELIST1=$( echo "escribiendo \"reposync -u list\" dará a" ) +export REPOSYNCUSAGELIST2=$( echo "mostrando lista de opciones " ) + +# Menu +export REPOSYNCMENUWHAT=$( echo "¿Qué estamos actualizando?" ) +export REPOSYNCMENUINIT=$( echo "Si repositorio no está inicializado, será en la actualización" ) +export REPOSYNCMENU1=$( echo "instale el comando de repositorio" ) +export REPOSYNCMENU2=$( echo "Configure el entorno de compilación" ) +export REPOSYNCMENU3=$( echo "Actualizar el $REPOSKITCHEN repositorio" ) +export REPOSYNCMENU4=$( echo "Actualizar el $REPOSAOKP repositorio" ) +export REPOSYNCMENU5=$( echo "Actualizar el $REPOSAOSP43 repositorio" ) +export REPOSYNCMENU6=$( echo "Actualizar el $REPOSAOSP repositorio" ) +export REPOSYNCMENU7=$( echo "Actualizar el $REPOSCARBON repositorio" ) +export REPOSYNCMENU8=$( echo "Actualizar el $REPOSCM10 repositorio" ) +export REPOSYNCMENU9=$( echo "Actualizar el $REPOSCM repositorio" ) +export REPOSYNCMENU10=$( echo "Actualizar el $REPOSEV repositorio" ) +export REPOSYNCMENU11=$( echo "Actualizar el $REPOSOMNI repositorio" ) +export REPOSYNCMENU12=$( echo "Actualizar el $REPOSPACMAN repositorio" ) +export REPOSYNCMENU13=$( echo "Actualizar el $REPOSPARA repositorio" ) +export REPOSYNCMENU14=$( echo "Actualizar todos los repositorios disponibles" ) +export REPOSYNCMENU15=$( echo "Actualizar todos los repositorios!" ) +export REPOSYNCMENU16=$( echo "Actualizar/Añadir otros Repositorios" ) + +# Sync and Init +export REPOSYNCNOTINITSKIP=$( echo "no inicializado, saltando" ) +export REPOSYNCUPDATING=$( echo "Actualizando" ) +export REPOSYNCBLAHSMANIFEST=$( echo "Manifiesto de" ) +export REPOSYNCNOTINITYET=$( echo "no inicializando, inicializando ahora" ) +export REPOSYNCNOTINITWANTTO=$( echo "no inicializado, ¿desea inicializarlo?" ) +export REPOSYNCINIT=$( echo "inicializando" ) +export REPOSYNCNOTINIT=$( echo "no fue inicializado" ) +export REPOSYNCREPO=$( echo "repositorio" ) +export REPOSYNCREPOALREADY=$( echo "comando de repositorio, actualmente instalado" ) +export REPOSYNCREPOINSTALL=$( echo "Instalando el comando de repositorio" ) +export REPOSYNCCOMPLETE=$( echo "Actualizacion Completada!" ) + +# Otherrepo Sync and Init +export REPOSYNCADDOR=$( echo "Estamos actualizando o añadiendo otro repositorio" ) +export REPOSYNCOTHERMENU1=$( echo "Añadir a carpeta de repositorios personalizados" ) +export REPOSYNCOTHERMENU2=$( echo "Actualizar todos los repositorios personalizados" ) +export REPOSYNCOTHERREPONAME=$( echo "Cual es el nombre de repositorio?" ) +export REPOSYNCOTHERREPOSHORTNAME=$( echo "Cual es la abreviatura de este Repositorio. Ejemplo: Android Open Source Project = aosp" ) +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?" ) + +## Environmentsetup +export ENVIRONMENTSETUPINIT=$( echo "Inicializando el entorno de Compilacion" ) +export ENVIRONMENTSETUPOS=$( echo "Verificando que Sistema Operativo estas Usando" ) +export ENVIRONMENTSETUPINSTALL=$( echo "Instalando los paquetes necesarios,por favor introduzca su Contraseña" ) +export ENVIRONMENTSETUPDXCODE=$( echo "Esta Xcode Instalado? Recomendamos la version 3.1.4 O mas nueva" ) +export ENVIRONMENTSETUPDMACPORTS=$( echo "Esta MacPorts Instalado?" ) + +# Platform +export ENVIRONMENTSETUPFEDORA=$( echo "Estas Usando Fedora o RedHat!" ) +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 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!" ) + +# 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] Obteniando la pagina de descarga de Java SE " ) +export ENVIRONMENTSETUPFLEXION2=$( echo " [x] Obteniendo página de descarga versión actual" ) +export ENVIRONMENTSETUPFLEXION3=$( echo " [x] Obteniendo página de descarga versión anterior" ) +export ENVIRONMENTSETUPWEBUPD8=$( echo "Instalar java tomará un tiempo, para hacer esto legalmente la aplicación de Cocina utilizará instalador java de WebUpd8" ) + +## Preupdate +export PREUPDATEAOSP43=$( echo "Actualizando $REPOSAOSP43's local_manifests Carpeta" ) +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 d3ba597..e733351 100755 --- a/update/environmentsetup +++ b/update/environmentsetup @@ -20,36 +20,32 @@ if [ ! "$INIT" ]; then exit 0 fi -echo "Initilizing the build enviroment.." +echo $ENVIRONMENTSETUPINIT echo "" -echo "Checking what Operating System you are running..." +echo $ENVIRONMENTSETUPOS if ( ! uname -a | grep -q x86_64 ); then clear - echo "32-bit not supported!" - echo "=====================" - echo "Build enviroment installation only supports 64-bit Operating Systems" + echo $ENVIRONMENTSETUP32BIT 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 continue: " done + echo $ERRORCONTACTINFO + read -p "$ENTERTOCONTINUE" done exit 0 fi if ( uname -a | grep -q Linux ); then # Fedora if ( find /etc/fedora-release &> /dev/null ) || ( find /etc/redhat-release &> /dev/null ); then - echo "You are running Fedora or RedHat!" - echo "Installing packages needed, please enter your password" + echo $ENVIRONMENTSETUPFEDORA + echo $ENVIRONMENTSETUPINSTALL sudo yum install gcc gcc-c++ gperf flex bison glibc-devel.{x86_64,i686} \ zlib-devel.{x86_64,i686} ncurses-devel.i686 libsx-devel readline-devel.i386 \ glibc.i686 glibc-devel.i686 libstdc++.i686 zlib-devel.i686 libX11-devel.i686 \ libXrender.i686 libXrandr.i686 - echo "Installing java will take a while, to do this legally the Kitchen app will use exerpts from flexion.org oab-java script" - read -p "Press Enter to continue: " done + echo $ENVIRONMENTSETUPFLEXION + read -p "$ENTERTOCONTINUE" done # fedora java installation # Exerpts from the much smarter (as u can see from the code) flexion.org oab-java script @@ -65,7 +61,7 @@ if ( uname -a | grep -q Linux ); then JAVA_UPD=`echo ${DEB_VERSION} | cut -d'.' -f2 | cut -d'-' -f1` # Try and dynamic find the JDK downloads - echo " [x] Getting Java SE download page" + echo $ENVIRONMENTSETUPFLEXION1 wget "http://www.oracle.com/technetwork/java/javase/downloads/index.html" -O /tmp/oab-index.html # See if the Java version is on the download frontpage, otherwise look for it in @@ -73,10 +69,10 @@ if ( uname -a | grep -q Linux ); then DOWNLOAD_INDEX=`grep -P -o "/technetwork/java/javase/downloads/jdk-${JAVA_VER}u${JAVA_UPD}-downloads-\d+\.html" /tmp/oab-index.html | uniq` if [ -n "${DOWNLOAD_INDEX}" ]; then - echo " [x] Getting current release download page " + echo $ENVIRONMENTSETUPFLEXION2 wget http://www.oracle.com/${DOWNLOAD_INDEX} -O /tmp/oab-download.html else - echo " [x] Getting previous releases download page " + echo $ENVIRONMENTSETUPFLEXION3 wget http://www.oracle.com/technetwork/java/javasebusiness/downloads/java-archive-downloads-javase6-419409.html -O /tmp/oab-download.html fi @@ -99,17 +95,17 @@ if ( uname -a | grep -q Linux ); then rm -f $LOCAL/../changelog.tmp echo "" - echo "Finished!" + echo $COMPLETEDMESSAGE envir=true - read -p "Press Enter to continue: " done + read -p "$ENTERTOCONTINUE" done fi # Debian-based if ( find /etc/debian_version &> /dev/null ) || ( find /etc/lsb-release &> /dev/null ); then # Debian if ( lsb_release -i | grep -q Debian ); then - echo "You are running Debian!" - echo "Installing packages needed, please enter your password" + echo $ENVIRONMENTSETUPDEBIAN + echo $ENVIRONMENTSETUPINSTALL sudo apt-get install git-core gnupg flex bison gperf build-essential \ zip curl zlib1g-dev libc6-dev lib32ncurses5-dev ia32-libs \ x11proto-core-dev libx11-dev lib32readline5-dev lib32z-dev \ @@ -120,9 +116,9 @@ if ( uname -a | grep -q Linux ); then fi # Ubuntu 10.04, 10.10, and 11.04 - if ( lsb_release -c | grep -q natty ) || ( lsb_release -c | grep -q lucid ) || ( lsb_release -c | grep -q maverick ); then - echo "You are running Ubuntu, either 10.04, 10.10, or 11.04!" - echo "Installing packages needed, please enter your password" + if ( lsb_release -c | grep -q lucid ) || ( lsb_release -c | grep -q maverick ) || ( lsb_release -c | grep -q natty ); then + echo $ENVIRONMENTSETUPULMN + echo $ENVIRONMENTSETUPINSTALL sudo apt-get install git-core gnupg flex bison gperf build-essential \ zip curl zlib1g-dev libc6-dev lib32ncurses5-dev ia32-libs \ x11proto-core-dev libx11-dev lib32readline5-dev lib32z-dev \ @@ -134,8 +130,8 @@ if ( uname -a | grep -q Linux ); then # Ubuntu 11.10 if ( lsb_release -c | grep -q oneiric ); then - echo "You are running Ubuntu 11.10!" - echo "Installing packages needed, please enter your password" + echo $ENVIRONMENTSETUPUO + echo $ENVIRONMENTSETUPINSTALL sudo apt-get install git-core gnupg flex bison gperf build-essential \ zip curl zlib1g-dev libc6-dev lib32ncurses5-dev ia32-libs \ x11proto-core-dev libx11-dev lib32readline5-dev lib32z-dev \ @@ -145,10 +141,10 @@ if ( uname -a | grep -q Linux ); then sudo ln -s /usr/lib/i386-linux-gnu/libX11.so.6 /usr/lib/i386-linux-gnu/libX11.so fi - # Ubuntu 12.04 - if ( lsb_release -c | grep -q precise ); then - echo "You are running Ubuntu 12.04!" - echo "Installing packages needed, please enter your password" + # Ubuntu 12.04 and 12.10 + if ( lsb_release -c | grep -q precise ) || ( lsb_release -c | grep -q quantal ); then + echo $ENVIRONMENTSETUPUPQ + echo $ENVIRONMENTSETUPINSTALL sudo apt-get install git-core gnupg flex bison gperf build-essential \ zip curl libc6-dev libncurses5-dev:i386 x11proto-core-dev \ libx11-dev:i386 libreadline6-dev:i386 libgl1-mesa-dev:i386 \ @@ -158,36 +154,10 @@ 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 12.10 - if ( lsb_release -c | grep -q quantal ); then - echo "You are running Ubuntu 12.10!" - echo "Installing packages needed, please enter your password" - sudo apt-get install git-core gnupg flex bison gperf build-essential \ - zip curl libc6-dev libncurses5-dev:i386 x11proto-core-dev \ - libx11-dev:i386 libreadline6-dev:i386 libgl1-mesa-dev:i386 \ - g++-multilib mingw32 tofrodos python-markdown \ - libxml2-utils xsltproc zlib1g-dev:i386 \ - gcc-4.4 gcc-4.5 g++-4.4-multilib g++-4.5-multilib # threw these in to make sure it builds ;) - sudo ln -s /usr/lib/i386-linux-gnu/mesa/libGL.so.1 /usr/lib/i386-linux-gnu/libGL.so - fi - - # Ubuntu 13.04 - if ( lsb_release -c | grep -q raring ); then - echo "You are running Ubuntu 13.04!" - echo "Installing packages needed, please enter your password" - sudo apt-get install git-core gnupg flex bison gperf build-essential \ - zip curl libc6-dev libncurses5-dev:i386 x11proto-core-dev \ - libx11-dev:i386 libreadline6-dev:i386 libgl1-mesa-dev:i386 \ - g++-multilib mingw32 tofrodos python-markdown \ - libxml2-utils xsltproc zlib1g-dev:i386 \ - gcc-4.4 g++-4.4-multilib gcc-4.6 g++-4.6-multilib schedtool # threw these in to make sure it builds ;) - sudo ln -s /usr/lib/i386-linux-gnu/mesa/libGL.so.1 /usr/lib/i386-linux-gnu/libGL.so - fi - - # Ubuntu 13.10 - if ( lsb_release -c | grep -q saucy ); then - echo "You are running Ubuntu 13.10!" - echo "Installing packages needed, please enter your password" + # 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 \ libx11-dev:i386 libreadline6-dev:i386 libgl1-mesa-dev:i386 \ @@ -199,8 +169,8 @@ if ( uname -a | grep -q Linux ); then # Linux Mint if ( lsb_release -i | grep -q Mint ); then - echo "You are running Linux Mint!" - echo "Installing packages needed, please enter your password" + echo $ENVIRONMENTSETUPMINT + echo $ENVIRONMENTSETUPINSTALL sudo apt-get install git-core gnupg flex bison gperf build-essential \ zip curl zlib1g-dev libc6-dev lib32ncurses5-dev ia32-libs \ x11proto-core-dev libx11-dev lib32readline5-dev lib32z-dev \ @@ -210,23 +180,23 @@ if ( uname -a | grep -q Linux ); then # Debian based java installation - echo "Installing java will take a while, to do this legally the Kitchen app will use webupd8's java installer" + echo $ENVIRONMENTSETUPWEBUPD8 echo "" sudo add-apt-repository ppa:webupd8team/java sudo apt-get update sudo apt-get install oracle-java6-installer echo "" - echo "Finished!" - export envir=true - read -p "Press Enter to continue: " done + echo $COMPLETEDMESSAGE + envir=true + read -p "$ENTERTOCONTINUE" done fi if ( find /etc/arch-release &> /dev/null ); then - echo "You are running Arch Linux!" - echo "Installing packages needed, please enter your password" + echo $ENVIRONMENTSETUPARCH + echo $ENVIRONMENTSETUPINSTALL sudo pacman -Sy abs base-devel sudo pacman -S openjdk6 perl git gnupg flex bison gperf zip unzip sdl wxgtk \ squashfs-tools ncurses libpng zlib libusb libusb-compat readline @@ -281,9 +251,8 @@ if ( uname -a | grep -q Linux ); then rm -rf $LOCAL/../archbuilds - echo "Installing java will take a while, to do this legally the Kitchen app will use exerpts from flexion.org oab-java script" - echo "Press Enter to continue" - read -p "Press Enter to continue: " done + echo $ENVIRONMENTSETUPFLEXION + read -p "$ENTERTOCONTINUE" done # Exerpts from the much smarter (as u can see from the code) flexion.org oab-java script # slightly edited to remove unneeded code @@ -297,7 +266,7 @@ if ( uname -a | grep -q Linux ); then JAVA_UPD=`echo ${DEB_VERSION} | cut -d'.' -f2 | cut -d'-' -f1` # Try and dynamic find the JDK downloads - echo " [x] Getting Java SE download page" + echo $ENVIRONMENTSETUPFLEXION1 wget "http://www.oracle.com/technetwork/java/javase/downloads/index.html" -O /tmp/oab-index.html # See if the Java version is on the download frontpage, otherwise look for it in @@ -305,10 +274,10 @@ if ( uname -a | grep -q Linux ); then DOWNLOAD_INDEX=`grep -P -o "/technetwork/java/javase/downloads/jdk-${JAVA_VER}u${JAVA_UPD}-downloads-\d+\.html" /tmp/oab-index.html | uniq` if [ -n "${DOWNLOAD_INDEX}" ]; then - echo " [x] Getting current release download page " + echo $ENVIRONMENTSETUPFLEXION2 wget http://www.oracle.com/${DOWNLOAD_INDEX} -O /tmp/oab-download.html else - echo " [x] Getting previous releases download page " + echo $ENVIRONMENTSETUPFLEXION3 wget http://www.oracle.com/technetwork/java/javasebusiness/downloads/java-archive-downloads-javase6-419409.html -O /tmp/oab-download.html fi @@ -344,22 +313,23 @@ if ( uname -a | grep -q Linux ); then PATH="\$PATH:$jdk:$jre"" /etc/profile echo "" - echo "Finished!" - export envir=true - read -p "Press Enter to continue: " done + echo $COMPLETEDMESSAGE + envir=true + read -p "$ENTERTOCONTINUE" done fi fi if ( uname -a | grep -q Darwin ); then clear - echo "Is Xcode installed? We recommend version 3.1.4 or newer" - read -p "yes/no? " xcode + echo $ENVIRONMENTSETUPDARWIN + echo $ENVIRONMENTSETUPDXCODE + read -p "$QUESTIONYESNO" xcode - echo "Is MacPorts installed?" - read -p "yes/no? " macports + echo $ENVIRONMENTSETUPDMACPORTS + read -p "$QUESTIONYESNO" macports - if [ "$xcode" == "y" ] || [ "$xcode" == "yes" ] && [ "$macports" == "y" ] || [ "$macports" == "yes" ]; then + if [ "$xcode" == $ANSWERY ] || [ "$xcode" == $ANSWERYES ] && [ "$macports" == $ANSWERY ] || [ "$macports" == $ANSWERYES ]; then if ( ! cat ~/.bash_profile | grep -q "export PATH=/opt/local/bin:\$PATH" ); then echo "export PATH=/opt/local/bin:\$PATH" >> ~/.bash_profile fi @@ -370,36 +340,22 @@ if ( uname -a | grep -q Darwin ); then echo "ulimit -S -n 1024" >> ~/.bash_profile fi else - echo "Aborting.." - read -p "Press Enter to continue: " done + echo $ABORTMESSAGE + read -p "$ENTERTOCONTINUE" done exit 0 fi echo "" - echo "Finished!" - export envir=true - read -p "Press Enter to continue: " done + echo $COMPLETEDMESSAGE + envir=true + read -p "$ENTERTOCONTINUE" done fi -if [ "$envir" ]; then - exit 0 -else +if [ ! "$envir" ]; then clear - echo "Operating System not supported!" - echo "===============================" - echo "Supported Operating Systems (only 64-bit):" - echo "Ubuntu 10.04 - 13.10 (Full Support)" - echo "Debian (General Support)" - echo "Linux Mint (General Support)" - echo "Arch Linux (General Support)" - echo "Fedora (General Support)" - echo "Mac OS X (Semi-General Support)" + echo $ENVIRONMENTSETUPNOTSUPPORTED 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 "" - read -p "Press Enter to continue: " done - exit 0 + echo $ERRORCONTACTINFO + read -p "$ENTERTOCONTINUE" done fi diff --git a/update/preupdate b/update/preupdate index b9580cd..747d725 100755 --- a/update/preupdate +++ b/update/preupdate @@ -25,7 +25,7 @@ fi if [ $SCRIPT_REPO == "aosp" ] && [ $REPO_PLATFORM == "jb" ]; then echo "" - echo "Updating Android Open Source Project's local_manifests folder" + echo $PREUPDATEAOSP43 export AUTHOR="xml" scriptmakir cp -f $LOCAL/xml/aosp-jb-local_manifest.xml $localmanifests/proprietary.xml @@ -33,7 +33,7 @@ fi if [ $SCRIPT_REPO == "aosp" ] && [ $REPO_PLATFORM == "kitkat" ]; then echo "" - echo "Updating Android Open Source Project's local_manifests folder" + echo $PREUPDATEAOSP export AUTHOR="xml" scriptmakir cp -f $LOCAL/xml/aosp-kitkat-local_manifest.xml $localmanifests/proprietary.xml @@ -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 "Updating Cyanogenmod 10.2's local_manifests folder" + 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 "Updating Cyanogenmod 11's local_manifests folder" + 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 @@ -72,10 +72,10 @@ fi if [ $SCRIPT_REPO == "omni" ]; then rm -rf vendor/custom echo "" - echo "Updating omnirom's local_manifests folder" + echo $PREUPDATEOMNI export AUTHOR="xml" scriptmakir - cp -f $LOCAL/xml/aosp-kitkat-local_manifest.xml $localmanifests/proprietary.xml + cp -f $LOCAL/xml/cm11-local_manifest.xml $localmanifests/proprietary.xml fi if [ $SCRIPT_REPO == "pacman" ]; then diff --git a/update/reposync b/update/reposync index f8ad93a..d3c5469 100755 --- a/update/reposync +++ b/update/reposync @@ -15,33 +15,36 @@ if [ ! "$INIT" ]; then -usage="$(basename "$0") [-d] [-h] [-p] [-u] repo -- program to initialize/update android repos +cd $(dirname $0) +. ../utility/retardedbabelfish + +usage="$(basename "$0") [-d] [-h] [-p] [-u] $REPOSYNCUSAGE where: - -d delete the appropriate folder and then exit program - -h show this help text - -p purge folder, reinit, and then update - -u update this particular repo + -d $REPOSYNCFLAGD + -h $REPOSYNCFLAGH + -p $REPOSYNCFLAGP + -u $REPOSYNCFLAGU Options list: - kitchen = Update Kitchen - aokp = Update Android Open Kang Project - aosp43 = Update Android Open Source Project 4.3 - aosp = Update Android Open Source Project 4.4 - carbon = Update Carbon - cm10 = Update Cyanogenmod 10.2 - cm10 = Update Cyanogenmod 11 - ev = Update Evervolv - omni = Update omnirom - pacman = Update PAC-man - paranoid = Update ParanoidAndroid - all = Update all available repos - allthethings = Update all the repos - - Example: reposync -u cm-10.2 - - typing \"reposync -u list\" will give - you the options list again" + kitchen = $REPOSYNCUPDATE1 + aokp = $REPOSYNCUPDATE2 + aosp43 = $REPOSYNCUPDATE3 + aosp = $REPOSYNCUPDATE4 + carbon = $REPOSYNCUPDATE5 + cm10 = $REPOSYNCUPDATE6 + cm11 = $REPOSYNCUPDATE7 + ev = $REPOSYNCUPDATE8 + omni = $REPOSYNCUPDATE9 + pacman = $REPOSYNCUPDATE10 + paranoid = $REPOSYNCUPDATE11 + all = $REPOSYNCUPDATE12 + allthethings = $REPOSYNCUPDATE13 + + $REPOSYNCUSAGEEXAMP + + $REPOSYNCUSAGELIST1 + $REPOSYNCUSAGELIST2" export AUTO=true @@ -80,52 +83,53 @@ menu () { if [ ! "$AUTO" ]; then clear - echo "Swordrune10's Android Kitchen!" - echo "==============================" - echo "What are we updating?" - echo "If repo isn't initialized, it will be on update" - echo " 1. Install the repo command" - echo " 2. Setup the build enviroment" - echo " 3. Update the Kitchen app repository" - echo " 4. Update the Android Open Kang Project repository" - echo " 5. Update the Android Open Source Project 4.3 repository" - echo " 6. Update the Android Open Source Project 4.4 repository" - echo " 7. Update the Carbon repository" - echo " 8. Update the Cyanogenmod 10.2 repository" - echo " 9. Update the Cyanogenmod 11 repository" - echo " 10. Update the Evervolv repository" - echo " 11. Update the omnirom repository" - echo " 12. Update the PAC-man repository" - echo " 13. Update the ParanoidAndroid repository" - echo " 14. Update all available repositories" - echo " 15. Update all the repos!" - echo " 16. Update/add otherrepo" - echo " 17. Go Back" - read setupanswer + echo $KITCHENTITLE + echo $KITCHENUNDERLINE + echo $REPOSYNCMENUWHAT + echo $REPOSYNCMENUINIT + echo " 1. $REPOSYNCMENU1" + echo " 2. $REPOSYNCMENU2" + echo " 3. $REPOSYNCMENU3" + echo " 4. $REPOSYNCMENU4" + echo " 5. $REPOSYNCMENU5" + echo " 6. $REPOSYNCMENU6" + echo " 7. $REPOSYNCMENU7" + echo " 8. $REPOSYNCMENU8" + echo " 9. $REPOSYNCMENU9" + echo " 10. $REPOSYNCMENU10" + echo " 11. $REPOSYNCMENU11" + echo " 12. $REPOSYNCMENU12" + echo " 13. $REPOSYNCMENU13" + echo " 14. $REPOSYNCMENU14" + echo " 15. $REPOSYNCMENU15" + echo " 16. $REPOSYNCMENU16" + echo " 17. $MENUGOBACK" + echo "" + read -p "$KITCHENMENUWHICH" setupanswer if [ ! "$setupanswer" ] || ( echo $setupanswer | grep -q [A-Za-z] ) || [ $setupanswer -gt "17" ]; 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 fi if [ "$PLATFORM" ]; then if [ $PLATFORM == "list" ]; then - echo "kitchen = Update Kitchen" - echo "aokp = Update Android Open Kang Project" - echo "aosp43 = Update Android Open Source Project 4.3" - echo "aosp = Update Android Open Source Project 4.4" - echo "carbon = Update Carbon" - echo "cm10 = Update Cyanogenmod 10.2" - echo "cm = Update Cyanogenmod 11" - echo "evervolv = Update Evervolv" - echo "omni = Update omnirom" - echo "pacman = Update PAC-man" - echo "paranoid = Update ParanoidAndroid" - echo "all = Update all available repos" - echo "allthethings = Update all the repos" + echo "kitchen = $REPOSYNCUPDATE1" + echo "aokp = $REPOSYNCUPDATE2" + echo "aosp43 = $REPOSYNCUPDATE3" + echo "aosp = $REPOSYNCUPDATE4" + echo "carbon = $REPOSYNCUPDATE5" + echo "cm11 =$REPOSYNCUPDATE6" + echo "cm = $REPOSYNCUPDATE7" + echo "evervolv = $REPOSYNCUPDATE8" + echo "omni = $REPOSYNCUPDATE9" + echo "pacman = $REPOSYNCUPDATE10" + echo "paranoid = $REPOSYNCUPDATE11" + echo "all = $REPOSYNCUPDATE12" + echo "allthethings = $REPOSYNCUPDATE13" exit 0 fi @@ -149,7 +153,7 @@ if [ "$PLATFORM" ]; then setupanswer="7" fi - if [ $PLATFORM == "cm10" ]; then + if [ $PLATFORM == "cm11" ]; then setupanswer="8" fi @@ -203,29 +207,29 @@ initmanifest="" echo "" if [ $setupanswer == "14" ] && ( ! find $REPO_FOLDER/.repo -maxdepth 1 &> /dev/null); then - echo "$repo_name not initialized, skipping" + echo "$repo_name $REPOSYNCNOTINITSKIP" elif ( find $REPO_FOLDER/.repo -maxdepth 1 &> /dev/null); then - echo "Updating $repo_name's manifest" + echo "$REPOSYNCUPDATING $repo_name$REPOSYNCBLAHSMANIFEST" initmanifest=true elif ( ! find $REPO_FOLDER/.repo -maxdepth 1 &> /dev/null); then if [ ! "$AUTO" ]; then if [ $setupanswer == "15" ]; then - echo "$repo_name not initialized, initializing now" + echo "$repo_name $REPOSYNCNOTINITYET" initmanifest=true else - echo "$repo_name not initialized, do you want to initialize it?" + echo "$repo_name $REPOSYNCNOTINITWANTTO" read init if [ "$init" == "yes" ] || [ "$init" == "y" ]; then - echo "initializing $repo_name" + echo "$REPOSYNCINIT $repo_name" initmanifest=true else - echo "$repo_name wasn't initialized" + echo "$repo_name $REPOSYNCNOTINIT" fi fi else if [ ! "$DELETEFOLDER" ]; then - echo "$repo_name not initialized, initializing now" + echo "$repo_name $REPOSYNCNOTINITYET" fi initmanifest=true @@ -236,12 +240,12 @@ fi if [ "$done" ]; then echo "" - echo "$repo_name Update Complete!" + echo "$repo_name $REPOSYNCCOMPLETE" if [ ! "$AUTO" ]; then echo "" - echo "Finished!" - read -p "Press Enter to continue: " done + echo $COMPLETEDMESSAGE + read -p "$ENTERTOCONTINUE" done menu else exit 0 @@ -267,7 +271,7 @@ if ( find $REPO_FOLDER/.repo -maxdepth 1 &> /dev/null); then preupdate echo "" - echo "Updating $repo_name repository" + echo "$REPOSYNCUPDATING $repo_name $REPOSYNCREPO" repo sync -n -j $NETWORKSYNC repo sync -l -j $LOCALSYNC @@ -280,11 +284,11 @@ fi if [ $setupanswer == "1" ]; then if ( type -a repo &> /dev/null ); then echo "" - echo "repo is already installed" - read -p "Press Enter to continue: " done + echo $REPOSYNCREPOALREADY + read -p "$ENTERTOCONTINUE" done else echo "" - echo "Installing the repo command" + echo "$REPOSYNCREPOINSTALL" if ( ! find ~/bin &> /dev/null ); then mkdir ~/bin @@ -294,8 +298,8 @@ if [ $setupanswer == "1" ]; then chmod a+x ~/bin/repo echo "" - echo "Finished!" - read -p "Press Enter to continue: " done + echo $COMPLETEDMESSAGE + read -p "$ENTERTOCONTINUE" done fi fi @@ -339,7 +343,7 @@ if [ $setupanswer == "7" ]; then fi if [ $setupanswer == "8" ]; then - repodefine=$(echo "cm10") + repodefine=$(echo "cm11") . repodefiner done=true setupcheck @@ -401,7 +405,7 @@ if [ $setupanswer == "14" ] || [ $setupanswer == "15" ]; then . repodefiner setupcheck - repodefine=$(echo "cm10") + repodefine=$(echo "cm11") . repodefiner setupcheck @@ -430,34 +434,32 @@ fi if [ $setupanswer == "16" ]; then clear - echo "Swordrune10's Android Kitchen!" - echo "==============================" - echo "Are we adding or updating otherrepo?" - echo "" - echo "Which android repository are we building from today?" - echo " 1. Add to custom repo folder" - echo " 2. Update all the custom repos" - echo " 3. Go Back" + echo $KITCHENTITLE + echo $KITCHENUNDERLINE + echo $REPOSYNCADDOR + echo " 1. $REPOSYNCOTHERMENU1" + echo " 2. $REPOSYNCOTHERMENU2" + echo " 3. $MENUGOBACK" read otheranswer if [ ! "$otheranswer" ] || ( echo $otheranswer | grep -q [A-Za-z] ) || [ $otheranswer -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 menu fi if [ $otheranswer == "1" ]; then - echo "What is the repo's name?" + echo $REPOSYNCOTHERREPONAME read manifestname - echo "What is a short name for this repo? Example: Android Open Source Project = aosp" + echo $REPOSYNCOTHERREPOSHORTNAME read manifestshortname - echo "What is the url to the repo's manifest?" + echo $REPOSYNCOTHERREPOURL read manifesturl - echo "What is the branch the repo's manifest you want to use?" + echo $REPOSYNCOTHERREPOBRANCH read manifestbranch export SCRIPT_REPO=$(echo $manifestshortname) @@ -484,14 +486,14 @@ if [ $setupanswer == "16" ]; then if [ $otheranswer == "3" ]; then echo "" - read -p "Press Enter to continue: " done + read -p "$ENTERTOCONTINUE" done menu fi fi if [ $setupanswer == "17" ]; then echo "" - read -p "Returning to Main Menu, Press Enter to continue: " done + read -p "$MAINMENURETURN" done exit 0 fi 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 f221cbe..9f2a135 100755 --- a/utility/kitchen +++ b/utility/kitchen @@ -26,15 +26,14 @@ clear echo $KITCHENTITLE echo $KITCHENUNDERLINE echo $KITCHENMAINMENU -echo $KITCHENMENU1 -echo $KITCHENMENU2 -echo $KITCHENMENU3 -echo $KITCHENMENU4 -echo $KITCHENMENU5 -echo $KITCHENMENU6 +echo " 1. $KITCHENMENU1" +echo " 2. $KITCHENMENU2" +echo " 3. $KITCHENMENU3" +echo " 4. $KITCHENMENU4" +echo " 5. $KITCHENMENU5" +echo " 6. $KITCHENMENU6" echo "" -echo $KITCHENMENUWHICH -read 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 72cb9d8..a8c553b 100755 --- a/utility/repodefiner +++ b/utility/repodefiner @@ -17,7 +17,7 @@ if [ $repodefine == "kitchen" ]; then export SCRIPT_REPO=$(echo "kitchen") export REPO_PLATFORM=$(echo "master") repo_branch=$(echo "master") - repo_name=$(echo "Kitchen app") + repo_name=$(echo $REPOSKITCHEN) repo_url=$(echo "http://github.com/TeamKeyblade/kitchen_manifest.git") manifest_name=$(echo "default.xml") fi @@ -26,25 +26,25 @@ if [ $repodefine == "aokp" ]; then export SCRIPT_REPO=$(echo "aokp") export REPO_PLATFORM=$(echo "kitkat") repo_branch=$(echo "kitkat") - repo_name=$(echo "Android Open Kang Project") + repo_name=$(echo $REPOSAOKP) repo_url=$(echo "http://github.com/AOKP/platform_manifest.git") 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 "Android Open Source Project 4.3") + 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") - repo_name=$(echo "Android Open Source Project 4.4") + 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") fi @@ -53,25 +53,25 @@ if [ $repodefine == "carbon" ]; then export SCRIPT_REPO=$(echo "carbon") export REPO_PLATFORM=$(echo "kitkat") repo_branch=$(echo "kk") - repo_name=$(echo "Carbon") + repo_name=$(echo $REPOSCARBON) repo_url=$(echo "http://github.com/CarbonDev/android.git") 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 "Cyanogenmod 10.2") + 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") - repo_name=$(echo "Cyanogenmod 11") + 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") fi @@ -80,7 +80,7 @@ if [ $repodefine == "evervolv" ]; then export SCRIPT_REPO=$(echo "evervolv") export REPO_PLATFORM=$(echo "kitkat") repo_branch=$(echo "kitkat") - repo_name=$(echo "Evervolv") + repo_name=$(echo $REPOSEV) repo_url=$(echo "http://github.com/Evervolv/android.git") manifest_name=$(echo "default.xml") fi @@ -89,7 +89,7 @@ if [ $repodefine == "omni" ]; then export SCRIPT_REPO=$(echo "omni") export REPO_PLATFORM=$(echo "kitkat") repo_branch=$(echo "android-4.4") - repo_name=$(echo "omnirom") + repo_name=$(echo $REPOSOMNI) repo_url=$(echo "http://github.com/omnirom/android.git") manifest_name=$(echo "default.xml") fi @@ -98,7 +98,7 @@ if [ $repodefine == "pacman" ]; then export SCRIPT_REPO=$(echo "pacman") export REPO_PLATFORM=$(echo "kitkat") repo_branch=$(echo "pac-4.4") - repo_name=$(echo "PAC-man") + repo_name=$(echo $REPOSPACMAN) repo_url=$(echo "http://github.com/PAC-man/pacman.git") manifest_name=$(echo "default.xml") fi @@ -107,7 +107,7 @@ if [ $repodefine == "paranoid" ]; then export SCRIPT_REPO=$(echo "paranoid") export REPO_PLATFORM=$(echo "kitkat") repo_branch=$(echo "kitkat") - repo_name=$(echo "ParanoidAndroid") + repo_name=$(echo "$REPOSPARA") repo_url=$(echo "http://github.com/AOSPA/manifest.git") manifest_name=$(echo "default.xml") fi diff --git a/utility/retardedbabelfish b/utility/retardedbabelfish index 0e3fd47..f20818d 100755 --- a/utility/retardedbabelfish +++ b/utility/retardedbabelfish @@ -20,20 +20,18 @@ langselect () { echo " 1. English" # Spanish echo " 2. español" -# French -echo " 3. français" +# Russian +echo " 3. Русский" # German echo " 4. Deutsch" -# Italian -echo " 5. italiano" -# Japanese -echo " 6. 日本の" -# Korean -echo " 7. 한국의" -echo " 8. None of the above" +# Dutch +echo " 5. Nederlands" +# Brazilian Portuguese +echo " 6. Brazilian Portuguese" +echo " 7. None of the above" read answer -if [ ! "$answer" ] || ( echo $answer | grep -q [A-Za-z] ) || [ $answer -gt "8" ]; then +if [ ! "$answer" ] || ( echo $answer | grep -q [A-Za-z] ) || [ $answer -gt "7" ]; then echo "" echo $notproperselection read -p $entertocontinue done @@ -56,9 +54,9 @@ if [ $answer == "2" ]; then read -p "$entertocontinue" done fi -# French +# Russian if [ $answer == "3" ]; then - echo "fr" > $LOCAL/config/language + echo "ru" > $LOCAL/config/language echo "" echo $langsaved read -p "$entertocontinue" done @@ -71,31 +69,24 @@ if [ $answer == "4" ]; then echo $langsaved read -p "$entertocontinue" done fi - # Italian + +# Dutch if [ $answer == "5" ]; then - echo "it" > $LOCAL/config/language + echo "nl" > $LOCAL/config/language echo "" echo $langsaved read -p "$entertocontinue" done fi -# Japanese +# Brazilian Portuguese if [ $answer == "6" ]; then - echo "ja" > $LOCAL/config/language + echo "ptbr" > $LOCAL/config/language echo "" echo $langsaved read -p "$entertocontinue" done fi -# Korean if [ $answer == "7" ]; then - echo "ko" > $LOCAL/config/language - echo "" - echo $langsaved - read -p "$entertocontinue" done -fi - -if [ $answer == "8" ]; then clear echo "The Language You Want Is Not Supported!" @@ -138,17 +129,12 @@ if ( echo $LANG | grep -q "en_" ); then # Spanish elif ( echo $LANG | grep -q "es_" ); then langsaved=$( echo "Idioma guardado como español" ) - notproperselection=$( echo "No hiciste una adecuada selección, vuelve a intentarlo!" ) + notproperselection=$( echo "No hiciste una elección adecuada, vuelve a intentarlo!" ) entertocontinue=$( echo "Pulse Intro para continuar: " ) clear echo "Hemos detectado que su sistema está configurado para español" - echo "¿Es así como quieres la cocina rom que sea?" - - echo "" - echo "## Esto fue traducido usando Google Translate ##" - echo "## Póngase en contacto conmigo para hacerme saber" - echo "si se trataba de una buena traducción o no ##" + echo "¿Es así como quieres que sea la Cocina De Rom?" read -p "sí/no?" answer @@ -158,7 +144,7 @@ elif ( echo $LANG | grep -q "es_" ); then read -p "$entertocontinue" done elif [ "$answer" == "no" ] || [ "$answer" == "n" ]; then echo "" - echo "¿En qué idioma desea utilizar en su lugar?" + echo "¿Qué idioma desea utilizar en su lugar?" langselect else echo "" @@ -167,51 +153,69 @@ elif ( echo $LANG | grep -q "es_" ); then initlang fi # French -elif ( echo $LANG | grep -q "fr_" ); then - langsaved=$( echo "Langue enregistré en tant que français" ) - notproperselection=$( echo "Vous n'avez pas fait une sélection, essayez de nouveau!" ) - entertocontinue=$( echo "Appuyez sur Entrée pour continuer: " ) +## THIS NEEDS TO BE RETRANSLATED, USED GOOGLE TRANSLATE! ## +# elif ( echo $LANG | grep -q "fr_" ); then +# langsaved=$( echo "Langue enregistré en tant que français" ) +# notproperselection=$( echo "Vous n'avez pas fait une sélection, essayez de nouveau!" ) +# entertocontinue=$( echo "Appuyez sur Entrée pour continuer: " ) + +# clear +# echo "Nous avons détecté que votre système est configuré en français" +# echo "Est-ce la façon dont vous voulez la cuisine rom soit?" + +# read -p "oui/non?" answer + +# if [ "$answer" == "oui" ] || [ "$answer" == "o" ]; then +# echo "fr" > $LOCAL/config/language +# echo "" +# echo $langsaved +# read -p "$entertocontinue" done +# elif [ "$answer" == "non" ] || [ "$answer" == "n" ]; then +# echo "" +# echo "Quelle langue voulez-vous utiliser à la place?" +# langselect +# else +# echo "" +# echo $notproperselectioin +# read -p "$entertocontinue" done +# initlang +# fi +# Russian +elif ( echo $LANG | grep -q "ru_" ); then + langsaved=$( echo "Установлен русский язык" ) + notproperselection=$( echo "Вы не сделали выбор, попытайтесь ещё!" ) + entertocontinue=$( echo "Нажмите ввод для продолжения: " ) clear - echo "Nous avons détecté que votre système est configuré en français" - echo "Est-ce la façon dont vous voulez la cuisine rom soit?" - - echo "" - echo "## Cela a été traduit en utilisant Google Translate ##" - echo "## S'il vous plaît me contacter pour me faire savoir si" - echo "c'était une bonne traduction ou pas ##" + echo "Мы обнаружили, что Ваша система установлена на русский язык" + echo "Хотите, чтобы rom kitchen работала с этим языком?" - read -p "oui/non?" answer + read -p "да/нет?" answer - if [ "$answer" == "oui" ] || [ "$answer" == "o" ]; then - echo "fr" > $LOCAL/config/language + if [ "$answer" == "да" ] || [ "$answer" == "д" ]; then + echo "ru" > $LOCAL/config/language echo "" echo $langsaved read -p "$entertocontinue" done - elif [ "$answer" == "non" ] || [ "$answer" == "n" ]; then + elif [ "$answer" == "нет" ] || [ "$answer" == "н" ]; then echo "" - echo "Quelle langue voulez-vous utiliser à la place?" + echo "Какой язык Вы хотите использовать вместо этого?" langselect else echo "" - echo $notproperselectioin + echo $notproperselection read -p "$entertocontinue" done initlang fi # German elif ( echo $LANG | grep -q "de_" ); then - langsaved=$( echo "Die Sprache als Deutsch gespeichert" ) - notproperselection=$( echo "Sie haben eine richtige Auswahl treffen, versuchen Sie es erneut!" ) + langsaved=$( echo "Die Sprache Deutsch wurde gespeichert" ) + notproperselection=$( echo "Sie haben keine gültige Option gewählt, versuchen Sie es erneut!" ) entertocontinue=$( echo "Drücken Sie die Eingabetaste, um fortzufahren: " ) clear echo "Wir haben festgestellt, dass das System auf Deutsch eingestellt ist" - echo "Ist das, wie Sie wollen, dass die rom Küche zu sein?" - - echo "" - echo "## Dies wurde mit Hilfe von Google Translate übersetzt ##" - echo "## Bitte kontaktieren Sie mich, damit ich weiß, ob dies" - echo "eine gute Übersetzung ist oder nicht ##" + echo "Ist das die von Ihnen gewünschte Einstellung für das Kitchen?" read -p "ja/nein?" answer @@ -222,7 +226,7 @@ elif ( echo $LANG | grep -q "de_" ); then read -p "$entertocontinue" done elif [ "$answer" == "nein" ] || [ "$answer" == "n" ]; then echo "" - echo "Welche Sprache sprechen Sie stattdessen verwenden?" + echo "Welche Sprache möchten Sie stattdessen verwenden?" langselect else echo "" @@ -230,31 +234,26 @@ elif ( echo $LANG | grep -q "de_" ); then read -p "$entertocontinue" done initlang fi -# Italian -elif ( echo $LANG | grep -q "it_" ); then - langsaved=$( echo "Lingua salvato come italiano" ) - notproperselection=$( echo "Non hai fatto una selezione corretta, provare di nuovo!" ) - entertocontinue=$( echo "Premere Invio per continuare: " ) +# 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 "Abbiamo rilevato che il sistema è impostato su italiano" - echo "È questo come si desidera la cucina rom di essere?" - - echo "" - echo "## Questo è stato tradotto con Google Translate ##" - echo "## Vi prego di contattarmi per farmi sapere se" - echo "questa è stata una buona traduzione o no ##" + 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 "sì/no?" answer + read -p "ja/nee?" answer - if [ "$answer" == "sì" ] || [ "$answer" == "si" ] || [ "$answer" == "s" ]; then - echo "it" > $LOCAL/config/language + if [ "$answer" == "ja" ] || [ "$answer" == "j" ]; then + echo "nl" > $LOCAL/config/language echo "" echo $langsaved read -p "$entertocontinue" done - elif [ "$answer" == "no" ] || [ "$answer" == "n" ]; then + elif [ "$answer" == "nee" ] || [ "$answer" == "n" ]; then echo "" - echo "Che lingua che si desidera utilizzare, invece?" + echo "Welke taal wil je in de plaats gebruiken?" langselect else echo "" @@ -262,30 +261,27 @@ elif ( echo $LANG | grep -q "it_" ); then read -p "$entertocontinue" done initlang fi -# Japanese -elif ( echo $LANG | grep -q "ja_" ); then - langsaved=$( echo "日本人として保存言語" ) - notproperselection=$( echo "あなたが適切な選択をしなかった、もう一度試してみてください!" ) - entertocontinue=$( echo "Enterキーを押して続行します: " ) +# Brazilian Portuguese +## V 1.0 Translated by : Doublepranks ## +elif ( echo $LANG | grep -q "pt_BR" ); then + langsaved=$( echo "Idioma selecionado PT-BR" ) + notproperselection=$( echo "Comando invalido, tente novamente!" ) + entertocontinue=$( echo "Pressione enter para continuar: " ) clear - echo "私たちは、あなたのシステムが日本語に設定されていることを検出した" - echo "これは、ROMのキッチンになりたい方法です?" - - echo "" - echo "## これは、Googleが翻訳使用して翻訳されました ##" - echo "## これは良い翻訳したかどうか、私に知らせて、私に連絡してください ##" + echo "Idioma padrao detectado PT-BR" + echo "Usar idioma padrao do sistema?" - read -p "はい/いいえ?" answer + read -p "sim/nao?" answer - if [ "$answer" == "はい" ] || [ "$answer" == "h" ]; then - echo "ja" > $LOCAL/config/language + if [ "$answer" == "sim" ] || [ "$answer" == "s" ]; then + echo "ptbr" > $LOCAL/config/language echo "" echo $langsaved read -p "$entertocontinue" done - elif [ "$answer" == "いいえ" ] || [ "$answer" == "ī" ]; then + elif [ "$answer" == "nao" ] || [ "$answer" == "n" ]; then echo "" - echo "あなたが代わりに使用する言語たいですか?" + echo "What language do you want to use instead?" langselect else echo "" @@ -293,44 +289,102 @@ elif ( echo $LANG | grep -q "ja_" ); then read -p "$entertocontinue" done initlang fi +# Italian +## THIS NEEDS TO BE RETRANSLATED, USED GOOGLE TRANSLATE! ## +# elif ( echo $LANG | grep -q "it_" ); then +# langsaved=$( echo "Lingua salvato come italiano" ) +# notproperselection=$( echo "Non hai fatto una selezione corretta, provare di nuovo!" ) +# entertocontinue=$( echo "Premere Invio per continuare: " ) + +# clear +# echo "Abbiamo rilevato che il sistema è impostato su italiano" +# echo "È questo come si desidera la cucina rom di essere?" + +# read -p "sì/no?" answer + +# if [ "$answer" == "sì" ] || [ "$answer" == "si" ] || [ "$answer" == "s" ]; then +# echo "it" > $LOCAL/config/language +# echo "" +# echo $langsaved +# read -p "$entertocontinue" done +# elif [ "$answer" == "no" ] || [ "$answer" == "n" ]; then +# echo "" +# echo "Che lingua che si desidera utilizzare, invece?" +# langselect +# else +# echo "" +# echo $notproperselection +# read -p "$entertocontinue" done +# initlang +# fi +# Japanese +## THIS NEEDS TO BE RETRANSLATED, USED GOOGLE TRANSLATE! ## +# elif ( echo $LANG | grep -q "ja_" ); then +# langsaved=$( echo "日本人として保存言語" ) +# notproperselection=$( echo "あなたが適切な選択をしなかった、もう一度試してみてください!" ) +# entertocontinue=$( echo "Enterキーを押して続行します: " ) + +# clear +# echo "私たちは、あなたのシステムが日本語に設定されていることを検出した" +# echo "これは、ROMのキッチンになりたい方法です?" + +# read -p "はい/いいえ?" answer + +# if [ "$answer" == "はい" ] || [ "$answer" == "h" ]; then +# echo "ja" > $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 # Korean -elif ( echo $LANG | grep -q "ko_" ); then - langsaved=$( echo "한국어로 저장 언어" ) - notproperselection=$( echo "당신은 올바른 선택을하지 않았다, 다시 시도하십시오!" ) - entertocontinue=$( echo "계속하려면 Enter 키를 누르십시오: " ) - - clear - echo "우리는 당신의 시스템이 한국어로 설정되어 있음을 감지 한" - echo "이것은 당신이 롬 부엌이 원하는 방법인가?" - - echo "" - echo "## 이것은 구글 번역 사용하여 번역되었다 ##" - echo "## 이 안 좋은 번역이었다 또는 알려 주시기" - echo "위하여 저에게 연락하십시오 ##" - - read -p "예/아니오?" answer - - if [ "$answer" == "예" ] || [ "$answer" == "y" ]; then - echo "ko" > $LOCAL/config/language - echo "" - echo $langsaved - read -p "$entertocontinue" done - elif [ "$answer" == "아니오" ] || [ "$answer" == "a" ]; then - echo "" - echo "대신 사용하는 언어는 무엇할까요?" - langselect - else - echo "" - echo $notproperselection - read -p "$entertocontinue" done - initlang - fi +## THIS NEEDS TO BE RETRANSLATED, USED GOOGLE TRANSLATE! ## +# elif ( echo $LANG | grep -q "ko_" ); then +# langsaved=$( echo "한국어로 저장 언어" ) +# notproperselection=$( echo "당신은 올바른 선택을하지 않았다, 다시 시도하십시오!" ) +# entertocontinue=$( echo "계속하려면 Enter 키를 누르십시오: " ) + +# clear +# echo "우리는 당신의 시스템이 한국어로 설정되어 있음을 감지 한" +# echo "이것은 당신이 롬 부엌이 원하는 방법인가?" + +# echo "" +# echo "## 이것은 구글 번역 사용하여 번역되었다 ##" +# echo "## 이 안 좋은 번역이었다 또는 알려 주시기" +# echo "위하여 저에게 연락하십시오 ##" + +# read -p "예/아니오?" answer + +# if [ "$answer" == "예" ] || [ "$answer" == "y" ]; then +# echo "ko" > $LOCAL/config/language +# echo "" +# echo $langsaved +# read -p "$entertocontinue" done +# elif [ "$answer" == "아니오" ] || [ "$answer" == "a" ]; then +# echo "" +# echo "대신 사용하는 언어는 무엇할까요?" +# langselect +# else +# echo "" +# echo $notproperselection +# read -p "$entertocontinue" done +# initlang +# fi else langsaved=$( echo "Language saved as English" ) notproperselection=$( echo "You did not make a proper selection, try again!" ) entertocontinue=$( echo "Press Enter to continue: " ) clear + echo "Your language is either not supported or" echo "We could not detect what language your system uses" echo "Default setting is english, will this be ok?" read -p "yes/no?" answer @@ -354,31 +408,49 @@ fi } +if [ ! "$INIT" ]; then + export LOCAL=$( cd $(dirname $0) && cd .. && pwd ) +fi + if ( ! find $LOCAL/config/language &> /dev/null ); then + mkdir -p $LOCAL/config initlang fi # English if ( cat $LOCAL/config/language | grep -q "en" ); then - . mahimahi + . $LOCAL/translation/mahimahi # Spanish elif ( cat $LOCAL/config/language | grep -q "es" ); then - . spanishmackerel + . $LOCAL/translation/spanishmackerel # French +## NOT ACTIVE elif ( cat $LOCAL/config/language | grep -q "fr" ); then - . europeanpilchard + . $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 - . rabbitfish + . $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 # Italian +## NOT ACTIVE elif ( cat $LOCAL/config/language | grep -q "it" ); then - . italianbleak + . $LOCAL/translation/italianbleak # Japanese +## NOT ACTIVE elif ( cat $LOCAL/config/language | grep -q "ja" ); then - . bluefintuna + . $LOCAL/translation/bluefintuna # Korean +## NOT ACTIVE elif ( cat $LOCAL/config/language | grep -q "ko" ); then - . koreanlamprey + . $LOCAL/translation/koreanlamprey else clear diff --git a/utility/scriptmakir b/utility/scriptmakir index d0d7dcb..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 @@ -301,17 +302,20 @@ cat << EOF > $LOCAL/../redeemer # See the License for the specific language governing permissions and # limitations under the License. -echo "Redeemer is running!" +echo $SCRIPTMAKIRREDEEMER echo "" -echo "Removing Kitchen" +echo $SCRIPTMAKIRRMKITCHEN echo "" rm -rf .repo rm -rf .scripts rm -f swordkitchen.sh -echo "Settng Up Kitchen" +echo $SCRIPTMAKIRSETUPKITCHEN echo "" repo init -u http://github.com/TeamKeyblade/kitchen_manifest.git -b master repo sync +echo $COMPLETEDMESSAGE +read -p "$ENTERTOCONTINUE" done +rm -f $LOCAL/../redeemer EOF chmod a+x $LOCAL/../redeemer @@ -340,17 +344,17 @@ START if [ $AUTHOR == "destroyer" ]; then cat << TITLE >> $LOCAL/../$AUTHOR -echo "Destroyer is running!" +echo $SCRIPTMAKIRDESTROYER TITLE elif [ $AUTHOR == "destroyerofworlds" ]; then cat << TITLE >> $LOCAL/../$AUTHOR -echo "Destroyer of Worlds is running!" +echo $SCRIPTMAKIRDESTROYEROFWORLDS TITLE fi cat << BODY >> $LOCAL/../$AUTHOR echo "" -echo "Removing Kitchen" +echo $SCRIPTMAKIRRMKITCHEN echo "" rm -rf .repo rm -rf \$LOCAL @@ -359,15 +363,15 @@ BODY if [ $AUTHOR == "destroyerofworlds" ]; then cat << DESTROYREPOS >> $LOCAL/../$AUTHOR -echo "Removing Repository folder" +echo $SCRIPTMAKIRRMREPO echo "" rm -rf \$REPOS DESTROYREPOS fi cat << EOF >> $LOCAL/../$AUTHOR -echo "Finished! Press Enter to exit" -read done +echo $COMPLETEDMESSAGE +read -p "$ENTERTOCONTINUE" done rm -f $LOCAL/../$AUTHOR EOF