I have huge Russian text and I am trying to build simple solution to have ability off/on hyphenations in the text, in the text numbers and dates as a plane text are possible.
I have tried some variants that didn't work correctly. How to prevent LaTeX from hyphenating the entire document?. This post was as a start point, also I have tried recommendations from this post: hyphsubst conflicts with inputenc.
My code, theoretically problem can be that I have been using babel package:
\documentclass[11pt,a4paper]{article}
\usepackage[T1,T2A,T2B,T2C]{fontenc}
\usepackage[utf8]{inputenc}
\usepackage[russian]{babel}
%Added package.
\usepackage{geometry}
\geometry{lmargin=1.18in, rmargin = 0.5in, tmargin = 1.08in, bmargin=0.6in}
\begin{document}
Длинный текст, который не переноситься корректно, особенно если в него добавить длинные слова и номера, например даты рождения 01.01.2001 или еще какие-нибудь цифры, 10000131342424.
\end{document}
To summarize, I need some library or trick that will break lines correctly without hyphenations if possible. The main problem that I have encountered with solutions from linked posts, words were outside the borders of the document.
Edit: Although I am using geometry that may produce problems. Solutions presented below does not work for code above.(I have added only geometry package).

