add a french (encrypted) test
Summary: this handles Non-English European Language Install. Basically it's a bunch of new screenshots for existing tag names, plus a bit of configurability in _boot_to_anaconda and tweaking some existing needles to do non-text matches. The weird 'half-the- icon' needles are for cases where there may or may not be a warning triangle but we want to click it either way (saves duplicating the needle). This also sets up a convention for tagging what languages a needle is appropriate for. If it's specifically appropriate for one or more languages, a tag ENV-LANGUAGE-(LANGUAGE) should be applied for each language, where (LANGUAGE) is the install language in upper-case ('LANGUAGE' variable, which should also be the string that will be typed into the language selection screen). If the needle ought to be used for *all* languages - i.e. it's not a text match, or any text in the match is known not to be translated - the tag ENV-INSTLANG-ALL should be applied. To back this, main.pm now unregisters all needles that are not tagged with either ENV-LANGUAGE-ALL or the tag for the language actually being used (if the LANGUAGE var is not set, we assume english). The point of this is to check the install is actually translated; if we allow all needles to match, the test would pass even if no translations appeared at all. Test Plan: Run all tests and make sure you get the expected results. You can schedule a run against 23 Beta TC1 to see the French test fails 'correctly' when translations are missing. Reviewers: jskladan, garretraziel Reviewed By: garretraziel Subscribers: tflink Differential Revision: https://phab.qadevel.cloud.fedoraproject.org/D577
14
README.md
@ -136,3 +136,17 @@ and `test_flags()` method, inheriting from one of the classes mentioned above.
|
|||||||
file in openqa_fedora_tools repository.
|
file in openqa_fedora_tools repository.
|
||||||
9. Open differential request via phabricator, set openqa_fedora as a project and repository.
|
9. Open differential request via phabricator, set openqa_fedora as a project and repository.
|
||||||
10. Mark your test in [phabricator page](https://phab.qadevel.cloud.fedoraproject.org/w/openqa/tests/) as done.
|
10. Mark your test in [phabricator page](https://phab.qadevel.cloud.fedoraproject.org/w/openqa/tests/) as done.
|
||||||
|
|
||||||
|
### Language handling
|
||||||
|
|
||||||
|
Tests can run in different languages. To set the language which will be used for a test, set the `LANGUAGE`
|
||||||
|
variable for the test suite. The results of this will be:
|
||||||
|
|
||||||
|
1. The value set will be typed into the language search box in anaconda.
|
||||||
|
2. Only needles with the tags `ENV-LANGUAGE-ALL` and `ENV-LANGUAGE-(LANGUAGE)` will be used for the test (where `(LANGUAGE)` is the value set, forced to upper-case).
|
||||||
|
3. As a consequence, the chosen language will be selected at the anaconda Welcome screen.
|
||||||
|
|
||||||
|
It is very important, therefore, that needles have the correct tags. Any needle which is expected to match for
|
||||||
|
tests run in *any* language must have the `ENV-LANGUAGE-ALL` tag. Other needles must have the appropriate tag(s)
|
||||||
|
for the languages they are expected to match. The safest option if you are unsure is to set `ENV-LANGUAGE-ALL`.
|
||||||
|
The only danger of this is that missing translations may not be caught.
|
||||||
|
19
main.pm
@ -31,6 +31,19 @@ sub unregister_needle_tags($) {
|
|||||||
for my $n (@a) { $n->unregister(); }
|
for my $n (@a) { $n->unregister(); }
|
||||||
}
|
}
|
||||||
|
|
||||||
|
# Un-register all needles *except* those with specified tags (arg is a
|
||||||
|
# list of tags)
|
||||||
|
sub unregister_except_tags {
|
||||||
|
NEEDLE: for my $needle ( needle::all() ) {
|
||||||
|
for my $tag (@_) {
|
||||||
|
# If the needle has any of the tags, we skip to the next needle
|
||||||
|
next NEEDLE if ($needle->has_tag($tag));
|
||||||
|
}
|
||||||
|
# We only get here for a needle if we didn't match any of the tags
|
||||||
|
$needle->unregister();
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
sub cleanup_needles() {
|
sub cleanup_needles() {
|
||||||
if (!get_var('LIVE')) {
|
if (!get_var('LIVE')) {
|
||||||
## Unregister live-only installer needles. The main issue is the
|
## Unregister live-only installer needles. The main issue is the
|
||||||
@ -41,6 +54,12 @@ sub cleanup_needles() {
|
|||||||
## they don't match on it too soon.
|
## they don't match on it too soon.
|
||||||
unregister_needle_tags("ENV-INSTALLER-live");
|
unregister_needle_tags("ENV-INSTALLER-live");
|
||||||
}
|
}
|
||||||
|
|
||||||
|
# Unregister non-language-appropriate needles. Needles which are expected
|
||||||
|
# to match all languages have ENV-LANGUAGE-ALL tag.
|
||||||
|
my $lang = uc(get_var('LANGUAGE')) || 'ENGLISH';
|
||||||
|
$lang = 'ENV-LANGUAGE-'.$lang;
|
||||||
|
unregister_except_tags($lang, 'ENV-LANGUAGE-ALL');
|
||||||
}
|
}
|
||||||
$needle::cleanuphandler = \&cleanup_needles;
|
$needle::cleanuphandler = \&cleanup_needles;
|
||||||
|
|
||||||
|
@ -18,7 +18,7 @@
|
|||||||
"tags": [
|
"tags": [
|
||||||
"ENV-DISTRI-fedora",
|
"ENV-DISTRI-fedora",
|
||||||
"ENV-FLAVOR-server",
|
"ENV-FLAVOR-server",
|
||||||
"ENV-INSTLANG-en_US",
|
"ENV-LANGUAGE-ALL",
|
||||||
"anaconda_error"
|
"anaconda_error"
|
||||||
],
|
],
|
||||||
"properties": []
|
"properties": []
|
||||||
|
@ -11,7 +11,7 @@
|
|||||||
"tags": [
|
"tags": [
|
||||||
"anaconda_install_destination_delete_all_btn",
|
"anaconda_install_destination_delete_all_btn",
|
||||||
"ENV-DISTRI-fedora",
|
"ENV-DISTRI-fedora",
|
||||||
"ENV-INSTLANG-en_US",
|
"ENV-LANGUAGE-ENGLISH",
|
||||||
"ENV-FLAVOR-server"
|
"ENV-FLAVOR-server"
|
||||||
]
|
]
|
||||||
}
|
}
|
@ -2,7 +2,7 @@
|
|||||||
"tags": [
|
"tags": [
|
||||||
"anaconda_install_destination_encrypt_data",
|
"anaconda_install_destination_encrypt_data",
|
||||||
"ENV-DISTRI-fedora",
|
"ENV-DISTRI-fedora",
|
||||||
"ENV-INSTLANG-en_US",
|
"ENV-LANGUAGE-ENGLISH",
|
||||||
"ENV-OFW-1",
|
"ENV-OFW-1",
|
||||||
"ENV-FLAVOR-server"
|
"ENV-FLAVOR-server"
|
||||||
],
|
],
|
||||||
|
@ -0,0 +1,18 @@
|
|||||||
|
{
|
||||||
|
"area": [
|
||||||
|
{
|
||||||
|
"height": 21,
|
||||||
|
"type": "match",
|
||||||
|
"width": 152,
|
||||||
|
"xpos": 19,
|
||||||
|
"ypos": 623
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"tags": [
|
||||||
|
"anaconda_install_destination_encrypt_data",
|
||||||
|
"ENV-DISTRI-fedora",
|
||||||
|
"ENV-LANGUAGE-FRENCH",
|
||||||
|
"ENV-OFW-1",
|
||||||
|
"ENV-FLAVOR-server"
|
||||||
|
]
|
||||||
|
}
|
BIN
needles/anaconda_install_destination_encrypt_data_french.png
Normal file
After Width: | Height: | Size: 106 KiB |
@ -2,7 +2,7 @@
|
|||||||
"tags": [
|
"tags": [
|
||||||
"anaconda_install_destination_pony",
|
"anaconda_install_destination_pony",
|
||||||
"ENV-DISTRI-fedora",
|
"ENV-DISTRI-fedora",
|
||||||
"ENV-INSTLANG-en_US",
|
"ENV-LANGUAGE-ALL",
|
||||||
"ENV-FLAVOR-server"
|
"ENV-FLAVOR-server"
|
||||||
],
|
],
|
||||||
"area": [
|
"area": [
|
||||||
@ -14,4 +14,4 @@
|
|||||||
"type": "match"
|
"type": "match"
|
||||||
}
|
}
|
||||||
]
|
]
|
||||||
}
|
}
|
||||||
|
@ -2,7 +2,7 @@
|
|||||||
"tags": [
|
"tags": [
|
||||||
"anaconda_install_destination_pony",
|
"anaconda_install_destination_pony",
|
||||||
"ENV-DISTRI-fedora",
|
"ENV-DISTRI-fedora",
|
||||||
"ENV-INSTLANG-en_US",
|
"ENV-LANGUAGE-ALL",
|
||||||
"ENV-FLAVOR-develop"
|
"ENV-FLAVOR-develop"
|
||||||
],
|
],
|
||||||
"area": [
|
"area": [
|
||||||
@ -15,4 +15,4 @@
|
|||||||
}
|
}
|
||||||
],
|
],
|
||||||
"properties": []
|
"properties": []
|
||||||
}
|
}
|
||||||
|
@ -2,7 +2,7 @@
|
|||||||
"tags": [
|
"tags": [
|
||||||
"anaconda_install_destination_reclaim_space_btn",
|
"anaconda_install_destination_reclaim_space_btn",
|
||||||
"ENV-DISTRI-fedora",
|
"ENV-DISTRI-fedora",
|
||||||
"ENV-INSTLANG-en_US",
|
"ENV-LANGUAGE-ENGLISH",
|
||||||
"ENV-FLAVOR-server"
|
"ENV-FLAVOR-server"
|
||||||
],
|
],
|
||||||
"area": [
|
"area": [
|
||||||
|
@ -2,7 +2,7 @@
|
|||||||
"tags": [
|
"tags": [
|
||||||
"anaconda_install_destination_reclaim_space_delete_btn",
|
"anaconda_install_destination_reclaim_space_delete_btn",
|
||||||
"ENV-DISTRI-fedora",
|
"ENV-DISTRI-fedora",
|
||||||
"ENV-INSTLANG-en_US",
|
"ENV-LANGUAGE-ENGLISH",
|
||||||
"ENV-OFW-1",
|
"ENV-OFW-1",
|
||||||
"ENV-FLAVOR-server"
|
"ENV-FLAVOR-server"
|
||||||
],
|
],
|
||||||
|
@ -11,8 +11,8 @@
|
|||||||
"tags": [
|
"tags": [
|
||||||
"anaconda_install_destination_reclaim_space_first_partition",
|
"anaconda_install_destination_reclaim_space_first_partition",
|
||||||
"ENV-DISTRI-fedora",
|
"ENV-DISTRI-fedora",
|
||||||
"ENV-INSTLANG-en_US",
|
"ENV-LANGUAGE-ALL",
|
||||||
"ENV-OFW-1",
|
"ENV-OFW-1",
|
||||||
"ENV-FLAVOR-server"
|
"ENV-FLAVOR-server"
|
||||||
]
|
]
|
||||||
}
|
}
|
||||||
|
@ -11,8 +11,8 @@
|
|||||||
"tags": [
|
"tags": [
|
||||||
"anaconda_install_destination_reclaim_space_first_partition",
|
"anaconda_install_destination_reclaim_space_first_partition",
|
||||||
"ENV-DISTRI-fedora",
|
"ENV-DISTRI-fedora",
|
||||||
"ENV-INSTLANG-en_US",
|
"ENV-LANGUAGE-ALL",
|
||||||
"ENV-FLAVOR-universal"
|
"ENV-FLAVOR-universal"
|
||||||
],
|
],
|
||||||
"properties": []
|
"properties": []
|
||||||
}
|
}
|
||||||
|
@ -11,8 +11,8 @@
|
|||||||
"tags": [
|
"tags": [
|
||||||
"anaconda_install_destination_reclaim_space_second_partition",
|
"anaconda_install_destination_reclaim_space_second_partition",
|
||||||
"ENV-DISTRI-fedora",
|
"ENV-DISTRI-fedora",
|
||||||
"ENV-INSTLANG-en_US",
|
"ENV-LANGUAGE-ALL",
|
||||||
"ENV-OFW-1",
|
"ENV-OFW-1",
|
||||||
"ENV-FLAVOR-server"
|
"ENV-FLAVOR-server"
|
||||||
]
|
]
|
||||||
}
|
}
|
||||||
|
@ -2,7 +2,7 @@
|
|||||||
"tags": [
|
"tags": [
|
||||||
"anaconda_install_destination_reclaim_space_shrink_btn",
|
"anaconda_install_destination_reclaim_space_shrink_btn",
|
||||||
"ENV-DISTRI-fedora",
|
"ENV-DISTRI-fedora",
|
||||||
"ENV-INSTLANG-en_US",
|
"ENV-LANGUAGE-ENGLISH",
|
||||||
"ENV-FLAVOR-develop"
|
"ENV-FLAVOR-develop"
|
||||||
],
|
],
|
||||||
"area": [
|
"area": [
|
||||||
|
@ -2,7 +2,7 @@
|
|||||||
"tags": [
|
"tags": [
|
||||||
"ENV-DISTRI-fedora",
|
"ENV-DISTRI-fedora",
|
||||||
"ENV-FLAVOR-develop",
|
"ENV-FLAVOR-develop",
|
||||||
"ENV-INSTLANG-en_US",
|
"ENV-LANGUAGE-ALL",
|
||||||
"anaconda_install_destination_reclaim_space_shrink_slider"
|
"anaconda_install_destination_reclaim_space_shrink_slider"
|
||||||
],
|
],
|
||||||
"area": [
|
"area": [
|
||||||
@ -15,4 +15,4 @@
|
|||||||
}
|
}
|
||||||
],
|
],
|
||||||
"properties": []
|
"properties": []
|
||||||
}
|
}
|
||||||
|
@ -11,7 +11,7 @@
|
|||||||
"tags": [
|
"tags": [
|
||||||
"anaconda_install_destination_save_passphrase",
|
"anaconda_install_destination_save_passphrase",
|
||||||
"ENV-DISTRI-fedora",
|
"ENV-DISTRI-fedora",
|
||||||
"ENV-INSTLANG-en_US",
|
"ENV-LANGUAGE-ENGLISH",
|
||||||
"ENV-OFW-1",
|
"ENV-OFW-1",
|
||||||
"ENV-FLAVOR-server"
|
"ENV-FLAVOR-server"
|
||||||
]
|
]
|
||||||
|
@ -0,0 +1,18 @@
|
|||||||
|
{
|
||||||
|
"area": [
|
||||||
|
{
|
||||||
|
"height": 37,
|
||||||
|
"type": "match",
|
||||||
|
"width": 190,
|
||||||
|
"xpos": 599,
|
||||||
|
"ypos": 526
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"tags": [
|
||||||
|
"anaconda_install_destination_save_passphrase",
|
||||||
|
"ENV-DISTRI-fedora",
|
||||||
|
"ENV-LANGUAGE-FRENCH",
|
||||||
|
"ENV-OFW-1",
|
||||||
|
"ENV-FLAVOR-server"
|
||||||
|
]
|
||||||
|
}
|
BIN
needles/anaconda_install_destination_save_passphrase_french.png
Normal file
After Width: | Height: | Size: 127 KiB |
@ -12,7 +12,7 @@
|
|||||||
"tags": [
|
"tags": [
|
||||||
"anaconda_install_destination_select_disk_1",
|
"anaconda_install_destination_select_disk_1",
|
||||||
"ENV-DISTRI-fedora",
|
"ENV-DISTRI-fedora",
|
||||||
"ENV-INSTLANG-en_US",
|
"ENV-LANGUAGE-ALL",
|
||||||
"ENV-FLAVOR-server"
|
"ENV-FLAVOR-server"
|
||||||
]
|
]
|
||||||
}
|
}
|
||||||
|
@ -12,7 +12,7 @@
|
|||||||
"tags": [
|
"tags": [
|
||||||
"anaconda_install_destination_select_disk_2",
|
"anaconda_install_destination_select_disk_2",
|
||||||
"ENV-DISTRI-fedora",
|
"ENV-DISTRI-fedora",
|
||||||
"ENV-INSTLANG-en_US",
|
"ENV-LANGUAGE-ALL",
|
||||||
"ENV-FLAVOR-server"
|
"ENV-FLAVOR-server"
|
||||||
]
|
]
|
||||||
}
|
}
|
||||||
|
@ -19,6 +19,6 @@
|
|||||||
"anaconda_install_done",
|
"anaconda_install_done",
|
||||||
"ENV-DESKTOP-default",
|
"ENV-DESKTOP-default",
|
||||||
"ENV-DISTRI-fedora",
|
"ENV-DISTRI-fedora",
|
||||||
"ENV-INSTLANG-en_US"
|
"ENV-LANGUAGE-ENGLISH"
|
||||||
]
|
]
|
||||||
}
|
}
|
||||||
|
24
needles/anaconda_install_done_french.json
Normal file
@ -0,0 +1,24 @@
|
|||||||
|
{
|
||||||
|
"area": [
|
||||||
|
{
|
||||||
|
"height": 20,
|
||||||
|
"type": "match",
|
||||||
|
"width": 410,
|
||||||
|
"xpos": 609,
|
||||||
|
"ypos": 634
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"height": 28,
|
||||||
|
"type": "match",
|
||||||
|
"width": 17,
|
||||||
|
"xpos": 1000,
|
||||||
|
"ypos": 680
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"tags": [
|
||||||
|
"anaconda_install_done",
|
||||||
|
"ENV-DESKTOP-default",
|
||||||
|
"ENV-DISTRI-fedora",
|
||||||
|
"ENV-LANGUAGE-FRENCH"
|
||||||
|
]
|
||||||
|
}
|
BIN
needles/anaconda_install_done_french.png
Normal file
After Width: | Height: | Size: 88 KiB |
@ -3,8 +3,8 @@
|
|||||||
{
|
{
|
||||||
"height": 63,
|
"height": 63,
|
||||||
"type": "match",
|
"type": "match",
|
||||||
"width": 192,
|
"width": 72,
|
||||||
"xpos": 266,
|
"xpos": 186,
|
||||||
"ypos": 154
|
"ypos": 154
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
@ -12,6 +12,6 @@
|
|||||||
"anaconda_install_root_password",
|
"anaconda_install_root_password",
|
||||||
"ENV-DESKTOP-default",
|
"ENV-DESKTOP-default",
|
||||||
"ENV-DISTRI-fedora",
|
"ENV-DISTRI-fedora",
|
||||||
"ENV-INSTLANG-en_US"
|
"ENV-LANGUAGE-ALL"
|
||||||
]
|
]
|
||||||
}
|
}
|
||||||
|
@ -18,7 +18,7 @@
|
|||||||
"tags": [
|
"tags": [
|
||||||
"anaconda_install_root_password_screen",
|
"anaconda_install_root_password_screen",
|
||||||
"ENV-DISTRI-fedora",
|
"ENV-DISTRI-fedora",
|
||||||
"ENV-INSTLANG-en_US",
|
"ENV-LANGUAGE-ENGLISH",
|
||||||
"ENV-FLAVOR-server"
|
"ENV-FLAVOR-server"
|
||||||
],
|
],
|
||||||
"properties": []
|
"properties": []
|
||||||
|
18
needles/anaconda_install_root_password_screen_french.json
Normal file
@ -0,0 +1,18 @@
|
|||||||
|
{
|
||||||
|
"area": [
|
||||||
|
{
|
||||||
|
"height": 16,
|
||||||
|
"type": "match",
|
||||||
|
"width": 181,
|
||||||
|
"xpos": 207,
|
||||||
|
"ypos": 130
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"properties": [],
|
||||||
|
"tags": [
|
||||||
|
"anaconda_install_root_password_screen",
|
||||||
|
"ENV-DISTRI-fedora",
|
||||||
|
"ENV-LANGUAGE-FRENCH",
|
||||||
|
"ENV-FLAVOR-server"
|
||||||
|
]
|
||||||
|
}
|
BIN
needles/anaconda_install_root_password_screen_french.png
Normal file
After Width: | Height: | Size: 59 KiB |
@ -2,7 +2,7 @@
|
|||||||
"tags": [
|
"tags": [
|
||||||
"anaconda_install_source_check_repo_added",
|
"anaconda_install_source_check_repo_added",
|
||||||
"ENV-DISTRI-fedora",
|
"ENV-DISTRI-fedora",
|
||||||
"ENV-INSTLANG-en_US",
|
"ENV-LANGUAGE-ALL",
|
||||||
"ENV-OFW-1",
|
"ENV-OFW-1",
|
||||||
"ENV-FLAVOR-server"
|
"ENV-FLAVOR-server"
|
||||||
],
|
],
|
||||||
@ -15,4 +15,4 @@
|
|||||||
"width": 304
|
"width": 304
|
||||||
}
|
}
|
||||||
]
|
]
|
||||||
}
|
}
|
||||||
|
@ -2,7 +2,7 @@
|
|||||||
"tags": [
|
"tags": [
|
||||||
"anaconda_install_source_check_repo_added",
|
"anaconda_install_source_check_repo_added",
|
||||||
"ENV-DISTRI-fedora",
|
"ENV-DISTRI-fedora",
|
||||||
"ENV-INSTLANG-en_US",
|
"ENV-LANGUAGE-ALL",
|
||||||
"ENV-OFW-1",
|
"ENV-OFW-1",
|
||||||
"ENV-FLAVOR-server"
|
"ENV-FLAVOR-server"
|
||||||
],
|
],
|
||||||
@ -15,4 +15,4 @@
|
|||||||
"width": 304
|
"width": 304
|
||||||
}
|
}
|
||||||
]
|
]
|
||||||
}
|
}
|
||||||
|
@ -11,8 +11,8 @@
|
|||||||
"tags": [
|
"tags": [
|
||||||
"anaconda_install_source_check_repo_added",
|
"anaconda_install_source_check_repo_added",
|
||||||
"ENV-DISTRI-fedora",
|
"ENV-DISTRI-fedora",
|
||||||
"ENV-INSTLANG-en_US",
|
"ENV-LANGUAGE-ALL",
|
||||||
"ENV-OFW-1",
|
"ENV-OFW-1",
|
||||||
"ENV-FLAVOR-server"
|
"ENV-FLAVOR-server"
|
||||||
]
|
]
|
||||||
}
|
}
|
||||||
|
@ -3,7 +3,7 @@
|
|||||||
"tags": [
|
"tags": [
|
||||||
"anaconda_install_source_http_selected",
|
"anaconda_install_source_http_selected",
|
||||||
"ENV-DISTRI-fedora",
|
"ENV-DISTRI-fedora",
|
||||||
"ENV-INSTLANG-en_US",
|
"ENV-LANGUAGE-ALL",
|
||||||
"ENV-FLAVOR-server"
|
"ENV-FLAVOR-server"
|
||||||
],
|
],
|
||||||
"area": [
|
"area": [
|
||||||
@ -22,4 +22,4 @@
|
|||||||
"ypos": 163
|
"ypos": 163
|
||||||
}
|
}
|
||||||
]
|
]
|
||||||
}
|
}
|
||||||
|
@ -3,7 +3,7 @@
|
|||||||
"tags": [
|
"tags": [
|
||||||
"anaconda_install_source_http_selected",
|
"anaconda_install_source_http_selected",
|
||||||
"ENV-DISTRI-fedora",
|
"ENV-DISTRI-fedora",
|
||||||
"ENV-INSTLANG-en_US",
|
"ENV-LANGUAGE-ALL",
|
||||||
"ENV-FLAVOR-server"
|
"ENV-FLAVOR-server"
|
||||||
],
|
],
|
||||||
"area": [
|
"area": [
|
||||||
@ -15,4 +15,4 @@
|
|||||||
"ypos": 163
|
"ypos": 163
|
||||||
}
|
}
|
||||||
]
|
]
|
||||||
}
|
}
|
||||||
|
@ -2,7 +2,7 @@
|
|||||||
"tags": [
|
"tags": [
|
||||||
"anaconda_install_source_on_the_network",
|
"anaconda_install_source_on_the_network",
|
||||||
"ENV-DISTRI-fedora",
|
"ENV-DISTRI-fedora",
|
||||||
"ENV-INSTLANG-en_US",
|
"ENV-LANGUAGE-ENGLISH",
|
||||||
"ENV-OFW-1",
|
"ENV-OFW-1",
|
||||||
"ENV-FLAVOR-server"
|
"ENV-FLAVOR-server"
|
||||||
],
|
],
|
||||||
|
@ -11,7 +11,7 @@
|
|||||||
"tags": [
|
"tags": [
|
||||||
"anaconda_install_source_repo_select_mirrorlist",
|
"anaconda_install_source_repo_select_mirrorlist",
|
||||||
"ENV-DISTRI-fedora",
|
"ENV-DISTRI-fedora",
|
||||||
"ENV-INSTLANG-en_US",
|
"ENV-LANGUAGE-ENGLISH",
|
||||||
"ENV-OFW-1",
|
"ENV-OFW-1",
|
||||||
"ENV-FLAVOR-server"
|
"ENV-FLAVOR-server"
|
||||||
]
|
]
|
||||||
|
@ -3,15 +3,15 @@
|
|||||||
{
|
{
|
||||||
"height": 61,
|
"height": 61,
|
||||||
"type": "match",
|
"type": "match",
|
||||||
"width": 187,
|
"width": 23,
|
||||||
"xpos": 691,
|
"xpos": 626,
|
||||||
"ypos": 157
|
"ypos": 157
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
"tags": [
|
"tags": [
|
||||||
"ENV-DESKTOP-default",
|
"ENV-DESKTOP-default",
|
||||||
"ENV-DISTRI-fedora",
|
"ENV-DISTRI-fedora",
|
||||||
"ENV-INSTLANG-en_US",
|
"ENV-LANGUAGE-ALL",
|
||||||
"anaconda_install_user_creation"
|
"anaconda_install_user_creation"
|
||||||
]
|
]
|
||||||
}
|
}
|
||||||
|
@ -11,7 +11,7 @@
|
|||||||
"tags": [
|
"tags": [
|
||||||
"ENV-DESKTOP-default",
|
"ENV-DESKTOP-default",
|
||||||
"ENV-DISTRI-fedora",
|
"ENV-DISTRI-fedora",
|
||||||
"ENV-INSTLANG-en_US",
|
"ENV-LANGUAGE-ENGLISH",
|
||||||
"anaconda_install_user_creation_make_admin"
|
"anaconda_install_user_creation_make_admin"
|
||||||
]
|
]
|
||||||
}
|
}
|
@ -0,0 +1,17 @@
|
|||||||
|
{
|
||||||
|
"area": [
|
||||||
|
{
|
||||||
|
"height": 21,
|
||||||
|
"type": "match",
|
||||||
|
"width": 264,
|
||||||
|
"xpos": 351,
|
||||||
|
"ypos": 217
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"tags": [
|
||||||
|
"ENV-DESKTOP-default",
|
||||||
|
"ENV-DISTRI-fedora",
|
||||||
|
"ENV-LANGUAGE-FRENCH",
|
||||||
|
"anaconda_install_user_creation_make_admin"
|
||||||
|
]
|
||||||
|
}
|
BIN
needles/anaconda_install_user_creation_make_admin_french.png
Normal file
After Width: | Height: | Size: 68 KiB |
@ -3,7 +3,7 @@
|
|||||||
"tags": [
|
"tags": [
|
||||||
"anaconda_install_user_creation_screen",
|
"anaconda_install_user_creation_screen",
|
||||||
"ENV-DISTRI-fedora",
|
"ENV-DISTRI-fedora",
|
||||||
"ENV-INSTLANG-en_US",
|
"ENV-LANGUAGE-ENGLISH",
|
||||||
"ENV-FLAVOR-server"
|
"ENV-FLAVOR-server"
|
||||||
],
|
],
|
||||||
"area": [
|
"area": [
|
||||||
|
25
needles/anaconda_install_user_creation_screen_french.json
Normal file
@ -0,0 +1,25 @@
|
|||||||
|
{
|
||||||
|
"area": [
|
||||||
|
{
|
||||||
|
"height": 17,
|
||||||
|
"type": "match",
|
||||||
|
"width": 107,
|
||||||
|
"xpos": 227,
|
||||||
|
"ypos": 156
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"height": 17,
|
||||||
|
"type": "match",
|
||||||
|
"width": 84,
|
||||||
|
"xpos": 250,
|
||||||
|
"ypos": 289
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"properties": [],
|
||||||
|
"tags": [
|
||||||
|
"anaconda_install_user_creation_screen",
|
||||||
|
"ENV-DISTRI-fedora",
|
||||||
|
"ENV-LANGUAGE-FRENCH",
|
||||||
|
"ENV-FLAVOR-server"
|
||||||
|
]
|
||||||
|
}
|
BIN
needles/anaconda_install_user_creation_screen_french.png
Normal file
After Width: | Height: | Size: 68 KiB |
@ -12,6 +12,6 @@
|
|||||||
"anaconda_main_hub_begin_installation",
|
"anaconda_main_hub_begin_installation",
|
||||||
"ENV-DESKTOP-default",
|
"ENV-DESKTOP-default",
|
||||||
"ENV-DISTRI-fedora",
|
"ENV-DISTRI-fedora",
|
||||||
"ENV-INSTLANG-en_US"
|
"ENV-LANGUAGE-ENGLISH"
|
||||||
]
|
]
|
||||||
}
|
}
|
17
needles/anaconda_main_hub_begin_installation_french.json
Normal file
@ -0,0 +1,17 @@
|
|||||||
|
{
|
||||||
|
"area": [
|
||||||
|
{
|
||||||
|
"height": 17,
|
||||||
|
"type": "match",
|
||||||
|
"width": 152,
|
||||||
|
"xpos": 847,
|
||||||
|
"ypos": 704
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"tags": [
|
||||||
|
"anaconda_main_hub_begin_installation",
|
||||||
|
"ENV-DESKTOP-default",
|
||||||
|
"ENV-DISTRI-fedora",
|
||||||
|
"ENV-LANGUAGE-FRENCH"
|
||||||
|
]
|
||||||
|
}
|
BIN
needles/anaconda_main_hub_begin_installation_french.png
Normal file
After Width: | Height: | Size: 116 KiB |
@ -12,6 +12,6 @@
|
|||||||
"anaconda_main_hub_install_destination",
|
"anaconda_main_hub_install_destination",
|
||||||
"ENV-DESKTOP-default",
|
"ENV-DESKTOP-default",
|
||||||
"ENV-DISTRI-fedora",
|
"ENV-DISTRI-fedora",
|
||||||
"ENV-INSTLANG-en_US"
|
"ENV-LANGUAGE-ALL"
|
||||||
]
|
]
|
||||||
}
|
}
|
||||||
|
@ -1,25 +1,18 @@
|
|||||||
{
|
{
|
||||||
"tags": [
|
"area": [
|
||||||
"anaconda_main_hub_install_destination",
|
{
|
||||||
"ENV-DISTRI-fedora",
|
"height": 79,
|
||||||
"ENV-INSTLANG-en_US",
|
"type": "match",
|
||||||
"ENV-OFW-1",
|
"width": 87,
|
||||||
"ENV-FLAVOR-server"
|
"xpos": 174,
|
||||||
],
|
"ypos": 458
|
||||||
"area": [
|
}
|
||||||
{
|
],
|
||||||
"xpos": 174,
|
"tags": [
|
||||||
"ypos": 458,
|
"anaconda_main_hub_install_destination",
|
||||||
"width": 87,
|
"ENV-DISTRI-fedora",
|
||||||
"height": 79,
|
"ENV-LANGUAGE-ALL",
|
||||||
"type": "match"
|
"ENV-OFW-1",
|
||||||
},
|
"ENV-FLAVOR-server"
|
||||||
{
|
]
|
||||||
"xpos": 267,
|
}
|
||||||
"ypos": 472,
|
|
||||||
"width": 247,
|
|
||||||
"height": 30,
|
|
||||||
"type": "match"
|
|
||||||
}
|
|
||||||
]
|
|
||||||
}
|
|
||||||
|
@ -2,7 +2,7 @@
|
|||||||
"tags": [
|
"tags": [
|
||||||
"anaconda_main_hub_installation_source",
|
"anaconda_main_hub_installation_source",
|
||||||
"ENV-DISTRI-fedora",
|
"ENV-DISTRI-fedora",
|
||||||
"ENV-INSTLANG-en_US",
|
"ENV-LANGUAGE-ENGLISH",
|
||||||
"ENV-OFW-1",
|
"ENV-OFW-1",
|
||||||
"ENV-FLAVOR-server"
|
"ENV-FLAVOR-server"
|
||||||
],
|
],
|
||||||
|
@ -2,7 +2,7 @@
|
|||||||
"tags": [
|
"tags": [
|
||||||
"anaconda_main_hub",
|
"anaconda_main_hub",
|
||||||
"ENV-DISTRI-fedora",
|
"ENV-DISTRI-fedora",
|
||||||
"ENV-INSTLANG-en_US",
|
"ENV-LANGUAGE-ALL",
|
||||||
"ENV-INSTALLER-live"
|
"ENV-INSTALLER-live"
|
||||||
],
|
],
|
||||||
"area": [
|
"area": [
|
||||||
|
@ -2,7 +2,7 @@
|
|||||||
"tags": [
|
"tags": [
|
||||||
"anaconda_main_hub",
|
"anaconda_main_hub",
|
||||||
"ENV-DISTRI-fedora",
|
"ENV-DISTRI-fedora",
|
||||||
"ENV-INSTLANG-en_US",
|
"ENV-LANGUAGE-ALL",
|
||||||
"ENV-FLAVOR-server"
|
"ENV-FLAVOR-server"
|
||||||
],
|
],
|
||||||
"area": [
|
"area": [
|
||||||
|
@ -1,18 +1,18 @@
|
|||||||
{
|
{
|
||||||
"area": [
|
"area": [
|
||||||
{
|
{
|
||||||
"xpos": 690,
|
"height": 58,
|
||||||
"ypos": 354,
|
"type": "match",
|
||||||
"width": 195,
|
"width": 23,
|
||||||
"height": 27,
|
"xpos": 627,
|
||||||
"type": "match"
|
"ypos": 356
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
"tags": [
|
"tags": [
|
||||||
"anaconda_main_hub_select_packages",
|
"anaconda_main_hub_select_packages",
|
||||||
"ENV-DISTRI-fedora",
|
"ENV-DISTRI-fedora",
|
||||||
"ENV-INSTLANG-en_US",
|
"ENV-LANGUAGE-ALL",
|
||||||
"ENV-OFW-1",
|
"ENV-OFW-1",
|
||||||
"ENV-FLAVOR-server"
|
"ENV-FLAVOR-server"
|
||||||
]
|
]
|
||||||
}
|
}
|
@ -3,7 +3,7 @@
|
|||||||
"tags": [
|
"tags": [
|
||||||
"anaconda_manual_partitioning",
|
"anaconda_manual_partitioning",
|
||||||
"ENV-DISTRI-fedora",
|
"ENV-DISTRI-fedora",
|
||||||
"ENV-INSTLANG-en_US",
|
"ENV-LANGUAGE-ENGLISH",
|
||||||
"ENV-FLAVOR-server"
|
"ENV-FLAVOR-server"
|
||||||
],
|
],
|
||||||
"area": [
|
"area": [
|
||||||
|
@ -12,7 +12,7 @@
|
|||||||
"tags": [
|
"tags": [
|
||||||
"anaconda_minimal_highlighted",
|
"anaconda_minimal_highlighted",
|
||||||
"ENV-DISTRI-fedora",
|
"ENV-DISTRI-fedora",
|
||||||
"ENV-INSTLANG-en_US",
|
"ENV-LANGUAGE-ENGLISH",
|
||||||
"ENV-FLAVOR-server"
|
"ENV-FLAVOR-server"
|
||||||
]
|
]
|
||||||
}
|
}
|
18
needles/anaconda_minimal_highlighted_french.json
Normal file
@ -0,0 +1,18 @@
|
|||||||
|
{
|
||||||
|
"area": [
|
||||||
|
{
|
||||||
|
"height": 15,
|
||||||
|
"type": "match",
|
||||||
|
"width": 130,
|
||||||
|
"xpos": 50,
|
||||||
|
"ypos": 146
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"properties": [],
|
||||||
|
"tags": [
|
||||||
|
"anaconda_minimal_highlighted",
|
||||||
|
"ENV-DISTRI-fedora",
|
||||||
|
"ENV-LANGUAGE-FRENCH",
|
||||||
|
"ENV-FLAVOR-server"
|
||||||
|
]
|
||||||
|
}
|
BIN
needles/anaconda_minimal_highlighted_french.png
Normal file
After Width: | Height: | Size: 138 KiB |
@ -12,7 +12,7 @@
|
|||||||
"tags": [
|
"tags": [
|
||||||
"anaconda_minimal_selected",
|
"anaconda_minimal_selected",
|
||||||
"ENV-DISTRI-fedora",
|
"ENV-DISTRI-fedora",
|
||||||
"ENV-INSTLANG-en_US",
|
"ENV-LANGUAGE-ENGLISH",
|
||||||
"ENV-FLAVOR-server"
|
"ENV-FLAVOR-server"
|
||||||
]
|
]
|
||||||
}
|
}
|
18
needles/anaconda_minimal_selected_french.json
Normal file
@ -0,0 +1,18 @@
|
|||||||
|
{
|
||||||
|
"area": [
|
||||||
|
{
|
||||||
|
"height": 14,
|
||||||
|
"type": "match",
|
||||||
|
"width": 149,
|
||||||
|
"xpos": 30,
|
||||||
|
"ypos": 146
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"properties": [],
|
||||||
|
"tags": [
|
||||||
|
"anaconda_minimal_selected",
|
||||||
|
"ENV-DISTRI-fedora",
|
||||||
|
"ENV-LANGUAGE-FRENCH",
|
||||||
|
"ENV-FLAVOR-server"
|
||||||
|
]
|
||||||
|
}
|
BIN
needles/anaconda_minimal_selected_french.png
Normal file
After Width: | Height: | Size: 130 KiB |
@ -3,7 +3,7 @@
|
|||||||
"tags": [
|
"tags": [
|
||||||
"anaconda_part_accept_changes",
|
"anaconda_part_accept_changes",
|
||||||
"ENV-DISTRI-fedora",
|
"ENV-DISTRI-fedora",
|
||||||
"ENV-INSTLANG-en_US",
|
"ENV-LANGUAGE-ENGLISH",
|
||||||
"ENV-FLAVOR-server"
|
"ENV-FLAVOR-server"
|
||||||
],
|
],
|
||||||
"area": [
|
"area": [
|
||||||
|
@ -12,7 +12,7 @@
|
|||||||
"tags": [
|
"tags": [
|
||||||
"anaconda_part_add_mountpoint",
|
"anaconda_part_add_mountpoint",
|
||||||
"ENV-DISTRI-fedora",
|
"ENV-DISTRI-fedora",
|
||||||
"ENV-INSTLANG-en_US",
|
"ENV-LANGUAGE-ENGLISH",
|
||||||
"ENV-FLAVOR-server"
|
"ENV-FLAVOR-server"
|
||||||
]
|
]
|
||||||
}
|
}
|
@ -11,7 +11,7 @@
|
|||||||
"tags": [
|
"tags": [
|
||||||
"anaconda_part_automatic",
|
"anaconda_part_automatic",
|
||||||
"ENV-DISTRI-fedora",
|
"ENV-DISTRI-fedora",
|
||||||
"ENV-INSTLANG-en_US",
|
"ENV-LANGUAGE-ENGLISH",
|
||||||
"ENV-FLAVOR-server"
|
"ENV-FLAVOR-server"
|
||||||
]
|
]
|
||||||
}
|
}
|
||||||
|
@ -11,7 +11,7 @@
|
|||||||
"tags": [
|
"tags": [
|
||||||
"anaconda_part_delete",
|
"anaconda_part_delete",
|
||||||
"ENV-DISTRI-fedora",
|
"ENV-DISTRI-fedora",
|
||||||
"ENV-INSTLANG-en_US",
|
"ENV-LANGUAGE-ALL",
|
||||||
"ENV-FLAVOR-generic_boot"
|
"ENV-FLAVOR-generic_boot"
|
||||||
]
|
]
|
||||||
}
|
}
|
||||||
|
@ -11,7 +11,7 @@
|
|||||||
"tags": [
|
"tags": [
|
||||||
"anaconda_part_desired_capacity",
|
"anaconda_part_desired_capacity",
|
||||||
"ENV-DISTRI-fedora",
|
"ENV-DISTRI-fedora",
|
||||||
"ENV-INSTLANG-en_US",
|
"ENV-LANGUAGE-ENGLISH",
|
||||||
"ENV-FLAVOR-server"
|
"ENV-FLAVOR-server"
|
||||||
],
|
],
|
||||||
"properties": []
|
"properties": []
|
||||||
|
@ -3,7 +3,7 @@
|
|||||||
"tags": [
|
"tags": [
|
||||||
"anaconda_part_device_type",
|
"anaconda_part_device_type",
|
||||||
"ENV-DISTRI-fedora",
|
"ENV-DISTRI-fedora",
|
||||||
"ENV-INSTLANG-en_US",
|
"ENV-LANGUAGE-ENGLISH",
|
||||||
"ENV-FLAVOR-server"
|
"ENV-FLAVOR-server"
|
||||||
],
|
],
|
||||||
"area": [
|
"area": [
|
||||||
|
@ -12,7 +12,7 @@
|
|||||||
"tags": [
|
"tags": [
|
||||||
"anaconda_part_device_type_raid",
|
"anaconda_part_device_type_raid",
|
||||||
"ENV-DISTRI-fedora",
|
"ENV-DISTRI-fedora",
|
||||||
"ENV-INSTLANG-en_US",
|
"ENV-LANGUAGE-ALL",
|
||||||
"ENV-FLAVOR-server"
|
"ENV-FLAVOR-server"
|
||||||
]
|
]
|
||||||
}
|
}
|
||||||
|
@ -11,7 +11,7 @@
|
|||||||
"tags": [
|
"tags": [
|
||||||
"anaconda_part_fs_ext3",
|
"anaconda_part_fs_ext3",
|
||||||
"ENV-DISTRI-fedora",
|
"ENV-DISTRI-fedora",
|
||||||
"ENV-INSTLANG-en_US",
|
"ENV-LANGUAGE-ALL",
|
||||||
"ENV-FLAVOR-server"
|
"ENV-FLAVOR-server"
|
||||||
]
|
]
|
||||||
}
|
}
|
||||||
|
@ -11,7 +11,7 @@
|
|||||||
"tags": [
|
"tags": [
|
||||||
"anaconda_part_fs",
|
"anaconda_part_fs",
|
||||||
"ENV-DISTRI-fedora",
|
"ENV-DISTRI-fedora",
|
||||||
"ENV-INSTLANG-en_US",
|
"ENV-LANGUAGE-ALL",
|
||||||
"ENV-FLAVOR-server"
|
"ENV-FLAVOR-server"
|
||||||
]
|
]
|
||||||
}
|
}
|
||||||
|
@ -11,7 +11,7 @@
|
|||||||
"tags": [
|
"tags": [
|
||||||
"anaconda_part_fs",
|
"anaconda_part_fs",
|
||||||
"ENV-DISTRI-fedora",
|
"ENV-DISTRI-fedora",
|
||||||
"ENV-INSTLANG-en_US",
|
"ENV-LANGUAGE-ALL",
|
||||||
"ENV-FLAVOR-server"
|
"ENV-FLAVOR-server"
|
||||||
]
|
]
|
||||||
}
|
}
|
||||||
|
@ -2,7 +2,7 @@
|
|||||||
"tags": [
|
"tags": [
|
||||||
"anaconda_part_list_box_boot",
|
"anaconda_part_list_box_boot",
|
||||||
"ENV-DISTRI-fedora",
|
"ENV-DISTRI-fedora",
|
||||||
"ENV-INSTLANG-en_US",
|
"ENV-LANGUAGE-ALL",
|
||||||
"ENV-FLAVOR-server"
|
"ENV-FLAVOR-server"
|
||||||
],
|
],
|
||||||
"area": [
|
"area": [
|
||||||
@ -15,4 +15,4 @@
|
|||||||
}
|
}
|
||||||
],
|
],
|
||||||
"properties": []
|
"properties": []
|
||||||
}
|
}
|
||||||
|
@ -3,7 +3,7 @@
|
|||||||
"tags": [
|
"tags": [
|
||||||
"anaconda_part_list_box_button",
|
"anaconda_part_list_box_button",
|
||||||
"ENV-DISTRI-fedora",
|
"ENV-DISTRI-fedora",
|
||||||
"ENV-INSTLANG-en_US",
|
"ENV-LANGUAGE-ALL",
|
||||||
"ENV-FLAVOR-server"
|
"ENV-FLAVOR-server"
|
||||||
],
|
],
|
||||||
"area": [
|
"area": [
|
||||||
@ -15,4 +15,4 @@
|
|||||||
"type": "match"
|
"type": "match"
|
||||||
}
|
}
|
||||||
]
|
]
|
||||||
}
|
}
|
||||||
|
@ -3,7 +3,7 @@
|
|||||||
"tags": [
|
"tags": [
|
||||||
"anaconda_part_list_box_root",
|
"anaconda_part_list_box_root",
|
||||||
"ENV-DISTRI-fedora",
|
"ENV-DISTRI-fedora",
|
||||||
"ENV-INSTLANG-en_US",
|
"ENV-LANGUAGE-ALL",
|
||||||
"ENV-FLAVOR-server"
|
"ENV-FLAVOR-server"
|
||||||
],
|
],
|
||||||
"area": [
|
"area": [
|
||||||
@ -15,4 +15,4 @@
|
|||||||
"type": "match"
|
"type": "match"
|
||||||
}
|
}
|
||||||
]
|
]
|
||||||
}
|
}
|
||||||
|
@ -12,7 +12,7 @@
|
|||||||
"tags": [
|
"tags": [
|
||||||
"anaconda_part_list_box_swap",
|
"anaconda_part_list_box_swap",
|
||||||
"ENV-DISTRI-fedora",
|
"ENV-DISTRI-fedora",
|
||||||
"ENV-INSTLANG-en_US",
|
"ENV-LANGUAGE-ALL",
|
||||||
"ENV-FLAVOR-server"
|
"ENV-FLAVOR-server"
|
||||||
]
|
]
|
||||||
}
|
}
|
||||||
|
@ -12,7 +12,7 @@
|
|||||||
"tags": [
|
"tags": [
|
||||||
"anaconda_part_plus_button",
|
"anaconda_part_plus_button",
|
||||||
"ENV-DISTRI-fedora",
|
"ENV-DISTRI-fedora",
|
||||||
"ENV-INSTLANG-en_US",
|
"ENV-LANGUAGE-ALL",
|
||||||
"ENV-FLAVOR-server"
|
"ENV-FLAVOR-server"
|
||||||
]
|
]
|
||||||
}
|
}
|
||||||
|
@ -11,7 +11,7 @@
|
|||||||
"tags": [
|
"tags": [
|
||||||
"anaconda_part_scheme",
|
"anaconda_part_scheme",
|
||||||
"ENV-DISTRI-fedora",
|
"ENV-DISTRI-fedora",
|
||||||
"ENV-INSTLANG-en_US",
|
"ENV-LANGUAGE-ALL",
|
||||||
"ENV-FLAVOR-server"
|
"ENV-FLAVOR-server"
|
||||||
]
|
]
|
||||||
}
|
}
|
||||||
|
@ -11,7 +11,7 @@
|
|||||||
"tags": [
|
"tags": [
|
||||||
"anaconda_part_scheme_btrfs",
|
"anaconda_part_scheme_btrfs",
|
||||||
"ENV-DISTRI-fedora",
|
"ENV-DISTRI-fedora",
|
||||||
"ENV-INSTLANG-en_US",
|
"ENV-LANGUAGE-ALL",
|
||||||
"ENV-FLAVOR-server"
|
"ENV-FLAVOR-server"
|
||||||
]
|
]
|
||||||
}
|
}
|
||||||
|
@ -11,7 +11,7 @@
|
|||||||
"tags": [
|
"tags": [
|
||||||
"anaconda_part_scheme_lvm",
|
"anaconda_part_scheme_lvm",
|
||||||
"ENV-DISTRI-fedora",
|
"ENV-DISTRI-fedora",
|
||||||
"ENV-INSTLANG-en_US",
|
"ENV-LANGUAGE-ALL",
|
||||||
"ENV-FLAVOR-server"
|
"ENV-FLAVOR-server"
|
||||||
]
|
]
|
||||||
}
|
}
|
||||||
|
@ -11,7 +11,7 @@
|
|||||||
"tags": [
|
"tags": [
|
||||||
"anaconda_part_scheme_lvmthin",
|
"anaconda_part_scheme_lvmthin",
|
||||||
"ENV-DISTRI-fedora",
|
"ENV-DISTRI-fedora",
|
||||||
"ENV-INSTLANG-en_US",
|
"ENV-LANGUAGE-ENGLISH",
|
||||||
"ENV-FLAVOR-server"
|
"ENV-FLAVOR-server"
|
||||||
]
|
]
|
||||||
}
|
}
|
@ -11,7 +11,7 @@
|
|||||||
"tags": [
|
"tags": [
|
||||||
"anaconda_part_scheme_standard",
|
"anaconda_part_scheme_standard",
|
||||||
"ENV-DISTRI-fedora",
|
"ENV-DISTRI-fedora",
|
||||||
"ENV-INSTLANG-en_US",
|
"ENV-LANGUAGE-ENGLISH",
|
||||||
"ENV-FLAVOR-server"
|
"ENV-FLAVOR-server"
|
||||||
]
|
]
|
||||||
}
|
}
|
@ -11,7 +11,7 @@
|
|||||||
"tags": [
|
"tags": [
|
||||||
"anaconda_part_select_root",
|
"anaconda_part_select_root",
|
||||||
"ENV-DISTRI-fedora",
|
"ENV-DISTRI-fedora",
|
||||||
"ENV-INSTLANG-en_US",
|
"ENV-LANGUAGE-ALL",
|
||||||
"ENV-FLAVOR-server"
|
"ENV-FLAVOR-server"
|
||||||
]
|
]
|
||||||
}
|
}
|
||||||
|
@ -11,7 +11,7 @@
|
|||||||
"tags": [
|
"tags": [
|
||||||
"anaconda_part_select_root",
|
"anaconda_part_select_root",
|
||||||
"ENV-DISTRI-fedora",
|
"ENV-DISTRI-fedora",
|
||||||
"ENV-INSTLANG-en_US",
|
"ENV-LANGUAGE-ALL",
|
||||||
"ENV-FLAVOR-server"
|
"ENV-FLAVOR-server"
|
||||||
]
|
]
|
||||||
}
|
}
|
||||||
|
@ -12,7 +12,7 @@
|
|||||||
"tags": [
|
"tags": [
|
||||||
"anaconda_part_select_swap",
|
"anaconda_part_select_swap",
|
||||||
"ENV-DISTRI-fedora",
|
"ENV-DISTRI-fedora",
|
||||||
"ENV-INSTLANG-en_US",
|
"ENV-LANGUAGE-ALL",
|
||||||
"ENV-FLAVOR-generic_boot"
|
"ENV-FLAVOR-generic_boot"
|
||||||
]
|
]
|
||||||
}
|
}
|
||||||
|
@ -12,7 +12,7 @@
|
|||||||
"tags": [
|
"tags": [
|
||||||
"anaconda_part_update_settings",
|
"anaconda_part_update_settings",
|
||||||
"ENV-DISTRI-fedora",
|
"ENV-DISTRI-fedora",
|
||||||
"ENV-INSTLANG-en_US",
|
"ENV-LANGUAGE-ENGLISH",
|
||||||
"ENV-FLAVOR-server"
|
"ENV-FLAVOR-server"
|
||||||
]
|
]
|
||||||
}
|
}
|
@ -2,7 +2,7 @@
|
|||||||
"tags": [
|
"tags": [
|
||||||
"ENV-DISTRI-fedora",
|
"ENV-DISTRI-fedora",
|
||||||
"ENV-FLAVOR-server",
|
"ENV-FLAVOR-server",
|
||||||
"ENV-INSTLANG-en_US",
|
"ENV-LANGUAGE-ENGLISH",
|
||||||
"anaconda_rawhide_accept_fate"
|
"anaconda_rawhide_accept_fate"
|
||||||
],
|
],
|
||||||
"area": [
|
"area": [
|
||||||
|
17
needles/anaconda_rawhide_accept_fate_french.json
Normal file
@ -0,0 +1,17 @@
|
|||||||
|
{
|
||||||
|
"area": [
|
||||||
|
{
|
||||||
|
"height": 38,
|
||||||
|
"type": "match",
|
||||||
|
"width": 162,
|
||||||
|
"xpos": 613,
|
||||||
|
"ypos": 473
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"tags": [
|
||||||
|
"ENV-DISTRI-fedora",
|
||||||
|
"ENV-FLAVOR-server",
|
||||||
|
"ENV-LANGUAGE-FRENCH",
|
||||||
|
"anaconda_rawhide_accept_fate"
|
||||||
|
]
|
||||||
|
}
|
BIN
needles/anaconda_rawhide_accept_fate_french.png
Normal file
After Width: | Height: | Size: 102 KiB |
@ -11,7 +11,7 @@
|
|||||||
"tags": [
|
"tags": [
|
||||||
"ENV-DISTRI-fedora",
|
"ENV-DISTRI-fedora",
|
||||||
"ENV-FLAVOR-server",
|
"ENV-FLAVOR-server",
|
||||||
"ENV-INSTLANG-en_US",
|
"ENV-LANGUAGE-ALL",
|
||||||
"anaconda_report_btn"
|
"anaconda_report_btn"
|
||||||
],
|
],
|
||||||
"properties": []
|
"properties": []
|
||||||
|
@ -11,7 +11,7 @@
|
|||||||
"tags": [
|
"tags": [
|
||||||
"anaconda_select_install_lang",
|
"anaconda_select_install_lang",
|
||||||
"ENV-DISTRI-fedora",
|
"ENV-DISTRI-fedora",
|
||||||
"ENV-INSTLANG-en_US",
|
"ENV-LANGUAGE-ALL",
|
||||||
"ENV-FLAVOR-server"
|
"ENV-FLAVOR-server"
|
||||||
]
|
]
|
||||||
}
|
}
|
||||||
|
@ -12,6 +12,6 @@
|
|||||||
"anaconda_select_install_lang_continue",
|
"anaconda_select_install_lang_continue",
|
||||||
"ENV-DESKTOP-default",
|
"ENV-DESKTOP-default",
|
||||||
"ENV-DISTRI-fedora",
|
"ENV-DISTRI-fedora",
|
||||||
"ENV-INSTLANG-en_US"
|
"ENV-LANGUAGE-ENGLISH"
|
||||||
]
|
]
|
||||||
}
|
}
|
17
needles/anaconda_select_install_lang_continue_french.json
Normal file
@ -0,0 +1,17 @@
|
|||||||
|
{
|
||||||
|
"area": [
|
||||||
|
{
|
||||||
|
"height": 37,
|
||||||
|
"type": "match",
|
||||||
|
"width": 99,
|
||||||
|
"xpos": 919,
|
||||||
|
"ypos": 725
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"tags": [
|
||||||
|
"anaconda_select_install_lang_continue",
|
||||||
|
"ENV-DESKTOP-default",
|
||||||
|
"ENV-DISTRI-fedora",
|
||||||
|
"ENV-LANGUAGE-FRENCH"
|
||||||
|
]
|
||||||
|
}
|
BIN
needles/anaconda_select_install_lang_continue_french.png
Normal file
After Width: | Height: | Size: 92 KiB |
@ -16,9 +16,9 @@
|
|||||||
}
|
}
|
||||||
],
|
],
|
||||||
"tags": [
|
"tags": [
|
||||||
"anaconda_select_install_lang_english_filtered",
|
"anaconda_select_install_lang_filtered",
|
||||||
"ENV-DESKTOP-default",
|
"ENV-DESKTOP-default",
|
||||||
"ENV-DISTRI-fedora",
|
"ENV-DISTRI-fedora",
|
||||||
"ENV-INSTLANG-en_US"
|
"ENV-LANGUAGE-ENGLISH"
|
||||||
]
|
]
|
||||||
}
|
}
|
||||||
|
@ -9,10 +9,10 @@
|
|||||||
}
|
}
|
||||||
],
|
],
|
||||||
"tags": [
|
"tags": [
|
||||||
"anaconda_select_install_lang_english_selected",
|
"anaconda_select_install_lang_selected",
|
||||||
"anaconda_select_install_lang_english_filtered",
|
"anaconda_select_install_lang_filtered",
|
||||||
"ENV-DISTRI-fedora",
|
"ENV-DISTRI-fedora",
|
||||||
"ENV-INSTLANG-en_US",
|
"ENV-LANGUAGE-ENGLISH",
|
||||||
"ENV-OFW-1",
|
"ENV-OFW-1",
|
||||||
"ENV-FLAVOR-server"
|
"ENV-FLAVOR-server"
|
||||||
]
|
]
|
||||||
|
24
needles/anaconda_select_install_lang_french_filtered.json
Normal file
@ -0,0 +1,24 @@
|
|||||||
|
{
|
||||||
|
"area": [
|
||||||
|
{
|
||||||
|
"width": 103,
|
||||||
|
"xpos": 207,
|
||||||
|
"height": 45,
|
||||||
|
"type": "match",
|
||||||
|
"ypos": 196
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"width": 79,
|
||||||
|
"height": 54,
|
||||||
|
"type": "match",
|
||||||
|
"xpos": 483,
|
||||||
|
"ypos": 195
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"tags": [
|
||||||
|
"anaconda_select_install_lang_filtered",
|
||||||
|
"ENV-DESKTOP-default",
|
||||||
|
"ENV-DISTRI-fedora",
|
||||||
|
"ENV-LANGUAGE-FRENCH"
|
||||||
|
]
|
||||||
|
}
|
BIN
needles/anaconda_select_install_lang_french_filtered.png
Normal file
After Width: | Height: | Size: 80 KiB |
19
needles/anaconda_select_install_lang_french_selected.json
Normal file
@ -0,0 +1,19 @@
|
|||||||
|
{
|
||||||
|
"area": [
|
||||||
|
{
|
||||||
|
"height": 20,
|
||||||
|
"type": "match",
|
||||||
|
"width": 124,
|
||||||
|
"xpos": 603,
|
||||||
|
"ypos": 205
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"tags": [
|
||||||
|
"anaconda_select_install_lang_selected",
|
||||||
|
"anaconda_select_install_lang_filtered",
|
||||||
|
"ENV-DISTRI-fedora",
|
||||||
|
"ENV-LANGUAGE-FRENCH",
|
||||||
|
"ENV-OFW-1",
|
||||||
|
"ENV-FLAVOR-server"
|
||||||
|
]
|
||||||
|
}
|
BIN
needles/anaconda_select_install_lang_french_selected.png
Normal file
After Width: | Height: | Size: 92 KiB |
@ -12,7 +12,7 @@
|
|||||||
"tags": [
|
"tags": [
|
||||||
"anaconda_select_install_lang_input",
|
"anaconda_select_install_lang_input",
|
||||||
"ENV-DISTRI-fedora",
|
"ENV-DISTRI-fedora",
|
||||||
"ENV-INSTLANG-en_US",
|
"ENV-LANGUAGE-ALL",
|
||||||
"ENV-FLAVOR-server"
|
"ENV-FLAVOR-server"
|
||||||
]
|
]
|
||||||
}
|
}
|
||||||
|
@ -12,6 +12,6 @@
|
|||||||
"anaconda_spoke_done",
|
"anaconda_spoke_done",
|
||||||
"ENV-DESKTOP-default",
|
"ENV-DESKTOP-default",
|
||||||
"ENV-DISTRI-fedora",
|
"ENV-DISTRI-fedora",
|
||||||
"ENV-INSTLANG-en_US"
|
"ENV-LANGUAGE-ENGLISH"
|
||||||
]
|
]
|
||||||
}
|
}
|
||||||
|
17
needles/anaconda_spoke_done_french.json
Normal file
@ -0,0 +1,17 @@
|
|||||||
|
{
|
||||||
|
"area": [
|
||||||
|
{
|
||||||
|
"height": 23,
|
||||||
|
"type": "match",
|
||||||
|
"width": 48,
|
||||||
|
"xpos": 22,
|
||||||
|
"ypos": 56
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"tags": [
|
||||||
|
"anaconda_spoke_done",
|
||||||
|
"ENV-DESKTOP-default",
|
||||||
|
"ENV-DISTRI-fedora",
|
||||||
|
"ENV-LANGUAGE-FRENCH"
|
||||||
|
]
|
||||||
|
}
|
BIN
needles/anaconda_spoke_done_french.png
Normal file
After Width: | Height: | Size: 130 KiB |