ECDisplayTable.cpp 2.1 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091
  1. /*
  2. * Copyright 2005 - 2016 Zarafa and its licensors
  3. *
  4. * This program is free software: you can redistribute it and/or modify
  5. * it under the terms of the GNU Affero General Public License, version 3,
  6. * as published by the Free Software Foundation.
  7. *
  8. * This program is distributed in the hope that it will be useful,
  9. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  10. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  11. * GNU Affero General Public License for more details.
  12. *
  13. * You should have received a copy of the GNU Affero General Public License
  14. * along with this program. If not, see <http://www.gnu.org/licenses/>.
  15. *
  16. */
  17. #include <kopano/platform.h>
  18. #include <kopano/ECGetText.h>
  19. #include <kopano/CommonUtil.h>
  20. #include "Mem.h"
  21. #include <kopano/ECMemTable.h>
  22. // This function is NOT used, but is used as dummy for the xgettext parser so it
  23. // can find the translation strings. **DO NOT REMOVE THIS FUNCTION**
  24. static UNUSED_VAR void dummy(void)
  25. {
  26. LPCTSTR a UNUSED_VAR;
  27. /* User General tab */
  28. a = _("General");
  29. a = _("Name");
  30. a = _("First:");
  31. a = _("Initials:");
  32. a = _("Last:");
  33. a = _("Display:");
  34. a = _("Alias:");
  35. a = _("Address:");
  36. a = _("City:");
  37. a = _("State:");
  38. a = _("Zip code:");
  39. a = _("Country/Region:");
  40. a = _("Title:");
  41. a = _("Company:");
  42. a = _("Department:");
  43. a = _("Office:");
  44. a = _("Assistant:");
  45. a = _("Phone:");
  46. /* User Phone/Notes tab */
  47. a = _("Phone/Notes");
  48. a = _("Phone numbers");
  49. a = _("Business:");
  50. a = _("Business 2:");
  51. a = _("Fax:");
  52. a = _("Assistant:");
  53. a = _("Home:");
  54. a = _("Home 2:");
  55. a = _("Mobile:");
  56. a = _("Pager:");
  57. a = _("Notes:");
  58. /* User Organization tab */
  59. a = _("Organization");
  60. a = _("Manager:");
  61. a = _("Direct reports:");
  62. /* User Member Of tab */
  63. a = _("Member Of");
  64. a = _("Group membership:");
  65. /* User E-mail Addresses tab */
  66. a = _("E-mail Addresses");
  67. a = _("E-mail addresses:");
  68. /* Distlist General tab */
  69. a = _("General");
  70. a = _("Display name:");
  71. a = _("Alias name:");
  72. a = _("Owner:");
  73. a = _("Notes:");
  74. a = _("Members");
  75. a = _("Modify members...");
  76. /* Distlist Member Of tab */
  77. a = _("Member Of");
  78. a = _("Group membership:");
  79. }