|
Revision 6890, 495 bytes
(checked in by mickecarlsson, 5 years ago)
|
Reverting previous changes, add strings for localization for dictation
|
- Property svn:mime-type set to
text/html
- Property svn:eol-style set to
native
|
| Line | |
|---|
| 1 |
<?php |
|---|
| 2 |
//for translation only |
|---|
| 3 |
if (false) { |
|---|
| 4 |
_("Dictation"); |
|---|
| 5 |
_("Perform dictation"); |
|---|
| 6 |
_("Email completed dictation"); |
|---|
| 7 |
} |
|---|
| 8 |
|
|---|
| 9 |
// Register Feature Code - Perform Dictation |
|---|
| 10 |
$fcc = new featurecode('dictate', 'dodictate'); |
|---|
| 11 |
$fcc->setDescription('Perform dictation'); |
|---|
| 12 |
$fcc->setDefault('*34'); |
|---|
| 13 |
$fcc->update(); |
|---|
| 14 |
unset($fcc); |
|---|
| 15 |
|
|---|
| 16 |
// Email dictation to user |
|---|
| 17 |
$fcc = new featurecode('dictate', 'senddictate'); |
|---|
| 18 |
$fcc->setDescription('Email completed dictation'); |
|---|
| 19 |
$fcc->setDefault('*35'); |
|---|
| 20 |
$fcc->update(); |
|---|
| 21 |
unset($fcc); |
|---|
| 22 |
|
|---|
| 23 |
|
|---|
| 24 |
?> |
|---|