action motaword_get_string_stats { label: "View your translation statistics" provider: motaword method: GET path: "/stats/strings" encoding: json output: { type: "object" properties: { language_counts: { type: "array" items: { type: "object" properties: { project_string_count: { type: "integer" format: "int64" } source_language: { type: "string" } tm_string_count: { type: "integer" format: "int64" } } } } total_project_strings_count: { type: "integer" format: "int64" } total_tm_strings_count: { type: "integer" format: "int64" } } } }