Refactor bitmap directories and master images for ARM work.
This change moves the old bitmaps (Mario, Alex, ZGB) and their supporting scripts into a subdirectory, and creates a new set of images at 1366x768, in PNG format. This is preparation for providing a complete set of localized BIOS screens to use as the master for all new platforms. The plan is that these master images will be scaled, cropped, and converted into the correct formats for each target platform, and those binary bmpblocks saved in their own package. Only if a translation changes should we need to regenerate the bmpblocks. These new images do NOT (yet) include locales that cannot be rendered correctly by ImageMagick, and not all of them have been fully vetted by the localization team. BUG=chromium-os:13037 TEST=none Change-Id: Ic25832aad3c6cc36879db204c2579395014af311 Reviewed-on: http://gerrit.chromium.org/gerrit/5508 Reviewed-by: Hung-Te Lin <hungte@chromium.org> Reviewed-by: Tom Wai-Hong Tam <waihong@chromium.org> Tested-by: Bill Richardson <wfrichar@chromium.org> Reviewed-by: Bill Richardson <wfrichar@chromium.org>
@@ -1,14 +1,17 @@
|
|||||||
This directory contains examples of the new-style BIOS bitmaps, and a simple
|
This directory contains the sources for the new-style BIOS bitmaps, and a
|
||||||
(and ugly) tool to view the configuration file that describes how each
|
simple (and ugly) tool to view the configuration file that describes how
|
||||||
screen is displayed.
|
each screen is displayed.
|
||||||
|
|
||||||
Note:
|
Note:
|
||||||
|
|
||||||
|
Due to continuing improvements and tweaks, there have been several different
|
||||||
|
formats used for the BIOS bitmaps.
|
||||||
|
|
||||||
Because the bitmap images and display code is part of the Read-Only BIOS,
|
Because the bitmap images and display code is part of the Read-Only BIOS,
|
||||||
back-porting any new bitmaps to older devices is not possible.
|
back-porting any new bitmaps to older devices is not possible.
|
||||||
|
|
||||||
|
|
||||||
Old-style, unversioned bitmaps (used in Cr-48):
|
Old-style, unversioned bitmaps. Used in Mario / Cr-48.
|
||||||
|
|
||||||
In the Cr-48 BIOS there are four BIOS screens that may be presented to the
|
In the Cr-48 BIOS there are four BIOS screens that may be presented to the
|
||||||
user. Each contains a graphic, a URL, and some informative text. The screens
|
user. Each contains a graphic, a URL, and some informative text. The screens
|
||||||
@@ -20,29 +23,34 @@ BIOS is compiled. The result is an opaque blob that cannot be viewed or
|
|||||||
edited with linux-based tools.
|
edited with linux-based tools.
|
||||||
|
|
||||||
|
|
||||||
Version 1.0, new-style bitmaps (used in Alex):
|
Version 1.0, new-style bitmaps. Used in Alex / Samsung Series 5.
|
||||||
|
|
||||||
The BIOSes will continue to display the same basic screens, but it uses a
|
The BIOS continues to display the same basic screens, but it uses a
|
||||||
different format. Each screen has separate bitmaps for the basic graphic,
|
different format internally (which we call the bmpblock). Each screen has
|
||||||
the URL, and the informative text, and is displayed by rendering each
|
separate bitmaps for the basic graphic, the URL, and the informative text,
|
||||||
component in order. This allows us to modify and replace any bitmap (most
|
and the screen is displayed by rendering each component in order. This
|
||||||
frequently the HWID), using standard command-line tools such as imagemagick.
|
allows us to modify and replace any bitmap (most frequently the HWID), using
|
||||||
Compositing each screen in this way also means that we can easily provide
|
standard command-line linux tools such as imagemagick. Compositing each
|
||||||
localized BIOS screens or custom messages.
|
screen in this way also means that we can easily provide localized BIOS
|
||||||
|
screens or custom messages. The BIOS rotates through the localizations by
|
||||||
|
pressing the arrow keys when any screen is displayed.
|
||||||
|
|
||||||
|
|
||||||
Version 1.1 (used in ZGB):
|
Version 1.1. Used in ZGB / Acer AC700.
|
||||||
|
|
||||||
This is essentially the same as version 1.0, except that the ASCII HWID
|
This is essentially the same as version 1.0, except that the ASCII HWID
|
||||||
string can be rendered directly. In the screen description, the magic image
|
string can be rendered directly by the BIOS instead of as a bitmap. In the
|
||||||
name "$HWID" (or "$HWID.rtol") indicates that the ASCII HWID value should be
|
screen description, the magic image name "$HWID" (or "$HWID.rtol" for a
|
||||||
displayed instead of an actual image. This means that we only need to
|
right-justified placement) indicates that the ASCII HWID value should be
|
||||||
generate one bmpblock for all locales, since the HWID string can be changed
|
displayed at the given coordinates instead of a bitmap image. This means
|
||||||
at the factory using "gbb_utility".
|
that we only need to generate one bmpblock for all locales, since the ASCII
|
||||||
|
HWID string can be changed at the factory using "gbb_utility". The
|
||||||
|
last-displayed locale is stored in nvram, so it's sticky across reboots. The
|
||||||
|
factory process sets the default locale to the appropriate region.
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
Manual instructions:
|
Instructions:
|
||||||
|
|
||||||
The bmpblk_utility reads a config file and produces a binary bmpblock. The
|
The bmpblk_utility reads a config file and produces a binary bmpblock. The
|
||||||
config file lists the individual bitmaps and describes where to place each
|
config file lists the individual bitmaps and describes where to place each
|
||||||
@@ -50,29 +58,29 @@ one when displaying each screen. The bmpblock is then written into the BIOS
|
|||||||
image with the gbb_utility. The bitmap_viewer program lets you view the
|
image with the gbb_utility. The bitmap_viewer program lets you view the
|
||||||
composited screens as described by the config file.
|
composited screens as described by the config file.
|
||||||
|
|
||||||
* First, get the bitmap_viewer working. This is best used OUTSIDE of the
|
* First, get the bitmap_viewer working. This is best done OUTSIDE of the
|
||||||
chroot. Test it by changing to the scripts/newbitmaps/images/1280x800
|
chroot. Test it by changing to the scripts/newbitmaps/images/16x9_generic
|
||||||
directory and running "../../bitmap_viewer hwid_unknown.yaml". You may
|
directory and running "../../bitmap_viewer DEFAULT.yaml". You may
|
||||||
need to install some additional packages. For example, on Ubuntu you'll
|
need to install some additional packages. For example, on Ubuntu you'll
|
||||||
probably need to install the "python-yaml" and "python-wxgtk2.8" packages.
|
probably need to install the "python-yaml" and "python-wxgtk2.8" packages.
|
||||||
|
|
||||||
* Now make changes to the hwid_unknown.yaml config file, and use the
|
* Now make changes to the DEFAULT.yaml config file, and use bitmap_viewer to
|
||||||
bitmap_viewer to see how the layout looks. Hit Ctrl-R in the small window
|
see how the layout looks. Hit Ctrl-R in the small window to reload the
|
||||||
to reload the config file without restarting.
|
config file without restarting.
|
||||||
|
|
||||||
* The bitmap_viewer can display images in several different formats, but the
|
* The bitmap_viewer tool can display images in several different formats,
|
||||||
BIOS is very limited (and may differ between x86 and ARM). For x86, ensure
|
but the BIOS is very limited (and may differ between x86 and ARM). For
|
||||||
that you're using the proper format by converting any new bitmaps with a
|
x86, ensure that you're using the proper format by converting any new
|
||||||
command like this:
|
bitmaps with a command like this:
|
||||||
|
|
||||||
convert IN.bmp -colors 256 -compress none -alpha off OUT.bmp
|
convert IN.bmp -colors 256 -compress none -alpha off OUT.bmp
|
||||||
|
|
||||||
* When you have the screens tweaked to your satisfaction, generate the
|
* When you have the screens tweaked to your satisfaction, generate the
|
||||||
binary bmpblock to embed into the BIOS.
|
binary bmpblock to embed into the BIOS.
|
||||||
|
|
||||||
bmpblk_utility -c hwid_unknown.yaml bmpblock.bin
|
bmpblk_utility -c DEFAULT.yaml bmpblock.bin
|
||||||
|
|
||||||
* Use the gbb_utility to modify the BIOS to contain our new set of bitmaps.
|
* Use the gbb_utility to modify the BIOS to contain this new set of bitmaps.
|
||||||
|
|
||||||
NOTE: These commands are run (as root) on the device under test!
|
NOTE: These commands are run (as root) on the device under test!
|
||||||
|
|
||||||
@@ -87,7 +95,7 @@ composited screens as described by the config file.
|
|||||||
|
|
||||||
flashrom -p internal:bus=spi -r bios.bin
|
flashrom -p internal:bus=spi -r bios.bin
|
||||||
|
|
||||||
Put our bmpblock in our copy of the BIOS
|
Put the new bmpblock in the copy of the BIOS
|
||||||
|
|
||||||
gbb_utility -s -b bmpblock.bin bios.bin
|
gbb_utility -s -b bmpblock.bin bios.bin
|
||||||
|
|
||||||
@@ -109,90 +117,5 @@ composited screens as described by the config file.
|
|||||||
bmpblk_utility -x -d /SOME/SCRATCH/DIR bmpblock.bin
|
bmpblk_utility -x -d /SOME/SCRATCH/DIR bmpblock.bin
|
||||||
|
|
||||||
Once you've unpacked it you can use the bitmap_viewer on the unpacked yaml
|
Once you've unpacked it you can use the bitmap_viewer on the unpacked yaml
|
||||||
file to see what it looks like. There's not (yet) a single tool that just
|
file to see what it looks like. There's not (yet) a single tool that
|
||||||
displays the raw binary.
|
directly displays the raw binary.
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
Automated instructions:
|
|
||||||
|
|
||||||
If you've got a LOT of HWIDs to generate, this is one way to do it. You can
|
|
||||||
do this entirely outside of the chroot if you've built vboot_reference
|
|
||||||
natively and put the resulting binaries into your $PATH.
|
|
||||||
|
|
||||||
|
|
||||||
* First, we generate the strings and bitmaps for each HWID:
|
|
||||||
|
|
||||||
cd ./strings
|
|
||||||
mkdir ./hwids
|
|
||||||
cd ./hwids
|
|
||||||
|
|
||||||
Put the list of new HWIDs strings into a file 'w':
|
|
||||||
|
|
||||||
SAMS ALEX ALPHA-US
|
|
||||||
SAMS ALEX ALPHA-GB
|
|
||||||
SAMS ALEX ALPHA-FR
|
|
||||||
SAMS ALEX ALPHA-DE
|
|
||||||
SAMS ALEX ALPHA-ES
|
|
||||||
|
|
||||||
You need to generate the HWID checksum numbers. I wrote this script, named
|
|
||||||
'hwidsum', to append the digits to the string:
|
|
||||||
|
|
||||||
#!/usr/bin/python
|
|
||||||
import sys,zlib;
|
|
||||||
me=' '.join(sys.argv[1:]);
|
|
||||||
print me, ('%04u'%(zlib.crc32(me)&0xffffffffL))[-4:]
|
|
||||||
|
|
||||||
|
|
||||||
Run another script like this to generate the checksums for the whole list:
|
|
||||||
|
|
||||||
#!/bin/bash
|
|
||||||
while read STUFF; do
|
|
||||||
full=$(hwidsum "$STUFF")
|
|
||||||
str=$(echo "HWID ${full}" | sed 's/ /_/g').txt
|
|
||||||
echo "$full" > "$str"
|
|
||||||
done < w
|
|
||||||
|
|
||||||
|
|
||||||
And now convert the text files into bmps:
|
|
||||||
|
|
||||||
../text_to_bmp *.txt
|
|
||||||
|
|
||||||
|
|
||||||
* Move those HWID bmp files to the appropriate images directory:
|
|
||||||
|
|
||||||
pushd ../../images/1280x800/
|
|
||||||
mkdir ./hwids
|
|
||||||
mv ~1/*.bmp ./hwids/
|
|
||||||
|
|
||||||
|
|
||||||
* Generate the yaml files for all these new HWIDs:
|
|
||||||
|
|
||||||
../make_yaml_from_hwids hwids/*.bmp
|
|
||||||
|
|
||||||
|
|
||||||
* Look at them with the bitmap viewer if you want.
|
|
||||||
|
|
||||||
../../bitmap_viewer hwid_sams_alex_alpha-us_4504.yaml
|
|
||||||
|
|
||||||
|
|
||||||
* Convert the yaml files into bitmap blobs:
|
|
||||||
|
|
||||||
for i in *.yaml; do bmpblk_utility -c $i ${i%.yaml}.bin; done
|
|
||||||
|
|
||||||
|
|
||||||
* Test the bitmaps on a running system:
|
|
||||||
|
|
||||||
As root on an Alex, for example, you'd say something like this:
|
|
||||||
|
|
||||||
stop update-engine
|
|
||||||
cd /mnt/stateful_partition
|
|
||||||
flashrom -p internal:bus=spi -r bios.rom
|
|
||||||
scp USER@HOST:/SOME/PATH/TO/hwid_sams_alex_alpha-us_4504.bin .
|
|
||||||
gbb_utility -s \
|
|
||||||
-i 'SAMS ALEX ALPHA-US 4504' \
|
|
||||||
-b hwid_sams_alex_alpha-us_4504.bin
|
|
||||||
bios.rom newbios.rom
|
|
||||||
flashrom -p internal:bus=spi -w newbios.rom
|
|
||||||
|
|
||||||
Then reboot and see what happens.
|
|
||||||
|
|||||||
1401
scripts/newbitmaps/images/DEFAULT.yaml
Normal file
BIN
scripts/newbitmaps/images/Devmode.png
Normal file
|
After Width: | Height: | Size: 17 KiB |
BIN
scripts/newbitmaps/images/Insert.png
Normal file
|
After Width: | Height: | Size: 14 KiB |
3
scripts/newbitmaps/images/README
Normal file
@@ -0,0 +1,3 @@
|
|||||||
|
These are the official images from which the BIOS bitmaps are derived. If
|
||||||
|
changes are needed, send these graphical images to the localization experts
|
||||||
|
for review. Rendering UTF text into the correct images is not 100% reliable.
|
||||||
BIN
scripts/newbitmaps/images/Remove.png
Normal file
|
After Width: | Height: | Size: 15 KiB |
BIN
scripts/newbitmaps/images/URL.png
Normal file
|
After Width: | Height: | Size: 38 KiB |
BIN
scripts/newbitmaps/images/Yuck.png
Normal file
|
After Width: | Height: | Size: 13 KiB |
BIN
scripts/newbitmaps/images/hwid_unknown.png
Normal file
|
After Width: | Height: | Size: 14 KiB |
BIN
scripts/newbitmaps/images/localized_images/ar/devmode.png
Normal file
|
After Width: | Height: | Size: 44 KiB |
BIN
scripts/newbitmaps/images/localized_images/ar/insert.png
Normal file
|
After Width: | Height: | Size: 34 KiB |
BIN
scripts/newbitmaps/images/localized_images/ar/model.png
Normal file
|
After Width: | Height: | Size: 4.3 KiB |
BIN
scripts/newbitmaps/images/localized_images/ar/remove.png
Normal file
|
After Width: | Height: | Size: 26 KiB |
BIN
scripts/newbitmaps/images/localized_images/ar/yuck.png
Normal file
|
After Width: | Height: | Size: 39 KiB |
BIN
scripts/newbitmaps/images/localized_images/bg/devmode.png
Normal file
|
After Width: | Height: | Size: 67 KiB |
BIN
scripts/newbitmaps/images/localized_images/bg/insert.png
Normal file
|
After Width: | Height: | Size: 43 KiB |
BIN
scripts/newbitmaps/images/localized_images/bg/model.png
Normal file
|
After Width: | Height: | Size: 4.4 KiB |
BIN
scripts/newbitmaps/images/localized_images/bg/remove.png
Normal file
|
After Width: | Height: | Size: 39 KiB |
BIN
scripts/newbitmaps/images/localized_images/bg/yuck.png
Normal file
|
After Width: | Height: | Size: 39 KiB |
BIN
scripts/newbitmaps/images/localized_images/ca/devmode.png
Normal file
|
After Width: | Height: | Size: 45 KiB |
BIN
scripts/newbitmaps/images/localized_images/ca/insert.png
Normal file
|
After Width: | Height: | Size: 42 KiB |
BIN
scripts/newbitmaps/images/localized_images/ca/model.png
Normal file
|
After Width: | Height: | Size: 4.1 KiB |
BIN
scripts/newbitmaps/images/localized_images/ca/remove.png
Normal file
|
After Width: | Height: | Size: 31 KiB |
BIN
scripts/newbitmaps/images/localized_images/ca/yuck.png
Normal file
|
After Width: | Height: | Size: 46 KiB |
BIN
scripts/newbitmaps/images/localized_images/cs/devmode.png
Normal file
|
After Width: | Height: | Size: 47 KiB |
BIN
scripts/newbitmaps/images/localized_images/cs/insert.png
Normal file
|
After Width: | Height: | Size: 44 KiB |
BIN
scripts/newbitmaps/images/localized_images/cs/model.png
Normal file
|
After Width: | Height: | Size: 4.1 KiB |
BIN
scripts/newbitmaps/images/localized_images/cs/remove.png
Normal file
|
After Width: | Height: | Size: 40 KiB |
BIN
scripts/newbitmaps/images/localized_images/cs/yuck.png
Normal file
|
After Width: | Height: | Size: 49 KiB |
BIN
scripts/newbitmaps/images/localized_images/da/devmode.png
Normal file
|
After Width: | Height: | Size: 52 KiB |
BIN
scripts/newbitmaps/images/localized_images/da/insert.png
Normal file
|
After Width: | Height: | Size: 42 KiB |
BIN
scripts/newbitmaps/images/localized_images/da/model.png
Normal file
|
After Width: | Height: | Size: 4.1 KiB |
BIN
scripts/newbitmaps/images/localized_images/da/remove.png
Normal file
|
After Width: | Height: | Size: 30 KiB |
BIN
scripts/newbitmaps/images/localized_images/da/yuck.png
Normal file
|
After Width: | Height: | Size: 38 KiB |
BIN
scripts/newbitmaps/images/localized_images/de/devmode.png
Normal file
|
After Width: | Height: | Size: 53 KiB |
BIN
scripts/newbitmaps/images/localized_images/de/insert.png
Normal file
|
After Width: | Height: | Size: 45 KiB |
BIN
scripts/newbitmaps/images/localized_images/de/model.png
Normal file
|
After Width: | Height: | Size: 4.2 KiB |
BIN
scripts/newbitmaps/images/localized_images/de/remove.png
Normal file
|
After Width: | Height: | Size: 41 KiB |
BIN
scripts/newbitmaps/images/localized_images/de/yuck.png
Normal file
|
After Width: | Height: | Size: 39 KiB |
BIN
scripts/newbitmaps/images/localized_images/el/devmode.png
Normal file
|
After Width: | Height: | Size: 58 KiB |
BIN
scripts/newbitmaps/images/localized_images/el/insert.png
Normal file
|
After Width: | Height: | Size: 41 KiB |
BIN
scripts/newbitmaps/images/localized_images/el/model.png
Normal file
|
After Width: | Height: | Size: 4.7 KiB |
BIN
scripts/newbitmaps/images/localized_images/el/remove.png
Normal file
|
After Width: | Height: | Size: 36 KiB |
BIN
scripts/newbitmaps/images/localized_images/el/yuck.png
Normal file
|
After Width: | Height: | Size: 42 KiB |
BIN
scripts/newbitmaps/images/localized_images/en/devmode.png
Normal file
|
After Width: | Height: | Size: 35 KiB |
BIN
scripts/newbitmaps/images/localized_images/en/insert.png
Normal file
|
After Width: | Height: | Size: 36 KiB |
BIN
scripts/newbitmaps/images/localized_images/en/model.png
Normal file
|
After Width: | Height: | Size: 4.1 KiB |
BIN
scripts/newbitmaps/images/localized_images/en/remove.png
Normal file
|
After Width: | Height: | Size: 29 KiB |
BIN
scripts/newbitmaps/images/localized_images/en/yuck.png
Normal file
|
After Width: | Height: | Size: 36 KiB |
BIN
scripts/newbitmaps/images/localized_images/en_GB/devmode.png
Normal file
|
After Width: | Height: | Size: 35 KiB |
BIN
scripts/newbitmaps/images/localized_images/en_GB/insert.png
Normal file
|
After Width: | Height: | Size: 36 KiB |
BIN
scripts/newbitmaps/images/localized_images/en_GB/model.png
Normal file
|
After Width: | Height: | Size: 4.1 KiB |
BIN
scripts/newbitmaps/images/localized_images/en_GB/remove.png
Normal file
|
After Width: | Height: | Size: 29 KiB |
BIN
scripts/newbitmaps/images/localized_images/en_GB/yuck.png
Normal file
|
After Width: | Height: | Size: 42 KiB |
BIN
scripts/newbitmaps/images/localized_images/es/devmode.png
Normal file
|
After Width: | Height: | Size: 52 KiB |
BIN
scripts/newbitmaps/images/localized_images/es/insert.png
Normal file
|
After Width: | Height: | Size: 45 KiB |
BIN
scripts/newbitmaps/images/localized_images/es/model.png
Normal file
|
After Width: | Height: | Size: 4.9 KiB |
BIN
scripts/newbitmaps/images/localized_images/es/remove.png
Normal file
|
After Width: | Height: | Size: 31 KiB |
BIN
scripts/newbitmaps/images/localized_images/es/yuck.png
Normal file
|
After Width: | Height: | Size: 33 KiB |
BIN
scripts/newbitmaps/images/localized_images/es_419/devmode.png
Normal file
|
After Width: | Height: | Size: 49 KiB |
BIN
scripts/newbitmaps/images/localized_images/es_419/insert.png
Normal file
|
After Width: | Height: | Size: 39 KiB |
BIN
scripts/newbitmaps/images/localized_images/es_419/model.png
Normal file
|
After Width: | Height: | Size: 4.9 KiB |
BIN
scripts/newbitmaps/images/localized_images/es_419/remove.png
Normal file
|
After Width: | Height: | Size: 39 KiB |
BIN
scripts/newbitmaps/images/localized_images/es_419/yuck.png
Normal file
|
After Width: | Height: | Size: 38 KiB |
BIN
scripts/newbitmaps/images/localized_images/et/devmode.png
Normal file
|
After Width: | Height: | Size: 52 KiB |
BIN
scripts/newbitmaps/images/localized_images/et/insert.png
Normal file
|
After Width: | Height: | Size: 33 KiB |
BIN
scripts/newbitmaps/images/localized_images/et/model.png
Normal file
|
After Width: | Height: | Size: 3.9 KiB |
BIN
scripts/newbitmaps/images/localized_images/et/remove.png
Normal file
|
After Width: | Height: | Size: 33 KiB |
BIN
scripts/newbitmaps/images/localized_images/et/yuck.png
Normal file
|
After Width: | Height: | Size: 33 KiB |
BIN
scripts/newbitmaps/images/localized_images/fa/devmode.png
Normal file
|
After Width: | Height: | Size: 38 KiB |
BIN
scripts/newbitmaps/images/localized_images/fa/insert.png
Normal file
|
After Width: | Height: | Size: 41 KiB |
BIN
scripts/newbitmaps/images/localized_images/fa/model.png
Normal file
|
After Width: | Height: | Size: 2.8 KiB |
BIN
scripts/newbitmaps/images/localized_images/fa/remove.png
Normal file
|
After Width: | Height: | Size: 32 KiB |
BIN
scripts/newbitmaps/images/localized_images/fa/yuck.png
Normal file
|
After Width: | Height: | Size: 41 KiB |
BIN
scripts/newbitmaps/images/localized_images/fi/devmode.png
Normal file
|
After Width: | Height: | Size: 50 KiB |
BIN
scripts/newbitmaps/images/localized_images/fi/insert.png
Normal file
|
After Width: | Height: | Size: 37 KiB |
BIN
scripts/newbitmaps/images/localized_images/fi/model.png
Normal file
|
After Width: | Height: | Size: 2.9 KiB |
BIN
scripts/newbitmaps/images/localized_images/fi/remove.png
Normal file
|
After Width: | Height: | Size: 34 KiB |
BIN
scripts/newbitmaps/images/localized_images/fi/yuck.png
Normal file
|
After Width: | Height: | Size: 45 KiB |
BIN
scripts/newbitmaps/images/localized_images/fil/devmode.png
Normal file
|
After Width: | Height: | Size: 47 KiB |
BIN
scripts/newbitmaps/images/localized_images/fil/insert.png
Normal file
|
After Width: | Height: | Size: 44 KiB |
BIN
scripts/newbitmaps/images/localized_images/fil/model.png
Normal file
|
After Width: | Height: | Size: 4.9 KiB |
BIN
scripts/newbitmaps/images/localized_images/fil/remove.png
Normal file
|
After Width: | Height: | Size: 40 KiB |
BIN
scripts/newbitmaps/images/localized_images/fil/yuck.png
Normal file
|
After Width: | Height: | Size: 42 KiB |
BIN
scripts/newbitmaps/images/localized_images/fr/devmode.png
Normal file
|
After Width: | Height: | Size: 66 KiB |
BIN
scripts/newbitmaps/images/localized_images/fr/insert.png
Normal file
|
After Width: | Height: | Size: 56 KiB |
BIN
scripts/newbitmaps/images/localized_images/fr/model.png
Normal file
|
After Width: | Height: | Size: 5.2 KiB |
BIN
scripts/newbitmaps/images/localized_images/fr/remove.png
Normal file
|
After Width: | Height: | Size: 50 KiB |
BIN
scripts/newbitmaps/images/localized_images/fr/yuck.png
Normal file
|
After Width: | Height: | Size: 48 KiB |
BIN
scripts/newbitmaps/images/localized_images/hi/devmode.png
Normal file
|
After Width: | Height: | Size: 41 KiB |
BIN
scripts/newbitmaps/images/localized_images/hi/insert.png
Normal file
|
After Width: | Height: | Size: 51 KiB |
BIN
scripts/newbitmaps/images/localized_images/hi/model.png
Normal file
|
After Width: | Height: | Size: 3.1 KiB |
BIN
scripts/newbitmaps/images/localized_images/hi/remove.png
Normal file
|
After Width: | Height: | Size: 33 KiB |
BIN
scripts/newbitmaps/images/localized_images/hi/yuck.png
Normal file
|
After Width: | Height: | Size: 31 KiB |
BIN
scripts/newbitmaps/images/localized_images/hr/devmode.png
Normal file
|
After Width: | Height: | Size: 52 KiB |
BIN
scripts/newbitmaps/images/localized_images/hr/insert.png
Normal file
|
After Width: | Height: | Size: 35 KiB |
BIN
scripts/newbitmaps/images/localized_images/hr/model.png
Normal file
|
After Width: | Height: | Size: 4.1 KiB |
BIN
scripts/newbitmaps/images/localized_images/hr/remove.png
Normal file
|
After Width: | Height: | Size: 34 KiB |
BIN
scripts/newbitmaps/images/localized_images/hr/yuck.png
Normal file
|
After Width: | Height: | Size: 30 KiB |
BIN
scripts/newbitmaps/images/localized_images/hu/devmode.png
Normal file
|
After Width: | Height: | Size: 52 KiB |