Skip to content

Commit

Permalink
Fixing typo with CHF currency. (#2632)
Browse files Browse the repository at this point in the history
* Typo fix.
  • Loading branch information
brianhogg authored Apr 18, 2024
1 parent 84a7929 commit d3602f1
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 2 deletions.
3 changes: 3 additions & 0 deletions .changelogs/fix_typo-currency.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
significance: patch
type: fixed
entry: Fixes typo with CHF currency.
2 changes: 1 addition & 1 deletion languages/currency-symbols.php
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,7 @@
'BZD' => __( '$', 'lifterlms' ),
'CAD' => __( '$', 'lifterlms' ),
'CDF' => __( 'FC', 'lifterlms' ),
'CHF' => __( 'CHf', 'lifterlms' ),
'CHF' => __( 'CHF', 'lifterlms' ),
'CLP' => __( '$', 'lifterlms' ),
'CNY' => __( '¥', 'lifterlms' ),
'COP' => __( '$', 'lifterlms' ),
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -231,7 +231,7 @@ public function test_llms_get_currency_symbols() {

// Text symbols.
$this->assertEquals( 'P', $res['BWP'] );
$this->assertEquals( 'CHf', $res['CHF'] );
$this->assertEquals( 'CHF', $res['CHF'] );

}

Expand Down

0 comments on commit d3602f1

Please sign in to comment.