summaryrefslogtreecommitdiffstats
path: root/core/l10n/mr.json
blob: 43fce52c5cfa35170cfbdafe2ee9a2934cf7876c (plain)
1
2
3
4
5
6
{ "translations": {
    "_{count} file conflict_::_{count} file conflicts_" : ["",""],
    "_download %n file_::_download %n files_" : ["",""],
    "_{count} search result in other places_::_{count} search results in other places_" : ["",""]
},"pluralForm" :"nplurals=2; plural=(n != 1);"
}
ass="k">else path=$(dirname "$entryFile") file=$(basename $entryFile) set -e cd $path echo "Entering $path" # support for multiple chunks for chunk in *$file; do # Backup original file backupFile="$chunk.orig" echo "Backing up $chunk to $backupFile" cp $chunk $backupFile done # Make the app echo "Making $file" cd ../ npm --silent install npm run --silent build # Reset cd $root cd $path # support for multiple chunks for chunk in *$file; do # Compare build files echo "Comparing $chunk to the original" backupFile="$chunk.orig" if ! diff -q $chunk $backupFile &>/dev/null then echo "$chunk build is NOT up-to-date! Please send the proper production build within the pull request" cat $HOME/.npm/_logs/*.log exit 2 else echo "$chunk build is up-to-date" fi done fi