Skip to content
This repository has been archived by the owner on Jan 9, 2019. It is now read-only.

Latest commit

 

History

History
17 lines (11 loc) · 294 Bytes

i18n-no-placeholders-only.md

File metadata and controls

17 lines (11 loc) · 294 Bytes

Disallow strings which include only placeholders

Strings cannot be translated if they consist only of placeholders.

Rule Details

The following patterns are considered warnings:

translate( '%s' );

The following patterns are not warnings:

translate( 'Hello %s!' );