zh_hans.php 4.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990
  1. <?php
  2. return array(
  3. // menu
  4. 'admin:develop_tools' => '工具',
  5. 'admin:develop_tools:sandbox' => '主题测试盒',
  6. 'admin:develop_tools:inspect' => '检查',
  7. 'admin:inspect' => '检查',
  8. 'admin:develop_tools:unit_tests' => '单元测试',
  9. 'admin:developers' => '开发者',
  10. 'admin:developers:settings' => '设置',
  11. // settings
  12. 'elgg_dev_tools:settings:explanation' => '控制下面的开发及Debug设置。 部分设置也出现在其他管理页面。',
  13. 'developers:label:simple_cache' => '使用简单缓存',
  14. 'developers:help:simple_cache' => '开发时请关闭缓存。否则,CSS 及 JavaScript 修改不会生效。 ',
  15. 'developers:label:system_cache' => '使用系统缓存。',
  16. 'developers:help:system_cache' => '开发过程中请将此开关关闭。否则,插件的变化无法及时生效。',
  17. 'developers:label:debug_level' => "跟踪排错方式",
  18. 'developers:help:debug_level' => "这将记录大量信息。 更多信息,请查看 elgg_log() 。",
  19. 'developers:label:display_errors' => '显示 PHP 致命错误',
  20. 'developers:help:display_errors' => "默认情况下,Elgg 的 .htaccess 文件隐去了致命错误的显示。",
  21. 'developers:label:screen_log' => "在屏幕上显示日志",
  22. 'developers:help:screen_log' => "这将显示 elgg_log() 和 elgg_dump() 输入及数据库查询情况。",
  23. 'developers:label:show_strings' => "显示翻译的字符串",
  24. 'developers:help:show_strings' => "这将显示使用 elgg_echo() 翻译的字符串。",
  25. 'developers:label:show_modules' => "在控制台展示AMD模块已装载",
  26. 'developers:help:show_modules' => "在javascript控制台中展示装载的模块及数据",
  27. 'developers:label:wrap_views' => "Wrap views",
  28. 'developers:help:wrap_views' => "This wraps almost every view with HTML comments. Useful for finding the view creating particular HTML.
  29. ⇥⇥⇥⇥⇥⇥⇥⇥⇥This can break non-HTML views in the default viewtype. See developers_wrap_views() for details.",
  30. 'developers:label:log_events' => "记录事件及插件hooks",
  31. 'developers:help:log_events' => "将事件及插件hooks记入日志。 警告:每页均有大量相关信息。",
  32. 'developers:label:show_gear' => "在管理区外使用了 %s",
  33. 'developers:help:show_gear' => "视窗右下角的图标用于让开发人员以管理权限设置及链接",
  34. 'developers:label:submit' => "保存并更新缓存",
  35. 'developers:debug:off' => '关闭',
  36. 'developers:debug:error' => '错误',
  37. 'developers:debug:warning' => '警告',
  38. 'developers:debug:notice' => '注意',
  39. 'developers:debug:info' => '信息',
  40. // inspection
  41. 'developers:inspect:help' => '检查 Elgg 框架的配置',
  42. 'developers:inspect:actions' => '活动',
  43. 'developers:inspect:events' => '事件',
  44. 'developers:inspect:menus' => '菜单',
  45. 'developers:inspect:pluginhooks' => '插件 Hooks',
  46. 'developers:inspect:priority' => '优先级',
  47. 'developers:inspect:simplecache' => '简单缓存',
  48. 'developers:inspect:views' => '视图',
  49. 'developers:inspect:views:all_filtered' => "<b>注意!</b> 所有视图输出均会被这些插件过滤:",
  50. 'developers:inspect:views:filtered' => "(被插件: %s 过滤)",
  51. 'developers:inspect:widgets' => '小窗口',
  52. 'developers:inspect:webservices' => 'Webservices',
  53. 'developers:inspect:widgets:context' => '内容',
  54. 'developers:inspect:functions' => '功能',
  55. 'developers:inspect:file_location' => 'Elgg 根目录路径',
  56. // event logging
  57. 'developers:event_log_msg' => "%s: '%s, %s' 在 %s 中",
  58. 'developers:log_queries' => "%s 数据查询 (未包含关闭时间)",
  59. // theme sandbox
  60. 'theme_sandbox:intro' => '介绍',
  61. 'theme_sandbox:breakout' => '打破 iframe',
  62. 'theme_sandbox:buttons' => '按钮',
  63. 'theme_sandbox:components' => '元件',
  64. 'theme_sandbox:forms' => '表单',
  65. 'theme_sandbox:grid' => '网格',
  66. 'theme_sandbox:icons' => '图标',
  67. 'theme_sandbox:javascript' => 'JavaScript',
  68. 'theme_sandbox:layouts' => '布局',
  69. 'theme_sandbox:modules' => '模块',
  70. 'theme_sandbox:navigation' => '导航',
  71. 'theme_sandbox:typography' => '排版',
  72. 'theme_sandbox:icons:blurb' => '建议使用 <em>elgg_view_icon($name)</em> 或 类 elgg-icon-$name 来显示图标。',
  73. // unit tests
  74. 'developers:unit_tests:description' => 'Elgg 在内核类库及函数中集成了BUG检测工具和测试程序。',
  75. 'developers:unit_tests:warning' => '警告:不要在生产环境下进行这些测试,可能会导致数据库崩溃。',
  76. 'developers:unit_tests:run' => '执行',
  77. // status messages
  78. 'developers:settings:success' => '设置已保存,缓存已更新。',
  79. 'developers:amd' => 'AMD',
  80. );