aboutsummaryrefslogtreecommitdiffstats
path: root/Zotlabs/Lib
diff options
context:
space:
mode:
authorzotlabs <mike@macgirvin.com>2017-06-11 18:52:00 -0700
committerzotlabs <mike@macgirvin.com>2017-06-11 18:52:00 -0700
commit6f78183b74bbe50a6e96dca78f6724c882a668b1 (patch)
tree7cc95e2b032c88a9e0e6da05ce59b7652999cc86 /Zotlabs/Lib
parent1d96544c9d31bf3b80dc2ec932938063ad2cdf15 (diff)
downloadvolse-hubzilla-6f78183b74bbe50a6e96dca78f6724c882a668b1.tar.gz
volse-hubzilla-6f78183b74bbe50a6e96dca78f6724c882a668b1.tar.bz2
volse-hubzilla-6f78183b74bbe50a6e96dca78f6724c882a668b1.zip
add numbers to the techlevel descriptions because that's what we will use to indicate a minimum level in documentation
Diffstat (limited to 'Zotlabs/Lib')
-rw-r--r--Zotlabs/Lib/Techlevels.php12
1 files changed, 6 insertions, 6 deletions
diff --git a/Zotlabs/Lib/Techlevels.php b/Zotlabs/Lib/Techlevels.php
index 6a8c36fb3..380901678 100644
--- a/Zotlabs/Lib/Techlevels.php
+++ b/Zotlabs/Lib/Techlevels.php
@@ -7,12 +7,12 @@ class Techlevels {
static public function levels() {
$techlevels = [
- '0' => t('Beginner/Basic'),
- '1' => t('Novice - not skilled but willing to learn'),
- '2' => t('Intermediate - somewhat comfortable'),
- '3' => t('Advanced - very comfortable'),
- '4' => t('Expert - I can write computer code'),
- '5' => t('Wizard - I probably know more than you do')
+ '0' => t('0. Beginner/Basic'),
+ '1' => t('1. Novice - not skilled but willing to learn'),
+ '2' => t('2. Intermediate - somewhat comfortable'),
+ '3' => t('3. Advanced - very comfortable'),
+ '4' => t('4. Expert - I can write computer code'),
+ '5' => t('5. Wizard - I probably know more than you do')
];
return $techlevels;
}