149 lines
3.7 KiB
Plaintext
149 lines
3.7 KiB
Plaintext
# rpi-image-tools.
|
|
# Copyright (C) 2017 Mike Ray
|
|
# This file is distributed under the same license as the PACKAGE package.
|
|
# Mike Ray <mike.ray@btinternet.com>, 2017.
|
|
#
|
|
#, fuzzy
|
|
msgid ""
|
|
msgstr ""
|
|
"Project-Id-Version: 0.1.0alpha\n"
|
|
"Report-Msgid-Bugs-To: \n"
|
|
"POT-Creation-Date: 2017-09-21 17:22+0100\n"
|
|
"PO-Revision-Date: 2017-MO-DA HO:MI+ZONE\n"
|
|
"Last-Translator: Mike Ray <mike.ray@btinternet.com>\n"
|
|
"Language-Team: LANGUAGE <LL@li.org>\n"
|
|
"Language: English (en)\n"
|
|
"MIME-Version: 1.0\n"
|
|
"Content-Type: text/plain; charset=UTF-8\n"
|
|
"Content-Transfer-Encoding: 8bit\n"
|
|
|
|
#: rpi-image-tool:13
|
|
msgid "tool_usage"
|
|
msgstr ""
|
|
"Usage: rpi-image-tool {options ...}\\n"
|
|
"\\n"
|
|
"Options:\\n"
|
|
"\\n"
|
|
" -C <work_dir>\\n"
|
|
"\\n"
|
|
" Clean-up a previous run, unmounting partitions, removing\\n"
|
|
" working files (not the image file or the working directory.\\n"
|
|
"\\n"
|
|
" -D <device>\\n"
|
|
"\\n"
|
|
" Mount the partitions on the SD card or other device.\\n"
|
|
"\\n"
|
|
" -M <image_file>\\n"
|
|
"\\n"
|
|
" Mount the partitions of an existing image file.\\n"
|
|
"\\n"
|
|
" -N <image_file>\\n"
|
|
"\\n"
|
|
" Create, partition and mount a new (empty) image file.\\n"
|
|
"\\n"
|
|
" Only one of the above uppercase options is permitted in any single run.\\n"
|
|
"\\n"
|
|
" -h\\n"
|
|
"\\n"
|
|
" Display this help text and exit.\\n"
|
|
"\\n"
|
|
" -c <integer_block_count>\\n"
|
|
"\\n"
|
|
" The number of blocks to write to a new image file. See -z below.\\n"
|
|
" Only relevant when using the -N option to generate a new image.\\n"
|
|
"\\n"
|
|
" -s <integer_split>\\n"
|
|
"\\n"
|
|
" The size of the FAT16) boot partition in blocks. See -z below for block size.\\n"
|
|
" Only relevant when using the -N option to create a new image.\\n"
|
|
" Default = 64\\n"
|
|
"\\n"
|
|
" -w <working_directory>\\n"
|
|
"\\n"
|
|
" The working directory which will contain the mount-point and other working files\\n"
|
|
" (not including the .img file unless the working directory is prefixed in the -N option.\\n"
|
|
"\\n"
|
|
" -z <block_size>\\n"
|
|
"\\n"
|
|
" The block size.\\n"
|
|
" Only relevant when using the -N option to create a new image.\\n"
|
|
" Permitted values are '1M' or '1MB'\\n"
|
|
" Default = 1M\\n"
|
|
"\\n"
|
|
"Notes:\\n"
|
|
"\\n"
|
|
"The script assumes that:\\n"
|
|
"\\n"
|
|
" 1. The first partition is the boot partition.\\n"
|
|
" 2. The second partition is the root partition.\\n"
|
|
"\\n"
|
|
"If the supplied working directory is 'work', the mounts will be as follows:\\n"
|
|
"\\n"
|
|
" work/root (where the root partition is mounted)\\n"
|
|
" work/root/boot (where the boot partition is mounted)\\n"
|
|
"\\n"
|
|
"**IMPORTANT**\\n"
|
|
"\\n"
|
|
"There is *NO* paranoia checking to check the 2 partition rule is obeyed in any\\n"
|
|
"image file or device being created or mounted.\\n"
|
|
"\\n"
|
|
"Be very careful when specifying the device name to a -N run of this script.\\n"
|
|
"It uses 'dd' to generate the .img file and\\n"
|
|
"'dd' is silent and deadly if you pick the wrong device, for example your main\\n"
|
|
"hard-disk.\\n"
|
|
"\\n"
|
|
"You have been warned!\\n"
|
|
"\\n"
|
|
|
|
|
|
|
|
#: rpi-image-tool:24
|
|
#, sh-format
|
|
msgid "Script must be run as root, try: sudo $PROGNAME"
|
|
msgstr ""
|
|
|
|
#: rpi-image-tool:77
|
|
msgid "Invalid option"
|
|
msgstr ""
|
|
|
|
#: rpi-image-tool:83
|
|
#, sh-format
|
|
msgid "Option - $OPTARG requires an argument."
|
|
msgstr ""
|
|
|
|
#: rpi-image-tool:91
|
|
msgid "Work directory not set"
|
|
msgstr ""
|
|
|
|
#: rpi-image-tool:94
|
|
msgid "Image file name not set"
|
|
msgstr ""
|
|
|
|
#: rpi-image-tool:95 rpi-image-tool:100
|
|
msgid "Root mount-point not set"
|
|
msgstr ""
|
|
|
|
#: rpi-image-tool:99
|
|
msgid "Device name not set"
|
|
msgstr ""
|
|
|
|
#: rpi-image-tool:104
|
|
msgid "Block count not set"
|
|
msgstr ""
|
|
|
|
#: rpi-image-tool:105
|
|
msgid "Block size not set"
|
|
msgstr ""
|
|
|
|
#: rpi-image-tool:106
|
|
msgid "Split size not set"
|
|
msgstr ""
|
|
|
|
#: rpi-image-sync:11
|
|
msgid "sync_usage"
|
|
msgstr ""
|
|
|
|
#: backuppi:12
|
|
msgid "backup_usage"
|
|
msgstr ""
|