| Rev | Line | |
|---|
| [970] | 1 | using adMoto.Payments.Core.Interfaces;
|
|---|
| [927] | 2 |
|
|---|
| [971] | 3 | namespace adMoto.Payments.Test.Web
|
|---|
| [927] | 4 | {
|
|---|
| [970] | 5 | public class FakeTranslation : ITranslateManager
|
|---|
| [927] | 6 | {
|
|---|
| 7 | public string Translate(string className, string keyName)
|
|---|
| 8 | {
|
|---|
| [931] | 9 | switch (keyName)
|
|---|
| 10 | {
|
|---|
| 11 | case "weryfikacja":
|
|---|
| 12 | return "weryfikacja";
|
|---|
| 13 | case "brakdanych":
|
|---|
| 14 | return "brakdanych";
|
|---|
| 15 | case "zaplacono":
|
|---|
| 16 | return "zaplacono";
|
|---|
| 17 | case "err_imieWK":
|
|---|
| 18 | return "imie";
|
|---|
| 19 | case "err_nazwiskoWK":
|
|---|
| 20 | return "nazwisko";
|
|---|
| 21 | case "error_hash":
|
|---|
| 22 | return "error_hash";
|
|---|
| 23 | }
|
|---|
| [927] | 24 |
|
|---|
| 25 | return "";
|
|---|
| 26 | }
|
|---|
| 27 | }
|
|---|
| [970] | 28 | } |
|---|
Notatka: Zobacz
TracBrowser
aby uzyskać więcej informacji.