| 171 | } |
| 172 | |
| 173 | void EditorInfoStatusBar::updateOverType(ScintillaNext *editor) |
| 174 | { |
| 175 | bool overtype = editor->overtype(); |
| 176 | if (overtype) { |
| 177 | //: This is a short abbreviation to indicate characters will be replaced when typing |
| 178 | overType->setText(tr("OVR")); |
| 179 | } |
| 180 | else { |
| 181 | //: This is a short abbreviation to indicate characters will be inserted when typing |
| 182 | overType->setText(tr("INS")); |
| 183 | } |
| 184 | } |