summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--po/fr.po27
1 files changed, 13 insertions, 14 deletions
diff --git a/po/fr.po b/po/fr.po
index 97cad5cc..a66fd143 100644
--- a/po/fr.po
+++ b/po/fr.po
@@ -1136,8 +1136,7 @@ msgstr " --parallel - urpmi distribué sur plusieurs machines d'alias.\n"
#, c-format
msgid " --root - use another root for rpm installation.\n"
msgstr ""
-" --root - utiliser un autre répertoire racine pour l'installation "
-"du rpm.\n"
+" --root - utiliser un autre répertoire racine pour l'installation.\n"
#: ../urpme:47
#, c-format
@@ -1471,8 +1470,8 @@ msgid ""
" --searchmedia - use only the given media to search requested (or updated) "
"packages.\n"
msgstr ""
-" --searchmedia - utiliser seulement le média spécifié pour rechercher (ou "
-"mettre à jour) les paquetages\n"
+" --searchmedia - utiliser seulement le média spécifié pour rechercher\n"
+" (ou mettre à jour) les paquetages\n"
#: ../urpmi:82
#, c-format
@@ -1494,8 +1493,8 @@ msgid ""
" --no-uninstall - never ask to uninstall a package, abort the "
"installation.\n"
msgstr ""
-" --no-uninstall - ne jamais demander de désinstallation, plutôt annuler "
-"l'installation.\n"
+" --no-uninstall - ne jamais demander de désinstallation, plutôt annuler\n"
+" l'installation.\n"
#: ../urpmi:86 ../urpmq:52
#, c-format
@@ -1504,8 +1503,8 @@ msgid ""
" packages that leads to remove.\n"
msgstr ""
" --keep - conserve les paquetages existants si possible, rejette "
-"les paquetages demandés\n"
-" qui nécessitent des désinstallations.\n"
+"les\n"
+" paquetages demandés qui nécessitent des désinstallations.\n"
#: ../urpmi:88
#, c-format
@@ -1672,8 +1671,8 @@ msgid ""
" --more-choices - when several packages are found, propose more choices\n"
" than the default.\n"
msgstr ""
-" --more-choices - lorsque beaucoup de paquetages sont trouvés, propose plus "
-"de choix que par defaut.\n"
+" --more-choices - lorsque beaucoup de paquetages sont trouvés, proposer plus\n"
+" de choix que par defaut.\n"
#: ../urpmi:127 ../urpmi.addmedia:75 ../urpmi.update:41
#, c-format
@@ -1686,8 +1685,8 @@ msgstr ""
#, c-format
msgid " --strict-arch - upgrade only packages with the same architecture.\n"
msgstr ""
-" --strict-arch - mettre à jour uniquement les paquetages avec la même "
-"architecture.\n"
+" --strict-arch - mettre à jour uniquement les paquetages avec la même\n"
+" architecture.\n"
#: ../urpmi:129 ../urpmq:77
#, c-format
@@ -2329,8 +2328,8 @@ msgstr " -l - liste les fichiers d'un paquetage.\n"
msgid ""
" -P - do not search in provides to find package (default).\n"
msgstr ""
-" -P - ne pas chercher dans les apports pour trouver un "
-"paquetage (par défaut).\n"
+" -P - ne pas chercher dans les apports pour trouver un\n"
+" paquetage (par défaut).\n"
#: ../urpmq:85
#, c-format
id='n141' href='#n141'>141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391
#!/bin/bash

setterm -powersave off
setterm -blank 0

if [ -r ./restore-image-lib.sh ]; then
	. ./restore-image-lib.sh
elif [ -r /usr/lib/restore-image-lib.sh ]; then
	. /usr/lib/restore-image-lib.sh
fi

export PATH="/sbin:/bin:/usr/sbin:/usr/bin"

mnt_dir="/tmp/mnt"
restore_media="/tmp/media"
images_dir="$restore_media/images"
images="$images_dir/list"
images_config="$images_dir/config"
image=""
win32_part_dev=
win32_part_type=
win32_part_new_size=

function read_config()
{
    if [ -r "$images_config" ]; then
        . $images_config
    fi
}

function image_list()
{
	list=$(cat $images | awk -F',' \
		'{ print $1 " " $2 " " $4 }')

	echo $list
}

function image_file()
{
	country="$1"

	file=$(grep ^$country $images | awk -F',' '{ print $3 }')

	echo $file
}

function welcome()
{
	while true; do
		clear
		msg="\n       Welcome to $TITLE\n\
\nThe following images were found, select one:\n "
		opcao=$(dialog --backtitle "$BACKTITLE" --title "$TITLE" \
				--stdout --radiolist "$msg" 0 0 0 \
				$(image_list))

		if [ "$?" != "0" ]; then
			_yesno "\nInterrupt installation?\n "
			if [ "$?" = "0" ]; then
				_shutdown
			fi
		else
			if [ -z "$opcao" ]; then
				continue
			else
				image=$(image_file $opcao)
				break
			fi
		fi
	done

	# disable kernel messages in the console
	echo "1 4 1 7" > /proc/sys/kernel/printk
}

function install_warning()
{
	if [ -n "${win32_part_dev}" ]; then
	    warn_msg="Windows installation detected.\nWe will set it up as dual boot. \
You may lose some data.\nPlease backup before proceeding."
	else
	    warn_msg="WARNING: This process will erase all data in this machine, \
do you want to continue?"
	fi

	clear
	_yesno "\n$warn_msg\n"
	if [ "$?" != "0" ]; then
		_shutdown
	fi
}

function detect_root()
{
	inst_source_dev=$(sed '\|'$restore_media'|!d;s/[0-9] .*$//;s/^.*\///' /proc/mounts)
	devices=$(grep "^ .*[^0-9]$" < /proc/partitions | grep -v ${inst_source_dev} | awk '$3 > '$MIN_DISKSIZE' { print $4,$3 }')

	if [ -z "${devices}" ]; then
		exit 1
	fi

	devs_found=$(($(echo $devices | wc -w)/2))

	root_data=$(detect_win32 ${inst_source_dev})

	if [ -z "${root_data}" ]; then
		if [ "$devs_found" -gt "1" ]; then
 			if [ -n "${inst_source_dev}" ]; then
 				opcao=$(dialog --backtitle "$BACKTITLE" --title "$TITLE" --stdout --menu 'Choose one of the detected devices to restore to (check the blocks size column first):' 8 50 0 $devices )
 				if [ "$?" != "0" ]; then