= __('Orphan Request') ?>: = __('Request a package to be disowned, e.g. when the maintainer is inactive and the package has been flagged out-of-date for a long time.') ?>
-
= __('Deletion Request') ?>: = __('Request a package to be removed from the Arch User Repository. Please do not use this if a package is broken and can be fixed easily. Instead, contact the package maintainer and file orphan request if necessary.') ?>
+
= __('Deletion Request') ?>: = __('Request a package to be removed from the %s. Please do not use this if a package is broken and can be fixed easily. Instead, contact the package maintainer and file orphan request if necessary.', config_get('options', 'branding_longname')) ?>
= __('Merge Request') ?>: = __('Request a package to be merged into another one. Can be used when a package needs to be renamed or replaced by a split package.') ?>
- = __('The following SSH fingerprints are used for the AUR:') ?>
+ = __('The following SSH fingerprints are used for the %s:', config_get('options', 'branding_shortname')) ?>
',
- '',
- '',
- ''
+ 'General discussion regarding the %s (%s) and Trusted User structure takes place on %s. For discussion relating to the development of the %s web interface (aurweb), use the %s mailing list.',
+ config_get('options', 'branding_longname'),
+ config_get('options', 'branding_shortname'),
+ 'aur-general',
+ config_get('options', 'branding_shortname'),
+ 'aur-dev'
);
?>
- = __('Use this form to delete the package base %s%s%s and the following packages from the AUR: ',
- '', htmlspecialchars($pkgbase_name), ''); ?>
+ = __('Use this form to delete the package base %s%s%s and the following packages from the %s: ',
+ '', htmlspecialchars($pkgbase_name), '', config_get('options', 'branding_shortname')); ?>
diff --git a/web/html/rss.php b/web/html/rss.php
index 8585d81..2ecf218 100644
--- a/web/html/rss.php
+++ b/web/html/rss.php
@@ -26,15 +26,15 @@ $rss->xslStyleSheet = false;
$rss->encoding = "UTF-8";
#All the general RSS setup
-$rss->title = "AUR Newest Packages";
-$rss->description = "The latest and greatest packages in the AUR";
+$rss->title = config_get('options', 'branding_shortname') . " Newest Packages";
+$rss->description = "The latest and greatest packages in the " . config_get('options', 'branding_shortname');
$rss->link = "${protocol}://{$host}";
$rss->syndicationURL = "{$protocol}://{$host}" . get_uri('/rss/');
$image = new FeedImage();
-$image->title = "AUR";
+$image->title = config_get('options', 'branding_shortname');
$image->url = "{$protocol}://{$host}/css/archnavbar/aurlogo.png";
$image->link = $rss->link;
-$image->description = "AUR Newest Packages Feed";
+$image->description = config_get('options', 'branding_shortname') . " Newest Packages Feed";
$rss->image = $image;
#Get the latest packages and add items for them
diff --git a/web/lib/DB.class.php b/web/lib/DB.class.php
index b538e0d..4c58c3c 100644
--- a/web/lib/DB.class.php
+++ b/web/lib/DB.class.php
@@ -32,7 +32,7 @@ class DB {
self::$dbh = new PDO($dsn, $user, $password);
self::$dbh->exec("SET NAMES 'utf8' COLLATE 'utf8_general_ci';");
} catch (PDOException $e) {
- die('Error - Could not connect to AUR database');
+ die('Error - Could not connect to ' . config_get('options', 'branding_shortname') . ' database');
}
}
diff --git a/web/template/account_delete.php b/web/template/account_delete.php
index 74f386d..6a874f5 100644
--- a/web/template/account_delete.php
+++ b/web/template/account_delete.php
@@ -1,5 +1,6 @@
- = __('You can use this form to permanently delete the AUR account %s.', '' . htmlspecialchars($username) . '') ?>
+ = __('You can use this form to permanently delete the %s account %s.',
+ config_get('options', 'branding_shortname'), '' . htmlspecialchars($username) . '') ?>
= __('%sWARNING%s: This action cannot be undone.', '', '') ?>
diff --git a/web/template/account_edit_form.php b/web/template/account_edit_form.php
index 19821a0..fda5a28 100644
--- a/web/template/account_edit_form.php
+++ b/web/template/account_edit_form.php
@@ -132,7 +132,7 @@