api.php 1.4 KB

123456789101112131415161718192021222324252627282930313233
  1. <?php
  2. /******************************************************************************
  3. * Each entry of that file can be associated with a comment to indicate its *
  4. * state. When there is no comment, it means the entry is fully translated. *
  5. * The recognized comments are (comment matching is case-insensitive): *
  6. * + TODO: the entry has never been translated. *
  7. * + DIRTY: the entry has been translated but needs to be updated. *
  8. * + IGNORE: the entry does not need to be translated. *
  9. * When a comment is not recognized, it is discarded. *
  10. ******************************************************************************/
  11. return array(
  12. 'information' => array(
  13. 'address' => '你的 API 地址:',
  14. 'output' => array(
  15. 'encoding-support' => '⚠️ 警告:<code>%2F</code> 支持缺失,部分客户端可能无法正常工作!',
  16. 'invalid-configuration' => '⚠️ 警告:./data/config.php 中可能存在无效的 base URL', // DIRTY
  17. 'pass' => '✔️ 通过',
  18. 'unknown-error' => '❌ ', // IGNORE
  19. ),
  20. 'test' => array(
  21. 'fever' => 'Fever API 配置测试:',
  22. 'greader' => 'Google Reader API 配置测试',
  23. ),
  24. 'title' => array(
  25. '_' => 'FreshRSS API 端点', // DIRTY
  26. 'extension' => '供拓展使用的 API',
  27. 'fever' => 'Fever 兼容的 API',
  28. 'greader' => 'Google Reader 兼容的 API',
  29. ),
  30. ),
  31. );