sibprogrammer/owp

View on GitHub

Showing 803 of 803 total issues

Similar blocks of code found in 2 locations. Consider refactoring.
Open

if(Ext.LoadMask){
  Ext.LoadMask.prototype.msg = "Loading...";
  Ext.LoadMask.prototype.msg = "Pemuatan...";
}
Severity: Minor
Found in public/ext/locale/ext-lang-id.js and 1 other location - About 40 mins to fix
public/ext/locale/ext-lang-id.js on lines 28..31

Duplicated Code

Duplicated code can lead to software that is hard to understand and difficult to change. The Don't Repeat Yourself (DRY) principle states:

Every piece of knowledge must have a single, unambiguous, authoritative representation within a system.

When you violate DRY, bugs and maintenance problems are sure to follow. Duplicated code has a tendency to both continue to replicate and also to diverge (leaving bugs as two similar implementations differ in subtle ways).

Tuning

This issue has a mass of 49.

We set useful threshold defaults for the languages we support but you may want to adjust these settings based on your project guidelines.

The threshold configuration represents the minimum mass a code block must have to be analyzed for duplication. The lower the threshold, the more fine-grained the comparison.

If the engine is too easily reporting duplication, try raising the threshold. If you suspect that the engine isn't catching enough duplication, try lowering the threshold. The best setting tends to differ from language to language.

See codeclimate-duplication's documentation for more information about tuning the mass threshold in your .codeclimate.yml.

Refactorings

Further Reading

Similar blocks of code found in 2 locations. Consider refactoring.
Open

if(Ext.TabPanelItem){
  Ext.TabPanelItem.prototype.closeText = "Close this tab";
  Ext.TabPanelItem.prototype.closeText = "Tutup tab ini";
}
Severity: Minor
Found in public/ext/locale/ext-lang-id.js and 1 other location - About 40 mins to fix
public/ext/locale/ext-lang-id.js on lines 38..41

Duplicated Code

Duplicated code can lead to software that is hard to understand and difficult to change. The Don't Repeat Yourself (DRY) principle states:

Every piece of knowledge must have a single, unambiguous, authoritative representation within a system.

When you violate DRY, bugs and maintenance problems are sure to follow. Duplicated code has a tendency to both continue to replicate and also to diverge (leaving bugs as two similar implementations differ in subtle ways).

Tuning

This issue has a mass of 49.

We set useful threshold defaults for the languages we support but you may want to adjust these settings based on your project guidelines.

The threshold configuration represents the minimum mass a code block must have to be analyzed for duplication. The lower the threshold, the more fine-grained the comparison.

If the engine is too easily reporting duplication, try raising the threshold. If you suspect that the engine isn't catching enough duplication, try lowering the threshold. The best setting tends to differ from language to language.

See codeclimate-duplication's documentation for more information about tuning the mass threshold in your .codeclimate.yml.

Refactorings

Further Reading

Similar blocks of code found in 2 locations. Consider refactoring.
Open

  def update
    ip_pool = (params[:id].to_i > 0) ? IpPool.find_by_id(params[:id]) : IpPool.new
    ip_pool.attributes = params

    if ip_pool.save
Severity: Minor
Found in app/controllers/admin/ip_pools_controller.rb and 1 other location - About 40 mins to fix
app/controllers/admin/users_controller.rb on lines 38..46

Duplicated Code

Duplicated code can lead to software that is hard to understand and difficult to change. The Don't Repeat Yourself (DRY) principle states:

Every piece of knowledge must have a single, unambiguous, authoritative representation within a system.

When you violate DRY, bugs and maintenance problems are sure to follow. Duplicated code has a tendency to both continue to replicate and also to diverge (leaving bugs as two similar implementations differ in subtle ways).

Tuning

This issue has a mass of 38.

We set useful threshold defaults for the languages we support but you may want to adjust these settings based on your project guidelines.

The threshold configuration represents the minimum mass a code block must have to be analyzed for duplication. The lower the threshold, the more fine-grained the comparison.

If the engine is too easily reporting duplication, try raising the threshold. If you suspect that the engine isn't catching enough duplication, try lowering the threshold. The best setting tends to differ from language to language.

See codeclimate-duplication's documentation for more information about tuning the mass threshold in your .codeclimate.yml.

Refactorings

Further Reading

Similar blocks of code found in 2 locations. Consider refactoring.
Open

  def update
    user = (params[:id].to_i > 0) ? User.find_by_id(params[:id]) : User.new
    user.attributes = params

    if user.save
Severity: Minor
Found in app/controllers/admin/users_controller.rb and 1 other location - About 40 mins to fix
app/controllers/admin/ip_pools_controller.rb on lines 12..20

Duplicated Code

Duplicated code can lead to software that is hard to understand and difficult to change. The Don't Repeat Yourself (DRY) principle states:

Every piece of knowledge must have a single, unambiguous, authoritative representation within a system.

When you violate DRY, bugs and maintenance problems are sure to follow. Duplicated code has a tendency to both continue to replicate and also to diverge (leaving bugs as two similar implementations differ in subtle ways).

Tuning

This issue has a mass of 38.

We set useful threshold defaults for the languages we support but you may want to adjust these settings based on your project guidelines.

The threshold configuration represents the minimum mass a code block must have to be analyzed for duplication. The lower the threshold, the more fine-grained the comparison.

If the engine is too easily reporting duplication, try raising the threshold. If you suspect that the engine isn't catching enough duplication, try lowering the threshold. The best setting tends to differ from language to language.

See codeclimate-duplication's documentation for more information about tuning the mass threshold in your .codeclimate.yml.

Refactorings

Further Reading

Similar blocks of code found in 2 locations. Consider refactoring.
Open

    @ram_usage = !is_running ? [] : Watchdog.get_ve_counters_queue('_memory', @virtual_server.id).map do |counter|
      ram = counter[:held].to_i / (1024 * 1024)
      @ram_max = ram if ram > @ram_max
      { 'time' => counter[:created_at].min, 'usage' => ram }
    end
Severity: Minor
Found in app/controllers/admin/virtual_servers_controller.rb and 1 other location - About 40 mins to fix
app/controllers/admin/virtual_servers_controller.rb on lines 141..147

Duplicated Code

Duplicated code can lead to software that is hard to understand and difficult to change. The Don't Repeat Yourself (DRY) principle states:

Every piece of knowledge must have a single, unambiguous, authoritative representation within a system.

When you violate DRY, bugs and maintenance problems are sure to follow. Duplicated code has a tendency to both continue to replicate and also to diverge (leaving bugs as two similar implementations differ in subtle ways).

Tuning

This issue has a mass of 37.

We set useful threshold defaults for the languages we support but you may want to adjust these settings based on your project guidelines.

The threshold configuration represents the minimum mass a code block must have to be analyzed for duplication. The lower the threshold, the more fine-grained the comparison.

If the engine is too easily reporting duplication, try raising the threshold. If you suspect that the engine isn't catching enough duplication, try lowering the threshold. The best setting tends to differ from language to language.

See codeclimate-duplication's documentation for more information about tuning the mass threshold in your .codeclimate.yml.

Refactorings

Further Reading

Similar blocks of code found in 2 locations. Consider refactoring.
Open

    @disk_usage = !is_running ? [] : Watchdog.get_ve_counters_queue('_diskspace', @virtual_server.id).map do |counter|
      diskspace = counter[:held].to_i / (1024 * 1024)
      @disk_max = diskspace if diskspace > @disk_max
      { 'time' => counter[:created_at].min, 'usage' => diskspace }
    end
Severity: Minor
Found in app/controllers/admin/virtual_servers_controller.rb and 1 other location - About 40 mins to fix
app/controllers/admin/virtual_servers_controller.rb on lines 134..140

Duplicated Code

Duplicated code can lead to software that is hard to understand and difficult to change. The Don't Repeat Yourself (DRY) principle states:

Every piece of knowledge must have a single, unambiguous, authoritative representation within a system.

When you violate DRY, bugs and maintenance problems are sure to follow. Duplicated code has a tendency to both continue to replicate and also to diverge (leaving bugs as two similar implementations differ in subtle ways).

Tuning

This issue has a mass of 37.

We set useful threshold defaults for the languages we support but you may want to adjust these settings based on your project guidelines.

The threshold configuration represents the minimum mass a code block must have to be analyzed for duplication. The lower the threshold, the more fine-grained the comparison.

If the engine is too easily reporting duplication, try raising the threshold. If you suspect that the engine isn't catching enough duplication, try lowering the threshold. The best setting tends to differ from language to language.

See codeclimate-duplication's documentation for more information about tuning the mass threshold in your .codeclimate.yml.

Refactorings

Further Reading

Method initialize has 5 arguments (exceeds 4 allowed). Consider refactoring.
Open

  def initialize(host, auth_key, port, timeout, use_ssl = false)
Severity: Minor
Found in lib/hw_daemon_client.rb - About 35 mins to fix

    Similar blocks of code found in 43 locations. Consider refactoring.
    Open

    if(Ext.MessageBox){
       Ext.MessageBox.buttonText = {
          ok     : "ÅíôÜîåé",
          cancel : "Áêýñùóç",
          yes    : "Íáé",
    Severity: Major
    Found in public/ext/locale/ext-lang-gr.js and 42 other locations - About 35 mins to fix
    public/ext/locale/ext-lang-bg.js on lines 80..87
    public/ext/locale/ext-lang-ca.js on lines 83..90
    public/ext/locale/ext-lang-cs.js on lines 87..94
    public/ext/locale/ext-lang-da.js on lines 90..97
    public/ext/locale/ext-lang-de.js on lines 93..100
    public/ext/locale/ext-lang-el_GR.js on lines 105..112
    public/ext/locale/ext-lang-en.js on lines 87..94
    public/ext/locale/ext-lang-en_GB.js on lines 83..90
    public/ext/locale/ext-lang-es.js on lines 86..93
    public/ext/locale/ext-lang-fa.js on lines 75..82
    public/ext/locale/ext-lang-fi.js on lines 88..95
    public/ext/locale/ext-lang-fr.js on lines 104..111
    public/ext/locale/ext-lang-fr_CA.js on lines 102..109
    public/ext/locale/ext-lang-he.js on lines 86..93
    public/ext/locale/ext-lang-hr.js on lines 90..97
    public/ext/locale/ext-lang-hu.js on lines 90..97
    public/ext/locale/ext-lang-id.js on lines 95..102
    public/ext/locale/ext-lang-it.js on lines 88..95
    public/ext/locale/ext-lang-ko.js on lines 60..67
    public/ext/locale/ext-lang-lt.js on lines 101..108
    public/ext/locale/ext-lang-lv.js on lines 59..66
    public/ext/locale/ext-lang-mk.js on lines 60..67
    public/ext/locale/ext-lang-nl.js on lines 91..98
    public/ext/locale/ext-lang-no_NB.js on lines 88..95
    public/ext/locale/ext-lang-no_NN.js on lines 88..95
    public/ext/locale/ext-lang-pl.js on lines 97..104
    public/ext/locale/ext-lang-pt.js on lines 63..70
    public/ext/locale/ext-lang-pt_BR.js on lines 88..95
    public/ext/locale/ext-lang-pt_PT.js on lines 83..90
    public/ext/locale/ext-lang-ro.js on lines 88..95
    public/ext/locale/ext-lang-ru.js on lines 102..109
    public/ext/locale/ext-lang-sk.js on lines 63..70
    public/ext/locale/ext-lang-sl.js on lines 59..66
    public/ext/locale/ext-lang-sr.js on lines 61..68
    public/ext/locale/ext-lang-sr_RS.js on lines 61..68
    public/ext/locale/ext-lang-sv_SE.js on lines 61..68
    public/ext/locale/ext-lang-th.js on lines 88..95
    public/ext/locale/ext-lang-tr.js on lines 102..109
    public/ext/locale/ext-lang-ukr.js on lines 64..71
    public/ext/locale/ext-lang-vn.js on lines 65..72
    public/ext/locale/ext-lang-zh_CN.js on lines 66..73
    public/ext/locale/ext-lang-zh_TW.js on lines 60..67

    Duplicated Code

    Duplicated code can lead to software that is hard to understand and difficult to change. The Don't Repeat Yourself (DRY) principle states:

    Every piece of knowledge must have a single, unambiguous, authoritative representation within a system.

    When you violate DRY, bugs and maintenance problems are sure to follow. Duplicated code has a tendency to both continue to replicate and also to diverge (leaving bugs as two similar implementations differ in subtle ways).

    Tuning

    This issue has a mass of 47.

    We set useful threshold defaults for the languages we support but you may want to adjust these settings based on your project guidelines.

    The threshold configuration represents the minimum mass a code block must have to be analyzed for duplication. The lower the threshold, the more fine-grained the comparison.

    If the engine is too easily reporting duplication, try raising the threshold. If you suspect that the engine isn't catching enough duplication, try lowering the threshold. The best setting tends to differ from language to language.

    See codeclimate-duplication's documentation for more information about tuning the mass threshold in your .codeclimate.yml.

    Refactorings

    Further Reading

    Similar blocks of code found in 43 locations. Consider refactoring.
    Open

    if(Ext.MessageBox){
       Ext.MessageBox.buttonText = {
          ok     : "Потврди",
          cancel : "Поништи",
          yes    : "Да",
    Severity: Major
    Found in public/ext/locale/ext-lang-mk.js and 42 other locations - About 35 mins to fix
    public/ext/locale/ext-lang-bg.js on lines 80..87
    public/ext/locale/ext-lang-ca.js on lines 83..90
    public/ext/locale/ext-lang-cs.js on lines 87..94
    public/ext/locale/ext-lang-da.js on lines 90..97
    public/ext/locale/ext-lang-de.js on lines 93..100
    public/ext/locale/ext-lang-el_GR.js on lines 105..112
    public/ext/locale/ext-lang-en.js on lines 87..94
    public/ext/locale/ext-lang-en_GB.js on lines 83..90
    public/ext/locale/ext-lang-es.js on lines 86..93
    public/ext/locale/ext-lang-fa.js on lines 75..82
    public/ext/locale/ext-lang-fi.js on lines 88..95
    public/ext/locale/ext-lang-fr.js on lines 104..111
    public/ext/locale/ext-lang-fr_CA.js on lines 102..109
    public/ext/locale/ext-lang-gr.js on lines 59..66
    public/ext/locale/ext-lang-he.js on lines 86..93
    public/ext/locale/ext-lang-hr.js on lines 90..97
    public/ext/locale/ext-lang-hu.js on lines 90..97
    public/ext/locale/ext-lang-id.js on lines 95..102
    public/ext/locale/ext-lang-it.js on lines 88..95
    public/ext/locale/ext-lang-ko.js on lines 60..67
    public/ext/locale/ext-lang-lt.js on lines 101..108
    public/ext/locale/ext-lang-lv.js on lines 59..66
    public/ext/locale/ext-lang-nl.js on lines 91..98
    public/ext/locale/ext-lang-no_NB.js on lines 88..95
    public/ext/locale/ext-lang-no_NN.js on lines 88..95
    public/ext/locale/ext-lang-pl.js on lines 97..104
    public/ext/locale/ext-lang-pt.js on lines 63..70
    public/ext/locale/ext-lang-pt_BR.js on lines 88..95
    public/ext/locale/ext-lang-pt_PT.js on lines 83..90
    public/ext/locale/ext-lang-ro.js on lines 88..95
    public/ext/locale/ext-lang-ru.js on lines 102..109
    public/ext/locale/ext-lang-sk.js on lines 63..70
    public/ext/locale/ext-lang-sl.js on lines 59..66
    public/ext/locale/ext-lang-sr.js on lines 61..68
    public/ext/locale/ext-lang-sr_RS.js on lines 61..68
    public/ext/locale/ext-lang-sv_SE.js on lines 61..68
    public/ext/locale/ext-lang-th.js on lines 88..95
    public/ext/locale/ext-lang-tr.js on lines 102..109
    public/ext/locale/ext-lang-ukr.js on lines 64..71
    public/ext/locale/ext-lang-vn.js on lines 65..72
    public/ext/locale/ext-lang-zh_CN.js on lines 66..73
    public/ext/locale/ext-lang-zh_TW.js on lines 60..67

    Duplicated Code

    Duplicated code can lead to software that is hard to understand and difficult to change. The Don't Repeat Yourself (DRY) principle states:

    Every piece of knowledge must have a single, unambiguous, authoritative representation within a system.

    When you violate DRY, bugs and maintenance problems are sure to follow. Duplicated code has a tendency to both continue to replicate and also to diverge (leaving bugs as two similar implementations differ in subtle ways).

    Tuning

    This issue has a mass of 47.

    We set useful threshold defaults for the languages we support but you may want to adjust these settings based on your project guidelines.

    The threshold configuration represents the minimum mass a code block must have to be analyzed for duplication. The lower the threshold, the more fine-grained the comparison.

    If the engine is too easily reporting duplication, try raising the threshold. If you suspect that the engine isn't catching enough duplication, try lowering the threshold. The best setting tends to differ from language to language.

    See codeclimate-duplication's documentation for more information about tuning the mass threshold in your .codeclimate.yml.

    Refactorings

    Further Reading

    Similar blocks of code found in 43 locations. Consider refactoring.
    Open

    if(Ext.MessageBox){
      Ext.MessageBox.buttonText = {
        ok     : "OK",
        cancel : "Cancel",
        yes    : "Yes",
    Severity: Major
    Found in public/ext/locale/ext-lang-en_GB.js and 42 other locations - About 35 mins to fix
    public/ext/locale/ext-lang-bg.js on lines 80..87
    public/ext/locale/ext-lang-ca.js on lines 83..90
    public/ext/locale/ext-lang-cs.js on lines 87..94
    public/ext/locale/ext-lang-da.js on lines 90..97
    public/ext/locale/ext-lang-de.js on lines 93..100
    public/ext/locale/ext-lang-el_GR.js on lines 105..112
    public/ext/locale/ext-lang-en.js on lines 87..94
    public/ext/locale/ext-lang-es.js on lines 86..93
    public/ext/locale/ext-lang-fa.js on lines 75..82
    public/ext/locale/ext-lang-fi.js on lines 88..95
    public/ext/locale/ext-lang-fr.js on lines 104..111
    public/ext/locale/ext-lang-fr_CA.js on lines 102..109
    public/ext/locale/ext-lang-gr.js on lines 59..66
    public/ext/locale/ext-lang-he.js on lines 86..93
    public/ext/locale/ext-lang-hr.js on lines 90..97
    public/ext/locale/ext-lang-hu.js on lines 90..97
    public/ext/locale/ext-lang-id.js on lines 95..102
    public/ext/locale/ext-lang-it.js on lines 88..95
    public/ext/locale/ext-lang-ko.js on lines 60..67
    public/ext/locale/ext-lang-lt.js on lines 101..108
    public/ext/locale/ext-lang-lv.js on lines 59..66
    public/ext/locale/ext-lang-mk.js on lines 60..67
    public/ext/locale/ext-lang-nl.js on lines 91..98
    public/ext/locale/ext-lang-no_NB.js on lines 88..95
    public/ext/locale/ext-lang-no_NN.js on lines 88..95
    public/ext/locale/ext-lang-pl.js on lines 97..104
    public/ext/locale/ext-lang-pt.js on lines 63..70
    public/ext/locale/ext-lang-pt_BR.js on lines 88..95
    public/ext/locale/ext-lang-pt_PT.js on lines 83..90
    public/ext/locale/ext-lang-ro.js on lines 88..95
    public/ext/locale/ext-lang-ru.js on lines 102..109
    public/ext/locale/ext-lang-sk.js on lines 63..70
    public/ext/locale/ext-lang-sl.js on lines 59..66
    public/ext/locale/ext-lang-sr.js on lines 61..68
    public/ext/locale/ext-lang-sr_RS.js on lines 61..68
    public/ext/locale/ext-lang-sv_SE.js on lines 61..68
    public/ext/locale/ext-lang-th.js on lines 88..95
    public/ext/locale/ext-lang-tr.js on lines 102..109
    public/ext/locale/ext-lang-ukr.js on lines 64..71
    public/ext/locale/ext-lang-vn.js on lines 65..72
    public/ext/locale/ext-lang-zh_CN.js on lines 66..73
    public/ext/locale/ext-lang-zh_TW.js on lines 60..67

    Duplicated Code

    Duplicated code can lead to software that is hard to understand and difficult to change. The Don't Repeat Yourself (DRY) principle states:

    Every piece of knowledge must have a single, unambiguous, authoritative representation within a system.

    When you violate DRY, bugs and maintenance problems are sure to follow. Duplicated code has a tendency to both continue to replicate and also to diverge (leaving bugs as two similar implementations differ in subtle ways).

    Tuning

    This issue has a mass of 47.

    We set useful threshold defaults for the languages we support but you may want to adjust these settings based on your project guidelines.

    The threshold configuration represents the minimum mass a code block must have to be analyzed for duplication. The lower the threshold, the more fine-grained the comparison.

    If the engine is too easily reporting duplication, try raising the threshold. If you suspect that the engine isn't catching enough duplication, try lowering the threshold. The best setting tends to differ from language to language.

    See codeclimate-duplication's documentation for more information about tuning the mass threshold in your .codeclimate.yml.

    Refactorings

    Further Reading

    Similar blocks of code found in 43 locations. Consider refactoring.
    Open

    if(Ext.MessageBox){
       Ext.MessageBox.buttonText = {
          ok     : "확인",
          cancel : "취소",
          yes    : "예",
    Severity: Major
    Found in public/ext/locale/ext-lang-ko.js and 42 other locations - About 35 mins to fix
    public/ext/locale/ext-lang-bg.js on lines 80..87
    public/ext/locale/ext-lang-ca.js on lines 83..90
    public/ext/locale/ext-lang-cs.js on lines 87..94
    public/ext/locale/ext-lang-da.js on lines 90..97
    public/ext/locale/ext-lang-de.js on lines 93..100
    public/ext/locale/ext-lang-el_GR.js on lines 105..112
    public/ext/locale/ext-lang-en.js on lines 87..94
    public/ext/locale/ext-lang-en_GB.js on lines 83..90
    public/ext/locale/ext-lang-es.js on lines 86..93
    public/ext/locale/ext-lang-fa.js on lines 75..82
    public/ext/locale/ext-lang-fi.js on lines 88..95
    public/ext/locale/ext-lang-fr.js on lines 104..111
    public/ext/locale/ext-lang-fr_CA.js on lines 102..109
    public/ext/locale/ext-lang-gr.js on lines 59..66
    public/ext/locale/ext-lang-he.js on lines 86..93
    public/ext/locale/ext-lang-hr.js on lines 90..97
    public/ext/locale/ext-lang-hu.js on lines 90..97
    public/ext/locale/ext-lang-id.js on lines 95..102
    public/ext/locale/ext-lang-it.js on lines 88..95
    public/ext/locale/ext-lang-lt.js on lines 101..108
    public/ext/locale/ext-lang-lv.js on lines 59..66
    public/ext/locale/ext-lang-mk.js on lines 60..67
    public/ext/locale/ext-lang-nl.js on lines 91..98
    public/ext/locale/ext-lang-no_NB.js on lines 88..95
    public/ext/locale/ext-lang-no_NN.js on lines 88..95
    public/ext/locale/ext-lang-pl.js on lines 97..104
    public/ext/locale/ext-lang-pt.js on lines 63..70
    public/ext/locale/ext-lang-pt_BR.js on lines 88..95
    public/ext/locale/ext-lang-pt_PT.js on lines 83..90
    public/ext/locale/ext-lang-ro.js on lines 88..95
    public/ext/locale/ext-lang-ru.js on lines 102..109
    public/ext/locale/ext-lang-sk.js on lines 63..70
    public/ext/locale/ext-lang-sl.js on lines 59..66
    public/ext/locale/ext-lang-sr.js on lines 61..68
    public/ext/locale/ext-lang-sr_RS.js on lines 61..68
    public/ext/locale/ext-lang-sv_SE.js on lines 61..68
    public/ext/locale/ext-lang-th.js on lines 88..95
    public/ext/locale/ext-lang-tr.js on lines 102..109
    public/ext/locale/ext-lang-ukr.js on lines 64..71
    public/ext/locale/ext-lang-vn.js on lines 65..72
    public/ext/locale/ext-lang-zh_CN.js on lines 66..73
    public/ext/locale/ext-lang-zh_TW.js on lines 60..67

    Duplicated Code

    Duplicated code can lead to software that is hard to understand and difficult to change. The Don't Repeat Yourself (DRY) principle states:

    Every piece of knowledge must have a single, unambiguous, authoritative representation within a system.

    When you violate DRY, bugs and maintenance problems are sure to follow. Duplicated code has a tendency to both continue to replicate and also to diverge (leaving bugs as two similar implementations differ in subtle ways).

    Tuning

    This issue has a mass of 47.

    We set useful threshold defaults for the languages we support but you may want to adjust these settings based on your project guidelines.

    The threshold configuration represents the minimum mass a code block must have to be analyzed for duplication. The lower the threshold, the more fine-grained the comparison.

    If the engine is too easily reporting duplication, try raising the threshold. If you suspect that the engine isn't catching enough duplication, try lowering the threshold. The best setting tends to differ from language to language.

    See codeclimate-duplication's documentation for more information about tuning the mass threshold in your .codeclimate.yml.

    Refactorings

    Further Reading

    Similar blocks of code found in 43 locations. Consider refactoring.
    Open

    if(Ext.MessageBox){
      Ext.MessageBox.buttonText = {
        ok     : "OK",
        cancel : "Отмена",
        yes    : "Да",
    Severity: Major
    Found in public/ext/locale/ext-lang-ru.js and 42 other locations - About 35 mins to fix
    public/ext/locale/ext-lang-bg.js on lines 80..87
    public/ext/locale/ext-lang-ca.js on lines 83..90
    public/ext/locale/ext-lang-cs.js on lines 87..94
    public/ext/locale/ext-lang-da.js on lines 90..97
    public/ext/locale/ext-lang-de.js on lines 93..100
    public/ext/locale/ext-lang-el_GR.js on lines 105..112
    public/ext/locale/ext-lang-en.js on lines 87..94
    public/ext/locale/ext-lang-en_GB.js on lines 83..90
    public/ext/locale/ext-lang-es.js on lines 86..93
    public/ext/locale/ext-lang-fa.js on lines 75..82
    public/ext/locale/ext-lang-fi.js on lines 88..95
    public/ext/locale/ext-lang-fr.js on lines 104..111
    public/ext/locale/ext-lang-fr_CA.js on lines 102..109
    public/ext/locale/ext-lang-gr.js on lines 59..66
    public/ext/locale/ext-lang-he.js on lines 86..93
    public/ext/locale/ext-lang-hr.js on lines 90..97
    public/ext/locale/ext-lang-hu.js on lines 90..97
    public/ext/locale/ext-lang-id.js on lines 95..102
    public/ext/locale/ext-lang-it.js on lines 88..95
    public/ext/locale/ext-lang-ko.js on lines 60..67
    public/ext/locale/ext-lang-lt.js on lines 101..108
    public/ext/locale/ext-lang-lv.js on lines 59..66
    public/ext/locale/ext-lang-mk.js on lines 60..67
    public/ext/locale/ext-lang-nl.js on lines 91..98
    public/ext/locale/ext-lang-no_NB.js on lines 88..95
    public/ext/locale/ext-lang-no_NN.js on lines 88..95
    public/ext/locale/ext-lang-pl.js on lines 97..104
    public/ext/locale/ext-lang-pt.js on lines 63..70
    public/ext/locale/ext-lang-pt_BR.js on lines 88..95
    public/ext/locale/ext-lang-pt_PT.js on lines 83..90
    public/ext/locale/ext-lang-ro.js on lines 88..95
    public/ext/locale/ext-lang-sk.js on lines 63..70
    public/ext/locale/ext-lang-sl.js on lines 59..66
    public/ext/locale/ext-lang-sr.js on lines 61..68
    public/ext/locale/ext-lang-sr_RS.js on lines 61..68
    public/ext/locale/ext-lang-sv_SE.js on lines 61..68
    public/ext/locale/ext-lang-th.js on lines 88..95
    public/ext/locale/ext-lang-tr.js on lines 102..109
    public/ext/locale/ext-lang-ukr.js on lines 64..71
    public/ext/locale/ext-lang-vn.js on lines 65..72
    public/ext/locale/ext-lang-zh_CN.js on lines 66..73
    public/ext/locale/ext-lang-zh_TW.js on lines 60..67

    Duplicated Code

    Duplicated code can lead to software that is hard to understand and difficult to change. The Don't Repeat Yourself (DRY) principle states:

    Every piece of knowledge must have a single, unambiguous, authoritative representation within a system.

    When you violate DRY, bugs and maintenance problems are sure to follow. Duplicated code has a tendency to both continue to replicate and also to diverge (leaving bugs as two similar implementations differ in subtle ways).

    Tuning

    This issue has a mass of 47.

    We set useful threshold defaults for the languages we support but you may want to adjust these settings based on your project guidelines.

    The threshold configuration represents the minimum mass a code block must have to be analyzed for duplication. The lower the threshold, the more fine-grained the comparison.

    If the engine is too easily reporting duplication, try raising the threshold. If you suspect that the engine isn't catching enough duplication, try lowering the threshold. The best setting tends to differ from language to language.

    See codeclimate-duplication's documentation for more information about tuning the mass threshold in your .codeclimate.yml.

    Refactorings

    Further Reading

    Similar blocks of code found in 43 locations. Consider refactoring.
    Open

    if(Ext.MessageBox){
       Ext.MessageBox.buttonText = {
          ok     : "OK",
          cancel : "Άκυρο",
          yes    : "Ναι",
    Severity: Major
    Found in public/ext/locale/ext-lang-el_GR.js and 42 other locations - About 35 mins to fix
    public/ext/locale/ext-lang-bg.js on lines 80..87
    public/ext/locale/ext-lang-ca.js on lines 83..90
    public/ext/locale/ext-lang-cs.js on lines 87..94
    public/ext/locale/ext-lang-da.js on lines 90..97
    public/ext/locale/ext-lang-de.js on lines 93..100
    public/ext/locale/ext-lang-en.js on lines 87..94
    public/ext/locale/ext-lang-en_GB.js on lines 83..90
    public/ext/locale/ext-lang-es.js on lines 86..93
    public/ext/locale/ext-lang-fa.js on lines 75..82
    public/ext/locale/ext-lang-fi.js on lines 88..95
    public/ext/locale/ext-lang-fr.js on lines 104..111
    public/ext/locale/ext-lang-fr_CA.js on lines 102..109
    public/ext/locale/ext-lang-gr.js on lines 59..66
    public/ext/locale/ext-lang-he.js on lines 86..93
    public/ext/locale/ext-lang-hr.js on lines 90..97
    public/ext/locale/ext-lang-hu.js on lines 90..97
    public/ext/locale/ext-lang-id.js on lines 95..102
    public/ext/locale/ext-lang-it.js on lines 88..95
    public/ext/locale/ext-lang-ko.js on lines 60..67
    public/ext/locale/ext-lang-lt.js on lines 101..108
    public/ext/locale/ext-lang-lv.js on lines 59..66
    public/ext/locale/ext-lang-mk.js on lines 60..67
    public/ext/locale/ext-lang-nl.js on lines 91..98
    public/ext/locale/ext-lang-no_NB.js on lines 88..95
    public/ext/locale/ext-lang-no_NN.js on lines 88..95
    public/ext/locale/ext-lang-pl.js on lines 97..104
    public/ext/locale/ext-lang-pt.js on lines 63..70
    public/ext/locale/ext-lang-pt_BR.js on lines 88..95
    public/ext/locale/ext-lang-pt_PT.js on lines 83..90
    public/ext/locale/ext-lang-ro.js on lines 88..95
    public/ext/locale/ext-lang-ru.js on lines 102..109
    public/ext/locale/ext-lang-sk.js on lines 63..70
    public/ext/locale/ext-lang-sl.js on lines 59..66
    public/ext/locale/ext-lang-sr.js on lines 61..68
    public/ext/locale/ext-lang-sr_RS.js on lines 61..68
    public/ext/locale/ext-lang-sv_SE.js on lines 61..68
    public/ext/locale/ext-lang-th.js on lines 88..95
    public/ext/locale/ext-lang-tr.js on lines 102..109
    public/ext/locale/ext-lang-ukr.js on lines 64..71
    public/ext/locale/ext-lang-vn.js on lines 65..72
    public/ext/locale/ext-lang-zh_CN.js on lines 66..73
    public/ext/locale/ext-lang-zh_TW.js on lines 60..67

    Duplicated Code

    Duplicated code can lead to software that is hard to understand and difficult to change. The Don't Repeat Yourself (DRY) principle states:

    Every piece of knowledge must have a single, unambiguous, authoritative representation within a system.

    When you violate DRY, bugs and maintenance problems are sure to follow. Duplicated code has a tendency to both continue to replicate and also to diverge (leaving bugs as two similar implementations differ in subtle ways).

    Tuning

    This issue has a mass of 47.

    We set useful threshold defaults for the languages we support but you may want to adjust these settings based on your project guidelines.

    The threshold configuration represents the minimum mass a code block must have to be analyzed for duplication. The lower the threshold, the more fine-grained the comparison.

    If the engine is too easily reporting duplication, try raising the threshold. If you suspect that the engine isn't catching enough duplication, try lowering the threshold. The best setting tends to differ from language to language.

    See codeclimate-duplication's documentation for more information about tuning the mass threshold in your .codeclimate.yml.

    Refactorings

    Further Reading

    Similar blocks of code found in 43 locations. Consider refactoring.
    Open

    if(Ext.MessageBox){
      Ext.MessageBox.buttonText = {
        ok     : "OK",
        cancel : "Peruuta",
        yes    : "Kyllä",
    Severity: Major
    Found in public/ext/locale/ext-lang-fi.js and 42 other locations - About 35 mins to fix
    public/ext/locale/ext-lang-bg.js on lines 80..87
    public/ext/locale/ext-lang-ca.js on lines 83..90
    public/ext/locale/ext-lang-cs.js on lines 87..94
    public/ext/locale/ext-lang-da.js on lines 90..97
    public/ext/locale/ext-lang-de.js on lines 93..100
    public/ext/locale/ext-lang-el_GR.js on lines 105..112
    public/ext/locale/ext-lang-en.js on lines 87..94
    public/ext/locale/ext-lang-en_GB.js on lines 83..90
    public/ext/locale/ext-lang-es.js on lines 86..93
    public/ext/locale/ext-lang-fa.js on lines 75..82
    public/ext/locale/ext-lang-fr.js on lines 104..111
    public/ext/locale/ext-lang-fr_CA.js on lines 102..109
    public/ext/locale/ext-lang-gr.js on lines 59..66
    public/ext/locale/ext-lang-he.js on lines 86..93
    public/ext/locale/ext-lang-hr.js on lines 90..97
    public/ext/locale/ext-lang-hu.js on lines 90..97
    public/ext/locale/ext-lang-id.js on lines 95..102
    public/ext/locale/ext-lang-it.js on lines 88..95
    public/ext/locale/ext-lang-ko.js on lines 60..67
    public/ext/locale/ext-lang-lt.js on lines 101..108
    public/ext/locale/ext-lang-lv.js on lines 59..66
    public/ext/locale/ext-lang-mk.js on lines 60..67
    public/ext/locale/ext-lang-nl.js on lines 91..98
    public/ext/locale/ext-lang-no_NB.js on lines 88..95
    public/ext/locale/ext-lang-no_NN.js on lines 88..95
    public/ext/locale/ext-lang-pl.js on lines 97..104
    public/ext/locale/ext-lang-pt.js on lines 63..70
    public/ext/locale/ext-lang-pt_BR.js on lines 88..95
    public/ext/locale/ext-lang-pt_PT.js on lines 83..90
    public/ext/locale/ext-lang-ro.js on lines 88..95
    public/ext/locale/ext-lang-ru.js on lines 102..109
    public/ext/locale/ext-lang-sk.js on lines 63..70
    public/ext/locale/ext-lang-sl.js on lines 59..66
    public/ext/locale/ext-lang-sr.js on lines 61..68
    public/ext/locale/ext-lang-sr_RS.js on lines 61..68
    public/ext/locale/ext-lang-sv_SE.js on lines 61..68
    public/ext/locale/ext-lang-th.js on lines 88..95
    public/ext/locale/ext-lang-tr.js on lines 102..109
    public/ext/locale/ext-lang-ukr.js on lines 64..71
    public/ext/locale/ext-lang-vn.js on lines 65..72
    public/ext/locale/ext-lang-zh_CN.js on lines 66..73
    public/ext/locale/ext-lang-zh_TW.js on lines 60..67

    Duplicated Code

    Duplicated code can lead to software that is hard to understand and difficult to change. The Don't Repeat Yourself (DRY) principle states:

    Every piece of knowledge must have a single, unambiguous, authoritative representation within a system.

    When you violate DRY, bugs and maintenance problems are sure to follow. Duplicated code has a tendency to both continue to replicate and also to diverge (leaving bugs as two similar implementations differ in subtle ways).

    Tuning

    This issue has a mass of 47.

    We set useful threshold defaults for the languages we support but you may want to adjust these settings based on your project guidelines.

    The threshold configuration represents the minimum mass a code block must have to be analyzed for duplication. The lower the threshold, the more fine-grained the comparison.

    If the engine is too easily reporting duplication, try raising the threshold. If you suspect that the engine isn't catching enough duplication, try lowering the threshold. The best setting tends to differ from language to language.

    See codeclimate-duplication's documentation for more information about tuning the mass threshold in your .codeclimate.yml.

    Refactorings

    Further Reading

    Similar blocks of code found in 43 locations. Consider refactoring.
    Open

    if(Ext.MessageBox){
      Ext.MessageBox.buttonText = {
        ok     : "OK",
        cancel : "Cancel",
        yes    : "Yes",
    Severity: Major
    Found in public/ext/locale/ext-lang-en.js and 42 other locations - About 35 mins to fix
    public/ext/locale/ext-lang-bg.js on lines 80..87
    public/ext/locale/ext-lang-ca.js on lines 83..90
    public/ext/locale/ext-lang-cs.js on lines 87..94
    public/ext/locale/ext-lang-da.js on lines 90..97
    public/ext/locale/ext-lang-de.js on lines 93..100
    public/ext/locale/ext-lang-el_GR.js on lines 105..112
    public/ext/locale/ext-lang-en_GB.js on lines 83..90
    public/ext/locale/ext-lang-es.js on lines 86..93
    public/ext/locale/ext-lang-fa.js on lines 75..82
    public/ext/locale/ext-lang-fi.js on lines 88..95
    public/ext/locale/ext-lang-fr.js on lines 104..111
    public/ext/locale/ext-lang-fr_CA.js on lines 102..109
    public/ext/locale/ext-lang-gr.js on lines 59..66
    public/ext/locale/ext-lang-he.js on lines 86..93
    public/ext/locale/ext-lang-hr.js on lines 90..97
    public/ext/locale/ext-lang-hu.js on lines 90..97
    public/ext/locale/ext-lang-id.js on lines 95..102
    public/ext/locale/ext-lang-it.js on lines 88..95
    public/ext/locale/ext-lang-ko.js on lines 60..67
    public/ext/locale/ext-lang-lt.js on lines 101..108
    public/ext/locale/ext-lang-lv.js on lines 59..66
    public/ext/locale/ext-lang-mk.js on lines 60..67
    public/ext/locale/ext-lang-nl.js on lines 91..98
    public/ext/locale/ext-lang-no_NB.js on lines 88..95
    public/ext/locale/ext-lang-no_NN.js on lines 88..95
    public/ext/locale/ext-lang-pl.js on lines 97..104
    public/ext/locale/ext-lang-pt.js on lines 63..70
    public/ext/locale/ext-lang-pt_BR.js on lines 88..95
    public/ext/locale/ext-lang-pt_PT.js on lines 83..90
    public/ext/locale/ext-lang-ro.js on lines 88..95
    public/ext/locale/ext-lang-ru.js on lines 102..109
    public/ext/locale/ext-lang-sk.js on lines 63..70
    public/ext/locale/ext-lang-sl.js on lines 59..66
    public/ext/locale/ext-lang-sr.js on lines 61..68
    public/ext/locale/ext-lang-sr_RS.js on lines 61..68
    public/ext/locale/ext-lang-sv_SE.js on lines 61..68
    public/ext/locale/ext-lang-th.js on lines 88..95
    public/ext/locale/ext-lang-tr.js on lines 102..109
    public/ext/locale/ext-lang-ukr.js on lines 64..71
    public/ext/locale/ext-lang-vn.js on lines 65..72
    public/ext/locale/ext-lang-zh_CN.js on lines 66..73
    public/ext/locale/ext-lang-zh_TW.js on lines 60..67

    Duplicated Code

    Duplicated code can lead to software that is hard to understand and difficult to change. The Don't Repeat Yourself (DRY) principle states:

    Every piece of knowledge must have a single, unambiguous, authoritative representation within a system.

    When you violate DRY, bugs and maintenance problems are sure to follow. Duplicated code has a tendency to both continue to replicate and also to diverge (leaving bugs as two similar implementations differ in subtle ways).

    Tuning

    This issue has a mass of 47.

    We set useful threshold defaults for the languages we support but you may want to adjust these settings based on your project guidelines.

    The threshold configuration represents the minimum mass a code block must have to be analyzed for duplication. The lower the threshold, the more fine-grained the comparison.

    If the engine is too easily reporting duplication, try raising the threshold. If you suspect that the engine isn't catching enough duplication, try lowering the threshold. The best setting tends to differ from language to language.

    See codeclimate-duplication's documentation for more information about tuning the mass threshold in your .codeclimate.yml.

    Refactorings

    Further Reading

    Similar blocks of code found in 43 locations. Consider refactoring.
    Open

    if(Ext.MessageBox){
      Ext.MessageBox.buttonText = {
        ok     : "OK",
        cancel : "Cancelar",
        yes    : "Sim",
    Severity: Major
    Found in public/ext/locale/ext-lang-pt_PT.js and 42 other locations - About 35 mins to fix
    public/ext/locale/ext-lang-bg.js on lines 80..87
    public/ext/locale/ext-lang-ca.js on lines 83..90
    public/ext/locale/ext-lang-cs.js on lines 87..94
    public/ext/locale/ext-lang-da.js on lines 90..97
    public/ext/locale/ext-lang-de.js on lines 93..100
    public/ext/locale/ext-lang-el_GR.js on lines 105..112
    public/ext/locale/ext-lang-en.js on lines 87..94
    public/ext/locale/ext-lang-en_GB.js on lines 83..90
    public/ext/locale/ext-lang-es.js on lines 86..93
    public/ext/locale/ext-lang-fa.js on lines 75..82
    public/ext/locale/ext-lang-fi.js on lines 88..95
    public/ext/locale/ext-lang-fr.js on lines 104..111
    public/ext/locale/ext-lang-fr_CA.js on lines 102..109
    public/ext/locale/ext-lang-gr.js on lines 59..66
    public/ext/locale/ext-lang-he.js on lines 86..93
    public/ext/locale/ext-lang-hr.js on lines 90..97
    public/ext/locale/ext-lang-hu.js on lines 90..97
    public/ext/locale/ext-lang-id.js on lines 95..102
    public/ext/locale/ext-lang-it.js on lines 88..95
    public/ext/locale/ext-lang-ko.js on lines 60..67
    public/ext/locale/ext-lang-lt.js on lines 101..108
    public/ext/locale/ext-lang-lv.js on lines 59..66
    public/ext/locale/ext-lang-mk.js on lines 60..67
    public/ext/locale/ext-lang-nl.js on lines 91..98
    public/ext/locale/ext-lang-no_NB.js on lines 88..95
    public/ext/locale/ext-lang-no_NN.js on lines 88..95
    public/ext/locale/ext-lang-pl.js on lines 97..104
    public/ext/locale/ext-lang-pt.js on lines 63..70
    public/ext/locale/ext-lang-pt_BR.js on lines 88..95
    public/ext/locale/ext-lang-ro.js on lines 88..95
    public/ext/locale/ext-lang-ru.js on lines 102..109
    public/ext/locale/ext-lang-sk.js on lines 63..70
    public/ext/locale/ext-lang-sl.js on lines 59..66
    public/ext/locale/ext-lang-sr.js on lines 61..68
    public/ext/locale/ext-lang-sr_RS.js on lines 61..68
    public/ext/locale/ext-lang-sv_SE.js on lines 61..68
    public/ext/locale/ext-lang-th.js on lines 88..95
    public/ext/locale/ext-lang-tr.js on lines 102..109
    public/ext/locale/ext-lang-ukr.js on lines 64..71
    public/ext/locale/ext-lang-vn.js on lines 65..72
    public/ext/locale/ext-lang-zh_CN.js on lines 66..73
    public/ext/locale/ext-lang-zh_TW.js on lines 60..67

    Duplicated Code

    Duplicated code can lead to software that is hard to understand and difficult to change. The Don't Repeat Yourself (DRY) principle states:

    Every piece of knowledge must have a single, unambiguous, authoritative representation within a system.

    When you violate DRY, bugs and maintenance problems are sure to follow. Duplicated code has a tendency to both continue to replicate and also to diverge (leaving bugs as two similar implementations differ in subtle ways).

    Tuning

    This issue has a mass of 47.

    We set useful threshold defaults for the languages we support but you may want to adjust these settings based on your project guidelines.

    The threshold configuration represents the minimum mass a code block must have to be analyzed for duplication. The lower the threshold, the more fine-grained the comparison.

    If the engine is too easily reporting duplication, try raising the threshold. If you suspect that the engine isn't catching enough duplication, try lowering the threshold. The best setting tends to differ from language to language.

    See codeclimate-duplication's documentation for more information about tuning the mass threshold in your .codeclimate.yml.

    Refactorings

    Further Reading

    Similar blocks of code found in 43 locations. Consider refactoring.
    Open

    if(Ext.MessageBox){
       Ext.MessageBox.buttonText = {
          ok     : "U redu",
          cancel : "Odustani",
          yes    : "Da",
    Severity: Major
    Found in public/ext/locale/ext-lang-sr.js and 42 other locations - About 35 mins to fix
    public/ext/locale/ext-lang-bg.js on lines 80..87
    public/ext/locale/ext-lang-ca.js on lines 83..90
    public/ext/locale/ext-lang-cs.js on lines 87..94
    public/ext/locale/ext-lang-da.js on lines 90..97
    public/ext/locale/ext-lang-de.js on lines 93..100
    public/ext/locale/ext-lang-el_GR.js on lines 105..112
    public/ext/locale/ext-lang-en.js on lines 87..94
    public/ext/locale/ext-lang-en_GB.js on lines 83..90
    public/ext/locale/ext-lang-es.js on lines 86..93
    public/ext/locale/ext-lang-fa.js on lines 75..82
    public/ext/locale/ext-lang-fi.js on lines 88..95
    public/ext/locale/ext-lang-fr.js on lines 104..111
    public/ext/locale/ext-lang-fr_CA.js on lines 102..109
    public/ext/locale/ext-lang-gr.js on lines 59..66
    public/ext/locale/ext-lang-he.js on lines 86..93
    public/ext/locale/ext-lang-hr.js on lines 90..97
    public/ext/locale/ext-lang-hu.js on lines 90..97
    public/ext/locale/ext-lang-id.js on lines 95..102
    public/ext/locale/ext-lang-it.js on lines 88..95
    public/ext/locale/ext-lang-ko.js on lines 60..67
    public/ext/locale/ext-lang-lt.js on lines 101..108
    public/ext/locale/ext-lang-lv.js on lines 59..66
    public/ext/locale/ext-lang-mk.js on lines 60..67
    public/ext/locale/ext-lang-nl.js on lines 91..98
    public/ext/locale/ext-lang-no_NB.js on lines 88..95
    public/ext/locale/ext-lang-no_NN.js on lines 88..95
    public/ext/locale/ext-lang-pl.js on lines 97..104
    public/ext/locale/ext-lang-pt.js on lines 63..70
    public/ext/locale/ext-lang-pt_BR.js on lines 88..95
    public/ext/locale/ext-lang-pt_PT.js on lines 83..90
    public/ext/locale/ext-lang-ro.js on lines 88..95
    public/ext/locale/ext-lang-ru.js on lines 102..109
    public/ext/locale/ext-lang-sk.js on lines 63..70
    public/ext/locale/ext-lang-sl.js on lines 59..66
    public/ext/locale/ext-lang-sr_RS.js on lines 61..68
    public/ext/locale/ext-lang-sv_SE.js on lines 61..68
    public/ext/locale/ext-lang-th.js on lines 88..95
    public/ext/locale/ext-lang-tr.js on lines 102..109
    public/ext/locale/ext-lang-ukr.js on lines 64..71
    public/ext/locale/ext-lang-vn.js on lines 65..72
    public/ext/locale/ext-lang-zh_CN.js on lines 66..73
    public/ext/locale/ext-lang-zh_TW.js on lines 60..67

    Duplicated Code

    Duplicated code can lead to software that is hard to understand and difficult to change. The Don't Repeat Yourself (DRY) principle states:

    Every piece of knowledge must have a single, unambiguous, authoritative representation within a system.

    When you violate DRY, bugs and maintenance problems are sure to follow. Duplicated code has a tendency to both continue to replicate and also to diverge (leaving bugs as two similar implementations differ in subtle ways).

    Tuning

    This issue has a mass of 47.

    We set useful threshold defaults for the languages we support but you may want to adjust these settings based on your project guidelines.

    The threshold configuration represents the minimum mass a code block must have to be analyzed for duplication. The lower the threshold, the more fine-grained the comparison.

    If the engine is too easily reporting duplication, try raising the threshold. If you suspect that the engine isn't catching enough duplication, try lowering the threshold. The best setting tends to differ from language to language.

    See codeclimate-duplication's documentation for more information about tuning the mass threshold in your .codeclimate.yml.

    Refactorings

    Further Reading

    Similar blocks of code found in 43 locations. Consider refactoring.
    Open

    if(Ext.MessageBox){
      Ext.MessageBox.buttonText = {
        ok     : "OK",
        cancel : "Mégsem",
        yes    : "Igen",
    Severity: Major
    Found in public/ext/locale/ext-lang-hu.js and 42 other locations - About 35 mins to fix
    public/ext/locale/ext-lang-bg.js on lines 80..87
    public/ext/locale/ext-lang-ca.js on lines 83..90
    public/ext/locale/ext-lang-cs.js on lines 87..94
    public/ext/locale/ext-lang-da.js on lines 90..97
    public/ext/locale/ext-lang-de.js on lines 93..100
    public/ext/locale/ext-lang-el_GR.js on lines 105..112
    public/ext/locale/ext-lang-en.js on lines 87..94
    public/ext/locale/ext-lang-en_GB.js on lines 83..90
    public/ext/locale/ext-lang-es.js on lines 86..93
    public/ext/locale/ext-lang-fa.js on lines 75..82
    public/ext/locale/ext-lang-fi.js on lines 88..95
    public/ext/locale/ext-lang-fr.js on lines 104..111
    public/ext/locale/ext-lang-fr_CA.js on lines 102..109
    public/ext/locale/ext-lang-gr.js on lines 59..66
    public/ext/locale/ext-lang-he.js on lines 86..93
    public/ext/locale/ext-lang-hr.js on lines 90..97
    public/ext/locale/ext-lang-id.js on lines 95..102
    public/ext/locale/ext-lang-it.js on lines 88..95
    public/ext/locale/ext-lang-ko.js on lines 60..67
    public/ext/locale/ext-lang-lt.js on lines 101..108
    public/ext/locale/ext-lang-lv.js on lines 59..66
    public/ext/locale/ext-lang-mk.js on lines 60..67
    public/ext/locale/ext-lang-nl.js on lines 91..98
    public/ext/locale/ext-lang-no_NB.js on lines 88..95
    public/ext/locale/ext-lang-no_NN.js on lines 88..95
    public/ext/locale/ext-lang-pl.js on lines 97..104
    public/ext/locale/ext-lang-pt.js on lines 63..70
    public/ext/locale/ext-lang-pt_BR.js on lines 88..95
    public/ext/locale/ext-lang-pt_PT.js on lines 83..90
    public/ext/locale/ext-lang-ro.js on lines 88..95
    public/ext/locale/ext-lang-ru.js on lines 102..109
    public/ext/locale/ext-lang-sk.js on lines 63..70
    public/ext/locale/ext-lang-sl.js on lines 59..66
    public/ext/locale/ext-lang-sr.js on lines 61..68
    public/ext/locale/ext-lang-sr_RS.js on lines 61..68
    public/ext/locale/ext-lang-sv_SE.js on lines 61..68
    public/ext/locale/ext-lang-th.js on lines 88..95
    public/ext/locale/ext-lang-tr.js on lines 102..109
    public/ext/locale/ext-lang-ukr.js on lines 64..71
    public/ext/locale/ext-lang-vn.js on lines 65..72
    public/ext/locale/ext-lang-zh_CN.js on lines 66..73
    public/ext/locale/ext-lang-zh_TW.js on lines 60..67

    Duplicated Code

    Duplicated code can lead to software that is hard to understand and difficult to change. The Don't Repeat Yourself (DRY) principle states:

    Every piece of knowledge must have a single, unambiguous, authoritative representation within a system.

    When you violate DRY, bugs and maintenance problems are sure to follow. Duplicated code has a tendency to both continue to replicate and also to diverge (leaving bugs as two similar implementations differ in subtle ways).

    Tuning

    This issue has a mass of 47.

    We set useful threshold defaults for the languages we support but you may want to adjust these settings based on your project guidelines.

    The threshold configuration represents the minimum mass a code block must have to be analyzed for duplication. The lower the threshold, the more fine-grained the comparison.

    If the engine is too easily reporting duplication, try raising the threshold. If you suspect that the engine isn't catching enough duplication, try lowering the threshold. The best setting tends to differ from language to language.

    See codeclimate-duplication's documentation for more information about tuning the mass threshold in your .codeclimate.yml.

    Refactorings

    Further Reading

    Similar blocks of code found in 43 locations. Consider refactoring.
    Open

    if(Ext.MessageBox){
       Ext.MessageBox.buttonText = {
          ok     : "OK",
          cancel : "Abbrechen",
          yes    : "Ja",
    Severity: Major
    Found in public/ext/locale/ext-lang-de.js and 42 other locations - About 35 mins to fix
    public/ext/locale/ext-lang-bg.js on lines 80..87
    public/ext/locale/ext-lang-ca.js on lines 83..90
    public/ext/locale/ext-lang-cs.js on lines 87..94
    public/ext/locale/ext-lang-da.js on lines 90..97
    public/ext/locale/ext-lang-el_GR.js on lines 105..112
    public/ext/locale/ext-lang-en.js on lines 87..94
    public/ext/locale/ext-lang-en_GB.js on lines 83..90
    public/ext/locale/ext-lang-es.js on lines 86..93
    public/ext/locale/ext-lang-fa.js on lines 75..82
    public/ext/locale/ext-lang-fi.js on lines 88..95
    public/ext/locale/ext-lang-fr.js on lines 104..111
    public/ext/locale/ext-lang-fr_CA.js on lines 102..109
    public/ext/locale/ext-lang-gr.js on lines 59..66
    public/ext/locale/ext-lang-he.js on lines 86..93
    public/ext/locale/ext-lang-hr.js on lines 90..97
    public/ext/locale/ext-lang-hu.js on lines 90..97
    public/ext/locale/ext-lang-id.js on lines 95..102
    public/ext/locale/ext-lang-it.js on lines 88..95
    public/ext/locale/ext-lang-ko.js on lines 60..67
    public/ext/locale/ext-lang-lt.js on lines 101..108
    public/ext/locale/ext-lang-lv.js on lines 59..66
    public/ext/locale/ext-lang-mk.js on lines 60..67
    public/ext/locale/ext-lang-nl.js on lines 91..98
    public/ext/locale/ext-lang-no_NB.js on lines 88..95
    public/ext/locale/ext-lang-no_NN.js on lines 88..95
    public/ext/locale/ext-lang-pl.js on lines 97..104
    public/ext/locale/ext-lang-pt.js on lines 63..70
    public/ext/locale/ext-lang-pt_BR.js on lines 88..95
    public/ext/locale/ext-lang-pt_PT.js on lines 83..90
    public/ext/locale/ext-lang-ro.js on lines 88..95
    public/ext/locale/ext-lang-ru.js on lines 102..109
    public/ext/locale/ext-lang-sk.js on lines 63..70
    public/ext/locale/ext-lang-sl.js on lines 59..66
    public/ext/locale/ext-lang-sr.js on lines 61..68
    public/ext/locale/ext-lang-sr_RS.js on lines 61..68
    public/ext/locale/ext-lang-sv_SE.js on lines 61..68
    public/ext/locale/ext-lang-th.js on lines 88..95
    public/ext/locale/ext-lang-tr.js on lines 102..109
    public/ext/locale/ext-lang-ukr.js on lines 64..71
    public/ext/locale/ext-lang-vn.js on lines 65..72
    public/ext/locale/ext-lang-zh_CN.js on lines 66..73
    public/ext/locale/ext-lang-zh_TW.js on lines 60..67

    Duplicated Code

    Duplicated code can lead to software that is hard to understand and difficult to change. The Don't Repeat Yourself (DRY) principle states:

    Every piece of knowledge must have a single, unambiguous, authoritative representation within a system.

    When you violate DRY, bugs and maintenance problems are sure to follow. Duplicated code has a tendency to both continue to replicate and also to diverge (leaving bugs as two similar implementations differ in subtle ways).

    Tuning

    This issue has a mass of 47.

    We set useful threshold defaults for the languages we support but you may want to adjust these settings based on your project guidelines.

    The threshold configuration represents the minimum mass a code block must have to be analyzed for duplication. The lower the threshold, the more fine-grained the comparison.

    If the engine is too easily reporting duplication, try raising the threshold. If you suspect that the engine isn't catching enough duplication, try lowering the threshold. The best setting tends to differ from language to language.

    See codeclimate-duplication's documentation for more information about tuning the mass threshold in your .codeclimate.yml.

    Refactorings

    Further Reading

    Similar blocks of code found in 43 locations. Consider refactoring.
    Open

    if(Ext.MessageBox){
      Ext.MessageBox.buttonText = {
        ok     : "OK",
        cancel : "Batal",
        yes    : "Ya",
    Severity: Major
    Found in public/ext/locale/ext-lang-id.js and 42 other locations - About 35 mins to fix
    public/ext/locale/ext-lang-bg.js on lines 80..87
    public/ext/locale/ext-lang-ca.js on lines 83..90
    public/ext/locale/ext-lang-cs.js on lines 87..94
    public/ext/locale/ext-lang-da.js on lines 90..97
    public/ext/locale/ext-lang-de.js on lines 93..100
    public/ext/locale/ext-lang-el_GR.js on lines 105..112
    public/ext/locale/ext-lang-en.js on lines 87..94
    public/ext/locale/ext-lang-en_GB.js on lines 83..90
    public/ext/locale/ext-lang-es.js on lines 86..93
    public/ext/locale/ext-lang-fa.js on lines 75..82
    public/ext/locale/ext-lang-fi.js on lines 88..95
    public/ext/locale/ext-lang-fr.js on lines 104..111
    public/ext/locale/ext-lang-fr_CA.js on lines 102..109
    public/ext/locale/ext-lang-gr.js on lines 59..66
    public/ext/locale/ext-lang-he.js on lines 86..93
    public/ext/locale/ext-lang-hr.js on lines 90..97
    public/ext/locale/ext-lang-hu.js on lines 90..97
    public/ext/locale/ext-lang-it.js on lines 88..95
    public/ext/locale/ext-lang-ko.js on lines 60..67
    public/ext/locale/ext-lang-lt.js on lines 101..108
    public/ext/locale/ext-lang-lv.js on lines 59..66
    public/ext/locale/ext-lang-mk.js on lines 60..67
    public/ext/locale/ext-lang-nl.js on lines 91..98
    public/ext/locale/ext-lang-no_NB.js on lines 88..95
    public/ext/locale/ext-lang-no_NN.js on lines 88..95
    public/ext/locale/ext-lang-pl.js on lines 97..104
    public/ext/locale/ext-lang-pt.js on lines 63..70
    public/ext/locale/ext-lang-pt_BR.js on lines 88..95
    public/ext/locale/ext-lang-pt_PT.js on lines 83..90
    public/ext/locale/ext-lang-ro.js on lines 88..95
    public/ext/locale/ext-lang-ru.js on lines 102..109
    public/ext/locale/ext-lang-sk.js on lines 63..70
    public/ext/locale/ext-lang-sl.js on lines 59..66
    public/ext/locale/ext-lang-sr.js on lines 61..68
    public/ext/locale/ext-lang-sr_RS.js on lines 61..68
    public/ext/locale/ext-lang-sv_SE.js on lines 61..68
    public/ext/locale/ext-lang-th.js on lines 88..95
    public/ext/locale/ext-lang-tr.js on lines 102..109
    public/ext/locale/ext-lang-ukr.js on lines 64..71
    public/ext/locale/ext-lang-vn.js on lines 65..72
    public/ext/locale/ext-lang-zh_CN.js on lines 66..73
    public/ext/locale/ext-lang-zh_TW.js on lines 60..67

    Duplicated Code

    Duplicated code can lead to software that is hard to understand and difficult to change. The Don't Repeat Yourself (DRY) principle states:

    Every piece of knowledge must have a single, unambiguous, authoritative representation within a system.

    When you violate DRY, bugs and maintenance problems are sure to follow. Duplicated code has a tendency to both continue to replicate and also to diverge (leaving bugs as two similar implementations differ in subtle ways).

    Tuning

    This issue has a mass of 47.

    We set useful threshold defaults for the languages we support but you may want to adjust these settings based on your project guidelines.

    The threshold configuration represents the minimum mass a code block must have to be analyzed for duplication. The lower the threshold, the more fine-grained the comparison.

    If the engine is too easily reporting duplication, try raising the threshold. If you suspect that the engine isn't catching enough duplication, try lowering the threshold. The best setting tends to differ from language to language.

    See codeclimate-duplication's documentation for more information about tuning the mass threshold in your .codeclimate.yml.

    Refactorings

    Further Reading

    Severity
    Category
    Status
    Source
    Language