Skip to content

Commit

Permalink
Added Numbers to Phone-Alphabet
Browse files Browse the repository at this point in the history
  • Loading branch information
TobiHatti committed Feb 21, 2020
1 parent e91e2dc commit e8d3591
Showing 1 changed file with 11 additions and 1 deletion.
12 changes: 11 additions & 1 deletion DialAssist/DialAssist.cs
Original file line number Diff line number Diff line change
Expand Up @@ -481,7 +481,17 @@ private void PhoneAlphabet(string pPhrase)
{ 'Z', "Zeppelin" },
{ '@', "Et (@)" },
{ '.', "Punkt" },
{ '-', "Minus" }
{ '-', "Minus" },
{ '0', "Null (0)" },
{ '1', "Eins (1)" },
{ '2', "Zwo (2)" },
{ '3', "Drei (3)" },
{ '4', "Vier (4)" },
{ '5', "Fünf (5)" },
{ '6', "Sechs (6)" },
{ '7', "Sieben (7)" },
{ '8', "Acht (8)" },
{ '9', "Neun (9)" }
};

StringBuilder sb = new StringBuilder();
Expand Down

0 comments on commit e8d3591

Please sign in to comment.