Package backend :: Package satellite_tools :: Module messages
[hide private]
[frames] | no frames]

Source Code for Module backend.satellite_tools.messages

 1  # 
 2  # Copyright (c) 2008--2015 Red Hat, Inc. 
 3  # 
 4  # This software is licensed to you under the GNU General Public License, 
 5  # version 2 (GPLv2). There is NO WARRANTY for this software, express or 
 6  # implied, including the implied warranties of MERCHANTABILITY or FITNESS 
 7  # FOR A PARTICULAR PURPOSE. You should have received a copy of GPLv2 
 8  # along with this software; if not, see 
 9  # http://www.gnu.org/licenses/old-licenses/gpl-2.0.txt. 
10  # 
11  # Red Hat trademarks are not licensed under GPLv2. No permission is 
12  # granted to use or replicate Red Hat trademarks that are incorporated 
13  # in this software or its documentation. 
14  # 
15  # 
16  """ Spacewalk Synchronization Tool Messages 
17   
18      Copyright (c) 2002--2015 Red Hat, Inc. 
19      All rights reserved. 
20  """ 
21   
22  import gettext 
23  t = gettext.translation('spacewalk-backend-server', fallback=True) 
24  _ = t.ugettext 
25   
26  failed_step = _(""" 
27  ERROR: executing step %s. Error is: 
28  %s 
29  """) 
30   
31  file_dir_error = _(""" 
32  ERROR: there was a problem accessing the channel data from your temporary 
33         repository. Did you migrate all of the data from the channel ISOs 
34         do this directory? If so, please recheck the channels ISOs, ensure 
35         that you have them all, and then iteratively remount and repopulate 
36         the temporary repository (%s). 
37  """) 
38   
39  syncer_error = _(""" 
40  ERROR: there was a problem synchronizing the information. 
41         Error message: %s 
42  """) 
43   
44  sw_iss_not_available = _(""" 
45  ERROR: There was a problem communicating with the ISS Master. 
46         Depending on the specific error details, please review your configuration, 
47         basic network connectivity, and/or name resolution, and try again. 
48         Error message: %s 
49  """) 
50   
51  sat_iss_not_available = _(""" 
52  ERROR: There was a problem communicating with the ISS Master. 
53         If the master satellite is older than v5.3, it does not have ISS capability. 
54         Otherwise, depending on the specific error details, please review your 
55         configuration, basic network connectivity, and/or name resolution, and try again. 
56         Error message: %s 
57  """) 
58   
59  parent_channel_error = _(""" 
60  ERROR: a child-channel cannot be synced without its parent being synced as 
61         well. A parent needs to be either (a) previously synced or (b) synced 
62         in tandem with the desired child-channel. Missing parents for this 
63         transaction: 
64         %s 
65  """) 
66   
67  invalid_channel_family_error = _(""" 
68  ERROR: you are not entitled to sync a channel in this set of channels. 
69  Please contact your sales rep or RHN contact 
70  %s""") 
71   
72  not_enough_diskspace = _("  ERROR: not enough free space (%s KB) on device.") 
73   
74  package_fetch_successful = _("    %3d/%s Fetch successful: %s (%s bytes)") 
75  package_fetch_extinct = _("    Extinct package:  %s") 
76  package_fetch_total_size = _("   Total size: %s") 
77  package_fetch_remain_size_time = _("      Downloaded %s of %s. Estimated remaining time: %s") 
78  package_fetch_failed = _("    Fetch unsuccessful: %s") 
79  package_fetch_summary = _("   RPM fetch summary: %s") 
80  package_fetch_summary_success = _("       success: %d") 
81  package_fetch_summary_failed = _("       failed:  %d") 
82  package_fetch_summary_extinct = _("       extinct: %d") 
83   
84  package_parsing = _("   Retrieving / parsing *relevant* package metadata: %s (%s)") 
85  erratum_parsing = _("   Retrieving / parsing errata data: %s (%s)") 
86  kickstart_parsing = _("   Retrieving / parsing kickstart data: %s (%s)") 
87  kickstart_downloading = _("   Retrieving / parsing kickstart tree files: %s (%s)") 
88  package_importing = _("   Importing *relevant* package metadata: %s (%s)") 
89  warning_slow = _("   * WARNING: this may be a slow process.") 
90  link_channel_packages = _("Linking packages to channels") 
91  errata_importing = _("   Importing *relevant* errata: %s (%s)") 
92  kickstart_import_nothing_to_do = _("   No new kickstartable tree to import") 
93  kickstart_importing = _("Importing kickstartable trees (%d)") 
94  kickstart_imported = _("Imported kickstartable trees (%d)") 
95