Making WordPress.org

Opened 9 years ago

Closed 9 years ago

#834 closed enhancement (fixed)

GlotPress Plugin: Log dismissed warnings

Reported by: ocean90's profile ocean90 Owned by: ocean90's profile ocean90
Milestone: Priority: normal
Component: Translate Site & Plugins Keywords: has-patch
Cc:

Description

To get an overview of which type of translation warnings get dismissed we (nacin, dd32, sam, me) want to start to log them. The goal is to categorize the warnings and to build a review systems based on our results.

Attachments (1)

834.patch (1.9 KB) - added by ocean90 9 years ago.

Download all attachments as: .zip

Change History (4)

@ocean90
9 years ago

#1 @ocean90
9 years ago

Table structure could be:

CREATE TABLE IF NOT EXISTS `translate_warnings` (
  `ID` bigint(20) unsigned NOT NULL,
  `project_id` bigint(20) unsigned NOT NULL DEFAULT '0',
  `translation_set` bigint(20) unsigned NOT NULL DEFAULT '0',
  `translation` bigint(20) unsigned NOT NULL DEFAULT '0',
  `warning` varchar(20) NOT NULL DEFAULT '',
  `user` bigint(20) unsigned NOT NULL DEFAULT '0',
  `status` varchar(20) NOT NULL DEFAULT ''
  PRIMARY KEY (`ID`),
);
Last edited 9 years ago by ocean90 (previous) (diff)

This ticket was mentioned in Slack in #meta-i18n by ocean90. View the logs.


9 years ago

#3 @ocean90
9 years ago

  • Owner set to ocean90
  • Resolution set to fixed
  • Status changed from new to closed

In 1281:

Translate: Add GlotPress plugin to log dismissed warnings.

fixes #834.

Note: See TracTickets for help on using tickets.