(String src)
| 79 | } |
| 80 | |
| 81 | public String translit(String src) { |
| 82 | if (!filled) return src; |
| 83 | if (src==null) return null; |
| 84 | for (int i=0; i<translit[0].size(); i++) { |
| 85 | src=StringUtils.stringReplace(src, (String) translit[1].elementAt(i), (String) translit[0].elementAt(i)); |
| 86 | } |
| 87 | return src; |
| 88 | } |
| 89 | |
| 90 | //#ifdef DETRANSLIT |
| 91 | public String get_actual_filename(String filename) { |
no test coverage detected